added localization variable for link sso (#648)

This commit is contained in:
Addison Beck 2020-09-11 14:22:56 -04:00 committed by GitHub
parent 0dc26e589a
commit ce67497d3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,4 @@
<a class="dropdown-item" href="#" appStopClick (click)="submit(returnUri, true)">
<i class="fa fa-fw fa-link" aria-hidden="true"></i>
Link SSO
{{'linkSso' | i18n}}
</a>

View File

@ -78,7 +78,7 @@
<a *ngIf="o.ssoBound; else linkSso" class="dropdown-item" href="#" appStopClick
(click)="unlinkSso(o)">
<i class="fa fa-fw fa-chain-broken" aria-hidden="true"></i>
Unlink SSO
{{'unlinkSso' | i18n}}
</a>
<ng-template #linkSso>
<app-link-sso [organization]="o">

View File

@ -3200,5 +3200,11 @@
},
"ssoIdentifierRequired": {
"message": "Organization Identifier is required."
},
"unlinkSso": {
"message": "Unlink SSO"
},
"linkSso": {
"message": "Link SSO"
}
}