Skip to content

Commit

Permalink
fix #279389: rename timewise delete/input
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz committed Feb 17, 2019
1 parent 8057bc5 commit 291062f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion mscore/musescore.cpp
Expand Up @@ -4073,7 +4073,7 @@ void MuseScore::changeState(ScoreState val)
val = STATE_NOTE_ENTRY_METHOD_REALTIME_MANUAL;
}
else if (getAction("note-input-timewise")->isChecked()) {
showModeText(tr("Timewise input mode"));
showModeText(tr("Insert mode"));
cs->setNoteEntryMethod(NoteEntryMethod::TIMEWISE);
val = STATE_NOTE_ENTRY_METHOD_TIMEWISE;
}
Expand Down
2 changes: 1 addition & 1 deletion mscore/scoreview.cpp
Expand Up @@ -407,7 +407,7 @@ void ScoreView::measurePopup(QContextMenuEvent* ev, Measure* obj)
menuAdd->addAction(getAction("insert-vbox"));
menuAdd->addAction(getAction("insert-textframe"));

a = popup->addAction(tr("Delete Selected Measures"));
a = popup->addAction(tr("Remove Selected Measures"));
a->setData("delete-selected-measures");

popup->addSeparator();
Expand Down
12 changes: 6 additions & 6 deletions mscore/shortcut.cpp
Expand Up @@ -301,7 +301,7 @@ Shortcut Shortcut::_sc[] = {
MsWidget::MAIN_WINDOW,
STATE_NORMAL | STATE_NOTE_ENTRY,
"note-input-timewise",
QT_TRANSLATE_NOOP("action","Timewise"),
QT_TRANSLATE_NOOP("action","Insert"),
QT_TRANSLATE_NOOP("action","Insert notes increasing measure duration"),
0,
Icons::noteTimewise_ICON,
Expand Down Expand Up @@ -1172,7 +1172,7 @@ Shortcut Shortcut::_sc[] = {
"delete",
QT_TRANSLATE_NOOP("action","Delete"),
QT_TRANSLATE_NOOP("action","Delete"),
QT_TRANSLATE_NOOP("action","Delete contents of the selected measures"),
QT_TRANSLATE_NOOP("action","Delete the selected element(s)"),
Icons::Invalid_ICON,
Qt::WindowShortcut
},
Expand All @@ -1182,17 +1182,17 @@ Shortcut Shortcut::_sc[] = {
"full-measure-rest",
QT_TRANSLATE_NOOP("action","Full Measure Rest"),
QT_TRANSLATE_NOOP("action","Full measure rest"),
QT_TRANSLATE_NOOP("action","Converts the measure to a full measure rest"),
QT_TRANSLATE_NOOP("action","Convert the measure to a full measure rest"),
Icons::Invalid_ICON,
Qt::WindowShortcut
},
{
MsWidget::SCORE_TAB,
STATE_NORMAL,
"time-delete",
QT_TRANSLATE_NOOP("action","Timewise Delete"),
QT_TRANSLATE_NOOP("action","Timewise delete"),
QT_TRANSLATE_NOOP("action","Delete element and duration"),
QT_TRANSLATE_NOOP("action","Remove Selected Range"),
QT_TRANSLATE_NOOP("action","Remove selected range"),
QT_TRANSLATE_NOOP("action","Remove element and duration"),
Icons::Invalid_ICON,
Qt::WindowShortcut
},
Expand Down

0 comments on commit 291062f

Please sign in to comment.