summaryrefslogtreecommitdiff
path: root/src/wx/cinema_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-06 16:44:40 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-06 16:44:40 +0000
commit9314d6bdf8857bc6cd29b0596158f2d0ff787513 (patch)
tree9b7082c3040dcaaf040701c98746cb48e8bdf0ef /src/wx/cinema_dialog.cc
parent85783f27f40ff6b60bf8e3348dc566e89323e8d0 (diff)
Missed i18n.
Diffstat (limited to 'src/wx/cinema_dialog.cc')
-rw-r--r--src/wx/cinema_dialog.cc6
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);