vscode/extensions/git/package.nls.json

45 lines
2.2 KiB
JSON
Raw Normal View History

2017-01-17 16:38:00 +00:00
{
2017-02-20 14:54:22 +00:00
"command.clone": "Clone",
"command.init": "Initialize Repository",
2017-01-17 16:38:00 +00:00
"command.refresh": "Refresh",
2017-03-30 12:45:31 +00:00
"command.openChange": "Open Changes",
2017-01-17 16:38:00 +00:00
"command.openFile": "Open File",
2017-03-30 12:45:31 +00:00
"command.stage": "Stage Changes",
"command.stageAll": "Stage All Changes",
2017-04-25 13:44:32 +00:00
"command.stageSelectedRanges": "Stage Selected Ranges",
2017-02-17 20:57:24 +00:00
"command.revertSelectedRanges": "Revert Selected Ranges",
2017-03-30 12:45:31 +00:00
"command.unstage": "Unstage Changes",
"command.unstageAll": "Unstage All Changes",
2017-04-25 13:44:32 +00:00
"command.unstageSelectedRanges": "Unstage Selected Ranges",
2017-03-30 12:45:31 +00:00
"command.clean": "Discard Changes",
"command.cleanAll": "Discard All Changes",
2017-01-31 10:15:52 +00:00
"command.commit": "Commit",
2017-01-17 16:38:00 +00:00
"command.commitStaged": "Commit Staged",
"command.commitStagedSigned": "Commit Staged (Signed Off)",
"command.commitAll": "Commit All",
"command.commitAllSigned": "Commit All (Signed Off)",
"command.undoCommit": "Undo Last Commit",
"command.checkout": "Checkout to...",
"command.branch": "Create Branch...",
2017-05-03 21:53:26 +00:00
"command.deleteBranch": "Delete Branch...",
2017-01-17 16:38:00 +00:00
"command.pull": "Pull",
"command.pullRebase": "Pull (Rebase)",
"command.push": "Push",
"command.pushTo": "Push to...",
"command.sync": "Sync",
"command.publish": "Publish Branch",
2017-01-31 15:35:00 +00:00
"command.showOutput": "Show Git Output",
2017-02-07 11:03:42 +00:00
"config.enabled": "Whether git is enabled",
2017-01-31 15:50:30 +00:00
"config.path": "Path to the git executable",
"config.autorefresh": "Whether auto refreshing is enabled",
2017-01-31 15:54:47 +00:00
"config.autofetch": "Whether auto fetching is enabled",
2017-01-31 16:06:21 +00:00
"config.enableLongCommitWarning": "Whether long commit messages should be warned about",
2017-02-07 09:47:14 +00:00
"config.confirmSync": "Confirm before synchronizing git repositories",
2017-04-25 15:03:47 +00:00
"config.countBadge": "Controls the git badge counter. `all` counts all changes. `tracked` counts only the tracked changes. `off` turns it off.",
"config.checkoutType": "Controls what type of branches are listed when running `Checkout to...`. `all` shows all refs, `local` shows only the local branchs, `tags` shows only tags and `remote` shows only remote branches.",
2017-04-19 06:44:16 +00:00
"config.ignoreLegacyWarning": "Ignores the legacy Git warning",
"config.ignoreLimitWarning": "Ignores the warning when there are too many changes in a repository",
"config.defaultCloneDirectory": "The default location where to clone a git repository",
"config.enableSmartCommit": "Commit all changes when there are no staged changes."
}