You've already forked godot
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:
committed by
Rémi Verschelde
parent
e09170dffa
commit
403f7dc35f
@@ -277,7 +277,7 @@ void EditorSettingsDialog::_shortcut_button_pressed(Object *p_item, int p_column
|
||||
Ref<ShortCut> sc = EditorSettings::get_singleton()->get_shortcut(item);
|
||||
|
||||
if (p_idx == 0) {
|
||||
press_a_key_label->set_text(TTR("Press a Key.."));
|
||||
press_a_key_label->set_text(TTR("Press a Key..."));
|
||||
last_wait_for_key = Ref<InputEventKey>();
|
||||
press_a_key->popup_centered(Size2(250, 80) * EDSCALE);
|
||||
press_a_key->grab_focus();
|
||||
@@ -471,7 +471,7 @@ EditorSettingsDialog::EditorSettingsDialog() {
|
||||
add_child(press_a_key);
|
||||
|
||||
Label *l = memnew(Label);
|
||||
l->set_text(TTR("Press a Key.."));
|
||||
l->set_text(TTR("Press a Key..."));
|
||||
l->set_anchors_and_margins_preset(Control::PRESET_WIDE);
|
||||
l->set_align(Label::ALIGN_CENTER);
|
||||
l->set_margin(MARGIN_TOP, 20);
|
||||
|
||||
Reference in New Issue
Block a user