1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-27 04:03:00 +02:00

rename to match detection

This commit is contained in:
Kyle Spearrin 2018-03-12 12:36:19 -04:00
parent 5d2b7d2383
commit 106eeb5a1f
3 changed files with 10 additions and 10 deletions

View File

@ -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"

View File

@ -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>

View File

@ -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>