mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-02 19:50:44 +05:30
25 lines
503 B
TypeScript
25 lines
503 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;
|
||
|
}
|
||
|
|
||
|
const langs: Record<string, Locale> = {
|
||
|
en: {
|
||
|
code: 'en',
|
||
|
name: 'English',
|
||
|
englishName: 'English',
|
||
|
progress: 100,
|
||
|
isReleased: true,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default langs;
|