macos: Command should not come from gettext

Instead, just provide the right character.

See also
https://gitlab.gnome.org/GNOME/gtk/-/blob/main/gtk/gtkaccelgroup.c#L916.
This commit is contained in:
Arjan Molenaar 2023-01-06 12:08:55 +01:00 committed by Mat
parent 3b36459630
commit 3f9b7dd863

View File

@ -147,7 +147,7 @@ get_labels (guint key, GdkModifierType modifier, guint *n_mods)
#ifndef GDK_WINDOWING_MACOS
labels[i++] = C_("keyboard label", "Meta");
#else
labels[i++] = C_("keyboard label", "");
labels[i++] = "";
#endif
*n_mods = i;