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 /modules/gridmap/grid_map_editor_plugin.cpp | |
parent | fdfb7e5fc44d5fbbcaf9a09c8732596d925c7a80 (diff) | |
parent | 8cf941a8cb6ea5cf778bba12ec34261edc7ff0bb (diff) | |
download | redot-engine-e37ad996a19396542009b058d00f30a909489834.tar.gz |
Merge pull request #34625 from timothyqiu/i18n
Makes more editor strings translatable
Diffstat (limited to 'modules/gridmap/grid_map_editor_plugin.cpp')
-rw-r--r-- | modules/gridmap/grid_map_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gridmap/grid_map_editor_plugin.cpp b/modules/gridmap/grid_map_editor_plugin.cpp index 1bd570c55f..63771f1583 100644 --- a/modules/gridmap/grid_map_editor_plugin.cpp +++ b/modules/gridmap/grid_map_editor_plugin.cpp @@ -1256,7 +1256,7 @@ GridMapEditor::GridMapEditor(EditorNode *p_editor) { options->get_popup()->add_item(TTR("Cursor Back Rotate Z"), MENU_OPTION_CURSOR_BACK_ROTATE_Z, KEY_MASK_SHIFT + KEY_D); options->get_popup()->add_item(TTR("Cursor Clear Rotation"), MENU_OPTION_CURSOR_CLEAR_ROTATION, KEY_W); options->get_popup()->add_separator(); - options->get_popup()->add_check_item("Paste Selects", MENU_OPTION_PASTE_SELECTS); + options->get_popup()->add_check_item(TTR("Paste Selects"), MENU_OPTION_PASTE_SELECTS); options->get_popup()->add_separator(); options->get_popup()->add_item(TTR("Duplicate Selection"), MENU_OPTION_SELECTION_DUPLICATE, KEY_MASK_CTRL + KEY_C); options->get_popup()->add_item(TTR("Cut Selection"), MENU_OPTION_SELECTION_CUT, KEY_MASK_CTRL + KEY_X); |