diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-12-21 14:41:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-21 14:41:18 +0100 |
commit | 78f1513928bd5a683f0a0b40d4a4fec42fb1d4f3 (patch) | |
tree | 7e1818e14fc96569d969437cf1e3cbfa35f12479 /editor/plugins/mesh_library_editor_plugin.cpp | |
parent | 0b776ebbe4105c5ef3b1c6314157f76be58227b7 (diff) | |
parent | 0693718164bcb5875af9211713bfa7c4cce86d58 (diff) |
Merge pull request #34508 from timothyqiu/i18n
Makes more editor strings translatable
Diffstat (limited to 'editor/plugins/mesh_library_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/mesh_library_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/mesh_library_editor_plugin.cpp b/editor/plugins/mesh_library_editor_plugin.cpp index 7fbb35e565..fc3ca38104 100644 --- a/editor/plugins/mesh_library_editor_plugin.cpp +++ b/editor/plugins/mesh_library_editor_plugin.cpp @@ -273,7 +273,7 @@ MeshLibraryEditor::MeshLibraryEditor(EditorNode *p_editor) { menu = memnew(MenuButton); SpatialEditor::get_singleton()->add_control_to_menu_panel(menu); menu->set_position(Point2(1, 1)); - menu->set_text("Mesh Library"); + menu->set_text(TTR("Mesh Library")); menu->set_icon(EditorNode::get_singleton()->get_gui_base()->get_icon("MeshLibrary", "EditorIcons")); menu->get_popup()->add_item(TTR("Add Item"), MENU_OPTION_ADD_ITEM); menu->get_popup()->add_item(TTR("Remove Selected Item"), MENU_OPTION_REMOVE_ITEM); |