will_paginate

#will_paginat 中文化
application_helper增加以下代码
         def will_paginate(collection, options = {})
options.merge!({
:previous_label => t( 'previous'),
:next_label => (t 'next')
})
super(collection, options)
end
zh_CN
#will_paginat 中文化
  previous: '前一页'
  next: '下一页'

你可能感兴趣的:(NAT)