diff --git a/lib/l10n/intl_en.arb b/lib/l10n/intl_en.arb index d99b4b6c6..b7e61178c 100644 --- a/lib/l10n/intl_en.arb +++ b/lib/l10n/intl_en.arb @@ -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" } \ No newline at end of file diff --git a/lib/pages/chat/command_hints.dart b/lib/pages/chat/command_hints.dart index ffa5715e8..212bdf4d4 100644 --- a/lib/pages/chat/command_hints.dart +++ b/lib/pages/chat/command_hints.dart @@ -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 ""; }