forked from AkkomaGang/akkoma-fe
add a translation
This commit is contained in:
parent
949f47063b
commit
85685d6478
2 changed files with 3 additions and 2 deletions
|
@ -208,14 +208,14 @@
|
|||
@click.prevent="setProfileView('friends')"
|
||||
>
|
||||
<h5>{{ $t('user_card.followees') }}</h5>
|
||||
<span>{{ hideFollowsCount ? 'N/A' : user.friends_count }}</span>
|
||||
<span>{{ hideFollowsCount ? $t('user_card.na') : user.friends_count }}</span>
|
||||
</div>
|
||||
<div
|
||||
class="user-count"
|
||||
@click.prevent="setProfileView('followers')"
|
||||
>
|
||||
<h5>{{ $t('user_card.followers') }}</h5>
|
||||
<span>{{ hideFollowersCount ? 'N/A' : user.followers_count }}</span>
|
||||
<span>{{ hideFollowersCount ? $t('user_card.na') : user.followers_count }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<!-- eslint-disable vue/no-v-html -->
|
||||
|
|
|
@ -574,6 +574,7 @@
|
|||
"mention": "Mention",
|
||||
"mute": "Mute",
|
||||
"muted": "Muted",
|
||||
"na": "N/A",
|
||||
"per_day": "per day",
|
||||
"remote_follow": "Remote follow",
|
||||
"report": "Report",
|
||||
|
|
Loading…
Reference in a new issue