mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Clean up/add german translations
This commit is contained in:
parent
b79770469f
commit
cf8124fb2d
@ -1,5 +1,4 @@
|
|||||||
<template>
|
<template>
|
||||||
<ds-container>
|
|
||||||
<ds-space :class="{ read: notification.read, notification: true }" margin-bottom="x-small">
|
<ds-space :class="{ read: notification.read, notification: true }" margin-bottom="x-small">
|
||||||
<client-only>
|
<client-only>
|
||||||
<ds-space margin-bottom="x-small">
|
<ds-space margin-bottom="x-small">
|
||||||
@ -33,7 +32,6 @@
|
|||||||
</ds-space>
|
</ds-space>
|
||||||
</nuxt-link>
|
</nuxt-link>
|
||||||
</ds-space>
|
</ds-space>
|
||||||
</ds-container>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@ -175,7 +175,16 @@
|
|||||||
"mentioned_in_comment": "Hat dich in einem Kommentar erwähnt …",
|
"mentioned_in_comment": "Hat dich in einem Kommentar erwähnt …",
|
||||||
"commented_on_post": "Hat deinen Beitrag kommentiert …"
|
"commented_on_post": "Hat deinen Beitrag kommentiert …"
|
||||||
},
|
},
|
||||||
"comment": "Kommentar"
|
"comment": "Kommentar",
|
||||||
|
"title": "Benachrichtigungen",
|
||||||
|
"post": "Beitrag",
|
||||||
|
"user": "Benutzer",
|
||||||
|
"content": "Inhalt",
|
||||||
|
"sortingLabel": {
|
||||||
|
"all": "Alle",
|
||||||
|
"read": "Lesen ",
|
||||||
|
"unread": "Ungelesen"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"placeholder": "Suchen",
|
"placeholder": "Suchen",
|
||||||
|
|||||||
@ -178,11 +178,14 @@
|
|||||||
},
|
},
|
||||||
"comment": "Comment",
|
"comment": "Comment",
|
||||||
"title": "Notifications",
|
"title": "Notifications",
|
||||||
"page": "All notifications",
|
"post": "Post",
|
||||||
"createdAt": "Notification created at",
|
|
||||||
"type": "Type",
|
|
||||||
"user": "User",
|
"user": "User",
|
||||||
"content": "Content"
|
"content": "Content",
|
||||||
|
"sortingLabel": {
|
||||||
|
"all": "All",
|
||||||
|
"read": "Read",
|
||||||
|
"unread": "Unread"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"placeholder": "Search",
|
"placeholder": "Search",
|
||||||
|
|||||||
@ -99,11 +99,11 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
selectedNotifications: [],
|
selectedNotifications: [],
|
||||||
selected: 'All',
|
selected: this.$t('notifications.sortingLabel.all'),
|
||||||
sortingOptions: [
|
sortingOptions: [
|
||||||
{ label: 'All', value: null },
|
{ label: this.$t('notifications.sortingLabel.all'), value: null },
|
||||||
{ label: 'Read', value: true },
|
{ label: this.$t('notifications.sortingLabel.read'), value: true },
|
||||||
{ label: 'Unread', value: false },
|
{ label: this.$t('notifications.sortingLabel.unread'), value: false },
|
||||||
],
|
],
|
||||||
nofiticationRead: null,
|
nofiticationRead: null,
|
||||||
}
|
}
|
||||||
@ -112,7 +112,7 @@ export default {
|
|||||||
fields() {
|
fields() {
|
||||||
return {
|
return {
|
||||||
user: this.$t('notifications.user'),
|
user: this.$t('notifications.user'),
|
||||||
post: this.$t('notifications.type'),
|
post: this.$t('notifications.post'),
|
||||||
content: this.$t('notifications.content'),
|
content: this.$t('notifications.content'),
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user