summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-03-24 00:52:43 +0000
committerCarl Hetherington <cth@carlh.net>2019-03-24 00:52:43 +0000
commit2fe579c2e3c65757fd1c016ff0228174bf52eace (patch)
tree72c8ed666ffecf08afa1dc32235eeba65e6a5935 /src
parenta95e78ea9d4c39f05fc8f7b58141a6a5bdc91ad6 (diff)
Differentiate Y in a couple of i18n places.
Diffstat (limited to 'src')
-rw-r--r--src/tools/dcpomatic_playlist.cc2
-rw-r--r--src/wx/text_panel.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic_playlist.cc b/src/tools/dcpomatic_playlist.cc
index 6b1066c5d..64549765f 100644
--- a/src/tools/dcpomatic_playlist.cc
+++ b/src/tools/dcpomatic_playlist.cc
@@ -177,7 +177,7 @@ private:
_list->SetItem (N, 1, std_to_wx(e.id));
_list->SetItem (N, 2, std_to_wx(dcp::content_kind_to_string(e.kind)));
_list->SetItem (N, 3, e.type == SPLEntry::DCP ? _("DCP") : _("E-cinema"));
- _list->SetItem (N, 4, e.encrypted ? _("Y") : _("N"));
+ _list->SetItem (N, 4, e.encrypted ? S_("Question|Y") : S_("Question|N"));
_list->SetItem (N, COLUMN_SKIPPABLE, wxEmptyString, e.skippable ? 0 : 1);
_list->SetItem (N, COLUMN_DISABLE_TIMELINE, wxEmptyString, e.disable_timeline ? 0 : 1);
_list->SetItem (N, COLUMN_STOP_AFTER_PLAY, wxEmptyString, e.stop_after_play ? 0 : 1);
diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc
index 9e60b3f00..b5adf551e 100644
--- a/src/wx/text_panel.cc
+++ b/src/wx/text_panel.cc
@@ -88,7 +88,7 @@ TextPanel::TextPanel (ContentPanel* p, TextType t)
_x_scale_label = create_label (this, _("X"), true);
_x_scale = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1));
_x_scale_pc_label = new StaticText (this, _("%"));
- _y_scale_label = create_label (this, _("Y"), true);
+ _y_scale_label = create_label (this, S_("Coord|Y"), true);
_y_scale = new wxSpinCtrl (this, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(64, -1));
_y_scale_pc_label = new StaticText (this, _("%"));