aboutsummaryrefslogtreecommitdiff
path: root/i18n/en.toml
diff options
context:
space:
mode:
authorNicholas Johnson <>2026-09-05 00:00:00 +0000
committerNicholas Johnson <>2026-09-06 00:00:00 +0000
commitfe01d0e7afd53ef499567ff8bce4f2ea0b2355e6c9cac4a7ed2647fa749904d3 (patch)
tree8b69a80712cd9f0d89a6e28f46476a50f2e98889696b67b003881f2ebbf582c1 /i18n/en.toml
parent951f904bdd337aad611e12be2e4fc9cb180ce1f4cbbb3dae01274346fbe6d195 (diff)
downloadhugo-theme-journal-fe01d0e7afd53ef499567ff8bce4f2ea0b2355e6c9cac4a7ed2647fa749904d3.tar.gz
hugo-theme-journal-fe01d0e7afd53ef499567ff8bce4f2ea0b2355e6c9cac4a7ed2647fa749904d3.zip
Remove arbitrary chars inside i18n strings
ReadingTime is directly passed to the i18n fn, so the correct format for the i18n string is simply "{{ . }}", not "{{ .Count }}".
Diffstat (limited to 'i18n/en.toml')
-rw-r--r--i18n/en.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/i18n/en.toml b/i18n/en.toml
index 9f122c8..b82ce91 100644
--- a/i18n/en.toml
+++ b/i18n/en.toml
@@ -1,5 +1,5 @@
[readingTime]
- other = "{{ .Count }}-minute read"
+ other = "{{ . }}-minute read"
[returnHome]
other = "Return to homepage"