Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Video-Downloader/web/src/lib/i18n/translations.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
59 lines (51 sloc)
1.62 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import i18n from 'sveltekit-i18n'; | |
import type { Config } from 'sveltekit-i18n'; | |
import type { | |
GenericImport, | |
StructuredLocfileInfo, | |
LocalizationContent | |
} from '$lib/types/i18n'; | |
import _languages from '$i18n/languages.json'; | |
const locFiles = import.meta.glob('$i18n/*/**/*.json'); | |
const parsedLocfiles: StructuredLocfileInfo = {}; | |
for (const [path, loader] of Object.entries(locFiles)) { | |
const [, , lang, ...keyComponents] = path.split('/'); | |
const key = keyComponents.map(k => k.replace('.json', '')).join('.'); | |
parsedLocfiles[lang] = { | |
...parsedLocfiles[lang], | |
[key]: loader as GenericImport | |
}; | |
} | |
const defaultLocale = 'en'; | |
const languages: Record<string, string> = _languages; | |
const config: Config<{ | |
value?: string; | |
formats?: string; | |
limit?: number; | |
service?: string; | |
}> = { | |
fallbackLocale: defaultLocale, | |
translations: Object.keys(parsedLocfiles).reduce((obj, lang) => { | |
languages[lang] ??= `${lang} (missing name)`; | |
return { | |
...obj, | |
[lang]: { languages } | |
} | |
}, {}), | |
loaders: Object.entries(parsedLocfiles).map(([lang, keys]) => { | |
return Object.entries(keys).map(([key, importer]) => { | |
return { | |
locale: lang, | |
key, | |
loader: () => importer().then( | |
l => l.default as LocalizationContent | |
) | |
} | |
}); | |
}).flat() | |
}; | |
export { defaultLocale }; | |
export const { | |
t, loading, locales, locale: INTERNAL_locale, translations, | |
loadTranslations, addTranslations, setLocale, setRoute | |
} = new i18n(config); |