export const SUPPORTED_LOCALES = [ 'en', 'zh-CN', 'es', 'fr', 'pt-BR', 'it', 'hi', 'ar', 'bn', 'ru', 'ur', 'id', 'de', 'ja', 'sw', 'mr', 'te', 'tr', 'ta', 'vi', 'ko', 'fa', 'th', 'gu', 'pl', 'uk', 'kn', 'ml', 'or', 'my', 'pa', 'ro', 'nl', 'ms', 'tl', 'ha', 'yo', 'ig', 'am', 'uz', 'az', 'si', 'ne', 'km', 'el', 'cs', 'hu', 'sv', 'he', 'da', 'fi', 'no', 'sk', 'bg', 'hr', 'sr', 'lt', 'zh-TW', 'pt-PT', 'ka', ] as const export type Locale = (typeof SUPPORTED_LOCALES)[number] export const DEFAULT_LOCALE: Locale = 'en' export const RTL_LOCALES = new Set(['ar', 'he', 'fa', 'ur'])