Fixing mistranslated string.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
7686204786
commit
ddb5156396
1 changed files with 1 additions and 1 deletions
|
@ -1071,7 +1071,7 @@ ParserState.prototype.expect = function (type, value) {
|
|||
var coords = this.tokens.getCoordinates();
|
||||
throw new Error(qsTranslate('error', 'Parse error [%1:%2]: %3')
|
||||
.arg(coords.line).arg(coords.column)
|
||||
.arg(qsTranslate('error', 'Expected %1').arg(qsTranslate('error',value) || type)));
|
||||
.arg(qsTranslate('error', 'Expected %1').arg(value || type)));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue