2018-08-15 14:57:20 +02:00
/ *
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
import (
"github.com/nicksnyder/go-i18n/v2/i18n"
"golang.org/x/text/language"
)
2018-08-17 17:22:30 +02:00
func addEnglish ( i18nObject * i18n . Bundle ) error {
2018-08-15 14:57:20 +02:00
2018-08-17 17:22:30 +02:00
return i18nObject . AddMessages ( language . English ,
2018-08-15 14:57:20 +02:00
& i18n . Message {
ID : "NotEnoughSpace" ,
Other : "Not enough space to render panels" ,
} , & i18n . Message {
ID : "DiffTitle" ,
Other : "Diff" ,
2019-02-16 12:01:17 +02:00
} , & i18n . Message {
ID : "LogTitle" ,
Other : "Log" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "FilesTitle" ,
Other : "Files" ,
} , & i18n . Message {
ID : "BranchesTitle" ,
Other : "Branches" ,
} , & i18n . Message {
ID : "CommitsTitle" ,
Other : "Commits" ,
} , & i18n . Message {
ID : "StashTitle" ,
Other : "Stash" ,
2019-02-16 12:01:17 +02:00
} , & i18n . Message {
2019-11-10 07:20:35 +02:00
ID : "UnstagedChanges" ,
Other : ` Unstaged Changes ` ,
} , & i18n . Message {
ID : "StagedChanges" ,
Other : ` Staged Changes ` ,
2019-11-05 09:50:35 +02:00
} , & i18n . Message {
ID : "PatchBuildingMainTitle" ,
Other : ` Add Lines/Hunks To Patch ` ,
2019-02-16 12:01:17 +02:00
} , & i18n . Message {
ID : "MergingMainTitle" ,
Other : "Resolve merge conflicts" ,
2019-03-02 06:11:53 +02:00
} , & i18n . Message {
ID : "MainTitle" ,
Other : "Main" ,
} , & i18n . Message {
ID : "StagingTitle" ,
Other : "Staging" ,
} , & i18n . Message {
ID : "MergingTitle" ,
Other : "Merging" ,
} , & i18n . Message {
ID : "NormalTitle" ,
Other : "Normal" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "CommitMessage" ,
Other : "Commit message" ,
2018-10-20 16:25:48 +02:00
} , & i18n . Message {
2018-12-10 09:04:22 +02:00
ID : "CredentialsUsername" ,
2018-10-20 16:25:48 +02:00
Other : "Username" ,
} , & i18n . Message {
2018-12-10 09:04:22 +02:00
ID : "CredentialsPassword" ,
2018-10-20 16:25:48 +02:00
Other : "Password" ,
2018-10-20 17:18:42 +02:00
} , & i18n . Message {
ID : "PassUnameWrong" ,
Other : "Password and/or username wrong" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "CommitChanges" ,
Other : "commit changes" ,
2018-09-12 15:20:35 +02:00
} , & i18n . Message {
ID : "AmendLastCommit" ,
2018-09-25 22:11:51 +02:00
Other : "amend last commit" ,
} , & i18n . Message {
ID : "SureToAmend" ,
2019-02-24 00:42:24 +02:00
Other : "Are you sure you want to amend last commit? Afterwards, you can change commit message from the commits panel." ,
2018-10-08 21:19:45 +02:00
} , & i18n . Message {
ID : "NoCommitToAmend" ,
Other : "There's no commit to amend." ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
2018-08-30 14:09:08 +02:00
ID : "CommitChangesWithEditor" ,
Other : "commit changes using git editor" ,
} , & i18n . Message {
2018-08-15 14:57:20 +02:00
ID : "StatusTitle" ,
Other : "Status" ,
2018-09-05 13:01:21 +02:00
} , & i18n . Message {
ID : "GlobalTitle" ,
Other : "Global" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "navigate" ,
Other : "navigate" ,
2018-08-28 20:13:01 +02:00
} , & i18n . Message {
2018-09-05 11:12:11 +02:00
ID : "menu" ,
Other : "menu" ,
2018-08-29 13:43:59 +02:00
} , & i18n . Message {
ID : "execute" ,
Other : "execute" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "open" ,
Other : "open" ,
} , & i18n . Message {
ID : "ignore" ,
Other : "ignore" ,
} , & i18n . Message {
ID : "delete" ,
Other : "delete" ,
} , & i18n . Message {
ID : "toggleStaged" ,
Other : "toggle staged" ,
2018-08-25 00:51:47 +02:00
} , & i18n . Message {
ID : "toggleStagedAll" ,
Other : "stage/unstage all" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "refresh" ,
Other : "refresh" ,
2018-09-04 16:07:31 +02:00
} , & i18n . Message {
ID : "push" ,
Other : "push" ,
} , & i18n . Message {
ID : "pull" ,
Other : "pull" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "edit" ,
Other : "edit" ,
} , & i18n . Message {
ID : "scroll" ,
Other : "scroll" ,
} , & i18n . Message {
ID : "abortMerge" ,
Other : "abort merge" ,
} , & i18n . Message {
ID : "resolveMergeConflicts" ,
Other : "resolve merge conflicts" ,
2019-11-12 12:24:01 +02:00
} , & i18n . Message {
ID : "MergeConflictsTitle" ,
Other : "Merge Conflicts" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "checkout" ,
Other : "checkout" ,
} , & i18n . Message {
ID : "NoChangedFiles" ,
Other : "No changed files" ,
} , & i18n . Message {
ID : "FileHasNoUnstagedChanges" ,
Other : "File has no unstaged changes to add" ,
} , & i18n . Message {
ID : "CannotGitAdd" ,
Other : "Cannot git add --patch untracked files" ,
} , & i18n . Message {
ID : "NoFilesDisplay" ,
Other : "No file to display" ,
2018-08-28 11:12:35 +02:00
} , & i18n . Message {
ID : "NotAFile" ,
Other : "Not a file" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "PullWait" ,
Other : "Pulling..." ,
} , & i18n . Message {
ID : "PushWait" ,
Other : "Pushing..." ,
2018-12-07 15:56:29 +02:00
} , & i18n . Message {
ID : "FetchWait" ,
Other : "Fetching..." ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "FileNoMergeCons" ,
2019-03-03 06:55:19 +02:00
Other : "This file has no inline merge conflicts" ,
2019-02-19 14:36:29 +02:00
} , & i18n . Message {
2019-03-18 12:40:32 +02:00
ID : "softReset" ,
Other : "soft reset" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "SureTo" ,
Other : "Are you sure you want to {{.deleteVerb}} {{.fileName}} (you will lose your changes)?" ,
} , & i18n . Message {
ID : "AlreadyCheckedOutBranch" ,
Other : "You have already checked out this branch" ,
} , & i18n . Message {
ID : "SureForceCheckout" ,
Other : "Are you sure you want force checkout? You will lose all local changes" ,
} , & i18n . Message {
ID : "ForceCheckoutBranch" ,
Other : "Force Checkout Branch" ,
} , & i18n . Message {
ID : "BranchName" ,
Other : "Branch name" ,
} , & i18n . Message {
ID : "NewBranchNameBranchOff" ,
Other : "New Branch Name (Branch is off of {{.branchName}})" ,
} , & i18n . Message {
ID : "CantDeleteCheckOutBranch" ,
Other : "You cannot delete the checked out branch!" ,
} , & i18n . Message {
ID : "DeleteBranch" ,
Other : "Delete Branch" ,
} , & i18n . Message {
ID : "DeleteBranchMessage" ,
2018-08-22 17:27:45 +02:00
Other : "Are you sure you want to delete the branch {{.selectedBranchName}}?" ,
2018-08-21 12:06:42 +02:00
} , & i18n . Message {
ID : "ForceDeleteBranchMessage" ,
2018-10-21 17:40:06 +02:00
Other : "{{.selectedBranchName}} is not fully merged. Are you sure you want to delete it?" ,
2018-11-29 18:57:59 +02:00
} , & i18n . Message {
ID : "rebaseBranch" ,
2019-11-17 05:04:57 +02:00
Other : "rebase checked-out branch onto this branch" ,
2018-11-29 18:57:59 +02:00
} , & i18n . Message {
ID : "CantRebaseOntoSelf" ,
2019-02-16 12:01:17 +02:00
Other : "You cannot rebase a branch onto itself" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "CantMergeBranchIntoItself" ,
Other : "You cannot merge a branch into itself" ,
} , & i18n . Message {
ID : "forceCheckout" ,
Other : "force checkout" ,
} , & i18n . Message {
ID : "merge" ,
Other : "merge" ,
} , & i18n . Message {
ID : "checkoutByName" ,
Other : "checkout by name" ,
} , & i18n . Message {
ID : "newBranch" ,
Other : "new branch" ,
} , & i18n . Message {
ID : "deleteBranch" ,
Other : "delete branch" ,
2018-08-15 15:02:01 +02:00
} , & i18n . Message {
ID : "forceDeleteBranch" ,
Other : "delete branch (force)" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "NoBranchesThisRepo" ,
Other : "No branches for this repo" ,
} , & i18n . Message {
ID : "NoTrackingThisBranch" ,
Other : "There is no tracking for this branch" ,
2020-07-21 23:15:33 +02:00
} , & i18n . Message {
ID : "CommitMessageConfirm" ,
Other : "{{.keyBindClose}}: close, {{.keyBindNewLine}}: new line, {{.keyBindConfirm}}: confirm" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "CommitWithoutMessageErr" ,
Other : "You cannot commit without a commit message" ,
} , & i18n . Message {
ID : "CloseConfirm" ,
Other : "{{.keyBindClose}}: close, {{.keyBindConfirm}}: confirm" ,
2018-08-28 20:13:01 +02:00
} , & i18n . Message {
ID : "close" ,
Other : "close" ,
2020-07-18 11:41:13 +02:00
} , & i18n . Message {
ID : "quit" ,
Other : "quit" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "SureResetThisCommit" ,
Other : "Are you sure you want to reset to this commit?" ,
} , & i18n . Message {
ID : "ResetToCommit" ,
Other : "Reset To Commit" ,
} , & i18n . Message {
ID : "squashDown" ,
Other : "squash down" ,
} , & i18n . Message {
ID : "rename" ,
Other : "rename" ,
} , & i18n . Message {
ID : "resetToThisCommit" ,
Other : "reset to this commit" ,
} , & i18n . Message {
ID : "fixupCommit" ,
Other : "fixup commit" ,
} , & i18n . Message {
ID : "NoCommitsThisBranch" ,
Other : "No commits for this branch" ,
} , & i18n . Message {
ID : "OnlySquashTopmostCommit" ,
Other : "Can only squash topmost commit" ,
} , & i18n . Message {
ID : "YouNoCommitsToSquash" ,
Other : "You have no commits to squash with" ,
} , & i18n . Message {
ID : "CantFixupWhileUnstagedChanges" ,
Other : "Can't fixup while there are unstaged changes" ,
} , & i18n . Message {
ID : "Fixup" ,
Other : "Fixup" ,
} , & i18n . Message {
ID : "SureFixupThisCommit" ,
2019-02-24 00:42:24 +02:00
Other : "Are you sure you want to 'fixup' this commit? It will be merged into the commit below" ,
2019-02-19 14:36:29 +02:00
} , & i18n . Message {
ID : "SureSquashThisCommit" ,
2019-03-02 11:24:13 +02:00
Other : "Are you sure you want to squash this commit into the commit below?" ,
2019-02-19 14:36:29 +02:00
} , & i18n . Message {
ID : "Squash" ,
2019-03-02 11:24:13 +02:00
Other : "Squash" ,
2019-02-19 14:36:29 +02:00
} , & i18n . Message {
ID : "pickCommit" ,
2019-03-02 11:24:13 +02:00
Other : "pick commit (when mid-rebase)" ,
2019-02-19 14:36:29 +02:00
} , & i18n . Message {
ID : "revertCommit" ,
2019-03-02 11:24:13 +02:00
Other : "revert commit" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "OnlyRenameTopCommit" ,
2019-03-02 09:45:18 +02:00
Other : "Can only reword topmost commit from within lazygit. Use shift+R instead" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
2018-09-03 18:16:54 +02:00
ID : "renameCommit" ,
2019-03-02 09:45:18 +02:00
Other : "reword commit" ,
2018-09-03 17:57:03 +02:00
} , & i18n . Message {
2019-02-18 14:27:54 +02:00
ID : "deleteCommit" ,
2019-03-02 11:24:13 +02:00
Other : "delete commit" ,
2019-02-18 14:27:54 +02:00
} , & i18n . Message {
ID : "moveDownCommit" ,
2019-03-02 11:24:13 +02:00
Other : "move commit down one" ,
2019-02-18 14:27:54 +02:00
} , & i18n . Message {
ID : "moveUpCommit" ,
2019-03-02 11:24:13 +02:00
Other : "move commit up one" ,
2019-02-18 14:27:54 +02:00
} , & i18n . Message {
ID : "editCommit" ,
2019-03-02 11:24:13 +02:00
Other : "edit commit" ,
2019-02-19 14:36:29 +02:00
} , & i18n . Message {
ID : "amendToCommit" ,
2019-03-02 11:24:13 +02:00
Other : "amend commit with staged changes" ,
2019-02-18 14:27:54 +02:00
} , & i18n . Message {
2018-09-03 18:16:54 +02:00
ID : "renameCommitEditor" ,
Other : "rename commit with editor" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "PotentialErrInGetselectedCommit" ,
Other : "potential error in getSelected Commit (mismatched ui and state)" ,
} , & i18n . Message {
ID : "NoCommitsThisBranch" ,
Other : "No commits for this branch" ,
} , & i18n . Message {
ID : "Error" ,
Other : "Error" ,
} , & i18n . Message {
ID : "resizingPopupPanel" ,
Other : "resizing popup panel" ,
} , & i18n . Message {
ID : "RunningSubprocess" ,
Other : "running subprocess" ,
} , & i18n . Message {
ID : "selectHunk" ,
Other : "select hunk" ,
} , & i18n . Message {
ID : "navigateConflicts" ,
Other : "navigate conflicts" ,
} , & i18n . Message {
ID : "pickHunk" ,
Other : "pick hunk" ,
} , & i18n . Message {
ID : "pickBothHunks" ,
Other : "pick both hunks" ,
} , & i18n . Message {
ID : "undo" ,
Other : "undo" ,
2020-03-19 13:22:00 +02:00
} , & i18n . Message {
ID : "undoReflog" ,
2020-03-21 03:31:26 +02:00
Other : "undo (via reflog) (experimental)" ,
2020-03-21 04:39:20 +02:00
} , & i18n . Message {
ID : "redoReflog" ,
Other : "redo (via reflog) (experimental)" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "pop" ,
Other : "pop" ,
} , & i18n . Message {
ID : "drop" ,
Other : "drop" ,
} , & i18n . Message {
ID : "apply" ,
Other : "apply" ,
} , & i18n . Message {
ID : "NoStashEntries" ,
Other : "No stash entries" ,
} , & i18n . Message {
ID : "StashDrop" ,
Other : "Stash drop" ,
} , & i18n . Message {
ID : "SureDropStashEntry" ,
Other : "Are you sure you want to drop this stash entry?" ,
2020-04-20 10:53:40 +02:00
} , & i18n . Message {
ID : "StashPop" ,
Other : "Stash pop" ,
} , & i18n . Message {
ID : "SurePopStashEntry" ,
Other : "Are you sure you want to pop this stash entry?" ,
} , & i18n . Message {
ID : "StashApply" ,
Other : "Stash apply" ,
} , & i18n . Message {
ID : "SureApplyStashEntry" ,
Other : "Are you sure you want to apply this stash entry?" ,
2018-08-15 14:57:20 +02:00
} , & i18n . Message {
ID : "NoStashTo" ,
Other : "No stash to {{.method}}" ,
} , & i18n . Message {
ID : "NoTrackedStagedFilesStash" ,
Other : "You have no tracked/staged files to stash" ,
} , & i18n . Message {
ID : "StashChanges" ,
Other : "Stash changes" ,
} , & i18n . Message {
ID : "IssntListOfViews" ,
Other : "{{.name}} is not in the list of views" ,
} , & i18n . Message {
ID : "newFocusedViewIs" ,
Other : "new focused view is {{.newFocusedView}}" ,
2018-08-16 07:16:32 +02:00
} , & i18n . Message {
ID : "NoChangedFiles" ,
Other : "No changed files" ,
} , & i18n . Message {
ID : "MergeAborted" ,
Other : "Merge aborted" ,
2018-08-18 06:52:01 +02:00
} , & i18n . Message {
ID : "OpenConfig" ,
Other : "open config file" ,
} , & i18n . Message {
ID : "EditConfig" ,
Other : "edit config file" ,
2018-08-19 13:28:13 +02:00
} , & i18n . Message {
ID : "ForcePush" ,
Other : "Force push" ,
} , & i18n . Message {
ID : "ForcePushPrompt" ,
Other : "Your branch has diverged from the remote branch. Press 'esc' to cancel, or 'enter' to force push." ,
2018-08-25 07:55:49 +02:00
} , & i18n . Message {
2018-09-03 18:16:54 +02:00
ID : "checkForUpdate" ,
Other : "check for update" ,
2018-08-27 12:08:10 +02:00
} , & i18n . Message {
ID : "CheckingForUpdates" ,
Other : "Checking for updates..." ,
2018-08-27 12:23:47 +02:00
} , & i18n . Message {
ID : "OnLatestVersionErr" ,
Other : "You already have the latest version" ,
} , & i18n . Message {
ID : "MajorVersionErr" ,
2018-09-01 02:36:22 +02:00
Other : "New version ({{.newVersion}}) has non-backwards compatible changes compared to the current version ({{.currentVersion}})" ,
2018-08-27 12:23:47 +02:00
} , & i18n . Message {
ID : "CouldNotFindBinaryErr" ,
Other : "Could not find any binary at {{.url}}" ,
2018-08-27 12:46:06 +02:00
} , & i18n . Message {
2018-08-26 07:46:18 +02:00
ID : "AnonymousReportingTitle" ,
Other : "Help make lazygit better" ,
} , & i18n . Message {
ID : "AnonymousReportingPrompt" ,
Other : "Would you like to enable anonymous reporting data to help improve lazygit? (enter/esc)" ,
2019-11-10 13:07:45 +02:00
} , & i18n . Message {
2020-08-15 00:10:56 +02:00
ID : "IntroPopupMessage" ,
Other : ` Thanks for using lazygit ! Two things to share with you :
2019-11-10 13:07:45 +02:00
2020-08-15 00:10:56 +02:00
1 ) If you want to learn about lazygit ' s features , watch this vid :
2019-11-10 13:07:45 +02:00
https : //youtu.be/CPLdltN7wgE
2020-08-15 00:10:56 +02:00
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`,
2018-08-28 10:01:53 +02:00
} , & i18n . Message {
ID : "GitconfigParseErr" ,
Other : ` Gogit failed to parse your gitconfig file due to the presence of unquoted '\' characters. Removing these should fix the issue. ` ,
2018-09-01 14:03:43 +02:00
} , & i18n . Message {
ID : "editFile" ,
Other : ` edit file ` ,
} , & i18n . Message {
ID : "openFile" ,
Other : ` open file ` ,
} , & i18n . Message {
ID : "ignoreFile" ,
Other : ` add to .gitignore ` ,
} , & i18n . Message {
ID : "refreshFiles" ,
Other : ` refresh files ` ,
} , & i18n . Message {
ID : "mergeIntoCurrentBranch" ,
Other : ` merge into currently checked out branch ` ,
2018-09-05 19:56:11 +02:00
} , & i18n . Message {
ID : "ConfirmQuit" ,
Other : ` Are you sure you want to quit? ` ,
2018-09-19 10:40:41 +02:00
} , & i18n . Message {
ID : "SwitchRepo" ,
2018-09-19 11:15:29 +02:00
Other : ` switch to a recent repo ` ,
2018-10-12 14:06:03 +02:00
} , & i18n . Message {
ID : "UnsupportedGitService" ,
Other : ` Unsupported git service ` ,
} , & i18n . Message {
ID : "createPullRequest" ,
Other : ` create pull request ` ,
2018-10-17 14:20:15 +02:00
} , & i18n . Message {
ID : "NoBranchOnRemote" ,
Other : ` This branch doesn't exist on remote. You need to push it to remote first. ` ,
2018-11-25 14:15:36 +02:00
} , & i18n . Message {
2018-12-02 15:58:18 +02:00
ID : "fetch" ,
Other : ` fetch ` ,
2018-12-06 09:26:05 +02:00
} , & i18n . Message {
ID : "NoAutomaticGitFetchTitle" ,
Other : ` No automatic git fetch ` ,
} , & i18n . Message {
ID : "NoAutomaticGitFetchBody" ,
2018-12-12 13:33:42 +02:00
Other : ` Lazygit can't use "git fetch" in a private repo; use 'f' in the files panel to run "git fetch" manually ` ,
2018-12-02 10:57:01 +02:00
} , & i18n . Message {
ID : "StageLines" ,
Other : ` stage individual hunks/lines ` ,
} , & i18n . Message {
ID : "FileStagingRequirements" ,
2019-10-30 11:23:25 +02:00
Other : ` Can only stage individual lines for tracked files ` ,
2018-12-05 10:33:46 +02:00
} , & i18n . Message {
2019-10-30 11:23:25 +02:00
ID : "SelectHunk" ,
Other : ` select hunk ` ,
2018-12-05 10:33:46 +02:00
} , & i18n . Message {
2019-10-30 11:23:25 +02:00
ID : "StageSelection" ,
2020-02-29 08:57:17 +02:00
Other : ` toggle line staged / unstaged ` ,
2019-10-30 11:23:25 +02:00
} , & i18n . Message {
ID : "ResetSelection" ,
2020-02-29 08:57:17 +02:00
Other : ` delete change (git reset) ` ,
2019-10-30 11:23:25 +02:00
} , & i18n . Message {
ID : "ToggleDragSelect" ,
Other : ` toggle drag select ` ,
} , & i18n . Message {
ID : "ToggleSelectHunk" ,
Other : ` toggle select hunk ` ,
2020-02-29 09:44:08 +02:00
} , & i18n . Message {
ID : "ToggleSelectionForPatch" ,
Other : ` add/remove line(s) to patch ` ,
2020-08-07 18:41:07 +02:00
} , & i18n . Message {
2019-10-30 11:23:25 +02:00
ID : "TogglePanel" ,
2019-11-05 05:21:19 +02:00
Other : ` switch to other panel ` ,
2020-08-07 18:41:07 +02:00
} , & i18n . Message {
2019-10-30 11:23:25 +02:00
ID : "CantStageStaged" ,
Other : ` You can't stage an already staged change! ` ,
2018-12-05 10:33:46 +02:00
} , & i18n . Message {
2019-11-05 05:21:19 +02:00
ID : "ReturnToFilesPanel" ,
2018-12-05 10:33:46 +02:00
Other : ` return to files panel ` ,
} , & i18n . Message {
ID : "CantFindHunks" ,
Other : ` Could not find any hunks in this patch ` ,
} , & i18n . Message {
ID : "CantFindHunk" ,
Other : ` Could not find hunk ` ,
2018-12-07 09:52:31 +02:00
} , & i18n . Message {
ID : "FastForward" ,
Other : ` fast-forward this branch from its upstream ` ,
} , & i18n . Message {
ID : "Fetching" ,
Other : "fetching and fast-forwarding {{.from}} -> {{.to}} ..." ,
2018-12-08 07:54:54 +02:00
} , & i18n . Message {
ID : "FoundConflicts" ,
2019-04-14 17:21:21 +02:00
Other : "Conflicts! To abort press 'esc', otherwise press 'enter'" ,
2019-02-16 12:01:17 +02:00
} , & i18n . Message {
ID : "FoundConflictsTitle" ,
Other : "Auto-merge failed" ,
2018-12-08 07:54:54 +02:00
} , & i18n . Message {
ID : "Undo" ,
Other : "undo" ,
} , & i18n . Message {
ID : "PickHunk" ,
Other : "pick hunk" ,
} , & i18n . Message {
ID : "PickBothHunks" ,
Other : "pick both hunks" ,
} , & i18n . Message {
ID : "ViewMergeRebaseOptions" ,
Other : "view merge/rebase options" ,
} , & i18n . Message {
ID : "NotMergingOrRebasing" ,
Other : "You are currently neither rebasing nor merging" ,
} , & i18n . Message {
ID : "RecentRepos" ,
Other : "recent repositories" ,
} , & i18n . Message {
ID : "MergeOptionsTitle" ,
Other : "Merge Options" ,
} , & i18n . Message {
ID : "RebaseOptionsTitle" ,
Other : "Rebase Options" ,
2020-02-29 00:17:19 +02:00
} , & i18n . Message {
ID : "CommitMessageTitle" ,
Other : "Commit Message" ,
} , & i18n . Message {
ID : "Local-BranchesTitle" ,
Other : "Branches Tab" ,
} , & i18n . Message {
ID : "SearchTitle" ,
Other : "Search" ,
} , & i18n . Message {
ID : "TagsTitle" ,
Other : "Tags Tab" ,
} , & i18n . Message {
ID : "Branch-CommitsTitle" ,
Other : "Commits Tab" ,
} , & i18n . Message {
ID : "MenuTitle" ,
Other : "Menu" ,
} , & i18n . Message {
ID : "RemotesTitle" ,
Other : "Remotes Tab" ,
} , & i18n . Message {
ID : "CredentialsTitle" ,
Other : "Credentials" ,
} , & i18n . Message {
ID : "Remote-BranchesTitle" ,
Other : "Remote Branches (in Remotes tab)" ,
} , & i18n . Message {
ID : "Patch-BuildingTitle" ,
Other : "Patch Building" ,
} , & i18n . Message {
ID : "InformationTitle" ,
Other : "Information" ,
} , & i18n . Message {
ID : "SecondaryTitle" ,
Other : "Secondary" ,
} , & i18n . Message {
ID : "Reflog-CommitsTitle" ,
Other : "Reflog Tab" ,
} , & i18n . Message {
ID : "Title" ,
Other : "Title" ,
} , & i18n . Message {
ID : "GlobalTitle" ,
Other : "Global Keybindings" ,
} , & i18n . Message {
ID : "MerginTitle" ,
Other : "Mergin" ,
2019-02-16 03:07:27 +02:00
} , & i18n . Message {
ID : "ConflictsResolved" ,
Other : "all merge conflicts resolved. Continue?" ,
2019-02-16 12:01:17 +02:00
} , & i18n . Message {
ID : "RebasingTitle" ,
Other : "Rebasing" ,
} , & i18n . Message {
ID : "MergingTitle" ,
Other : "Merging" ,
} , & i18n . Message {
ID : "ConfirmRebase" ,
Other : "Are you sure you want to rebase {{.checkedOutBranch}} onto {{.selectedBranch}}?" ,
} , & i18n . Message {
ID : "ConfirmMerge" ,
Other : "Are you sure you want to merge {{.selectedBranch}} into {{.checkedOutBranch}}?" ,
} , & i18n . Message { } , & i18n . Message {
ID : "FwdNoUpstream" ,
Other : "Cannot fast-forward a branch with no upstream" ,
} , & i18n . Message {
ID : "FwdCommitsToPush" ,
Other : "Cannot fast-forward a branch with commits to push" ,
2019-02-18 10:42:23 +02:00
} , & i18n . Message {
ID : "ErrorOccurred" ,
Other : "An error occurred! Please create an issue at https://github.com/jesseduffield/lazygit/issues" ,
2019-02-20 11:51:24 +02:00
} , & i18n . Message {
ID : "NoRoom" ,
Other : "Not enough room" ,
2019-02-20 13:52:17 +02:00
} , & i18n . Message {
ID : "YouAreHere" ,
Other : "YOU ARE HERE" ,
2019-02-24 00:42:24 +02:00
} , & i18n . Message {
ID : "rewordNotSupported" ,
Other : "rewording commits while interactively rebasing is not currently supported" ,
2019-02-24 04:51:52 +02:00
} , & i18n . Message {
ID : "cherryPickCopy" ,
Other : "copy commit (cherry-pick)" ,
} , & i18n . Message {
ID : "cherryPickCopyRange" ,
Other : "copy commit range (cherry-pick)" ,
} , & i18n . Message {
ID : "pasteCommits" ,
Other : "paste commits (cherry-pick)" ,
} , & i18n . Message {
ID : "SureCherryPick" ,
Other : "Are you sure you want to cherry-pick the copied commits onto this branch?" ,
} , & i18n . Message {
ID : "CherryPick" ,
Other : "Cherry-Pick" ,
2019-02-24 08:59:47 +02:00
} , & i18n . Message {
ID : "CannotRebaseOntoFirstCommit" ,
Other : "You cannot interactive rebase onto the first commit" ,
2019-04-07 01:10:58 +02:00
} , & i18n . Message {
ID : "CannotSquashOntoSecondCommit" ,
Other : "You cannot squash/fixup onto the second commit" ,
2019-03-02 06:11:53 +02:00
} , & i18n . Message {
ID : "Donate" ,
Other : "Donate" ,
} , & i18n . Message {
ID : "PrevLine" ,
Other : "select previous line" ,
} , & i18n . Message {
ID : "NextLine" ,
Other : "select next line" ,
} , & i18n . Message {
ID : "PrevHunk" ,
Other : "select previous hunk" ,
} , & i18n . Message {
ID : "NextHunk" ,
Other : "select next hunk" ,
} , & i18n . Message {
ID : "PrevConflict" ,
Other : "select previous conflict" ,
} , & i18n . Message {
ID : "NextConflict" ,
Other : "select next conflict" ,
} , & i18n . Message {
ID : "SelectTop" ,
Other : "select top hunk" ,
} , & i18n . Message {
ID : "SelectBottom" ,
Other : "select bottom hunk" ,
} , & i18n . Message {
ID : "ScrollDown" ,
Other : "scroll down" ,
} , & i18n . Message {
ID : "ScrollUp" ,
Other : "scroll up" ,
2020-02-29 00:17:19 +02:00
} , & i18n . Message {
ID : "scrollUpMainPanel" ,
Other : "scroll up main panel" ,
} , & i18n . Message {
ID : "scrollDownMainPanel" ,
Other : "scroll down main panel" ,
2019-03-02 11:24:13 +02:00
} , & i18n . Message {
ID : "AmendCommitTitle" ,
Other : "Amend Commit" ,
} , & i18n . Message {
ID : "AmendCommitPrompt" ,
Other : "Are you sure you want to amend this commit with your staged files?" ,
} , & i18n . Message {
ID : "DeleteCommitTitle" ,
Other : "Delete Commit" ,
} , & i18n . Message {
ID : "DeleteCommitPrompt" ,
Other : "Are you sure you want to delete this commit?" ,
2019-03-03 07:11:20 +02:00
} , & i18n . Message {
ID : "SquashingStatus" ,
Other : "squashing" ,
} , & i18n . Message {
ID : "FixingStatus" ,
Other : "fixing up" ,
} , & i18n . Message {
ID : "DeletingStatus" ,
Other : "deleting" ,
} , & i18n . Message {
ID : "MovingStatus" ,
Other : "moving" ,
} , & i18n . Message {
ID : "RebasingStatus" ,
Other : "rebasing" ,
} , & i18n . Message {
ID : "AmendingStatus" ,
Other : "amending" ,
} , & i18n . Message {
ID : "CherryPickingStatus" ,
Other : "cherry-picking" ,
2020-03-21 03:40:56 +02:00
} , & i18n . Message {
ID : "UndoingStatus" ,
Other : "undoing" ,
2020-03-21 04:39:20 +02:00
} , & i18n . Message {
ID : "RedoingStatus" ,
Other : "redoing" ,
2020-03-21 03:40:56 +02:00
} , & i18n . Message {
ID : "CheckingOutStatus" ,
Other : "checking out" ,
2019-03-09 16:42:10 +02:00
} , & i18n . Message {
ID : "CommitFiles" ,
Other : "Commit files" ,
2019-03-11 00:28:47 +02:00
} , & i18n . Message {
ID : "viewCommitFiles" ,
Other : "view commit's files" ,
2019-03-16 09:43:13 +02:00
} , & i18n . Message {
ID : "CommitFilesTitle" ,
2020-02-29 00:17:19 +02:00
Other : "Commit Files" ,
2019-03-11 00:28:47 +02:00
} , & i18n . Message {
ID : "goBack" ,
Other : "go back" ,
2019-03-09 16:42:10 +02:00
} , & i18n . Message {
ID : "NoCommiteFiles" ,
Other : "No files for this commit" ,
2019-03-11 00:53:46 +02:00
} , & i18n . Message {
ID : "checkoutCommitFile" ,
Other : "checkout file" ,
2019-03-11 04:04:08 +02:00
} , & i18n . Message {
ID : "discardOldFileChange" ,
Other : "discard this commit's changes to this file" ,
} , & i18n . Message {
ID : "DiscardFileChangesTitle" ,
Other : "Discard file changes" ,
} , & i18n . Message {
ID : "DiscardFileChangesPrompt" ,
Other : "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" ,
2019-03-11 04:27:32 +02:00
} , & i18n . Message {
ID : "DisabledForGPG" ,
Other : "Feature not available for users using GPG" ,
2019-03-16 02:31:09 +02:00
} , & i18n . Message {
ID : "CreateRepo" ,
Other : "Not in a git repository. Create a new git repository? (y/n): " ,
2019-03-16 03:45:38 +02:00
} , & i18n . Message {
ID : "AutoStashTitle" ,
Other : "Autostash?" ,
} , & i18n . Message {
ID : "AutoStashPrompt" ,
Other : "You must stash and pop your changes to bring them across. Do this automatically? (enter/esc)" ,
} , & i18n . Message {
ID : "StashPrefix" ,
Other : "Auto-stashing changes for " ,
2019-03-18 11:44:33 +02:00
} , & i18n . Message {
ID : "viewDiscardOptions" ,
Other : "view 'discard changes' options" ,
} , & i18n . Message {
ID : "cancel" ,
Other : "cancel" ,
} , & i18n . Message {
ID : "discardAllChanges" ,
Other : "discard all changes" ,
} , & i18n . Message {
ID : "discardUnstagedChanges" ,
Other : "discard unstaged changes" ,
2019-03-18 12:19:07 +02:00
} , & i18n . Message {
ID : "discardAllChangesToAllFiles" ,
Other : "nuke working tree" ,
} , & i18n . Message {
ID : "discardAnyUnstagedChanges" ,
Other : "discard unstaged changes" ,
} , & i18n . Message {
ID : "discardUntrackedFiles" ,
Other : "discard untracked files" ,
} , & i18n . Message {
ID : "hardReset" ,
Other : "hard reset" ,
2020-01-07 11:12:36 +02:00
} , & i18n . Message {
ID : "hardResetUpstream" ,
Other : "hard reset to upstream branch" ,
2019-03-18 12:40:32 +02:00
} , & i18n . Message {
ID : "viewResetOptions" ,
Other : ` view reset options ` ,
2019-04-07 03:35:34 +02:00
} , & i18n . Message {
ID : "createFixupCommit" ,
Other : ` create fixup commit for this commit ` ,
} , & i18n . Message {
ID : "squashAboveCommits" ,
Other : ` squash above commits ` ,
} , & i18n . Message {
ID : "SquashAboveCommits" ,
Other : ` Squash above commits ` ,
} , & i18n . Message {
ID : "SureSquashAboveCommits" ,
Other : ` Are you sure you want to squash all fixup! commits above {{ .commit }} ? ` ,
} , & i18n . Message {
ID : "CreateFixupCommit" ,
Other : ` Create fixup commit ` ,
} , & i18n . Message {
ID : "SureCreateFixupCommit" ,
Other : ` Are you sure you want to create a fixup! commit for commit {{ .commit }} ? ` ,
2019-03-12 12:43:56 +02:00
} , & i18n . Message {
ID : "executeCustomCommand" ,
Other : "execute custom command" ,
} , & i18n . Message {
ID : "CustomCommand" ,
Other : "Custom Command:" ,
2019-04-13 05:56:31 +02:00
} , & i18n . Message {
ID : "commitChangesWithoutHook" ,
Other : "commit changes without pre-commit hook" ,
} , & i18n . Message {
ID : "SkipHookPrefixNotConfigured" ,
Other : "You have not configured a commit message prefix for skipping hooks. Set `git.skipHookPrefix = 'WIP'` in your config" ,
2019-04-02 10:53:16 +02:00
} , & i18n . Message {
ID : "resetTo" ,
Other : ` reset to ` ,
2019-05-26 03:24:01 +02:00
} , & i18n . Message {
ID : "pressEnterToReturn" ,
Other : "Press enter to return to lazygit" ,
2019-05-30 14:45:56 +02:00
} , & i18n . Message {
ID : "viewStashOptions" ,
Other : "view stash options" ,
} , & i18n . Message {
ID : "stashAllChanges" ,
Other : "stash changes" ,
} , & i18n . Message {
ID : "stashStagedChanges" ,
Other : "stash staged changes" ,
} , & i18n . Message {
ID : "stashOptions" ,
Other : "Stash options" ,
2019-07-07 20:15:11 +02:00
} , & i18n . Message {
ID : "notARepository" ,
2019-07-07 22:16:02 +02:00
Other : "Error: must be run inside a git repository" ,
2019-07-14 15:39:31 +02:00
} , & i18n . Message {
ID : "jump" ,
Other : "jump to panel" ,
2019-11-04 10:47:25 +02:00
} , & i18n . Message {
ID : "DiscardPatch" ,
Other : "Discard Patch" ,
} , & i18n . Message {
ID : "DiscardPatchConfirm" ,
2020-08-21 12:31:21 +02:00
Other : "You can only build a patch from one commit/stash-entry at a time. Discard current patch?" ,
2019-11-05 02:53:01 +02:00
} , & i18n . Message {
ID : "CantPatchWhileRebasingError" ,
Other : "You cannot build a patch or run patch commands while in a merging or rebasing state" ,
2019-11-04 10:47:25 +02:00
} , & i18n . Message {
ID : "toggleAddToPatch" ,
Other : "toggle file included in patch" ,
2020-01-03 14:01:32 +02:00
} , & i18n . Message {
ID : "ViewPatchOptions" ,
Other : "view custom patch options" ,
2019-11-04 10:47:25 +02:00
} , & i18n . Message {
ID : "PatchOptionsTitle" ,
Other : "Patch Options" ,
} , & i18n . Message {
ID : "NoPatchError" ,
Other : "No patch created yet. To start building a patch, use 'space' on a commit file or enter to add specific lines" ,
} , & i18n . Message {
ID : "enterFile" ,
Other : "enter file to add selected lines to the patch" ,
2019-11-05 05:21:19 +02:00
} , & i18n . Message {
ID : "ExitLineByLineMode" ,
Other : ` exit line-by-line mode ` ,
2019-11-11 14:22:09 +02:00
} , & i18n . Message {
ID : "EnterUpstream" ,
Other : ` Enter upstream as '<remote> <branchname>' ` ,
2019-11-13 12:16:24 +02:00
} , & i18n . Message {
ID : "EnterUpstreamWithSlash" ,
Other : ` Enter upstream as '<remote>/<branchname>' ` ,
2019-11-13 13:14:57 +02:00
} , & i18n . Message {
ID : "notTrackingRemote" ,
Other : "(not tracking any remote)" ,
2019-11-16 08:35:59 +02:00
} , & i18n . Message {
ID : "ReturnToRemotesList" ,
2020-08-07 18:41:07 +02:00
Other : ` Return to remotes list ` ,
2019-11-17 03:02:39 +02:00
} , & i18n . Message {
ID : "addNewRemote" ,
Other : ` add new remote ` ,
} , & i18n . Message {
ID : "newRemoteName" ,
Other : ` New remote name: ` ,
} , & i18n . Message {
ID : "newRemoteUrl" ,
Other : ` New remote url: ` ,
2019-11-17 09:15:32 +02:00
} , & i18n . Message {
ID : "editRemoteName" ,
Other : ` Enter updated remote name for {{ .remoteName }} : ` ,
} , & i18n . Message {
ID : "editRemoteUrl" ,
Other : ` Enter updated remote url for {{ .remoteName }} : ` ,
2019-11-17 03:02:39 +02:00
} , & i18n . Message {
ID : "removeRemote" ,
Other : ` remove remote ` ,
} , & i18n . Message {
ID : "removeRemotePrompt" ,
Other : "Are you sure you want to remove remote" ,
2019-11-17 04:47:47 +02:00
} , & i18n . Message {
ID : "DeleteRemoteBranch" ,
Other : "Delete Remote Branch" ,
} , & i18n . Message {
ID : "DeleteRemoteBranchMessage" ,
Other : "Are you sure you want to delete remote branch" ,
2019-11-17 05:50:12 +02:00
} , & i18n . Message {
ID : "setUpstream" ,
Other : "set as upstream of checked-out branch" ,
} , & i18n . Message {
ID : "SetUpstreamTitle" ,
Other : "Set upstream branch" ,
} , & i18n . Message {
ID : "SetUpstreamMessage" ,
Other : "Are you sure you want to set the upstream branch of '{{.checkedOut}}' to '{{.selected}}'" ,
2019-11-17 09:15:32 +02:00
} , & i18n . Message {
ID : "editRemote" ,
Other : "edit remote" ,
2019-11-18 00:38:36 +02:00
} , & i18n . Message {
ID : "tagCommit" ,
Other : "tag commit" ,
} , & i18n . Message {
ID : "TagNameTitle" ,
Other : "Tag name:" ,
} , & i18n . Message {
ID : "deleteTag" ,
Other : "delete tag" ,
} , & i18n . Message {
ID : "DeleteTagTitle" ,
Other : "Delete tag" ,
} , & i18n . Message {
ID : "DeleteTagPrompt" ,
Other : "Are you sure you want to delete tag '{{.tagName}}'?" ,
} , & i18n . Message {
ID : "PushTagTitle" ,
Other : "remote to push tag '{{.tagName}}' to:" ,
} , & i18n . Message {
2019-11-21 13:09:02 +02:00
ID : "pushTag" ,
Other : "push tag" ,
2019-11-18 00:38:36 +02:00
} , & i18n . Message {
ID : "createTag" ,
Other : "create tag" ,
} , & i18n . Message {
ID : "CreateTagTitle" ,
Other : "Tag name:" ,
2019-12-07 07:20:22 +02:00
} , & i18n . Message {
ID : "fetchRemote" ,
Other : "fetch remote" ,
} , & i18n . Message {
ID : "FetchingRemoteStatus" ,
Other : "fetching remote" ,
2020-01-07 11:24:10 +02:00
} , & i18n . Message {
ID : "checkoutCommit" ,
Other : "checkout commit" ,
} , & i18n . Message {
ID : "SureCheckoutThisCommit" ,
Other : "Are you sure you want to checkout this commit?" ,
2020-01-07 12:42:33 +02:00
} , & i18n . Message {
ID : "gitFlowOptions" ,
Other : "show git-flow options" ,
} , & i18n . Message {
ID : "NotAGitFlowBranch" ,
Other : "This does not seem to be a git flow branch" ,
} , & i18n . Message {
ID : "NewBranchNamePrompt" ,
Other : "new {{.branchType}} name:" ,
2020-02-03 17:59:46 +02:00
} , & i18n . Message {
ID : "IgnoreTracked" ,
Other : "Ignore tracked file" ,
} , & i18n . Message {
ID : "IgnoreTrackedPrompt" ,
Other : "Are you sure you want to ignore a tracked file?" ,
2020-02-16 00:03:26 +02:00
} , & i18n . Message {
2020-02-16 00:49:00 +02:00
ID : "viewResetToUpstreamOptions" ,
Other : "view upstream reset options" ,
2020-02-24 23:32:46 +02:00
} , & i18n . Message {
ID : "nextScreenMode" ,
Other : "next screen mode (normal/half/fullscreen)" ,
} , & i18n . Message {
ID : "prevScreenMode" ,
Other : "prev screen mode" ,
2020-03-05 02:38:16 +02:00
} , & i18n . Message {
ID : "startSearch" ,
Other : "start search" ,
2020-02-29 00:17:19 +02:00
} , & i18n . Message {
ID : "Panel" ,
Other : "Panel" ,
} , & i18n . Message {
ID : "Keybindings" ,
Other : "Keybindings" ,
2020-03-17 12:22:07 +02:00
} , & i18n . Message {
ID : "renameBranch" ,
Other : "rename branch" ,
} , & i18n . Message {
ID : "NewBranchNamePrompt" ,
Other : "Enter new branch name for branch" ,
} , & i18n . Message {
ID : "RenameBranchWarning" ,
Other : "This branch is tracking a remote. This action will only rename the local branch name, not the name of the remote branch. Continue?" ,
2020-03-12 07:29:15 +02:00
} , & i18n . Message {
ID : "openMenu" ,
Other : "open menu" ,
2020-03-12 07:26:11 +02:00
} , & i18n . Message {
ID : "closeMenu" ,
Other : "close menu" ,
2020-03-18 23:45:21 +02:00
} , & i18n . Message {
ID : "resetCherryPick" ,
Other : "reset cherry-picked (copied) commits selection" ,
2020-03-23 14:22:10 +02:00
} , & i18n . Message {
ID : "nextTab" ,
Other : "next tab" ,
} , & i18n . Message {
ID : "prevTab" ,
Other : "previous tab" ,
2020-03-24 12:57:53 +02:00
} , & i18n . Message {
2020-03-25 00:30:11 +02:00
ID : "cantUndoWhileRebasing" ,
Other : "Can't undo while rebasing" ,
2020-03-24 12:57:53 +02:00
} , & i18n . Message {
2020-03-25 00:30:11 +02:00
ID : "cantRedoWhileRebasing" ,
Other : "Can't redo while rebasing" ,
2020-03-28 03:43:31 +02:00
} , & i18n . Message {
ID : "MustStashWarning" ,
Other : "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?" ,
} , & i18n . Message {
ID : "MustStashTitle" ,
Other : "Must stash" ,
2020-03-28 05:08:54 +02:00
} , & i18n . Message {
ID : "ConfirmationTitle" ,
Other : "Confirmation Panel" ,
} , & i18n . Message {
ID : "prevPage" ,
Other : "previous page" ,
} , & i18n . Message {
ID : "nextPage" ,
Other : "next page" ,
} , & i18n . Message {
ID : "gotoTop" ,
Other : "scroll to top" ,
} , & i18n . Message {
ID : "gotoBottom" ,
Other : "scroll to bottom" ,
2020-03-28 07:28:35 +02:00
} , & i18n . Message {
2020-03-29 01:11:15 +02:00
ID : "filteringBy" ,
Other : "filtering by" ,
2020-03-28 07:28:35 +02:00
} , & i18n . Message {
ID : "(reset)" ,
Other : "(reset)" ,
} , & i18n . Message {
ID : "openScopingMenu" ,
Other : "view scoping options" ,
} , & i18n . Message {
2020-03-29 01:11:15 +02:00
ID : "filterBy" ,
Other : "filter by" ,
2020-03-28 07:28:35 +02:00
} , & i18n . Message {
2020-03-29 01:11:15 +02:00
ID : "exitFilterMode" ,
Other : "stop filtering by path" ,
2020-03-28 07:28:35 +02:00
} , & i18n . Message {
2020-03-29 01:11:15 +02:00
ID : "filterPathOption" ,
Other : "enter path to filter by" ,
2020-03-28 07:28:35 +02:00
} , & i18n . Message {
ID : "enterFileName" ,
Other : "enter path:" ,
} , & i18n . Message {
2020-03-29 01:11:15 +02:00
ID : "FilteringMenuTitle" ,
Other : "Filtering" ,
} , & i18n . Message {
ID : "MustExitFilterModeTitle" ,
Other : "Command not available" ,
} , & i18n . Message {
ID : "MustExitFilterModePrompt" ,
Other : "Command not available in filtered mode. Exit filtered mode?" ,
2020-03-29 05:34:17 +02:00
} , & i18n . Message {
2020-03-29 08:54:58 +02:00
ID : "diff" ,
Other : "diff" ,
2020-03-29 05:34:17 +02:00
} , & i18n . Message {
2020-03-29 08:54:58 +02:00
ID : "enterRefToDiff" ,
Other : "enter ref to diff" ,
2020-03-29 05:34:17 +02:00
} , & i18n . Message {
ID : "enteRefName" ,
Other : "enter ref:" ,
} , & i18n . Message {
ID : "exitDiffMode" ,
Other : "exit diff mode" ,
} , & i18n . Message {
ID : "DiffingMenuTitle" ,
Other : "Diffing" ,
} , & i18n . Message {
ID : "swapDiff" ,
Other : "reverse diff direction" ,
} , & i18n . Message {
ID : "openDiffingMenu" ,
Other : "open diff menu" ,
} , & i18n . Message {
ID : "showingGitDiff" ,
2020-03-29 08:54:58 +02:00
Other : "showing output for:" ,
2020-04-15 12:30:24 +02:00
} , & i18n . Message {
ID : "copyCommitShaToClipboard" ,
Other : "copy commit SHA to clipboard" ,
} , & i18n . Message {
ID : "copyBranchNameToClipboard" ,
Other : "copy branch name to clipboard" ,
2020-04-20 10:42:24 +02:00
} , & i18n . Message {
ID : "commitPrefixPatternError" ,
Other : "Error in commitPrefix pattern" ,
2020-07-17 00:39:45 +02:00
} , & i18n . Message {
ID : "NoFilesStagedTitle" ,
Other : "No files staged" ,
} , & i18n . Message {
ID : "NoFilesStagedPrompt" ,
Other : "You have not staged any files. Commit all files?" ,
2020-07-17 01:02:25 +02:00
} , & i18n . Message {
ID : "BranchNotFoundTitle" ,
Other : "Branch not found" ,
} , & i18n . Message {
ID : "BranchNotFoundPrompt" ,
Other : "Branch not found. Create a new branch named" ,
2020-08-15 08:36:39 +02:00
} , & i18n . Message {
ID : "UnstageLinesTitle" ,
Other : "Unstage lines" ,
} , & i18n . Message {
ID : "UnstageLinesPrompt" ,
Other : "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" ,
2020-08-16 14:01:14 +02:00
} , & i18n . Message {
ID : "createNewBranchFromCommit" ,
Other : "create new branch off of commit" ,
2020-08-21 11:53:45 +02:00
} , & i18n . Message {
ID : "viewStashFiles" ,
Other : "view stash entry's files" ,
2019-02-24 00:42:24 +02:00
} ,
2018-08-15 14:57:20 +02:00
)
}