// Code generated by go generate; DO NOT EDIT.
// 2018-01-18 20:15:20.459420484 -0800 PST m=+0.038899269
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" . }}
{{ 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 .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" . }}
{{ 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" . }}
{{ end }}
{{ template "pagination" .pagination }}
{{ end }}
{{ end }}
`,
"import": `{{ define "title"}}{{ t "Import" }}{{ end }}
{{ define "content"}}
{{ end }}
`,
"integrations": `{{ define "title"}}{{ t "Integrations" }}{{ end }}
{{ define "content"}}
{{ 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 .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" . }}
{{ 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" . }}
{{ 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 .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": "a92bd528d1162e7af4972f7ad25feddf7ceb17164db593805caf3d363ff32aac",
"choose_subscription": "a325f9c976ca2b2dc148e25c8fef0cf6ccab0e04e86e604e7812bb18dc4cdde1",
"create_category": "2b82af5d2dcd67898dc5daa57a6461e6ff8121a6089b2a2a1be909f35e4a2275",
"create_user": "45e226df757126d5fe7c464e295e9a34f07952cfdb71e31e49839850d35af139",
"edit_category": "cee720faadcec58289b707ad30af623d2ee66c1ce23a732965463250d7ff41c5",
"edit_feed": "30ff6ee5526b8beb9b457526b77ede55938f53eb279b1acc719ce896359e2ed8",
"edit_user": "82d9749d76ddbd2352816d813c4b1f6d92f2222de678b4afe5821090246735c7",
"entry": "6b4405e0c8e4a7d31874659f8835f4e43e01dc3c20686091517ac750196dd70f",
"feed_entries": "3a7b4d942d9ac9da7df5c09950fbadaa0ff564696953c4f1c302d955696cc2ee",
"feeds": "65b0a47c4438810b9d51c60f3f3b2519690e56ff74029e6296c68626b83a470b",
"history": "d2476fd727e4f53428b5ed1f3f9423063583337ec8cfe1dd9c931fcb03852a20",
"import": "73b5112e20bfd232bf73334544186ea419505936bc237d481517a8622901878f",
"integrations": "3c14d7de904911aad7f3ebec6d1a20b50843287f58125c526e167f429f3d455d",
"login": "7d83c3067c02f1f6aafdd8816c7f97a4eb5a5a4bdaaaa4cc1e2fbb9c17ea65e8",
"sessions": "9a3609c52b071a280b85fd886f15d4b91c76bb0ab93a99ad132c695a216ac5cf",
"settings": "ea2505b9d0a6d6bb594dba87a92079de19baa6d494f0651693a7685489fb7de9",
"starred": "121b761ce218de472ebf70879c1aa2fe3b9ae8981c11f1ed53a355e34049b269",
"unread": "17335b21dc5fb79207da317a8e8a6685a122bc94c323662cbda7cfdbf73dd2f9",
"users": "44677e28bb5347799ed0020c90ec785aadec4b1454446d92411cfdaf6e32110b",
}