mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-25 00:21:04 +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
|
package gui
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"strconv"
|
"fmt"
|
||||||
|
|
||||||
"github.com/jesseduffield/gocui"
|
"github.com/jesseduffield/gocui"
|
||||||
)
|
)
|
||||||
|
|
@ -55,7 +55,7 @@ func (b *Binding) GetKey() string {
|
||||||
return "PgDn"
|
return "PgDn"
|
||||||
}
|
}
|
||||||
|
|
||||||
return strconv.Itoa(key)
|
return fmt.Sprintf("%c", key)
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetInitialKeybindings is a function.
|
// GetInitialKeybindings is a function.
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ func dutchSet() TranslationSet {
|
||||||
Confirm: "Bevestigen",
|
Confirm: "Bevestigen",
|
||||||
|
|
||||||
Return: "terug",
|
Return: "terug",
|
||||||
FocusMain: "focus hooft panneel",
|
FocusMain: "focus hoofdpaneel",
|
||||||
Navigate: "navigeer",
|
Navigate: "navigeer",
|
||||||
Execute: "voer uit",
|
Execute: "voer uit",
|
||||||
Close: "sluit",
|
Close: "sluit",
|
||||||
|
|
@ -56,7 +56,7 @@ func dutchSet() TranslationSet {
|
||||||
AnonymousReportingPrompt: "Zou je anonieme data rapportage willen aanzetten om lazydocker beter te kunnen maken?",
|
AnonymousReportingPrompt: "Zou je anonieme data rapportage willen aanzetten om lazydocker beter te kunnen maken?",
|
||||||
|
|
||||||
GlobalTitle: "Globaal",
|
GlobalTitle: "Globaal",
|
||||||
MainTitle: "Hooft",
|
MainTitle: "Hoofd",
|
||||||
ProjectTitle: "Project",
|
ProjectTitle: "Project",
|
||||||
ServicesTitle: "Diensten",
|
ServicesTitle: "Diensten",
|
||||||
ContainersTitle: "Containers",
|
ContainersTitle: "Containers",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue