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.",
|
"followingNobody": "folgt niemandem.",
|
||||||
"followedBy": "wird gefolgt von:",
|
"followedBy": "wird gefolgt von:",
|
||||||
"followedByNobody": "wird von niemandem gefolgt.",
|
"followedByNobody": "wird von niemandem gefolgt.",
|
||||||
"and": "und",
|
"andMore": "und {number} weitere …"
|
||||||
"more": "weitere"
|
|
||||||
},
|
},
|
||||||
"invites": {
|
"invites": {
|
||||||
"title": "Lade jemanden zu Human Connection ein!",
|
"title": "Lade jemanden zu Human Connection ein!",
|
||||||
|
|||||||
@ -122,8 +122,7 @@
|
|||||||
"followingNobody": "follows nobody.",
|
"followingNobody": "follows nobody.",
|
||||||
"followedBy": "is followed by:",
|
"followedBy": "is followed by:",
|
||||||
"followedByNobody": "is not followed by anyone.",
|
"followedByNobody": "is not followed by anyone.",
|
||||||
"and": "and",
|
"andMore": "and {number} more …"
|
||||||
"more": "more"
|
|
||||||
},
|
},
|
||||||
"invites": {
|
"invites": {
|
||||||
"title": "Invite somebody to Human Connection!",
|
"title": "Invite somebody to Human Connection!",
|
||||||
|
|||||||
@ -95,8 +95,11 @@
|
|||||||
</ds-space>
|
</ds-space>
|
||||||
<ds-space v-if="user.followingCount - user.following.length" margin="small">
|
<ds-space v-if="user.followingCount - user.following.length" margin="small">
|
||||||
<ds-text size="small" color="softer">
|
<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-text>
|
||||||
</ds-space>
|
</ds-space>
|
||||||
</template>
|
</template>
|
||||||
@ -122,8 +125,11 @@
|
|||||||
</ds-space>
|
</ds-space>
|
||||||
<ds-space v-if="user.followedByCount - user.followedBy.length" margin="small">
|
<ds-space v-if="user.followedByCount - user.followedBy.length" margin="small">
|
||||||
<ds-text size="small" color="softer">
|
<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-text>
|
||||||
</ds-space>
|
</ds-space>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user