Merge pull request #112317 from timothyqiu/editor-auto-lang

Make editor language setting default to Auto
This commit is contained in:
Thaddeus Crews
2025-11-04 16:32:43 -06:00
8 changed files with 79 additions and 32 deletions

View File

@ -59,7 +59,7 @@ EditorPropertyNameProcessor::Style EditorPropertyNameProcessor::get_tooltip_styl
}
bool EditorPropertyNameProcessor::is_localization_available() {
return EditorSettings::get_singleton() && EDITOR_GET("interface/editor/editor_language") != "en";
return EditorSettings::get_singleton() && EditorSettings::get_singleton()->get_language() != "en";
}
String EditorPropertyNameProcessor::_capitalize_name(const String &p_name) const {