diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-14 23:22:53 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-14 23:22:53 +0100 |
commit | d7d34e4bc19a54c964d50273e35e1fb506edf2c8 (patch) | |
tree | 82dbfb793a434dd988eceed96240e36f42fba5a2 /modules | |
parent | aa4c286808bbf4b16346de40307fcd5b29f19697 (diff) | |
parent | efe3220b2e5634d1c0a45574dfc50105757675f6 (diff) |
Merge pull request #68658 from Calinou/message-fix-periods
Fix periods in editor strings and messages
Diffstat (limited to 'modules')
-rw-r--r-- | modules/multiplayer/editor/replication_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/multiplayer/editor/replication_editor.cpp b/modules/multiplayer/editor/replication_editor.cpp index 4ba9cd14f0..ccde9fed22 100644 --- a/modules/multiplayer/editor/replication_editor.cpp +++ b/modules/multiplayer/editor/replication_editor.cpp @@ -202,7 +202,7 @@ ReplicationEditor::ReplicationEditor() { add_pick_button = memnew(Button); add_pick_button->connect("pressed", callable_mp(this, &ReplicationEditor::_pick_new_property)); - add_pick_button->set_text(TTR("Add property to sync..")); + add_pick_button->set_text(TTR("Add property to sync...")); hb->add_child(add_pick_button); VSeparator *vs = memnew(VSeparator); vs->set_custom_minimum_size(Size2(30 * EDSCALE, 0)); |