diff --git a/mscore/musescore.cpp b/mscore/musescore.cpp index 21ddd21ae888c..9b61a81708293 100644 --- a/mscore/musescore.cpp +++ b/mscore/musescore.cpp @@ -1787,6 +1787,9 @@ MuseScore::MuseScore() menuTools->addAction(getAction("slash-rhythm")); menuTools->addSeparator(); + menuTools->addAction(getAction("enh-both")); + menuTools->addAction(getAction("enh-current")); + menuTools->addAction(getAction("pitch-spell")); menuTools->addAction(getAction("pitch-spell")); menuTools->addAction(getAction("reset-groupings")); menuTools->addAction(getAction("resequence-rehearsal-marks")); diff --git a/mscore/shortcut.cpp b/mscore/shortcut.cpp index d862373800c08..de838a29e3ffd 100644 --- a/mscore/shortcut.cpp +++ b/mscore/shortcut.cpp @@ -343,8 +343,8 @@ Shortcut Shortcut::_sc[] = { MsWidget::MAIN_WINDOW, STATE_NORMAL | STATE_NOTE_ENTRY, "pitch-spell", - QT_TRANSLATE_NOOP("action","Respell Pitches"), - QT_TRANSLATE_NOOP("action","Respell pitches"), + QT_TRANSLATE_NOOP("action","Recalculate Pitches"), + QT_TRANSLATE_NOOP("action","Recalculate pitches"), 0, Icons::Invalid_ICON, Qt::WindowShortcut @@ -2964,7 +2964,7 @@ Shortcut Shortcut::_sc[] = { MsWidget::MAIN_WINDOW, STATE_NORMAL | STATE_NOTE_ENTRY_STAFF_PITCHED | STATE_NOTE_ENTRY_STAFF_DRUM, "enh-both", - QT_TRANSLATE_NOOP("action","Change Enharmonic Spelling (Both Modes)"), + QT_TRANSLATE_NOOP("action","Change Enharmonic Spelling (&Both Modes)"), QT_TRANSLATE_NOOP("action","Change enharmonic spelling (both modes)"), QT_TRANSLATE_NOOP("action","Change enharmonic note (alters the spelling in concert pitch and transposed mode)") }, @@ -2972,7 +2972,7 @@ Shortcut Shortcut::_sc[] = { MsWidget::MAIN_WINDOW, STATE_NORMAL | STATE_NOTE_ENTRY_STAFF_PITCHED | STATE_NOTE_ENTRY_STAFF_DRUM, "enh-current", - QT_TRANSLATE_NOOP("action","Change Enharmonic Spelling (Current Mode)"), + QT_TRANSLATE_NOOP("action","Change Enharmonic Spelling (&Current Mode)"), QT_TRANSLATE_NOOP("action","Change enharmonic spelling (current mode)"), QT_TRANSLATE_NOOP("action","Change enharmonic note (alters the spelling in the current mode only)") },