diff options
author | Jan C. Borchardt <hey@jancborchardt.net> | 2020-08-11 10:10:24 +0200 |
---|---|---|
committer | Jan C. Borchardt <hey@jancborchardt.net> | 2020-08-11 10:12:25 +0200 |
commit | 227b4761b85094d4937b03c23a7820dab7d07d3e (patch) | |
tree | fb3b199b75d6a24f3af7c931876f2573aed0e33d /apps | |
parent | 81ba90a0fe1710c51ff728d01656b318346155d5 (diff) | |
download | nextcloud-server-227b4761b85094d4937b03c23a7820dab7d07d3e.tar.gz nextcloud-server-227b4761b85094d4937b03c23a7820dab7d07d3e.zip |
Dashboard: Fix wording issue on greetings
Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dashboard/src/App.vue | 2 |
1 files changed, 1 insertions, 1 deletions
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 |