如何翻译Mvc4.Paging?

时间:2017-05-11 19:29:13

标签: c# asp.net-mvc asp.net-mvc-4 paging

我在我的网站上包含了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中显示?

1 个答案:

答案 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 = "&Uacute;Последна >>",
        Display = PagedListDisplayMode.IfNeeded,
        DisplayPageCountAndCurrentLocation = true,
        PageCountAndCurrentLocationFormat = "Страна {0} од {1}.",
        DisplayItemSliceAndTotal = true,
        ItemSliceAndTotalFormat = "Прикажувам од {0} до {1} од вкупно {2}." }
)