mirror of https://github.com/vector-im/riot-web
commit
661202839c
|
@ -155,6 +155,18 @@ function success(promise?: Promise<any>) {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export const Commands = [
|
export const Commands = [
|
||||||
|
new Command({
|
||||||
|
command: 'spoiler',
|
||||||
|
args: '<message>',
|
||||||
|
description: _td('Sends the given message as a spoiler'),
|
||||||
|
runFn: function(roomId, message) {
|
||||||
|
return success(ContentHelpers.makeHtmlMessage(
|
||||||
|
message,
|
||||||
|
`<span data-mx-spoiler>${message}</span>`,
|
||||||
|
));
|
||||||
|
},
|
||||||
|
category: CommandCategories.messages,
|
||||||
|
}),
|
||||||
new Command({
|
new Command({
|
||||||
command: 'shrug',
|
command: 'shrug',
|
||||||
args: '<message>',
|
args: '<message>',
|
||||||
|
|
|
@ -417,6 +417,7 @@
|
||||||
"Other": "Other",
|
"Other": "Other",
|
||||||
"Command error": "Command error",
|
"Command error": "Command error",
|
||||||
"Usage": "Usage",
|
"Usage": "Usage",
|
||||||
|
"Sends the given message as a spoiler": "Sends the given message as a spoiler",
|
||||||
"Prepends ¯\\_(ツ)_/¯ to a plain-text message": "Prepends ¯\\_(ツ)_/¯ to a plain-text message",
|
"Prepends ¯\\_(ツ)_/¯ to a plain-text message": "Prepends ¯\\_(ツ)_/¯ to a plain-text message",
|
||||||
"Prepends (╯°□°)╯︵ ┻━┻ to a plain-text message": "Prepends (╯°□°)╯︵ ┻━┻ to a plain-text message",
|
"Prepends (╯°□°)╯︵ ┻━┻ to a plain-text message": "Prepends (╯°□°)╯︵ ┻━┻ to a plain-text message",
|
||||||
"Prepends ┬──┬ ノ( ゜-゜ノ) to a plain-text message": "Prepends ┬──┬ ノ( ゜-゜ノ) to a plain-text message",
|
"Prepends ┬──┬ ノ( ゜-゜ノ) to a plain-text message": "Prepends ┬──┬ ノ( ゜-゜ノ) to a plain-text message",
|
||||||
|
|
Loading…
Reference in New Issue