feat(i18n): improve translations (#219)
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe> Co-authored-by: 沈青川 <46062972+ShenQingchuan@users.noreply.github.com>
This commit is contained in:
parent
8df22b8a3f
commit
09f80f291b
8 changed files with 103 additions and 44 deletions
|
@ -117,39 +117,19 @@ const toggleBlockDomain = async () => {
|
|||
|
||||
<template v-else>
|
||||
<NuxtLink to="/pinned">
|
||||
<CommonDropdownItem
|
||||
text="Pinned"
|
||||
icon="i-ri:pushpin-line"
|
||||
:command="command"
|
||||
/>
|
||||
<CommonDropdownItem :text="$t('account.pinned')" icon="i-ri:pushpin-line" :command="command" />
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/favourites">
|
||||
<CommonDropdownItem
|
||||
text="Favourites"
|
||||
icon="i-ri:heart-3-line"
|
||||
:command="command"
|
||||
/>
|
||||
<CommonDropdownItem :text="$t('account.favourites')" icon="i-ri:heart-3-line" :command="command" />
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/mutes">
|
||||
<CommonDropdownItem
|
||||
text="Muted users"
|
||||
icon="i-ri:volume-mute-line"
|
||||
:command="command"
|
||||
/>
|
||||
<CommonDropdownItem :text="$t('account.muted_users')" icon="i-ri:volume-mute-line" :command="command" />
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/blocks">
|
||||
<CommonDropdownItem
|
||||
text="Blocked users"
|
||||
icon="i-ri:forbid-2-line"
|
||||
:command="command"
|
||||
/>
|
||||
<CommonDropdownItem :text="$t('account.blocked_users')" icon="i-ri:forbid-2-line" :command="command" />
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/domain_blocks">
|
||||
<CommonDropdownItem
|
||||
text="Blocked domains"
|
||||
icon="i-ri:shut-down-line"
|
||||
:command="command"
|
||||
/>
|
||||
<CommonDropdownItem text="$t('account.blocked_domains')" icon="i-ri:shut-down-line" :command="command" />
|
||||
</NuxtLink>
|
||||
</template>
|
||||
</template>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue