From: Carl Hetherington Date: Sat, 20 Oct 2018 20:24:28 +0000 (+0100) Subject: Remove erroneous empty gettext translations. X-Git-Tag: v2.13.65~14^2 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=3c79703cf661285fca32a956f8c8a9cb185ea7fa Remove erroneous empty gettext translations. --- diff --git a/src/wx/audio_panel.cc b/src/wx/audio_panel.cc index af2470fa6..954d1676d 100644 --- a/src/wx/audio_panel.cc +++ b/src/wx/audio_panel.cc @@ -49,7 +49,7 @@ AudioPanel::AudioPanel (ContentPanel* p) , _audio_dialog (0) { _reference = new wxCheckBox (this, wxID_ANY, _("Use this DCP's audio as OV and make VF")); - _reference_note = new wxStaticText (this, wxID_ANY, _("")); + _reference_note = new wxStaticText (this, wxID_ANY, wxT("")); _reference_note->Wrap (200); wxFont font = _reference_note->GetFont(); font.SetStyle(wxFONTSTYLE_ITALIC); diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc index 9e4bfe6e9..350dddc0d 100644 --- a/src/wx/text_panel.cc +++ b/src/wx/text_panel.cc @@ -59,7 +59,7 @@ TextPanel::TextPanel (ContentPanel* p, TextType t) } _reference = new wxCheckBox (this, wxID_ANY, refer); - _reference_note = new wxStaticText (this, wxID_ANY, _("")); + _reference_note = new wxStaticText (this, wxID_ANY, wxT("")); _reference_note->Wrap (200); wxFont font = _reference_note->GetFont(); font.SetStyle(wxFONTSTYLE_ITALIC); diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index 2fadfab33..2ae4e0fb7 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -75,7 +75,7 @@ VideoPanel::VideoPanel (ContentPanel* p) : ContentSubPanel (p, _("Video")) { _reference = new wxCheckBox (this, wxID_ANY, _("Use this DCP's video as OV and make VF")); - _reference_note = new wxStaticText (this, wxID_ANY, _("")); + _reference_note = new wxStaticText (this, wxID_ANY, wxT("")); _reference_note->Wrap (200); wxFont font = _reference_note->GetFont(); font.SetStyle(wxFONTSTYLE_ITALIC);