diff options
author | SkyJJ <jjchai01@hotmail.com> | 2020-06-23 13:48:59 +0200 |
---|---|---|
committer | SkyJJ <jjchai01@hotmail.com> | 2020-07-02 14:47:35 +0200 |
commit | efb460942536fcd35aa50fc6dbeb6aeea6917642 (patch) | |
tree | 1298aba304d8bd128362ed5ce3cfbe33ff5953de /editor/pot_generator.h | |
parent | 1db29d0101816825af6641bbfbbc3cef6d394dc2 (diff) | |
download | redot-engine-efb460942536fcd35aa50fc6dbeb6aeea6917642.tar.gz |
Add translation parser plugin support
Diffstat (limited to 'editor/pot_generator.h')
-rw-r--r-- | editor/pot_generator.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/editor/pot_generator.h b/editor/pot_generator.h index 5e947aca00..abe1a21d41 100644 --- a/editor/pot_generator.h +++ b/editor/pot_generator.h @@ -33,27 +33,12 @@ #include "core/ordered_hash_map.h" #include "core/set.h" -#include "modules/regex/regex.h" -#include "scene/resources/packed_scene.h" class POTGenerator { static POTGenerator *singleton; // Stores all translatable strings and the source files containing them. OrderedHashMap<String, Set<String>> all_translation_strings; - // Scene Node's properties that contain translation strings. - Set<String> lookup_properties; - - // Regex and search patterns that are used to match translation strings in scripts. - const String text = "((?:[^\"\\\\]|\\\\[\\s\\S])*(?:\"[\\s\\\\]*\\+[\\s\\\\]*\"(?:[^\"\\\\]|\\\\[\\s\\S])*)*)"; - RegEx regex; - Vector<String> patterns; - Vector<String> file_dialog_patterns; - - Vector<String> _parse_scene(const Ref<SceneState> &p_state); - Vector<String> _parse_script(const String &p_source_code); - void _parse_file_dialog(const String &p_source_code, Vector<String> *r_output); - void _get_captured_strings(const Array &p_results, Vector<String> *r_output); void _write_to_pot(const String &p_file); public: |