Fix auto-translations in editor

This commit is contained in:
kobewi 2023-03-17 01:58:30 +01:00
parent 0291fcd7b6
commit 8f8178bda6
7 changed files with 37 additions and 5 deletions

View file

@ -1378,7 +1378,12 @@ String Object::tr(const StringName &p_message, const StringName &p_context) cons
if (!_can_translate || !TranslationServer::get_singleton()) { if (!_can_translate || !TranslationServer::get_singleton()) {
return p_message; return p_message;
} }
return TranslationServer::get_singleton()->translate(p_message, p_context);
if (Engine::get_singleton()->is_editor_hint()) {
return TranslationServer::get_singleton()->tool_translate(p_message, p_context);
} else {
return TranslationServer::get_singleton()->translate(p_message, p_context);
}
} }
String Object::tr_n(const StringName &p_message, const StringName &p_message_plural, int p_n, const StringName &p_context) const { String Object::tr_n(const StringName &p_message, const StringName &p_message_plural, int p_n, const StringName &p_context) const {
@ -1389,7 +1394,12 @@ String Object::tr_n(const StringName &p_message, const StringName &p_message_plu
} }
return p_message_plural; return p_message_plural;
} }
return TranslationServer::get_singleton()->translate_plural(p_message, p_message_plural, p_n, p_context);
if (Engine::get_singleton()->is_editor_hint()) {
return TranslationServer::get_singleton()->tool_translate_plural(p_message, p_message_plural, p_n, p_context);
} else {
return TranslationServer::get_singleton()->translate_plural(p_message, p_message_plural, p_n, p_context);
}
} }
void Object::_clear_internal_resource_paths(const Variant &p_var) { void Object::_clear_internal_resource_paths(const Variant &p_var) {

View file

@ -2912,6 +2912,13 @@ void Control::_notification(int p_notification) {
} break; } break;
case NOTIFICATION_ENTER_TREE: { case NOTIFICATION_ENTER_TREE: {
#ifdef TOOLS_ENABLED
if (is_part_of_edited_scene()) {
// Don't translate Controls on scene when inside editor.
set_message_translation(false);
notification(NOTIFICATION_TRANSLATION_CHANGED);
}
#endif
notification(NOTIFICATION_THEME_CHANGED); notification(NOTIFICATION_THEME_CHANGED);
} break; } break;

View file

@ -249,9 +249,11 @@ void MenuBar::_update_submenu(const String &p_menu_name, PopupMenu *p_child) {
} }
bool MenuBar::is_native_menu() const { bool MenuBar::is_native_menu() const {
if (Engine::get_singleton()->is_editor_hint() && is_inside_tree() && get_tree()->get_edited_scene_root() && (get_tree()->get_edited_scene_root()->is_ancestor_of(this) || get_tree()->get_edited_scene_root() == this)) { #ifdef TOOLS_ENABLED
if (is_part_of_edited_scene()) {
return false; return false;
} }
#endif
return (DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_GLOBAL_MENU) && is_native); return (DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_GLOBAL_MENU) && is_native);
} }

View file

@ -2073,6 +2073,11 @@ bool Node::is_property_pinned(const StringName &p_property) const {
StringName Node::get_property_store_alias(const StringName &p_property) const { StringName Node::get_property_store_alias(const StringName &p_property) const {
return p_property; return p_property;
} }
bool Node::is_part_of_edited_scene() const {
return Engine::get_singleton()->is_editor_hint() && is_inside_tree() && get_tree()->get_edited_scene_root() &&
(get_tree()->get_edited_scene_root() == this || get_tree()->get_edited_scene_root()->is_ancestor_of(this));
}
#endif #endif
void Node::get_storable_properties(HashSet<StringName> &r_storable_properties) const { void Node::get_storable_properties(HashSet<StringName> &r_storable_properties) const {

View file

@ -382,6 +382,7 @@ public:
void set_property_pinned(const String &p_property, bool p_pinned); void set_property_pinned(const String &p_property, bool p_pinned);
bool is_property_pinned(const StringName &p_property) const; bool is_property_pinned(const StringName &p_property) const;
virtual StringName get_property_store_alias(const StringName &p_property) const; virtual StringName get_property_store_alias(const StringName &p_property) const;
bool is_part_of_edited_scene() const;
#endif #endif
void get_storable_properties(HashSet<StringName> &r_storable_properties) const; void get_storable_properties(HashSet<StringName> &r_storable_properties) const;

View file

@ -35,7 +35,7 @@ void Timer::_notification(int p_what) {
case NOTIFICATION_READY: { case NOTIFICATION_READY: {
if (autostart) { if (autostart) {
#ifdef TOOLS_ENABLED #ifdef TOOLS_ENABLED
if (Engine::get_singleton()->is_editor_hint() && get_tree()->get_edited_scene_root() && (get_tree()->get_edited_scene_root() == this || get_tree()->get_edited_scene_root()->is_ancestor_of(this))) { if (is_part_of_edited_scene()) {
break; break;
} }
#endif #endif

View file

@ -490,7 +490,7 @@ bool Window::is_embedded() const {
bool Window::is_in_edited_scene_root() const { bool Window::is_in_edited_scene_root() const {
#ifdef TOOLS_ENABLED #ifdef TOOLS_ENABLED
return (Engine::get_singleton()->is_editor_hint() && get_tree()->get_edited_scene_root() && (get_tree()->get_edited_scene_root()->is_ancestor_of(this) || get_tree()->get_edited_scene_root() == this)); return is_part_of_edited_scene();
#else #else
return false; return false;
#endif #endif
@ -1138,6 +1138,13 @@ void Window::_notification(int p_what) {
RS::get_singleton()->viewport_set_active(get_viewport_rid(), true); RS::get_singleton()->viewport_set_active(get_viewport_rid(), true);
} }
#ifdef TOOLS_ENABLED
if (is_part_of_edited_scene()) {
// Don't translate Windows on scene when inside editor.
set_message_translation(false);
notification(NOTIFICATION_TRANSLATION_CHANGED);
}
#endif
notification(NOTIFICATION_THEME_CHANGED); notification(NOTIFICATION_THEME_CHANGED);
} break; } break;