diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-06-08 13:17:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-08 13:17:58 +0200 |
commit | f9a287dd898c8da90bc3f39f7cd568b54754322a (patch) | |
tree | 8e0c8216b19326b424ccd26a969b990104cd65ba /modules/visual_script/visual_script_flow_control.cpp | |
parent | 43f05bd6a0f98181b1055a1bd81d4bc8c3eae4ff (diff) | |
parent | c8ce7e34e22df1209a66d914383756c7ae2534bc (diff) | |
download | redot-engine-f9a287dd898c8da90bc3f39f7cd568b54754322a.tar.gz |
Merge pull request #61804 from akien-mga/i18n-fixes
Diffstat (limited to 'modules/visual_script/visual_script_flow_control.cpp')
-rw-r--r-- | modules/visual_script/visual_script_flow_control.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/visual_script/visual_script_flow_control.cpp b/modules/visual_script/visual_script_flow_control.cpp index 0e63753720..bbbb995635 100644 --- a/modules/visual_script/visual_script_flow_control.cpp +++ b/modules/visual_script/visual_script_flow_control.cpp @@ -391,7 +391,7 @@ public: if (!valid) { r_error.error = Callable::CallError::CALL_ERROR_INVALID_METHOD; - r_error_str = RTR("Input type not iterable: ") + Variant::get_type_name(p_inputs[0]->get_type()); + r_error_str = RTR("Input type not iterable:") + " " + Variant::get_type_name(p_inputs[0]->get_type()); return 0; } @@ -414,7 +414,7 @@ public: if (!valid) { r_error.error = Callable::CallError::CALL_ERROR_INVALID_METHOD; - r_error_str = RTR("Iterator became invalid: ") + Variant::get_type_name(p_inputs[0]->get_type()); + r_error_str = RTR("Iterator became invalid:") + " " + Variant::get_type_name(p_inputs[0]->get_type()); return 0; } |