summaryrefslogtreecommitdiff
path: root/spec/frontend/language_switcher/mock_data.js
blob: 548bddf01738583e05705d3c20f7eb8100502c4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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];