From ace3b399ffe21459b1fbd7a3b0023f2c58c12b03 Mon Sep 17 00:00:00 2001 From: taehoon Date: Thu, 25 Apr 2019 04:40:37 -0400 Subject: [PATCH] support i18n --- src/components/user_card/user_card.vue | 4 ++-- src/i18n/en.json | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index f185b8b9..cbf32db4 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -74,10 +74,10 @@
- Subscribe + {{ $t('user_card.subscribe') }} - Subscribing! + {{ $t('user_card.subscribing') }}
diff --git a/src/i18n/en.json b/src/i18n/en.json index dd34a95d..5a85bf9b 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -529,6 +529,8 @@ "remote_follow": "Remote follow", "report": "Report", "statuses": "Statuses", + "subscribe": "Subscribe", + "subscribing": "Subscribing!", "unblock": "Unblock", "unblock_progress": "Unblocking...", "block_progress": "Blocking...",