1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-20 05:19:24 +02:00

can't go any further because of an error

This commit is contained in:
Mark Kopenga 2018-08-14 16:12:21 +02:00
parent 73a1682540
commit 883f436b0f
3 changed files with 6 additions and 6 deletions

View File

@ -51,7 +51,7 @@ func NewApp(config config.AppConfigurer) (*App, error) {
return nil, err
}
app.Tr, err = i18n.NewLocalizer()
app.Tr, err = i18n.NewLocalizer(app.Log)
if err != nil {
return nil, err
}

View File

@ -196,7 +196,7 @@ func (gui *Gui) handleFileSelect(g *gocui.Gui, v *gocui.View) error {
func (gui *Gui) handleCommitPress(g *gocui.Gui, filesView *gocui.View) error {
if len(gui.stagedFiles()) == 0 && !gui.State.HasMergeConflicts {
return gui.createErrorPanel(g, "There are no staged files to commit")
return gui.createErrorPanel(g, tr.SLocalize("NoStagedFilesCommit", "There are no staged files to commit"))
}
commitMessageView := gui.getCommitMessageView(g)
g.Update(func(g *gocui.Gui) error {

View File

@ -6,7 +6,7 @@ import (
)
// addDutch will add all dutch translations
func addDutch(i18nObject *i18n.Bundle) *i18n.Bundle {
func addDutch(i18nObject *i18n.Bundle) {
// add the translations
i18nObject.AddMessages(language.Dutch,
@ -91,9 +91,9 @@ func addDutch(i18nObject *i18n.Bundle) *i18n.Bundle {
}, &i18n.Message{
ID: "CantIgnoreTrackFiles",
Other: "Kan gevolgde bestanden niet negeren",
}, &i18n.Message{
ID: "NoStagedFilesCommit",
Other: "Er zijn geen staged bestanden om te commiten",
},
)
// return the new i18nObject
return i18nObject
}