accounts-frontend/packages/app/i18n/index.ts
ErickSkrauch e962a01a4a
Fix tests
2020-06-04 21:03:24 +03:00

27 lines
543 B
TypeScript

/**
* This is a stub file for locales index. When you execute `yarn i18n:pull`,
* the index.js file will be generated and webpack will load it first.
*/
export interface Locale {
code: string;
name: string;
englishName: string;
progress: number;
isReleased: boolean;
}
export type LocalesList = Record<string, Locale>;
const langs: LocalesList = {
en: {
code: 'en',
name: 'English',
englishName: 'English',
progress: 100,
isReleased: true,
},
};
export default langs;