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

