summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/audio_panel.cc2
-rw-r--r--src/wx/subtitle_panel.cc2
-rw-r--r--src/wx/video_panel.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/audio_panel.cc b/src/wx/audio_panel.cc
index a79c0c4b0..fd63abf6c 100644
--- a/src/wx/audio_panel.cc
+++ b/src/wx/audio_panel.cc
@@ -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;
diff --git a/src/wx/subtitle_panel.cc b/src/wx/subtitle_panel.cc
index bc8eb1943..0b94b335f 100644
--- a/src/wx/subtitle_panel.cc
+++ b/src/wx/subtitle_panel.cc
@@ -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;
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc
index fcd7af30a..294dd00e1 100644
--- a/src/wx/video_panel.cc
+++ b/src/wx/video_panel.cc
@@ -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;