Tweak label as suggested by Carsten.
authorCarl Hetherington <cth@carlh.net>
Wed, 31 Jan 2018 23:58:50 +0000 (23:58 +0000)
committerCarl Hetherington <cth@carlh.net>
Wed, 31 Jan 2018 23:58:50 +0000 (23:58 +0000)
src/wx/audio_panel.cc
src/wx/subtitle_panel.cc
src/wx/video_panel.cc

index a79c0c4b02cc455dcaa592d301152bc8be09f2bd..fd63abf6ca050b9624e799db0438abb3d4be2dab 100644 (file)
@@ -53,7 +53,7 @@ AudioPanel::AudioPanel (ContentPanel* p)
 
        int r = 0;
 
-       _reference = new wxCheckBox (this, wxID_ANY, _("Refer to existing DCP"));
+       _reference = new wxCheckBox (this, wxID_ANY, _("Use this DCP's audio as OV and make VF"));
        grid->Add (_reference, wxGBPosition (r, 0), wxGBSpan (1, 3));
        ++r;
 
index bc8eb19439b472de83d722515b0018c5ff979459..0b94b335fd9c4adbf1cf37be0f685b34e7119e74 100644 (file)
@@ -52,7 +52,7 @@ SubtitlePanel::SubtitlePanel (ContentPanel* p)
        _sizer->Add (grid, 0, wxALL, 8);
        int r = 0;
 
-       _reference = new wxCheckBox (this, wxID_ANY, _("Refer to existing DCP"));
+       _reference = new wxCheckBox (this, wxID_ANY, _("Use this DCP's subtitle as OV and make VF"));
        grid->Add (_reference, wxGBPosition (r, 0), wxGBSpan (1, 2));
        ++r;
 
index fcd7af30a34b56ce004f1a54bbda05f36797effe..294dd00e10c1c069cf0b77b4625594ec25ec8e7a 100644 (file)
@@ -79,7 +79,7 @@ VideoPanel::VideoPanel (ContentPanel* p)
 
        int r = 0;
 
-       _reference = new wxCheckBox (this, wxID_ANY, _("Refer to existing DCP"));
+       _reference = new wxCheckBox (this, wxID_ANY, _("Use this DCP's video as OV and make VF"));
        grid->Add (_reference, wxGBPosition (r, 0), wxGBSpan (1, 2));
        ++r;