Files
wishlist/src/lib/i18n/translations/index.ts
T
2025-11-25 16:08:50 +01:00

16 lines
313 B
TypeScript

import { en } from './en';
import { da } from './da';
import type { Translation } from './en';
export const translations: Record<string, Translation> = {
en,
da
};
export const languages = [
{ code: 'en', name: 'English' },
{ code: 'da', name: 'Dansk' }
] as const;
export type LanguageCode = 'en' | 'da';