From 2fe579c2e3c65757fd1c016ff0228174bf52eace Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 24 Mar 2019 00:52:43 +0000 Subject: [PATCH] Differentiate Y in a couple of i18n places. --- src/tools/dcpomatic_playlist.cc | 2 +- src/wx/text_panel.cc | 2 +- 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, _("%")); -- 2.30.2