diff options
author | Orcan Ogetbil <oget.fedora@gmail.com> | 2010-12-26 00:52:42 +0000 |
---|---|---|
committer | Orcan Ogetbil <oget.fedora@gmail.com> | 2010-12-26 00:52:42 +0000 |
commit | da07df1a7b1f28571a4b4b47b44063cea4a58624 (patch) | |
tree | 7c19bcc7917dae39a0d1da3232392172a7a94a00 /muse2/muse/app.cpp | |
parent | 675fdc040eed8e679188fa41fb5421a121fb935b (diff) |
Capitalizations on menu items (patch from Geoff King)
Diffstat (limited to 'muse2/muse/app.cpp')
-rw-r--r-- | muse2/muse/app.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/muse2/muse/app.cpp b/muse2/muse/app.cpp index 6e356a18..eecc94ff 100644 --- a/muse2/muse/app.cpp +++ b/muse2/muse/app.cpp @@ -951,7 +951,7 @@ MusE::MusE(int argc, char** argv) : QMainWindow() editPasteCloneAction = new QAction(QIcon(*editpasteCloneIconSet), tr("Paste c&lone"), this); editPaste2TrackAction = new QAction(QIcon(*editpaste2TrackIconSet), tr("Paste to &track"), this); editPasteC2TAction = new QAction(QIcon(*editpasteClone2TrackIconSet), tr("Paste clone to trac&k"), this); - editInsertEMAction = new QAction(QIcon(*editpasteIconSet), tr("&Insert empty measure"), this); + editInsertEMAction = new QAction(QIcon(*editpasteIconSet), tr("&Insert Empty Measure"), this); editDeleteSelectedAction = new QAction(QIcon(*edit_track_delIcon), tr("Delete Selected Tracks"), this); @@ -983,12 +983,12 @@ MusE::MusE(int argc, char** argv) : QMainWindow() midiTransposeAction = new QAction(QIcon(*midi_transposeIcon), tr("Transpose"), this); midiTransformerAction = new QAction(QIcon(*midi_transformIcon), tr("Midi &Transform"), this); - editSongInfoAction = new QAction(QIcon(*edit_listIcon), tr("Song info"), this); + editSongInfoAction = new QAction(QIcon(*edit_listIcon), tr("Song Info"), this); //-------- View Actions viewTransportAction = new QAction(QIcon(*view_transport_windowIcon), tr("Transport Panel"), this); viewTransportAction->setCheckable(true); - viewBigtimeAction = new QAction(QIcon(*view_bigtime_windowIcon), tr("Bigtime window"), this); + viewBigtimeAction = new QAction(QIcon(*view_bigtime_windowIcon), tr("Bigtime Window"), this); viewBigtimeAction->setCheckable(true); viewMixerAAction = new QAction(QIcon(*mixerSIcon), tr("Mixer A"), this); viewMixerAAction->setCheckable(true); @@ -1022,7 +1022,7 @@ MusE::MusE(int argc, char** argv) : QMainWindow() #endif midiResetInstAction = new QAction(QIcon(*midi_reset_instrIcon), tr("Reset Instr."), this); midiInitInstActions = new QAction(QIcon(*midi_init_instrIcon), tr("Init Instr."), this); - midiLocalOffAction = new QAction(QIcon(*midi_local_offIcon), tr("local off"), this); + midiLocalOffAction = new QAction(QIcon(*midi_local_offIcon), tr("Local Off"), this); //-------- Audio Actions audioBounce2TrackAction = new QAction(QIcon(*audio_bounce_to_trackIcon), tr("Bounce to Track"), this); @@ -1056,7 +1056,7 @@ MusE::MusE(int argc, char** argv) : QMainWindow() //-------- Help Actions helpManualAction = new QAction(tr("&Manual"), this); - helpHomepageAction = new QAction(tr("&MusE homepage"), this); + helpHomepageAction = new QAction(tr("&MusE Homepage"), this); helpReportAction = new QAction(tr("&Report Bug..."), this); helpAboutAction = new QAction(tr("&About MusE"), this); |