docs, examples: Use TOML for i18n config files
authorAlbert Nigmatzianov <albertnigma@gmail.com>
Fri, 31 Mar 2017 13:04:52 +0000 (15:04 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 2 Apr 2017 16:43:32 +0000 (18:43 +0200)
Fix #3200

docs/content/content/multilingual.md
examples/multilingual/i18n/en.toml [new file with mode: 0644]
examples/multilingual/i18n/en.yaml [deleted file]
examples/multilingual/i18n/et.toml [new file with mode: 0644]
examples/multilingual/i18n/et.yaml [deleted file]

index bb0857743cef41e9a3b050e0d94d831fe5ded503..6dfb1d32d46d73a267ffc79ba5595d3c3ede5e27 100644 (file)
@@ -118,9 +118,9 @@ The above also uses the `i18n` func, see [Translation of strings](#translation-o
 
 ### Translation of strings
 
-Hugo uses [go-i18n](https://github.com/nicksnyder/go-i18n) to support string translations.  Follow the link to find tools to manage your translation workflows.
+Hugo uses [go-i18n](https://github.com/nicksnyder/go-i18n) to support string translations. Follow the link to find tools to manage your translation workflows.
 
-Translations are collected from the `themes/[name]/i18n/` folder (built into the theme), as well as translations present in `i18n/` at the root of your project.  In the `i18n`, the translations will be merged and take precedence over what is in the theme folder.  Language files should be named according to RFC 5646  with names such as `en-US.yaml`, `fr.yaml`, etc.
+Translations are collected from the `themes/[name]/i18n/` folder (built into the theme), as well as translations present in `i18n/` at the root of your project.  In the `i18n`, the translations will be merged and take precedence over what is in the theme folder.  Language files should be named according to RFC 5646  with names such as `en-US.toml`, `fr.toml`, etc.
 
 From within your templates, use the `i18n` function like this:
 
@@ -128,11 +128,11 @@ From within your templates, use the `i18n` function like this:
 {{ i18n "home" }}
 ```
 
-This uses a definition like this one in `i18n/en-US.yaml`:
+This uses a definition like this one in `i18n/en-US.toml`:
 
 ```
-- id: home
-  translation: "Home"
+[home]
+other = "Home"
 ```
 
 Often you will want to use to the page variables in the translations strings. To do that, pass on the "." context when calling `i18n`:
@@ -141,19 +141,18 @@ Often you will want to use to the page variables in the translations strings. To
 {{ i18n "wordCount" . }}
 ```
 
-This uses a definition like this one in `i18n/en-US.yaml`:
+This uses a definition like this one in `i18n/en-US.toml`:
 
 ```
-- id: wordCount
-  translation: "This article has {{ .WordCount }} words."
+[wordCount]
+other = "This article has {{ .WordCount }} words."
 ```
 An example of singular and plural form:
 
 ```
-- id: readingTime
-  translation: 
-    one: "One minute read"
-    other: "{{.Count}} minutes read"
+[readingTime]
+one = "One minute read"
+other = "{{.Count}} minutes read"
 ```
 And then in the template:
 
diff --git a/examples/multilingual/i18n/en.toml b/examples/multilingual/i18n/en.toml
new file mode 100644 (file)
index 0000000..30893b4
--- /dev/null
@@ -0,0 +1,2 @@
+[head_title]
+other = "Multilingual"
diff --git a/examples/multilingual/i18n/en.yaml b/examples/multilingual/i18n/en.yaml
deleted file mode 100644 (file)
index 55528cf..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-- id: head_title
-  translation: "Multilingual"
-
diff --git a/examples/multilingual/i18n/et.toml b/examples/multilingual/i18n/et.toml
new file mode 100644 (file)
index 0000000..a96203e
--- /dev/null
@@ -0,0 +1,2 @@
+[head_title]
+other = "Mitmekeelne"
diff --git a/examples/multilingual/i18n/et.yaml b/examples/multilingual/i18n/et.yaml
deleted file mode 100644 (file)
index 3402619..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-- id: head_title
-  translation: "Mitmekeelne"