diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index 09c02501..953ec8ef 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -1,7 +1,7 @@ package gui import ( - "strconv" + "fmt" "github.com/jesseduffield/gocui" ) @@ -55,7 +55,7 @@ func (b *Binding) GetKey() string { return "PgDn" } - return strconv.Itoa(key) + return fmt.Sprintf("%c", key) } // GetInitialKeybindings is a function. diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go index 5a2b5cdd..43984433 100644 --- a/pkg/i18n/dutch.go +++ b/pkg/i18n/dutch.go @@ -21,7 +21,7 @@ func dutchSet() TranslationSet { Confirm: "Bevestigen", Return: "terug", - FocusMain: "focus hooft panneel", + FocusMain: "focus hoofdpaneel", Navigate: "navigeer", Execute: "voer uit", Close: "sluit", @@ -56,7 +56,7 @@ func dutchSet() TranslationSet { AnonymousReportingPrompt: "Zou je anonieme data rapportage willen aanzetten om lazydocker beter te kunnen maken?", GlobalTitle: "Globaal", - MainTitle: "Hooft", + MainTitle: "Hoofd", ProjectTitle: "Project", ServicesTitle: "Diensten", ContainersTitle: "Containers",