docs: Add singular/plural i18n example

This commit is contained in:
Bjørn Erik Pedersen 2016-10-12 17:04:50 +02:00 committed by digitalcraftsman
parent e6f2426ef0
commit faa64abdc2

View file

@ -139,7 +139,19 @@ This uses a definition like this one in `i18n/en-US.yaml`:
- id: wordCount
translation: "This article has {{ .WordCount }} words."
```
An example of singular and plural form:
```
- id: readingTime
translation:
one: "One minute read"
other: "{{.Count}} minutes read"
```
And then in the template:
```
{{ i18n "readingTime" .ReadingTime }}
```
To track down missing translation strings, run Hugo with the `--i18n-warnings` flag:
```bash