gitlab-ce/spec/frontend/language_switcher/mock_data.js

24 lines
396 B
JavaScript

import { EN } from '~/language_switcher/constants';
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];