1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-02 16:48:55 +00:00

Change ".." punctuation for "..." in editor strings (#16507)

(cherry picked from commit 1c419531a0)
This commit is contained in:
Hugo Locurcio
2018-04-22 19:36:01 +02:00
committed by Rémi Verschelde
parent e09170dffa
commit 403f7dc35f
39 changed files with 203 additions and 203 deletions

View File

@@ -319,7 +319,7 @@ ConnectDialog::ConnectDialog() {
dstm_hb->add_child(dst_method);
/*dst_method_list = memnew( MenuButton );
dst_method_list->set_text("List..");
dst_method_list->set_text("List...");
dst_method_list->set_anchor( MARGIN_RIGHT, ANCHOR_END );
dst_method_list->set_anchor( MARGIN_LEFT, ANCHOR_END );
dst_method_list->set_anchor( MARGIN_TOP, ANCHOR_END );
@@ -621,12 +621,12 @@ void ConnectionsDock::_something_selected() {
TreeItem *item = tree->get_selected();
if (!item) {
//no idea how this happened, but disable
connect_button->set_text(TTR("Connect.."));
connect_button->set_text(TTR("Connect..."));
connect_button->set_disabled(true);
} else if (item->get_parent() == tree->get_root() || item->get_parent()->get_parent() == tree->get_root()) {
//a signal - connect
connect_button->set_text(TTR("Connect.."));
connect_button->set_text(TTR("Connect..."));
connect_button->set_disabled(false);
} else {