diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-06-21 23:19:46 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-06-21 23:19:46 +0100 |
| commit | 96378dd82350e2708a1200c2271cb3c0b5a30147 (patch) | |
| tree | ada495864124e05af2250b864ec7d4e99b75aab1 /src | |
| parent | 0084e2db157939b3639e524588240db9b96bbc7d (diff) | |
I don't think stuff in the Audio panel needs an Audio prefix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/audio_panel.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/audio_panel.cc b/src/wx/audio_panel.cc index 72cb9fe6a..917775181 100644 --- a/src/wx/audio_panel.cc +++ b/src/wx/audio_panel.cc @@ -49,7 +49,7 @@ AudioPanel::AudioPanel (FilmEditor* e) grid->Add (_show, wxGBPosition (r, 0)); ++r; - add_label_to_grid_bag_sizer (grid, this, _("Audio Gain"), true, wxGBPosition (r, 0)); + add_label_to_grid_bag_sizer (grid, this, _("Gain"), true, wxGBPosition (r, 0)); _gain = new ContentSpinCtrlDouble<AudioContent> ( this, new wxSpinCtrlDouble (this), @@ -64,7 +64,7 @@ AudioPanel::AudioPanel (FilmEditor* e) grid->Add (_gain_calculate_button, wxGBPosition (r, 3)); ++r; - add_label_to_grid_bag_sizer (grid, this, _("Audio Delay"), true, wxGBPosition (r, 0)); + add_label_to_grid_bag_sizer (grid, this, _("Delay"), true, wxGBPosition (r, 0)); _delay = new ContentSpinCtrl<AudioContent> ( this, new wxSpinCtrl (this), @@ -78,7 +78,7 @@ AudioPanel::AudioPanel (FilmEditor* e) add_label_to_grid_bag_sizer (grid, this, _("ms"), false, wxGBPosition (r, 2)); ++r; - add_label_to_grid_bag_sizer (grid, this, _("Audio Stream"), true, wxGBPosition (r, 0)); + add_label_to_grid_bag_sizer (grid, this, _("Stream"), true, wxGBPosition (r, 0)); _stream = new wxChoice (this, wxID_ANY); grid->Add (_stream, wxGBPosition (r, 1)); _description = add_label_to_grid_bag_sizer (grid, this, "", false, wxGBPosition (r, 3)); |
