try at fixing a translation

This commit is contained in:
MrZYX 2010-11-26 18:33:52 +01:00
parent 8636f5d1d9
commit 6e5b097f81

View file

@ -6,9 +6,9 @@ module StreamHelper
def comment_toggle(count)
if count > 0
link_to "#{t('.hide_comments')} (#{count})", '#', :class => "show_post_comments"
link_to "#{t('stream_helper.hide_comments')} (#{count})", '#', :class => "show_post_comments"
else
link_to "#{t('.show_comments')} (#{count})", '#', :class => "show_post_comments"
link_to "#{t('stream_helper.show_comments')} (#{count})", '#', :class => "show_post_comments"
end
end