You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-11 13:10:58 +00:00
Change ".." punctuation for "..." in editor strings (#16507)
(cherry picked from commit 1c419531a0)
This commit is contained in:
committed by
Rémi Verschelde
parent
e09170dffa
commit
403f7dc35f
@@ -940,7 +940,7 @@ GDScriptParser::Node *GDScriptParser::_parse_expression(Node *p_parent, bool p_s
|
||||
}
|
||||
|
||||
if (!expr) {
|
||||
ERR_EXPLAIN("GDScriptParser bug, couldn't figure out what expression is..");
|
||||
ERR_EXPLAIN("GDScriptParser bug, couldn't figure out what expression is...");
|
||||
ERR_FAIL_COND_V(!expr, NULL);
|
||||
}
|
||||
|
||||
@@ -1275,7 +1275,7 @@ GDScriptParser::Node *GDScriptParser::_parse_expression(Node *p_parent, bool p_s
|
||||
expr_pos++;
|
||||
if (expr_pos == expression.size()) {
|
||||
//can happen..
|
||||
_set_error("Unexpected end of expression..");
|
||||
_set_error("Unexpected end of expression...");
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
@@ -1294,7 +1294,7 @@ GDScriptParser::Node *GDScriptParser::_parse_expression(Node *p_parent, bool p_s
|
||||
|
||||
} else if (is_ternary) {
|
||||
if (next_op < 1 || next_op >= (expression.size() - 1)) {
|
||||
_set_error("Parser bug..");
|
||||
_set_error("Parser bug...");
|
||||
ERR_FAIL_V(NULL);
|
||||
}
|
||||
|
||||
@@ -1313,7 +1313,7 @@ GDScriptParser::Node *GDScriptParser::_parse_expression(Node *p_parent, bool p_s
|
||||
|
||||
if (expression[next_op - 1].is_op) {
|
||||
|
||||
_set_error("Parser bug..");
|
||||
_set_error("Parser bug...");
|
||||
ERR_FAIL_V(NULL);
|
||||
}
|
||||
|
||||
@@ -1350,7 +1350,7 @@ GDScriptParser::Node *GDScriptParser::_parse_expression(Node *p_parent, bool p_s
|
||||
} else {
|
||||
|
||||
if (next_op < 1 || next_op >= (expression.size() - 1)) {
|
||||
_set_error("Parser bug..");
|
||||
_set_error("Parser bug...");
|
||||
ERR_FAIL_V(NULL);
|
||||
}
|
||||
|
||||
@@ -1360,7 +1360,7 @@ GDScriptParser::Node *GDScriptParser::_parse_expression(Node *p_parent, bool p_s
|
||||
|
||||
if (expression[next_op - 1].is_op) {
|
||||
|
||||
_set_error("Parser bug..");
|
||||
_set_error("Parser bug...");
|
||||
ERR_FAIL_V(NULL);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user