From e3dc5c5723ecff8ea6a7fc5e70555e27280223e6 Mon Sep 17 00:00:00 2001 From: Alex Shpak Date: Tue, 19 Nov 2019 23:56:45 +0100 Subject: [PATCH] #99, Move translations to separate content folders --- exampleSite/config.toml | 10 +++++++--- exampleSite/config.yaml | 10 +++++++--- .../{content/_index.cn.md => content.cn/_index.md} | 0 .../{content/_index.ru.md => content.ru/_index.md} | 0 4 files changed, 14 insertions(+), 6 deletions(-) rename exampleSite/{content/_index.cn.md => content.cn/_index.md} (100%) rename exampleSite/{content/_index.ru.md => content.ru/_index.md} (100%) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 27e1b13..eeaabea 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -13,20 +13,24 @@ enableGitInfo = true # pygmentsStyle = 'monokailight' pygmentsCodeFences = true -# Multilang config -defaultContentLanguage = 'en' - +# Multi-lingual mode config +# There are different options to translate files +# See https://gohugo.io/content-management/multilingual/#translation-by-filename +# And https://gohugo.io/content-management/multilingual/#translation-by-content-directory [languages] [languages.en] languageName = 'English' + contentDir = 'content' weight = 1 [languages.ru] languageName = 'Russian' + contentDir = 'content.ru' weight = 2 [languages.cn] languageName = 'Chinese' + contentDir = 'content.cn' weight = 3 [params] diff --git a/exampleSite/config.yaml b/exampleSite/config.yaml index 3d8dedc..90ab3f1 100644 --- a/exampleSite/config.yaml +++ b/exampleSite/config.yaml @@ -13,18 +13,22 @@ enableGitInfo: true # pygmentsStyle: monokailight pygmentsCodeFences: true -# Multilang config -defaultContentLanguage: en - +# Multi-lingual mode config +# There are different options to translate files +# See https://gohugo.io/content-management/multilingual/#translation-by-filename +# And https://gohugo.io/content-management/multilingual/#translation-by-content-directory languages: en: languageName: English + contentDir: content weight: 1 ru: languageName: Russian + contentDir: content.ru weight: 2 cn: languageName: Chinese + contentDir: content.cn weight: 3 params: diff --git a/exampleSite/content/_index.cn.md b/exampleSite/content.cn/_index.md similarity index 100% rename from exampleSite/content/_index.cn.md rename to exampleSite/content.cn/_index.md diff --git a/exampleSite/content/_index.ru.md b/exampleSite/content.ru/_index.md similarity index 100% rename from exampleSite/content/_index.ru.md rename to exampleSite/content.ru/_index.md