summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-04-05 01:23:55 +0200
committerRobin Gareus <robin@gareus.org>2015-04-05 01:23:55 +0200
commit958b410359cc3f88c7a26e2e7530bcc0ace5c4a8 (patch)
tree9bc928f136029a2e41a4830c2d921ca49679a167
parent78f4c6a6dd48d97cc8380810d9735975ba22ae17 (diff)
translatable monitor section labels
-rw-r--r--gtk2_ardour/monitor_section.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk2_ardour/monitor_section.cc b/gtk2_ardour/monitor_section.cc
index f664fdbe09..48b46406b3 100644
--- a/gtk2_ardour/monitor_section.cc
+++ b/gtk2_ardour/monitor_section.cc
@@ -346,19 +346,19 @@ MonitorSection::MonitorSection (Session* s)
l1->set_name (X_("MonitorSectionLabel"));
channel_table_header.attach (*l1, 0, 1, 0, 1, EXPAND|FILL);
- l1 = manage (new Label (X_("Mute")));
+ l1 = manage (new Label (_("Mute")));
l1->set_name (X_("MonitorSectionLabel"));
channel_table_header.attach (*l1, 1, 2, 0, 1, EXPAND|FILL);
- l1 = manage (new Label (X_("Dim")));
+ l1 = manage (new Label (_("Dim")));
l1->set_name (X_("MonitorSectionLabel"));
channel_table_header.attach (*l1, 2, 3, 0, 1, EXPAND|FILL);
- l1 = manage (new Label (X_("Solo")));
+ l1 = manage (new Label (_("Solo")));
l1->set_name (X_("MonitorSectionLabel"));
channel_table_header.attach (*l1, 3, 4, 0, 1, EXPAND|FILL);
- l1 = manage (new Label (X_("Inv")));
+ l1 = manage (new Label (_("Inv")));
l1->set_name (X_("MonitorSectionLabel"));
channel_table_header.attach (*l1, 4, 5, 0, 1, EXPAND|FILL);