feat: add language selector and lazy-load i18n infrastructure
Updated i18n.ts with SUPPORTED_LOCALES, setLocale() lazy loading, localStorage persistence. Added language selector in Settings.vue. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
85f3a0d982
commit
3db4685b7e
@ -3,13 +3,46 @@ import en from './locales/en.json'
|
|||||||
|
|
||||||
export type MessageSchema = typeof en
|
export type MessageSchema = typeof en
|
||||||
|
|
||||||
const i18n = createI18n<[MessageSchema], 'en'>({
|
export const SUPPORTED_LOCALES = [
|
||||||
|
{ code: 'en', name: 'English', flag: '🇬🇧' },
|
||||||
|
{ code: 'es', name: 'Español', flag: '🇪🇸' },
|
||||||
|
] as const
|
||||||
|
|
||||||
|
export type SupportedLocale = typeof SUPPORTED_LOCALES[number]['code']
|
||||||
|
|
||||||
|
const savedLocale = (typeof localStorage !== 'undefined'
|
||||||
|
? localStorage.getItem('neode_locale')
|
||||||
|
: null) as SupportedLocale | null
|
||||||
|
|
||||||
|
const i18n = createI18n({
|
||||||
legacy: false,
|
legacy: false,
|
||||||
locale: 'en',
|
locale: savedLocale || 'en',
|
||||||
fallbackLocale: 'en',
|
fallbackLocale: 'en',
|
||||||
messages: {
|
messages: {
|
||||||
en,
|
en,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
/** Lazy-load a locale's messages and switch to it. */
|
||||||
|
export async function setLocale(locale: SupportedLocale) {
|
||||||
|
if (locale === 'en') {
|
||||||
|
i18n.global.locale = 'en' as never
|
||||||
|
localStorage.setItem('neode_locale', 'en')
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!(i18n.global.availableLocales as string[]).includes(locale)) {
|
||||||
|
const messages = await import(`./locales/${locale}.json`)
|
||||||
|
;(i18n.global as ReturnType<typeof createI18n>['global']).setLocaleMessage(locale, messages.default)
|
||||||
|
}
|
||||||
|
|
||||||
|
i18n.global.locale = locale as never
|
||||||
|
localStorage.setItem('neode_locale', locale)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load saved locale on startup
|
||||||
|
if (savedLocale && savedLocale !== 'en') {
|
||||||
|
setLocale(savedLocale)
|
||||||
|
}
|
||||||
|
|
||||||
export default i18n
|
export default i18n
|
||||||
|
|||||||
@ -453,6 +453,23 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Language Section -->
|
||||||
|
<div class="glass-card px-6 py-6 mb-6">
|
||||||
|
<h2 class="text-xl font-semibold text-white/96 mb-2">Language</h2>
|
||||||
|
<p class="text-sm text-white/60 mb-4">Choose your preferred language</p>
|
||||||
|
<div class="flex gap-3 flex-wrap">
|
||||||
|
<button
|
||||||
|
v-for="loc in supportedLocales"
|
||||||
|
:key="loc.code"
|
||||||
|
@click="changeLocale(loc.code)"
|
||||||
|
class="glass-button px-4 py-2 rounded-lg text-sm font-medium transition-all"
|
||||||
|
:class="currentLocale === loc.code ? 'ring-2 ring-orange-400/60 bg-white/10' : ''"
|
||||||
|
>
|
||||||
|
<span class="mr-2">{{ loc.flag }}</span>{{ loc.name }}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Claude Authentication Section -->
|
<!-- Claude Authentication Section -->
|
||||||
<div class="glass-card px-6 py-6 mb-6">
|
<div class="glass-card px-6 py-6 mb-6">
|
||||||
<h2 class="text-xl font-semibold text-white/96 mb-2">{{ t('settings.claudeAuth') }}</h2>
|
<h2 class="text-xl font-semibold text-white/96 mb-2">{{ t('settings.claudeAuth') }}</h2>
|
||||||
@ -818,6 +835,7 @@
|
|||||||
import { computed, ref, onMounted, nextTick } from 'vue'
|
import { computed, ref, onMounted, nextTick } from 'vue'
|
||||||
import { useRouter } from 'vue-router'
|
import { useRouter } from 'vue-router'
|
||||||
import { useI18n } from 'vue-i18n'
|
import { useI18n } from 'vue-i18n'
|
||||||
|
import { SUPPORTED_LOCALES, setLocale, type SupportedLocale } from '@/i18n'
|
||||||
import { useAppStore } from '../stores/app'
|
import { useAppStore } from '../stores/app'
|
||||||
import { useUIModeStore } from '@/stores/uiMode'
|
import { useUIModeStore } from '@/stores/uiMode'
|
||||||
import { useAIPermissionsStore, AI_PERMISSION_CATEGORIES } from '@/stores/aiPermissions'
|
import { useAIPermissionsStore, AI_PERMISSION_CATEGORIES } from '@/stores/aiPermissions'
|
||||||
@ -827,8 +845,13 @@ import { useModalKeyboard } from '@/composables/useModalKeyboard'
|
|||||||
import type { UIMode } from '@/types/api'
|
import type { UIMode } from '@/types/api'
|
||||||
|
|
||||||
const router = useRouter()
|
const router = useRouter()
|
||||||
const { t } = useI18n()
|
const { t, locale } = useI18n()
|
||||||
const store = useAppStore()
|
const store = useAppStore()
|
||||||
|
const supportedLocales = SUPPORTED_LOCALES
|
||||||
|
const currentLocale = computed(() => locale.value)
|
||||||
|
async function changeLocale(code: string) {
|
||||||
|
await setLocale(code as SupportedLocale)
|
||||||
|
}
|
||||||
const uiMode = useUIModeStore()
|
const uiMode = useUIModeStore()
|
||||||
const aiPermissions = useAIPermissionsStore()
|
const aiPermissions = useAIPermissionsStore()
|
||||||
const aiCategoryGroups = computed(() => {
|
const aiCategoryGroups = computed(() => {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user