diff options
| author | Hugo Locurcio | 2018-04-22 19:36:01 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2018-06-05 21:42:33 +0200 |
| commit | 403f7dc35f9a356466ee12b83880e2da73b9598d (patch) | |
| tree | 19eb9e945107faeebf875f39e9cc051b3c215fc6 /editor/plugins/spatial_editor_plugin.cpp | |
| parent | e09170dffa1c5cc953ebec22de22434d5172f3f7 (diff) | |
| download | godot-403f7dc35f9a356466ee12b83880e2da73b9598d.tar.gz godot-403f7dc35f9a356466ee12b83880e2da73b9598d.tar.zst godot-403f7dc35f9a356466ee12b83880e2da73b9598d.zip | |
Change ".." punctuation for "..." in editor strings (#16507)
(cherry picked from commit 1c419531a009f48aa074f9b5f93b98d387c33723)
Diffstat (limited to 'editor/plugins/spatial_editor_plugin.cpp')
| -rw-r--r-- | editor/plugins/spatial_editor_plugin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/plugins/spatial_editor_plugin.cpp b/editor/plugins/spatial_editor_plugin.cpp index 44de14855..247af8b79 100644 --- a/editor/plugins/spatial_editor_plugin.cpp +++ b/editor/plugins/spatial_editor_plugin.cpp @@ -3275,7 +3275,7 @@ void SpatialEditorViewport::drop_data_fw(const Point2 &p_point, const Variant &p } } if (list.size() != 1) { - accept->get_ok()->set_text(TTR("I see..")); + accept->get_ok()->set_text(TTR("I see...")); accept->set_text(TTR("This operation requires a single selected node.")); accept->popup_centered_minsize(); _remove_preview(); @@ -5064,9 +5064,9 @@ SpatialEditor::SpatialEditor(EditorNode *p_editor) { hbc_menu->add_child(transform_menu); p = transform_menu->get_popup(); - p->add_shortcut(ED_SHORTCUT("spatial_editor/configure_snap", TTR("Configure Snap..")), MENU_TRANSFORM_CONFIGURE_SNAP); + p->add_shortcut(ED_SHORTCUT("spatial_editor/configure_snap", TTR("Configure Snap...")), MENU_TRANSFORM_CONFIGURE_SNAP); p->add_separator(); - p->add_shortcut(ED_SHORTCUT("spatial_editor/transform_dialog", TTR("Transform Dialog..")), MENU_TRANSFORM_DIALOG); + p->add_shortcut(ED_SHORTCUT("spatial_editor/transform_dialog", TTR("Transform Dialog...")), MENU_TRANSFORM_DIALOG); p->connect("id_pressed", this, "_menu_item_pressed"); |
