diff --git a/pkg/i18n/dutch.go b/pkg/i18n/dutch.go index f63b83477..8119725f0 100644 --- a/pkg/i18n/dutch.go +++ b/pkg/i18n/dutch.go @@ -169,6 +169,12 @@ func addDutch(i18nObject *i18n.Bundle) error { }, &i18n.Message{ ID: "ForceDeleteBranchMessage", Other: "Weet je zeker dat je branch {{.selectedBranchName}} geforceerd wil verwijderen?", + }, &i18n.Message{ + ID: "rebaseBranch", + Other: "rebase branch", + }, &i18n.Message{ + ID: "CantRebaseOntoSelf", + Other: "It is not possible to rebase the branch onto itself!", }, &i18n.Message{ ID: "CantMergeBranchIntoItself", Other: "Je kan niet een branch in zichzelf mergen", diff --git a/pkg/i18n/english.go b/pkg/i18n/english.go index 9ff671476..8847cde7e 100644 --- a/pkg/i18n/english.go +++ b/pkg/i18n/english.go @@ -177,6 +177,12 @@ func addEnglish(i18nObject *i18n.Bundle) error { }, &i18n.Message{ ID: "ForceDeleteBranchMessage", Other: "{{.selectedBranchName}} is not fully merged. Are you sure you want to delete it?", + }, &i18n.Message{ + ID: "rebaseBranch", + Other: "rebase branch", + }, &i18n.Message{ + ID: "CantRebaseOntoSelf", + Other: "It is not possible to rebase the branch onto itself!", }, &i18n.Message{ ID: "CantMergeBranchIntoItself", Other: "You cannot merge a branch into itself", diff --git a/pkg/i18n/polish.go b/pkg/i18n/polish.go index 52e110b37..3bc875ce4 100644 --- a/pkg/i18n/polish.go +++ b/pkg/i18n/polish.go @@ -158,6 +158,12 @@ func addPolish(i18nObject *i18n.Bundle) error { }, &i18n.Message{ ID: "ForceDeleteBranchMessage", Other: "Na pewno wymusić usunięcie gałęzi {{.selectedBranchName}}?", + }, &i18n.Message{ + ID: "rebaseBranch", + Other: "rebase branch", + }, &i18n.Message{ + ID: "CantRebaseOntoSelf", + Other: "It is not possible to rebase the branch onto itself!", }, &i18n.Message{ ID: "CantMergeBranchIntoItself", Other: "Nie możesz scalić gałęzi do samej siebie",