mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-30 23:57:43 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			2206 lines
		
	
	
		
			141 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			2206 lines
		
	
	
		
			141 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| 
 | |
| Todo list when making a new translation
 | |
| - Copy this file and rename it to the language you want to translate to like someLanguage.go
 | |
| - Change the EnglishTranslationSet() name to the language you want to translate to like SomeLanguageTranslationSet()
 | |
| - Add an entry of someLanguage in GetTranslationSets()
 | |
| - Remove this todo and the about section
 | |
| 
 | |
| */
 | |
| 
 | |
| package i18n
 | |
| 
 | |
| type TranslationSet struct {
 | |
| 	NotEnoughSpace                        string
 | |
| 	DiffTitle                             string
 | |
| 	FilesTitle                            string
 | |
| 	BranchesTitle                         string
 | |
| 	CommitsTitle                          string
 | |
| 	StashTitle                            string
 | |
| 	SnakeTitle                            string
 | |
| 	EasterEgg                             string
 | |
| 	UnstagedChanges                       string
 | |
| 	StagedChanges                         string
 | |
| 	StagingTitle                          string
 | |
| 	MergingTitle                          string
 | |
| 	SquashMergeUncommittedTitle           string
 | |
| 	SquashMergeCommittedTitle             string
 | |
| 	SquashMergeUncommitted                string
 | |
| 	SquashMergeCommitted                  string
 | |
| 	RegularMergeTooltip                   string
 | |
| 	NormalTitle                           string
 | |
| 	LogTitle                              string
 | |
| 	LogXOfYTitle                          string
 | |
| 	CommitSummary                         string
 | |
| 	CredentialsUsername                   string
 | |
| 	CredentialsPassword                   string
 | |
| 	CredentialsPassphrase                 string
 | |
| 	CredentialsPIN                        string
 | |
| 	CredentialsToken                      string
 | |
| 	PassUnameWrong                        string
 | |
| 	Commit                                string
 | |
| 	CommitTooltip                         string
 | |
| 	AmendLastCommit                       string
 | |
| 	AmendLastCommitTitle                  string
 | |
| 	SureToAmend                           string
 | |
| 	NoCommitToAmend                       string
 | |
| 	CommitChangesWithEditor               string
 | |
| 	FindBaseCommitForFixup                string
 | |
| 	FindBaseCommitForFixupTooltip         string
 | |
| 	NoBaseCommitsFound                    string
 | |
| 	MultipleBaseCommitsFoundStaged        string
 | |
| 	MultipleBaseCommitsFoundUnstaged      string
 | |
| 	BaseCommitIsAlreadyOnMainBranch       string
 | |
| 	BaseCommitIsNotInCurrentView          string
 | |
| 	HunksWithOnlyAddedLinesWarning        string
 | |
| 	StatusTitle                           string
 | |
| 	GlobalTitle                           string
 | |
| 	Execute                               string
 | |
| 	Stage                                 string
 | |
| 	StageTooltip                          string
 | |
| 	ToggleStagedAll                       string
 | |
| 	ToggleStagedAllTooltip                string
 | |
| 	ToggleTreeView                        string
 | |
| 	ToggleTreeViewTooltip                 string
 | |
| 	OpenDiffTool                          string
 | |
| 	OpenMergeTool                         string
 | |
| 	Refresh                               string
 | |
| 	RefreshTooltip                        string
 | |
| 	Push                                  string
 | |
| 	Pull                                  string
 | |
| 	PushTooltip                           string
 | |
| 	PullTooltip                           string
 | |
| 	FileFilter                            string
 | |
| 	CopyToClipboardMenu                   string
 | |
| 	CopyFileName                          string
 | |
| 	CopyRelativeFilePath                  string
 | |
| 	CopyAbsoluteFilePath                  string
 | |
| 	CopyFileDiffTooltip                   string
 | |
| 	CopySelectedDiff                      string
 | |
| 	CopyAllFilesDiff                      string
 | |
| 	CopyFileContent                       string
 | |
| 	NoContentToCopyError                  string
 | |
| 	FileNameCopiedToast                   string
 | |
| 	FilePathCopiedToast                   string
 | |
| 	FileDiffCopiedToast                   string
 | |
| 	AllFilesDiffCopiedToast               string
 | |
| 	FileContentCopiedToast                string
 | |
| 	FilterStagedFiles                     string
 | |
| 	FilterUnstagedFiles                   string
 | |
| 	FilterTrackedFiles                    string
 | |
| 	FilterUntrackedFiles                  string
 | |
| 	NoFilter                              string
 | |
| 	FilterLabelStagedFiles                string
 | |
| 	FilterLabelUnstagedFiles              string
 | |
| 	FilterLabelTrackedFiles               string
 | |
| 	FilterLabelUntrackedFiles             string
 | |
| 	FilterLabelConflictingFiles           string
 | |
| 	MergeConflictsTitle                   string
 | |
| 	MergeConflictDescription_DD           string
 | |
| 	MergeConflictDescription_AU           string
 | |
| 	MergeConflictDescription_UA           string
 | |
| 	MergeConflictDescription_DU           string
 | |
| 	MergeConflictDescription_UD           string
 | |
| 	MergeConflictIncomingDiff             string
 | |
| 	MergeConflictCurrentDiff              string
 | |
| 	MergeConflictPressEnterToResolve      string
 | |
| 	MergeConflictKeepFile                 string
 | |
| 	MergeConflictDeleteFile               string
 | |
| 	Checkout                              string
 | |
| 	CheckoutTooltip                       string
 | |
| 	CantCheckoutBranchWhilePulling        string
 | |
| 	TagCheckoutTooltip                    string
 | |
| 	RemoteBranchCheckoutTooltip           string
 | |
| 	CantPullOrPushSameBranchTwice         string
 | |
| 	NoChangedFiles                        string
 | |
| 	SoftReset                             string
 | |
| 	AlreadyCheckedOutBranch               string
 | |
| 	SureForceCheckout                     string
 | |
| 	ForceCheckoutBranch                   string
 | |
| 	BranchName                            string
 | |
| 	NewBranchNameBranchOff                string
 | |
| 	CantDeleteCheckOutBranch              string
 | |
| 	DeleteBranchTitle                     string
 | |
| 	DeleteBranchesTitle                   string
 | |
| 	DeleteLocalBranch                     string
 | |
| 	DeleteLocalBranches                   string
 | |
| 	DeleteRemoteBranchPrompt              string
 | |
| 	DeleteRemoteBranchesPrompt            string
 | |
| 	DeleteLocalAndRemoteBranchPrompt      string
 | |
| 	DeleteLocalAndRemoteBranchesPrompt    string
 | |
| 	ForceDeleteBranchTitle                string
 | |
| 	ForceDeleteBranchMessage              string
 | |
| 	ForceDeleteBranchesMessage            string
 | |
| 	RebaseBranch                          string
 | |
| 	RebaseBranchTooltip                   string
 | |
| 	CantRebaseOntoSelf                    string
 | |
| 	CantMergeBranchIntoItself             string
 | |
| 	ForceCheckout                         string
 | |
| 	ForceCheckoutTooltip                  string
 | |
| 	CheckoutByName                        string
 | |
| 	CheckoutByNameTooltip                 string
 | |
| 	CheckoutPreviousBranch                string
 | |
| 	RemoteBranchCheckoutTitle             string
 | |
| 	RemoteBranchCheckoutPrompt            string
 | |
| 	CheckoutTypeNewBranch                 string
 | |
| 	CheckoutTypeNewBranchTooltip          string
 | |
| 	CheckoutTypeDetachedHead              string
 | |
| 	CheckoutTypeDetachedHeadTooltip       string
 | |
| 	NewBranch                             string
 | |
| 	NewBranchFromStashTooltip             string
 | |
| 	MoveCommitsToNewBranch                string
 | |
| 	MoveCommitsToNewBranchTooltip         string
 | |
| 	MoveCommitsToNewBranchFromMainPrompt  string
 | |
| 	MoveCommitsToNewBranchMenuPrompt      string
 | |
| 	MoveCommitsToNewBranchFromBaseItem    string
 | |
| 	MoveCommitsToNewBranchStackedItem     string
 | |
| 	CannotMoveCommitsFromDetachedHead     string
 | |
| 	CannotMoveCommitsNoUpstream           string
 | |
| 	CannotMoveCommitsBehindUpstream       string
 | |
| 	CannotMoveCommitsNoUnpushedCommits    string
 | |
| 	NoBranchesThisRepo                    string
 | |
| 	CommitWithoutMessageErr               string
 | |
| 	Close                                 string
 | |
| 	CloseCancel                           string
 | |
| 	Confirm                               string
 | |
| 	Quit                                  string
 | |
| 	SquashTooltip                         string
 | |
| 	CannotSquashOrFixupFirstCommit        string
 | |
| 	CannotSquashOrFixupMergeCommit        string
 | |
| 	Fixup                                 string
 | |
| 	FixupTooltip                          string
 | |
| 	SureFixupThisCommit                   string
 | |
| 	SureSquashThisCommit                  string
 | |
| 	Squash                                string
 | |
| 	PickCommitTooltip                     string
 | |
| 	Pick                                  string
 | |
| 	Edit                                  string
 | |
| 	Revert                                string
 | |
| 	RevertCommitTooltip                   string
 | |
| 	Reword                                string
 | |
| 	CommitRewordTooltip                   string
 | |
| 	DropCommit                            string
 | |
| 	DropCommitTooltip                     string
 | |
| 	MoveDownCommit                        string
 | |
| 	MoveUpCommit                          string
 | |
| 	CannotMoveAnyFurther                  string
 | |
| 	CannotMoveMergeCommit                 string
 | |
| 	EditCommit                            string
 | |
| 	EditCommitTooltip                     string
 | |
| 	AmendCommitTooltip                    string
 | |
| 	Amend                                 string
 | |
| 	ResetAuthor                           string
 | |
| 	ResetAuthorTooltip                    string
 | |
| 	SetAuthor                             string
 | |
| 	SetAuthorTooltip                      string
 | |
| 	AddCoAuthor                           string
 | |
| 	AmendCommitAttribute                  string
 | |
| 	AmendCommitAttributeTooltip           string
 | |
| 	SetAuthorPromptTitle                  string
 | |
| 	AddCoAuthorPromptTitle                string
 | |
| 	AddCoAuthorTooltip                    string
 | |
| 	RewordCommitEditor                    string
 | |
| 	NoCommitsThisBranch                   string
 | |
| 	UpdateRefHere                         string
 | |
| 	ExecCommandHere                       string
 | |
| 	Error                                 string
 | |
| 	Undo                                  string
 | |
| 	UndoReflog                            string
 | |
| 	RedoReflog                            string
 | |
| 	UndoTooltip                           string
 | |
| 	RedoTooltip                           string
 | |
| 	UndoMergeResolveTooltip               string
 | |
| 	DiscardAllTooltip                     string
 | |
| 	DiscardUnstagedTooltip                string
 | |
| 	DiscardUnstagedDisabled               string
 | |
| 	Pop                                   string
 | |
| 	StashPopTooltip                       string
 | |
| 	Drop                                  string
 | |
| 	StashDropTooltip                      string
 | |
| 	Apply                                 string
 | |
| 	StashApplyTooltip                     string
 | |
| 	NoStashEntries                        string
 | |
| 	StashDrop                             string
 | |
| 	SureDropStashEntry                    string
 | |
| 	StashPop                              string
 | |
| 	SurePopStashEntry                     string
 | |
| 	StashApply                            string
 | |
| 	SureApplyStashEntry                   string
 | |
| 	NoTrackedStagedFilesStash             string
 | |
| 	NoFilesToStash                        string
 | |
| 	StashChanges                          string
 | |
| 	RenameStash                           string
 | |
| 	RenameStashPrompt                     string
 | |
| 	OpenConfig                            string
 | |
| 	EditConfig                            string
 | |
| 	ForcePush                             string
 | |
| 	ForcePushPrompt                       string
 | |
| 	ForcePushDisabled                     string
 | |
| 	UpdatesRejected                       string
 | |
| 	UpdatesRejectedAndForcePushDisabled   string
 | |
| 	CheckForUpdate                        string
 | |
| 	CheckingForUpdates                    string
 | |
| 	UpdateAvailableTitle                  string
 | |
| 	UpdateAvailable                       string
 | |
| 	UpdateInProgressWaitingStatus         string
 | |
| 	UpdateCompletedTitle                  string
 | |
| 	UpdateCompleted                       string
 | |
| 	FailedToRetrieveLatestVersionErr      string
 | |
| 	OnLatestVersionErr                    string
 | |
| 	MajorVersionErr                       string
 | |
| 	CouldNotFindBinaryErr                 string
 | |
| 	UpdateFailedErr                       string
 | |
| 	ConfirmQuitDuringUpdateTitle          string
 | |
| 	ConfirmQuitDuringUpdate               string
 | |
| 	MergeToolTitle                        string
 | |
| 	MergeToolPrompt                       string
 | |
| 	IntroPopupMessage                     string
 | |
| 	NonReloadableConfigWarningTitle       string
 | |
| 	NonReloadableConfigWarning            string
 | |
| 	GitconfigParseErr                     string
 | |
| 	EditFile                              string
 | |
| 	EditFileTooltip                       string
 | |
| 	OpenFile                              string
 | |
| 	OpenFileTooltip                       string
 | |
| 	OpenInEditor                          string
 | |
| 	IgnoreFile                            string
 | |
| 	ExcludeFile                           string
 | |
| 	RefreshFiles                          string
 | |
| 	FocusMainView                         string
 | |
| 	Merge                                 string
 | |
| 	RegularMerge                          string
 | |
| 	MergeBranchTooltip                    string
 | |
| 	ConfirmQuit                           string
 | |
| 	SwitchRepo                            string
 | |
| 	AllBranchesLogGraph                   string
 | |
| 	UnsupportedGitService                 string
 | |
| 	CopyPullRequestURL                    string
 | |
| 	NoBranchOnRemote                      string
 | |
| 	Fetch                                 string
 | |
| 	FetchTooltip                          string
 | |
| 	CollapseAll                           string
 | |
| 	CollapseAllTooltip                    string
 | |
| 	ExpandAll                             string
 | |
| 	ExpandAllTooltip                      string
 | |
| 	DisabledInFlatView                    string
 | |
| 	FileEnter                             string
 | |
| 	FileEnterTooltip                      string
 | |
| 	StageSelectionTooltip                 string
 | |
| 	DiscardSelection                      string
 | |
| 	DiscardSelectionTooltip               string
 | |
| 	ToggleSelectHunk                      string
 | |
| 	SelectHunk                            string
 | |
| 	SelectLineByLine                      string
 | |
| 	ToggleSelectHunkTooltip               string
 | |
| 	HunkStagingHint                       string
 | |
| 	ToggleSelectionForPatch               string
 | |
| 	EditHunk                              string
 | |
| 	EditHunkTooltip                       string
 | |
| 	ToggleStagingView                     string
 | |
| 	ToggleStagingViewTooltip              string
 | |
| 	ReturnToFilesPanel                    string
 | |
| 	FastForward                           string
 | |
| 	FastForwardTooltip                    string
 | |
| 	FastForwarding                        string
 | |
| 	FoundConflictsTitle                   string
 | |
| 	ViewConflictsMenuItem                 string
 | |
| 	AbortMenuItem                         string
 | |
| 	PickHunk                              string
 | |
| 	PickAllHunks                          string
 | |
| 	ViewMergeRebaseOptions                string
 | |
| 	ViewMergeRebaseOptionsTooltip         string
 | |
| 	ViewMergeOptions                      string
 | |
| 	ViewRebaseOptions                     string
 | |
| 	ViewCherryPickOptions                 string
 | |
| 	ViewRevertOptions                     string
 | |
| 	NotMergingOrRebasing                  string
 | |
| 	AlreadyRebasing                       string
 | |
| 	RecentRepos                           string
 | |
| 	MergeOptionsTitle                     string
 | |
| 	RebaseOptionsTitle                    string
 | |
| 	CherryPickOptionsTitle                string
 | |
| 	RevertOptionsTitle                    string
 | |
| 	CommitSummaryTitle                    string
 | |
| 	CommitDescriptionTitle                string
 | |
| 	CommitDescriptionSubTitle             string
 | |
| 	CommitDescriptionFooter               string
 | |
| 	CommitDescriptionFooterTwoBindings    string
 | |
| 	CommitHooksDisabledSubTitle           string
 | |
| 	LocalBranchesTitle                    string
 | |
| 	SearchTitle                           string
 | |
| 	TagsTitle                             string
 | |
| 	MenuTitle                             string
 | |
| 	CommitMenuTitle                       string
 | |
| 	RemotesTitle                          string
 | |
| 	RemoteBranchesTitle                   string
 | |
| 	PatchBuildingTitle                    string
 | |
| 	InformationTitle                      string
 | |
| 	SecondaryTitle                        string
 | |
| 	ReflogCommitsTitle                    string
 | |
| 	ConflictsResolved                     string
 | |
| 	Continue                              string
 | |
| 	UnstagedFilesAfterConflictsResolved   string
 | |
| 	RebasingTitle                         string
 | |
| 	RebasingFromBaseCommitTitle           string
 | |
| 	SimpleRebase                          string
 | |
| 	InteractiveRebase                     string
 | |
| 	RebaseOntoBaseBranch                  string
 | |
| 	InteractiveRebaseTooltip              string
 | |
| 	RebaseOntoBaseBranchTooltip           string
 | |
| 	MustSelectTodoCommits                 string
 | |
| 	FwdNoUpstream                         string
 | |
| 	FwdNoLocalUpstream                    string
 | |
| 	FwdCommitsToPush                      string
 | |
| 	PullRequestNoUpstream                 string
 | |
| 	ErrorOccurred                         string
 | |
| 	ConflictLabel                         string
 | |
| 	PendingRebaseTodosSectionHeader       string
 | |
| 	PendingCherryPicksSectionHeader       string
 | |
| 	PendingRevertsSectionHeader           string
 | |
| 	CommitsSectionHeader                  string
 | |
| 	YouDied                               string
 | |
| 	RewordNotSupported                    string
 | |
| 	ChangingThisActionIsNotAllowed        string
 | |
| 	NotAllowedMidCherryPickOrRevert       string
 | |
| 	PickIsOnlyAllowedDuringRebase         string
 | |
| 	DroppingMergeRequiresSingleSelection  string
 | |
| 	CherryPickCopy                        string
 | |
| 	CherryPickCopyTooltip                 string
 | |
| 	PasteCommits                          string
 | |
| 	SureCherryPick                        string
 | |
| 	CherryPick                            string
 | |
| 	CannotCherryPickNonCommit             string
 | |
| 	Donate                                string
 | |
| 	AskQuestion                           string
 | |
| 	PrevHunk                              string
 | |
| 	NextHunk                              string
 | |
| 	PrevConflict                          string
 | |
| 	NextConflict                          string
 | |
| 	SelectPrevHunk                        string
 | |
| 	SelectNextHunk                        string
 | |
| 	ScrollDown                            string
 | |
| 	ScrollUp                              string
 | |
| 	ScrollUpMainWindow                    string
 | |
| 	ScrollDownMainWindow                  string
 | |
| 	SuspendApp                            string
 | |
| 	CannotSuspendApp                      string
 | |
| 	AmendCommitTitle                      string
 | |
| 	AmendCommitPrompt                     string
 | |
| 	AmendCommitWithConflictsMenuPrompt    string
 | |
| 	AmendCommitWithConflictsContinue      string
 | |
| 	AmendCommitWithConflictsAmend         string
 | |
| 	DropCommitTitle                       string
 | |
| 	DropCommitPrompt                      string
 | |
| 	DropUpdateRefPrompt                   string
 | |
| 	DropMergeCommitPrompt                 string
 | |
| 	PullingStatus                         string
 | |
| 	PushingStatus                         string
 | |
| 	FetchingStatus                        string
 | |
| 	SquashingStatus                       string
 | |
| 	FixingStatus                          string
 | |
| 	DeletingStatus                        string
 | |
| 	DroppingStatus                        string
 | |
| 	MovingStatus                          string
 | |
| 	RebasingStatus                        string
 | |
| 	MergingStatus                         string
 | |
| 	LowercaseRebasingStatus               string
 | |
| 	LowercaseMergingStatus                string
 | |
| 	LowercaseCherryPickingStatus          string
 | |
| 	LowercaseRevertingStatus              string
 | |
| 	AmendingStatus                        string
 | |
| 	CherryPickingStatus                   string
 | |
| 	UndoingStatus                         string
 | |
| 	RedoingStatus                         string
 | |
| 	CheckingOutStatus                     string
 | |
| 	CommittingStatus                      string
 | |
| 	RewordingStatus                       string
 | |
| 	RevertingStatus                       string
 | |
| 	CreatingFixupCommitStatus             string
 | |
| 	MovingCommitsToNewBranchStatus        string
 | |
| 	CommitFiles                           string
 | |
| 	SubCommitsDynamicTitle                string
 | |
| 	CommitFilesDynamicTitle               string
 | |
| 	RemoteBranchesDynamicTitle            string
 | |
| 	ViewItemFiles                         string
 | |
| 	CommitFilesTitle                      string
 | |
| 	CheckoutCommitFileTooltip             string
 | |
| 	CanOnlyDiscardFromLocalCommits        string
 | |
| 	Remove                                string
 | |
| 	DiscardOldFileChangeTooltip           string
 | |
| 	DiscardFileChangesTitle               string
 | |
| 	DiscardFileChangesPrompt              string
 | |
| 	DisabledForGPG                        string
 | |
| 	CreateRepo                            string
 | |
| 	BareRepo                              string
 | |
| 	InitialBranch                         string
 | |
| 	NoRecentRepositories                  string
 | |
| 	IncorrectNotARepository               string
 | |
| 	AutoStashTitle                        string
 | |
| 	AutoStashPrompt                       string
 | |
| 	AutoStashForUndo                      string
 | |
| 	AutoStashForCheckout                  string
 | |
| 	AutoStashForNewBranch                 string
 | |
| 	AutoStashForMovingPatchToIndex        string
 | |
| 	AutoStashForCherryPicking             string
 | |
| 	AutoStashForReverting                 string
 | |
| 	Discard                               string
 | |
| 	DiscardChangesTitle                   string
 | |
| 	DiscardFileChangesTooltip             string
 | |
| 	Cancel                                string
 | |
| 	DiscardAllChanges                     string
 | |
| 	DiscardUnstagedChanges                string
 | |
| 	DiscardAllChangesToAllFiles           string
 | |
| 	DiscardAnyUnstagedChanges             string
 | |
| 	DiscardUntrackedFiles                 string
 | |
| 	DiscardStagedChanges                  string
 | |
| 	HardReset                             string
 | |
| 	BranchDeleteTooltip                   string
 | |
| 	TagDeleteTooltip                      string
 | |
| 	Delete                                string
 | |
| 	Reset                                 string
 | |
| 	ResetTooltip                          string
 | |
| 	ViewResetOptions                      string
 | |
| 	FileResetOptionsTooltip               string
 | |
| 	CreateFixupCommit                     string
 | |
| 	CreateFixupCommitTooltip              string
 | |
| 	CreateAmendCommit                     string
 | |
| 	FixupMenu_Fixup                       string
 | |
| 	FixupMenu_FixupTooltip                string
 | |
| 	FixupMenu_AmendWithChanges            string
 | |
| 	FixupMenu_AmendWithChangesTooltip     string
 | |
| 	FixupMenu_AmendWithoutChanges         string
 | |
| 	FixupMenu_AmendWithoutChangesTooltip  string
 | |
| 	SquashAboveCommitsTooltip             string
 | |
| 	SquashCommitsAboveSelectedTooltip     string
 | |
| 	SquashCommitsInCurrentBranchTooltip   string
 | |
| 	SquashAboveCommits                    string
 | |
| 	SquashCommitsInCurrentBranch          string
 | |
| 	SquashCommitsAboveSelectedCommit      string
 | |
| 	CannotSquashCommitsInCurrentBranch    string
 | |
| 	ExecuteShellCommand                   string
 | |
| 	ExecuteShellCommandTooltip            string
 | |
| 	ShellCommand                          string
 | |
| 	CommitChangesWithoutHook              string
 | |
| 	ResetTo                               string
 | |
| 	ResetSoftTooltip                      string
 | |
| 	ResetMixedTooltip                     string
 | |
| 	ResetHardTooltip                      string
 | |
| 	ResetHardConfirmation                 string
 | |
| 	PressEnterToReturn                    string
 | |
| 	ViewStashOptions                      string
 | |
| 	ViewStashOptionsTooltip               string
 | |
| 	Stash                                 string
 | |
| 	StashTooltip                          string
 | |
| 	StashAllChanges                       string
 | |
| 	StashStagedChanges                    string
 | |
| 	StashAllChangesKeepIndex              string
 | |
| 	StashUnstagedChanges                  string
 | |
| 	StashIncludeUntrackedChanges          string
 | |
| 	StashOptions                          string
 | |
| 	NotARepository                        string
 | |
| 	WorkingDirectoryDoesNotExist          string
 | |
| 	ScrollLeft                            string
 | |
| 	ScrollRight                           string
 | |
| 	DiscardPatch                          string
 | |
| 	DiscardPatchConfirm                   string
 | |
| 	CantPatchWhileRebasingError           string
 | |
| 	ToggleAddToPatch                      string
 | |
| 	ToggleAddToPatchTooltip               string
 | |
| 	ToggleAllInPatch                      string
 | |
| 	ToggleAllInPatchTooltip               string
 | |
| 	UpdatingPatch                         string
 | |
| 	ViewPatchOptions                      string
 | |
| 	PatchOptionsTitle                     string
 | |
| 	NoPatchError                          string
 | |
| 	EmptyPatchError                       string
 | |
| 	EnterCommitFile                       string
 | |
| 	EnterCommitFileTooltip                string
 | |
| 	ExitCustomPatchBuilder                string
 | |
| 	ExitFocusedMainView                   string
 | |
| 	EnterUpstream                         string
 | |
| 	InvalidUpstream                       string
 | |
| 	NewRemote                             string
 | |
| 	NewRemoteName                         string
 | |
| 	NewRemoteUrl                          string
 | |
| 	ViewBranches                          string
 | |
| 	EditRemoteName                        string
 | |
| 	EditRemoteUrl                         string
 | |
| 	RemoveRemote                          string
 | |
| 	RemoveRemoteTooltip                   string
 | |
| 	RemoveRemotePrompt                    string
 | |
| 	DeleteRemoteBranch                    string
 | |
| 	DeleteRemoteBranches                  string
 | |
| 	DeleteRemoteBranchTooltip             string
 | |
| 	DeleteLocalAndRemoteBranch            string
 | |
| 	DeleteLocalAndRemoteBranches          string
 | |
| 	SetAsUpstream                         string
 | |
| 	SetAsUpstreamTooltip                  string
 | |
| 	SetUpstream                           string
 | |
| 	UnsetUpstream                         string
 | |
| 	ViewDivergenceFromUpstream            string
 | |
| 	ViewDivergenceFromBaseBranch          string
 | |
| 	CouldNotDetermineBaseBranch           string
 | |
| 	DivergenceSectionHeaderLocal          string
 | |
| 	DivergenceSectionHeaderRemote         string
 | |
| 	ViewUpstreamResetOptions              string
 | |
| 	ViewUpstreamResetOptionsTooltip       string
 | |
| 	ViewUpstreamRebaseOptions             string
 | |
| 	ViewUpstreamRebaseOptionsTooltip      string
 | |
| 	UpstreamGenericName                   string
 | |
| 	SetUpstreamTitle                      string
 | |
| 	SetUpstreamMessage                    string
 | |
| 	EditRemoteTooltip                     string
 | |
| 	TagCommit                             string
 | |
| 	TagCommitTooltip                      string
 | |
| 	TagNameTitle                          string
 | |
| 	TagMessageTitle                       string
 | |
| 	LightweightTag                        string
 | |
| 	AnnotatedTag                          string
 | |
| 	DeleteTagTitle                        string
 | |
| 	DeleteLocalTag                        string
 | |
| 	DeleteRemoteTag                       string
 | |
| 	DeleteLocalAndRemoteTag               string
 | |
| 	SelectRemoteTagUpstream               string
 | |
| 	DeleteRemoteTagPrompt                 string
 | |
| 	DeleteLocalAndRemoteTagPrompt         string
 | |
| 	RemoteTagDeletedMessage               string
 | |
| 	PushTagTitle                          string
 | |
| 	PushTag                               string
 | |
| 	PushTagTooltip                        string
 | |
| 	NewTag                                string
 | |
| 	NewTagTooltip                         string
 | |
| 	CreatingTag                           string
 | |
| 	ForceTag                              string
 | |
| 	ForceTagPrompt                        string
 | |
| 	FetchRemoteTooltip                    string
 | |
| 	CheckoutCommitTooltip                 string
 | |
| 	NoBranchesFoundAtCommitTooltip        string
 | |
| 	GitFlowOptions                        string
 | |
| 	NotAGitFlowBranch                     string
 | |
| 	NewBranchNamePrompt                   string
 | |
| 	IgnoreTracked                         string
 | |
| 	ExcludeTracked                        string
 | |
| 	IgnoreTrackedPrompt                   string
 | |
| 	ExcludeTrackedPrompt                  string
 | |
| 	ViewResetToUpstreamOptions            string
 | |
| 	NextScreenMode                        string
 | |
| 	PrevScreenMode                        string
 | |
| 	CyclePagers                           string
 | |
| 	CyclePagersTooltip                    string
 | |
| 	CyclePagersDisabledReason             string
 | |
| 	StartSearch                           string
 | |
| 	StartFilter                           string
 | |
| 	Keybindings                           string
 | |
| 	KeybindingsLegend                     string
 | |
| 	KeybindingsMenuSectionLocal           string
 | |
| 	KeybindingsMenuSectionGlobal          string
 | |
| 	KeybindingsMenuSectionNavigation      string
 | |
| 	RenameBranch                          string
 | |
| 	Upstream                              string
 | |
| 	BranchUpstreamOptionsTitle            string
 | |
| 	ViewBranchUpstreamOptions             string
 | |
| 	ViewBranchUpstreamOptionsTooltip      string
 | |
| 	UpstreamNotSetError                   string
 | |
| 	UpstreamsNotSetError                  string
 | |
| 	NewGitFlowBranchPrompt                string
 | |
| 	RenameBranchWarning                   string
 | |
| 	OpenKeybindingsMenu                   string
 | |
| 	ResetCherryPick                       string
 | |
| 	ResetCherryPickShort                  string
 | |
| 	NextTab                               string
 | |
| 	PrevTab                               string
 | |
| 	CantUndoWhileRebasing                 string
 | |
| 	CantRedoWhileRebasing                 string
 | |
| 	MustStashWarning                      string
 | |
| 	MustStashTitle                        string
 | |
| 	ConfirmationTitle                     string
 | |
| 	PromptTitle                           string
 | |
| 	PrevPage                              string
 | |
| 	NextPage                              string
 | |
| 	GotoTop                               string
 | |
| 	GotoBottom                            string
 | |
| 	FilteringBy                           string
 | |
| 	ResetInParentheses                    string
 | |
| 	OpenFilteringMenu                     string
 | |
| 	OpenFilteringMenuTooltip              string
 | |
| 	FilterBy                              string
 | |
| 	ExitFilterMode                        string
 | |
| 	FilterPathOption                      string
 | |
| 	FilterAuthorOption                    string
 | |
| 	EnterFileName                         string
 | |
| 	EnterAuthor                           string
 | |
| 	FilteringMenuTitle                    string
 | |
| 	WillCancelExistingFilterTooltip       string
 | |
| 	MustExitFilterModeTitle               string
 | |
| 	MustExitFilterModePrompt              string
 | |
| 	Diff                                  string
 | |
| 	EnterRefToDiff                        string
 | |
| 	EnterRefName                          string
 | |
| 	ExitDiffMode                          string
 | |
| 	DiffingMenuTitle                      string
 | |
| 	SwapDiff                              string
 | |
| 	ViewDiffingOptions                    string
 | |
| 	ViewDiffingOptionsTooltip             string
 | |
| 	CancelDiffingMode                     string
 | |
| 	OpenCommandLogMenu                    string
 | |
| 	OpenCommandLogMenuTooltip             string
 | |
| 	ShowingGitDiff                        string
 | |
| 	ShowingDiffForRange                   string
 | |
| 	CommitDiff                            string
 | |
| 	CopyCommitHashToClipboard             string
 | |
| 	CommitHash                            string
 | |
| 	CommitURL                             string
 | |
| 	PasteCommitMessageFromClipboard       string
 | |
| 	SurePasteCommitMessage                string
 | |
| 	CommitMessage                         string
 | |
| 	CommitMessageBody                     string
 | |
| 	CommitSubject                         string
 | |
| 	CommitAuthor                          string
 | |
| 	CommitTags                            string
 | |
| 	CopyCommitAttributeToClipboard        string
 | |
| 	CopyCommitAttributeToClipboardTooltip string
 | |
| 	CopyBranchNameToClipboard             string
 | |
| 	CopyTagToClipboard                    string
 | |
| 	CopyPathToClipboard                   string
 | |
| 	CommitPrefixPatternError              string
 | |
| 	CopySelectedTextToClipboard           string
 | |
| 	NoFilesStagedTitle                    string
 | |
| 	NoFilesStagedPrompt                   string
 | |
| 	BranchNotFoundTitle                   string
 | |
| 	BranchNotFoundPrompt                  string
 | |
| 	BranchUnknown                         string
 | |
| 	DiscardChangeTitle                    string
 | |
| 	DiscardChangePrompt                   string
 | |
| 	CreateNewBranchFromCommit             string
 | |
| 	BuildingPatch                         string
 | |
| 	ViewCommits                           string
 | |
| 	MinGitVersionError                    string
 | |
| 	RunningCustomCommandStatus            string
 | |
| 	SubmoduleStashAndReset                string
 | |
| 	AndResetSubmodules                    string
 | |
| 	EnterSubmoduleTooltip                 string
 | |
| 	BackToParentRepo                      string
 | |
| 	Enter                                 string
 | |
| 	CopySubmoduleNameToClipboard          string
 | |
| 	RemoveSubmodule                       string
 | |
| 	RemoveSubmoduleTooltip                string
 | |
| 	RemoveSubmodulePrompt                 string
 | |
| 	ResettingSubmoduleStatus              string
 | |
| 	NewSubmoduleName                      string
 | |
| 	NewSubmoduleUrl                       string
 | |
| 	NewSubmodulePath                      string
 | |
| 	NewSubmodule                          string
 | |
| 	AddingSubmoduleStatus                 string
 | |
| 	UpdateSubmoduleUrl                    string
 | |
| 	UpdatingSubmoduleUrlStatus            string
 | |
| 	EditSubmoduleUrl                      string
 | |
| 	InitializingSubmoduleStatus           string
 | |
| 	InitSubmoduleTooltip                  string
 | |
| 	Update                                string
 | |
| 	Initialize                            string
 | |
| 	SubmoduleUpdateTooltip                string
 | |
| 	UpdatingSubmoduleStatus               string
 | |
| 	BulkInitSubmodules                    string
 | |
| 	BulkUpdateSubmodules                  string
 | |
| 	BulkDeinitSubmodules                  string
 | |
| 	BulkUpdateRecursiveSubmodules         string
 | |
| 	ViewBulkSubmoduleOptions              string
 | |
| 	BulkSubmoduleOptions                  string
 | |
| 	RunningCommand                        string
 | |
| 	SubCommitsTitle                       string
 | |
| 	ExitSubview                           string
 | |
| 	SubmodulesTitle                       string
 | |
| 	NavigationTitle                       string
 | |
| 	SuggestionsCheatsheetTitle            string
 | |
| 	// Unlike the cheatsheet title above, the real suggestions title has a little message saying press tab to focus
 | |
| 	SuggestionsTitle                         string
 | |
| 	SuggestionsSubtitle                      string
 | |
| 	ExtrasTitle                              string
 | |
| 	PullRequestURLCopiedToClipboard          string
 | |
| 	CommitDiffCopiedToClipboard              string
 | |
| 	CommitURLCopiedToClipboard               string
 | |
| 	CommitMessageCopiedToClipboard           string
 | |
| 	CommitMessageBodyCopiedToClipboard       string
 | |
| 	CommitSubjectCopiedToClipboard           string
 | |
| 	CommitAuthorCopiedToClipboard            string
 | |
| 	CommitTagsCopiedToClipboard              string
 | |
| 	CommitHasNoTags                          string
 | |
| 	CommitHasNoMessageBody                   string
 | |
| 	PatchCopiedToClipboard                   string
 | |
| 	MessageCopiedToClipboard                 string
 | |
| 	CopiedToClipboard                        string
 | |
| 	ErrCannotEditDirectory                   string
 | |
| 	ErrCannotCopyContentOfDirectory          string
 | |
| 	ErrStageDirWithInlineMergeConflicts      string
 | |
| 	ErrRepositoryMovedOrDeleted              string
 | |
| 	ErrWorktreeMovedOrRemoved                string
 | |
| 	CommandLog                               string
 | |
| 	ToggleShowCommandLog                     string
 | |
| 	FocusCommandLog                          string
 | |
| 	CommandLogHeader                         string
 | |
| 	RandomTip                                string
 | |
| 	ToggleWhitespaceInDiffView               string
 | |
| 	ToggleWhitespaceInDiffViewTooltip        string
 | |
| 	IgnoreWhitespaceDiffViewSubTitle         string
 | |
| 	IgnoreWhitespaceNotSupportedHere         string
 | |
| 	IncreaseContextInDiffView                string
 | |
| 	IncreaseContextInDiffViewTooltip         string
 | |
| 	DecreaseContextInDiffView                string
 | |
| 	DecreaseContextInDiffViewTooltip         string
 | |
| 	DiffContextSizeChanged                   string
 | |
| 	IncreaseRenameSimilarityThreshold        string
 | |
| 	IncreaseRenameSimilarityThresholdTooltip string
 | |
| 	DecreaseRenameSimilarityThreshold        string
 | |
| 	DecreaseRenameSimilarityThresholdTooltip string
 | |
| 	RenameSimilarityThresholdChanged         string
 | |
| 	CreatePullRequestOptions                 string
 | |
| 	DefaultBranch                            string
 | |
| 	SelectBranch                             string
 | |
| 	SelectTargetRemote                       string
 | |
| 	NoValidRemoteName                        string
 | |
| 	CreatePullRequest                        string
 | |
| 	SelectConfigFile                         string
 | |
| 	NoConfigFileFoundErr                     string
 | |
| 	LoadingFileSuggestions                   string
 | |
| 	LoadingCommits                           string
 | |
| 	MustSpecifyOriginError                   string
 | |
| 	GitOutput                                string
 | |
| 	GitCommandFailed                         string
 | |
| 	AbortTitle                               string
 | |
| 	AbortPrompt                              string
 | |
| 	OpenLogMenu                              string
 | |
| 	OpenLogMenuTooltip                       string
 | |
| 	LogMenuTitle                             string
 | |
| 	ToggleShowGitGraphAll                    string
 | |
| 	ShowGitGraph                             string
 | |
| 	ShowGitGraphTooltip                      string
 | |
| 	SortOrder                                string
 | |
| 	SortOrderPromptLocalBranches             string
 | |
| 	SortOrderPromptRemoteBranches            string
 | |
| 	SortAlphabetical                         string
 | |
| 	SortByDate                               string
 | |
| 	SortByRecency                            string
 | |
| 	SortBasedOnReflog                        string
 | |
| 	SortOrderPrompt                          string
 | |
| 	SortCommits                              string
 | |
| 	SortCommitsTooltip                       string
 | |
| 	CantChangeContextSizeError               string
 | |
| 	OpenCommitInBrowser                      string
 | |
| 	ViewBisectOptions                        string
 | |
| 	ConfirmRevertCommit                      string
 | |
| 	ConfirmRevertCommitRange                 string
 | |
| 	RewordInEditorTitle                      string
 | |
| 	RewordInEditorPrompt                     string
 | |
| 	CheckoutAutostashPrompt                  string
 | |
| 	HardResetAutostashPrompt                 string
 | |
| 	SoftResetPrompt                          string
 | |
| 	UpstreamGone                             string
 | |
| 	NukeDescription                          string
 | |
| 	NukeTreeConfirmation                     string
 | |
| 	DiscardStagedChangesDescription          string
 | |
| 	EmptyOutput                              string
 | |
| 	Patch                                    string
 | |
| 	CustomPatch                              string
 | |
| 	CommitsCopied                            string
 | |
| 	CommitCopied                             string
 | |
| 	ResetPatch                               string
 | |
| 	ResetPatchTooltip                        string
 | |
| 	ApplyPatch                               string
 | |
| 	ApplyPatchTooltip                        string
 | |
| 	ApplyPatchInReverse                      string
 | |
| 	ApplyPatchInReverseTooltip               string
 | |
| 	RemovePatchFromOriginalCommit            string
 | |
| 	RemovePatchFromOriginalCommitTooltip     string
 | |
| 	MovePatchOutIntoIndex                    string
 | |
| 	MovePatchOutIntoIndexTooltip             string
 | |
| 	MovePatchIntoNewCommit                   string
 | |
| 	MovePatchIntoNewCommitTooltip            string
 | |
| 	MovePatchIntoNewCommitBefore             string
 | |
| 	MovePatchIntoNewCommitBeforeTooltip      string
 | |
| 	MovePatchToSelectedCommit                string
 | |
| 	MovePatchToSelectedCommitTooltip         string
 | |
| 	CopyPatchToClipboard                     string
 | |
| 	MustStageFilesAffectedByPatchTitle       string
 | |
| 	MustStageFilesAffectedByPatchWarning     string
 | |
| 	NoMatchesFor                             string
 | |
| 	MatchesFor                               string
 | |
| 	SearchKeybindings                        string
 | |
| 	SearchPrefix                             string
 | |
| 	FilterPrefix                             string
 | |
| 	FilterPrefixMenu                         string
 | |
| 	ExitSearchMode                           string
 | |
| 	ExitTextFilterMode                       string
 | |
| 	Switch                                   string
 | |
| 	SwitchToWorktree                         string
 | |
| 	SwitchToWorktreeTooltip                  string
 | |
| 	AlreadyCheckedOutByWorktree              string
 | |
| 	BranchCheckedOutByWorktree               string
 | |
| 	SomeBranchesCheckedOutByWorktreeError    string
 | |
| 	DetachWorktreeTooltip                    string
 | |
| 	Switching                                string
 | |
| 	RemoveWorktree                           string
 | |
| 	RemoveWorktreeTitle                      string
 | |
| 	DetachWorktree                           string
 | |
| 	DetachingWorktree                        string
 | |
| 	WorktreesTitle                           string
 | |
| 	WorktreeTitle                            string
 | |
| 	RemoveWorktreePrompt                     string
 | |
| 	ForceRemoveWorktreePrompt                string
 | |
| 	RemovingWorktree                         string
 | |
| 	AddingWorktree                           string
 | |
| 	CantDeleteCurrentWorktree                string
 | |
| 	AlreadyInWorktree                        string
 | |
| 	CantDeleteMainWorktree                   string
 | |
| 	NoWorktreesThisRepo                      string
 | |
| 	MissingWorktree                          string
 | |
| 	MainWorktree                             string
 | |
| 	NewWorktree                              string
 | |
| 	NewWorktreePath                          string
 | |
| 	NewWorktreeBase                          string
 | |
| 	RemoveWorktreeTooltip                    string
 | |
| 	BranchNameCannotBeBlank                  string
 | |
| 	NewBranchName                            string
 | |
| 	NewBranchNameLeaveBlank                  string
 | |
| 	ViewWorktreeOptions                      string
 | |
| 	CreateWorktreeFrom                       string
 | |
| 	CreateWorktreeFromDetached               string
 | |
| 	LcWorktree                               string
 | |
| 	ChangingDirectoryTo                      string
 | |
| 	Name                                     string
 | |
| 	Branch                                   string
 | |
| 	Path                                     string
 | |
| 	MarkedBaseCommitStatus                   string
 | |
| 	MarkAsBaseCommit                         string
 | |
| 	MarkAsBaseCommitTooltip                  string
 | |
| 	CancelMarkedBaseCommit                   string
 | |
| 	MarkedCommitMarker                       string
 | |
| 	FailedToOpenURL                          string
 | |
| 	InvalidLazygitEditURL                    string
 | |
| 	NoCopiedCommits                          string
 | |
| 	DisabledMenuItemPrefix                   string
 | |
| 	QuickStartInteractiveRebase              string
 | |
| 	QuickStartInteractiveRebaseTooltip       string
 | |
| 	CannotQuickStartInteractiveRebase        string
 | |
| 	ToggleRangeSelect                        string
 | |
| 	DismissRangeSelect                       string
 | |
| 	RangeSelectUp                            string
 | |
| 	RangeSelectDown                          string
 | |
| 	RangeSelectNotSupported                  string
 | |
| 	NoItemSelected                           string
 | |
| 	SelectedItemIsNotABranch                 string
 | |
| 	SelectedItemDoesNotHaveFiles             string
 | |
| 	MultiSelectNotSupportedForSubmodules     string
 | |
| 	OldCherryPickKeyWarning                  string
 | |
| 	CommandDoesNotSupportOpeningInEditor     string
 | |
| 	CustomCommands                           string
 | |
| 	NoApplicableCommandsInThisContext        string
 | |
| 	SelectCommitsOfCurrentBranch             string
 | |
| 	Actions                                  Actions
 | |
| 	Bisect                                   Bisect
 | |
| 	Log                                      Log
 | |
| 	BreakingChangesTitle                     string
 | |
| 	BreakingChangesMessage                   string
 | |
| 	BreakingChangesByVersion                 map[string]string
 | |
| 	ViewMergeConflictOptions                 string
 | |
| 	ViewMergeConflictOptionsTooltip          string
 | |
| 	NoFilesWithMergeConflicts                string
 | |
| 	MergeConflictOptionsTitle                string
 | |
| 	UseCurrentChanges                        string
 | |
| 	UseIncomingChanges                       string
 | |
| 	UseBothChanges                           string
 | |
| }
 | |
| 
 | |
| type Bisect struct {
 | |
| 	MarkStart                   string
 | |
| 	ResetTitle                  string
 | |
| 	ResetPrompt                 string
 | |
| 	ResetOption                 string
 | |
| 	ChooseTerms                 string
 | |
| 	OldTermPrompt               string
 | |
| 	NewTermPrompt               string
 | |
| 	BisectMenuTitle             string
 | |
| 	Mark                        string
 | |
| 	SkipCurrent                 string
 | |
| 	SkipSelected                string
 | |
| 	CompleteTitle               string
 | |
| 	CompletePrompt              string
 | |
| 	CompletePromptIndeterminate string
 | |
| 	Bisecting                   string
 | |
| }
 | |
| 
 | |
| type Log struct {
 | |
| 	EditRebase               string
 | |
| 	HandleUndo               string
 | |
| 	RemoveFile               string
 | |
| 	CopyToClipboard          string
 | |
| 	Remove                   string
 | |
| 	CreateFileWithContent    string
 | |
| 	AppendingLineToFile      string
 | |
| 	EditRebaseFromBaseCommit string
 | |
| }
 | |
| 
 | |
| type Actions struct {
 | |
| 	CheckoutCommit                   string
 | |
| 	CheckoutBranchAtCommit           string
 | |
| 	CheckoutCommitAsDetachedHead     string
 | |
| 	CheckoutTag                      string
 | |
| 	CheckoutBranch                   string
 | |
| 	CheckoutBranchOrCommit           string
 | |
| 	ForceCheckoutBranch              string
 | |
| 	DeleteLocalBranch                string
 | |
| 	Merge                            string
 | |
| 	SquashMerge                      string
 | |
| 	RebaseBranch                     string
 | |
| 	RenameBranch                     string
 | |
| 	CreateBranch                     string
 | |
| 	FastForwardBranch                string
 | |
| 	AutoForwardBranches              string
 | |
| 	CherryPick                       string
 | |
| 	CheckoutFile                     string
 | |
| 	SquashCommitDown                 string
 | |
| 	FixupCommit                      string
 | |
| 	RewordCommit                     string
 | |
| 	DropCommit                       string
 | |
| 	EditCommit                       string
 | |
| 	AmendCommit                      string
 | |
| 	ResetCommitAuthor                string
 | |
| 	SetCommitAuthor                  string
 | |
| 	AddCommitCoAuthor                string
 | |
| 	RevertCommit                     string
 | |
| 	CreateFixupCommit                string
 | |
| 	SquashAllAboveFixupCommits       string
 | |
| 	MoveCommitUp                     string
 | |
| 	MoveCommitDown                   string
 | |
| 	CopyCommitMessageToClipboard     string
 | |
| 	CopyCommitMessageBodyToClipboard string
 | |
| 	CopyCommitSubjectToClipboard     string
 | |
| 	CopyCommitDiffToClipboard        string
 | |
| 	CopyCommitHashToClipboard        string
 | |
| 	CopyCommitURLToClipboard         string
 | |
| 	CopyCommitAuthorToClipboard      string
 | |
| 	CopyCommitAttributeToClipboard   string
 | |
| 	CopyCommitTagsToClipboard        string
 | |
| 	CopyPatchToClipboard             string
 | |
| 	CustomCommand                    string
 | |
| 	DiscardAllChangesInFile          string
 | |
| 	DiscardAllUnstagedChangesInFile  string
 | |
| 	StageFile                        string
 | |
| 	StageResolvedFiles               string
 | |
| 	UnstageFile                      string
 | |
| 	UnstageAllFiles                  string
 | |
| 	StageAllFiles                    string
 | |
| 	ResolveConflictByKeepingFile     string
 | |
| 	ResolveConflictByDeletingFile    string
 | |
| 	NotEnoughContextToStage          string
 | |
| 	NotEnoughContextToDiscard        string
 | |
| 	NotEnoughContextForCustomPatch   string
 | |
| 	IgnoreExcludeFile                string
 | |
| 	IgnoreFileErr                    string
 | |
| 	ExcludeFile                      string
 | |
| 	ExcludeGitIgnoreErr              string
 | |
| 	Commit                           string
 | |
| 	Push                             string
 | |
| 	Pull                             string
 | |
| 	OpenFile                         string
 | |
| 	StashAllChanges                  string
 | |
| 	StashAllChangesKeepIndex         string
 | |
| 	StashStagedChanges               string
 | |
| 	StashUnstagedChanges             string
 | |
| 	StashIncludeUntrackedChanges     string
 | |
| 	GitFlowFinish                    string
 | |
| 	GitFlowStart                     string
 | |
| 	CopyToClipboard                  string
 | |
| 	CopySelectedTextToClipboard      string
 | |
| 	RemovePatchFromCommit            string
 | |
| 	MovePatchToSelectedCommit        string
 | |
| 	MovePatchIntoIndex               string
 | |
| 	MovePatchIntoNewCommit           string
 | |
| 	DeleteRemoteBranch               string
 | |
| 	SetBranchUpstream                string
 | |
| 	AddRemote                        string
 | |
| 	RemoveRemote                     string
 | |
| 	UpdateRemote                     string
 | |
| 	ApplyPatch                       string
 | |
| 	Stash                            string
 | |
| 	PopStash                         string
 | |
| 	ApplyStash                       string
 | |
| 	DropStash                        string
 | |
| 	RenameStash                      string
 | |
| 	RemoveSubmodule                  string
 | |
| 	ResetSubmodule                   string
 | |
| 	AddSubmodule                     string
 | |
| 	UpdateSubmoduleUrl               string
 | |
| 	InitialiseSubmodule              string
 | |
| 	BulkInitialiseSubmodules         string
 | |
| 	BulkUpdateSubmodules             string
 | |
| 	BulkDeinitialiseSubmodules       string
 | |
| 	BulkUpdateRecursiveSubmodules    string
 | |
| 	UpdateSubmodule                  string
 | |
| 	CreateLightweightTag             string
 | |
| 	CreateAnnotatedTag               string
 | |
| 	DeleteLocalTag                   string
 | |
| 	DeleteRemoteTag                  string
 | |
| 	PushTag                          string
 | |
| 	NukeWorkingTree                  string
 | |
| 	DiscardUnstagedFileChanges       string
 | |
| 	RemoveUntrackedFiles             string
 | |
| 	RemoveStagedFiles                string
 | |
| 	SoftReset                        string
 | |
| 	MixedReset                       string
 | |
| 	HardReset                        string
 | |
| 	Undo                             string
 | |
| 	Redo                             string
 | |
| 	CopyPullRequestURL               string
 | |
| 	OpenMergeTool                    string
 | |
| 	OpenCommitInBrowser              string
 | |
| 	OpenPullRequest                  string
 | |
| 	StartBisect                      string
 | |
| 	ResetBisect                      string
 | |
| 	BisectSkip                       string
 | |
| 	BisectMark                       string
 | |
| 	AddWorktree                      string
 | |
| }
 | |
| 
 | |
| const englishIntroPopupMessage = `
 | |
| Thanks for using lazygit! Seriously you rock. Three things to share with you:
 | |
| 
 | |
|  1) If you want to learn about lazygit's features, watch this vid:
 | |
|       https://youtu.be/CPLdltN7wgE
 | |
| 
 | |
|  2) Be sure to read the latest release notes at:
 | |
|       https://github.com/jesseduffield/lazygit/releases
 | |
| 
 | |
|  3) If you're using git, that makes you a programmer! With your help we can make
 | |
|     lazygit better, so consider becoming a contributor and joining the fun at
 | |
|       https://github.com/jesseduffield/lazygit
 | |
|     Or even just star the repo to share the love!
 | |
| 
 | |
|  4) If lazygit has made your life easier, you can say thanks by clicking the
 | |
|     donate button at the bottom right. Donation does not grant priority support,
 | |
|     but it is much appreciated.
 | |
| 
 | |
| Press {{confirmationKey}} to get started.
 | |
| `
 | |
| 
 | |
| const englishNonReloadableConfigWarning = `The following config settings were changed, but the change doesn't take effect immediately. Please quit and restart lazygit for changes to take effect:
 | |
| 
 | |
| {{configs}}`
 | |
| 
 | |
| const englishHunkStagingHint = `Hunk selection mode is now the default for staging. If you want to stage individual lines, press '%s' to switch to line-by-line mode.
 | |
| 
 | |
| If you prefer to use line-by-line mode by default (like in earlier lazygit versions), add
 | |
| 
 | |
| gui:
 | |
|   useHunkModeInStagingView: false
 | |
| 
 | |
| to your lazygit config.`
 | |
| 
 | |
| // exporting this so we can use it in tests
 | |
| func EnglishTranslationSet() *TranslationSet {
 | |
| 	return &TranslationSet{
 | |
| 		NotEnoughSpace:                       "Not enough space to render panels",
 | |
| 		DiffTitle:                            "Diff",
 | |
| 		FilesTitle:                           "Files",
 | |
| 		BranchesTitle:                        "Branches",
 | |
| 		CommitsTitle:                         "Commits",
 | |
| 		StashTitle:                           "Stash",
 | |
| 		SnakeTitle:                           "Snake",
 | |
| 		EasterEgg:                            "Easter egg",
 | |
| 		UnstagedChanges:                      "Unstaged changes",
 | |
| 		StagedChanges:                        "Staged changes",
 | |
| 		SquashMergeUncommittedTitle:          "Squash merge and leave uncommitted",
 | |
| 		SquashMergeCommittedTitle:            "Squash merge and commit",
 | |
| 		StagingTitle:                         "Main panel (staging)",
 | |
| 		MergingTitle:                         "Main panel (merging)",
 | |
| 		NormalTitle:                          "Main panel (normal)",
 | |
| 		LogTitle:                             "Log",
 | |
| 		LogXOfYTitle:                         "Log (%d of %d)",
 | |
| 		CommitSummary:                        "Commit summary",
 | |
| 		CredentialsUsername:                  "Username",
 | |
| 		CredentialsPassword:                  "Password",
 | |
| 		CredentialsPassphrase:                "Enter passphrase for SSH key",
 | |
| 		CredentialsPIN:                       "Enter PIN for SSH key",
 | |
| 		CredentialsToken:                     "Enter Token for SSH key",
 | |
| 		PassUnameWrong:                       "Password, passphrase and/or username wrong",
 | |
| 		Commit:                               "Commit",
 | |
| 		CommitTooltip:                        "Commit staged changes.",
 | |
| 		AmendLastCommit:                      "Amend last commit",
 | |
| 		AmendLastCommitTitle:                 "Amend last commit",
 | |
| 		SureToAmend:                          "Are you sure you want to amend last commit? Afterwards, you can change the commit message from the commits panel.",
 | |
| 		NoCommitToAmend:                      "There's no commit to amend.",
 | |
| 		CommitChangesWithEditor:              "Commit changes using git editor",
 | |
| 		FindBaseCommitForFixup:               "Find base commit for fixup",
 | |
| 		FindBaseCommitForFixupTooltip:        "Find the commit that your current changes are building upon, for the sake of amending/fixing up the commit. This spares you from having to look through your branch's commits one-by-one to see which commit should be amended/fixed up. See docs: <https://github.com/jesseduffield/lazygit/tree/master/docs/Fixup_Commits.md>",
 | |
| 		NoBaseCommitsFound:                   "No base commits found",
 | |
| 		MultipleBaseCommitsFoundStaged:       "Multiple base commits found. (Try staging fewer changes at once)",
 | |
| 		MultipleBaseCommitsFoundUnstaged:     "Multiple base commits found. (Try staging some of the changes)",
 | |
| 		BaseCommitIsAlreadyOnMainBranch:      "The base commit for this change is already on the main branch",
 | |
| 		BaseCommitIsNotInCurrentView:         "Base commit is not in current view",
 | |
| 		HunksWithOnlyAddedLinesWarning:       "There are ranges of only added lines in the diff; be careful to check that these belong in the found base commit.\n\nProceed?",
 | |
| 		StatusTitle:                          "Status",
 | |
| 		Execute:                              "Execute",
 | |
| 		Stage:                                "Stage",
 | |
| 		StageTooltip:                         "Toggle staged for selected file.",
 | |
| 		ToggleStagedAll:                      "Stage all",
 | |
| 		ToggleStagedAllTooltip:               "Toggle staged/unstaged for all files in working tree.",
 | |
| 		ToggleTreeView:                       "Toggle file tree view",
 | |
| 		ToggleTreeViewTooltip:                "Toggle file view between flat and tree layout. Flat layout shows all file paths in a single list, tree layout groups files by directory.\n\nThe default can be changed in the config file with the key 'gui.showFileTree'.",
 | |
| 		OpenDiffTool:                         "Open external diff tool (git difftool)",
 | |
| 		OpenMergeTool:                        "Open external merge tool",
 | |
| 		Refresh:                              "Refresh",
 | |
| 		RefreshTooltip:                       "Refresh the git state (i.e. run `git status`, `git branch`, etc in background to update the contents of panels). This does not run `git fetch`.",
 | |
| 		Push:                                 "Push",
 | |
| 		PushTooltip:                          "Push the current branch to its upstream branch. If no upstream is configured, you will be prompted to configure an upstream branch.",
 | |
| 		Pull:                                 "Pull",
 | |
| 		PullTooltip:                          "Pull changes from the remote for the current branch. If no upstream is configured, you will be prompted to configure an upstream branch.",
 | |
| 		MergeConflictsTitle:                  "Merge conflicts",
 | |
| 		MergeConflictDescription_DD:          "Conflict: this file was moved or renamed both in the current and the incoming changes, but to different destinations. I don't know which ones, but they should both show up as conflicts too (marked 'AU' and 'UA', respectively). The most likely resolution is to delete this file, and pick one of the destinations and delete the other.",
 | |
| 		MergeConflictDescription_AU:          "Conflict: this file is the destination of a move or rename in the current changes, but was moved or renamed to a different destination in the incoming changes. That other destination should also show up as a conflict (marked 'UA'), as well as the file that both were renamed from (marked 'DD').",
 | |
| 		MergeConflictDescription_UA:          "Conflict: this file is the destination of a move or rename in the incoming changes, but was moved or renamed to a different destination in the current changes. That other destination should also show up as a conflict (marked 'AU'), as well as the file that both were renamed from (marked 'DD').",
 | |
| 		MergeConflictDescription_DU:          "Conflict: this file was deleted in the current changes and modified in the incoming changes.\n\nThe most likely resolution is to delete the file after applying the incoming modifications manually to some other place in the code.",
 | |
| 		MergeConflictDescription_UD:          "Conflict: this file was modified in the current changes and deleted in incoming changes.\n\nThe most likely resolution is to delete the file after applying the current modifications manually to some other place in the code.",
 | |
| 		MergeConflictIncomingDiff:            "Incoming changes:",
 | |
| 		MergeConflictCurrentDiff:             "Current changes:",
 | |
| 		MergeConflictPressEnterToResolve:     "Press %s to resolve.",
 | |
| 		MergeConflictKeepFile:                "Keep file",
 | |
| 		MergeConflictDeleteFile:              "Delete file",
 | |
| 		Checkout:                             "Checkout",
 | |
| 		CheckoutTooltip:                      "Checkout selected item.",
 | |
| 		CantCheckoutBranchWhilePulling:       "You cannot checkout another branch while pulling the current branch",
 | |
| 		TagCheckoutTooltip:                   "Checkout the selected tag as a detached HEAD.",
 | |
| 		RemoteBranchCheckoutTooltip:          "Checkout a new local branch based on the selected remote branch, or the remote branch as a detached head.",
 | |
| 		CantPullOrPushSameBranchTwice:        "You cannot push or pull a branch while it is already being pushed or pulled",
 | |
| 		FileFilter:                           "Filter files by status",
 | |
| 		CopyToClipboardMenu:                  "Copy to clipboard",
 | |
| 		CopyFileName:                         "File name",
 | |
| 		CopyRelativeFilePath:                 "Relative path",
 | |
| 		CopyAbsoluteFilePath:                 "Absolute path",
 | |
| 		CopyFileDiffTooltip:                  "If there are staged items, this command considers only them. Otherwise, it considers all the unstaged ones.",
 | |
| 		CopySelectedDiff:                     "Diff of selected file",
 | |
| 		CopyAllFilesDiff:                     "Diff of all files",
 | |
| 		CopyFileContent:                      "Content of selected file",
 | |
| 		NoContentToCopyError:                 "Nothing to copy",
 | |
| 		FileNameCopiedToast:                  "File name copied to clipboard",
 | |
| 		FilePathCopiedToast:                  "File path copied to clipboard",
 | |
| 		FileDiffCopiedToast:                  "File diff copied to clipboard",
 | |
| 		AllFilesDiffCopiedToast:              "All files diff copied to clipboard",
 | |
| 		FileContentCopiedToast:               "File content copied to clipboard",
 | |
| 		FilterStagedFiles:                    "Show only staged files",
 | |
| 		FilterUnstagedFiles:                  "Show only unstaged files",
 | |
| 		FilterTrackedFiles:                   "Show only tracked files",
 | |
| 		FilterUntrackedFiles:                 "Show only untracked files",
 | |
| 		NoFilter:                             "No filter",
 | |
| 		FilterLabelStagedFiles:               "(only staged)",
 | |
| 		FilterLabelUnstagedFiles:             "(only unstaged)",
 | |
| 		FilterLabelTrackedFiles:              "(only tracked)",
 | |
| 		FilterLabelUntrackedFiles:            "(only untracked)",
 | |
| 		FilterLabelConflictingFiles:          "(only conflicting)",
 | |
| 		NoChangedFiles:                       "No changed files",
 | |
| 		SoftReset:                            "Soft reset",
 | |
| 		AlreadyCheckedOutBranch:              "You have already checked out this branch",
 | |
| 		SureForceCheckout:                    "Are you sure you want force checkout? You will lose all local changes",
 | |
| 		ForceCheckoutBranch:                  "Force checkout branch",
 | |
| 		BranchName:                           "Branch name",
 | |
| 		NewBranchNameBranchOff:               "New branch name (branch is off of '{{.branchName}}')",
 | |
| 		CantDeleteCheckOutBranch:             "You cannot delete the checked out branch!",
 | |
| 		DeleteBranchTitle:                    "Delete branch '{{.selectedBranchName}}'?",
 | |
| 		DeleteBranchesTitle:                  "Delete selected branches?",
 | |
| 		DeleteLocalBranch:                    "Delete local branch",
 | |
| 		DeleteLocalBranches:                  "Delete local branches",
 | |
| 		DeleteRemoteBranchPrompt:             "Are you sure you want to delete the remote branch '{{.selectedBranchName}}' from '{{.upstream}}'?",
 | |
| 		DeleteRemoteBranchesPrompt:           "Are you sure you want to delete the remote branches of the selected branches from their respective remotes?",
 | |
| 		DeleteLocalAndRemoteBranchPrompt:     "Are you sure you want to delete both '{{.localBranchName}}' from your machine, and '{{.remoteBranchName}}' from '{{.remoteName}}'?",
 | |
| 		DeleteLocalAndRemoteBranchesPrompt:   "Are you sure you want to delete both the selected branches from your machine, and their remote branches from their respective remotes?",
 | |
| 		ForceDeleteBranchTitle:               "Force delete branch",
 | |
| 		ForceDeleteBranchMessage:             "'{{.selectedBranchName}}' is not fully merged. Are you sure you want to delete it?",
 | |
| 		ForceDeleteBranchesMessage:           "Some of the selected branches are not fully merged. Are you sure you want to delete them?",
 | |
| 		RebaseBranch:                         "Rebase",
 | |
| 		RebaseBranchTooltip:                  "Rebase the checked-out branch onto the selected branch.",
 | |
| 		CantRebaseOntoSelf:                   "You cannot rebase a branch onto itself",
 | |
| 		CantMergeBranchIntoItself:            "You cannot merge a branch into itself",
 | |
| 		ForceCheckout:                        "Force checkout",
 | |
| 		ForceCheckoutTooltip:                 "Force checkout selected branch. This will discard all local changes in your working directory before checking out the selected branch.",
 | |
| 		CheckoutByName:                       "Checkout by name",
 | |
| 		CheckoutByNameTooltip:                "Checkout by name. In the input box you can enter '-' to switch to the previous branch.",
 | |
| 		CheckoutPreviousBranch:               "Checkout previous branch",
 | |
| 		RemoteBranchCheckoutTitle:            "Checkout {{.branchName}}",
 | |
| 		RemoteBranchCheckoutPrompt:           "How would you like to check out this branch?",
 | |
| 		CheckoutTypeNewBranch:                "New local branch",
 | |
| 		CheckoutTypeNewBranchTooltip:         "Checkout the remote branch as a local branch, tracking the remote branch.",
 | |
| 		CheckoutTypeDetachedHead:             "Detached head",
 | |
| 		CheckoutTypeDetachedHeadTooltip:      "Checkout the remote branch as a detached head, which can be useful if you just want to test the branch but not work on it yourself. You can still create a local branch from it later.",
 | |
| 		NewBranch:                            "New branch",
 | |
| 		NewBranchFromStashTooltip:            "Create a new branch from the selected stash entry. This works by git checking out the commit that the stash entry was created from, creating a new branch from that commit, then applying the stash entry to the new branch as an additional commit.",
 | |
| 		MoveCommitsToNewBranch:               "Move commits to new branch",
 | |
| 		MoveCommitsToNewBranchTooltip:        "Create a new branch and move the unpushed commits of the current branch to it. Useful if you meant to start new work and forgot to create a new branch first.\n\nNote that this disregards the selection, the new branch is always created either from the main branch or stacked on top of the current branch (you get to choose which).",
 | |
| 		MoveCommitsToNewBranchFromMainPrompt: "This will take all unpushed commits and move them to a new branch (off of {{.baseBranchName}}). It will then hard-reset the current branch to its upstream branch. Do you want to continue?",
 | |
| 		MoveCommitsToNewBranchMenuPrompt:     "This will take all unpushed commits and move them to a new branch. This new branch can either be created from the main branch ({{.baseBranchName}}) or stacked on top of the current branch. Which of these would you like to do?",
 | |
| 		MoveCommitsToNewBranchFromBaseItem:   "New branch from base branch (%s)",
 | |
| 		MoveCommitsToNewBranchStackedItem:    "New branch stacked on current branch (%s)",
 | |
| 		CannotMoveCommitsFromDetachedHead:    "Cannot move commits from a detached head",
 | |
| 		CannotMoveCommitsNoUpstream:          "Cannot move commits from a branch that has no upstream branch",
 | |
| 		CannotMoveCommitsBehindUpstream:      "Cannot move commits from a branch that is behind its upstream branch",
 | |
| 		CannotMoveCommitsNoUnpushedCommits:   "There are no unpushed commits to move to a new branch",
 | |
| 		NoBranchesThisRepo:                   "No branches for this repo",
 | |
| 		CommitWithoutMessageErr:              "You cannot commit without a commit message",
 | |
| 		Close:                                "Close",
 | |
| 		CloseCancel:                          "Close/Cancel",
 | |
| 		Confirm:                              "Confirm",
 | |
| 		Quit:                                 "Quit",
 | |
| 		SquashTooltip:                        "Squash the selected commit into the commit below it. The selected commit's message will be appended to the commit below it.",
 | |
| 		NoCommitsThisBranch:                  "No commits for this branch",
 | |
| 		UpdateRefHere:                        "Update branch '{{.ref}}' here",
 | |
| 		ExecCommandHere:                      "Execute the following command here:",
 | |
| 		CannotSquashOrFixupFirstCommit:       "There's no commit below to squash into",
 | |
| 		CannotSquashOrFixupMergeCommit:       "Cannot squash or fixup a merge commit",
 | |
| 		Fixup:                                "Fixup",
 | |
| 		SureFixupThisCommit:                  "Are you sure you want to 'fixup' the selected commit(s) into the commit below?",
 | |
| 		SureSquashThisCommit:                 "Are you sure you want to squash the selected commit(s) into the commit below?",
 | |
| 		Squash:                               "Squash",
 | |
| 		PickCommitTooltip:                    "Mark the selected commit to be picked (when mid-rebase). This means that the commit will be retained upon continuing the rebase.",
 | |
| 		Pick:                                 "Pick",
 | |
| 		Edit:                                 "Edit",
 | |
| 		Revert:                               "Revert",
 | |
| 		RevertCommitTooltip:                  "Create a revert commit for the selected commit, which applies the selected commit's changes in reverse.",
 | |
| 		Reword:                               "Reword",
 | |
| 		CommitRewordTooltip:                  "Reword the selected commit's message.",
 | |
| 		DropCommit:                           "Drop",
 | |
| 		DropCommitTooltip:                    "Drop the selected commit. This will remove the commit from the branch via a rebase. If the commit makes changes that later commits depend on, you may need to resolve merge conflicts.",
 | |
| 		MoveDownCommit:                       "Move commit down one",
 | |
| 		MoveUpCommit:                         "Move commit up one",
 | |
| 		CannotMoveAnyFurther:                 "Cannot move any further",
 | |
| 		CannotMoveMergeCommit:                "Cannot move a merge commit",
 | |
| 		EditCommit:                           "Edit (start interactive rebase)",
 | |
| 		EditCommitTooltip:                    "Edit the selected commit. Use this to start an interactive rebase from the selected commit. When already mid-rebase, this will mark the selected commit for editing, which means that upon continuing the rebase, the rebase will pause at the selected commit to allow you to make changes.",
 | |
| 		AmendCommitTooltip:                   "Amend commit with staged changes. If the selected commit is the HEAD commit, this will perform `git commit --amend`. Otherwise the commit will be amended via a rebase.",
 | |
| 		Amend:                                "Amend",
 | |
| 		ResetAuthor:                          "Reset author",
 | |
| 		ResetAuthorTooltip:                   "Reset the commit's author to the currently configured user. This will also renew the author timestamp",
 | |
| 		SetAuthor:                            "Set author",
 | |
| 		SetAuthorTooltip:                     "Set the author based on a prompt",
 | |
| 		AddCoAuthor:                          "Add co-author",
 | |
| 		AmendCommitAttribute:                 "Amend commit attribute",
 | |
| 		AmendCommitAttributeTooltip:          "Set/Reset commit author or set co-author.",
 | |
| 		SetAuthorPromptTitle:                 "Set author (must look like 'Name <Email>')",
 | |
| 		AddCoAuthorPromptTitle:               "Add co-author (must look like 'Name <Email>')",
 | |
| 		AddCoAuthorTooltip:                   "Add co-author using the Github/Gitlab metadata Co-authored-by.",
 | |
| 		RewordCommitEditor:                   "Reword with editor",
 | |
| 		Error:                                "Error",
 | |
| 		PickHunk:                             "Pick hunk",
 | |
| 		PickAllHunks:                         "Pick all hunks",
 | |
| 		Undo:                                 "Undo",
 | |
| 		UndoReflog:                           "Undo",
 | |
| 		RedoReflog:                           "Redo",
 | |
| 		UndoTooltip:                          "The reflog will be used to determine what git command to run to undo the last git command. This does not include changes to the working tree; only commits are taken into consideration.",
 | |
| 		RedoTooltip:                          "The reflog will be used to determine what git command to run to redo the last git command. This does not include changes to the working tree; only commits are taken into consideration.",
 | |
| 		UndoMergeResolveTooltip:              "Undo last merge conflict resolution.",
 | |
| 		DiscardAllTooltip:                    "Discard both staged and unstaged changes in '{{.path}}'.",
 | |
| 		DiscardUnstagedTooltip:               "Discard unstaged changes in '{{.path}}'.",
 | |
| 		DiscardUnstagedDisabled:              "The selected items don't have both staged and unstaged changes.",
 | |
| 		Pop:                                  "Pop",
 | |
| 		StashPopTooltip:                      "Apply the stash entry to your working directory and remove the stash entry.",
 | |
| 		Drop:                                 "Drop",
 | |
| 		StashDropTooltip:                     "Remove the stash entry from the stash list.",
 | |
| 		Apply:                                "Apply",
 | |
| 		StashApplyTooltip:                    "Apply the stash entry to your working directory.",
 | |
| 		NoStashEntries:                       "No stash entries",
 | |
| 		StashDrop:                            "Stash drop",
 | |
| 		SureDropStashEntry:                   "Are you sure you want to drop the selected stash entry(ies)?",
 | |
| 		StashPop:                             "Stash pop",
 | |
| 		SurePopStashEntry:                    "Are you sure you want to pop this stash entry?",
 | |
| 		StashApply:                           "Stash apply",
 | |
| 		SureApplyStashEntry:                  "Are you sure you want to apply this stash entry?",
 | |
| 		NoTrackedStagedFilesStash:            "You have no tracked/staged files to stash",
 | |
| 		NoFilesToStash:                       "You have no files to stash",
 | |
| 		StashChanges:                         "Stash changes",
 | |
| 		RenameStash:                          "Rename stash",
 | |
| 		RenameStashPrompt:                    "Rename stash: {{.stashName}}",
 | |
| 		OpenConfig:                           "Open config file",
 | |
| 		EditConfig:                           "Edit config file",
 | |
| 		ForcePush:                            "Force push",
 | |
| 		ForcePushPrompt:                      "Your branch has diverged from the remote branch. Press {{.cancelKey}} to cancel, or {{.confirmKey}} to force push.",
 | |
| 		ForcePushDisabled:                    "Your branch has diverged from the remote branch and you've disabled force pushing",
 | |
| 		UpdatesRejected:                      "Updates were rejected. Please fetch and examine the remote changes before pushing again.",
 | |
| 		UpdatesRejectedAndForcePushDisabled:  "Updates were rejected and you have disabled force pushing",
 | |
| 		CheckForUpdate:                       "Check for update",
 | |
| 		CheckingForUpdates:                   "Checking for updates...",
 | |
| 		UpdateAvailableTitle:                 "Update available!",
 | |
| 		UpdateAvailable:                      "Download and install version {{.newVersion}}?",
 | |
| 		UpdateInProgressWaitingStatus:        "Updating",
 | |
| 		UpdateCompletedTitle:                 "Update completed!",
 | |
| 		UpdateCompleted:                      "Update has been installed successfully. Restart lazygit for it to take effect.",
 | |
| 		FailedToRetrieveLatestVersionErr:     "Failed to retrieve version information",
 | |
| 		OnLatestVersionErr:                   "You already have the latest version",
 | |
| 		MajorVersionErr:                      "New version ({{.newVersion}}) has non-backwards compatible changes compared to the current version ({{.currentVersion}})",
 | |
| 		CouldNotFindBinaryErr:                "Could not find any binary at {{.url}}",
 | |
| 		UpdateFailedErr:                      "Update failed: {{.errMessage}}",
 | |
| 		ConfirmQuitDuringUpdateTitle:         "Currently updating",
 | |
| 		ConfirmQuitDuringUpdate:              "An update is in progress. Are you sure you want to quit?",
 | |
| 		MergeToolTitle:                       "Merge tool",
 | |
| 		MergeToolPrompt:                      "Are you sure you want to open `git mergetool`?",
 | |
| 		IntroPopupMessage:                    englishIntroPopupMessage,
 | |
| 		NonReloadableConfigWarningTitle:      "Config changed",
 | |
| 		NonReloadableConfigWarning:           englishNonReloadableConfigWarning,
 | |
| 		GitconfigParseErr:                    `Gogit failed to parse your gitconfig file due to the presence of unquoted '\' characters. Removing these should fix the issue.`,
 | |
| 		EditFile:                             `Edit file`,
 | |
| 		EditFileTooltip:                      "Open file in external editor.",
 | |
| 		OpenFile:                             `Open file`,
 | |
| 		OpenFileTooltip:                      "Open file in default application.",
 | |
| 		OpenInEditor:                         "Open in editor",
 | |
| 		IgnoreFile:                           `Add to .gitignore`,
 | |
| 		ExcludeFile:                          `Add to .git/info/exclude`,
 | |
| 		RefreshFiles:                         `Refresh files`,
 | |
| 		FocusMainView:                        "Focus main view",
 | |
| 		Merge:                                `Merge`,
 | |
| 		RegularMerge:                         "Regular merge",
 | |
| 		MergeBranchTooltip:                   "View options for merging the selected item into the current branch (regular merge, squash merge)",
 | |
| 		ConfirmQuit:                          `Are you sure you want to quit?`,
 | |
| 		SwitchRepo:                           `Switch to a recent repo`,
 | |
| 		AllBranchesLogGraph:                  `Show/cycle all branch logs`,
 | |
| 		UnsupportedGitService:                `Unsupported git service`,
 | |
| 		CreatePullRequest:                    `Create pull request`,
 | |
| 		CopyPullRequestURL:                   `Copy pull request URL to clipboard`,
 | |
| 		NoBranchOnRemote:                     `This branch doesn't exist on remote. You need to push it to remote first.`,
 | |
| 		Fetch:                                `Fetch`,
 | |
| 		FetchTooltip:                         "Fetch changes from remote.",
 | |
| 		CollapseAll:                          "Collapse all files",
 | |
| 		CollapseAllTooltip:                   "Collapse all directories in the files tree",
 | |
| 		ExpandAll:                            "Expand all files",
 | |
| 		ExpandAllTooltip:                     "Expand all directories in the file tree",
 | |
| 		DisabledInFlatView:                   "Not available in flat view",
 | |
| 		FileEnter:                            `Stage lines / Collapse directory`,
 | |
| 		FileEnterTooltip:                     "If the selected item is a file, focus the staging view so you can stage individual hunks/lines. If the selected item is a directory, collapse/expand it.",
 | |
| 		StageSelectionTooltip:                `Toggle selection staged / unstaged.`,
 | |
| 		DiscardSelection:                     `Discard`,
 | |
| 		DiscardSelectionTooltip:              "When unstaged change is selected, discard the change using `git reset`. When staged change is selected, unstage the change.",
 | |
| 		ToggleRangeSelect:                    "Toggle range select",
 | |
| 		DismissRangeSelect:                   "Dismiss range select",
 | |
| 		ToggleSelectHunk:                     "Toggle hunk selection",
 | |
| 		SelectHunk:                           "Select hunks",
 | |
| 		SelectLineByLine:                     "Select line-by-line",
 | |
| 		ToggleSelectHunkTooltip:              "Toggle line-by-line vs. hunk selection mode.",
 | |
| 		HunkStagingHint:                      englishHunkStagingHint,
 | |
| 		ToggleSelectionForPatch:              `Toggle lines in patch`,
 | |
| 		EditHunk:                             `Edit hunk`,
 | |
| 		EditHunkTooltip:                      "Edit selected hunk in external editor.",
 | |
| 		ToggleStagingView:                    "Switch view",
 | |
| 		ToggleStagingViewTooltip:             "Switch to other view (staged/unstaged changes).",
 | |
| 		ReturnToFilesPanel:                   `Return to files panel`,
 | |
| 		FastForward:                          `Fast-forward`,
 | |
| 		FastForwardTooltip:                   "Fast-forward selected branch from its upstream.",
 | |
| 		FastForwarding:                       "Fast-forwarding",
 | |
| 		FoundConflictsTitle:                  "Conflicts!",
 | |
| 		ViewConflictsMenuItem:                "View conflicts",
 | |
| 		AbortMenuItem:                        "Abort the %s",
 | |
| 		ViewMergeRebaseOptions:               "View merge/rebase options",
 | |
| 		ViewMergeRebaseOptionsTooltip:        "View options to abort/continue/skip the current merge/rebase.",
 | |
| 		ViewMergeOptions:                     "View merge options",
 | |
| 		ViewRebaseOptions:                    "View rebase options",
 | |
| 		ViewCherryPickOptions:                "View cherry-pick options",
 | |
| 		ViewRevertOptions:                    "View revert options",
 | |
| 		NotMergingOrRebasing:                 "You are currently neither rebasing nor merging",
 | |
| 		AlreadyRebasing:                      "Can't perform this action during a rebase",
 | |
| 		RecentRepos:                          "Recent repositories",
 | |
| 		MergeOptionsTitle:                    "Merge options",
 | |
| 		RebaseOptionsTitle:                   "Rebase options",
 | |
| 		CherryPickOptionsTitle:               "Cherry-pick options",
 | |
| 		RevertOptionsTitle:                   "Revert options",
 | |
| 		CommitSummaryTitle:                   "Commit summary",
 | |
| 		CommitDescriptionTitle:               "Commit description",
 | |
| 		CommitDescriptionSubTitle:            "Press {{.togglePanelKeyBinding}} to toggle focus, {{.commitMenuKeybinding}} to open menu",
 | |
| 		CommitDescriptionFooter:              "Press {{.confirmInEditorKeybinding}} to submit",
 | |
| 		CommitDescriptionFooterTwoBindings:   "Press {{.confirmInEditorKeybinding1}} or {{.confirmInEditorKeybinding2}} to submit",
 | |
| 		CommitHooksDisabledSubTitle:          "(hooks disabled)",
 | |
| 		LocalBranchesTitle:                   "Local branches",
 | |
| 		SearchTitle:                          "Search",
 | |
| 		TagsTitle:                            "Tags",
 | |
| 		MenuTitle:                            "Menu",
 | |
| 		CommitMenuTitle:                      "Commit Menu",
 | |
| 		RemotesTitle:                         "Remotes",
 | |
| 		RemoteBranchesTitle:                  "Remote branches",
 | |
| 		PatchBuildingTitle:                   "Main panel (patch building)",
 | |
| 		InformationTitle:                     "Information",
 | |
| 		SecondaryTitle:                       "Secondary",
 | |
| 		ReflogCommitsTitle:                   "Reflog",
 | |
| 		GlobalTitle:                          "Global keybindings",
 | |
| 		ConflictsResolved:                    "All merge conflicts resolved. Continue the %s?",
 | |
| 		Continue:                             "Continue",
 | |
| 		UnstagedFilesAfterConflictsResolved:  "Files have been modified since conflicts were resolved. Auto-stage them and continue?",
 | |
| 		Keybindings:                          "Keybindings",
 | |
| 		KeybindingsMenuSectionLocal:          "Local",
 | |
| 		KeybindingsMenuSectionGlobal:         "Global",
 | |
| 		KeybindingsMenuSectionNavigation:     "Navigation",
 | |
| 		RebasingTitle:                        "Rebase '{{.checkedOutBranch}}'",
 | |
| 		RebasingFromBaseCommitTitle:          "Rebase '{{.checkedOutBranch}}' from marked base",
 | |
| 		SimpleRebase:                         "Simple rebase onto '{{.ref}}'",
 | |
| 		InteractiveRebase:                    "Interactive rebase onto '{{.ref}}'",
 | |
| 		RebaseOntoBaseBranch:                 "Rebase onto base branch ({{.baseBranch}})",
 | |
| 		InteractiveRebaseTooltip:             "Begin an interactive rebase with a break at the start, so you can update the TODO commits before continuing.",
 | |
| 		RebaseOntoBaseBranchTooltip:          "Rebase the checked out branch onto its base branch (i.e. the closest main branch).",
 | |
| 		MustSelectTodoCommits:                "When rebasing, this action only works on a selection of TODO commits.",
 | |
| 		SquashMergeUncommitted:               "Squash merge '{{.selectedBranch}}' into the working tree.",
 | |
| 		SquashMergeCommitted:                 "Squash merge '{{.selectedBranch}}' into '{{.checkedOutBranch}}' as a single commit.",
 | |
| 		RegularMergeTooltip:                  "Merge '{{.selectedBranch}}' into '{{.checkedOutBranch}}'.",
 | |
| 		FwdNoUpstream:                        "Cannot fast-forward a branch with no upstream",
 | |
| 		FwdNoLocalUpstream:                   "Cannot fast-forward a branch whose remote is not registered locally",
 | |
| 		FwdCommitsToPush:                     "Cannot fast-forward a branch with commits to push",
 | |
| 		PullRequestNoUpstream:                "Cannot open a pull request for a branch with no upstream",
 | |
| 		ErrorOccurred:                        "An error occurred! Please create an issue at",
 | |
| 		ConflictLabel:                        "CONFLICT",
 | |
| 		PendingRebaseTodosSectionHeader:      "Pending rebase todos",
 | |
| 		PendingCherryPicksSectionHeader:      "Pending cherry-picks",
 | |
| 		PendingRevertsSectionHeader:          "Pending reverts",
 | |
| 		CommitsSectionHeader:                 "Commits",
 | |
| 		YouDied:                              "YOU DIED!",
 | |
| 		RewordNotSupported:                   "Rewording commits while interactively rebasing is not currently supported",
 | |
| 		ChangingThisActionIsNotAllowed:       "Changing this kind of rebase todo entry is not allowed",
 | |
| 		NotAllowedMidCherryPickOrRevert:      "This action is not allowed while cherry-picking or reverting",
 | |
| 		PickIsOnlyAllowedDuringRebase:        "This action is only allowed while rebasing",
 | |
| 		DroppingMergeRequiresSingleSelection: "Dropping a merge commit requires a single selected item",
 | |
| 		CherryPickCopy:                       "Copy (cherry-pick)",
 | |
| 		CherryPickCopyTooltip:                "Mark commit as copied. Then, within the local commits view, you can press `{{.paste}}` to paste (cherry-pick) the copied commit(s) into your checked out branch. At any time you can press `{{.escape}}` to cancel the selection.",
 | |
| 		PasteCommits:                         "Paste (cherry-pick)",
 | |
| 		SureCherryPick:                       "Are you sure you want to cherry-pick the {{.numCommits}} copied commit(s) onto this branch?",
 | |
| 		CherryPick:                           "Cherry-pick",
 | |
| 		CannotCherryPickNonCommit:            "Cannot cherry-pick this kind of todo item",
 | |
| 		Donate:                               "Donate",
 | |
| 		AskQuestion:                          "Ask Question",
 | |
| 		PrevHunk:                             "Go to previous hunk",
 | |
| 		NextHunk:                             "Go to next hunk",
 | |
| 		PrevConflict:                         "Previous conflict",
 | |
| 		NextConflict:                         "Next conflict",
 | |
| 		SelectPrevHunk:                       "Previous hunk",
 | |
| 		SelectNextHunk:                       "Next hunk",
 | |
| 		ScrollDown:                           "Scroll down",
 | |
| 		ScrollUp:                             "Scroll up",
 | |
| 		ScrollUpMainWindow:                   "Scroll up main window",
 | |
| 		ScrollDownMainWindow:                 "Scroll down main window",
 | |
| 		SuspendApp:                           "Suspend the application",
 | |
| 		CannotSuspendApp:                     "Suspending the application is not supported on Windows",
 | |
| 		AmendCommitTitle:                     "Amend commit",
 | |
| 		AmendCommitPrompt:                    "Are you sure you want to amend this commit with your staged files?",
 | |
| 		AmendCommitWithConflictsMenuPrompt:   "WARNING: you are about to amend the last finished commit with your resolved conflicts. This is very unlikely to be what you want at this point. More likely, you simply want to continue the rebase instead.\n\nDo you still want to amend the previous commit?",
 | |
| 		AmendCommitWithConflictsContinue:     "No, continue rebase",
 | |
| 		AmendCommitWithConflictsAmend:        "Yes, amend previous commit",
 | |
| 		DropCommitTitle:                      "Drop commit",
 | |
| 		DropCommitPrompt:                     "Are you sure you want to drop the selected commit(s)?",
 | |
| 		DropMergeCommitPrompt:                "Are you sure you want to drop the selected merge commit? Note that it will also drop all the commits that were merged in by it.",
 | |
| 		DropUpdateRefPrompt:                  "Are you sure you want to delete the selected update-ref todo(s)? This is irreversible except by aborting the rebase.",
 | |
| 		PullingStatus:                        "Pulling",
 | |
| 		PushingStatus:                        "Pushing",
 | |
| 		FetchingStatus:                       "Fetching",
 | |
| 		SquashingStatus:                      "Squashing",
 | |
| 		FixingStatus:                         "Fixing up",
 | |
| 		DeletingStatus:                       "Deleting",
 | |
| 		DroppingStatus:                       "Dropping",
 | |
| 		MovingStatus:                         "Moving",
 | |
| 		RebasingStatus:                       "Rebasing",
 | |
| 		MergingStatus:                        "Merging",
 | |
| 		LowercaseRebasingStatus:              "rebasing",       // lowercase because it shows up in parentheses
 | |
| 		LowercaseMergingStatus:               "merging",        // lowercase because it shows up in parentheses
 | |
| 		LowercaseCherryPickingStatus:         "cherry-picking", // lowercase because it shows up in parentheses
 | |
| 		LowercaseRevertingStatus:             "reverting",      // lowercase because it shows up in parentheses
 | |
| 		AmendingStatus:                       "Amending",
 | |
| 		CherryPickingStatus:                  "Cherry-picking",
 | |
| 		UndoingStatus:                        "Undoing",
 | |
| 		RedoingStatus:                        "Redoing",
 | |
| 		CheckingOutStatus:                    "Checking out",
 | |
| 		CommittingStatus:                     "Committing",
 | |
| 		RewordingStatus:                      "Rewording",
 | |
| 		RevertingStatus:                      "Reverting",
 | |
| 		CreatingFixupCommitStatus:            "Creating fixup commit",
 | |
| 		MovingCommitsToNewBranchStatus:       "Moving commits to new branch",
 | |
| 		CommitFiles:                          "Commit files",
 | |
| 		SubCommitsDynamicTitle:               "Commits (%s)",
 | |
| 		CommitFilesDynamicTitle:              "Diff files (%s)",
 | |
| 		RemoteBranchesDynamicTitle:           "Remote branches (%s)",
 | |
| 		ViewItemFiles:                        "View files",
 | |
| 		CommitFilesTitle:                     "Commit files",
 | |
| 		CheckoutCommitFileTooltip:            "Checkout file. This replaces the file in your working tree with the version from the selected commit.",
 | |
| 		CanOnlyDiscardFromLocalCommits:       "Changes can only be discarded from local commits",
 | |
| 		Remove:                               "Remove",
 | |
| 		DiscardOldFileChangeTooltip:          "Discard this commit's changes to this file. This runs an interactive rebase in the background, so you may get a merge conflict if a later commit also changes this file.",
 | |
| 		DiscardFileChangesTitle:              "Discard file changes",
 | |
| 		DiscardFileChangesPrompt:             "Are you sure you want to remove changes to the selected file(s) from this commit?\n\nThis action will start a rebase, reverting these file changes. Be aware that if subsequent commits depend on these changes, you may need to resolve conflicts.\nNote: This will also reset any active custom patches.",
 | |
| 		DisabledForGPG:                       "Feature not available for users using GPG.\n\nIf you are using a passphrase agent (e.g. gpg-agent) so that you don't have to type your passphrase when signing, you can enable this feature by adding\n\ngit:\n  overrideGpg: true\n\nto your lazygit config file.",
 | |
| 		CreateRepo:                           "Not in a git repository. Create a new git repository? (y/N): ",
 | |
| 		BareRepo:                             "You've attempted to open Lazygit in a bare repo but Lazygit does not yet support bare repos. Open most recent repo? (y/n) ",
 | |
| 		InitialBranch:                        "Branch name? (leave empty for git's default): ",
 | |
| 		NoRecentRepositories:                 "Must open lazygit in a git repository. No valid recent repositories. Exiting.",
 | |
| 		IncorrectNotARepository:              "The value of 'notARepository' is incorrect. It should be one of 'prompt', 'create', 'skip', or 'quit'.",
 | |
| 		AutoStashTitle:                       "Autostash?",
 | |
| 		AutoStashPrompt:                      "You must stash and pop your changes to bring them across. Do this automatically? (enter/esc)",
 | |
| 		AutoStashForUndo:                     "Auto-stashing changes for undoing to %s",
 | |
| 		AutoStashForCheckout:                 "Auto-stashing changes for checking out %s",
 | |
| 		AutoStashForNewBranch:                "Auto-stashing changes for creating new branch %s",
 | |
| 		AutoStashForMovingPatchToIndex:       "Auto-stashing changes for moving custom patch to index from %s",
 | |
| 		AutoStashForCherryPicking:            "Auto-stashing changes for cherry-picking commits",
 | |
| 		AutoStashForReverting:                "Auto-stashing changes for reverting commits",
 | |
| 		Discard:                              "Discard",
 | |
| 		DiscardFileChangesTooltip:            "View options for discarding changes to the selected file.",
 | |
| 		DiscardChangesTitle:                  "Discard changes",
 | |
| 		Cancel:                               "Cancel",
 | |
| 		DiscardAllChanges:                    "Discard all changes",
 | |
| 		DiscardUnstagedChanges:               "Discard unstaged changes",
 | |
| 		DiscardAllChangesToAllFiles:          "Nuke working tree",
 | |
| 		DiscardAnyUnstagedChanges:            "Discard unstaged changes",
 | |
| 		DiscardUntrackedFiles:                "Discard untracked files",
 | |
| 		DiscardStagedChanges:                 "Discard staged changes",
 | |
| 		HardReset:                            "Hard reset",
 | |
| 		BranchDeleteTooltip:                  "View delete options for local/remote branch.",
 | |
| 		TagDeleteTooltip:                     "View delete options for local/remote tag.",
 | |
| 		Delete:                               "Delete",
 | |
| 		Reset:                                "Reset",
 | |
| 		ResetTooltip:                         "View reset options (soft/mixed/hard) for resetting onto selected item.",
 | |
| 		ResetSoftTooltip:                     "Reset HEAD to the chosen commit, and keep the changes between the current and chosen commit as staged changes.",
 | |
| 		ResetMixedTooltip:                    "Reset HEAD to the chosen commit, and keep the changes between the current and chosen commit as unstaged changes.",
 | |
| 		ResetHardTooltip:                     "Reset HEAD to the chosen commit, and discard all changes between the current and chosen commit, as well as all current modifications in the working tree.",
 | |
| 		ResetHardConfirmation:                "Are you sure you want to do a hard reset? This will discard all uncommitted changes (both staged and unstaged), which is not undoable.",
 | |
| 		ViewResetOptions:                     `Reset`,
 | |
| 		FileResetOptionsTooltip:              "View reset options for working tree (e.g. nuking the working tree).",
 | |
| 		FixupTooltip:                         "Meld the selected commit into the commit below it. Similar to squash, but the selected commit's message will be discarded.",
 | |
| 		CreateFixupCommit:                    "Create fixup commit",
 | |
| 		CreateFixupCommitTooltip:             "Create 'fixup!' commit for the selected commit. Later on, you can press `{{.squashAbove}}` on this same commit to apply all above fixup commits.",
 | |
| 		CreateAmendCommit:                    `Create "amend!" commit`,
 | |
| 		FixupMenu_Fixup:                      "fixup! commit",
 | |
| 		FixupMenu_FixupTooltip:               "Lets you fixup another commit and keep the original commit's message.",
 | |
| 		FixupMenu_AmendWithChanges:           "amend! commit with changes",
 | |
| 		FixupMenu_AmendWithChangesTooltip:    "Lets you fixup another commit and also change its commit message.",
 | |
| 		FixupMenu_AmendWithoutChanges:        "amend! commit without changes (pure reword)",
 | |
| 		FixupMenu_AmendWithoutChangesTooltip: "Lets you change the commit message of another commit without changing its content.",
 | |
| 		SquashAboveCommits:                   "Apply fixup commits",
 | |
| 		SquashAboveCommitsTooltip:            `Squash all 'fixup!' commits, either above the selected commit, or all in current branch (autosquash).`,
 | |
| 		SquashCommitsAboveSelectedTooltip:    `Squash all 'fixup!' commits above the selected commit (autosquash).`,
 | |
| 		SquashCommitsInCurrentBranchTooltip:  `Squash all 'fixup!' commits in the current branch (autosquash).`,
 | |
| 		SquashCommitsInCurrentBranch:         "In current branch",
 | |
| 		SquashCommitsAboveSelectedCommit:     "Above the selected commit",
 | |
| 		CannotSquashCommitsInCurrentBranch:   "Cannot squash commits in current branch: the HEAD commit is a merge commit or is present on the main branch.",
 | |
| 		ExecuteShellCommand:                  "Execute shell command",
 | |
| 		ExecuteShellCommandTooltip:           "Bring up a prompt where you can enter a shell command to execute.",
 | |
| 		ShellCommand:                         "Shell command:",
 | |
| 		CommitChangesWithoutHook:             "Commit changes without pre-commit hook",
 | |
| 		ResetTo:                              `Reset to`,
 | |
| 		PressEnterToReturn:                   "Press enter to return to lazygit",
 | |
| 		ViewStashOptions:                     "View stash options",
 | |
| 		ViewStashOptionsTooltip:              "View stash options (e.g. stash all, stash staged, stash unstaged).",
 | |
| 		Stash:                                "Stash",
 | |
| 		StashTooltip:                         "Stash all changes. For other variations of stashing, use the view stash options keybinding.",
 | |
| 		StashAllChanges:                      "Stash all changes",
 | |
| 		StashStagedChanges:                   "Stash staged changes",
 | |
| 		StashAllChangesKeepIndex:             "Stash all changes and keep index",
 | |
| 		StashUnstagedChanges:                 "Stash unstaged changes",
 | |
| 		StashIncludeUntrackedChanges:         "Stash all changes including untracked files",
 | |
| 		StashOptions:                         "Stash options",
 | |
| 		NotARepository:                       "Error: must be run inside a git repository",
 | |
| 		WorkingDirectoryDoesNotExist:         "Error: the current working directory does not exist",
 | |
| 		ScrollLeft:                           "Scroll left",
 | |
| 		ScrollRight:                          "Scroll right",
 | |
| 		DiscardPatch:                         "Discard patch",
 | |
| 		DiscardPatchConfirm:                  "You can only build a patch from one commit/stash-entry at a time. Discard current patch?",
 | |
| 		CantPatchWhileRebasingError:          "You cannot build a patch or run patch commands while in a merging or rebasing state",
 | |
| 		ToggleAddToPatch:                     "Toggle file included in patch",
 | |
| 		ToggleAddToPatchTooltip:              "Toggle whether the file is included in the custom patch. See {{.doc}}.",
 | |
| 		ToggleAllInPatch:                     "Toggle all files",
 | |
| 		ToggleAllInPatchTooltip:              "Add/remove all commit's files to custom patch. See {{.doc}}.",
 | |
| 		UpdatingPatch:                        "Updating patch",
 | |
| 		ViewPatchOptions:                     "View custom patch options",
 | |
| 		PatchOptionsTitle:                    "Patch options",
 | |
| 		NoPatchError:                         "No patch created yet. To start building a patch, use 'space' on a commit file or enter to add specific lines",
 | |
| 		EmptyPatchError:                      "Patch is still empty. Add some files or lines to your patch first.",
 | |
| 		EnterCommitFile:                      "Enter file / Toggle directory collapsed",
 | |
| 		EnterCommitFileTooltip:               "If a file is selected, enter the file so that you can add/remove individual lines to the custom patch. If a directory is selected, toggle the directory.",
 | |
| 		ExitCustomPatchBuilder:               `Exit custom patch builder`,
 | |
| 		ExitFocusedMainView:                  "Exit back to side panel",
 | |
| 		EnterUpstream:                        `Enter upstream as '<remote> <branchname>'`,
 | |
| 		InvalidUpstream:                      "Invalid upstream. Must be in the format '<remote> <branchname>'",
 | |
| 		NewRemote:                            `New remote`,
 | |
| 		NewRemoteName:                        `New remote name:`,
 | |
| 		NewRemoteUrl:                         `New remote url:`,
 | |
| 		ViewBranches:                         "View branches",
 | |
| 		EditRemoteName:                       `Enter updated remote name for {{.remoteName}}:`,
 | |
| 		EditRemoteUrl:                        `Enter updated remote url for {{.remoteName}}:`,
 | |
| 		RemoveRemote:                         `Remove remote`,
 | |
| 		RemoveRemoteTooltip:                  `Remove the selected remote. Any local branches tracking a remote branch from the remote will be unaffected.`,
 | |
| 		RemoveRemotePrompt:                   "Are you sure you want to remove remote?",
 | |
| 		DeleteRemoteBranch:                   "Delete remote branch",
 | |
| 		DeleteRemoteBranches:                 "Delete remote branches",
 | |
| 		DeleteRemoteBranchTooltip:            "Delete the remote branch from the remote.",
 | |
| 		DeleteLocalAndRemoteBranch:           "Delete local and remote branch",
 | |
| 		DeleteLocalAndRemoteBranches:         "Delete local and remote branches",
 | |
| 		SetAsUpstream:                        "Set as upstream",
 | |
| 		SetAsUpstreamTooltip:                 "Set the selected remote branch as the upstream of the checked-out branch.",
 | |
| 		SetUpstream:                          "Set upstream of selected branch",
 | |
| 		UnsetUpstream:                        "Unset upstream of selected branch",
 | |
| 		ViewDivergenceFromUpstream:           "View divergence from upstream",
 | |
| 		ViewDivergenceFromBaseBranch:         "View divergence from base branch ({{.baseBranch}})",
 | |
| 		CouldNotDetermineBaseBranch:          "Couldn't determine base branch",
 | |
| 		DivergenceSectionHeaderLocal:         "Local",
 | |
| 		DivergenceSectionHeaderRemote:        "Remote",
 | |
| 		ViewUpstreamResetOptions:             "Reset checked-out branch onto {{.upstream}}",
 | |
| 		ViewUpstreamResetOptionsTooltip:      "View options for resetting the checked-out branch onto {{upstream}}. Note: this will not reset the selected branch onto the upstream, it will reset the checked-out branch onto the upstream.",
 | |
| 		ViewUpstreamRebaseOptions:            "Rebase checked-out branch onto {{.upstream}}",
 | |
| 		ViewUpstreamRebaseOptionsTooltip:     "View options for rebasing the checked-out branch onto {{upstream}}. Note: this will not rebase the selected branch onto the upstream, it will rebase the checked-out branch onto the upstream.",
 | |
| 		UpstreamGenericName:                  "upstream of selected branch",
 | |
| 		SetUpstreamTitle:                     "Set upstream branch",
 | |
| 		SetUpstreamMessage:                   "Are you sure you want to set the upstream branch of '{{.checkedOut}}' to '{{.selected}}'?",
 | |
| 		EditRemoteTooltip:                    "Edit the selected remote's name or URL.",
 | |
| 		TagCommit:                            "Tag commit",
 | |
| 		TagCommitTooltip:                     "Create a new tag pointing at the selected commit. You'll be prompted to enter a tag name and optional description.",
 | |
| 		TagNameTitle:                         "Tag name",
 | |
| 		TagMessageTitle:                      "Tag description",
 | |
| 		AnnotatedTag:                         "Annotated tag",
 | |
| 		LightweightTag:                       "Lightweight tag",
 | |
| 		DeleteTagTitle:                       "Delete tag '{{.tagName}}'?",
 | |
| 		DeleteLocalTag:                       "Delete local tag",
 | |
| 		DeleteRemoteTag:                      "Delete remote tag",
 | |
| 		DeleteLocalAndRemoteTag:              "Delete local and remote tag",
 | |
| 		RemoteTagDeletedMessage:              "Remote tag deleted",
 | |
| 		SelectRemoteTagUpstream:              "Remote from which to remove tag '{{.tagName}}':",
 | |
| 		DeleteRemoteTagPrompt:                "Are you sure you want to delete the remote tag '{{.tagName}}' from '{{.upstream}}'?",
 | |
| 		DeleteLocalAndRemoteTagPrompt:        "Are you sure you want to delete '{{.tagName}}' from both your machine and from '{{.upstream}}'?",
 | |
| 		PushTagTitle:                         "Remote to push tag '{{.tagName}}' to:",
 | |
| 		// Using 'push tag' rather than just 'push' to disambiguate from a global push
 | |
| 		PushTag:                        "Push tag",
 | |
| 		PushTagTooltip:                 "Push the selected tag to a remote. You'll be prompted to select a remote.",
 | |
| 		NewTag:                         "New tag",
 | |
| 		NewTagTooltip:                  "Create new tag from current commit. You'll be prompted to enter a tag name and optional description.",
 | |
| 		CreatingTag:                    "Creating tag",
 | |
| 		ForceTag:                       "Force Tag",
 | |
| 		ForceTagPrompt:                 "The tag '{{.tagName}}' exists already. Press {{.cancelKey}} to cancel, or {{.confirmKey}} to overwrite.",
 | |
| 		FetchRemoteTooltip:             "Fetch updates from the remote repository. This retrieves new commits and branches without merging them into your local branches.",
 | |
| 		CheckoutCommitTooltip:          "Checkout the selected commit as a detached HEAD.",
 | |
| 		NoBranchesFoundAtCommitTooltip: "No branches found at selected commit.",
 | |
| 		GitFlowOptions:                 "Show git-flow options",
 | |
| 		NotAGitFlowBranch:              "This does not seem to be a git flow branch",
 | |
| 		NewGitFlowBranchPrompt:         "New {{.branchType}} name:",
 | |
| 
 | |
| 		IgnoreTracked:                    "Ignore tracked file",
 | |
| 		IgnoreTrackedPrompt:              "Are you sure you want to ignore a tracked file?",
 | |
| 		ExcludeTracked:                   "Exclude tracked file",
 | |
| 		ExcludeTrackedPrompt:             "Are you sure you want to exclude a tracked file?",
 | |
| 		ViewResetToUpstreamOptions:       "View upstream reset options",
 | |
| 		NextScreenMode:                   "Next screen mode (normal/half/fullscreen)",
 | |
| 		PrevScreenMode:                   "Prev screen mode",
 | |
| 		CyclePagers:                      "Cycle pagers",
 | |
| 		CyclePagersTooltip:               "Choose the next pager in the list of configured pagers",
 | |
| 		CyclePagersDisabledReason:        "No other pagers configured",
 | |
| 		StartSearch:                      "Search the current view by text",
 | |
| 		StartFilter:                      "Filter the current view by text",
 | |
| 		KeybindingsLegend:                "Legend: `<c-b>` means ctrl+b, `<a-b>` means alt+b, `B` means shift+b",
 | |
| 		RenameBranch:                     "Rename branch",
 | |
| 		BranchUpstreamOptionsTitle:       "Upstream options",
 | |
| 		ViewBranchUpstreamOptions:        "View upstream options",
 | |
| 		ViewBranchUpstreamOptionsTooltip: "View options relating to the branch's upstream e.g. setting/unsetting the upstream and resetting to the upstream.",
 | |
| 		UpstreamNotSetError:              "The selected branch has no upstream (or the upstream is not stored locally)",
 | |
| 		UpstreamsNotSetError:             "Some of the selected branches have no upstream (or the upstream is not stored locally)",
 | |
| 		Upstream:                         "Upstream",
 | |
| 		NewBranchNamePrompt:              "Enter new branch name for branch",
 | |
| 		RenameBranchWarning:              "This branch is tracking a remote. This action will only rename the local branch name, not the name of the remote branch. Continue?",
 | |
| 		OpenKeybindingsMenu:              "Open keybindings menu",
 | |
| 		ResetCherryPick:                  "Reset copied (cherry-picked) commits selection",
 | |
| 		ResetCherryPickShort:             "Reset copied commits",
 | |
| 		NextTab:                          "Next tab",
 | |
| 		PrevTab:                          "Previous tab",
 | |
| 		CantUndoWhileRebasing:            "Can't undo while rebasing",
 | |
| 		CantRedoWhileRebasing:            "Can't redo while rebasing",
 | |
| 		MustStashWarning:                 "Pulling a patch out into the index requires stashing and unstashing your changes. If something goes wrong, you'll be able to access your files from the stash. Continue?",
 | |
| 		MustStashTitle:                   "Must stash",
 | |
| 		ConfirmationTitle:                "Confirmation panel",
 | |
| 		PromptTitle:                      "Input prompt",
 | |
| 		PrevPage:                         "Previous page",
 | |
| 		NextPage:                         "Next page",
 | |
| 		GotoTop:                          "Scroll to top",
 | |
| 		GotoBottom:                       "Scroll to bottom",
 | |
| 		FilteringBy:                      "Filtering by",
 | |
| 		ResetInParentheses:               "(Reset)",
 | |
| 		OpenFilteringMenu:                "View filter options",
 | |
| 		OpenFilteringMenuTooltip:         "View options for filtering the commit log, so that only commits matching the filter are shown.",
 | |
| 		FilterBy:                         "Filter by",
 | |
| 		ExitFilterMode:                   "Stop filtering",
 | |
| 		FilterPathOption:                 "Enter path to filter by",
 | |
| 		FilterAuthorOption:               "Enter author to filter by",
 | |
| 		EnterFileName:                    "Enter path:",
 | |
| 		EnterAuthor:                      "Enter author:",
 | |
| 		FilteringMenuTitle:               "Filtering",
 | |
| 		WillCancelExistingFilterTooltip:  "Note: this will cancel the existing filter",
 | |
| 		MustExitFilterModeTitle:          "Command not available",
 | |
| 		MustExitFilterModePrompt:         "Command not available in filter-by-path mode. Exit filter-by-path mode?",
 | |
| 		Diff:                             "Diff",
 | |
| 		EnterRefToDiff:                   "Enter ref to diff",
 | |
| 		EnterRefName:                     "Enter ref:",
 | |
| 		ExitDiffMode:                     "Exit diff mode",
 | |
| 		DiffingMenuTitle:                 "Diffing",
 | |
| 		SwapDiff:                         "Reverse diff direction",
 | |
| 		ViewDiffingOptions:               "View diffing options",
 | |
| 		ViewDiffingOptionsTooltip:        "View options relating to diffing two refs e.g. diffing against selected ref, entering ref to diff against, and reversing the diff direction.",
 | |
| 		CancelDiffingMode:                "Cancel diffing mode",
 | |
| 		// the actual view is the extras view which I intend to give more tabs in future but for now we'll only mention the command log part
 | |
| 		OpenCommandLogMenu:                       "View command log options",
 | |
| 		OpenCommandLogMenuTooltip:                "View options for the command log e.g. show/hide the command log and focus the command log.",
 | |
| 		ShowingGitDiff:                           "Showing output for:",
 | |
| 		ShowingDiffForRange:                      "Showing diff for range",
 | |
| 		CommitDiff:                               "Commit diff",
 | |
| 		CopyCommitHashToClipboard:                "Copy commit hash to clipboard",
 | |
| 		CommitHash:                               "Commit hash",
 | |
| 		CommitURL:                                "Commit URL",
 | |
| 		PasteCommitMessageFromClipboard:          "Paste commit message from clipboard",
 | |
| 		SurePasteCommitMessage:                   "Pasting will overwrite the current commit message, continue?",
 | |
| 		CommitMessage:                            "Commit message (subject and body)",
 | |
| 		CommitMessageBody:                        "Commit message body",
 | |
| 		CommitSubject:                            "Commit subject",
 | |
| 		CommitAuthor:                             "Commit author",
 | |
| 		CommitTags:                               "Commit tags",
 | |
| 		CopyCommitAttributeToClipboard:           "Copy commit attribute to clipboard",
 | |
| 		CopyCommitAttributeToClipboardTooltip:    "Copy commit attribute to clipboard (e.g. hash, URL, diff, message, author).",
 | |
| 		CopyBranchNameToClipboard:                "Copy branch name to clipboard",
 | |
| 		CopyTagToClipboard:                       "Copy tag to clipboard",
 | |
| 		CopyPathToClipboard:                      "Copy path to clipboard",
 | |
| 		CopySelectedTextToClipboard:              "Copy selected text to clipboard",
 | |
| 		CommitPrefixPatternError:                 "Error in commitPrefix pattern",
 | |
| 		NoFilesStagedTitle:                       "No files staged",
 | |
| 		NoFilesStagedPrompt:                      "You have not staged any files. Commit all files?",
 | |
| 		BranchNotFoundTitle:                      "Branch not found",
 | |
| 		BranchNotFoundPrompt:                     "Branch not found. Create a new branch named",
 | |
| 		BranchUnknown:                            "Branch unknown",
 | |
| 		DiscardChangeTitle:                       "Discard change",
 | |
| 		DiscardChangePrompt:                      "Are you sure you want to discard this change (git reset)? It is irreversible.\nTo disable this dialogue set the config key of 'gui.skipDiscardChangeWarning' to true",
 | |
| 		CreateNewBranchFromCommit:                "Create new branch off of commit",
 | |
| 		BuildingPatch:                            "Building patch",
 | |
| 		ViewCommits:                              "View commits",
 | |
| 		MinGitVersionError:                       "Git version must be at least %s. Please upgrade your git version.",
 | |
| 		RunningCustomCommandStatus:               "Running custom command",
 | |
| 		SubmoduleStashAndReset:                   "Stash uncommitted submodule changes and update",
 | |
| 		AndResetSubmodules:                       "And reset submodules",
 | |
| 		Enter:                                    "Enter",
 | |
| 		EnterSubmoduleTooltip:                    "Enter submodule. After entering the submodule, you can press `{{.escape}}` to escape back to the parent repo.",
 | |
| 		BackToParentRepo:                         "Back to parent repo",
 | |
| 		CopySubmoduleNameToClipboard:             "Copy submodule name to clipboard",
 | |
| 		RemoveSubmodule:                          "Remove submodule",
 | |
| 		RemoveSubmodulePrompt:                    "Are you sure you want to remove submodule '%s' and its corresponding directory? This is irreversible.",
 | |
| 		RemoveSubmoduleTooltip:                   "Remove the selected submodule and its corresponding directory.",
 | |
| 		ResettingSubmoduleStatus:                 "Resetting submodule",
 | |
| 		NewSubmoduleName:                         "New submodule name:",
 | |
| 		NewSubmoduleUrl:                          "New submodule URL:",
 | |
| 		NewSubmodulePath:                         "New submodule path:",
 | |
| 		NewSubmodule:                             "New submodule",
 | |
| 		AddingSubmoduleStatus:                    "Adding submodule",
 | |
| 		UpdateSubmoduleUrl:                       "Update URL for submodule '%s'",
 | |
| 		UpdatingSubmoduleUrlStatus:               "Updating URL",
 | |
| 		EditSubmoduleUrl:                         "Update submodule URL",
 | |
| 		InitializingSubmoduleStatus:              "Initializing submodule",
 | |
| 		InitSubmoduleTooltip:                     "Initialize the selected submodule to prepare for fetching. You probably want to follow this up by invoking the 'update' action to fetch the submodule.",
 | |
| 		Update:                                   "Update",
 | |
| 		Initialize:                               "Initialize",
 | |
| 		SubmoduleUpdateTooltip:                   "Update selected submodule.",
 | |
| 		UpdatingSubmoduleStatus:                  "Updating submodule",
 | |
| 		BulkInitSubmodules:                       "Bulk init submodules",
 | |
| 		BulkUpdateSubmodules:                     "Bulk update submodules",
 | |
| 		BulkDeinitSubmodules:                     "Bulk deinit submodules",
 | |
| 		BulkUpdateRecursiveSubmodules:            "Bulk init and update submodules recursively",
 | |
| 		ViewBulkSubmoduleOptions:                 "View bulk submodule options",
 | |
| 		BulkSubmoduleOptions:                     "Bulk submodule options",
 | |
| 		RunningCommand:                           "Running command",
 | |
| 		SubCommitsTitle:                          "Sub-commits",
 | |
| 		ExitSubview:                              "Exit subview",
 | |
| 		SubmodulesTitle:                          "Submodules",
 | |
| 		NavigationTitle:                          "List panel navigation",
 | |
| 		SuggestionsCheatsheetTitle:               "Suggestions",
 | |
| 		SuggestionsTitle:                         "Suggestions (press %s to focus)",
 | |
| 		SuggestionsSubtitle:                      "(press %s to delete, %s to edit)",
 | |
| 		ExtrasTitle:                              "Command log",
 | |
| 		PullRequestURLCopiedToClipboard:          "Pull request URL copied to clipboard",
 | |
| 		CommitDiffCopiedToClipboard:              "Commit diff copied to clipboard",
 | |
| 		CommitURLCopiedToClipboard:               "Commit URL copied to clipboard",
 | |
| 		CommitMessageCopiedToClipboard:           "Commit message copied to clipboard",
 | |
| 		CommitMessageBodyCopiedToClipboard:       "Commit message body copied to clipboard",
 | |
| 		CommitSubjectCopiedToClipboard:           "Commit subject copied to clipboard",
 | |
| 		CommitAuthorCopiedToClipboard:            "Commit author copied to clipboard",
 | |
| 		CommitTagsCopiedToClipboard:              "Commit tags copied to clipboard",
 | |
| 		CommitHasNoTags:                          "Commit has no tags",
 | |
| 		CommitHasNoMessageBody:                   "Commit has no message body",
 | |
| 		PatchCopiedToClipboard:                   "Patch copied to clipboard",
 | |
| 		MessageCopiedToClipboard:                 "Message copied to clipboard",
 | |
| 		CopiedToClipboard:                        "copied to clipboard",
 | |
| 		ErrCannotEditDirectory:                   "Cannot edit directories: you can only edit individual files",
 | |
| 		ErrCannotCopyContentOfDirectory:          "Cannot copy content of directories: you can only copy content of individual files",
 | |
| 		ErrStageDirWithInlineMergeConflicts:      "Cannot stage/unstage directory containing files with inline merge conflicts. Please fix up the merge conflicts first",
 | |
| 		ErrRepositoryMovedOrDeleted:              "Cannot find repo. It might have been moved or deleted ¯\\_(ツ)_/¯",
 | |
| 		CommandLog:                               "Command log",
 | |
| 		ErrWorktreeMovedOrRemoved:                "Cannot find worktree. It might have been moved or removed ¯\\_(ツ)_/¯",
 | |
| 		ToggleShowCommandLog:                     "Toggle show/hide command log",
 | |
| 		FocusCommandLog:                          "Focus command log",
 | |
| 		CommandLogHeader:                         "You can hide/focus this panel by pressing '%s'\n",
 | |
| 		RandomTip:                                "Random tip",
 | |
| 		ToggleWhitespaceInDiffView:               "Toggle whitespace",
 | |
| 		ToggleWhitespaceInDiffViewTooltip:        "Toggle whether or not whitespace changes are shown in the diff view.\n\nThe default can be changed in the config file with the key 'git.ignoreWhitespaceInDiffView'.",
 | |
| 		IgnoreWhitespaceDiffViewSubTitle:         "(ignoring whitespace)",
 | |
| 		IgnoreWhitespaceNotSupportedHere:         "Ignoring whitespace is not supported in this view",
 | |
| 		IncreaseContextInDiffView:                "Increase diff context size",
 | |
| 		IncreaseContextInDiffViewTooltip:         "Increase the amount of the context shown around changes in the diff view.\n\nThe default can be changed in the config file with the key 'git.diffContextSize'.",
 | |
| 		DecreaseContextInDiffView:                "Decrease diff context size",
 | |
| 		DecreaseContextInDiffViewTooltip:         "Decrease the amount of the context shown around changes in the diff view.\n\nThe default can be changed in the config file with the key 'git.diffContextSize'.",
 | |
| 		DiffContextSizeChanged:                   "Changed diff context size to %d",
 | |
| 		IncreaseRenameSimilarityThresholdTooltip: "Increase the similarity threshold for a deletion and addition pair to be treated as a rename.\n\nThe default can be changed in the config file with the key 'git.renameSimilarityThreshold'.",
 | |
| 		IncreaseRenameSimilarityThreshold:        "Increase rename similarity threshold",
 | |
| 		DecreaseRenameSimilarityThresholdTooltip: "Decrease the similarity threshold for a deletion and addition pair to be treated as a rename.\n\nThe default can be changed in the config file with the key 'git.renameSimilarityThreshold'.",
 | |
| 		DecreaseRenameSimilarityThreshold:        "Decrease rename similarity threshold",
 | |
| 		RenameSimilarityThresholdChanged:         "Changed rename similarity threshold to %d%%",
 | |
| 		CreatePullRequestOptions:                 "View create pull request options",
 | |
| 		DefaultBranch:                            "Default branch",
 | |
| 		SelectBranch:                             "Select branch",
 | |
| 		SelectTargetRemote:                       "Select target remote",
 | |
| 		NoValidRemoteName:                        "A remote named '%s' does not exist",
 | |
| 		SelectConfigFile:                         "Select config file",
 | |
| 		NoConfigFileFoundErr:                     "No config file found",
 | |
| 		LoadingFileSuggestions:                   "Loading file suggestions",
 | |
| 		LoadingCommits:                           "Loading commits",
 | |
| 		MustSpecifyOriginError:                   "Must specify a remote if specifying a branch",
 | |
| 		GitOutput:                                "Git output:",
 | |
| 		GitCommandFailed:                         "Git command failed. Check command log for details (open with %s)",
 | |
| 		AbortTitle:                               "Abort %s",
 | |
| 		AbortPrompt:                              "Are you sure you want to abort the current %s?",
 | |
| 		OpenLogMenu:                              "View log options",
 | |
| 		OpenLogMenuTooltip:                       "View options for commit log e.g. changing sort order, hiding the git graph, showing the whole git graph.",
 | |
| 		LogMenuTitle:                             "Commit Log Options",
 | |
| 		ToggleShowGitGraphAll:                    "Toggle show whole git graph (pass the `--all` flag to `git log`)",
 | |
| 		ShowGitGraph:                             "Show git graph",
 | |
| 		ShowGitGraphTooltip:                      "Show or hide the git graph in the commit log.\n\nThe default can be changed in the config file with the key 'git.log.showGraph'.",
 | |
| 		SortOrder:                                "Sort order",
 | |
| 		SortOrderPromptLocalBranches:             "The default sort order for local branches can be set in the config file with the key 'git.localBranchSortOrder'.",
 | |
| 		SortOrderPromptRemoteBranches:            "The default sort order for remote branches can be set in the config file with the key 'git.remoteBranchSortOrder'.",
 | |
| 		SortAlphabetical:                         "Alphabetical",
 | |
| 		SortByDate:                               "Date",
 | |
| 		SortByRecency:                            "Recency",
 | |
| 		SortBasedOnReflog:                        "(based on reflog)",
 | |
| 		SortCommits:                              "Commit sort order",
 | |
| 		SortCommitsTooltip:                       "Change the sort order of the commits in the commit log.\n\nThe default can be changed in the config file with the key 'git.log.sortOrder'.",
 | |
| 		CantChangeContextSizeError:               "Cannot change context while in patch building mode because we were too lazy to support it when releasing the feature. If you really want it, please let us know!",
 | |
| 		OpenCommitInBrowser:                      "Open commit in browser",
 | |
| 		ViewBisectOptions:                        "View bisect options",
 | |
| 		ConfirmRevertCommit:                      "Are you sure you want to revert {{.selectedCommit}}?",
 | |
| 		ConfirmRevertCommitRange:                 "Are you sure you want to revert the selected commits?",
 | |
| 		RewordInEditorTitle:                      "Reword in editor",
 | |
| 		RewordInEditorPrompt:                     "Are you sure you want to reword this commit in your editor?",
 | |
| 		HardResetAutostashPrompt:                 "Are you sure you want to hard reset to '%s'? An auto-stash will be performed if necessary.",
 | |
| 		SoftResetPrompt:                          "Are you sure you want to soft reset to '%s'?",
 | |
| 		CheckoutAutostashPrompt:                  "Are you sure you want to checkout '%s'? An auto-stash will be performed if necessary.",
 | |
| 		UpstreamGone:                             "(upstream gone)",
 | |
| 		NukeDescription:                          "If you want to make all the changes in the worktree go away, this is the way to do it. If there are dirty submodule changes this will stash those changes in the submodule(s).",
 | |
| 		NukeTreeConfirmation:                     "Are you sure you want to nuke the working tree? This will discard all changes in the worktree (staged, unstaged and untracked), which is not undoable.",
 | |
| 		DiscardStagedChangesDescription:          "This will create a new stash entry containing only staged files and then drop it, so that the working tree is left with only unstaged changes",
 | |
| 		EmptyOutput:                              "<Empty output>",
 | |
| 		Patch:                                    "Patch",
 | |
| 		CustomPatch:                              "Custom patch",
 | |
| 		CommitsCopied:                            "commits copied", // lowercase because it's used in a sentence
 | |
| 		CommitCopied:                             "commit copied",  // lowercase because it's used in a sentence
 | |
| 		ResetPatch:                               "Reset patch",
 | |
| 		ResetPatchTooltip:                        "Clear the current patch.",
 | |
| 		ApplyPatch:                               "Apply patch",
 | |
| 		ApplyPatchTooltip:                        "Apply the current patch to the working tree.",
 | |
| 		ApplyPatchInReverse:                      "Apply patch in reverse",
 | |
| 		ApplyPatchInReverseTooltip:               "Apply the current patch in reverse to the working tree.",
 | |
| 		RemovePatchFromOriginalCommit:            "Remove patch from original commit (%s)",
 | |
| 		RemovePatchFromOriginalCommitTooltip:     "Remove the current patch from its commit. This is achieved by starting an interactive rebase at the commit, applying the patch in reverse, and then continuing the rebase. If later commits depend on the patch, you may need to resolve conflicts.",
 | |
| 		MovePatchOutIntoIndex:                    "Move patch out into index",
 | |
| 		MovePatchOutIntoIndexTooltip:             "Move the patch out of its commit and into the index. This is achieved by starting an interactive rebase at the commit, applying the patch in reverse, continuing the rebase to completion, and then applying the patch to the index. If later commits depend on the patch, you may need to resolve conflicts.",
 | |
| 		MovePatchIntoNewCommit:                   "Move patch into new commit after the original commit",
 | |
| 		MovePatchIntoNewCommitTooltip:            "Move the patch out of its commit and into a new commit sitting on top of the original commit. This is achieved by starting an interactive rebase at the original commit, applying the patch in reverse, then applying the patch to the index and committing it as a new commit, before continuing the rebase to completion. If later commits depend on the patch, you may need to resolve conflicts.",
 | |
| 		MovePatchIntoNewCommitBefore:             "Move patch into new commit before the original commit",
 | |
| 		MovePatchIntoNewCommitBeforeTooltip:      "Move the patch out of its commit and into a new commit before the original commit. This works best when the custom patch contains only entire hunks or even entire files; if it contains partial hunks, you are likely to get conflicts.",
 | |
| 		MovePatchToSelectedCommit:                "Move patch to selected commit (%s)",
 | |
| 		MovePatchToSelectedCommitTooltip:         "Move the patch out of its original commit and into the selected commit. This is achieved by starting an interactive rebase at the original commit, applying the patch in reverse, then continuing the rebase up to the selected commit, before applying the patch forward and amending the selected commit. The rebase is then continued to completion. If commits between the source and destination commit depend on the patch, you may need to resolve conflicts.",
 | |
| 		CopyPatchToClipboard:                     "Copy patch to clipboard",
 | |
| 		MustStageFilesAffectedByPatchTitle:       "Must stage files",
 | |
| 		MustStageFilesAffectedByPatchWarning:     "Applying a patch to the index requires staging the unstaged files that are affected by the patch. Note that you might get conflicts when applying the patch. Continue?",
 | |
| 		NoMatchesFor:                             "No matches for '%s' %s",
 | |
| 		ExitSearchMode:                           "%s: Exit search mode",
 | |
| 		ExitTextFilterMode:                       "%s: Exit filter mode",
 | |
| 		MatchesFor:                               "matches for '%s' (%d of %d) %s", // lowercase because it's after other text
 | |
| 		SearchKeybindings:                        "%s: Next match, %s: Previous match, %s: Exit search mode",
 | |
| 		SearchPrefix:                             "Search: ",
 | |
| 		FilterPrefix:                             "Filter: ",
 | |
| 		FilterPrefixMenu:                         "Filter (prepend '@' to filter keybindings): ",
 | |
| 		WorktreesTitle:                           "Worktrees",
 | |
| 		WorktreeTitle:                            "Worktree",
 | |
| 		Switch:                                   "Switch",
 | |
| 		SwitchToWorktree:                         "Switch to worktree",
 | |
| 		SwitchToWorktreeTooltip:                  "Switch to the selected worktree.",
 | |
| 		AlreadyCheckedOutByWorktree:              "This branch is checked out by worktree {{.worktreeName}}. Do you want to switch to that worktree?",
 | |
| 		BranchCheckedOutByWorktree:               "Branch {{.branchName}} is checked out by worktree {{.worktreeName}}",
 | |
| 		SomeBranchesCheckedOutByWorktreeError:    "Some of the selected branches are checked out by other worktrees. Select them one by one to delete them.",
 | |
| 		DetachWorktreeTooltip:                    "This will run `git checkout --detach` on the worktree so that it stops hogging the branch, but the worktree's working tree will be left alone.",
 | |
| 		Switching:                                "Switching",
 | |
| 		RemoveWorktree:                           "Remove worktree",
 | |
| 		RemoveWorktreeTitle:                      "Remove worktree",
 | |
| 		RemoveWorktreePrompt:                     "Are you sure you want to remove worktree '{{.worktreeName}}'?",
 | |
| 		ForceRemoveWorktreePrompt:                "'{{.worktreeName}}' contains modified or untracked files (to be honest, it could contain both). Are you sure you want to remove it?",
 | |
| 		RemovingWorktree:                         "Deleting worktree",
 | |
| 		DetachWorktree:                           "Detach worktree",
 | |
| 		DetachingWorktree:                        "Detaching worktree",
 | |
| 		AddingWorktree:                           "Adding worktree",
 | |
| 		CantDeleteCurrentWorktree:                "You cannot remove the current worktree!",
 | |
| 		AlreadyInWorktree:                        "You are already in the selected worktree",
 | |
| 		CantDeleteMainWorktree:                   "You cannot remove the main worktree!",
 | |
| 		NoWorktreesThisRepo:                      "No worktrees",
 | |
| 		MissingWorktree:                          "(missing)",
 | |
| 		MainWorktree:                             "(main)",
 | |
| 		NewWorktree:                              "New worktree",
 | |
| 		NewWorktreePath:                          "New worktree path",
 | |
| 		NewWorktreeBase:                          "New worktree base ref",
 | |
| 		RemoveWorktreeTooltip:                    "Remove the selected worktree. This will both delete the worktree's directory, as well as metadata about the worktree in the .git directory.",
 | |
| 		BranchNameCannotBeBlank:                  "Branch name cannot be blank",
 | |
| 		NewBranchName:                            "New branch name",
 | |
| 		NewBranchNameLeaveBlank:                  "New branch name (leave blank to checkout {{.default}})",
 | |
| 		ViewWorktreeOptions:                      "View worktree options",
 | |
| 		CreateWorktreeFrom:                       "Create worktree from {{.ref}}",
 | |
| 		CreateWorktreeFromDetached:               "Create worktree from {{.ref}} (detached)",
 | |
| 		LcWorktree:                               "worktree",
 | |
| 		ChangingDirectoryTo:                      "Changing directory to {{.path}}",
 | |
| 		Name:                                     "Name",
 | |
| 		Branch:                                   "Branch",
 | |
| 		Path:                                     "Path",
 | |
| 		MarkedBaseCommitStatus:                   "Marked a base commit for rebase",
 | |
| 		MarkAsBaseCommit:                         "Mark as base commit for rebase",
 | |
| 		MarkAsBaseCommitTooltip:                  "Select a base commit for the next rebase. When you rebase onto a branch, only commits above the base commit will be brought across. This uses the `git rebase --onto` command.",
 | |
| 		CancelMarkedBaseCommit:                   "Cancel marked base commit",
 | |
| 		MarkedCommitMarker:                       "↑↑↑ Will rebase from here ↑↑↑",
 | |
| 		FailedToOpenURL:                          "Failed to open URL %s\n\nError: %v",
 | |
| 		InvalidLazygitEditURL:                    "Invalid lazygit-edit URL format: %s",
 | |
| 		DisabledMenuItemPrefix:                   "Disabled: ",
 | |
| 		NoCopiedCommits:                          "No copied commits",
 | |
| 		QuickStartInteractiveRebase:              "Start interactive rebase",
 | |
| 		QuickStartInteractiveRebaseTooltip:       "Start an interactive rebase for the commits on your branch. This will include all commits from the HEAD commit down to the first merge commit or main branch commit.\nIf you would instead like to start an interactive rebase from the selected commit, press `{{.editKey}}`.",
 | |
| 		CannotQuickStartInteractiveRebase:        "Cannot start interactive rebase: the HEAD commit is a merge commit or is present on the main branch, so there is no appropriate base commit to start the rebase from. You can start an interactive rebase from a specific commit by selecting the commit and pressing `{{.editKey}}`.",
 | |
| 		RangeSelectUp:                            "Range select up",
 | |
| 		RangeSelectDown:                          "Range select down",
 | |
| 		RangeSelectNotSupported:                  "Action does not support range selection, please select a single item",
 | |
| 		NoItemSelected:                           "No item selected",
 | |
| 		SelectedItemIsNotABranch:                 "Selected item is not a branch",
 | |
| 		SelectedItemDoesNotHaveFiles:             "Selected item does not have files to view",
 | |
| 		MultiSelectNotSupportedForSubmodules:     "Multiselection not supported for submodules",
 | |
| 		OldCherryPickKeyWarning:                  "The 'c' key is no longer the default key for copying commits to cherry pick. Please use `{{.copy}}` instead (and `{{.paste}}` to paste). The reason for this change is that the 'v' key for selecting a range of lines when staging is now also used for selecting a range of lines in any list view, meaning that we needed to find a new key for pasting commits, and if we're going to now use `{{.paste}}` for pasting commits, we may as well use `{{.copy}}` for copying them. If you want to configure the keybindings to get the old behaviour, set the following in your config:\n\nkeybinding:\n  universal:\n    toggleRangeSelect: <something other than v>\n  commits:\n    cherryPickCopy: 'c'\n    pasteCommits: 'v'",
 | |
| 		CommandDoesNotSupportOpeningInEditor:     "This command doesn't support switching to the editor",
 | |
| 		CustomCommands:                           "Custom commands",
 | |
| 		NoApplicableCommandsInThisContext:        "(No applicable commands in this context)",
 | |
| 		SelectCommitsOfCurrentBranch:             "Select commits of current branch",
 | |
| 		ViewMergeConflictOptions:                 "View merge conflict options",
 | |
| 		ViewMergeConflictOptionsTooltip:          "View options for resolving merge conflicts.",
 | |
| 		NoFilesWithMergeConflicts:                "There are no files with merge conflicts.",
 | |
| 		MergeConflictOptionsTitle:                "Resolve merge conflicts",
 | |
| 		UseCurrentChanges:                        "Use current changes",
 | |
| 		UseIncomingChanges:                       "Use incoming changes",
 | |
| 		UseBothChanges:                           "Use both",
 | |
| 
 | |
| 		Actions: Actions{
 | |
| 			// TODO: combine this with the original keybinding descriptions (those are all in lowercase atm)
 | |
| 			CheckoutCommit:                   "Checkout commit",
 | |
| 			CheckoutBranchAtCommit:           "Checkout branch '%s'",
 | |
| 			CheckoutCommitAsDetachedHead:     "Checkout commit %s as detached head",
 | |
| 			CheckoutTag:                      "Checkout tag",
 | |
| 			CheckoutBranch:                   "Checkout branch",
 | |
| 			ForceCheckoutBranch:              "Force checkout branch",
 | |
| 			CheckoutBranchOrCommit:           "Checkout branch or commit",
 | |
| 			DeleteLocalBranch:                "Delete local branch",
 | |
| 			Merge:                            "Merge",
 | |
| 			SquashMerge:                      "Squash merge",
 | |
| 			RebaseBranch:                     "Rebase branch",
 | |
| 			RenameBranch:                     "Rename branch",
 | |
| 			CreateBranch:                     "Create branch",
 | |
| 			CherryPick:                       "(Cherry-pick) paste commits",
 | |
| 			CheckoutFile:                     "Checkout file",
 | |
| 			SquashCommitDown:                 "Squash commit down",
 | |
| 			FixupCommit:                      "Fixup commit",
 | |
| 			RewordCommit:                     "Reword commit",
 | |
| 			DropCommit:                       "Drop commit",
 | |
| 			EditCommit:                       "Edit commit",
 | |
| 			AmendCommit:                      "Amend commit",
 | |
| 			ResetCommitAuthor:                "Reset commit author",
 | |
| 			SetCommitAuthor:                  "Set commit author",
 | |
| 			AddCommitCoAuthor:                "Add commit co-author",
 | |
| 			RevertCommit:                     "Revert commit",
 | |
| 			CreateFixupCommit:                "Create fixup commit",
 | |
| 			SquashAllAboveFixupCommits:       "Squash all above fixup commits",
 | |
| 			CreateLightweightTag:             "Create lightweight tag",
 | |
| 			CreateAnnotatedTag:               "Create annotated tag",
 | |
| 			CopyCommitMessageToClipboard:     "Copy commit message to clipboard",
 | |
| 			CopyCommitMessageBodyToClipboard: "Copy commit message body to clipboard",
 | |
| 			CopyCommitSubjectToClipboard:     "Copy commit subject to clipboard",
 | |
| 			CopyCommitTagsToClipboard:        "Copy commit tags to clipboard",
 | |
| 			CopyCommitDiffToClipboard:        "Copy commit diff to clipboard",
 | |
| 			CopyCommitHashToClipboard:        "Copy full commit hash to clipboard",
 | |
| 			CopyCommitURLToClipboard:         "Copy commit URL to clipboard",
 | |
| 			CopyCommitAuthorToClipboard:      "Copy commit author to clipboard",
 | |
| 			CopyCommitAttributeToClipboard:   "Copy to clipboard",
 | |
| 			CopyPatchToClipboard:             "Copy patch to clipboard",
 | |
| 			MoveCommitUp:                     "Move commit up",
 | |
| 			MoveCommitDown:                   "Move commit down",
 | |
| 			CustomCommand:                    "Custom command",
 | |
| 			DiscardAllChangesInFile:          "Discard all changes in selected file(s)",
 | |
| 			DiscardAllUnstagedChangesInFile:  "Discard all unstaged changes selected file(s)",
 | |
| 			StageFile:                        "Stage file",
 | |
| 			StageResolvedFiles:               "Stage files whose merge conflicts were resolved",
 | |
| 			UnstageFile:                      "Unstage file",
 | |
| 			UnstageAllFiles:                  "Unstage all files",
 | |
| 			StageAllFiles:                    "Stage all files",
 | |
| 			ResolveConflictByKeepingFile:     "Resolve by keeping file",
 | |
| 			ResolveConflictByDeletingFile:    "Resolve by deleting file",
 | |
| 			NotEnoughContextToStage:          "Staging or unstaging changes is not possible with a diff context size of 0. Increase the context using '%s'.",
 | |
| 			NotEnoughContextToDiscard:        "Discarding changes is not possible with a diff context size of 0. Increase the context using '%s'.",
 | |
| 			NotEnoughContextForCustomPatch:   "Creating custom patches is not possible with a diff context size of 0. Increase the context using '%s'.",
 | |
| 			IgnoreExcludeFile:                "Ignore or exclude file",
 | |
| 			IgnoreFileErr:                    "Cannot ignore .gitignore",
 | |
| 			ExcludeFile:                      "Exclude file",
 | |
| 			ExcludeGitIgnoreErr:              "Cannot exclude .gitignore",
 | |
| 			Commit:                           "Commit",
 | |
| 			Push:                             "Push",
 | |
| 			Pull:                             "Pull",
 | |
| 			OpenFile:                         "Open file",
 | |
| 			StashAllChanges:                  "Stash all changes",
 | |
| 			StashAllChangesKeepIndex:         "Stash all changes and keep index",
 | |
| 			StashStagedChanges:               "Stash staged changes",
 | |
| 			StashUnstagedChanges:             "Stash unstaged changes",
 | |
| 			StashIncludeUntrackedChanges:     "Stash all changes including untracked files",
 | |
| 			GitFlowFinish:                    "git flow finish",
 | |
| 			GitFlowStart:                     "git flow start",
 | |
| 			CopyToClipboard:                  "Copy to clipboard",
 | |
| 			CopySelectedTextToClipboard:      "Copy selected text to clipboard",
 | |
| 			RemovePatchFromCommit:            "Remove patch from commit",
 | |
| 			MovePatchToSelectedCommit:        "Move patch to selected commit",
 | |
| 			MovePatchIntoIndex:               "Move patch into index",
 | |
| 			MovePatchIntoNewCommit:           "Move patch into new commit",
 | |
| 			DeleteRemoteBranch:               "Delete remote branch",
 | |
| 			SetBranchUpstream:                "Set branch upstream",
 | |
| 			AddRemote:                        "Add remote",
 | |
| 			RemoveRemote:                     "Remove remote",
 | |
| 			UpdateRemote:                     "Update remote",
 | |
| 			ApplyPatch:                       "Apply patch",
 | |
| 			Stash:                            "Stash",
 | |
| 			PopStash:                         "Pop stash",
 | |
| 			ApplyStash:                       "Apply stash",
 | |
| 			DropStash:                        "Drop stash",
 | |
| 			RenameStash:                      "Rename stash",
 | |
| 			RemoveSubmodule:                  "Remove submodule",
 | |
| 			ResetSubmodule:                   "Reset submodule",
 | |
| 			AddSubmodule:                     "Add submodule",
 | |
| 			UpdateSubmoduleUrl:               "Update submodule URL",
 | |
| 			InitialiseSubmodule:              "Initialise submodule",
 | |
| 			BulkInitialiseSubmodules:         "Bulk initialise submodules",
 | |
| 			BulkUpdateSubmodules:             "Bulk update submodules",
 | |
| 			BulkDeinitialiseSubmodules:       "Bulk deinitialise submodules",
 | |
| 			BulkUpdateRecursiveSubmodules:    "Bulk initialise and update submodules recursively",
 | |
| 			UpdateSubmodule:                  "Update submodule",
 | |
| 			DeleteLocalTag:                   "Delete local tag",
 | |
| 			DeleteRemoteTag:                  "Delete remote tag",
 | |
| 			PushTag:                          "Push tag",
 | |
| 			NukeWorkingTree:                  "Nuke working tree",
 | |
| 			DiscardUnstagedFileChanges:       "Discard unstaged file changes",
 | |
| 			RemoveUntrackedFiles:             "Remove untracked files",
 | |
| 			RemoveStagedFiles:                "Remove staged files",
 | |
| 			SoftReset:                        "Soft reset",
 | |
| 			MixedReset:                       "Mixed reset",
 | |
| 			HardReset:                        "Hard reset",
 | |
| 			FastForwardBranch:                "Fast forward branch",
 | |
| 			AutoForwardBranches:              "Auto-forward branches",
 | |
| 			Undo:                             "Undo",
 | |
| 			Redo:                             "Redo",
 | |
| 			CopyPullRequestURL:               "Copy pull request URL",
 | |
| 			OpenMergeTool:                    "Open merge tool",
 | |
| 			OpenCommitInBrowser:              "Open commit in browser",
 | |
| 			OpenPullRequest:                  "Open pull request in browser",
 | |
| 			StartBisect:                      "Start bisect",
 | |
| 			ResetBisect:                      "Reset bisect",
 | |
| 			BisectSkip:                       "Bisect skip",
 | |
| 			BisectMark:                       "Bisect mark",
 | |
| 			AddWorktree:                      "Add worktree",
 | |
| 		},
 | |
| 		Bisect: Bisect{
 | |
| 			Mark:                        "Mark current commit (%s) as %s",
 | |
| 			MarkStart:                   "Mark %s as %s (start bisect)",
 | |
| 			SkipCurrent:                 "Skip current commit (%s)",
 | |
| 			SkipSelected:                "Skip selected commit (%s)",
 | |
| 			ResetTitle:                  "Reset 'git bisect'",
 | |
| 			ResetPrompt:                 "Are you sure you want to reset 'git bisect'?",
 | |
| 			ResetOption:                 "Reset bisect",
 | |
| 			ChooseTerms:                 "Choose bisect terms",
 | |
| 			OldTermPrompt:               "Term for old/good commit:",
 | |
| 			NewTermPrompt:               "Term for new/bad commit:",
 | |
| 			BisectMenuTitle:             "Bisect",
 | |
| 			CompleteTitle:               "Bisect complete",
 | |
| 			CompletePrompt:              "Bisect complete! The following commit introduced the change:\n\n%s\n\nDo you want to reset 'git bisect' now?",
 | |
| 			CompletePromptIndeterminate: "Bisect complete! Some commits were skipped, so any of the following commits may have introduced the change:\n\n%s\n\nDo you want to reset 'git bisect' now?",
 | |
| 			Bisecting:                   "Bisecting",
 | |
| 		},
 | |
| 		Log: Log{
 | |
| 			EditRebase:               "Beginning interactive rebase at '{{.ref}}'",
 | |
| 			HandleUndo:               "Undoing last conflict resolution",
 | |
| 			RemoveFile:               "Deleting path '{{.path}}'",
 | |
| 			CopyToClipboard:          "Copying '{{.str}}' to clipboard",
 | |
| 			Remove:                   "Removing '{{.filename}}'",
 | |
| 			CreateFileWithContent:    "Creating file '{{.path}}'",
 | |
| 			AppendingLineToFile:      "Appending '{{.line}}' to file '{{.filename}}'",
 | |
| 			EditRebaseFromBaseCommit: "Beginning interactive rebase from '{{.baseCommit}}' onto '{{.targetBranchName}}",
 | |
| 		},
 | |
| 		BreakingChangesTitle: "Breaking Changes",
 | |
| 		BreakingChangesMessage: `You are updating to a new version of lazygit which contains breaking changes. Please review the notes below and update your configuration if necessary.
 | |
| For more information, see the full release notes at <https://github.com/jesseduffield/lazygit/releases>.`,
 | |
| 		BreakingChangesByVersion: map[string]string{
 | |
| 			"0.41.0": `- When you press 'g' to bring up the git reset menu, the 'mixed' option is now the first and default, rather than 'soft'. This is because 'mixed' is the most commonly used option.
 | |
| - The commit message panel now automatically hard-wraps by default (i.e. it adds newline characters when you reach the margin). You can adjust the config like so:
 | |
| 
 | |
| git:
 | |
|   commit:
 | |
|     autoWrapCommitMessage: true
 | |
|     autoWrapWidth: 72
 | |
| 
 | |
| - The 'v' key was already being used in the staging view to start a range select, but now you can use it to start a range select in any view. Unfortunately this clashes with the 'v' keybinding for pasting commits (cherry-pick), so now pasting commits is done via 'shift+V' and for the sake of consistency, copying commits is now done via 'shift+C' instead of just 'c'. Note that the 'v' keybinding is only one way to start a range-select: you can use shift+up/down arrow instead. So, if you want to configure the cherry-pick keybindings to get the old behaviour, set the following in your config:
 | |
| 
 | |
| keybinding:
 | |
|   universal:
 | |
|       toggleRangeSelect: <something other than v>
 | |
|     commits:
 | |
|       cherryPickCopy: 'c'
 | |
|       pasteCommits: 'v'
 | |
| 
 | |
| - Squashing fixups using 'shift-S' now brings up a menu, with the default option being to squash all fixup commits in the branch. The original behaviour of only squashing fixup commits above the selected commit is still available as the second option in that menu.
 | |
| - Push/pull/fetch loading statuses are now shown against the branch rather than in a popup. This allows you to e.g. fetch multiple branches in parallel and see the status for each branch.
 | |
| - The git log graph in the commits view is now always shown by default (previously it was only shown when the view was maximised). If you find this too noisy, you can change it back via ctrl+L -> 'Show git graph' -> 'when maximised'
 | |
| - Pressing space on a remote branch used to show a prompt for entering a name for a new local branch to check out from the remote branch. Now it just checks out the remote branch directly, letting you choose between a new local branch with the same name, or a detached head. The old behavior is still available via the 'n' keybinding.
 | |
| - Filtering (e.g. when pressing '/') is less fuzzy by default; it only matches substrings now. Multiple substrings can be matched by separating them with spaces. If you want to revert to the old behavior, set the following in your config:
 | |
| 
 | |
| gui:
 | |
|   filterMode: 'fuzzy'
 | |
| `,
 | |
| 			"0.44.0": `- The gui.branchColors config option is deprecated; it will be removed in a future version. Please use gui.branchColorPatterns instead.
 | |
| - The automatic coloring of branches starting with "feature/", "bugfix/", or "hotfix/" has been removed; if you want this, it's easy to set up using the new gui.branchColorPatterns option.`,
 | |
| 			"0.49.0": `- Executing shell commands (with the ':' prompt) no longer uses an interactive shell, which means that if you want to use your shell aliases in this prompt, you need to do a little bit of setup work. See https://github.com/jesseduffield/lazygit/blob/master/docs/Config.md#using-aliases-or-functions-in-shell-commands for details.`,
 | |
| 			"0.50.0": `- After fetching, main branches now get auto-forwarded to their upstream if they fall behind. This is useful for keeping your main or master branch up to date automatically. If you don't want this, you can disable it by setting the following in your config:
 | |
| 
 | |
| git:
 | |
|   autoForwardBranches: none
 | |
| 
 | |
| If, on the other hand, you want this even for feature branches, you can set it to 'allBranches' instead.`,
 | |
| 			"0.51.0": `- The 'subprocess', 'stream', and 'showOutput' fields of custom commands have been replaced by a single 'output' field. This should be transparent, if you used these in your config file it should have been automatically updated for you. There's one notable change though: the 'stream' field used to mean both that the command's output would be streamed to the command log, and that the command would be run in a pseudo terminal (pty). We converted this to 'output: log', which means that the command's output will be streamed to the command log, but not use a pty, on the assumption that this is what most people wanted. If you do actually want to run a command in a pty, you can change this to 'output: logWithPty' instead.`,
 | |
| 			"0.54.0": `- The default sort order for local and remote branches has changed: it used to be 'recency' (based on reflog) for local branches, and 'alphabetical' for remote branches. Both of these have been changed to 'date' (which means committerdate). If you do liked the old defaults better, you can revert to them with the following config:
 | |
| 
 | |
| git:
 | |
|   localBranchSortOrder: recency
 | |
|   remoteBranchSortOrder: alphabetical
 | |
| 
 | |
| - The default selection mode in the staging and custom patch building views has been changed to hunk mode. This is the more useful mode in most cases, as it usually saves a lot of keystrokes. If you want to switch back to the old line mode default, you can do so by adding the following to your config:
 | |
| 
 | |
| gui:
 | |
|   useHunkModeInStagingView: false
 | |
| `,
 | |
| 			"0.55.0": `- The 'redo' command, which used to be bound to ctrl-z, is now bound to shift-Z instead. This is because ctrl-z is now used for suspending the application; it is a commonly known keybinding for that in the Linux world. If you want to revert this change, you can do so by adding the following to your config:
 | |
| 
 | |
| keybinding:
 | |
|   universal:
 | |
|     suspendApp: <disabled>
 | |
| 	redo: <c-z>
 | |
| 
 | |
| - The 'git.paging.useConfig' option has been removed. If you were relying on it to configure your pager, you'll have to explicitly set the pager again using the git.paging.pager' option.
 | |
| `,
 | |
| 		},
 | |
| 	}
 | |
| }
 |