{#if shortcuts.general.length > 0}

{$t('general')}

{#each shortcuts.general as shortcut (shortcut.key.join('-'))}
{#each shortcut.key as key (key)}

{key}

{/each}

{shortcut.action}

{/each}
{/if} {#if shortcuts.actions.length > 0}

{$t('actions')}

{#each shortcuts.actions as shortcut (shortcut.key.join('-'))}
{#each shortcut.key as key (key)}

{key}

{/each}

{shortcut.action}

{#if shortcut.info} {/if}
{/each}
{/if}