13
0

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
This commit is contained in:
Carl Hetherington 2010-04-18 00:25:03 +00:00
parent eb61a6fd58
commit d9cac66b5d
2 changed files with 6 additions and 6 deletions

View File

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

View File

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