mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Make user profile follow(ed) lists exceeds 5 users and X more better translatable
Slite adjustment of `more` to `more …`
This commit is contained in:
parent
66612801ce
commit
a10e2e3a9b
@ -122,8 +122,7 @@
|
||||
"followingNobody": "folgt niemandem.",
|
||||
"followedBy": "wird gefolgt von:",
|
||||
"followedByNobody": "wird von niemandem gefolgt.",
|
||||
"and": "und",
|
||||
"more": "weitere"
|
||||
"andMore": "und {number} weitere …"
|
||||
},
|
||||
"invites": {
|
||||
"title": "Lade jemanden zu Human Connection ein!",
|
||||
|
||||
@ -122,8 +122,7 @@
|
||||
"followingNobody": "follows nobody.",
|
||||
"followedBy": "is followed by:",
|
||||
"followedByNobody": "is not followed by anyone.",
|
||||
"and": "and",
|
||||
"more": "more"
|
||||
"andMore": "and {number} more …"
|
||||
},
|
||||
"invites": {
|
||||
"title": "Invite somebody to Human Connection!",
|
||||
|
||||
@ -95,8 +95,11 @@
|
||||
</ds-space>
|
||||
<ds-space v-if="user.followingCount - user.following.length" margin="small">
|
||||
<ds-text size="small" color="softer">
|
||||
{{ $t('profile.network.and') }} {{ user.followingCount - user.following.length }}
|
||||
{{ $t('profile.network.more') }}
|
||||
{{
|
||||
$t('profile.network.andMore', {
|
||||
number: user.followingCount - user.following.length,
|
||||
})
|
||||
}}
|
||||
</ds-text>
|
||||
</ds-space>
|
||||
</template>
|
||||
@ -122,8 +125,11 @@
|
||||
</ds-space>
|
||||
<ds-space v-if="user.followedByCount - user.followedBy.length" margin="small">
|
||||
<ds-text size="small" color="softer">
|
||||
{{ $t('profile.network.and') }} {{ user.followedByCount - user.followedBy.length }}
|
||||
{{ $t('profile.network.more') }}
|
||||
{{
|
||||
$t('profile.network.andMore', {
|
||||
number: user.followedByCount - user.followedBy.length,
|
||||
})
|
||||
}}
|
||||
</ds-text>
|
||||
</ds-space>
|
||||
</template>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user