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">
<label for="externalId">{{'externalId' | i18n}}</label>
<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>
<h3 class="mt-4">{{'accessControl' | i18n}}</h3>
<div class="form-group">

View File

@ -1724,6 +1724,15 @@
"externalId": {
"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": {
"message": "Access Control"
},