Add /(un)ignore to autocomplete
Signed-off-by: Travis Ralston <travpc@gmail.com>pull/21833/head
parent
6e00f70320
commit
3c71898237
|
@ -94,6 +94,16 @@ const COMMANDS = [
|
|||
args: '<user-id> <device-id> <device-signing-key>',
|
||||
description: 'Verifies a user, device, and pubkey tuple',
|
||||
},
|
||||
{
|
||||
command: '/ignore',
|
||||
args: '<user-id>',
|
||||
description: 'Ignores a user, hiding their messages from you'
|
||||
},
|
||||
{
|
||||
command: '/unignore',
|
||||
args: '<user-id>',
|
||||
description: 'Stops ignoring a user, showing their messages going forward'
|
||||
},
|
||||
// Omitting `/markdown` as it only seems to apply to OldComposer
|
||||
];
|
||||
|
||||
|
|
|
@ -272,6 +272,8 @@
|
|||
"You are no longer ignoring %(userId)s": "You are no longer ignoring %(userId)s",
|
||||
"Unignored user": "Unignored user",
|
||||
"Ignored user": "Ignored user",
|
||||
"Stops ignoring a user, showing their messages going forward": "Stops ignoring a user, showing their messages going forward",
|
||||
"Ignores a user, hiding their messages from you": "Ignores a user, hiding their messages from you",
|
||||
"Last seen": "Last seen",
|
||||
"Leave room": "Leave room",
|
||||
"left and rejoined": "left and rejoined",
|
||||
|
|
|
@ -239,6 +239,8 @@
|
|||
"You are no longer ignoring %(userId)s": "You are no longer ignoring %(userId)s",
|
||||
"Unignored user": "Unignored user",
|
||||
"Ignored user": "Ignored user",
|
||||
"Stops ignoring a user, showing their messages going forward": "Stops ignoring a user, showing their messages going forward",
|
||||
"Ignores a user, hiding their messages from you": "Ignores a user, hiding their messages from you",
|
||||
"Leave room": "Leave room",
|
||||
"left and rejoined": "left and rejoined",
|
||||
"left": "left",
|
||||
|
|
Loading…
Reference in New Issue