2fc8a32b5f
feat: Implement internationalization and rename project Merge commit 'a745adc1ab02adbd17ed19574f47070f87eba50b'
12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
|
|
import { en } from './locales/en';
|
|
import { es } from './locales/es';
|
|
|
|
export const translations = {
|
|
en,
|
|
es
|
|
};
|
|
|
|
export type Language = keyof typeof translations;
|
|
export type TranslationStructure = typeof en;
|