aboutsummaryrefslogtreecommitdiff
path: root/modules/gdscript/gd_functions.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-10-09 18:11:55 +0200
committerRémi Verschelde2016-10-09 18:21:59 +0200
commitb3bf3c392a6ab08b05b015704590b8b468b4d962 (patch)
tree7e5b048def3b46a2cf8dd47ec1c50910a69d06ca /modules/gdscript/gd_functions.cpp
parentc757787fedd81efcf49aac92bb87af3a90bfaac8 (diff)
downloadgodot-b3bf3c392a6ab08b05b015704590b8b468b4d962.tar.gz
godot-b3bf3c392a6ab08b05b015704590b8b468b4d962.tar.zst
godot-b3bf3c392a6ab08b05b015704590b8b468b4d962.zip
i18n: Fix string that broke msgmerge
(cherry picked from commit 2fb5a0030527ac04f1026d80bd8cf12ca3b3f38b)
Diffstat (limited to 'modules/gdscript/gd_functions.cpp')
-rw-r--r--modules/gdscript/gd_functions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_functions.cpp b/modules/gdscript/gd_functions.cpp
index 0369e323b..e82eb8377 100644
--- a/modules/gdscript/gd_functions.cpp
+++ b/modules/gdscript/gd_functions.cpp
@@ -843,7 +843,7 @@ void GDFunctions::call(Function p_func,const Variant **p_args,int p_arg_count,Va
} else if(((String)(*p_args[0])).begins_with("/")) {
r_error.error=Variant::CallError::CALL_ERROR_INVALID_ARGUMENT;
r_error.argument=0;
- r_ret=RTR("Paths cannot start with '/', absolute paths must start with \'res://\', \'user://\', or \'local://\'");
+ r_ret=RTR("Paths cannot start with '/', absolute paths must start with 'res://', 'user://', or 'local://'");
} else {
r_ret=ResourceLoader::load(*p_args[0]);
}