chore: Follow up: Add missing command hints

pull/1931/head
Christian Kußowski 4 months ago
parent dde0365457
commit a22a1f7702
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -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"
}

@ -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 "";
}

Loading…
Cancel
Save