summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-11-10 00:30:58 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-11-10 00:30:58 +0900
commit69eefc14251e210c874ef9fdc841981b22a328e6 (patch)
treec8274445b596cdb09fdd83f3ed93a32261e10174 /src/client
parentFix #3187 (diff)
downloadsharkey-69eefc14251e210c874ef9fdc841981b22a328e6.tar.gz
sharkey-69eefc14251e210c874ef9fdc841981b22a328e6.tar.bz2
sharkey-69eefc14251e210c874ef9fdc841981b22a328e6.zip
[Client] Fix bug
Diffstat (limited to 'src/client')
-rw-r--r--src/client/app/desktop/views/pages/user/user.profile.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/app/desktop/views/pages/user/user.profile.vue b/src/client/app/desktop/views/pages/user/user.profile.vue
index 41e2fa6e5e..eba492d4f0 100644
--- a/src/client/app/desktop/views/pages/user/user.profile.vue
+++ b/src/client/app/desktop/views/pages/user/user.profile.vue
@@ -4,7 +4,7 @@
<mk-follow-button :user="user" size="big"/>
<p class="followed" v-if="user.isFollowed">{{ $t('follows-you') }}</p>
<p class="stalk" v-if="user.isFollowing">
- <span v-if="user.isStalking">{{ $t('stalking% <a @click="unstalk"><fa icon="meh"/> %i18n:@unstalk') }}</a></span>
+ <span v-if="user.isStalking">{{ $t('stalking') }} <a @click="unstalk"><fa icon="meh"/> {{ $t('unstalk') }}</a></span>
<span v-if="!user.isStalking"><a @click="stalk"><fa icon="user-secret"/> {{ $t('stalk') }}</a></span>
</p>
</div>