Skip to content

Commit

Permalink
Fixing some more bogus strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Jojo-Schmitz committed Oct 12, 2020
1 parent 0474935 commit 3167c64
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions mscore/editstyle.ui
Original file line number Diff line number Diff line change
Expand Up @@ -2117,7 +2117,7 @@
<item row="0" column="0">
<widget class="QLabel" name="label_91">
<property name="text">
<string>Bracket thickness:</string>
<string comment="System bracket">Bracket thickness:</string>
</property>
<property name="buddy">
<cstring>bracketWidth</cstring>
Expand Down Expand Up @@ -2171,7 +2171,7 @@
<item row="1" column="0">
<widget class="QLabel" name="label_52">
<property name="text">
<string>Bracket distance:</string>
<string comment="System bracket">Bracket distance:</string>
</property>
<property name="buddy">
<cstring>bracketDistance</cstring>
Expand Down Expand Up @@ -5083,7 +5083,7 @@
<item row="0" column="0">
<widget class="QLabel" name="label_6">
<property name="text">
<string>Bracket thickness:</string>
<string comment="Tuplet bracket">Bracket thickness:</string>
</property>
<property name="buddy">
<cstring>tupletBracketWidth</cstring>
Expand Down Expand Up @@ -5129,7 +5129,7 @@
<item row="1" column="0">
<widget class="QLabel" name="label_187">
<property name="text">
<string>Bracket hook height:</string>
<string comment="Tuplet bracket">Bracket hook height:</string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion mscore/instrwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void StaffListItem::initStaffTypeCombo(bool forceRecreate)
void StaffListItem::setPartIdx(int val)
{
_partIdx = val;
setText(0, InstrumentsWidget::tr("Staff %1").arg(_partIdx + 1));
setText(0, InstrumentsWidget::tr("Staff: %1").arg(_partIdx + 1));
}

//---------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions mscore/prefsdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -2539,7 +2539,7 @@
<string>Instrument list 1</string>
</property>
<property name="accessibleDescription">
<string>Insert path to a instrument list file</string>
<string>Insert path to an instrument list file</string>
</property>
</widget>
</item>
Expand Down Expand Up @@ -2629,7 +2629,7 @@
<string>Instrument list 2</string>
</property>
<property name="accessibleDescription">
<string>Insert path to a instrument list file</string>
<string>Insert path to an instrument list file</string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion mscore/scoreview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4855,7 +4855,7 @@ void ScoreView::appendMeasures(int n, ElementType type)
if (_score->noStaves()) {
QMessageBox::warning(0, "MuseScore",
tr("No staves found:\n"
"please use the instruments dialog to\n"
"Please use the instruments dialog to\n"
"first create some staves"));
return;
}
Expand Down
8 changes: 4 additions & 4 deletions mscore/shortcut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ Shortcut Shortcut::_sc[] = {
MsWidget::MAIN_WINDOW,
STATE_ALL,
"help",
QT_TRANSLATE_NOOP("action","Online Handbook…"), // Appears in menu
QT_TRANSLATE_NOOP("action","Online handbook"), // Appears in Edit > Preferences > Shortcuts
QT_TRANSLATE_NOOP("action","Online Handbook…"), // Appears in menu, so Title Case
QT_TRANSLATE_NOOP("action","Online handbook"), // Appears in Edit > Preferences > Shortcuts, so Sentence case
QT_TRANSLATE_NOOP("action","Show online handbook"), // Appears if you use Help > What's This?
Icons::Invalid_ICON,
Qt::ApplicationShortcut,
Expand Down Expand Up @@ -824,7 +824,7 @@ Shortcut Shortcut::_sc[] = {
STATE_NORMAL | STATE_NOTE_ENTRY,
"move-up",
QT_TRANSLATE_NOOP("action","Move Up"),
QT_TRANSLATE_NOOP("action","Move up"),
QT_TRANSLATE_NOOP("action","Move chord/rest to staff above"),
0,
Icons::Invalid_ICON,
Qt::WindowShortcut,
Expand Down Expand Up @@ -988,7 +988,7 @@ Shortcut Shortcut::_sc[] = {
STATE_NORMAL | STATE_NOTE_ENTRY,
"move-down",
QT_TRANSLATE_NOOP("action","Move Down"),
QT_TRANSLATE_NOOP("action","Move down"),
QT_TRANSLATE_NOOP("action","Move chord/rest to staff below"),
0,
Icons::Invalid_ICON,
Qt::WindowShortcut,
Expand Down

0 comments on commit 3167c64

Please sign in to comment.