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 9d9afb8 commit 317b3deCopy full SHA for 317b3de
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