use translations

This commit is contained in:
Maxim Filippov 2019-02-12 22:07:10 +03:00
parent b9082fb13f
commit afbe524a2e

View file

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