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