We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64156d3 commit 49e2a8eCopy full SHA for 49e2a8e
lib/Widgets/Utils.vala
@@ -26,7 +26,8 @@ public static string accel_to_string (string? accel) {
26
27
string[] arr = {};
28
if (Gdk.ModifierType.SUPER_MASK in accel_mods) {
29
- arr += "⌘";
+ /// TRANSLATORS: The "Super", "Windows", or "Command" key on the keyboard
30
+ arr += _("Super");
31
}
32
33
if (Gdk.ModifierType.SHIFT_MASK in accel_mods) {
0 commit comments