Changed 'deceptive' to 'descriptive' and made compressed links a little more like regular links

This commit is contained in:
Mike
2009-06-23 10:49:55 -07:00
parent 2924836573
commit 891602ab95
2 changed files with 7 additions and 7 deletions

View File

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

View File

@@ -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
&#32;
(<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(" ", "&#32;")
%>
${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):
&#32;${unsafe( _( "to %(reddit)s") % dict(reddit="&#32;" + self.subreddit())) }
%endif
</%def>