@hug/ngx-g11n
Version:
Angular helpers for internationalizing and localizing your application
13 lines (12 loc) • 344 B
TypeScript
import { G11nDebug } from './g11n-debug.enum';
export interface G11nOptions {
defaultLanguage?: string;
defaultCurrency?: string;
useNavigatorLanguage?: boolean;
loadLocaleExtra?: boolean;
useTranslations?: boolean;
translationsPath?: string;
queryParamName?: string;
storage?: Storage;
debug?: G11nDebug;
}