Files
nairobi/app/helpers/comments_helper.rb
2015-09-02 17:22:21 +02:00

11 lines
303 B
Ruby

module CommentsHelper
def comment_link_text(parent_id)
parent_id.present? ? t("comments_helper.reply_link") : t("comments_helper.comment_link")
end
def comment_button_text(parent_id)
parent_id.present? ? t("comments_helper.reply_button") : t("comments_helper.comment_button")
end
end