1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-13 13:31:48 +00:00

Makes more strings in editor translatable

* File type names in file dialogs
* Layout option names
* Visual shader editor UI
This commit is contained in:
Haoyu Qiu
2019-12-16 13:18:44 +08:00
parent d8d96c9fa7
commit 7a9c337dfe
7 changed files with 45 additions and 45 deletions

View File

@@ -870,7 +870,7 @@ ThemeEditor::ThemeEditor() {
add_del_dialog->get_ok()->connect("pressed", this, "_dialog_cbk");
file_dialog = memnew(EditorFileDialog);
file_dialog->add_filter("*.theme ; Theme File");
file_dialog->add_filter("*.theme ; " + TTR("Theme File"));
add_child(file_dialog);
file_dialog->connect("file_selected", this, "_save_template_cbk");
}