/**
 * Endonym display name of each translation language, keyed by the same ISO used by
 * `LisioIconNames` for the flag icons. These names do not depend on the popin's own
 * display language (each language names itself the same way regardless of the reader's
 * locale), so they are kept here instead of the per-locale translation files.
 */
const lisioLanguageNames: Record<string, string> = {
  ar: "العربية",
  bg: "Български",
  br: "Brezhoneg",
  ca: "Català",
  co: "Corsu",
  cs: "Čeština",
  cy: "Cymraeg",
  da: "Dansk",
  de: "Deutsch",
  el: "Ελληνικά",
  en: "English",
  en_gb: "English (UK)",
  en_us: "English (US)",
  es: "Español",
  et: "Eesti",
  eu: "Euskara",
  fi: "Suomi",
  fr: "Français",
  he: "עברית",
  hi: "हिन्दी",
  hu: "Magyar",
  id: "Bahasa Indonesia",
  it: "Italiano",
  ja: "日本語",
  ko: "한국어",
  lb: "Lëtzebuergesch",
  lt: "Lietuvių",
  lv: "Latviešu",
  mfe: "Kreol Morisien",
  nb: "Norsk bokmål",
  nl: "Nederlands",
  no: "Norsk",
  oc: "Occitan",
  pl: "Polski",
  ps: "پښتو",
  pt: "Português",
  pt_br: "Português (Brasil)",
  pt_pt: "Português (Portugal)",
  ro: "Română",
  ru: "Русский",
  sk: "Slovenčina",
  sl: "Slovenščina",
  sv: "Svenska",
  sw: "Kiswahili",
  th: "ไทย",
  tr: "Türkçe",
  uk: "Українська",
  vi: "Tiếng Việt",
  yi: "ייִדיש",
  zh: "中文",
  zh_cn: "中文",
};

export { lisioLanguageNames };
