Add multilingual support in Hugo
authorAlexandre Bourget <alex@bourget.cc>
Sat, 14 May 2016 04:35:16 +0000 (00:35 -0400)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 6 Sep 2016 15:32:15 +0000 (18:32 +0300)
commitec33732fbe84f67c1164fb713d6cb738609f2e2e
treee4d361fda15e254617fb0fc2fdba275a269afc65
parentfaa3472fa299adb287d575e6d404d4ddcddbff4e
Add multilingual support in Hugo

Implements:
* support to render:
  * content/post/whatever.en.md to /en/2015/12/22/whatever/index.html
  * content/post/whatever.fr.md to /fr/2015/12/22/whatever/index.html
* gets enabled when `Multilingual:` is specified in config.
* support having language switchers in templates, that know
  where the translated page is (with .Page.Translations)
  (when you're on /en/about/, you can have a "Francais" link pointing to
   /fr/a-propos/)
  * all translations are in the `.Page.Translations` map, including the current one.
* easily tweak themes to support Multilingual mode
* renders in a single swift, no need for two config files.

Adds a couple of variables useful for multilingual sites

Adds documentation (content/multilingual.md)

Added language prefixing for all URL generation/permalinking see in the
code base.

Implements i18n. Leverages the great github.com/nicksnyder/go-i18n lib.. thanks Nick.
* Adds "i18n" and "T" template functions..
29 files changed:
commands/benchmark.go
commands/hugo.go
commands/list.go
commands/multilingual.go [new file with mode: 0644]
docs/content/content/multilingual.md [new file with mode: 0644]
docs/content/taxonomies/displaying.md
docs/content/taxonomies/ordering.md
docs/content/templates/functions.md
docs/content/templates/terms.md
docs/content/templates/variables.md
helpers/path.go
hugolib/embedded_shortcodes_test.go
hugolib/i18n.go [new file with mode: 0644]
hugolib/menu_test.go
hugolib/multilingual.go [new file with mode: 0644]
hugolib/page.go
hugolib/permalinks.go
hugolib/planner.go
hugolib/robotstxt_test.go
hugolib/rss_test.go
hugolib/site.go
hugolib/site_test.go
hugolib/site_url_test.go
hugolib/sitemap_test.go
hugolib/taxonomy_test.go
hugolib/translations.go [new file with mode: 0644]
source/file.go
tpl/template_funcs.go
tpl/template_i18n.go [new file with mode: 0644]