You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-12 13:20:55 +00:00
Use "Command" for OSX in translation strings (#1619)
This commit is contained in:
@@ -248,7 +248,7 @@ void EditorSettingsDialog::_wait_for_key(const Ref<InputEvent> &p_event) {
|
||||
last_wait_for_key = k;
|
||||
String str = keycode_get_string(k->get_scancode()).capitalize();
|
||||
if (k->get_metakey())
|
||||
str = TTR("Meta+") + str;
|
||||
str = vformat("%s+", find_keycode_name(KEY_META)) + str;
|
||||
if (k->get_shift())
|
||||
str = TTR("Shift+") + str;
|
||||
if (k->get_alt())
|
||||
|
||||
Reference in New Issue
Block a user