export const SUPPORTED_LOCALES = ["en", "gu", "hi", "ar"] as const;
export const DEFAULT_LOCALE = "en";
export const RTL_LOCALES = ["ar"];

export const LOCALE_LABELS: Record<string, string> = {
  en: "English",
  gu: "ગુજરાતી",
  hi: "हिन्दी",
  ar: "العربية",
};
