mirror of
https://github.com/reddit-archive/reddit.git
synced 2026-01-26 23:39:11 -05:00
Changed 'deceptive' to 'descriptive' and made compressed links a little more like regular links
This commit is contained in:
@@ -122,7 +122,7 @@ string_dict = dict(
|
||||
(in the middle of the toolbar, to the right of the comments button).
|
||||
"""),
|
||||
|
||||
submit_link = _("""You are submitting a link. The key to a successful submission is interesting content and a deceptive title."""),
|
||||
submit_link = _("""You are submitting a link. The key to a successful submission is interesting content and a descriptive title."""),
|
||||
submit_text = _("""You are submitting a text-based post. Speak your mind. A title is required, but expanding further in the text field is not. Beginning your title with "vote up if" is violation of intergalactic law."""),
|
||||
)
|
||||
|
||||
|
||||
@@ -26,10 +26,6 @@
|
||||
|
||||
<%def name="domain()">
|
||||
<span class="domain">
|
||||
<% from r2.models import FakeSubreddit, Default %>
|
||||
%if isinstance(c.site, FakeSubreddit) and thing.subreddit.name != "reddit.com":
|
||||
[${unsafe(self.subreddit())}]
|
||||
%endif
|
||||
 
|
||||
(<a href="/domain/${thing.domain}">${thing.domain}</a>)
|
||||
</span>
|
||||
@@ -46,15 +42,19 @@
|
||||
<%def name="tagline()">
|
||||
<%
|
||||
if thing.hide_score:
|
||||
taglinetext = _("posted %(when)s ago by %(author)s")
|
||||
taglinetext = _("submitted %(when)s ago by %(author)s")
|
||||
else:
|
||||
taglinetext = _("%(points)s posted %(when)s ago by %(author)s")
|
||||
taglinetext = _("%(points)s submitted %(when)s ago by %(author)s")
|
||||
taglinetext = taglinetext.replace(" ", " ")
|
||||
%>
|
||||
${unsafe(taglinetext % dict(points = capture(self.score, thing, likes=thing.likes),
|
||||
when = thing.timesince,
|
||||
author= self.author(friend = thing.friend)))}
|
||||
|
||||
<% from r2.models import FakeSubreddit, Default %>
|
||||
%if isinstance(c.site, FakeSubreddit):
|
||||
 ${unsafe( _( "to %(reddit)s") % dict(reddit=" " + self.subreddit())) }
|
||||
%endif
|
||||
|
||||
|
||||
</%def>
|
||||
|
||||
Reference in New Issue
Block a user