lets see how all this markdown in the title looks. Attempt to fix #2395
This commit is contained in:
parent
aed413b463
commit
e1edef9ff1
3 changed files with 30 additions and 0 deletions
19
app/helpers/posts_helper.rb
Normal file
19
app/helpers/posts_helper.rb
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
# Copyright (c) 2012, Diaspora Inc. This file is
|
||||||
|
# licensed under the Affero General Public License version 3 or later. See
|
||||||
|
# the COPYRIGHT file.
|
||||||
|
|
||||||
|
module PostsHelper
|
||||||
|
def post_page_title(post)
|
||||||
|
if post.is_a?(Photo)
|
||||||
|
I18n.t "posts.show.photos_by", :count => 1, :author => post.status_message.author.name
|
||||||
|
elsif post.is_a?(Reshare)
|
||||||
|
I18n.t "posts.show.reshare_by", :author => post.author.name
|
||||||
|
else
|
||||||
|
if post.text.present?
|
||||||
|
truncate(post.text(:plain_text => true), :length => 20)
|
||||||
|
elsif post.photos.present?
|
||||||
|
I18n.t "posts.show.photos_by", :count => post.photos.size, :author => post.author.name
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
@ -2,6 +2,9 @@
|
||||||
-# licensed under the Affero General Public License version 3 or later. See
|
-# licensed under the Affero General Public License version 3 or later. See
|
||||||
-# the COPYRIGHT file.
|
-# the COPYRIGHT file.
|
||||||
|
|
||||||
|
- content_for :page_title do
|
||||||
|
= post_page_title @post
|
||||||
|
|
||||||
.span-20.append-2.prepend-2.last
|
.span-20.append-2.prepend-2.last
|
||||||
|
|
||||||
#main_stream.stream.status_message_show
|
#main_stream.stream.status_message_show
|
||||||
|
|
|
||||||
|
|
@ -614,6 +614,14 @@ en:
|
||||||
destroy: "Delete"
|
destroy: "Delete"
|
||||||
permalink: "permalink"
|
permalink: "permalink"
|
||||||
not_found: "Sorry, we couldn't find that post."
|
not_found: "Sorry, we couldn't find that post."
|
||||||
|
photos_by:
|
||||||
|
zero: "No photos by %{author}"
|
||||||
|
one: "One photo by %{author}"
|
||||||
|
two: "Two photos by %{author}"
|
||||||
|
few: "%{count} photos by %{author}"
|
||||||
|
many: "%{count} photos by %{author}"
|
||||||
|
other: "%{count} photos by %{author}"
|
||||||
|
reshare_by: "Reshare by %{author}"
|
||||||
|
|
||||||
share_visibilites:
|
share_visibilites:
|
||||||
update:
|
update:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue