From c76b46c62acee479a0c7968275611aa472ee5891 Mon Sep 17 00:00:00 2001 From: Thorsten Date: Sat, 25 Jul 2020 23:14:10 +0200 Subject: [PATCH] Update pagination.html These strings are defined by humans and do not need to be humanized. Also humanize leads to wrong capitalization (only first letter is capitalized). --- layouts/partials/pagination.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/layouts/partials/pagination.html b/layouts/partials/pagination.html index b0f98da..c561c09 100644 --- a/layouts/partials/pagination.html +++ b/layouts/partials/pagination.html @@ -1,6 +1,6 @@ {{ if or ( .Paginator.HasPrev ) ( .Paginator.HasNext ) }} - {{ $toNewPostsMessage := i18n "toNewPosts" | humanize }} - {{ $toOldPostsMessage := i18n "toOldPosts" | humanize }} + {{ $toNewPostsMessage := i18n "toNewPosts" }} + {{ $toOldPostsMessage := i18n "toOldPosts" }} -{{ end }} \ No newline at end of file +{{ end }}