diff options
| author | Maxim Filippov <colixer@gmail.com> | 2019-02-21 02:51:28 +0300 |
|---|---|---|
| committer | Maxim Filippov <colixer@gmail.com> | 2019-02-28 04:05:54 +0300 |
| commit | 267952b4e7e2bdb2b160cbe3a49f4f6dd23972b5 (patch) | |
| tree | e0db0a23fcf7119b16b7679c840efbed845ae9ec /src | |
| parent | c71f411ad6593a496a041505f8a6642a4ae55eea (diff) | |
"Are you sure?" -> i18n
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/user_settings/user_settings.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/user_settings/user_settings.js b/src/components/user_settings/user_settings.js index e7a961f1..d6972737 100644 --- a/src/components/user_settings/user_settings.js +++ b/src/components/user_settings/user_settings.js @@ -321,7 +321,7 @@ const UserSettings = { this.$router.replace('/') }, revokeToken (id) { - if (window.confirm('Are you sure?')) { + if (window.confirm(`${this.$i18n.t('settings.revoke_token')}?`)) { this.$store.dispatch('revokeToken', id) } } |
