forked from GitHub/dbot
commit
32a78a7872
@ -69,7 +69,7 @@ var reddit = function(dbot) {
|
|||||||
'up': info.ups,
|
'up': info.ups,
|
||||||
'down': info.downs
|
'down': info.downs
|
||||||
});
|
});
|
||||||
if(info.over_18) infoString += ' [NSFW]';
|
if(info.over_18) infoString += " " + dbot.t("nsfw");
|
||||||
event.reply(infoString);
|
event.reply(infoString);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -85,7 +85,7 @@ var reddit = function(dbot) {
|
|||||||
'down': info.downs,
|
'down': info.downs,
|
||||||
'url': this.ApiRoot + matches[4]
|
'url': this.ApiRoot + matches[4]
|
||||||
});
|
});
|
||||||
if(info.over_18) infoString += ' [NSFW]';
|
if(info.over_18) infoString += " " + dbot.t("nsfw");
|
||||||
event.reply(infoString);
|
event.reply(infoString);
|
||||||
}
|
}
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
@ -97,7 +97,7 @@ var reddit = function(dbot) {
|
|||||||
'subscribers': info.subscribers,
|
'subscribers': info.subscribers,
|
||||||
'active': info.accounts_active
|
'active': info.accounts_active
|
||||||
});
|
});
|
||||||
if(info.over18) infoString += ' [NSFW]';
|
if(info.over18) infoString += dbot.t("nsfw");
|
||||||
event.reply(infoString);
|
event.reply(infoString);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -3,9 +3,12 @@
|
|||||||
"en": "[{display_name} has {subscribers} subscribers ({active} active)]"
|
"en": "[{display_name} has {subscribers} subscribers ({active} active)]"
|
||||||
},
|
},
|
||||||
"about_post": {
|
"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": {
|
"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]"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user