diff --git a/jslib b/jslib index dc0befc9be..ad4c81ed84 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit dc0befc9be805af687328b7f28c25f840b2aa733 +Subproject commit ad4c81ed844f42e45467cd4467d993d30b1f8ce0 diff --git a/src/app/services/services.module.ts b/src/app/services/services.module.ts index e8fdb7cd05..d76caa4889 100644 --- a/src/app/services/services.module.ts +++ b/src/app/services/services.module.ts @@ -86,7 +86,7 @@ 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, i18nService); + apiService, storageService, i18nService, platformUtilsService, utilsService); const folderService = new FolderService(cryptoService, userService, () => i18nService.t('noneFolder'), apiService, storageService, i18nService); const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService); diff --git a/src/app/vault/add-edit.component.ts b/src/app/vault/add-edit.component.ts index 0133399ccc..6e463d2759 100644 --- a/src/app/vault/add-edit.component.ts +++ b/src/app/vault/add-edit.component.ts @@ -115,7 +115,7 @@ export class AddEditComponent implements OnChanges { this.uriMatchOptions = [ { name: i18nService.t('defaultAutofillDetection'), value: null }, { name: i18nService.t('baseDomain'), value: UriMatchType.BaseDomain }, - { name: i18nService.t('fullHostname'), value: UriMatchType.FullHostname }, + { name: i18nService.t('host'), value: UriMatchType.Host }, { name: i18nService.t('startsWith'), value: UriMatchType.StartsWith }, { name: i18nService.t('regEx'), value: UriMatchType.RegularExpression }, { name: i18nService.t('exact'), value: UriMatchType.Exact }, diff --git a/src/locales/en/messages.json b/src/locales/en/messages.json index 3f22a3294e..33e00adc4d 100644 --- a/src/locales/en/messages.json +++ b/src/locales/en/messages.json @@ -986,8 +986,9 @@ "baseDomain": { "message": "Base domain" }, - "fullHostname": { - "message": "Full hostname" + "host": { + "message": "Host", + "description": "A URL's host value. For example, the host of https://sub.domain.com:443 is 'sub.domain.com:443'." }, "exact": { "message": "Exact"