use translations
This commit is contained in:
parent
b9082fb13f
commit
afbe524a2e
1 changed files with 6 additions and 4 deletions
|
@ -126,9 +126,9 @@
|
||||||
<table class="oauth-tokens">
|
<table class="oauth-tokens">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Token</th>
|
<th>{{$t('settings.token')}}</th>
|
||||||
<th>Refresh Token</th>
|
<th>{{$t('settings.refresh_token')}}</th>
|
||||||
<th>Valid Until</th>
|
<th>{{$t('settings.valid_until')}}</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -138,7 +138,9 @@
|
||||||
<td>{{oauthToken.refreshToken}}</td>
|
<td>{{oauthToken.refreshToken}}</td>
|
||||||
<td>{{oauthToken.validUntil}}</td>
|
<td>{{oauthToken.validUntil}}</td>
|
||||||
<td class="actions">
|
<td class="actions">
|
||||||
<button class="btn btn-default" @click="revokeToken(oauthToken.id)">Revoke</button>
|
<button class="btn btn-default" @click="revokeToken(oauthToken.id)">
|
||||||
|
{{$t('settings.revoke_token')}}
|
||||||
|
</button>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
Loading…
Reference in a new issue