Language Options

const LANGUAGE_OPTIONS

language-options.constant.ts
import { LanguageOption } from '@jet/interfaces/language-option.interface';

export const LANGUAGE_OPTIONS: LanguageOption[] = [
  {
    directionality: 'ltr',
    font: 'noto-sans',
    icon: 'translate',
    nameKey: 'english',
    value: 'en',
  },
  {
    directionality: 'rtl',
    font: 'noto-sans-arabic',
    icon: 'translate',
    nameKey: 'arabic',
    value: 'ar',
  },
];

Last updated

Was this helpful?