From e53a42a2311e5646f96f6af89388f274f4b85001 Mon Sep 17 00:00:00 2001 From: m1k1o Date: Mon, 6 Apr 2020 11:55:08 +0200 Subject: [PATCH] language minor bugs --- client/src/neko/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/neko/index.ts b/client/src/neko/index.ts index 571ab1cf..f2fca887 100644 --- a/client/src/neko/index.ts +++ b/client/src/neko/index.ts @@ -54,7 +54,7 @@ export class NekoClient extends BaseClient implements EventEmitter { this.disconnect() this.cleanup() this.$vue.$swal({ - title: this.$vue.$t('notifications.logged_out', { name: 'You' }), + title: this.$vue.$t('notifications.logged_out', { name: this.$vue.$t('you') }), icon: 'info', confirmButtonText: this.$vue.$t('ok') as string, }) @@ -207,7 +207,7 @@ export class NekoClient extends BaseClient implements EventEmitter { this.$accessor.chat.newMessage({ id: member.id, - content: this.$vue.$t('notifications.controls_released') as string, + content: this.$vue.$t('notifications.controls_released', { name: '' }) as string, type: 'event', created: new Date(), })