summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSkyJJ <jjchai01@hotmail.com>2020-07-23 00:07:35 +0200
committerSkyJJ <jjchai01@hotmail.com>2020-08-19 03:01:52 +0200
commit396f2eee827293d9b096e6fc954a57c92bf21f95 (patch)
tree97651ad76e4a19293700039ced3e145304a775a7 /doc
parentc0d837a2ea9ca888f673485c4b9d8d9ae1936375 (diff)
Update POT generation to handle context and plurals
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/EditorTranslationParserPlugin.xml19
1 files changed, 14 insertions, 5 deletions
diff --git a/doc/classes/EditorTranslationParserPlugin.xml b/doc/classes/EditorTranslationParserPlugin.xml
index d40fc558de..eaa678a25a 100644
--- a/doc/classes/EditorTranslationParserPlugin.xml
+++ b/doc/classes/EditorTranslationParserPlugin.xml
@@ -5,30 +5,37 @@
</brief_description>
<description>
Plugins are registered via [method EditorPlugin.add_translation_parser_plugin] method. To define the parsing and string extraction logic, override the [method parse_file] method in script.
+ Add the extracted strings to argument [code]msgids[/code] or [code]msgids_context_plural[/code] if context or plural is used.
The extracted strings will be written into a POT file selected by user under "POT Generation" in "Localization" tab in "Project Settings" menu.
- Below shows an example of a custom parser that extracts strings in a CSV file to write into a POT.
+ Below shows an example of a custom parser that extracts strings from a CSV file to write into a POT.
[codeblock]
tool
extends EditorTranslationParserPlugin
- func parse_file(path, extracted_strings):
+ func parse_file(path, msgids, msgids_context_plural):
var file = File.new()
file.open(path, File.READ)
var text = file.get_as_text()
var split_strs = text.split(",", false, 0)
for s in split_strs:
- extracted_strings.append(s)
+ msgids.append(s)
#print("Extracted string: " + s)
func get_recognized_extensions():
return ["csv"]
[/codeblock]
+ To add a translatable string associated with context or plural, add it to [code]msgids_context_plural[/code]:
+ [codeblock]
+ msgids_ctx_plural.append(["Test 1", "context", "test 1 plurals"]) # This will add a message with msgid "Test 1", msgctxt "context", and msgid_plural "test 1 plurals".
+ msgids_ctx_plural.append(["A test without context", "", "plurals"]) # This will add a message with msgid "A test without context" and msgid_plural "plurals".
+ msgids_ctx_plural.append(["Only with context", "a friendly context", ""]) # This will add a message with msgid "Only with context" and msgctxt "a friendly context".
+ [/codeblock]
[b]Note:[/b] If you override parsing logic for standard script types (GDScript, C#, etc.), it would be better to load the [code]path[/code] argument using [method ResourceLoader.load]. This is because built-in scripts are loaded as [Resource] type, not [File] type.
For example:
[codeblock]
- func parse_file(path, extracted_strings):
+ func parse_file(path, msgids, msgids_context_plural):
var res = ResourceLoader.load(path, "Script")
var text = res.get_source_code()
# Parsing logic.
@@ -53,7 +60,9 @@
</return>
<argument index="0" name="path" type="String">
</argument>
- <argument index="1" name="extracted_strings" type="Array">
+ <argument index="1" name="msgids" type="Array">
+ </argument>
+ <argument index="2" name="msgids_context_plural" type="Array">
</argument>
<description>
Override this method to define a custom parsing logic to extract the translatable strings.