aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/langs.ts
blob: 8effb6d2200ad2cc9faceebde3ee6f40922a77f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
export const langNameMappings: Record<string, string> = {
  en: "English",
  de: "German",
  fr: "French",
  zh: "Simplified Chinese",
  zhtw: "Traditional Chinese",
};

export const supportedLangs = Object.keys(langNameMappings);