Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Nigmatzianov <albertnigma@gmail.com>2016-10-24 21:56:00 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-10-24 21:56:00 +0300
commitf21e2f25c99c547a2f35d209935f8f1c52fa2671 (patch)
treef2bb860213e88b0244c31144cfcd872665096f06 /tpl/template_i18n.go
parentd9f54a13c14f12ccc8af33e9dbd611c2cd113324 (diff)
all: Unify case of config variable names
All config variables starts with low-case and uses camelCase. If there is abbreviation at the beginning of the name, the whole abbreviation will be written in low-case. If there is abbreviation at the end of the name, the whole abbreviation will be written in upper-case. For example, rssURI.
Diffstat (limited to 'tpl/template_i18n.go')
-rw-r--r--tpl/template_i18n.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/tpl/template_i18n.go b/tpl/template_i18n.go
index 080bfbd54..00cdd7877 100644
--- a/tpl/template_i18n.go
+++ b/tpl/template_i18n.go
@@ -44,14 +44,14 @@ func SetTranslateLang(language *helpers.Language) error {
translator.current = f
} else {
jww.WARN.Printf("Translation func for language %v not found, use default.", language.Lang)
- translator.current = translator.translateFuncs[viper.GetString("DefaultContentLanguage")]
+ translator.current = translator.translateFuncs[viper.GetString("defaultContentLanguage")]
}
return nil
}
func SetI18nTfuncs(bndl *bundle.Bundle) {
translator = &translate{translateFuncs: make(map[string]bundle.TranslateFunc)}
- defaultContentLanguage := viper.GetString("DefaultContentLanguage")
+ defaultContentLanguage := viper.GetString("defaultContentLanguage")
var (
defaultT bundle.TranslateFunc
err error
@@ -76,7 +76,7 @@ func SetI18nTfuncs(bndl *bundle.Bundle) {
if Logi18nWarnings {
i18nWarningLogger.Printf("i18n|MISSING_TRANSLATION|%s|%s", currentLang, translationID)
}
- if viper.GetBool("EnableMissingTranslationPlaceholders") {
+ if viper.GetBool("enableMissingTranslationPlaceholders") {
return fmt.Sprintf("[i18n] %s", translationID)
}
if defaultT != nil {