summaryrefslogtreecommitdiffstats
path: root/editor/editor_translation.cpp
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2024-08-16 22:19:14 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2024-09-17 13:09:44 +0800
commit818acb42900267f6c5dc2637e1bd8b7002413a98 (patch)
treec508a55b86ee404bd3d87f03e9177fa05f6d6d5d /editor/editor_translation.cpp
parentc5d147b9b573fe1a534a7bba78ab5615ffadad96 (diff)
downloadredot-engine-818acb42900267f6c5dc2637e1bd8b7002413a98.tar.gz
Make editor use translation domains
How editor plugins use this feature: 1. Pick a unique translation domain name. 2. `_enter_tree()`: load translations into that translation domain. 3. Call `set_translation_domain()` for its root UI node. 4. `_exit_tree()`: remove that translation domain. Plugins can also set the translation domain to `godot.editor` for nested nodes that should use editor translations. `EditorFileDialog` automatically does this.
Diffstat (limited to 'editor/editor_translation.cpp')
-rw-r--r--editor/editor_translation.cpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/editor/editor_translation.cpp b/editor/editor_translation.cpp
index 4654d41082..6ccde3b696 100644
--- a/editor/editor_translation.cpp
+++ b/editor/editor_translation.cpp
@@ -54,6 +54,8 @@ Vector<String> get_editor_locales() {
}
void load_editor_translations(const String &p_locale) {
+ const Ref<TranslationDomain> domain = TranslationServer::get_singleton()->get_or_add_domain("godot.editor");
+
EditorTranslationList *etl = _editor_translations;
while (etl->data) {
if (etl->lang == p_locale) {
@@ -70,7 +72,7 @@ void load_editor_translations(const String &p_locale) {
if (tr.is_valid()) {
tr->set_locale(etl->lang);
- TranslationServer::get_singleton()->set_tool_translation(tr);
+ domain->add_translation(tr);
break;
}
}
@@ -80,6 +82,8 @@ void load_editor_translations(const String &p_locale) {
}
void load_property_translations(const String &p_locale) {
+ const Ref<TranslationDomain> domain = TranslationServer::get_singleton()->get_or_add_domain("godot.properties");
+
PropertyTranslationList *etl = _property_translations;
while (etl->data) {
if (etl->lang == p_locale) {
@@ -96,7 +100,7 @@ void load_property_translations(const String &p_locale) {
if (tr.is_valid()) {
tr->set_locale(etl->lang);
- TranslationServer::get_singleton()->set_property_translation(tr);
+ domain->add_translation(tr);
break;
}
}
@@ -106,6 +110,8 @@ void load_property_translations(const String &p_locale) {
}
void load_doc_translations(const String &p_locale) {
+ const Ref<TranslationDomain> domain = TranslationServer::get_singleton()->get_or_add_domain("godot.documentation");
+
DocTranslationList *dtl = _doc_translations;
while (dtl->data) {
if (dtl->lang == p_locale) {
@@ -122,7 +128,7 @@ void load_doc_translations(const String &p_locale) {
if (tr.is_valid()) {
tr->set_locale(dtl->lang);
- TranslationServer::get_singleton()->set_doc_translation(tr);
+ domain->add_translation(tr);
break;
}
}
@@ -132,6 +138,8 @@ void load_doc_translations(const String &p_locale) {
}
void load_extractable_translations(const String &p_locale) {
+ const Ref<TranslationDomain> domain = TranslationServer::get_singleton()->get_or_add_domain("godot.editor");
+
ExtractableTranslationList *etl = _extractable_translations;
while (etl->data) {
if (etl->lang == p_locale) {
@@ -148,7 +156,7 @@ void load_extractable_translations(const String &p_locale) {
if (tr.is_valid()) {
tr->set_locale(etl->lang);
- TranslationServer::get_singleton()->set_extractable_translation(tr);
+ domain->add_translation(tr);
break;
}
}