Crowdin: represent whitespace in code instead of in string [skip ci]
Removing possible whitespace from strings lead to more accurate translations
This commit is contained in:
@@ -149,7 +149,7 @@ QString checkStatusToString(const int &index)
|
||||
}
|
||||
if (index > 33 || index < 0)
|
||||
{
|
||||
QString message(QObject::tr("Out Of Enum Range: "));
|
||||
QString message(QObject::tr("Out Of Enum Range:") + " ");
|
||||
QString number;
|
||||
number.setNum(index);
|
||||
message += number;
|
||||
|
||||
Reference in New Issue
Block a user