Hi,
I’m working with/in multilingual mode and I’m trying to translate my taxonomies like so:
German taxonomy structure:
domain.xy/de/tags/some-german-tag
domain.xy/de/kategorie/some-german-category
English taxonomy structure:
domain.xy/en/tags/some-english-tag
domain.xy/en/category/some-english-category
Due to the fact that tags are both the same in german and english, this doesn’t give me a problem
with
[taxonomies] tags = "tags"
I simply don’t want mixed languages/wrong translations in my url permalink structure.
I’ve tried playing around with the config.toml
from:
[taxonomies]
tags = “tags”
categories = “category”
to things like:
[taxonomies.de]
tags = “tags”
categories = “kategorie”
[taxonomies.en]
tags = “tags”
categories = “category”
Yet, I haven’t been able to find anything about it since most of the discussions are spinning around the taxonomy terms itself, which is not my problem - I’m fine with different slug in different languages - I’m just looking to keep my permalink symetry.
In case anyone has a link to a discussion or point me in the right direction, that would be nice.
Thanks.