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)
       }
     }