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/tile_set_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/tile_set_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/tile_set_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/tile_set_editor_plugin.cpp b/editor/plugins/tile_set_editor_plugin.cpp index f6dbbbb0a9..6e0158670d 100644 --- a/editor/plugins/tile_set_editor_plugin.cpp +++ b/editor/plugins/tile_set_editor_plugin.cpp @@ -2037,10 +2037,10 @@ void TileSetEditor::_update_toggle_shape_button() { tools[SHAPE_TOGGLE_TYPE]->hide(); } else if (concave.is_valid()) { tools[SHAPE_TOGGLE_TYPE]->set_icon(get_icon("ConvexPolygonShape2D", "EditorIcons")); - tools[SHAPE_TOGGLE_TYPE]->set_text("Make Convex"); + tools[SHAPE_TOGGLE_TYPE]->set_text(TTR("Make Convex")); } else if (convex.is_valid()) { tools[SHAPE_TOGGLE_TYPE]->set_icon(get_icon("ConcavePolygonShape2D", "EditorIcons")); - tools[SHAPE_TOGGLE_TYPE]->set_text("Make Concave"); + tools[SHAPE_TOGGLE_TYPE]->set_text(TTR("Make Concave")); } else { // Shouldn't happen separator_shape_toggle->hide(); |