couple small fixes

This commit is contained in:
Jesse Duffield 2020-09-23 20:31:21 +10:00
parent 272a433f68
commit 941c9fff05
2 changed files with 4 additions and 4 deletions

View file

@ -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.

View file

@ -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",