Hi there! I’m having troubles translating my taxonomy sections and terms, and having them correctly linked to each other. I’m using hugo 0.82, and I’m following the direction given in the documentation, with no succes…
What I’m trying to do is to have a section “/articles”, with a folder “/articles/all” inside where all my articles lives (each one in its bundle).
In my articles frontmatter, I have them associated to a taxonomy and one or more terms, as this:
articles/all/an-article/index.en.md:
---
title: An Article
articles:
- history
---
and, for example:
articles/all/an-article/index.it.md
---
title: Un Articolo
articles:
- history
---
Then, I have an _index.en.md and _index.it.md inside /content/articles:
---
title: Articles
url: /en/articles
translationKey: articles
---
and
---
title: Articoli
url: /it/articoli
translationKey: articles
---
and the same for each term, for example, for “history”:
---
title: history
url: /en/articles/history
translationKey: history
---
and
---
title: storia
url: /it/articoli/storia
translationKey: history
---
When I browse to /en/articles, it shows my “history” tag, and if I click in it, it shows me the articles which belong to this term. However, if I switch to, say the Italian translation - using an hugo partials, which work perfectly in all other cases, it do not give me the list of the articles. But, if I go to /it/articles/storia it works…
Any clue?