We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bf0ca9 commit 199cb57Copy full SHA for 199cb57
internal/cli/configuration/locale.go
@@ -16,5 +16,8 @@
16
package configuration
17
18
func (s *Settings) Locale() string {
19
+ if locale, ok, err := s.GetStringOk("locale"); ok && err == nil {
20
+ return locale
21
+ }
22
return s.Defaults.GetString("locale")
23
}
0 commit comments