1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

new i18n properties

This commit is contained in:
Kyle Spearrin
2018-01-26 22:39:45 -05:00
parent 8a7311e441
commit f8aba3cc17
2 changed files with 17 additions and 14 deletions

View File

@@ -75,10 +75,10 @@ const environmentService = new EnvironmentService(apiService, storageService);
const userService = new UserService(tokenService, storageService);
const settingsService = new SettingsService(userService, storageService);
const cipherService = new CipherService(cryptoService, userService, settingsService,
apiService, storageService);
apiService, storageService, i18nService);
const folderService = new FolderService(cryptoService, userService,
() => i18nService.t('noneFolder'), apiService, storageService);
const collectionService = new CollectionService(cryptoService, userService, storageService);
() => i18nService.t('noneFolder'), apiService, storageService, i18nService);
const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService);
const lockService = new LockService(cipherService, folderService, collectionService,
cryptoService, platformUtilsService, storageService,
() => { /* set icon */ }, () => { /* refresh badge and menu */ });