aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/user_card/user_card.vue2
-rw-r--r--src/i18n/en.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue
index 03c79b49..d73ae716 100644
--- a/src/components/user_card/user_card.vue
+++ b/src/components/user_card/user_card.vue
@@ -69,7 +69,7 @@
<ProgressButton class="btn btn-default" :click="subscribeUser" :title="$t('user_card.subscribe')" v-if="!user.subscribed">
<i class="icon-bell-off" />
</ProgressButton>
- <ProgressButton class="btn btn-default pressed" :click="unsubscribeUser" :title="$t('user_card.subscribed')" v-else>
+ <ProgressButton class="btn btn-default pressed" :click="unsubscribeUser" :title="$t('user_card.unsubscribe')" v-else>
<i class="icon-bell-alt" />
</ProgressButton>
</div>
diff --git a/src/i18n/en.json b/src/i18n/en.json
index 03455cce..49989f78 100644
--- a/src/i18n/en.json
+++ b/src/i18n/en.json
@@ -530,7 +530,7 @@
"report": "Report",
"statuses": "Statuses",
"subscribe": "Subscribe",
- "subscribed": "Subscribed",
+ "unsubscribe": "Unsubscribe",
"unblock": "Unblock",
"unblock_progress": "Unblocking...",
"block_progress": "Blocking...",