diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml
index d210c20dc..431b1e3df 100644
--- a/Flow.Launcher/Languages/en.xaml
+++ b/Flow.Launcher/Languages/en.xaml
@@ -170,7 +170,6 @@
Date
- <empty>
Hotkey
Hotkeys
Flow Launcher Hotkey
@@ -191,6 +190,7 @@
Delete
Edit
Add
+ None
Please select an item
Are you sure you want to delete {0} plugin hotkey?
Are you sure you want to delete shortcut: {0} with expansion {1}?
diff --git a/Flow.Launcher/ViewModel/HotkeyControlViewModel.cs b/Flow.Launcher/ViewModel/HotkeyControlViewModel.cs
index 6a63d45d7..10e6bdb82 100644
--- a/Flow.Launcher/ViewModel/HotkeyControlViewModel.cs
+++ b/Flow.Launcher/ViewModel/HotkeyControlViewModel.cs
@@ -66,7 +66,7 @@ namespace Flow.Launcher.ViewModel
}
- private string EmptyHotkeyKey = "emptyHotkey";
+ private string EmptyHotkeyKey = "none";
public string EmptyHotkey => InternationalizationManager.Instance.GetTranslation(EmptyHotkeyKey);
private const string KeySeparator = " + ";