From: Jan C. Borchardt Date: Tue, 11 Aug 2020 08:10:24 +0000 (+0200) Subject: Dashboard: Fix wording issue on greetings X-Git-Tag: v20.0.0beta1~90^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=227b4761b85094d4937b03c23a7820dab7d07d3e;p=nextcloud-server.git Dashboard: Fix wording issue on greetings Signed-off-by: Jan C. Borchardt --- diff --git a/apps/dashboard/src/App.vue b/apps/dashboard/src/App.vue index 66e4b96c583..3c4644df47b 100644 --- a/apps/dashboard/src/App.vue +++ b/apps/dashboard/src/App.vue @@ -125,7 +125,7 @@ export default { if (time > 5) { return { text: shouldShowName ? t('dashboard', 'Good morning, {name}', { name: this.displayName }) : t('dashboard', 'Good morning') } } - return { text: shouldShowName ? t('dashboard', 'Good night, {name}', { name: this.displayName }) : t('dashboard', 'Have a night owl') } + return { text: shouldShowName ? t('dashboard', 'Good night, {name}', { name: this.displayName }) : t('dashboard', 'Good night') } }, isActive() { return (panel) => this.layout.indexOf(panel.id) > -1