mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
WIP - First attemplte of Pluralization
This commit is contained in:
parent
6c2b606341
commit
7bd345ceec
@ -94,4 +94,4 @@
|
||||
"author": "Afrikanisches Sprichwort"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,4 +1,21 @@
|
||||
{
|
||||
"common": {
|
||||
"post": "Post ::: Posts",
|
||||
"comment": "Comment ::: Comments",
|
||||
"letsTalk": "Let`s Talk",
|
||||
"versus": "Versus",
|
||||
"moreInfo": "More Info",
|
||||
"takeAction": "Take Action",
|
||||
"shout": "Shout ::: Shouts",
|
||||
"user": "User ::: Users",
|
||||
"category": "Category ::: Categories",
|
||||
"organization": "Organization ::: Organizations",
|
||||
"project": "Project ::: Projects",
|
||||
"tag": "Tag ::: Tags",
|
||||
"name": "Name ::: Names",
|
||||
"loadMore": "load more",
|
||||
"loading": "loading"
|
||||
},
|
||||
"login": {
|
||||
"copy": "If you already have a human-connection account, login here.",
|
||||
"login": "Login",
|
||||
@ -94,4 +111,4 @@
|
||||
"author": "African proverb"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -18,33 +18,33 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
routes: [
|
||||
computed: {
|
||||
routes() {
|
||||
return [
|
||||
{
|
||||
name: 'Post',
|
||||
name: this.$t('common.post', null, 1),
|
||||
path: `/post/${this.$route.params.slug}`,
|
||||
children: [
|
||||
{
|
||||
name: 'Kommentare',
|
||||
name: this.$t('common.comment', null, 2),
|
||||
path: `/post/${this.$route.params.slug}#comments`
|
||||
},
|
||||
{
|
||||
name: 'Miteinander reden',
|
||||
name: this.$t('common.letsTalk'),
|
||||
path: `/post/${this.$route.params.slug}#lets-talk`
|
||||
},
|
||||
{
|
||||
name: 'Versus',
|
||||
name: this.$t('common.versus'),
|
||||
path: `/post/${this.$route.params.slug}#versus`
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: 'Mehr Info',
|
||||
name: this.$t('common.moreInfo'),
|
||||
path: `/post/${this.$route.params.slug}/more-info`
|
||||
},
|
||||
{
|
||||
name: 'Aktiv werden',
|
||||
name: this.$t('common.takeAction'),
|
||||
path: `/post/${this.$route.params.slug}/take-action`
|
||||
}
|
||||
]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user