1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 11:13:46 +00:00

localeNames mapped to iso codes

This commit is contained in:
Kyle Spearrin
2019-09-06 09:33:09 -04:00
parent cc614e68d9
commit 255bd3962d
2 changed files with 41 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ export abstract class I18nService {
supportedTranslationLocales: string[];
translationLocale: string;
collator: Intl.Collator;
localeNames: Map<string, string>;
t: (id: string, p1?: string, p2?: string, p3?: string) => string;
translate: (id: string, p1?: string, p2?: string, p3?: string) => string;
}