Merge pull request #357 from zuzak/reddit

Colors in reddit module
This commit is contained in:
reality 2013-04-13 18:41:12 -07:00
commit 32a78a7872
2 changed files with 8 additions and 5 deletions

View File

@ -69,7 +69,7 @@ var reddit = function(dbot) {
'up': info.ups,
'down': info.downs
});
if(info.over_18) infoString += ' [NSFW]';
if(info.over_18) infoString += " " + dbot.t("nsfw");
event.reply(infoString);
}
});
@ -85,7 +85,7 @@ var reddit = function(dbot) {
'down': info.downs,
'url': this.ApiRoot + matches[4]
});
if(info.over_18) infoString += ' [NSFW]';
if(info.over_18) infoString += " " + dbot.t("nsfw");
event.reply(infoString);
}
}.bind(this));
@ -97,7 +97,7 @@ var reddit = function(dbot) {
'subscribers': info.subscribers,
'active': info.accounts_active
});
if(info.over18) infoString += ' [NSFW]';
if(info.over18) infoString += dbot.t("nsfw");
event.reply(infoString);
}
});

View File

@ -3,9 +3,12 @@
"en": "[{display_name} has {subscribers} subscribers ({active} active)]"
},
"about_post": {
"en": "[Post by {poster} in {subreddit} - Comments: {comments}, Score: {score} ({up}|{down})] - {url}"
"en": "[Post by {poster} in {subreddit} — Comments: {comments}, Score: {score} (\u00039▲{up}\u0015|\u000312{down}▼\u0015)] — {url}"
},
"about_comment": {
"en": "[Comment by {poster} in {subreddit} - Score: {score} ({up}|{down})]"
"en": "[Comment by {poster} in {subreddit} — Score: {score} (\u00039▲{up}\u0015|\u000312{down}▼\u0015)]"
},
"nsfw": {
"en": "[NSFW]"
}
}