From 958b410359cc3f88c7a26e2e7530bcc0ace5c4a8 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 5 Apr 2015 01:23:55 +0200 Subject: [PATCH] translatable monitor section labels --- gtk2_ardour/monitor_section.cc | 8 ++++---- 1 file 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);