1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-12 11:15:00 +02:00
lazygit/pkg/i18n/english.go

1285 lines
70 KiB
Go
Raw Normal View History

/*
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 addEnglish() name to the language you want to translate to like addSomeLanguage()
- change the first function argument of i18nObject.AddMessages( to the language you want to translate to like language.SomeLanguage
- Remove this todo and the about section
*/
package i18n
2020-10-04 02:00:48 +02:00
type TranslationSet struct {
NotEnoughSpace string
DiffTitle string
FilesTitle string
BranchesTitle string
CommitsTitle string
StashTitle string
UnstagedChanges string
StagedChanges string
MainTitle string
StagingTitle string
MergingTitle string
2022-03-27 08:29:22 +02:00
MergeConfirmTitle string
2020-10-04 02:00:48 +02:00
NormalTitle string
2022-05-10 13:10:59 +02:00
LogTitle string
2020-10-04 02:00:48 +02:00
CommitMessage string
CredentialsUsername string
CredentialsPassword string
CredentialsPassphrase string
Add credential prompts for U2F-backed SSH keys The 8.2 release of OpenSSH added support for FIDO/U2F hardware authenticators, which manifests in being able to create new types of SSH key, named `ecdsa-sk` nad `ed25519-sk`. This is relevant to lazygit, as those SSH keys can be used to authorise git operations over SSH, as well as signing git commits. Actual code changes are required for correct support, as the authentication process for these types of keys is different than the process for types supported previously. When an operation requiring credentials is initialised with a U2F authenticator-backed key, the first prompt is: Enter PIN for ${key_type} key ${path_to_key}: at which point the user is supposed to enter a numeric (and secret) PIN, specific to the particular FIDO/U2F authenticator using which the SSH keypair was generated. Upon entering the correct key, the user is supposed to physically interact with the authenticator to confirm presence. Sometimes this is accompanied by the following text prompt: Confirm user presence for key ${key_type} ${key_fingerprint} This second prompt does not always occur and it is presumed that the user will know to perform this step even if not prompted specifically. At this stage some authenticator devices may also begin to blink a LED to indicate that they're waiting for input. To facilitate lazygit's interoperability with these types of keys, add support for the first PIN prompt, which allows "fetch", "pull", and "push" git operations to complete.
2022-10-31 23:12:47 +02:00
CredentialsPIN string
2020-10-04 02:00:48 +02:00
PassUnameWrong string
CommitChanges string
AmendLastCommit string
2022-05-18 13:33:35 +02:00
AmendLastCommitTitle string
2020-10-04 02:00:48 +02:00
SureToAmend string
NoCommitToAmend string
CommitChangesWithEditor string
StatusTitle string
GlobalTitle string
LcNavigate string
LcMenu string
LcExecute string
LcToggleStaged string
LcToggleStagedAll string
2021-03-20 23:41:06 +02:00
LcToggleTreeView string
2021-04-11 02:05:39 +02:00
LcOpenMergeTool string
2020-10-04 02:00:48 +02:00
LcRefresh string
LcPush string
LcPull string
LcScroll string
LcFileFilter string
2021-06-20 17:04:18 +02:00
FilterStagedFiles string
FilterUnstagedFiles string
ResetCommitFilterState string
2020-10-04 02:00:48 +02:00
MergeConflictsTitle string
LcCheckout string
NoChangedFiles string
NoFilesDisplay string
NotAFile string
PullWait string
PushWait string
FetchWait string
LcSoftReset string
AlreadyCheckedOutBranch string
SureForceCheckout string
ForceCheckoutBranch string
BranchName string
NewBranchNameBranchOff string
CantDeleteCheckOutBranch string
DeleteBranch string
DeleteBranchMessage string
ForceDeleteBranchMessage string
LcRebaseBranch string
CantRebaseOntoSelf string
CantMergeBranchIntoItself string
LcForceCheckout string
LcCheckoutByName string
LcNewBranch string
LcDeleteBranch string
NoBranchesThisRepo string
CommitMessageConfirm string
CommitWithoutMessageErr string
CloseConfirm string
LcClose string
LcQuit string
LcSquashDown string
LcFixupCommit string
OnlySquashTopmostCommit string
YouNoCommitsToSquash string
Fixup string
SureFixupThisCommit string
SureSquashThisCommit string
Squash string
LcPickCommit string
LcRevertCommit string
2022-01-02 01:34:33 +02:00
LcRewordCommit string
2020-10-04 02:00:48 +02:00
LcDeleteCommit string
LcMoveDownCommit string
LcMoveUpCommit string
LcEditCommit string
LcAmendToCommit string
LcResetCommitAuthor string
SetAuthorPromptTitle string
SureResetCommitAuthor string
2020-10-04 02:00:48 +02:00
LcRenameCommitEditor string
NoCommitsThisBranch string
Error string
LcSelectHunk string
LcNavigateConflicts string
LcPickHunk string
2021-08-24 14:38:34 +02:00
LcPickAllHunks string
2020-10-04 02:00:48 +02:00
LcUndo string
LcUndoReflog string
LcRedoReflog string
UndoTooltip string
RedoTooltip string
2020-10-04 02:00:48 +02:00
LcPop string
LcDrop string
LcApply string
NoStashEntries string
StashDrop string
SureDropStashEntry string
StashPop string
SurePopStashEntry string
StashApply string
SureApplyStashEntry string
NoTrackedStagedFilesStash string
2022-04-14 21:45:55 +02:00
NoFilesToStash string
2020-10-04 02:00:48 +02:00
StashChanges string
2022-10-14 15:19:53 +02:00
LcRenameStash string
RenameStashPrompt string
2020-10-04 02:00:48 +02:00
OpenConfig string
EditConfig string
ForcePush string
ForcePushPrompt string
ForcePushDisabled string
UpdatesRejectedAndForcePushDisabled string
LcCheckForUpdate string
CheckingForUpdates string
UpdateAvailableTitle string
UpdateAvailable string
UpdateInProgressWaitingStatus string
UpdateCompletedTitle string
UpdateCompleted string
FailedToRetrieveLatestVersionErr string
2020-10-04 02:00:48 +02:00
OnLatestVersionErr string
MajorVersionErr string
CouldNotFindBinaryErr string
UpdateFailedErr string
ConfirmQuitDuringUpdateTitle string
ConfirmQuitDuringUpdate string
2021-04-11 02:05:39 +02:00
MergeToolTitle string
MergeToolPrompt string
2020-10-04 02:00:48 +02:00
IntroPopupMessage string
GitconfigParseErr string
LcEditFile string
LcOpenFile string
LcIgnoreFile string
LcExcludeFile string
2020-10-04 02:00:48 +02:00
LcRefreshFiles string
LcMergeIntoCurrentBranch string
ConfirmQuit string
SwitchRepo string
2020-11-28 06:38:14 +02:00
LcAllBranchesLogGraph string
2020-10-04 02:00:48 +02:00
UnsupportedGitService string
LcCreatePullRequest string
LcCopyPullRequestURL string
2020-10-04 02:00:48 +02:00
NoBranchOnRemote string
LcFetch string
NoAutomaticGitFetchTitle string
NoAutomaticGitFetchBody string
2021-03-14 11:30:06 +02:00
FileEnter string
2020-10-04 02:00:48 +02:00
FileStagingRequirements string
StageSelection string
ResetSelection string
ToggleDragSelect string
ToggleSelectHunk string
ToggleSelectionForPatch string
2022-05-04 14:20:45 +02:00
EditHunk string
ToggleStagingPanel string
2020-10-04 02:00:48 +02:00
ReturnToFilesPanel string
FastForward string
Fetching string
FoundConflicts string
FoundConflictsTitle string
PickHunk string
2021-08-24 14:38:34 +02:00
PickAllHunks string
2020-10-04 02:00:48 +02:00
ViewMergeRebaseOptions string
NotMergingOrRebasing string
RecentRepos string
MergeOptionsTitle string
RebaseOptionsTitle string
CommitMessageTitle string
LocalBranchesTitle string
SearchTitle string
TagsTitle string
MenuTitle string
RemotesTitle string
RemoteBranchesTitle string
PatchBuildingTitle string
InformationTitle string
SecondaryTitle string
ReflogCommitsTitle string
ConflictsResolved string
RebasingTitle string
ConfirmRebase string
ConfirmMerge string
FwdNoUpstream string
FwdNoLocalUpstream string
2020-10-04 02:00:48 +02:00
FwdCommitsToPush string
ErrorOccurred string
NoRoom string
YouAreHere string
LcRewordNotSupported string
LcCherryPickCopy string
LcCherryPickCopyRange string
LcPasteCommits string
SureCherryPick string
CherryPick string
CannotRebaseOntoFirstCommit string
CannotSquashOntoSecondCommit string
Donate string
2021-04-11 13:52:04 +02:00
AskQuestion string
2020-10-04 02:00:48 +02:00
PrevLine string
NextLine string
PrevHunk string
NextHunk string
PrevConflict string
NextConflict string
2021-08-24 14:38:34 +02:00
SelectPrevHunk string
SelectNextHunk string
2020-10-04 02:00:48 +02:00
ScrollDown string
ScrollUp string
LcScrollUpMainPanel string
LcScrollDownMainPanel string
AmendCommitTitle string
AmendCommitPrompt string
DeleteCommitTitle string
DeleteCommitPrompt string
SquashingStatus string
FixingStatus string
DeletingStatus string
MovingStatus string
RebasingStatus string
AmendingStatus string
CherryPickingStatus string
UndoingStatus string
RedoingStatus string
CheckingOutStatus string
2021-04-10 03:40:42 +02:00
CommittingStatus string
2020-10-04 02:00:48 +02:00
CommitFiles string
SubCommitsDynamicTitle string
CommitFilesDynamicTitle string
2022-03-26 05:44:30 +02:00
RemoteBranchesDynamicTitle string
2022-02-13 09:26:44 +02:00
LcViewItemFiles string
2020-10-04 02:00:48 +02:00
CommitFilesTitle string
LcCheckoutCommitFile string
LcDiscardOldFileChange string
DiscardFileChangesTitle string
DiscardFileChangesPrompt string
DisabledForGPG string
CreateRepo string
2022-08-01 18:41:20 +02:00
BareRepo string
2022-06-30 13:53:58 +02:00
InitialBranch string
NoRecentRepositories string
IncorrectNotARepository string
2020-10-04 02:00:48 +02:00
AutoStashTitle string
AutoStashPrompt string
StashPrefix string
LcViewDiscardOptions string
LcCancel string
LcDiscardAllChanges string
LcDiscardUnstagedChanges string
LcDiscardAllChangesToAllFiles string
LcDiscardAnyUnstagedChanges string
LcDiscardUntrackedFiles string
2022-05-08 13:30:43 +02:00
LcDiscardStagedChanges string
2020-10-04 02:00:48 +02:00
LcHardReset string
LcViewResetOptions string
LcCreateFixupCommit string
LcSquashAboveCommits string
SquashAboveCommits string
SureSquashAboveCommits string
CreateFixupCommit string
SureCreateFixupCommit string
LcExecuteCustomCommand string
CustomCommand string
LcCommitChangesWithoutHook string
SkipHookPrefixNotConfigured string
LcResetTo string
PressEnterToReturn string
LcViewStashOptions string
LcStashAllChanges string
LcStashStagedChanges string
LcStashAllChangesKeepIndex string
LcStashUnstagedChanges string
LcStashIncludeUntrackedChanges string
2020-10-04 02:00:48 +02:00
LcStashOptions string
NotARepository string
LcJump string
2021-11-02 11:35:53 +02:00
LcScrollLeftRight string
LcScrollLeft string
LcScrollRight string
2020-10-04 02:00:48 +02:00
DiscardPatch string
DiscardPatchConfirm string
CantPatchWhileRebasingError string
LcToggleAddToPatch string
LcToggleAllInPatch string
LcUpdatingPatch string
2020-10-04 02:00:48 +02:00
ViewPatchOptions string
PatchOptionsTitle string
NoPatchError string
LcEnterFile string
ExitCustomPatchBuilder string
2020-10-04 02:00:48 +02:00
EnterUpstream string
InvalidUpstream string
2020-10-04 02:00:48 +02:00
ReturnToRemotesList string
LcAddNewRemote string
LcNewRemoteName string
LcNewRemoteUrl string
LcEditRemoteName string
LcEditRemoteUrl string
LcRemoveRemote string
LcRemoveRemotePrompt string
DeleteRemoteBranch string
DeleteRemoteBranchMessage string
LcSetAsUpstream string
2020-10-04 02:00:48 +02:00
LcSetUpstream string
LcUnsetUpstream string
2020-10-04 02:00:48 +02:00
SetUpstreamTitle string
SetUpstreamMessage string
LcEditRemote string
LcTagCommit string
2021-09-12 00:19:25 +02:00
TagMenuTitle string
2020-10-04 02:00:48 +02:00
TagNameTitle string
2021-09-12 00:19:25 +02:00
TagMessageTitle string
LcLightweightTag string
LcAnnotatedTag string
2020-10-04 02:00:48 +02:00
LcDeleteTag string
DeleteTagTitle string
DeleteTagPrompt string
PushTagTitle string
LcPushTag string
LcCreateTag string
CreateTagTitle string
LcFetchRemote string
FetchingRemoteStatus string
LcCheckoutCommit string
SureCheckoutThisCommit string
LcGitFlowOptions string
NotAGitFlowBranch string
NewBranchNamePrompt string
IgnoreTracked string
ExcludeTracked string
2020-10-04 02:00:48 +02:00
IgnoreTrackedPrompt string
ExcludeTrackedPrompt string
2020-10-04 02:00:48 +02:00
LcViewResetToUpstreamOptions string
LcNextScreenMode string
LcPrevScreenMode string
LcStartSearch string
Panel string
Keybindings string
LcRenameBranch string
LcSetUnsetUpstream string
2020-10-04 02:00:48 +02:00
NewGitFlowBranchPrompt string
RenameBranchWarning string
LcOpenMenu string
LcResetCherryPick string
LcNextTab string
LcPrevTab string
LcCantUndoWhileRebasing string
LcCantRedoWhileRebasing string
MustStashWarning string
MustStashTitle string
ConfirmationTitle string
LcPrevPage string
LcNextPage string
LcGotoTop string
LcGotoBottom string
LcFilteringBy string
ResetInParentheses string
2021-04-06 01:50:27 +02:00
LcOpenFilteringMenu string
2020-10-04 02:00:48 +02:00
LcFilterBy string
LcExitFilterMode string
LcFilterPathOption string
2021-10-23 02:25:37 +02:00
EnterFileName string
2020-10-04 02:00:48 +02:00
FilteringMenuTitle string
MustExitFilterModeTitle string
MustExitFilterModePrompt string
LcDiff string
LcEnterRefToDiff string
LcEnteRefName string
LcExitDiffMode string
DiffingMenuTitle string
LcSwapDiff string
LcOpenDiffingMenu string
LcOpenExtrasMenu string
2020-10-04 02:00:48 +02:00
LcShowingGitDiff string
2022-03-24 22:04:33 +02:00
LcCommitDiff string
2020-10-04 02:00:48 +02:00
LcCopyCommitShaToClipboard string
2022-03-24 22:04:33 +02:00
LcCommitSha string
LcCommitURL string
LcCopyCommitMessageToClipboard string
2022-03-24 22:04:33 +02:00
LcCommitMessage string
LcCommitAuthor string
2022-03-24 22:04:33 +02:00
LcCopyCommitAttributeToClipboard string
2020-10-04 02:00:48 +02:00
LcCopyBranchNameToClipboard string
LcCopyFileNameToClipboard string
LcCopyCommitFileNameToClipboard string
LcCommitPrefixPatternError string
2021-10-16 04:49:40 +02:00
LcCopySelectedTexToClipboard string
2020-10-04 02:00:48 +02:00
NoFilesStagedTitle string
NoFilesStagedPrompt string
BranchNotFoundTitle string
BranchNotFoundPrompt string
2022-07-31 08:57:57 +02:00
LcBranchUnknown string
2020-10-04 02:00:48 +02:00
UnstageLinesTitle string
UnstageLinesPrompt string
LcCreateNewBranchFromCommit string
LcBuildingPatch string
LcViewCommits string
MinGitVersionError string
LcRunningCustomCommandStatus string
LcSubmoduleStashAndReset string
LcAndResetSubmodules string
LcEnterSubmodule string
LcCopySubmoduleNameToClipboard string
RemoveSubmodule string
LcRemoveSubmodule string
RemoveSubmodulePrompt string
LcResettingSubmoduleStatus string
LcNewSubmoduleName string
LcNewSubmoduleUrl string
LcNewSubmodulePath string
LcAddSubmodule string
LcAddingSubmoduleStatus string
LcUpdateSubmoduleUrl string
LcUpdatingSubmoduleUrlStatus string
LcEditSubmoduleUrl string
LcInitializingSubmoduleStatus string
LcInitSubmodule string
LcSubmoduleUpdate string
LcUpdatingSubmoduleStatus string
LcBulkInitSubmodules string
LcBulkUpdateSubmodules string
LcBulkDeinitSubmodules string
LcViewBulkSubmoduleOptions string
LcBulkSubmoduleOptions string
LcRunningCommand string
SubCommitsTitle string
SubmodulesTitle string
NavigationTitle string
2021-10-23 02:25:37 +02:00
SuggestionsCheatsheetTitle string
// Unlike the cheatsheet title above, the real suggestions title has a little message saying press tab to focus
2021-02-09 11:23:20 +02:00
SuggestionsTitle string
2021-06-15 00:37:56 +02:00
ExtrasTitle string
PushingTagStatus string
PullRequestURLCopiedToClipboard string
2022-03-24 22:04:33 +02:00
CommitDiffCopiedToClipboard string
CommitSHACopiedToClipboard string
CommitURLCopiedToClipboard string
CommitMessageCopiedToClipboard string
CommitAuthorCopiedToClipboard string
LcCopiedToClipboard string
2021-03-15 14:00:20 +02:00
ErrCannotEditDirectory string
ErrStageDirWithInlineMergeConflicts string
2021-03-30 13:17:42 +02:00
ErrRepositoryMovedOrDeleted string
2021-04-10 05:08:51 +02:00
CommandLog string
ToggleShowCommandLog string
FocusCommandLog string
2021-04-11 13:42:18 +02:00
CommandLogHeader string
2021-04-11 15:32:20 +02:00
RandomTip string
2021-06-05 08:39:59 +02:00
SelectParentCommitForMerge string
ToggleWhitespaceInDiffView string
2021-06-07 10:23:33 +02:00
IgnoringWhitespaceInDiffView string
ShowingWhitespaceInDiffView string
IncreaseContextInDiffView string
DecreaseContextInDiffView string
2021-04-21 15:05:57 +02:00
CreatePullRequestOptions string
LcCreatePullRequestOptions string
2021-07-27 12:05:53 +02:00
LcDefaultBranch string
LcSelectBranch string
CreatePullRequest string
2021-10-16 03:07:24 +02:00
SelectConfigFile string
NoConfigFileFoundErr string
LcLoadingFileSuggestions string
2021-11-02 12:16:00 +02:00
LcLoadingCommits string
MustSpecifyOriginError string
GitOutput string
GitCommandFailed string
AbortTitle string
AbortPrompt string
2021-11-02 12:16:00 +02:00
LcOpenLogMenu string
LogMenuTitle string
ToggleShowGitGraphAll string
ShowGitGraph string
SortCommits string
CantChangeContextSizeError string
2021-12-28 04:31:20 +02:00
LcOpenCommitInBrowser string
2022-01-19 09:32:27 +02:00
LcViewBisectOptions string
ConfirmRevertCommit string
2022-03-23 14:37:15 +02:00
RewordInEditorTitle string
RewordInEditorPrompt string
CheckoutPrompt string
HardResetAutostashPrompt string
2022-03-24 08:49:25 +02:00
UpstreamGone string
NukeDescription string
2022-05-15 12:16:20 +02:00
DiscardStagedChangesDescription string
EmptyOutput string
Patch string
CustomPatch string
LcCommitsCopied string
LcCommitCopied string
2022-01-05 03:01:59 +02:00
Actions Actions
2022-01-19 09:32:27 +02:00
Bisect Bisect
}
type Bisect struct {
MarkStart string
MarkSkipCurrent string
MarkSkipSelected string
ResetTitle string
ResetPrompt string
ResetOption string
BisectMenuTitle string
Mark string
Skip string
CompleteTitle string
CompletePrompt string
CompletePromptIndeterminate string
2021-04-11 11:35:42 +02:00
}
2022-01-05 03:01:59 +02:00
type Actions struct {
2021-04-11 11:35:42 +02:00
CheckoutCommit string
CheckoutTag string
CheckoutBranch string
ForceCheckoutBranch string
DeleteBranch string
Merge string
RebaseBranch string
RenameBranch string
SetUnsetUpstream string
2021-04-11 11:35:42 +02:00
CreateBranch string
FastForwardBranch string
CherryPick string
CheckoutFile string
DiscardOldFileChange string
SquashCommitDown string
FixupCommit string
RewordCommit string
DropCommit string
EditCommit string
AmendCommit string
ResetCommitAuthor string
SetCommitAuthor string
2021-04-11 11:35:42 +02:00
RevertCommit string
CreateFixupCommit string
SquashAllAboveFixupCommits string
MoveCommitUp string
MoveCommitDown string
CopyCommitMessageToClipboard string
2022-03-24 22:04:33 +02:00
CopyCommitDiffToClipboard string
CopyCommitSHAToClipboard string
CopyCommitURLToClipboard string
CopyCommitAuthorToClipboard string
2022-03-24 22:04:33 +02:00
CopyCommitAttributeToClipboard string
2021-04-11 11:35:42 +02:00
CustomCommand string
DiscardAllChangesInDirectory string
DiscardUnstagedChangesInDirectory string
DiscardAllChangesInFile string
DiscardAllUnstagedChangesInFile string
StageFile string
2022-01-25 16:20:19 +02:00
StageResolvedFiles string
2021-04-11 11:35:42 +02:00
UnstageFile string
UnstageAllFiles string
StageAllFiles string
2022-08-11 14:18:19 +02:00
LcIgnoreExcludeFile string
IgnoreFileErr string
ExcludeFile string
ExcludeFileErr string
ExcludeGitIgnoreErr string
2021-04-11 11:35:42 +02:00
Commit string
EditFile string
Push string
Pull string
OpenFile string
StashAllChanges string
2022-04-14 21:45:55 +02:00
StashAllChangesKeepIndex string
2021-04-11 11:35:42 +02:00
StashStagedChanges string
StashUnstagedChanges string
StashIncludeUntrackedChanges string
2021-04-11 11:35:42 +02:00
GitFlowFinish string
GitFlowStart string
CopyToClipboard string
2021-10-02 09:50:26 +02:00
CopySelectedTextToClipboard string
2021-04-11 11:35:42 +02:00
RemovePatchFromCommit string
MovePatchToSelectedCommit string
MovePatchIntoIndex string
MovePatchIntoNewCommit string
DeleteRemoteBranch string
SetBranchUpstream string
AddRemote string
RemoveRemote string
UpdateRemote string
ApplyPatch string
Stash string
2022-10-14 15:19:53 +02:00
RenameStash string
2021-04-11 11:35:42 +02:00
RemoveSubmodule string
ResetSubmodule string
AddSubmodule string
UpdateSubmoduleUrl string
InitialiseSubmodule string
BulkInitialiseSubmodules string
BulkUpdateSubmodules string
BulkDeinitialiseSubmodules string
UpdateSubmodule string
CreateLightweightTag string
2021-09-12 00:19:25 +02:00
CreateAnnotatedTag string
2021-04-11 11:35:42 +02:00
DeleteTag string
PushTag string
NukeWorkingTree string
DiscardUnstagedFileChanges string
RemoveUntrackedFiles string
2022-05-08 13:30:43 +02:00
RemoveStagedFiles string
2021-04-11 11:35:42 +02:00
SoftReset string
MixedReset string
HardReset string
Undo string
Redo string
2022-01-05 03:01:59 +02:00
CopyPullRequestURL string
OpenMergeTool string
2022-01-06 02:44:41 +02:00
OpenCommitInBrowser string
OpenPullRequest string
2022-01-19 09:32:27 +02:00
StartBisect string
ResetBisect string
BisectSkip string
BisectMark string
2020-10-04 02:00:48 +02:00
}
2019-11-10 13:07:45 +02:00
2020-10-09 15:10:12 +02:00
const englishIntroPopupMessage = `
2021-04-20 10:34:47 +02:00
Thanks for using lazygit! Seriously you rock. Three things to share with you:
2020-10-09 15:10:12 +02:00
1) If you want to learn about lazygit's features, watch this vid:
2020-10-10 00:52:58 +02:00
https://youtu.be/CPLdltN7wgE
2020-10-09 15:10:12 +02:00
2) Be sure to read the latest release notes at:
2021-04-20 10:34:47 +02:00
https://github.com/jesseduffield/lazygit/releases
3) If you're using git, that makes you a programmer! With your help we can make
2020-10-10 00:52:58 +02:00
lazygit better, so consider becoming a contributor and joining the fun at
https://github.com/jesseduffield/lazygit
2020-10-10 01:12:52 +02:00
You can also sponsor me and tell me what to work on by clicking the donate
2021-04-20 10:34:47 +02:00
button at the bottom right.
2021-07-27 06:56:40 +02:00
Or even just star the repo to share the love!
2020-10-09 15:10:12 +02:00
`
// exporting this so we can use it in tests
func EnglishTranslationSet() TranslationSet {
2020-10-04 02:00:48 +02:00
return TranslationSet{
NotEnoughSpace: "Not enough space to render panels",
DiffTitle: "Diff",
FilesTitle: "Files",
BranchesTitle: "Branches",
CommitsTitle: "Commits",
StashTitle: "Stash",
UnstagedChanges: `Unstaged Changes`,
StagedChanges: `Staged Changes`,
MainTitle: "Main",
2022-03-27 08:29:22 +02:00
MergeConfirmTitle: "Merge",
2022-03-26 05:44:30 +02:00
StagingTitle: "Main Panel (Staging)",
MergingTitle: "Main Panel (Merging)",
NormalTitle: "Main Panel (Normal)",
2022-05-10 13:10:59 +02:00
LogTitle: "Log",
2020-10-04 02:00:48 +02:00
CommitMessage: "Commit message",
CredentialsUsername: "Username",
CredentialsPassword: "Password",
CredentialsPassphrase: "Enter passphrase for SSH key",
Add credential prompts for U2F-backed SSH keys The 8.2 release of OpenSSH added support for FIDO/U2F hardware authenticators, which manifests in being able to create new types of SSH key, named `ecdsa-sk` nad `ed25519-sk`. This is relevant to lazygit, as those SSH keys can be used to authorise git operations over SSH, as well as signing git commits. Actual code changes are required for correct support, as the authentication process for these types of keys is different than the process for types supported previously. When an operation requiring credentials is initialised with a U2F authenticator-backed key, the first prompt is: Enter PIN for ${key_type} key ${path_to_key}: at which point the user is supposed to enter a numeric (and secret) PIN, specific to the particular FIDO/U2F authenticator using which the SSH keypair was generated. Upon entering the correct key, the user is supposed to physically interact with the authenticator to confirm presence. Sometimes this is accompanied by the following text prompt: Confirm user presence for key ${key_type} ${key_fingerprint} This second prompt does not always occur and it is presumed that the user will know to perform this step even if not prompted specifically. At this stage some authenticator devices may also begin to blink a LED to indicate that they're waiting for input. To facilitate lazygit's interoperability with these types of keys, add support for the first PIN prompt, which allows "fetch", "pull", and "push" git operations to complete.
2022-10-31 23:12:47 +02:00
CredentialsPIN: "Enter PIN for SSH key",
PassUnameWrong: "Password, passphrase and/or username wrong",
2020-10-04 02:00:48 +02:00
CommitChanges: "commit changes",
AmendLastCommit: "amend last commit",
2022-05-18 13:33:35 +02:00
AmendLastCommitTitle: "Amend Last Commit",
2020-10-04 02:00:48 +02:00
SureToAmend: "Are you sure you want to amend last commit? Afterwards, you can change commit message from the commits panel.",
NoCommitToAmend: "There's no commit to amend.",
CommitChangesWithEditor: "commit changes using git editor",
StatusTitle: "Status",
LcNavigate: "navigate",
LcMenu: "menu",
LcExecute: "execute",
LcToggleStaged: "toggle staged",
LcToggleStagedAll: "stage/unstage all",
2021-03-20 23:41:06 +02:00
LcToggleTreeView: "toggle file tree view",
2021-04-11 02:05:39 +02:00
LcOpenMergeTool: "open external merge tool (git mergetool)",
2020-10-04 02:00:48 +02:00
LcRefresh: "refresh",
LcPush: "push",
LcPull: "pull",
LcScroll: "scroll",
MergeConflictsTitle: "Merge Conflicts",
LcCheckout: "checkout",
LcFileFilter: "Filter files (staged/unstaged)",
2021-06-20 17:04:18 +02:00
FilterStagedFiles: "Show only staged files",
FilterUnstagedFiles: "Show only unstaged files",
ResetCommitFilterState: "Reset filter",
2020-10-04 02:00:48 +02:00
NoChangedFiles: "No changed files",
NoFilesDisplay: "No file to display",
NotAFile: "Not a file",
PullWait: "Pulling...",
PushWait: "Pushing...",
FetchWait: "Fetching...",
LcSoftReset: "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",
2021-12-03 02:08:53 +02:00
NewBranchNameBranchOff: "New Branch Name (Branch is off of '{{.branchName}}')",
2020-10-04 02:00:48 +02:00
CantDeleteCheckOutBranch: "You cannot delete the checked out branch!",
DeleteBranch: "Delete Branch",
2021-12-03 02:08:53 +02:00
DeleteBranchMessage: "Are you sure you want to delete the branch '{{.selectedBranchName}}'?",
ForceDeleteBranchMessage: "'{{.selectedBranchName}}' is not fully merged. Are you sure you want to delete it?",
2020-10-04 02:00:48 +02:00
LcRebaseBranch: "rebase checked-out branch onto this branch",
CantRebaseOntoSelf: "You cannot rebase a branch onto itself",
CantMergeBranchIntoItself: "You cannot merge a branch into itself",
LcForceCheckout: "force checkout",
LcCheckoutByName: "checkout by name",
LcNewBranch: "new branch",
LcDeleteBranch: "delete branch",
NoBranchesThisRepo: "No branches for this repo",
CommitMessageConfirm: "{{.keyBindClose}}: close, {{.keyBindNewLine}}: new line, {{.keyBindConfirm}}: confirm",
CommitWithoutMessageErr: "You cannot commit without a commit message",
2022-01-28 11:44:36 +02:00
CloseConfirm: "{{.keyBindClose}}: close/cancel, {{.keyBindConfirm}}: confirm",
2020-10-04 02:00:48 +02:00
LcClose: "close",
LcQuit: "quit",
LcSquashDown: "squash down",
LcFixupCommit: "fixup commit",
NoCommitsThisBranch: "No commits for this branch",
OnlySquashTopmostCommit: "Can only squash topmost commit",
YouNoCommitsToSquash: "You have no commits to squash with",
Fixup: "Fixup",
SureFixupThisCommit: "Are you sure you want to 'fixup' this commit? It will be merged into the commit below",
SureSquashThisCommit: "Are you sure you want to squash this commit into the commit below?",
Squash: "Squash",
LcPickCommit: "pick commit (when mid-rebase)",
LcRevertCommit: "revert commit",
2022-01-02 01:34:33 +02:00
LcRewordCommit: "reword commit",
2020-10-04 02:00:48 +02:00
LcDeleteCommit: "delete commit",
LcMoveDownCommit: "move commit down one",
LcMoveUpCommit: "move commit up one",
LcEditCommit: "edit commit",
LcAmendToCommit: "amend commit with staged changes",
LcResetCommitAuthor: "reset commit author",
SetAuthorPromptTitle: "Set author (must look like 'Name <Email>')",
2022-05-08 05:27:35 +02:00
SureResetCommitAuthor: "The author field of this commit will be updated to match the configured user. This also renews the author timestamp. Continue?",
LcRenameCommitEditor: "reword commit with editor",
2020-10-04 02:00:48 +02:00
Error: "Error",
LcSelectHunk: "select hunk",
LcNavigateConflicts: "navigate conflicts",
LcPickHunk: "pick hunk",
2021-08-24 14:38:34 +02:00
LcPickAllHunks: "pick all hunks",
2020-10-04 02:00:48 +02:00
LcUndo: "undo",
LcUndoReflog: "undo (via reflog) (experimental)",
LcRedoReflog: "redo (via reflog) (experimental)",
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.",
2020-10-04 02:00:48 +02:00
LcPop: "pop",
LcDrop: "drop",
LcApply: "apply",
NoStashEntries: "No stash entries",
StashDrop: "Stash drop",
SureDropStashEntry: "Are you sure you want to drop this stash entry?",
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",
2022-04-14 21:45:55 +02:00
NoFilesToStash: "You have no files to stash",
2020-10-04 02:00:48 +02:00
StashChanges: "Stash changes",
2022-10-14 15:19:53 +02:00
LcRenameStash: "rename stash",
RenameStashPrompt: "Rename stash: {{.stashName}}",
2020-10-04 02:00:48 +02:00
OpenConfig: "open config file",
EditConfig: "edit config file",
ForcePush: "Force push",
ForcePushPrompt: "Your branch has diverged from the remote branch. Press 'esc' to cancel, or 'enter' to force push.",
ForcePushDisabled: "Your branch has diverged from the remote branch and you've disabled force pushing",
UpdatesRejectedAndForcePushDisabled: "Updates were rejected and you have disabled force pushing",
LcCheckForUpdate: "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",
2020-10-04 02:00:48 +02:00
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?",
2021-04-11 02:05:39 +02:00
MergeToolTitle: "Merge tool",
MergeToolPrompt: "Are you sure you want to open `git mergetool`?",
2020-10-09 15:10:12 +02:00
IntroPopupMessage: englishIntroPopupMessage,
2020-10-04 02:00:48 +02:00
GitconfigParseErr: `Gogit failed to parse your gitconfig file due to the presence of unquoted '\' characters. Removing these should fix the issue.`,
LcEditFile: `edit file`,
LcOpenFile: `open file`,
LcIgnoreFile: `add to .gitignore`,
LcExcludeFile: `add to .git/info/exclude`,
2020-10-04 02:00:48 +02:00
LcRefreshFiles: `refresh files`,
LcMergeIntoCurrentBranch: `merge into currently checked out branch`,
ConfirmQuit: `Are you sure you want to quit?`,
SwitchRepo: `switch to a recent repo`,
2020-11-28 06:38:14 +02:00
LcAllBranchesLogGraph: `show all branch logs`,
2020-10-04 02:00:48 +02:00
UnsupportedGitService: `Unsupported git service`,
LcCreatePullRequest: `create pull request`,
LcCopyPullRequestURL: `copy pull request URL to clipboard`,
2020-10-04 02:00:48 +02:00
NoBranchOnRemote: `This branch doesn't exist on remote. You need to push it to remote first.`,
LcFetch: `fetch`,
NoAutomaticGitFetchTitle: `No automatic git fetch`,
NoAutomaticGitFetchBody: `Lazygit can't use "git fetch" in a private repo; use 'f' in the files panel to run "git fetch" manually`,
2021-03-14 11:30:06 +02:00
FileEnter: `stage individual hunks/lines for file, or collapse/expand for directory`,
2020-10-04 02:00:48 +02:00
FileStagingRequirements: `Can only stage individual lines for tracked files`,
StageSelection: `toggle line staged / unstaged`,
ResetSelection: `delete change (git reset)`,
ToggleDragSelect: `toggle drag select`,
ToggleSelectHunk: `toggle select hunk`,
ToggleSelectionForPatch: `add/remove line(s) to patch`,
2022-05-04 14:20:45 +02:00
EditHunk: `edit hunk`,
ToggleStagingPanel: `switch to other panel (staged/unstaged changes)`,
2020-10-04 02:00:48 +02:00
ReturnToFilesPanel: `return to files panel`,
FastForward: `fast-forward this branch from its upstream`,
Fetching: "fetching and fast-forwarding {{.from}} -> {{.to}} ...",
FoundConflicts: "Conflicts! To abort press 'esc', otherwise press 'enter'",
FoundConflictsTitle: "Auto-merge failed",
PickHunk: "pick hunk",
2021-08-24 14:38:34 +02:00
PickAllHunks: "pick all hunks",
2020-10-04 02:00:48 +02:00
ViewMergeRebaseOptions: "view merge/rebase options",
NotMergingOrRebasing: "You are currently neither rebasing nor merging",
RecentRepos: "recent repositories",
MergeOptionsTitle: "Merge Options",
RebaseOptionsTitle: "Rebase Options",
CommitMessageTitle: "Commit Message",
2022-05-10 13:10:59 +02:00
LocalBranchesTitle: "Local Branches",
2020-10-04 02:00:48 +02:00
SearchTitle: "Search",
2022-03-26 05:44:30 +02:00
TagsTitle: "Tags",
2020-10-04 02:00:48 +02:00
MenuTitle: "Menu",
2022-03-26 05:44:30 +02:00
RemotesTitle: "Remotes",
RemoteBranchesTitle: "Remote Branches",
PatchBuildingTitle: "Main Panel (Patch Building)",
2020-10-04 02:00:48 +02:00
InformationTitle: "Information",
SecondaryTitle: "Secondary",
2022-03-26 05:44:30 +02:00
ReflogCommitsTitle: "Reflog",
2020-10-04 02:00:48 +02:00
GlobalTitle: "Global Keybindings",
ConflictsResolved: "all merge conflicts resolved. Continue?",
RebasingTitle: "Rebasing",
2022-12-17 01:36:37 +02:00
ConfirmRebase: "Are you sure you want to rebase '{{.checkedOutBranch}}' on top of '{{.selectedBranch}}'?",
2021-12-03 02:08:53 +02:00
ConfirmMerge: "Are you sure you want to merge '{{.selectedBranch}}' into '{{.checkedOutBranch}}'?",
2020-10-04 02:00:48 +02:00
FwdNoUpstream: "Cannot fast-forward a branch with no upstream",
FwdNoLocalUpstream: "Cannot fast-forward a branch whose remote is not registered locally",
2020-10-04 02:00:48 +02:00
FwdCommitsToPush: "Cannot fast-forward a branch with commits to push",
2021-04-11 15:32:20 +02:00
ErrorOccurred: "An error occurred! Please create an issue at",
2020-10-04 02:00:48 +02:00
NoRoom: "Not enough room",
YouAreHere: "YOU ARE HERE",
LcRewordNotSupported: "rewording commits while interactively rebasing is not currently supported",
LcCherryPickCopy: "copy commit (cherry-pick)",
LcCherryPickCopyRange: "copy commit range (cherry-pick)",
LcPasteCommits: "paste commits (cherry-pick)",
SureCherryPick: "Are you sure you want to cherry-pick the copied commits onto this branch?",
CherryPick: "Cherry-Pick",
CannotRebaseOntoFirstCommit: "You cannot interactive rebase onto the first commit",
CannotSquashOntoSecondCommit: "You cannot squash/fixup onto the second commit",
Donate: "Donate",
2021-04-11 13:52:04 +02:00
AskQuestion: "Ask Question",
2020-10-04 02:00:48 +02:00
PrevLine: "select previous line",
NextLine: "select next line",
PrevHunk: "select previous hunk",
NextHunk: "select next hunk",
PrevConflict: "select previous conflict",
NextConflict: "select next conflict",
2021-08-24 14:38:34 +02:00
SelectPrevHunk: "select previous hunk",
SelectNextHunk: "select next hunk",
2020-10-04 02:00:48 +02:00
ScrollDown: "scroll down",
ScrollUp: "scroll up",
LcScrollUpMainPanel: "scroll up main panel",
LcScrollDownMainPanel: "scroll down main panel",
AmendCommitTitle: "Amend Commit",
AmendCommitPrompt: "Are you sure you want to amend this commit with your staged files?",
DeleteCommitTitle: "Delete Commit",
DeleteCommitPrompt: "Are you sure you want to delete this commit?",
SquashingStatus: "squashing",
FixingStatus: "fixing up",
DeletingStatus: "deleting",
MovingStatus: "moving",
RebasingStatus: "rebasing",
AmendingStatus: "amending",
CherryPickingStatus: "cherry-picking",
UndoingStatus: "undoing",
RedoingStatus: "redoing",
CheckingOutStatus: "checking out",
2021-04-10 03:40:42 +02:00
CommittingStatus: "committing",
2020-10-04 02:00:48 +02:00
CommitFiles: "Commit files",
2022-03-26 05:44:30 +02:00
SubCommitsDynamicTitle: "Commits (%s)",
CommitFilesDynamicTitle: "Diff files (%s)",
RemoteBranchesDynamicTitle: "Remote branches (%s)",
2022-02-13 09:26:44 +02:00
LcViewItemFiles: "view selected item's files",
2020-10-04 02:00:48 +02:00
CommitFilesTitle: "Commit Files",
LcCheckoutCommitFile: "checkout file",
LcDiscardOldFileChange: "discard this commit's changes to this file",
DiscardFileChangesTitle: "Discard file changes",
DiscardFileChangesPrompt: "Are you sure you want to discard this commit's changes to this file? If this file was created in this commit, it will be deleted",
DisabledForGPG: "Feature not available for users using GPG",
CreateRepo: "Not in a git repository. Create a new git repository? (y/n): ",
2022-08-01 18:41:20 +02:00
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) ",
2022-06-30 13:53:58 +02:00
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'.",
2020-10-04 02:00:48 +02:00
AutoStashTitle: "Autostash?",
AutoStashPrompt: "You must stash and pop your changes to bring them across. Do this automatically? (enter/esc)",
StashPrefix: "Auto-stashing changes for ",
LcViewDiscardOptions: "view 'discard changes' options",
LcCancel: "cancel",
LcDiscardAllChanges: "discard all changes",
LcDiscardUnstagedChanges: "discard unstaged changes",
LcDiscardAllChangesToAllFiles: "nuke working tree",
LcDiscardAnyUnstagedChanges: "discard unstaged changes",
LcDiscardUntrackedFiles: "discard untracked files",
2022-05-08 13:30:43 +02:00
LcDiscardStagedChanges: "discard staged changes",
2020-10-04 02:00:48 +02:00
LcHardReset: "hard reset",
LcViewResetOptions: `view reset options`,
LcCreateFixupCommit: `create fixup commit for this commit`,
2021-04-12 13:49:08 +02:00
LcSquashAboveCommits: `squash all 'fixup!' commits above selected commit (autosquash)`,
SquashAboveCommits: `Squash all 'fixup!' commits above selected commit (autosquash)`,
2020-10-04 02:00:48 +02:00
SureSquashAboveCommits: `Are you sure you want to squash all fixup! commits above {{.commit}}?`,
CreateFixupCommit: `Create fixup commit`,
SureCreateFixupCommit: `Are you sure you want to create a fixup! commit for commit {{.commit}}?`,
LcExecuteCustomCommand: "execute custom command",
CustomCommand: "Custom Command:",
LcCommitChangesWithoutHook: "commit changes without pre-commit hook",
SkipHookPrefixNotConfigured: "You have not configured a commit message prefix for skipping hooks. Set `git.skipHookPrefix = 'WIP'` in your config",
LcResetTo: `reset to`,
PressEnterToReturn: "Press enter to return to lazygit",
LcViewStashOptions: "view stash options",
LcStashAllChanges: "stash all changes",
2020-10-04 02:00:48 +02:00
LcStashStagedChanges: "stash staged changes",
LcStashAllChangesKeepIndex: "stash all changes and keep index",
LcStashUnstagedChanges: "stash unstaged changes",
LcStashIncludeUntrackedChanges: "stash all changes including untracked files",
2020-10-04 02:00:48 +02:00
LcStashOptions: "Stash options",
NotARepository: "Error: must be run inside a git repository",
LcJump: "jump to panel",
2021-11-02 11:35:53 +02:00
LcScrollLeftRight: "scroll left/right",
LcScrollLeft: "scroll left",
LcScrollRight: "scroll right",
2020-10-04 02:00:48 +02:00
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",
LcToggleAddToPatch: "toggle file included in patch",
LcToggleAllInPatch: "toggle all files included in patch",
LcUpdatingPatch: "updating patch",
2020-10-04 02:00:48 +02:00
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",
2021-03-14 11:18:06 +02:00
LcEnterFile: "enter file to add selected lines to the patch (or toggle directory collapsed)",
ExitCustomPatchBuilder: `exit custom patch builder`,
2020-10-04 02:00:48 +02:00
EnterUpstream: `Enter upstream as '<remote> <branchname>'`,
InvalidUpstream: "Invalid upstream. Must be in the format '<remote> <branchname>'",
2020-10-04 02:00:48 +02:00
ReturnToRemotesList: `Return to remotes list`,
LcAddNewRemote: `add new remote`,
LcNewRemoteName: `New remote name:`,
LcNewRemoteUrl: `New remote url:`,
2021-03-02 18:10:22 +02:00
LcEditRemoteName: `Enter updated remote name for {{.remoteName}}:`,
LcEditRemoteUrl: `Enter updated remote url for {{.remoteName}}:`,
2020-10-04 02:00:48 +02:00
LcRemoveRemote: `remove remote`,
LcRemoveRemotePrompt: "Are you sure you want to remove remote",
DeleteRemoteBranch: "Delete Remote Branch",
DeleteRemoteBranchMessage: "Are you sure you want to delete remote branch",
LcSetAsUpstream: "set as upstream of checked-out branch",
LcSetUpstream: "set upstream of selected branch",
LcUnsetUpstream: "unset upstream of selected branch",
2020-10-04 02:00:48 +02:00
SetUpstreamTitle: "Set upstream branch",
SetUpstreamMessage: "Are you sure you want to set the upstream branch of '{{.checkedOut}}' to '{{.selected}}'",
LcEditRemote: "edit remote",
LcTagCommit: "tag commit",
TagMenuTitle: "Create tag",
2020-10-04 02:00:48 +02:00
TagNameTitle: "Tag name:",
2021-09-12 00:19:25 +02:00
TagMessageTitle: "Tag message: ",
LcAnnotatedTag: "annotated tag",
LcLightweightTag: "lightweight tag",
2020-10-04 02:00:48 +02:00
LcDeleteTag: "delete tag",
DeleteTagTitle: "Delete tag",
DeleteTagPrompt: "Are you sure you want to delete tag '{{.tagName}}'?",
PushTagTitle: "remote to push tag '{{.tagName}}' to:",
LcPushTag: "push tag",
LcCreateTag: "create tag",
CreateTagTitle: "Tag name:",
LcFetchRemote: "fetch remote",
FetchingRemoteStatus: "fetching remote",
LcCheckoutCommit: "checkout commit",
SureCheckoutThisCommit: "Are you sure you want to checkout this commit?",
LcGitFlowOptions: "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?",
2020-10-04 02:00:48 +02:00
LcViewResetToUpstreamOptions: "view upstream reset options",
LcNextScreenMode: "next screen mode (normal/half/fullscreen)",
LcPrevScreenMode: "prev screen mode",
LcStartSearch: "start search",
Panel: "Panel",
Keybindings: "Keybindings",
LcRenameBranch: "rename branch",
LcSetUnsetUpstream: "set/unset upstream",
2020-10-04 02:00:48 +02:00
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?",
LcOpenMenu: "open menu",
LcResetCherryPick: "reset cherry-picked (copied) commits selection",
LcNextTab: "next tab",
LcPrevTab: "previous tab",
LcCantUndoWhileRebasing: "Can't undo while rebasing",
LcCantRedoWhileRebasing: "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",
LcPrevPage: "previous page",
LcNextPage: "next page",
LcGotoTop: "scroll to top",
LcGotoBottom: "scroll to bottom",
LcFilteringBy: "filtering by",
ResetInParentheses: "(reset)",
2021-04-06 01:50:27 +02:00
LcOpenFilteringMenu: "view filter-by-path options",
2020-10-04 02:00:48 +02:00
LcFilterBy: "filter by",
LcExitFilterMode: "stop filtering by path",
LcFilterPathOption: "enter path to filter by",
2021-10-23 02:25:37 +02:00
EnterFileName: "Enter path:",
2020-10-04 02:00:48 +02:00
FilteringMenuTitle: "Filtering",
MustExitFilterModeTitle: "Command not available",
MustExitFilterModePrompt: "Command not available in filtered mode. Exit filtered mode?",
LcDiff: "diff",
LcEnterRefToDiff: "enter ref to diff",
LcEnteRefName: "enter ref:",
LcExitDiffMode: "exit diff mode",
DiffingMenuTitle: "Diffing",
LcSwapDiff: "reverse diff direction",
LcOpenDiffingMenu: "open diff menu",
// 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
LcOpenExtrasMenu: "open command log menu",
2020-10-04 02:00:48 +02:00
LcShowingGitDiff: "showing output for:",
2022-03-24 22:04:33 +02:00
LcCommitDiff: "commit diff",
2020-10-04 02:00:48 +02:00
LcCopyCommitShaToClipboard: "copy commit SHA to clipboard",
2022-03-24 22:04:33 +02:00
LcCommitSha: "commit SHA",
LcCommitURL: "commit URL",
LcCopyCommitMessageToClipboard: "copy commit message to clipboard",
2022-03-24 22:04:33 +02:00
LcCommitMessage: "commit message",
LcCommitAuthor: "commit author",
2022-03-24 22:04:33 +02:00
LcCopyCommitAttributeToClipboard: "copy commit attribute",
2020-10-04 02:00:48 +02:00
LcCopyBranchNameToClipboard: "copy branch name to clipboard",
LcCopyFileNameToClipboard: "copy the file name to the clipboard",
LcCopyCommitFileNameToClipboard: "copy the committed file name to the clipboard",
2021-10-16 04:49:40 +02:00
LcCopySelectedTexToClipboard: "copy the selected text to the clipboard",
2020-10-04 02:00:48 +02:00
LcCommitPrefixPatternError: "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",
2022-07-31 08:57:57 +02:00
LcBranchUnknown: "branch unknown",
2020-10-04 02:00:48 +02:00
UnstageLinesTitle: "Unstage lines",
UnstageLinesPrompt: "Are you sure you want to delete the selected lines (git reset)? It is irreversible.\nTo disable this dialogue set the config key of 'gui.skipUnstageLineWarning' to true",
LcCreateNewBranchFromCommit: "create new branch off of commit",
LcBuildingPatch: "building patch",
LcViewCommits: "view commits",
MinGitVersionError: "Git version must be at least 2.0 (i.e. from 2014 onwards). Please upgrade your git version. Alternatively raise an issue at https://github.com/jesseduffield/lazygit/issues for lazygit to be more backwards compatible.",
LcRunningCustomCommandStatus: "running custom command",
LcSubmoduleStashAndReset: "stash uncommitted submodule changes and update",
LcAndResetSubmodules: "and reset submodules",
LcEnterSubmodule: "enter submodule",
LcCopySubmoduleNameToClipboard: "copy submodule name to clipboard",
RemoveSubmodule: "Remove submodule",
LcRemoveSubmodule: "remove submodule",
RemoveSubmodulePrompt: "Are you sure you want to remove submodule '%s' and its corresponding directory? This is irreversible.",
LcResettingSubmoduleStatus: "resetting submodule",
LcNewSubmoduleName: "new submodule name:",
LcNewSubmoduleUrl: "new submodule URL:",
LcNewSubmodulePath: "new submodule path:",
LcAddSubmodule: "add new submodule",
LcAddingSubmoduleStatus: "adding submodule",
LcUpdateSubmoduleUrl: "update URL for submodule '%s'",
LcUpdatingSubmoduleUrlStatus: "updating URL",
LcEditSubmoduleUrl: "update submodule URL",
LcInitializingSubmoduleStatus: "initializing submodule",
LcInitSubmodule: "initialize submodule",
LcSubmoduleUpdate: "update submodule",
LcUpdatingSubmoduleStatus: "updating submodule",
LcBulkInitSubmodules: "bulk init submodules",
LcBulkUpdateSubmodules: "bulk update submodules",
LcBulkDeinitSubmodules: "bulk deinit submodules",
LcViewBulkSubmoduleOptions: "view bulk submodule options",
LcBulkSubmoduleOptions: "bulk submodule options",
LcRunningCommand: "running command",
SubCommitsTitle: "Sub-commits",
SubmodulesTitle: "Submodules",
NavigationTitle: "List Panel Navigation",
2021-10-23 02:25:37 +02:00
SuggestionsCheatsheetTitle: "Suggestions",
SuggestionsTitle: "Suggestions (press %s to focus)",
2022-03-26 05:44:30 +02:00
ExtrasTitle: "Command Log",
PushingTagStatus: "pushing tag",
PullRequestURLCopiedToClipboard: "Pull request URL copied to clipboard",
2022-03-24 22:04:33 +02:00
CommitDiffCopiedToClipboard: "Commit diff copied to clipboard",
CommitSHACopiedToClipboard: "Commit SHA copied to clipboard",
CommitURLCopiedToClipboard: "Commit URL copied to clipboard",
CommitMessageCopiedToClipboard: "Commit message copied to clipboard",
CommitAuthorCopiedToClipboard: "Commit author copied to clipboard",
LcCopiedToClipboard: "copied to clipboard",
2021-03-15 14:00:20 +02:00
ErrCannotEditDirectory: "Cannot edit directory: you can only edit individual files",
ErrStageDirWithInlineMergeConflicts: "Cannot stage/unstage directory containing files with inline merge conflicts. Please fix up the merge conflicts first",
2021-03-30 13:17:42 +02:00
ErrRepositoryMovedOrDeleted: "Cannot find repo. It might have been moved or deleted ¯\\_(ツ)_/¯",
2021-04-10 05:08:51 +02:00
CommandLog: "Command Log",
ToggleShowCommandLog: "Toggle show/hide command log",
FocusCommandLog: "Focus command log",
2021-10-23 03:45:02 +02:00
CommandLogHeader: "You can hide/focus this panel by pressing '%s'\n",
2021-04-11 15:32:20 +02:00
RandomTip: "Random Tip",
2021-06-05 08:39:59 +02:00
SelectParentCommitForMerge: "Select parent commit for merge",
ToggleWhitespaceInDiffView: "Toggle whether or not whitespace changes are shown in the diff view",
2021-06-07 10:23:33 +02:00
IgnoringWhitespaceInDiffView: "Whitespace will be ignored in the diff view",
ShowingWhitespaceInDiffView: "Whitespace will be shown in the diff view",
IncreaseContextInDiffView: "Increase the size of the context shown around changes in the diff view",
DecreaseContextInDiffView: "Decrease the size of the context shown around changes in the diff view",
2021-04-21 13:23:36 +02:00
CreatePullRequest: "Create pull request",
2021-04-21 15:05:57 +02:00
CreatePullRequestOptions: "Create pull request options",
LcCreatePullRequestOptions: "create pull request options",
2021-07-27 12:05:53 +02:00
LcDefaultBranch: "default branch",
LcSelectBranch: "select branch",
2021-10-16 03:07:24 +02:00
SelectConfigFile: "Select config file",
NoConfigFileFoundErr: "No config file found",
LcLoadingFileSuggestions: "loading file suggestions",
2021-11-02 12:16:00 +02:00
LcLoadingCommits: "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?",
2021-11-02 12:16:00 +02:00
LcOpenLogMenu: "open log menu",
LogMenuTitle: "Commit Log Options",
ToggleShowGitGraphAll: "toggle show whole git graph (pass the `--all` flag to `git log`)",
ShowGitGraph: "show git graph",
SortCommits: "commit sort order",
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!",
2021-12-28 04:31:20 +02:00
LcOpenCommitInBrowser: "open commit in browser",
2022-01-19 09:32:27 +02:00
LcViewBisectOptions: "view bisect options",
2022-01-23 09:46:21 +02:00
ConfirmRevertCommit: "Are you sure you want to revert {{.selectedCommit}}?",
2022-03-23 14:37:15 +02:00
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.",
CheckoutPrompt: "Are you sure you want to checkout '%s'?",
2022-04-18 02:44:45 +02:00
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).",
2022-05-15 12:16:20 +02:00
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",
LcCommitsCopied: "commits copied",
LcCommitCopied: "commit copied",
2022-01-05 03:01:59 +02:00
Actions: Actions{
2021-04-11 11:35:42 +02:00
// TODO: combine this with the original keybinding descriptions (those are all in lowercase atm)
CheckoutCommit: "Checkout commit",
CheckoutTag: "Checkout tag",
CheckoutBranch: "Checkout branch",
ForceCheckoutBranch: "Force checkout branch",
DeleteBranch: "Delete branch",
Merge: "Merge",
RebaseBranch: "Rebase branch",
RenameBranch: "Rename branch",
SetUnsetUpstream: "Set/unset upstream",
2021-04-11 11:35:42 +02:00
CreateBranch: "Create branch",
CherryPick: "(Cherry-pick) Paste commits",
CheckoutFile: "Checkout file",
DiscardOldFileChange: "Discard old file change",
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",
2021-04-11 11:35:42 +02:00
RevertCommit: "Revert commit",
CreateFixupCommit: "Create fixup commit",
SquashAllAboveFixupCommits: "Squash all above fixup commits",
CreateLightweightTag: "Create lightweight tag",
2021-09-12 00:19:25 +02:00
CreateAnnotatedTag: "Create annotated tag",
2021-04-11 11:35:42 +02:00
CopyCommitMessageToClipboard: "Copy commit message to clipboard",
2022-03-24 22:04:33 +02:00
CopyCommitDiffToClipboard: "Copy commit diff to clipboard",
CopyCommitSHAToClipboard: "Copy commit SHA to clipboard",
CopyCommitURLToClipboard: "Copy commit URL to clipboard",
CopyCommitAuthorToClipboard: "Copy commit author to clipboard",
2022-03-24 22:04:33 +02:00
CopyCommitAttributeToClipboard: "Copy to clipboard",
2021-04-11 11:35:42 +02:00
MoveCommitUp: "Move commit up",
MoveCommitDown: "Move commit down",
CustomCommand: "Custom command",
DiscardAllChangesInDirectory: "Discard all changes in directory",
DiscardUnstagedChangesInDirectory: "Discard unstaged changes in directory",
DiscardAllChangesInFile: "Discard all changes in file",
DiscardAllUnstagedChangesInFile: "Discard all unstaged changes in file",
StageFile: "Stage file",
2022-01-25 16:20:19 +02:00
StageResolvedFiles: "Stage files whose merge conflicts were resolved",
2021-04-11 11:35:42 +02:00
UnstageFile: "Unstage file",
UnstageAllFiles: "Unstage all files",
StageAllFiles: "Stage all files",
2022-08-11 14:18:19 +02:00
LcIgnoreExcludeFile: "ignore or exclude file",
IgnoreFileErr: "Cannot ignore .gitignore",
ExcludeFile: "Exclude file",
ExcludeFileErr: "Cannot exclude .git/info/exclude",
ExcludeGitIgnoreErr: "Cannot exclude .gitignore",
2021-04-11 11:35:42 +02:00
Commit: "Commit",
EditFile: "Edit file",
Push: "Push",
Pull: "Pull",
OpenFile: "Open file",
StashAllChanges: "Stash all changes",
2022-04-14 21:45:55 +02:00
StashAllChangesKeepIndex: "Stash all changes and keep index",
2021-04-11 11:35:42 +02:00
StashStagedChanges: "Stash staged changes",
StashUnstagedChanges: "Stash unstaged changes",
StashIncludeUntrackedChanges: "Stash all changes including untracked files",
2021-04-11 11:35:42 +02:00
GitFlowFinish: "Git flow finish",
GitFlowStart: "Git Flow start",
CopyToClipboard: "Copy to clipboard",
2021-10-16 04:49:40 +02:00
CopySelectedTextToClipboard: "Copy selected text to clipboard",
2021-04-11 11:35:42 +02:00
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",
2022-10-14 15:19:53 +02:00
RenameStash: "Rename stash",
2021-04-11 11:35:42 +02:00
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",
UpdateSubmodule: "Update submodule",
DeleteTag: "Delete tag",
PushTag: "Push tag",
NukeWorkingTree: "Nuke working tree",
DiscardUnstagedFileChanges: "Discard unstaged file changes",
RemoveUntrackedFiles: "Remove untracked files",
2022-05-08 13:30:43 +02:00
RemoveStagedFiles: "Remove staged files",
2021-04-11 11:35:42 +02:00
SoftReset: "Soft reset",
MixedReset: "Mixed reset",
HardReset: "Hard reset",
FastForwardBranch: "Fast forward branch",
Undo: "Undo",
Redo: "Redo",
2022-01-05 03:01:59 +02:00
CopyPullRequestURL: "Copy pull request URL",
OpenMergeTool: "Open merge tool",
2022-01-06 02:44:41 +02:00
OpenCommitInBrowser: "Open commit in browser",
OpenPullRequest: "Open pull request in browser",
2022-01-19 09:32:27 +02:00
StartBisect: "Start bisect",
ResetBisect: "Reset bisect",
BisectSkip: "Bisect skip",
BisectMark: "Bisect mark",
},
Bisect: Bisect{
Mark: "mark %s as %s",
MarkStart: "mark %s as %s (start bisect)",
Skip: "skip %s",
ResetTitle: "Reset 'git bisect'",
ResetPrompt: "Are you sure you want to reset 'git bisect'?",
ResetOption: "reset bisect",
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?",
2021-04-11 11:35:42 +02:00
},
2020-10-04 02:00:48 +02:00
}
}