Merge pull request #56711 from nextcloud/fix/noid/user-status-busy

fix(user_status): adjust online status string
This commit is contained in:
Daniel 2025-11-26 12:21:08 +01:00 committed by GitHub
commit f4753cc0c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 4 deletions

View file

@ -37,9 +37,11 @@ export default {
return t('user_status', 'Online')
case 'away':
case 'busy':
return t('user_status', 'Away')
case 'busy':
return t('user_status', 'Busy')
case 'dnd':
return t('user_status', 'Do not disturb')

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long