View Issue Details

IDProjectCategoryView StatusLast Update
0009456ardourbugspublic2023-09-23 12:13
Reportersongo Assigned Tox42  
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
PlatformDebian GNUOSLinuxOS Version(any)
Summary0009456: port_group.cc: missing "_" in "Tracks"
DescriptionThere is a small typo in the port_group.cc preventing noun "Tracks" from being
translated in the routing grid.
Steps To ReproduceJust open the "Routing grid" in any foreign language enabled version of Ardour and check if the "Tracks" noun is correctly translated.
Additional InformationYou can find a patch fixing this issue in the attachment.
Tagsgettext, ports, track, translations

Activities

songo

2023-09-23 10:18

reporter  

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

x42

2023-09-23 12:12

administrator   ~0028100

Applied in 7.5-662-g82d03607b8 Thanks!

Issue History

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