mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-21 23:01:03 +00:00
Merge pull request #238 from jesseduffield/more-correction
couple small fixes
This commit is contained in:
commit
d4e2fbe6a3
2 changed files with 4 additions and 4 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue