我在我的网站上包含了Mvc4.Paging包,现在我需要翻译像:
显示53的第51至53项。
或
第1页,共5页
这是分页代码:
@Html.PagedListPager(Model, page => Url.Action("Index", new { page,
searchBy = Request.QueryString["searchBy"],
search = Request.QueryString["search"]
} ),
new PagedListRenderOptions() { Display = PagedListDisplayMode.IfNeeded, DisplayPageCountAndCurrentLocation = true, DisplayItemSliceAndTotal = true }
)
我如何将其翻译为在我的MVC项目的View中显示?
答案 0 :(得分:1)
我在Link:上找到了关于格式化传呼机
的答案或者代码看起来像这样:
@Html.PagedListPager(Model, page => Url.Action("Index", new {
page,
searchBy = Request.QueryString["searchBy"],
search = Request.QueryString["search"]
} ),
new PagedListRenderOptions() {
LinkToFirstPageFormat = "<< Прва",
LinkToPreviousPageFormat = "< Претходна",
LinkToNextPageFormat = "Следна >",
LinkToLastPageFormat = "ÚПоследна >>",
Display = PagedListDisplayMode.IfNeeded,
DisplayPageCountAndCurrentLocation = true,
PageCountAndCurrentLocationFormat = "Страна {0} од {1}.",
DisplayItemSliceAndTotal = true,
ItemSliceAndTotalFormat = "Прикажувам од {0} до {1} од вкупно {2}." }
)