mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-30 23:57:43 +02:00 
			
		
		
		
	Rename texts to be consistent with our conventions
This commit is contained in:
		| @@ -397,22 +397,22 @@ func (self *MergeAndRebaseHelper) MergeRefIntoCheckedOutBranch(refName string) e | ||||
| 				), | ||||
| 			}, | ||||
| 			{ | ||||
| 				Label:   self.c.Tr.SquashMergeUncommittedTitle, | ||||
| 				Label:   self.c.Tr.SquashMergeUncommitted, | ||||
| 				OnPress: self.SquashMergeUncommitted(refName), | ||||
| 				Key:     's', | ||||
| 				Tooltip: utils.ResolvePlaceholderString( | ||||
| 					self.c.Tr.SquashMergeUncommitted, | ||||
| 					self.c.Tr.SquashMergeUncommittedTooltip, | ||||
| 					map[string]string{ | ||||
| 						"selectedBranch": refName, | ||||
| 					}, | ||||
| 				), | ||||
| 			}, | ||||
| 			{ | ||||
| 				Label:   self.c.Tr.SquashMergeCommittedTitle, | ||||
| 				Label:   self.c.Tr.SquashMergeCommitted, | ||||
| 				OnPress: self.SquashMergeCommitted(refName, checkedOutBranchName), | ||||
| 				Key:     'S', | ||||
| 				Tooltip: utils.ResolvePlaceholderString( | ||||
| 					self.c.Tr.SquashMergeCommitted, | ||||
| 					self.c.Tr.SquashMergeCommittedTooltip, | ||||
| 					map[string]string{ | ||||
| 						"checkedOutBranch": checkedOutBranchName, | ||||
| 						"selectedBranch":   refName, | ||||
|   | ||||
| @@ -266,10 +266,10 @@ type TranslationSet struct { | ||||
| 	MergeBranchTooltip                    string | ||||
| 	RegularMerge                          string | ||||
| 	RegularMergeTooltip                   string | ||||
| 	SquashMergeUncommittedTitle           string | ||||
| 	SquashMergeUncommitted                string | ||||
| 	SquashMergeCommittedTitle             string | ||||
| 	SquashMergeUncommittedTooltip         string | ||||
| 	SquashMergeCommitted                  string | ||||
| 	SquashMergeCommittedTooltip           string | ||||
| 	ConfirmQuit                           string | ||||
| 	SwitchRepo                            string | ||||
| 	AllBranchesLogGraph                   string | ||||
| @@ -1353,10 +1353,10 @@ func EnglishTranslationSet() *TranslationSet { | ||||
| 		MergeBranchTooltip:                   "View options for merging the selected item into the current branch (regular merge, squash merge)", | ||||
| 		RegularMerge:                         "Regular merge", | ||||
| 		RegularMergeTooltip:                  "Merge '{{.selectedBranch}}' into '{{.checkedOutBranch}}'.", | ||||
| 		SquashMergeUncommittedTitle:          "Squash merge and leave uncommitted", | ||||
| 		SquashMergeUncommitted:               "Squash merge '{{.selectedBranch}}' into the working tree.", | ||||
| 		SquashMergeCommittedTitle:            "Squash merge and commit", | ||||
| 		SquashMergeCommitted:                 "Squash merge '{{.selectedBranch}}' into '{{.checkedOutBranch}}' as a single commit.", | ||||
| 		SquashMergeUncommitted:               "Squash merge and leave uncommitted", | ||||
| 		SquashMergeUncommittedTooltip:        "Squash merge '{{.selectedBranch}}' into the working tree.", | ||||
| 		SquashMergeCommitted:                 "Squash merge and commit", | ||||
| 		SquashMergeCommittedTooltip:          "Squash merge '{{.selectedBranch}}' into '{{.checkedOutBranch}}' as a single commit.", | ||||
| 		ConfirmQuit:                          `Are you sure you want to quit?`, | ||||
| 		SwitchRepo:                           `Switch to a recent repo`, | ||||
| 		AllBranchesLogGraph:                  `Show/cycle all branch logs`, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user