use translations

This commit is contained in:
Maxim Filippov 2019-02-12 22:07:10 +03:00
parent b9082fb13f
commit afbe524a2e
1 changed files with 6 additions and 4 deletions

View File

@ -126,9 +126,9 @@
<table class="oauth-tokens">
<thead>
<tr>
<th>Token</th>
<th>Refresh Token</th>
<th>Valid Until</th>
<th>{{$t('settings.token')}}</th>
<th>{{$t('settings.refresh_token')}}</th>
<th>{{$t('settings.valid_until')}}</th>
<th></th>
</tr>
</thead>
@ -138,7 +138,9 @@
<td>{{oauthToken.refreshToken}}</td>
<td>{{oauthToken.validUntil}}</td>
<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>
</tr>
</tbody>