Skip to content

Commit

Permalink
Merge pull request #525 from Jojo-Schmitz/fix.orig.texts
Browse files Browse the repository at this point in the history
fix #23366 2nd batch
  • Loading branch information
lasconic committed Nov 1, 2013
2 parents db9009c + 0712881 commit e03ddb3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion libmscore/harmony.cpp
Expand Up @@ -307,7 +307,7 @@ void Harmony::read(XmlReader& e)
// TODO: now that we can render arbitrary chords,
// we could try to construct a full representation from a degree list.
// These will typically only exist for chords imported from MusicXML prior to MuseScore 2.0
// or constructed in the Harmony Properties dialog.
// or constructed in the Chord Name Properties dialog.

if (_rootTpc != INVALID_TPC) {
if (_id > 0)
Expand Down
8 changes: 4 additions & 4 deletions mscore/actions.cpp
Expand Up @@ -1436,8 +1436,8 @@ Shortcut Shortcut::sc[] = {
STATE_NORMAL | STATE_NOTE_ENTRY,
A_CMD,
"harmony-properties",
QT_TRANSLATE_NOOP("action","Harmony Properties"),
QT_TRANSLATE_NOOP("action","Show harmony properties for chord")
QT_TRANSLATE_NOOP("action","Chord Name Properties"),
QT_TRANSLATE_NOOP("action","Show properties for chord name")
),
Shortcut(
STATE_NORMAL | STATE_NOTE_ENTRY,
Expand Down Expand Up @@ -2458,13 +2458,13 @@ Shortcut Shortcut::sc[] = {
STATE_HARMONY_FIGBASS_EDIT,
0,
"prev-beat-TEXT",
QT_TRANSLATE_NOOP("action","Previous beat (Harmony)")
QT_TRANSLATE_NOOP("action","Previous beat (Chord name)")
),
Shortcut(
STATE_HARMONY_FIGBASS_EDIT,
0,
"next-beat-TEXT",
QT_TRANSLATE_NOOP("action","Next beat (Harmony)")
QT_TRANSLATE_NOOP("action","Next beat (Chord name)")
),
Shortcut(
STATE_NORMAL | STATE_NOTE_ENTRY,
Expand Down
2 changes: 1 addition & 1 deletion mscore/chordedit.ui
Expand Up @@ -11,7 +11,7 @@
</rect>
</property>
<property name="windowTitle">
<string>MuseScore: Harmony Properties</string>
<string>MuseScore: Chord Name Properties</string>
</property>
<layout class="QGridLayout">
<item row="0" column="0" colspan="2">
Expand Down
2 changes: 1 addition & 1 deletion mscore/editstringdata.ui
Expand Up @@ -108,7 +108,7 @@
<item>
<widget class="QLabel" name="label_2">
<property name="text">
<string>NumOfFrets:</string>
<string>Number of Frets:</string>
</property>
</widget>
</item>
Expand Down
4 changes: 2 additions & 2 deletions mscore/inspector/inspector_timesig.ui
Expand Up @@ -72,7 +72,7 @@
</sizepolicy>
</property>
<property name="text">
<string>timesig</string>
<string>time sig.</string>
</property>
</widget>
</item>
Expand Down Expand Up @@ -161,7 +161,7 @@
</sizepolicy>
</property>
<property name="text">
<string>global timesig</string>
<string>global time sig.</string>
</property>
</widget>
</item>
Expand Down
2 changes: 1 addition & 1 deletion mscore/propertymenu.cpp
Expand Up @@ -299,7 +299,7 @@ void ScoreView::createElementPropertyMenu(Element* e, QMenu* popup)
else if (e->type() == Element::HARMONY) {
genPropertyMenu1(e, popup);
popup->addSeparator();
popup->addAction(tr("Harmony Properties..."))->setData("ha-props");
popup->addAction(tr("Chord Name Properties..."))->setData("ha-props");
}
else if (e->type() == Element::INSTRUMENT_NAME) {
popup->addAction(tr("Staff Properties..."))->setData("staff-props");
Expand Down

0 comments on commit e03ddb3

Please sign in to comment.