Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 6x | export interface LocaleOption {
title: string;
value: string;
}
export const AVAILABLE_LOCALES: LocaleOption[] = [
{ title: 'Arabic', value: 'ar' },
{ title: 'Bengali', value: 'bn' },
{ title: 'German', value: 'de' },
{ title: 'English (UK)', value: 'en-GB' },
{ title: 'English (US)', value: 'en-US' },
{ title: 'Spanish', value: 'es-ES' },
{ title: 'French', value: 'fr' },
{ title: 'Hindi', value: 'hi' },
{ title: 'Indonesian', value: 'id' },
{ title: 'Italian', value: 'it' },
{ title: 'Japanese', value: 'ja' },
{ title: 'Portuguese', value: 'pt-PT' },
{ title: 'Chinese', value: 'zh-CN' },
];
|