8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this line: display_entries: "显示 %{entry_name} %{first} - %{last} 共%{total} 页"
should be: display_entries: "显示 %{entry_name} %{first} - %{last} 共%{total}"
that is total count , not total page.
The text was updated successfully, but these errors were encountered:
Pull requests welcome!
On 10 Aug 2015, at 03:43, Tao Wang notifications@github.com wrote: this line: display_entries: "显示 %{entry_name} %{first} - %{last} 共%{total} 页" should be: display_entries: "显示 %{entry_name} %{first} - %{last} 共%{total}" that is total count , not total page. — Reply to this email directly or view it on GitHub #23.
On 10 Aug 2015, at 03:43, Tao Wang notifications@github.com wrote:
— Reply to this email directly or view it on GitHub #23.
Sorry, something went wrong.
@moonavw The %{entry_name} will be appending with 's'. It generates something like "显示 订单s 1-20 共30"
So the %{entry_name} should be removed too. Here is my version:
%{entry_name}
helpers: page_entries_info: more_pages: display_entries: "显示 <b>%{first} - %{last}</b>条 共<b>%{total}</b> 条记录" one_page: display_entries: "显示 <b>所有 %{count}</b> 条记录"
@lingceng indeed! agree!
No branches or pull requests
this line:
display_entries: "显示 %{entry_name} %{first} - %{last} 共%{total} 页"
should be:
display_entries: "显示 %{entry_name} %{first} - %{last} 共%{total}"
that is total count , not total page.
The text was updated successfully, but these errors were encountered: