translation key 'you' should be optional.
This commit is contained in:
parent
6c4cc0cc89
commit
8a0d0bac0c
@ -24,7 +24,7 @@
|
|||||||
boundariesElement: 'body',
|
boundariesElement: 'body',
|
||||||
}"
|
}"
|
||||||
>
|
>
|
||||||
<strong v-if="message.id === id">{{ $t('you') }}</strong>
|
<strong v-if="message.id === id && $te('you')">{{ $t('you') }}</strong>
|
||||||
<strong v-else>{{ member(message.id).displayname }}</strong>
|
<strong v-else>{{ member(message.id).displayname }}</strong>
|
||||||
{{ message.content }}
|
{{ message.content }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -188,7 +188,9 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$vue.$notify({
|
this.$vue.$notify({
|
||||||
group: 'neko',
|
group: 'neko',
|
||||||
type: 'info',
|
type: 'info',
|
||||||
title: this.$vue.$t('notifications.controls_taken', { name: this.$vue.$t('you') }) as string,
|
title: this.$vue.$t('notifications.controls_taken', {
|
||||||
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
|
}) as string,
|
||||||
duration: 5000,
|
duration: 5000,
|
||||||
speed: 1000,
|
speed: 1000,
|
||||||
})
|
})
|
||||||
@ -213,7 +215,9 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$vue.$notify({
|
this.$vue.$notify({
|
||||||
group: 'neko',
|
group: 'neko',
|
||||||
type: 'info',
|
type: 'info',
|
||||||
title: this.$vue.$t('notifications.controls_released', { name: this.$vue.$t('you') }) as string,
|
title: this.$vue.$t('notifications.controls_released', {
|
||||||
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
|
}) as string,
|
||||||
duration: 5000,
|
duration: 5000,
|
||||||
speed: 1000,
|
speed: 1000,
|
||||||
})
|
})
|
||||||
@ -270,7 +274,7 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$accessor.chat.newMessage({
|
this.$accessor.chat.newMessage({
|
||||||
id,
|
id,
|
||||||
content: this.$vue.$t('notifications.controls_given', {
|
content: this.$vue.$t('notifications.controls_given', {
|
||||||
name: member.id == this.id ? this.$vue.$t('you') : member.displayname,
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
}) as string,
|
}) as string,
|
||||||
type: 'event',
|
type: 'event',
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
@ -361,7 +365,7 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$accessor.chat.newMessage({
|
this.$accessor.chat.newMessage({
|
||||||
id,
|
id,
|
||||||
content: this.$vue.$t('notifications.banned', {
|
content: this.$vue.$t('notifications.banned', {
|
||||||
name: member.id == this.id ? this.$vue.$t('you') : member.displayname,
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
}) as string,
|
}) as string,
|
||||||
type: 'event',
|
type: 'event',
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
@ -381,7 +385,7 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$accessor.chat.newMessage({
|
this.$accessor.chat.newMessage({
|
||||||
id,
|
id,
|
||||||
content: this.$vue.$t('notifications.kicked', {
|
content: this.$vue.$t('notifications.kicked', {
|
||||||
name: member.id == this.id ? this.$vue.$t('you') : member.displayname,
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
}) as string,
|
}) as string,
|
||||||
type: 'event',
|
type: 'event',
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
@ -403,7 +407,7 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$accessor.chat.newMessage({
|
this.$accessor.chat.newMessage({
|
||||||
id,
|
id,
|
||||||
content: this.$vue.$t('notifications.muted', {
|
content: this.$vue.$t('notifications.muted', {
|
||||||
name: member.id == this.id ? this.$vue.$t('you') : member.displayname,
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
}) as string,
|
}) as string,
|
||||||
type: 'event',
|
type: 'event',
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
@ -425,7 +429,7 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$accessor.chat.newMessage({
|
this.$accessor.chat.newMessage({
|
||||||
id,
|
id,
|
||||||
content: this.$vue.$t('notifications.unmuted', {
|
content: this.$vue.$t('notifications.unmuted', {
|
||||||
name: member.id == this.id ? this.$vue.$t('you') : member.displayname,
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
}) as string,
|
}) as string,
|
||||||
type: 'event',
|
type: 'event',
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
@ -474,7 +478,7 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$accessor.chat.newMessage({
|
this.$accessor.chat.newMessage({
|
||||||
id,
|
id,
|
||||||
content: this.$vue.$t('notifications.controls_taken_steal', {
|
content: this.$vue.$t('notifications.controls_taken_steal', {
|
||||||
name: member.id == this.id ? this.$vue.$t('you') : member.displayname,
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
}) as string,
|
}) as string,
|
||||||
type: 'event',
|
type: 'event',
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
@ -501,7 +505,7 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$accessor.chat.newMessage({
|
this.$accessor.chat.newMessage({
|
||||||
id,
|
id,
|
||||||
content: this.$vue.$t('notifications.controls_released_steal', {
|
content: this.$vue.$t('notifications.controls_released_steal', {
|
||||||
name: member.id == this.id ? this.$vue.$t('you') : member.displayname,
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
}) as string,
|
}) as string,
|
||||||
type: 'event',
|
type: 'event',
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
@ -524,7 +528,7 @@ export class NekoClient extends BaseClient implements EventEmitter<NekoEvents> {
|
|||||||
this.$accessor.chat.newMessage({
|
this.$accessor.chat.newMessage({
|
||||||
id,
|
id,
|
||||||
content: this.$vue.$t('notifications.controls_given', {
|
content: this.$vue.$t('notifications.controls_given', {
|
||||||
name: member.id == this.id ? this.$vue.$t('you') : member.displayname,
|
name: member.id == this.id && this.$vue.$te('you') ? this.$vue.$t('you') : member.displayname,
|
||||||
}) as string,
|
}) as string,
|
||||||
type: 'event',
|
type: 'event',
|
||||||
created: new Date(),
|
created: new Date(),
|
||||||
|
Reference in New Issue
Block a user