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

export const supportedLangs = Object.keys(langNameMappings);