From c09114a6704657fff3ae175d318867da0f4ab2eb Mon Sep 17 00:00:00 2001
From: JP Hastings-Spital
Date: Sun, 12 May 2024 22:40:41 +0100
Subject: [PATCH] Fix reading time pluralisation
---
i18n/en.toml | 4 ++--
layouts/_default/single.html | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/i18n/en.toml b/i18n/en.toml
index 03c04445..3a84ef31 100644
--- a/i18n/en.toml
+++ b/i18n/en.toml
@@ -25,8 +25,8 @@ other = "Oops, page not found…"
# posts/single.html
#
[readingTime]
-one = "One minute"
-other = "{{ .Count }} minutes"
+one = "One minute's read"
+other = "{{ .Count }} minutes' read"
[tableOfContents]
other = "Table of Contents"
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index c9eba624..539a0f73 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -34,7 +34,7 @@
- {{ i18n "readingTime" .Page.ReadingTime }} read
+ {{ i18n "readingTime" .Page.ReadingTime }}