diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-07-25 01:36:39 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-07-25 01:36:39 +0900 |
| commit | 9c30b23358699a530f2bcb0f5ae6efe17146bcb3 (patch) | |
| tree | d57bb7911e273fcfed0de31c89101934d0ea2c8b /src/client/components/mention.vue | |
| parent | Fix #6566 (#6577) (diff) | |
| download | misskey-9c30b23358699a530f2bcb0f5ae6efe17146bcb3.tar.gz misskey-9c30b23358699a530f2bcb0f5ae6efe17146bcb3.tar.bz2 misskey-9c30b23358699a530f2bcb0f5ae6efe17146bcb3.zip | |
refactor(client): Use v-t for i18n
Diffstat (limited to 'src/client/components/mention.vue')
| -rw-r--r-- | src/client/components/mention.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/mention.vue b/src/client/components/mention.vue index 0303e0e5b5..e25a5de716 100644 --- a/src/client/components/mention.vue +++ b/src/client/components/mention.vue @@ -1,6 +1,6 @@ <template> <router-link class="ldlomzub" :class="{ isMe }" :to="url" v-user-preview="canonical" v-if="url.startsWith('/')"> - <span class="me" v-if="isMe">{{ $t('you') }}</span> + <span class="me" v-if="isMe" v-t="'you'"></span> <span class="main"> <span class="username">@{{ username }}</span> <span class="host" v-if="(host != localHost) || $store.state.settings.showFullAcct">@{{ toUnicode(host) }}</span> |