mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-28 23:02:05 -05:00
i18n: Fix golint issue
i18n/translationProvider.go:48:21: error strings should not be capitalized or end with punctuation or a newline
This commit is contained in:
parent
7231869ba8
commit
10dc87bf86
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ func (tp *TranslationProvider) Update(d *deps.Deps) error {
|
||||||
|
|
||||||
en := language.GetPluralSpec("en")
|
en := language.GetPluralSpec("en")
|
||||||
if en == nil {
|
if en == nil {
|
||||||
return errors.New("The English language has vanished like an old oak table!")
|
return errors.New("the English language has vanished like an old oak table")
|
||||||
}
|
}
|
||||||
var newLangs []string
|
var newLangs []string
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue