@@ -575,6 +575,7 @@ type TranslationSet struct {
575575 SetAsUpstreamTooltip string
576576 SetUpstream string
577577 UnsetUpstream string
578+ RestoreUpstreamBranch string
578579 ViewDivergenceFromUpstream string
579580 ViewDivergenceFromBaseBranch string
580581 CouldNotDetermineBaseBranch string
@@ -646,6 +647,7 @@ type TranslationSet struct {
646647 ViewBranchUpstreamOptions string
647648 ViewBranchUpstreamOptionsTooltip string
648649 UpstreamNotSetError string
650+ UpstreamNotGoneError string
649651 UpstreamsNotSetError string
650652 NewGitFlowBranchPrompt string
651653 RenameBranchWarning string
@@ -1024,6 +1026,7 @@ type Actions struct {
10241026 RenameBranch string
10251027 CreateBranch string
10261028 FastForwardBranch string
1029+ RestoreUpstreamBranch string
10271030 AutoForwardBranches string
10281031 CherryPick string
10291032 CheckoutFile string
@@ -1740,6 +1743,7 @@ func EnglishTranslationSet() *TranslationSet {
17401743 SetAsUpstreamTooltip : "Set the selected remote branch as the upstream of the checked-out branch." ,
17411744 SetUpstream : "Set upstream of selected branch" ,
17421745 UnsetUpstream : "Unset upstream of selected branch" ,
1746+ RestoreUpstreamBranch : "Restore upstream branch" ,
17431747 ViewDivergenceFromUpstream : "View divergence from upstream" ,
17441748 ViewDivergenceFromBaseBranch : "View divergence from base branch ({{.baseBranch}})" ,
17451749 CouldNotDetermineBaseBranch : "Couldn't determine base branch" ,
@@ -1807,6 +1811,7 @@ func EnglishTranslationSet() *TranslationSet {
18071811 ViewBranchUpstreamOptions : "View upstream options" ,
18081812 ViewBranchUpstreamOptionsTooltip : "View options relating to the branch's upstream e.g. setting/unsetting the upstream and resetting to the upstream." ,
18091813 UpstreamNotSetError : "The selected branch has no upstream (or the upstream is not stored locally)" ,
1814+ UpstreamNotGoneError : "The selected branch's upstream still exists" ,
18101815 UpstreamsNotSetError : "Some of the selected branches have no upstream (or the upstream is not stored locally)" ,
18111816 Upstream : "Upstream" ,
18121817 NewBranchNamePrompt : "Enter new branch name for branch" ,
@@ -2241,6 +2246,7 @@ func EnglishTranslationSet() *TranslationSet {
22412246 MixedReset : "Mixed reset" ,
22422247 HardReset : "Hard reset" ,
22432248 FastForwardBranch : "Fast forward branch" ,
2249+ RestoreUpstreamBranch : "Restore upstream branch" ,
22442250 AutoForwardBranches : "Auto-forward branches" ,
22452251 Undo : "Undo" ,
22462252 Redo : "Redo" ,
0 commit comments