mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 08:23:29 +00:00
Change ".." punctuation for "..." in editor strings (#16507)
(cherry picked from commit 1c419531a0
)
This commit is contained in:
parent
e09170dffa
commit
403f7dc35f
39 changed files with 203 additions and 203 deletions
|
@ -1146,7 +1146,7 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
|||
expr_pos++;
|
||||
if (expr_pos == expression.size()) {
|
||||
//can happen..
|
||||
_set_error("Unexpected end of expression..");
|
||||
_set_error("Unexpected end of expression...");
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
@ -1166,7 +1166,7 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
|||
} else {
|
||||
|
||||
if (next_op < 1 || next_op >= (expression.size() - 1)) {
|
||||
_set_error("Parser bug..");
|
||||
_set_error("Parser bug...");
|
||||
ERR_FAIL_V(NULL);
|
||||
}
|
||||
|
||||
|
@ -1175,7 +1175,7 @@ VisualScriptExpression::ENode *VisualScriptExpression::_parse_expression() {
|
|||
|
||||
if (expression[next_op - 1].is_op) {
|
||||
|
||||
_set_error("Parser bug..");
|
||||
_set_error("Parser bug...");
|
||||
ERR_FAIL_V(NULL);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue