diff options
author | stratmaster <stratmaster@users.noreply.github.com> | 2018-06-21 15:47:23 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@miniflux.net> | 2018-06-22 18:41:19 -0700 |
commit | cd77ebd7422b0988df9a5c017901a51507e79abd (patch) | |
tree | cb6dd04b96414c9344385dd6a1d7b316da68dc95 /template | |
parent | eb9d23c796b6c209543e15d815e46d85de382d60 (diff) |
Corrected hard coded strings
Diffstat (limited to 'template')
-rw-r--r-- | template/common.go | 8 | ||||
-rw-r--r-- | template/html/common/layout.html | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/template/common.go b/template/common.go index 15b144c..1c0f5e2 100644 --- a/template/common.go +++ b/template/common.go @@ -1,5 +1,5 @@ // Code generated by go generate; DO NOT EDIT. -// 2018-06-19 22:56:40.319198468 -0700 PDT m=+0.041010588 +// 2018-06-21 15:46:05.07724268 +0200 CEST m=+0.035251547 package template @@ -171,8 +171,8 @@ var templateCommonMap = map[string]string{ <p>{{ t "Items Navigation" }}</p> <ul> - <li>{{ t "Go to previous item" }} = <strong>p or j or ◄</strong></li> - <li>{{ t "Go to next item" }} = <strong>n or k or ►</strong></li> + <li>{{ t "Go to previous item" }} = <strong>p {{ t "or" }} j {{ t "or" }} ◄</strong></li> + <li>{{ t "Go to next item" }} = <strong>n {{ t "or" }} k {{ t "or" }} ►</strong></li> </ul> <p>{{ t "Pages Navigation" }}</p> @@ -224,6 +224,6 @@ var templateCommonMap = map[string]string{ var templateCommonMapChecksums = map[string]string{ "entry_pagination": "f1465fa70f585ae8043b200ec9de5bf437ffbb0c19fb7aefc015c3555614ee27", "item_meta": "6cff8ae243f19dac936e523867d2975f70aa749b2a461ae63f6ebbca94cf7419", - "layout": "2226ad243581d200b3d9499787a5ba38d6b2fff38d2ce86a40eb395a6efc17de", + "layout": "2cc3abf4d832b8368689d17091856ccae696f8a51b8fc29641107846f5d6661a", "pagination": "6ff462c2b2a53bc5448b651da017f40a39f1d4f16cef4b2f09784f0797286924", } diff --git a/template/html/common/layout.html b/template/html/common/layout.html index aa86938..d98de9d 100644 --- a/template/html/common/layout.html +++ b/template/html/common/layout.html @@ -96,8 +96,8 @@ <p>{{ t "Items Navigation" }}</p> <ul> - <li>{{ t "Go to previous item" }} = <strong>p or j or ◄</strong></li> - <li>{{ t "Go to next item" }} = <strong>n or k or ►</strong></li> + <li>{{ t "Go to previous item" }} = <strong>p {{ t "or" }} j {{ t "or" }} ◄</strong></li> + <li>{{ t "Go to next item" }} = <strong>n {{ t "or" }} k {{ t "or" }} ►</strong></li> </ul> <p>{{ t "Pages Navigation" }}</p> |