1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/abstractions/i18n.service.ts

10 lines
347 B
TypeScript
Raw Normal View History

2018-01-25 20:26:09 +01:00
export abstract class I18nService {
locale: string;
supportedTranslationLocales: string[];
translationLocale: string;
collator: Intl.Collator;
2019-09-06 15:33:09 +02:00
localeNames: Map<string, string>;
2018-02-02 18:02:49 +01:00
t: (id: string, p1?: string, p2?: string, p3?: string) => string;
translate: (id: string, p1?: string, p2?: string, p3?: string) => string;
2018-01-25 20:26:09 +01:00
}