Change submit button text to say 'post' instead of 'link'

This commit is contained in:
Chad Birch
2013-01-28 14:19:43 -08:00
parent 768a8cb743
commit 0b936e998d
2 changed files with 2 additions and 2 deletions

View File

@@ -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
}

View File

@@ -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"),