This is about Translation of strings.
From go-i18n repository examples:
"person_unread_email_count_timeframe": {
"one": "{{.Person}} has {{.Count}} unread email in the past {{.Timeframe}}.",
"other": "{{.Person}} has {{.Count}} unread emails in the past {{.Timeframe}}."
},
Multiple variables is used here. But in Hugo, only .Count is available. I couldn’t find any way to pass multiple variables to i18n function. And whatever variable I pass, it is assigned to .Count (even if it’s a string, not a number).
Is there any way to pass multiple variable to i18n function?