diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-12-30 17:28:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-30 17:28:11 +0100 |
commit | e37ad996a19396542009b058d00f30a909489834 (patch) | |
tree | 80d4f78c45881ac1e644251ec0d3a94da855a7cf /editor/plugins/mesh_instance_editor_plugin.cpp | |
parent | fdfb7e5fc44d5fbbcaf9a09c8732596d925c7a80 (diff) | |
parent | 8cf941a8cb6ea5cf778bba12ec34261edc7ff0bb (diff) |
Merge pull request #34625 from timothyqiu/i18n
Makes more editor strings translatable
Diffstat (limited to 'editor/plugins/mesh_instance_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/mesh_instance_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/mesh_instance_editor_plugin.cpp b/editor/plugins/mesh_instance_editor_plugin.cpp index 3f9e1da5e7..1ead1b8062 100644 --- a/editor/plugins/mesh_instance_editor_plugin.cpp +++ b/editor/plugins/mesh_instance_editor_plugin.cpp @@ -457,7 +457,7 @@ MeshInstanceEditor::MeshInstanceEditor() { add_child(err_dialog); debug_uv_dialog = memnew(AcceptDialog); - debug_uv_dialog->set_title("UV Channel Debug"); + debug_uv_dialog->set_title(TTR("UV Channel Debug")); add_child(debug_uv_dialog); debug_uv = memnew(Control); debug_uv->set_custom_minimum_size(Size2(600, 600) * EDSCALE); |