fix: add missing command localizations

This commit is contained in:
Christian Pauly 2022-09-05 17:56:50 +02:00
parent 0a36f95ea4
commit db0d49269b
2 changed files with 6 additions and 0 deletions

View File

@ -487,6 +487,8 @@
"type": "text",
"placeholders": {}
},
"commandHint_markasdm": "Mark as direct message room",
"commandHint_markasgroup": "Mark as group",
"commandHint_ban": "Ban the given user from this room",
"@commandHint_ban": {
"type": "text",

View File

@ -40,6 +40,10 @@ String commandHint(L10n l10n, String command) {
return l10n.commandHint_send;
case "unban":
return l10n.commandHint_unban;
case 'markasdm':
return l10n.commandHint_markasdm;
case 'markasgroup':
return l10n.commandHint_markasgroup;
default:
return "";
}