Added keyboard shortcuts to settings tab

This commit is contained in:
Stela Augustinova
2025-11-27 09:23:36 +01:00
parent 4883eb0d1b
commit 765551988a

View File

@@ -12,6 +12,7 @@
import LicenseSettings from "../settings/LicenseSettings.svelte"; import LicenseSettings from "../settings/LicenseSettings.svelte";
import { isProApp } from "../utility/proTools"; import { isProApp } from "../utility/proTools";
import { _t } from "../translations"; import { _t } from "../translations";
import CommandListTab from "./CommandListTab.svelte";
const menuItems = [ const menuItems = [
{ {
@@ -56,6 +57,13 @@
props: {}, props: {},
testid: 'settings-external-tools', testid: 'settings-external-tools',
}, },
{
label: _t('command.settings.shortcuts', { defaultMessage: 'Keyboard shortcuts' }),
identifier: 'shortcuts',
component: CommandListTab,
props: {},
testid: 'settings-shortcuts',
},
isProApp() && { isProApp() && {
label: _t('settings.license', { defaultMessage: 'License' }), label: _t('settings.license', { defaultMessage: 'License' }),
identifier: 'license', identifier: 'license',