/** * @author @dlohvinov * * @description * List of available locales */ export const TranslationLocale = { // supported by BA team en: 'en', uk: 'uk', ru: 'ru', // ai generated by frontend team es: 'es', kz: 'kz', vi: 'vi', pl: 'pl', ro: 'ro', uz: 'uz', } as const; export type TranslationLocale = (typeof TranslationLocale)[keyof typeof TranslationLocale];