locale-utils.ts 244 B

123456789
  1. // https://docs.google.com/spreadsheets/d/1FoYdyEraEQuWofzbYCDPKN7EdKgS_2ZrsDrOA8scgwQ
  2. const DIAGRAMS_NET_LANG_MAP = {
  3. ja_JP: 'ja',
  4. zh_CN: 'zh',
  5. };
  6. export const getDiagramsNetLangCode = (lang) => {
  7. return DIAGRAMS_NET_LANG_MAP[lang];
  8. };