feat(ui): add german and french translations

This commit is contained in:
perf3ct
2025-10-04 14:14:42 -07:00
parent 1cc4c5c813
commit c78fa4c8be
3 changed files with 2990 additions and 0 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,8 @@
export const supportedLanguages = {
en: 'English',
es: 'Español',
de: 'Deutsch',
fr: 'Français',
} as const;
export type SupportedLanguage = keyof typeof supportedLanguages;