mirror of
https://github.com/reality/dbot.git
synced 2024-11-23 20:39:25 +01:00
prefix for link [#462]
This commit is contained in:
parent
36d40f65a3
commit
1f426fa722
@ -2,5 +2,6 @@
|
||||
"autoTitle": false,
|
||||
"dependencies": [ "command" ],
|
||||
"ignorable": true,
|
||||
"outputPrefix": "\u00034link\u000f"
|
||||
"help": "http://github.com/reality/depressionbot/blob/master/modules/link/README.md"
|
||||
}
|
||||
|
@ -53,7 +53,7 @@ var link = function(dbot) {
|
||||
}
|
||||
}
|
||||
this.api.getTitle(link, function(title) {
|
||||
event.reply(title);
|
||||
event.reply(dbot.t('link', { 'link': title} ));
|
||||
});
|
||||
},
|
||||
|
||||
@ -80,7 +80,7 @@ var link = function(dbot) {
|
||||
try {
|
||||
if (response.statusCode == "200") {
|
||||
data = JSON.parse(body);
|
||||
event.reply(dbot.t("xkcd",data));
|
||||
event.reply(dbot.t("xkcd", data));
|
||||
} else {
|
||||
event.reply(dbot.t("no-hits"));
|
||||
}
|
||||
|
@ -11,5 +11,8 @@
|
||||
"en": "No hits.",
|
||||
"na'vi": "Oel ke tsun rivum ayuoti.",
|
||||
"nl": "Geen resultaten."
|
||||
},
|
||||
"link": {
|
||||
"en": "{link}"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user