summaryrefslogtreecommitdiffstats
path: root/editor/editor_translation_parser.cpp
diff options
context:
space:
mode:
authorSkyJJ <jjchai01@hotmail.com>2020-08-07 13:17:12 +0200
committerSkyJJ <jjchai01@hotmail.com>2020-08-19 03:01:53 +0200
commit0ef758eaeeb5b2f44e132865f0f10baf692e972f (patch)
tree6e30ec08277fdeb8605050154b9f54002e11e5b0 /editor/editor_translation_parser.cpp
parent396f2eee827293d9b096e6fc954a57c92bf21f95 (diff)
downloadredot-engine-0ef758eaeeb5b2f44e132865f0f10baf692e972f.tar.gz
Updated Translation architecture to have TranslationPO, did some commit fixes and updated class Reference.
Diffstat (limited to 'editor/editor_translation_parser.cpp')
-rw-r--r--editor/editor_translation_parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_translation_parser.cpp b/editor/editor_translation_parser.cpp
index e664292796..7a90d20000 100644
--- a/editor/editor_translation_parser.cpp
+++ b/editor/editor_translation_parser.cpp
@@ -54,7 +54,7 @@ Error EditorTranslationParserPlugin::parse_file(const String &p_path, Vector<Str
// Add user's collected translatable messages with context or plurals.
for (int i = 0; i < ids_ctx_plural.size(); i++) {
Array arr = ids_ctx_plural[i];
- ERR_FAIL_COND_V_MSG(arr.size() != 3, ERR_INVALID_DATA, "Array entries written into msgids_ctx_plural of EditorTranslationParserPlugin parse_file() method should have the form [\"message\",\"context\",\"plural message\"]");
+ ERR_FAIL_COND_V_MSG(arr.size() != 3, ERR_INVALID_DATA, "Array entries written into `msgids_context_plural` in `parse_file()` method should have the form [\"message\", \"context\", \"plural message\"]");
Vector<String> id_ctx_plural;
id_ctx_plural.push_back(arr[0]);