View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0009456 | ardour | bugs | public | 2023-09-23 10:18 | 2023-09-23 12:13 |
Reporter | songo | Assigned To | x42 | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Platform | Debian GNU | OS | Linux | OS Version | (any) |
Summary | 0009456: port_group.cc: missing "_" in "Tracks" | ||||
Description | There is a small typo in the port_group.cc preventing noun "Tracks" from being translated in the routing grid. | ||||
Steps To Reproduce | Just open the "Routing grid" in any foreign language enabled version of Ardour and check if the "Tracks" noun is correctly translated. | ||||
Additional Information | You can find a patch fixing this issue in the attachment. | ||||
Tags | gettext, ports, track, translations | ||||
|
0001-PortGroup-fix-missing-_-in-Tracks.patch (1,082 bytes)
From 2317839c8e1bceed77a27b00dad4f9862431c5fb Mon Sep 17 00:00:00 2001 From: Krzysztof Gajdemski <songo@debian.org.pl> Date: Sat, 23 Sep 2023 11:32:10 +0200 Subject: [PATCH] PortGroup: fix missing "_" in "Tracks" This small typo prevented (a rather important) noun "Tracks" from being translated. --- gtk2_ardour/port_group.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/port_group.cc b/gtk2_ardour/port_group.cc index 058d49144e..ece9fcf3fd 100644 --- a/gtk2_ardour/port_group.cc +++ b/gtk2_ardour/port_group.cc @@ -349,7 +349,7 @@ PortGroupList::gather (ARDOUR::Session* session, ARDOUR::DataType type, bool inp } std::shared_ptr<PortGroup> bus (new PortGroup (_("Busses"))); - std::shared_ptr<PortGroup> track (new PortGroup (("Tracks"))); + std::shared_ptr<PortGroup> track (new PortGroup (_("Tracks"))); std::shared_ptr<PortGroup> sidechain (new PortGroup (_("Sidechains"))); std::shared_ptr<PortGroup> iop_pre (new PortGroup (_("I/O Pre") )); std::shared_ptr<PortGroup> iop_post (new PortGroup (_("I/O Post") )); -- 2.30.2 |
|
Applied in 7.5-662-g82d03607b8 Thanks! |
Date Modified | Username | Field | Change |
---|---|---|---|
2023-09-23 10:18 | songo | New Issue | |
2023-09-23 10:18 | songo | Tag Attached: gettext | |
2023-09-23 10:18 | songo | Tag Attached: ports | |
2023-09-23 10:18 | songo | Tag Attached: track | |
2023-09-23 10:18 | songo | Tag Attached: translations | |
2023-09-23 10:18 | songo | File Added: 0001-PortGroup-fix-missing-_-in-Tracks.patch | |
2023-09-23 12:12 | x42 | Note Added: 0028100 | |
2023-09-23 12:13 | x42 | Assigned To | => x42 |
2023-09-23 12:13 | x42 | Status | new => resolved |
2023-09-23 12:13 | x42 | Resolution | open => fixed |