1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

external id desc

This commit is contained in:
Kyle Spearrin
2018-07-09 21:44:48 -04:00
parent 2d4676ed7e
commit a27357213a
2 changed files with 10 additions and 0 deletions

View File

@@ -18,6 +18,7 @@
<div class="form-group"> <div class="form-group">
<label for="externalId">{{'externalId' | i18n}}</label> <label for="externalId">{{'externalId' | i18n}}</label>
<input id="externalId" class="form-control" type="text" name="ExternalId" [(ngModel)]="externalId"> <input id="externalId" class="form-control" type="text" name="ExternalId" [(ngModel)]="externalId">
<small class="form-text text-muted">{{'externalIdDesc' | i18n : ('group' | i18n).toLocaleLowerCase()}}</small>
</div> </div>
<h3 class="mt-4">{{'accessControl' | i18n}}</h3> <h3 class="mt-4">{{'accessControl' | i18n}}</h3>
<div class="form-group"> <div class="form-group">

View File

@@ -1724,6 +1724,15 @@
"externalId": { "externalId": {
"message": "External Id" "message": "External Id"
}, },
"externalIdDesc": {
"message": "The external id is used to link this $THING$ to an external system such as a directory.",
"placeholders": {
"thing": {
"content": "$1",
"example": "group"
}
}
},
"accessControl": { "accessControl": {
"message": "Access Control" "message": "Access Control"
}, },