Add languageDirection to language configuration
authorTan Yuanhong <leotan.yh@gmail.com>
Tue, 10 Mar 2020 09:10:58 +0000 (17:10 +0800)
committerGitHub <noreply@github.com>
Tue, 10 Mar 2020 09:10:58 +0000 (10:10 +0100)
Fixes #6550

docs/content/en/content-management/multilingual.md
langs/config.go
langs/language.go

index d3f71676a080ef12ede867414f4f200027678705..575393d471cb900e5d5340b73bc1e2f7286c3c47 100644 (file)
@@ -47,6 +47,11 @@ weight = 2
 linkedin = "https://linkedin.com/fr/whoever"
 [languages.fr.params.navigation]
 help  = "Aide"
+
+[languages.ar]
+title = "مدونتي"
+weight = 2
+languagedirection = "rtl"
 {{< /code-toggle >}}
 
 Anything not defined in a `languages` block will fall back to the global value for that key (e.g., `copyright` for the English `en` language). This also works for `params`, as demonstrated with `help` above: You will get the value `Aide` in French and `Help` in all the languages without this parameter set.
index 1842236506b310195f28f63cde081337929f9f72..08cd15009fcaea2f652a939372d32b65977fbf51 100644 (file)
@@ -185,6 +185,8 @@ func toSortedLanguages(cfg config.Provider, l map[string]interface{}) (Languages
                                language.Title = cast.ToString(v)
                        case "languagename":
                                language.LanguageName = cast.ToString(v)
+                       case "languagedirection":
+                               language.LanguageDirection = cast.ToString(v)
                        case "weight":
                                language.Weight = cast.ToInt(v)
                        case "contentdir":
index 036f5413ada4f6b1d7dec6ae19525515abebdf64..874bd30204e79fc25e119fe9d86d928e1d20b6f5 100644 (file)
@@ -41,10 +41,11 @@ var globalOnlySettings = map[string]bool{
 
 // Language manages specific-language configuration.
 type Language struct {
-       Lang         string
-       LanguageName string
-       Title        string
-       Weight       int
+       Lang              string
+       LanguageName      string
+       LanguageDirection string
+       Title             string
+       Weight            int
 
        Disabled bool