From 8fdc79956401157953a7dbe010cd999d7ca90c44 Mon Sep 17 00:00:00 2001 From: Eric Date: Sun, 14 Dec 2014 22:37:36 -0500 Subject: [PATCH] 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. --- r2/r2/lib/pages/pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r2/r2/lib/pages/pages.py b/r2/r2/lib/pages/pages.py index f89505324..38f2726ee 100644 --- a/r2/r2/lib/pages/pages.py +++ b/r2/r2/lib/pages/pages.py @@ -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) ))