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

export const supportedLangs = Object.keys(langNameMappings);