Add de-DE to languages

This commit is contained in:
Inkception 2023-01-29 11:16:50 +01:00 committed by GitHub
parent ee73e5bc44
commit b4a6eac7e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@ const debug = createDebug('app:i18n');
export const languages = {
'en-GB': [() => import('./locale/en-gb.js'), 'English'] as const,
'de-DE': [() => import('./locale/de-de.js'), 'Deutsch'] as const,
};
type Namespace = keyof typeof import('./locale/en-gb.js');