有谁知道为什么条目名称没有改变我想要的东西?
<div class="digg_pagination">
<div class="page_info">
<%= page_entries_info @user_prices, :entry_name => 'Price', :plural_name => 'Prices' %>
</div>
<%= will_paginate @user_prices, :container => false %>
</div>
我已经尝试删除:plural_name
选项,但这也不起作用。可能是什么问题?
答案 0 :(得分:11)
某些时候:entry_name
中的page_entries_info
选项已更改为:model
。
所以你现在可以做到(至少在3.0.2中):
<%= page_entries_info @user_prices, :model => 'Price' %>
答案 1 :(得分:2)
看起来它只是一个将paginate的错误所以我只是进入了翻译文件并执行了以下操作:
<强>配置/ en.yml 强>
en:
activerecord:
models:
user_price:
zero: Prices
one: Price
few: Prices
other: Prices