diff options
author | Danil Alexeev <danil@alexeev.xyz> | 2024-10-11 17:35:28 +0300 |
---|---|---|
committer | Danil Alexeev <danil@alexeev.xyz> | 2024-10-13 11:40:11 +0300 |
commit | cab80cb97da303867bbc4c10aaa18c7ccef51287 (patch) | |
tree | 4bc2a6d4ca3315aba3d44ae98c32dd60a247d38b /editor/pot_generator.h | |
parent | 92e51fca7247c932f95a1662aefc28aca96e8de6 (diff) | |
download | redot-engine-cab80cb97da303867bbc4c10aaa18c7ccef51287.tar.gz |
POT Generator: Add support for `TRANSLATORS:` and `NO_TRANSLATE` comments
Diffstat (limited to 'editor/pot_generator.h')
-rw-r--r-- | editor/pot_generator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editor/pot_generator.h b/editor/pot_generator.h index 8bcb2e5cac..54f4aa0652 100644 --- a/editor/pot_generator.h +++ b/editor/pot_generator.h @@ -44,13 +44,14 @@ class POTGenerator { String ctx; String plural; HashSet<String> locations; + HashSet<String> comments; }; // Store msgid as key and the additional data around the msgid - if it's under a context, has plurals and its file locations. HashMap<String, Vector<MsgidData>> all_translation_strings; void _write_to_pot(const String &p_file); void _write_msgid(Ref<FileAccess> r_file, const String &p_id, bool p_plural); - void _add_new_msgid(const String &p_msgid, const String &p_context, const String &p_plural, const String &p_location); + void _add_new_msgid(const String &p_msgid, const String &p_context, const String &p_plural, const String &p_location, const String &p_comment); #ifdef DEBUG_POT void _print_all_translation_strings(); |