diff --git a/src/i18n/de/index.ts b/src/i18n/de/index.ts index 952b2a11..15cd610e 100644 --- a/src/i18n/de/index.ts +++ b/src/i18n/de/index.ts @@ -22,6 +22,9 @@ const de = { PLACEHOLDER: "Nach Aktionen suchen", CURRENT_ACTION: "Aktuelle Aktion", DELETE: "Entfernen", + filter: { + ALL: "Alle", + }, }, share: { URL_COPIED: "Teilbare URL kopiert!", diff --git a/src/i18n/en/index.ts b/src/i18n/en/index.ts index 052cc552..376ccdc5 100644 --- a/src/i18n/en/index.ts +++ b/src/i18n/en/index.ts @@ -21,6 +21,9 @@ const en = { PLACEHOLDER: "Search for actions", CURRENT_ACTION: "Current action", DELETE: "Remove", + filter: { + ALL: "All", + }, }, share: { URL_COPIED: "Sharable URL copied!", diff --git a/src/lib/components/layout/ActionSelector.svelte b/src/lib/components/layout/ActionSelector.svelte index 67c916a9..c49c8aa8 100644 --- a/src/lib/components/layout/ActionSelector.svelte +++ b/src/lib/components/layout/ActionSelector.svelte @@ -1,11 +1,12 @@ + dispatch("close")}>
{ if (event.key === "Enter") { @@ -94,6 +96,27 @@ on:click={() => dispatch("close")}>close
+
+ + {#each KEYMAP_CATEGORIES as category} + + {/each} +