summaryrefslogtreecommitdiff
path: root/doc/classes/EditorTranslationParserPlugin.xml
blob: c7d796ec30d036841f43297ae4eb71e88879c2cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8" ?>
<class name="EditorTranslationParserPlugin" inherits="Reference" version="4.0">
	<brief_description>
		Plugin for adding custom parsers to extract strings that are to be translated from custom files (.csv, .json etc.).
	</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_text] method in script.
		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.
		[codeblock]
		tool
		extends EditorTranslationParserPlugin

		func parse_text(text, extracted_strings):
		    var split_strs = text.split(",", false, 0)
		    for s in split_strs:
		        extracted_strings.append(s)
		        #print("Extracted string: " + s)

		func get_recognized_extensions():
		    return ["csv"]
		[/codeblock]		
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="get_recognized_extensions" qualifiers="virtual">
			<return type="Array">
			</return>
			<description>
				Gets the list of file extensions to associate with this parser, e.g. [code]["csv"][/code].
			</description>
		</method>
		<method name="parse_text" qualifiers="virtual">
			<return type="void">
			</return>
			<argument index="0" name="text" type="String">
			</argument>
			<argument index="1" name="extracted_strings" type="Array">
			</argument>
			<description>
				Override this method to define a custom parsing logic to extract the translatable strings.
			</description>
		</method>
	</methods>
	<constants>
	</constants>
</class>