Skip to content

Commit ae5bcd3

Browse files
Jojo-Schmitzvpereverzev
authored andcommitted
Attempt to fix translation for 2 score order strings
1 parent 5acb28d commit ae5bcd3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libmscore/scoreOrder.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ QString ScoreOrder::getName() const
403403
QString ScoreOrder::getFullName() const
404404
{
405405
if (_customised)
406-
return QString(QT_TRANSLATE_NOOP("OrderXML", "%1 (Customized)")).arg(_name);
406+
return QObject::tr("%1 (Customized)").arg(_name);
407407
else
408408
return getName();
409409
}
@@ -724,7 +724,7 @@ void ScoreOrder::dump() const
724724
ScoreOrderList::ScoreOrderList()
725725
{
726726
_orders.clear();
727-
ScoreOrder* custom = new ScoreOrder(QString("<custom>"), QString(QT_TRANSLATE_NOOP("OrderXML", "Custom")));
727+
ScoreOrder* custom = new ScoreOrder(QString("<custom>"), QObject::tr("Custom"));
728728
custom->createUnsortedGroup();
729729
addScoreOrder(custom);
730730
}

0 commit comments

Comments
 (0)