add NL and ES

resolve conflicts
This commit is contained in:
Marvin 2025-06-06 06:06:56 +00:00
parent a6348a3e28
commit c7c39676d1
3 changed files with 668 additions and 2432 deletions

3090
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -24,6 +24,10 @@ export default function LocaleSwitcher() {
value: 'it-IT', value: 'it-IT',
label: 'Italiano' label: 'Italiano'
}, },
{
value: 'nl-NL',
label: 'Nederlands'
},
{ {
value: 'pl-PL', value: 'pl-PL',
label: 'Polski' label: 'Polski'
@ -32,6 +36,10 @@ export default function LocaleSwitcher() {
value: 'pt-PT', value: 'pt-PT',
label: 'Português' label: 'Português'
}, },
{
value: 'es-ES',
label: 'Español'
},
{ {
value: 'tr-TR', value: 'tr-TR',
label: 'Türkçe' label: 'Türkçe'

View file

@ -1,4 +1,4 @@
export type Locale = (typeof locales)[number]; export type Locale = (typeof locales)[number];
export const locales = ['en-US', 'fr-FR', 'de-DE', 'it-IT', 'pl-PL', 'pt-PT', 'tr-TR', 'zh-CN'] as const; export const locales = ['en-US', 'es-ES', 'fr-FR', 'de-DE', 'nl-NL', 'it-IT', 'pl-PL', 'pt-PT', 'tr-TR', 'zh-CN'] as const;
export const defaultLocale: Locale = 'en-US'; export const defaultLocale: Locale = 'en-US';