Skip to content

Commit 49e2a8e

Browse files
authored
accel_to_string: ⌘ → Super (#865)
1 parent 64156d3 commit 49e2a8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/Widgets/Utils.vala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public static string accel_to_string (string? accel) {
2626

2727
string[] arr = {};
2828
if (Gdk.ModifierType.SUPER_MASK in accel_mods) {
29-
arr += "";
29+
/// TRANSLATORS: The "Super", "Windows", or "Command" key on the keyboard
30+
arr += _("Super");
3031
}
3132

3233
if (Gdk.ModifierType.SHIFT_MASK in accel_mods) {

0 commit comments

Comments
 (0)