mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
PortGroup: fix missing "_" in "Tracks"
This small typo prevented (a rather important) noun "Tracks" from being translated.
This commit is contained in:
parent
e40000e90c
commit
82d03607b8
1 changed files with 1 additions and 1 deletions
|
|
@ -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") ));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue