Files
coolify/apps/ui/src/lib/translations.ts
2022-11-09 19:27:03 -03:00

47 lines
1019 B
TypeScript

import i18n from 'sveltekit-i18n';
import { derived, writable } from "svelte/store";
import lang from './lang.json';
export let currentLocale = writable("en");
export let debugTranslation = writable(false);
/** @type {import('sveltekit-i18n').Config} */
export const config = {
fallbackLocale: 'en',
translations: {
en: { lang },
es: { lang },
pt: { lang },
ko: { lang },
fr: { lang }
},
loaders: [
{
locale: 'en',
key: '',
loader: async () => (await import('./locales/en.json')).default
},
{
locale: 'es',
key: '',
loader: async () => (await import('./locales/es.json')).default
},
{
locale: 'pt',
key: '',
loader: async () => (await import('./locales/pt.json')).default
},
{
locale: 'fr',
key: '',
loader: async () => (await import('./locales/fr.json')).default
},
{
locale: 'ko',
key: '',
loader: async () => (await import('./locales/ko.json')).default
}
]
};
export const { t, locales, locale, loadTranslations } = new i18n(config);