// Code generated by go generate; DO NOT EDIT.
// 2018-03-01 23:04:58.998374277 -0800 PST m=+0.022158179
package template
var templateViewsMap = map[string]string{
"about": `{{ define "title"}}{{ t "About" }}{{ end }}
{{ define "content"}}
{{ t "Version" }}
{{ t "Version:" }} {{ .version }}
{{ t "Build Date:" }} {{ .build_date }}
{{ t "Authors" }}
{{ t "Author:" }} Frédéric Guillot
{{ t "License:" }} Apache 2.0
{{ end }}
`,
"add_subscription": `{{ define "title"}}{{ t "New Subscription" }}{{ end }}
{{ define "content"}}
{{ if not .categories }}
{{ t "There is no category. You must have at least one category." }}
{{ else }}
{{ end }}
{{ end }}
`,
"categories": `{{ define "title"}}{{ t "Categories" }} ({{ .total }}){{ end }}
{{ define "content"}}
{{ if not .categories }}
{{ t "There is no category." }}
{{ else }}
{{ range .categories }}
{{ end }}
{{ end }}
{{ end }}
`,
"category_entries": `{{ define "title"}}{{ .category.Title }} ({{ .total }}){{ end }}
{{ define "content"}}
{{ if not .entries }}
{{ t "There is no article in this category." }}
{{ else }}
{{ range .entries }}
{{ template "item_meta" dict "user" $.user "entry" . }}
{{ end }}
{{ template "pagination" .pagination }}
{{ end }}
{{ end }}
`,
"choose_subscription": `{{ define "title"}}{{ t "Choose a Subscription" }}{{ end }}
{{ define "content"}}
{{ end }}
`,
"create_category": `{{ define "title"}}{{ t "New Category" }}{{ end }}
{{ define "content"}}
{{ end }}
`,
"create_user": `{{ define "title"}}{{ t "New User" }}{{ end }}
{{ define "content"}}
{{ end }}
`,
"edit_category": `{{ define "title"}}{{ t "Edit Category: %s" .category.Title }}{{ end }}
{{ define "content"}}
{{ end }}
`,
"edit_feed": `{{ define "title"}}{{ t "Edit Feed: %s" .feed.Title }}{{ end }}
{{ define "content"}}
{{ if not .categories }}
{{ t "There is no category!" }}
{{ else }}
{{ if ne .feed.ParsingErrorCount 0 }}
{{ t "Last Parsing Error" }}
{{ t .feed.ParsingErrorMsg }}
{{ end }}
{{ t "Last checked:" }} {{ elapsed $.user.Timezone .feed.CheckedAt }}
{{ t "ETag header:" }} {{ if .feed.EtagHeader }}{{ .feed.EtagHeader }}{{ else }}{{ t "None" }}{{ end }}
{{ t "LastModified header:" }} {{ if .feed.LastModifiedHeader }}{{ .feed.LastModifiedHeader }}{{ else }}{{ t "None" }}{{ end }}
{{ end }}
{{ end }}`,
"edit_user": `{{ define "title"}}{{ t "Edit user: %s" .selected_user.Username }}{{ end }}
{{ define "content"}}
{{ end }}
`,
"entry": `{{ define "title"}}{{ .entry.Title }}{{ end }}
{{ define "content"}}
{{ if gt (len .entry.Content) 120 }}
{{ end }}
{{ noescape (proxyFilter .entry.Content) }}
{{ if .entry.Enclosures }}
{{ t "Attachments" }}
{{ range .entry.Enclosures }}
{{ if hasPrefix .MimeType "audio/" }}
{{ else if hasPrefix .MimeType "video/" }}
{{ else if hasPrefix .MimeType "image/" }}
{{ end }}
{{ end }}
{{ end }}
{{ end }}
`,
"feed_entries": `{{ define "title"}}{{ .feed.Title }} ({{ .total }}){{ end }}
{{ define "content"}}
{{ if ne .feed.ParsingErrorCount 0 }}
{{ t "There is a problem with this feed" }}
{{ t .feed.ParsingErrorMsg }}
{{ else if not .entries }}
{{ t "There is no article for this feed." }}
{{ else }}
{{ range .entries }}
{{ template "item_meta" dict "user" $.user "entry" . }}
{{ end }}
{{ template "pagination" .pagination }}
{{ end }}
{{ end }}
`,
"feeds": `{{ define "title"}}{{ t "Feeds" }} ({{ .total }}){{ end }}
{{ define "content"}}
{{ if not .feeds }}
{{ t "You don't have any subscription." }}
{{ else }}
{{ range .feeds }}
{{ if ne .ParsingErrorCount 0 }}
{{ plural "plural.feed.error_count" .ParsingErrorCount .ParsingErrorCount }}
- {{ .ParsingErrorMsg }}
{{ end }}
{{ end }}
{{ end }}
{{ end }}
`,
"history": `{{ define "title"}}{{ t "History" }} ({{ .total }}){{ end }}
{{ define "content"}}
{{ if not .entries }}
{{ t "There is no history at the moment." }}
{{ else }}
{{ range .entries }}
{{ template "item_meta" dict "user" $.user "entry" . }}
{{ end }}
{{ template "pagination" .pagination }}
{{ end }}
{{ end }}
`,
"import": `{{ define "title"}}{{ t "Import" }}{{ end }}
{{ define "content"}}
{{ end }}
`,
"integrations": `{{ define "title"}}{{ t "Integrations" }}{{ end }}
{{ define "content"}}
{{ t "Miniflux API" }}
{{ t "API Endpoint" }} = {{ baseURL }}/v1/
{{ t "Username" }} = {{ .user.Username }}
{{ t "Password" }} = {{ t "Your account password" }}
{{ t "Bookmarklet" }}
{{ t "This special link allows you to subscribe to a website directly by using a bookmark in your web browser." }}
{{ t "Drag and drop this link to your bookmarks." }}
{{ end }}
`,
"login": `{{ define "title"}}{{ t "Sign In" }}{{ end }}
{{ define "content"}}
{{ end }}
`,
"sessions": `{{ define "title"}}{{ t "Sessions" }}{{ end }}
{{ define "content"}}
{{ t "Date" }}
{{ t "IP Address" }}
{{ t "User Agent" }}
{{ t "Actions" }}
{{ range .sessions }}
{{ elapsed $.user.Timezone .CreatedAt }}
{{ .IP }}
{{ .UserAgent }}
{{ if eq .Token $.currentSessionToken }}
{{ t "Current session" }}
{{ else }}
{{ t "Remove" }}
{{ end }}
{{ end }}
{{ end }}
`,
"settings": `{{ define "title"}}{{ t "Settings" }}{{ end }}
{{ define "content"}}
{{ if hasOAuth2Provider "google" }}
{{ end }}
{{ end }}
`,
"starred": `{{ define "title"}}{{ t "Favorites" }} ({{ .total }}){{ end }}
{{ define "content"}}
{{ if not .entries }}
{{ t "There is no bookmark at the moment." }}
{{ else }}
{{ range .entries }}
{{ template "item_meta" dict "user" $.user "entry" . }}
{{ end }}
{{ template "pagination" .pagination }}
{{ end }}
{{ end }}
`,
"unread": `{{ define "title"}}{{ t "Unread Items" }} {{ if gt .countUnread 0 }}({{ .countUnread }}){{ end }} {{ end }}
{{ define "content"}}
{{ if not .entries }}
{{ t "There is no unread article." }}
{{ else }}
{{ range .entries }}
{{ template "item_meta" dict "user" $.user "entry" . }}
{{ end }}
{{ template "pagination" .pagination }}
{{ end }}
{{ end }}`,
"users": `{{ define "title"}}{{ t "Users" }}{{ end }}
{{ define "content"}}
{{ if eq (len .users) 1 }}
{{ t "You are the only user." }}
{{ else }}
{{ t "Username" }}
{{ t "Administrator" }}
{{ t "Last Login" }}
{{ t "Actions" }}
{{ range .users }}
{{ if ne .ID $.user.ID }}
{{ .Username }}
{{ if eq .IsAdmin true }}{{ t "Yes" }}{{ else }}{{ t "No" }}{{ end }}
{{ if .LastLoginAt }}
{{ elapsed $.user.Timezone .LastLoginAt }}
{{ else }}
{{ t "Never" }}
{{ end }}
{{ t "Edit" }} ,
{{ t "Remove" }}
{{ end }}
{{ end }}
{{ end }}
{{ end }}
`,
}
var templateViewsMapChecksums = map[string]string{
"about": "ad2fb778fc73c39b733b3f81b13e5c7d689b041fadd24ee2d4577f545aa788ad",
"add_subscription": "053c920b0d7e109ea19dce6a448e304ce720db8633588ea04db16677f7209a7b",
"categories": "ca1280cd157bb527d4fc907da67b05a8347378f6dce965b9389d4bcdf3600a11",
"category_entries": "686132d71c52a665329670756ac09959d915f7bc3227970149c623059988b035",
"choose_subscription": "a325f9c976ca2b2dc148e25c8fef0cf6ccab0e04e86e604e7812bb18dc4cdde1",
"create_category": "2b82af5d2dcd67898dc5daa57a6461e6ff8121a6089b2a2a1be909f35e4a2275",
"create_user": "233764778c915754141a20429ec8db9bf80ef2d7704867a2d7232c1e9df233ae",
"edit_category": "cee720faadcec58289b707ad30af623d2ee66c1ce23a732965463250d7ff41c5",
"edit_feed": "d2c1c8486d7faf4ee58151ccf3e3c690e53bd6872050d291c5db8452a83c3d53",
"edit_user": "321e0a60cf3bf7441bff970f4920e4c5b7c1883f80ab1d1674f8137954b25033",
"entry": "27ea028515e79beb546f0b2792a3918c455fd877eea4c41d1a061f8e7b54a430",
"feed_entries": "420da786e827a77fecc8794207d158af3a30e489ca2b2019f48d5228919af4a7",
"feeds": "2a5abe37968ea34a0576dbef52341645cb1fc9562e351382fbf721491da6f4fa",
"history": "967bc95236269ab3a77455910aca1939f43f93171fe1af77eb3b1b4eac579e55",
"import": "73b5112e20bfd232bf73334544186ea419505936bc237d481517a8622901878f",
"integrations": "979193f39c2a3b43cec192aa119713cc9cbe2d5fdaedf8d2b3573c752823446c",
"login": "7d83c3067c02f1f6aafdd8816c7f97a4eb5a5a4bdaaaa4cc1e2fbb9c17ea65e8",
"sessions": "3fa79031dd883847eba92fbafe5f535fa3a4e1614bb610f20588b6f8fc8b3624",
"settings": "ea2505b9d0a6d6bb594dba87a92079de19baa6d494f0651693a7685489fb7de9",
"starred": "d006f5bcfca7abc7c68b6bb38fe25838acb81b65f960fbf06b97b259ba03b936",
"unread": "ad71a7bdd46c1d650efecbeeb37b7606a046027c15284c0712912b77397f90d4",
"users": "c6d91b0b29984b4cb3073bec6a2933cfb72981ec60f54b6c7aa05194f0e860bd",
}