locale-utils.js 286 B

12345678910111213
  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. const getDiagramsNetLangCode = (lang) => {
  7. return DIAGRAMS_NET_LANG_MAP[lang];
  8. };
  9. module.exports = {
  10. getDiagramsNetLangCode,
  11. };