1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Make text-related nodes translation domain aware

- Makes `is_layout_rtl()` translation domain aware
- Makes various text-drawing controls translation domain aware
- Makes translation preview use the project's fallback locale when disabled
This commit is contained in:
Haoyu Qiu
2025-09-10 15:14:18 +08:00
parent 149a4b4ca1
commit 172c80df67
23 changed files with 132 additions and 101 deletions

View File

@@ -600,7 +600,8 @@ void Button::_shape(Ref<TextParagraph> p_paragraph, String p_text) const {
} else {
p_paragraph->set_direction((TextServer::Direction)text_direction);
}
p_paragraph->add_string(p_text, font, font_size, language);
const String &lang = language.is_empty() ? _get_locale() : language;
p_paragraph->add_string(p_text, font, font_size, lang);
p_paragraph->set_text_overrun_behavior(overrun_behavior);
}