diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-06-21 23:25:12 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-06-21 23:25:12 +0100 |
| commit | 7902264295f305b10cf39ddf6bdd53b13781cc62 (patch) | |
| tree | e0197ac0b56769b1b96ffd2ff71c334ec0c115ce /src | |
| parent | 96378dd82350e2708a1200c2271cb3c0b5a30147 (diff) | |
Trim Subtitle prefixes too.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/subtitle_panel.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/subtitle_panel.cc b/src/wx/subtitle_panel.cc index 63a18b0ce..14b5d8b89 100644 --- a/src/wx/subtitle_panel.cc +++ b/src/wx/subtitle_panel.cc @@ -41,7 +41,7 @@ SubtitlePanel::SubtitlePanel (FilmEditor* e) grid->AddSpacer (0); { - add_label_to_sizer (grid, this, _("Subtitle X Offset"), true); + add_label_to_sizer (grid, this, _("X Offset"), true); wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); _x_offset = new wxSpinCtrl (this); s->Add (_x_offset); @@ -50,7 +50,7 @@ SubtitlePanel::SubtitlePanel (FilmEditor* e) } { - add_label_to_sizer (grid, this, _("Subtitle Y Offset"), true); + add_label_to_sizer (grid, this, _("Y Offset"), true); wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); _y_offset = new wxSpinCtrl (this); s->Add (_y_offset); @@ -59,7 +59,7 @@ SubtitlePanel::SubtitlePanel (FilmEditor* e) } { - add_label_to_sizer (grid, this, _("Subtitle Scale"), true); + add_label_to_sizer (grid, this, _("Scale"), true); wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); _scale = new wxSpinCtrl (this); s->Add (_scale); @@ -67,7 +67,7 @@ SubtitlePanel::SubtitlePanel (FilmEditor* e) grid->Add (s); } - add_label_to_sizer (grid, this, _("Subtitle Stream"), true); + add_label_to_sizer (grid, this, _("Stream"), true); _stream = new wxChoice (this, wxID_ANY); grid->Add (_stream, 1, wxEXPAND); |
