Override i18n to replace "taxonomy term" with "tag"

ref: https://gohugobrasil.netlify.app/content-management/multilingual/
This commit is contained in:
Jack Jackson 2022-01-19 08:20:45 -08:00
parent 89c813fb98
commit 23240c3367
23 changed files with 49 additions and 0 deletions

View File

@ -13,3 +13,8 @@ SectionPagesMenu = "main"
linkedin = "https://www.linkedin.com/in/jack-jackson-14a47441/" linkedin = "https://www.linkedin.com/in/jack-jackson-14a47441/"
custom_css = ['inlinespoiler.css'] custom_css = ['inlinespoiler.css']
show_reading_time = true show_reading_time = true
# That is, explicitly disabling `categories` taxonomy
# https://gohugo.io/content-management/taxonomies/#example-removing-default-taxonomies
[taxonomies]
tag = 'tags'

View File

@ -2,6 +2,8 @@
title: "Cheating at Word Games: Part 2" title: "Cheating at Word Games: Part 2"
date: 2021-12-29T08:53:32-08:00 date: 2021-12-29T08:53:32-08:00
math: true math: true
tags:
- wordle
--- ---
This is a sequel to my [previous post]({{< ref "/posts/cheating-at-word-games" >}}), where I laid out a Information Theoretical approach to algorithmically solving [Wordle](https://www.powerlanguage.co.uk/wordle/) puzzles. This is a sequel to my [previous post]({{< ref "/posts/cheating-at-word-games" >}}), where I laid out a Information Theoretical approach to algorithmically solving [Wordle](https://www.powerlanguage.co.uk/wordle/) puzzles.
<!--more--> <!--more-->

View File

@ -1,6 +1,8 @@
--- ---
title: "Cheating at Word Games: Part 3" title: "Cheating at Word Games: Part 3"
date: 2022-01-05T07:50:29-08:00 date: 2022-01-05T07:50:29-08:00
tags:
- wordle
--- ---
The third in a series on [Wordle]({{< ref "/posts/cheating-at-word-games" >}}). The third in a series on [Wordle]({{< ref "/posts/cheating-at-word-games" >}}).
<!--more--> <!--more-->

View File

@ -2,6 +2,8 @@
title: "Cheating at Word Games" title: "Cheating at Word Games"
date: 2021-12-28T07:18:24-08:00 date: 2021-12-28T07:18:24-08:00
math: true math: true
tags:
- wordle
--- ---
The other day, I saw the word game [Wordle](https://www.powerlanguage.co.uk/wordle/) going around on my Twitter feed. The game prompts you to guess a 5-letter word in a [Mastermind](https://en.wikipedia.org/wiki/Mastermind_(board_game))-like style - every letter in your guess is reported as being correct, as present (i.e. that letter occurs somewhere in the answer, but is misplaced), or as absent. The other day, I saw the word game [Wordle](https://www.powerlanguage.co.uk/wordle/) going around on my Twitter feed. The game prompts you to guess a 5-letter word in a [Mastermind](https://en.wikipedia.org/wiki/Mastermind_(board_game))-like style - every letter in your guess is reported as being correct, as present (i.e. that letter occurs somewhere in the answer, but is misplaced), or as absent.

View File

@ -1,6 +1,8 @@
--- ---
title: "Commenting Enabled" title: "Commenting Enabled"
date: 2021-12-30T06:31:00-08:00 date: 2021-12-30T06:31:00-08:00
tags:
- metaBlogging
--- ---
If everything has worked as expected, comments should now be enabled on this blog via Disqus. Don't make me regret that. Ensure that your comments pass through the [Three Gates](https://medium.com/zen-pills/the-3-gates-of-speech-305eaaa999c9) - they should be true, necessary, and kind. If you want to espouse homophobia, transphobia, racism, fascism, anti-vax, or anything similar, you are not welcome here. Black Lives Matter, Trans Rights Are Human Rights. If everything has worked as expected, comments should now be enabled on this blog via Disqus. Don't make me regret that. Ensure that your comments pass through the [Three Gates](https://medium.com/zen-pills/the-3-gates-of-speech-305eaaa999c9) - they should be true, necessary, and kind. If you want to espouse homophobia, transphobia, racism, fascism, anti-vax, or anything similar, you are not welcome here. Black Lives Matter, Trans Rights Are Human Rights.

View File

@ -1,6 +1,8 @@
--- ---
title: "My First Post" title: "My First Post"
date: 2021-12-04T11:21:26-08:00 date: 2021-12-04T11:21:26-08:00
tags:
- metaBlogging
--- ---
In true navel-gazey meta style, the first post on this blog is a description of how I set up the blog. In true navel-gazey meta style, the first post on this blog is a description of how I set up the blog.
<!--more--> <!--more-->

2
blog/i18n/bg.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/de.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/en.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/es.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/fr.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/hi.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/hu.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/it.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/nl.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/no.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/pt.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/ru.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/sv.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/tr.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/uk.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/zh-tw.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"

2
blog/i18n/zh.toml Normal file
View File

@ -0,0 +1,2 @@
[taxonomyPageList]
other = "Below you will find pages that utilize the tag “{{ .Title }}”"