docs: Add singular/plural i18n example
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 12 Oct 2016 15:04:50 +0000 (17:04 +0200)
committerdigitalcraftsman <digitalcraftsman@protonmail.com>
Mon, 17 Oct 2016 15:01:38 +0000 (17:01 +0200)
docs/content/content/multilingual.md

index d3f69f2e60432448a6d827a14c7f11734a21f0af..0f3f4429580a54a5cf1c8afed754b60febd1c1e3 100644 (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