From b51598c54eefb8881c0e1b163ceca915120759d5 Mon Sep 17 00:00:00 2001
From: Oscar Najera <hi@oscarnajera.com>
Date: Sat, 28 Dec 2024 04:37:40 +0100
Subject: default translations in theme

---
 i18n/de.yml        |  2 ++
 i18n/en-shaw.yml   | 28 ++++++++++++++++++++++++++++
 i18n/en.yml        | 28 ++++++++++++++++++++++++++++
 layouts/index.html |  4 +++-
 4 files changed, 61 insertions(+), 1 deletion(-)
 create mode 100644 i18n/de.yml
 create mode 100644 i18n/en-shaw.yml
 create mode 100644 i18n/en.yml

diff --git a/i18n/de.yml b/i18n/de.yml
new file mode 100644
index 0000000..9aa20c8
--- /dev/null
+++ b/i18n/de.yml
@@ -0,0 +1,2 @@
+author_by: "Von"
+minute_read: "min Lesezeit"
diff --git a/i18n/en-shaw.yml b/i18n/en-shaw.yml
new file mode 100644
index 0000000..278709d
--- /dev/null
+++ b/i18n/en-shaw.yml
@@ -0,0 +1,28 @@
+# pluralizables
+category:
+  one: 𐑒𐑨𐑑𐑩𐑜𐑼𐑦
+  other: 𐑒𐑨𐑑𐑩𐑜𐑼𐑦𐑟
+post:
+  one: 𐑐𐑴𐑕𐑑
+  other: 𐑐𐑴𐑕𐑑𐑕
+project:
+  one: 𐑐𐑮𐑪𐑡𐑧𐑒𐑑
+  other: 𐑐𐑮𐑪𐑡𐑧𐑒𐑑𐑕
+tag:
+  one: 𐑑𐑨𐑜
+  other: 𐑑𐑨𐑜𐑟
+talk:
+  one: 𐑑𐑷𐑒
+  other: 𐑑𐑷𐑒𐑕
+
+# Rest
+next: 𐑯𐑧𐑒𐑕𐑑
+prev: 𐑐𐑮𐑰𐑝𐑾𐑕
+see_all: "𐑕𐑰 𐑷𐑤"
+about: 𐑩𐑚𐑬𐑑
+recent_pages: 𐑐𐑱𐑡𐑩𐑟 𐑮𐑰𐑕𐑩𐑯𐑑𐑤𐑦 𐑧𐑛𐑦𐑑𐑩𐑛
+_blank: " "
+translations: 𐑑𐑮𐑨𐑯𐑕𐑤𐑱𐑖𐑩𐑯𐑟
+author_by: 𐑚𐑲
+minute_read: "𐑥𐑰𐑯 𐑮𐑰𐑛"
+rss_follow: "𐑓𐑪𐑤𐑴 {{ .section }} 𐑳𐑐𐑛𐑱𐑑𐑕 𐑝𐑲𐑩 RSS 𐑓𐑰𐑛"
diff --git a/i18n/en.yml b/i18n/en.yml
new file mode 100644
index 0000000..fab158b
--- /dev/null
+++ b/i18n/en.yml
@@ -0,0 +1,28 @@
+# pluralizables
+category:
+  one: category
+  other: categories
+post:
+  one: post
+  other: posts
+project:
+  one: project
+  other: projects
+tag:
+  one: tag
+  other: tags
+talk:
+  one: talk
+  other: talks
+
+# Rest
+next: next
+prev: prev
+see_all: "see all"
+about: about
+recent_pages: Pages recently edited
+_blank: " "
+translations: translations
+author_by: By
+minute_read: "min read"
+rss_follow: "Follow {{ .section }} updates via RSS feed"
diff --git a/layouts/index.html b/layouts/index.html
index ef1d9e2..905bb07 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -17,7 +17,9 @@
         {{ end }}
         <div class="tc pa3">
           <i class="fas fa-angle-right"></i>
-          <a href="{{ .Type }}" class="f3 link near-black">{{ T "See all" }}</a>
+          <a href="{{ .Type }}" class="f3 link near-black"
+            >{{ T "see_all" | humanize }}</a
+          >
         </div>
       </div>
     </div>
-- 
cgit v1.2.3