From 0b936e998d7cdedae572c18d2aca62ea4a104c0f Mon Sep 17 00:00:00 2001 From: Chad Birch Date: Mon, 28 Jan 2013 14:19:43 -0800 Subject: [PATCH] Change submit button text to say 'post' instead of 'link' --- r2/r2/lib/pages/pages.py | 2 +- r2/r2/lib/strings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/r2/r2/lib/pages/pages.py b/r2/r2/lib/pages/pages.py index 2adec4158..1963cfac4 100755 --- a/r2/r2/lib/pages/pages.py +++ b/r2/r2/lib/pages/pages.py @@ -345,7 +345,7 @@ class Reddit(Templated): user_banned = c.user_is_loggedin and c.site.is_banned(c.user) if self.submit_box and (c.user_is_loggedin or not g.read_only_mode) and not user_banned: kwargs = { - "title": _("Submit a link"), + "title": _("Submit a post"), "css_class": "submit", "show_cover": True } diff --git a/r2/r2/lib/strings.py b/r2/r2/lib/strings.py index 9b6b2ebfd..b35a0c2d2 100644 --- a/r2/r2/lib/strings.py +++ b/r2/r2/lib/strings.py @@ -110,7 +110,7 @@ string_dict = dict( invalid_property_list = _('invalid CSS property list "%(proplist)s"'), unknown_rule_type = _('unknown CSS rule type "%(ruletype)s"') ), - submit_box_text = _('to anything interesting: news article, blog entry, video, picture...'), + submit_box_text = _('for anything interesting: news, article, blog entry, video, picture, story, question...'), submit_box_restricted_text = _('submission in this subreddit is restricted to approved submitters.'), submit_box_archived_text = _('this subreddit is archived and no longer accepting submissions.'), permalink_title = _("%(author)s comments on %(title)s"),