mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-23 20:49:26 +01:00
fix: add missing command localizations
This commit is contained in:
parent
0a36f95ea4
commit
db0d49269b
@ -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",
|
||||
|
@ -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 "";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user