diff --git a/i18n/de.toml b/i18n/de.toml
new file mode 100644
index 0000000..12d93bf
--- /dev/null
+++ b/i18n/de.toml
@@ -0,0 +1,17 @@
+[more]
+other = "Mehr"
+
+[allTitle]
+other = "Alle {{.Title }}"
+
+[recentTitle]
+other = "Neuste {{.Title }}"
+
+[readMore]
+other = "weiterlesen"
+
+[whatsInThis]
+other = "Was ist in dieser {{ .Type }}"
+
+[related]
+other = "Ähnliches"
diff --git a/i18n/en.toml b/i18n/en.toml
new file mode 100644
index 0000000..97100a4
--- /dev/null
+++ b/i18n/en.toml
@@ -0,0 +1,17 @@
+[more]
+other = "More"
+
+[allTitle]
+other = "All {{.Title }}"
+
+[recentTitle]
+other = "Recent {{.Title }}"
+
+[readMore]
+other = "read more"
+
+[whatsInThis]
+other = "What's in this {{ .Type }}"
+
+[related]
+other = "Related"
diff --git a/layouts/index.html b/layouts/index.html
index 8ff836d..bf1aa84 100755
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -16,7 +16,7 @@
{{/* Use $section_name to get the section title. Use "with" to only show it if it exists */}}
{{ with .Site.GetPage "section" $section_name }}
- {{$.Param "recent_copy" | default "Recent" }} {{ .Title }}
+ {{ i18n "recentTitle" . }}
{{ end }}
@@ -33,7 +33,7 @@
{{ if ge $section_count (add $n_posts 1) }}
- More
+ {{ i18n "more" }}
{{/* Now, range through the next four after the initial $n_posts items. Nest the requirements, "after" then "first" on the outside */}}
{{ range (first 4 (after $n_posts $section)) }}
@@ -45,7 +45,7 @@
{{/* As above, Use $section_name to get the section title, and URL. Use "with" to only show it if it exists */}}
{{ with .Site.GetPage "section" $section_name }}
- All {{.Title }}
+ {{ i18n "allTitle" . }}
{{ end }}
{{ end }}
diff --git a/layouts/partials/menu-contextual.html b/layouts/partials/menu-contextual.html
index 02fa3ee..93b3952 100644
--- a/layouts/partials/menu-contextual.html
+++ b/layouts/partials/menu-contextual.html
@@ -5,7 +5,7 @@
{{- if .Params.toc -}}
-
What's in this {{ humanize .Type }}
+
{{ i18n "whatsInThis" humanize .Type }}
{{ .TableOfContents }}
{{- end -}}
@@ -19,7 +19,7 @@
{{ with $related }}
-
Related
+
{{ i18n "related" }}
{{ range . }}
-
diff --git a/layouts/partials/summary-with-image.html b/layouts/partials/summary-with-image.html
index 68ddc04..9a9f137 100644
--- a/layouts/partials/summary-with-image.html
+++ b/layouts/partials/summary-with-image.html
@@ -20,7 +20,7 @@
{{ .Summary }}
- {{$.Param "read_more_copy" | default "read more" }}
+ {{ i18n "readMore" }}
{{/* TODO: add author
By {{ .Author }}
*/}}