PortGroup: fix missing "_" in "Tracks"

This small typo prevented (a rather important) noun "Tracks" from being
translated.
This commit is contained in:
Krzysztof Gajdemski 2023-09-23 11:32:10 +02:00 committed by Robin Gareus
parent e40000e90c
commit 82d03607b8
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 1 additions and 1 deletions

View File

@ -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") ));