summaryrefslogtreecommitdiff
path: root/src/wx/gain_calculator_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-02-06 12:59:52 +0000
committerCarl Hetherington <cth@carlh.net>2013-02-06 12:59:52 +0000
commit3b6af76dc7a9089a35d2d2815d4fb8fb55876d1b (patch)
tree5659b2fa0284fd5d6502432d76d725be941e897c /src/wx/gain_calculator_dialog.cc
parent31d33f861023709e02641d12bbf7a1a449c82007 (diff)
Try to improve i18n a bit.
Diffstat (limited to 'src/wx/gain_calculator_dialog.cc')
-rw-r--r--src/wx/gain_calculator_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/gain_calculator_dialog.cc b/src/wx/gain_calculator_dialog.cc
index 3f07faf06..7f4b774c0 100644
--- a/src/wx/gain_calculator_dialog.cc
+++ b/src/wx/gain_calculator_dialog.cc
@@ -29,11 +29,11 @@ GainCalculatorDialog::GainCalculatorDialog (wxWindow* parent)
wxFlexGridSizer* table = new wxFlexGridSizer (2, 6, 6);
table->AddGrowableCol (1, 1);
- add_label_to_sizer (table, this, "I want to play this back at fader");
+ add_label_to_sizer (table, this, _("I want to play this back at fader"));
_wanted = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxDefaultSize, 0, wxTextValidator (wxFILTER_NUMERIC));
table->Add (_wanted, 1, wxEXPAND);
- add_label_to_sizer (table, this, "But I have to use fader");
+ add_label_to_sizer (table, this, _("But I have to use fader"));
_actual = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxDefaultSize, 0, wxTextValidator (wxFILTER_NUMERIC));
table->Add (_actual, 1, wxEXPAND);