diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-01-31 23:58:50 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-01-31 23:58:50 +0000 |
| commit | 462ecb47dfbcbcc020a955a8592f55ec2dd9b5aa (patch) | |
| tree | e5f6645640f4b7a74afe77ec051c7fb1cba76e36 | |
| parent | c6c1173589761734608d66cc3a8dff4e06b26147 (diff) | |
Tweak label as suggested by Carsten.
| -rw-r--r-- | src/wx/audio_panel.cc | 2 | ||||
| -rw-r--r-- | src/wx/subtitle_panel.cc | 2 | ||||
| -rw-r--r-- | src/wx/video_panel.cc | 2 |
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; |
