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:
luz paz
2021-03-02 10:55:23 -05:00
parent 7eec10defa
commit f2b93a7af3
10 changed files with 30 additions and 23 deletions

View File

@@ -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;