diff --git a/components/settings/SettingsItem.vue b/components/settings/SettingsItem.vue
index aebe97dc..58620101 100644
--- a/components/settings/SettingsItem.vue
+++ b/components/settings/SettingsItem.vue
@@ -6,6 +6,7 @@ const props = defineProps<{
icon?: string
to?: string | Record
command?: boolean
+ external?: true
}>()
const router = useRouter()
@@ -33,6 +34,7 @@ useCommand({
-
+
diff --git a/locales/en-US.json b/locales/en-US.json
index 35a5baf4..b0a336a0 100644
--- a/locales/en-US.json
+++ b/locales/en-US.json
@@ -235,6 +235,7 @@
"about": {
"label": "About"
},
+ "account_settings": "Account settings",
"feature_flags": {
"github_cards": "GitHub Cards",
"title": "Experimental Features",
diff --git a/pages/settings.vue b/pages/settings.vue
index fe8d34f0..533369dd 100644
--- a/pages/settings.vue
+++ b/pages/settings.vue
@@ -39,6 +39,14 @@ const isRootPath = computedEager(() => route.name === 'settings')
:text="$t('settings.interface.label')"
to="/settings/interface"
/>
+