mysociety/alaveteli

View on GitHub
app/helpers/pagination_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
##
# Helper to translate (via gettext) the strings provided by will_paginate.
#
module PaginationHelper
  def will_paginate_translate(key, options = {})
    case key
    when :previous_label then _("← Previous")
    when :next_label then _("Next →")
    when :page_gap then "…"
    when :container_aria_label then _("Pagination")
    when :page_aria_label then _("Page {{page}}", options)
    else super
    end
  end
end