diff options
author | 2024-02-04 12:51:04 -0800 | |
---|---|---|
committer | 2024-02-04 13:12:54 -0800 | |
commit | f203326a299a985026e263dc2b8da861904cfd5c (patch) | |
tree | 7df05a4ade6041a4a7081f7d275f7b1ed30c1c19 /internal/template/templates/views/feed_entries.html | |
parent | 8367413e84b88a96711b607181b5d1ef88c37233 (diff) | |
download | v2-f203326a299a985026e263dc2b8da861904cfd5c.tar.gz v2-f203326a299a985026e263dc2b8da861904cfd5c.tar.zst v2-f203326a299a985026e263dc2b8da861904cfd5c.zip |
Improve translation of hidden aria elements
Diffstat (limited to 'internal/template/templates/views/feed_entries.html')
-rw-r--r-- | internal/template/templates/views/feed_entries.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/template/templates/views/feed_entries.html b/internal/template/templates/views/feed_entries.html index 339e7eef..9235ac60 100644 --- a/internal/template/templates/views/feed_entries.html +++ b/internal/template/templates/views/feed_entries.html @@ -8,9 +8,9 @@ </h1> <span class="sr-only"> {{ if .showOnlyUnreadEntries }} - {{ t "page.feeds.unread_counter" }}: {{ .total }} + {{ plural "page.unread_entry_count" .total .total }} {{ else }} - {{ t "page.feeds.read_counter" }}: {{ .total }} + {{ plural "page.total_entry_count" .total .total }} {{ end }} </span> <nav aria-label="{{ .feed.Title }} {{ t "menu.title" }}"> @@ -118,7 +118,7 @@ <span class="category"> <a href="{{ route "categoryEntries" "categoryID" .Feed.Category.ID }}" - aria-label="{{ t "page.feeds.category" }}: {{ .Feed.Category.Title }}" + aria-label="{{ t "page.category_label" .Feed.Category.Title }}" > {{ .Feed.Category.Title }} </a> |