upload to github

This commit is contained in:
jrosh 2025-05-29 13:41:38 +02:00
commit 92cc81e813
No known key found for this signature in database
GPG key ID: A4D68DCA6C9CCD2D
51 changed files with 8041 additions and 0 deletions

11
src/types/i18n.ts Normal file
View file

@ -0,0 +1,11 @@
// types/i18n.ts
export interface TranslationMessages {
[key: string]: string | TranslationMessages;
}
export interface I18nConfig {
fallbackLocale: string;
messages: {
[locale: string]: TranslationMessages;
};
}