Add languageDirection to language configuration

Fixes #6550
This commit is contained in:
Tan Yuanhong
2020-03-10 17:10:58 +08:00
committed by GitHub
parent 5b4659fa0b
commit 5914f91b6c
3 changed files with 12 additions and 4 deletions

View 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