You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
Put multiple colons back into translated strings
This commit is contained in:
@@ -2870,7 +2870,7 @@ void ThemeEditor::edit(const Ref<Theme> &p_theme) {
|
||||
preview_tab->set_preview_theme(p_theme);
|
||||
}
|
||||
|
||||
theme_name->set_text(TTR("Theme") + ": " + theme->get_path().get_file());
|
||||
theme_name->set_text(TTR("Theme:") + " " + theme->get_path().get_file());
|
||||
}
|
||||
|
||||
Ref<Theme> ThemeEditor::get_edited_theme() {
|
||||
@@ -3001,7 +3001,7 @@ ThemeEditor::ThemeEditor() {
|
||||
add_child(top_menu);
|
||||
|
||||
theme_name = memnew(Label);
|
||||
theme_name->set_text(TTR("Theme") + ": ");
|
||||
theme_name->set_text(TTR("Theme:"));
|
||||
top_menu->add_child(theme_name);
|
||||
|
||||
top_menu->add_spacer(false);
|
||||
|
||||
Reference in New Issue
Block a user