Modify dashboard welcome sentences

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2020-06-11 04:20:57 +02:00 committed by Julius Härtl
parent 5a1874910b
commit 4b9d47fa53
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

@ -39,7 +39,7 @@ export default {
const time = this.timer.getHours()
if (time > 18) {
return t('dashboard', '🌙 Good evening')
return t('dashboard', '🌙 Time to call it a day')
}
if (time > 12) {
return t('dashboard', '☀ Good afternoon')
@ -47,7 +47,10 @@ export default {
if (time === 12) {
return t('dashboard', '🍽 Time for lunch')
}
return t('dashboard', '🌄 Good morning')
if (time > 5) {
return t('dashboard', '🌄 Good morning')
}
return t('dashboard', '🦉 Have a night owl')
},
},
watch: {