diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-01-06 16:44:40 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-01-06 16:44:40 +0000 |
| commit | 9314d6bdf8857bc6cd29b0596158f2d0ff787513 (patch) | |
| tree | 9b7082c3040dcaaf040701c98746cb48e8bdf0ef /src/wx/cinema_dialog.cc | |
| parent | 85783f27f40ff6b60bf8e3348dc566e89323e8d0 (diff) | |
Missed i18n.
Diffstat (limited to 'src/wx/cinema_dialog.cc')
| -rw-r--r-- | src/wx/cinema_dialog.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/cinema_dialog.cc b/src/wx/cinema_dialog.cc index 2c0b0b4a4..e663fc3b8 100644 --- a/src/wx/cinema_dialog.cc +++ b/src/wx/cinema_dialog.cc @@ -25,14 +25,14 @@ using std::string; CinemaDialog::CinemaDialog (wxWindow* parent, string title, string name, string email) : wxDialog (parent, wxID_ANY, std_to_wx (title)) { - wxFlexGridSizer* table = new wxFlexGridSizer (2, 6, 6); + wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); table->AddGrowableCol (1, 1); - add_label_to_sizer (table, this, "Name", true); + add_label_to_sizer (table, this, _("Name"), true); _name = new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (256, -1)); table->Add (_name, 1, wxEXPAND); - add_label_to_sizer (table, this, "Email address for KDM delivery", true); + add_label_to_sizer (table, this, _("Email address for KDM delivery"), true); _email = new wxTextCtrl (this, wxID_ANY, std_to_wx (email), wxDefaultPosition, wxSize (256, -1)); table->Add (_email, 1, wxEXPAND); |
