aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxim Filippov <colixer@gmail.com>2019-02-12 22:07:10 +0300
committerMaxim Filippov <colixer@gmail.com>2019-02-28 04:04:26 +0300
commitafbe524a2e7fa7002c4b1f5883e08b2d135a2eda (patch)
tree952cdeb9d16a8c9cb022d2848ecc88b120602181 /src
parentb9082fb13f5fc16eeaa97b580dcfd3a11481d519 (diff)
use translations
Diffstat (limited to 'src')
-rw-r--r--src/components/user_settings/user_settings.vue10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/components/user_settings/user_settings.vue b/src/components/user_settings/user_settings.vue
index ac75ad86..116c1335 100644
--- a/src/components/user_settings/user_settings.vue
+++ b/src/components/user_settings/user_settings.vue
@@ -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>