mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-19 10:39:26 +01:00
fix: add missing command localizations
This commit is contained in:
parent
0a36f95ea4
commit
db0d49269b
@ -487,6 +487,8 @@
|
|||||||
"type": "text",
|
"type": "text",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
|
"commandHint_markasdm": "Mark as direct message room",
|
||||||
|
"commandHint_markasgroup": "Mark as group",
|
||||||
"commandHint_ban": "Ban the given user from this room",
|
"commandHint_ban": "Ban the given user from this room",
|
||||||
"@commandHint_ban": {
|
"@commandHint_ban": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
@ -40,6 +40,10 @@ String commandHint(L10n l10n, String command) {
|
|||||||
return l10n.commandHint_send;
|
return l10n.commandHint_send;
|
||||||
case "unban":
|
case "unban":
|
||||||
return l10n.commandHint_unban;
|
return l10n.commandHint_unban;
|
||||||
|
case 'markasdm':
|
||||||
|
return l10n.commandHint_markasdm;
|
||||||
|
case 'markasgroup':
|
||||||
|
return l10n.commandHint_markasgroup;
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user