3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00
This commit is contained in:
reality 2013-05-21 17:47:02 +00:00
commit 77eec1e07f
3 changed files with 8 additions and 4 deletions

View File

@ -1,5 +1,6 @@
{ {
"autoTitle": true, "autoTitle": true,
"dependencies": [ "command" ], "ignorable": true,
"ignorable": true "outputPrefix": "\u00034link\u000f",
"help": "http://github.com/reality/depressionbot/blob/master/modules/link/README.md"
} }

View File

@ -53,7 +53,7 @@ var link = function(dbot) {
} }
} }
this.api.getTitle(link, function(title) { 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 { try {
if (response.statusCode == "200") { if (response.statusCode == "200") {
data = JSON.parse(body); data = JSON.parse(body);
event.reply(dbot.t("xkcd",data)); event.reply(dbot.t("xkcd", data));
} else { } else {
event.reply(dbot.t("no-hits")); event.reply(dbot.t("no-hits"));
} }

View File

@ -11,5 +11,8 @@
"en": "No hits.", "en": "No hits.",
"na'vi": "Oel ke tsun rivum ayuoti.", "na'vi": "Oel ke tsun rivum ayuoti.",
"nl": "Geen resultaten." "nl": "Geen resultaten."
},
"link": {
"en": "{link}"
} }
} }