mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
change to full hostname to host
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: dc0befc9be...ad4c81ed84
@@ -86,7 +86,7 @@ const environmentService = new EnvironmentService(apiService, storageService);
|
|||||||
const userService = new UserService(tokenService, storageService);
|
const userService = new UserService(tokenService, storageService);
|
||||||
const settingsService = new SettingsService(userService, storageService);
|
const settingsService = new SettingsService(userService, storageService);
|
||||||
const cipherService = new CipherService(cryptoService, userService, settingsService,
|
const cipherService = new CipherService(cryptoService, userService, settingsService,
|
||||||
apiService, storageService, i18nService);
|
apiService, storageService, i18nService, platformUtilsService, utilsService);
|
||||||
const folderService = new FolderService(cryptoService, userService,
|
const folderService = new FolderService(cryptoService, userService,
|
||||||
() => i18nService.t('noneFolder'), apiService, storageService, i18nService);
|
() => i18nService.t('noneFolder'), apiService, storageService, i18nService);
|
||||||
const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService);
|
const collectionService = new CollectionService(cryptoService, userService, storageService, i18nService);
|
||||||
|
|||||||
@@ -115,7 +115,7 @@ export class AddEditComponent implements OnChanges {
|
|||||||
this.uriMatchOptions = [
|
this.uriMatchOptions = [
|
||||||
{ name: i18nService.t('defaultAutofillDetection'), value: null },
|
{ name: i18nService.t('defaultAutofillDetection'), value: null },
|
||||||
{ name: i18nService.t('baseDomain'), value: UriMatchType.BaseDomain },
|
{ 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('startsWith'), value: UriMatchType.StartsWith },
|
||||||
{ name: i18nService.t('regEx'), value: UriMatchType.RegularExpression },
|
{ name: i18nService.t('regEx'), value: UriMatchType.RegularExpression },
|
||||||
{ name: i18nService.t('exact'), value: UriMatchType.Exact },
|
{ name: i18nService.t('exact'), value: UriMatchType.Exact },
|
||||||
|
|||||||
@@ -986,8 +986,9 @@
|
|||||||
"baseDomain": {
|
"baseDomain": {
|
||||||
"message": "Base domain"
|
"message": "Base domain"
|
||||||
},
|
},
|
||||||
"fullHostname": {
|
"host": {
|
||||||
"message": "Full hostname"
|
"message": "Host",
|
||||||
|
"description": "A URL's host value. For example, the host of https://sub.domain.com:443 is 'sub.domain.com:443'."
|
||||||
},
|
},
|
||||||
"exact": {
|
"exact": {
|
||||||
"message": "Exact"
|
"message": "Exact"
|
||||||
|
|||||||
Reference in New Issue
Block a user