Change SubredditSelector to use better wording

Currently, the subreddit selector when submitting a new link "/r/subreddit/submit" says "Popular Choices" and then lists the subreddits you are subscribed to.

I find this to be a big misnomer, as they are not popular choices at all, they are just a list of your subscribed subreddits. "Popular choices" implies that these are things other people have selected as well.

I know, it's super nitpicky, but I thought it might make more sense this way.
This commit is contained in:
Eric
2014-12-14 22:37:36 -05:00
committed by Brian Simpson
parent e0d5d77be9
commit 8fdc799564

View File

@@ -4736,7 +4736,7 @@ class SubredditSelector(Templated):
if include_user_subscriptions:
self.subreddits.append((
_('popular choices'),
_('your subscribed subreddits'),
Subreddit.user_subreddits(c.user, ids=False)
))