diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-12-27 10:58:01 +0800 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-07 14:20:40 +0100 |
commit | 5d7e003b29cf9b57168e459469e13468a49c3da6 (patch) | |
tree | 2303ec8b584f3949acc4acf1396ef47b6a2d86ca /editor/editor_translation.cpp | |
parent | bdad9770d64914da3b77bee49916419b5df87d1c (diff) | |
download | redot-engine-5d7e003b29cf9b57168e459469e13468a49c3da6.tar.gz |
Prepare for moving editor and classref translations to godot-editor-l10n repo
- Separate editor interface and property translations.
- Add property translation in TranslationServer.
- The split and merge of the POT/PO/Makefiles and extract scripts is done
directly in godot-editor-l10n, the files will be removed in the next commit.
- Remove the hardcoded "to_include" lists from the SCsub, we'll only commit the
files which are ready to inclue.
Diffstat (limited to 'editor/editor_translation.cpp')
-rw-r--r-- | editor/editor_translation.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/editor/editor_translation.cpp b/editor/editor_translation.cpp index 426daad823..54a9d2f068 100644 --- a/editor/editor_translation.cpp +++ b/editor/editor_translation.cpp @@ -35,6 +35,7 @@ #include "core/io/translation_loader_po.h" #include "editor/doc_translations.gen.h" #include "editor/editor_translations.gen.h" +#include "editor/property_translations.gen.h" Vector<String> get_editor_locales() { Vector<String> locales; @@ -101,3 +102,29 @@ void load_doc_translations(const String &p_locale) { dtl++; } } + +void load_property_translations(const String &p_locale) { + PropertyTranslationList *etl = _property_translations; + while (etl->data) { + if (etl->lang == p_locale) { + Vector<uint8_t> data; + data.resize(etl->uncomp_size); + int ret = Compression::decompress(data.ptrw(), etl->uncomp_size, etl->data, etl->comp_size, Compression::MODE_DEFLATE); + ERR_FAIL_COND_MSG(ret == -1, "Compressed file is corrupt."); + + Ref<FileAccessMemory> fa; + fa.instantiate(); + fa->open_custom(data.ptr(), data.size()); + + Ref<Translation> tr = TranslationLoaderPO::load_translation(fa); + + if (tr.is_valid()) { + tr->set_locale(etl->lang); + TranslationServer::get_singleton()->set_property_translation(tr); + break; + } + } + + etl++; + } +} |