mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(user_status): adjust online status string
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
This commit is contained in:
parent
0493b6d942
commit
926f0d5758
1 changed files with 3 additions and 1 deletions
|
|
@ -35,9 +35,11 @@ export default {
|
|||
return this.$t('user_status', 'Online')
|
||||
|
||||
case 'away':
|
||||
case 'busy':
|
||||
return this.$t('user_status', 'Away')
|
||||
|
||||
case 'busy':
|
||||
return this.$t('user_status', 'Busy')
|
||||
|
||||
case 'dnd':
|
||||
return this.$t('user_status', 'Do not disturb')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue