The problem is found in breadcrumbs, if you use only one language works correctly.
I modified the file /layouts/partials/breadcrumbs.html with the code I attach.
{{- if (.Param "ShowBreadCrumbs") -}}
<div class="breadcrumbs">
{{- range .Ancestors.Reverse }}
<a href="{{ .RelPermalink }}">{{ if .IsHome }}{{ i18n "home" }}{{ else }}{{ print " » " | safeHTML }}{{ .Title }}{{ end }}</a>
{{- end -}}
</div>
{{- end -}}
What you'd like to propose?
[solved] First problem, multilingual breadcrumbs.
Example path of file sistem:
/content/articles
Configuration
hugo.yaml
The problem is found in breadcrumbs, if you use only one language works correctly. I modified the file
/layouts/partials/breadcrumbs.html
with the code I attach.[solved] Second problem, translation tag page.
Configuration
hugo.yaml
For tags page the problem is present for other languages, the data are not shown.
The solution:
I've changed row number 46
/layouts/_default/single.html
Code of Conduct