mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-15 10:35:20 +01:00
rename to match detection
This commit is contained in:
parent
5d2b7d2383
commit
106eeb5a1f
@ -1010,13 +1010,13 @@
|
||||
"message": "Regular expression",
|
||||
"description": "A programming term, also known as 'RegEx'."
|
||||
},
|
||||
"autofillDetection": {
|
||||
"message": "Auto-fill Detection",
|
||||
"description": "URI auto-fill match detection."
|
||||
"matchDetection": {
|
||||
"message": "Match Detection",
|
||||
"description": "URI match detection for auto-fill."
|
||||
},
|
||||
"defaultAutofillDetection": {
|
||||
"message": "Default auto-fill detection",
|
||||
"description": "Default URI auto-fill match detection."
|
||||
"defaultMatchDetection": {
|
||||
"message": "Default match detection",
|
||||
"description": "Default URI match detection for auto-fill."
|
||||
},
|
||||
"toggleOptions": {
|
||||
"message": "Toggle Options"
|
||||
|
@ -213,12 +213,12 @@
|
||||
<input id="loginUri{{$index}}" type="text" name="Login.Uris[{{$index}}].Uri"
|
||||
ng-model="u.uri" placeholder="{{i18n.ex}} https://google.com">
|
||||
<label for="loginUriMatch{{$index}}" class="sr-only">
|
||||
{{i18n.autofillDetection}} {{$index + 1}}
|
||||
{{i18n.matchDetection}} {{$index + 1}}
|
||||
</label>
|
||||
<select id="loginUriMatch{{$index}}" name="Login.Uris[{{$index}}].Match"
|
||||
ng-hide="u.showOptions === false || (u.showOptions == null && u.match == null)"
|
||||
ng-model="u.matchValue" ng-change="uriMatchChanged(u)">
|
||||
<option value="">{{i18n.defaultAutofillDetection}}</option>
|
||||
<option value="">{{i18n.defaultMatchDetection}}</option>
|
||||
<option value="0">{{i18n.baseDomain}}</option>
|
||||
<option value="1">{{i18n.host}}</option>
|
||||
<option value="2">{{i18n.startsWith}}</option>
|
||||
|
@ -206,12 +206,12 @@
|
||||
<input id="loginUri{{$index}}" type="text" name="Login.Uris[{{$index}}].Uri"
|
||||
ng-model="u.uri" placeholder="{{i18n.ex}} https://google.com">
|
||||
<label for="loginUriMatch{{$index}}" class="sr-only">
|
||||
{{i18n.autofillDetection}} {{$index + 1}}
|
||||
{{i18n.matchDetection}} {{$index + 1}}
|
||||
</label>
|
||||
<select id="loginUriMatch{{$index}}" name="Login.Uris[{{$index}}].Match"
|
||||
ng-hide="u.showOptions === false || (u.showOptions == null && u.match == null)"
|
||||
ng-model="u.matchValue" ng-change="uriMatchChanged(u)">
|
||||
<option value="">{{i18n.defaultAutofillDetection}}</option>
|
||||
<option value="">{{i18n.defaultMatchDetection}}</option>
|
||||
<option value="0">{{i18n.baseDomain}}</option>
|
||||
<option value="1">{{i18n.host}}</option>
|
||||
<option value="2">{{i18n.startsWith}}</option>
|
||||
|
Loading…
Reference in New Issue
Block a user