debian-mirror-gitlab/spec/frontend/language_switcher/mock_data.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
401 B
JavaScript
Raw Normal View History

2023-03-04 22:38:38 +05:30
export const EN = {
value: 'en',
text: 'English',
};
export const ZH_CN = {
value: 'zh_CN',
text: '简体中文',
};
export const ES = {
value: 'es',
text: 'Espanol',
};
export const ZH_HK = {
value: 'zh_HK',
text: '繁体中文(香港)',
};
export const ZH_TW = {
value: 'zh_TW',
text: '繁体中文(台湾)',
};
export const locales = [EN, ZH_CN, ES, ZH_HK, ZH_TW];