summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2010-04-18 00:25:03 +0000
committerCarl Hetherington <carl@carlh.net>2010-04-18 00:25:03 +0000
commitd9cac66b5d7f76a78b1ae1442a275516ef710bc9 (patch)
tree4f67a94e4ebc26e7c1378b71fd57840b365a57ee /gtk2_ardour
parenteb61a6fd58d0081cc1c21d3eb49c6c6396b28bdd (diff)
Fix some i18n bugs; hopefully most if not all of #2999.
git-svn-id: svn://localhost/ardour2/branches/3.0@6927 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor.cc4
-rw-r--r--gtk2_ardour/theme_manager.cc8
2 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index cbeaae9886..a2ba7891c8 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -3289,8 +3289,8 @@ Editor::duplicate_dialog (bool with_dialog)
if (with_dialog) {
- ArdourDialog win ("Duplicate");
- Label label (_("Number of Duplications:"));
+ ArdourDialog win (_("Duplicate"));
+ Label label (_("Number of Duplications:"));
Adjustment adjustment (1.0, 1.0, 1000000.0, 1.0, 5.0);
SpinButton spinner (adjustment, 0.0, 1);
HBox hbox;
diff --git a/gtk2_ardour/theme_manager.cc b/gtk2_ardour/theme_manager.cc
index ac61efa5ec..1e4e0aac3c 100644
--- a/gtk2_ardour/theme_manager.cc
+++ b/gtk2_ardour/theme_manager.cc
@@ -48,10 +48,10 @@ sigc::signal<void> ColorsChanged;
sigc::signal<void,uint32_t> ColorChanged;
ThemeManager::ThemeManager()
- : ArdourDialog ("ThemeManager"),
- dark_button ("Dark theme"),
- light_button ("Light theme"),
- reset_button ("Restore Defaults")
+ : ArdourDialog (_("ThemeManager")),
+ dark_button (_("Dark Theme")),
+ light_button (_("Light Theme")),
+ reset_button (_("Restore Defaults"))
{
set_title (_("Theme Manager"));