mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-02 11:41:04 +05:30
27 lines
543 B
TypeScript
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;
|