From 818acb42900267f6c5dc2637e1bd8b7002413a98 Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Fri, 16 Aug 2024 22:19:14 +0800 Subject: 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. --- editor/editor_settings.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'editor/editor_settings.cpp') diff --git a/editor/editor_settings.cpp b/editor/editor_settings.cpp index 96a7700c34..2bc14b3410 100644 --- a/editor/editor_settings.cpp +++ b/editor/editor_settings.cpp @@ -1210,6 +1210,8 @@ fail: void EditorSettings::setup_language() { String lang = get("interface/editor/editor_language"); + TranslationServer::get_singleton()->set_locale(lang); + if (lang == "en") { return; // Default, nothing to do. } -- cgit v1.2.3