chore: Add missing command hints
This commit is contained in:
parent
2104793ecd
commit
db747afb7b
2 changed files with 7 additions and 1 deletions
|
|
@ -2483,5 +2483,7 @@
|
||||||
"transparent": "Transparent",
|
"transparent": "Transparent",
|
||||||
"incomingMessages": "Incoming messages",
|
"incomingMessages": "Incoming messages",
|
||||||
"stickers": "Stickers",
|
"stickers": "Stickers",
|
||||||
"discover": "Discover"
|
"discover": "Discover",
|
||||||
|
"commandHint_ignore": "Ignore the given matrix ID",
|
||||||
|
"commandHint_unignore": "Unignore the given matrix ID"
|
||||||
}
|
}
|
||||||
|
|
@ -52,6 +52,10 @@ String commandHint(L10n l10n, String command) {
|
||||||
return l10n.commandHint_cuddle;
|
return l10n.commandHint_cuddle;
|
||||||
case 'sendraw':
|
case 'sendraw':
|
||||||
return l10n.commandHint_sendraw;
|
return l10n.commandHint_sendraw;
|
||||||
|
case 'ignore':
|
||||||
|
return l10n.commandHint_ignore;
|
||||||
|
case 'unignore':
|
||||||
|
return l10n.commandHint_unignore;
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue