chore: Follow up: Add missing command hints

This commit is contained in:
Christian Kußowski 2025-06-05 08:45:49 +02:00
parent dde0365457
commit a22a1f7702
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652
2 changed files with 7 additions and 1 deletions

View file

@ -3236,5 +3236,7 @@
"enterNewChat": "Enter new chat",
"approve": "Approve",
"youHaveKnocked": "You have knocked",
"pleaseWaitUntilInvited": "Please wait now, until someone from the room invites you."
"pleaseWaitUntilInvited": "Please wait now, until someone from the room invites you.",
"commandHint_logout": "Logout your current device",
"commandHint_logoutall": "Logout all active devices"
}

View file

@ -80,6 +80,10 @@ String commandHint(L10n l10n, String command) {
return l10n.commandHint_unignore;
case 'roomupgrade':
return l10n.commandHint_roomupgrade;
case 'logout':
return l10n.commandHint_logout;
case 'logoutall':
return l10n.commandHint_logoutall;
default:
return "";
}