This commit is contained in:
Johannes Rieken 2017-11-01 14:17:38 +01:00
parent ca66afae48
commit 1cafd15b44
2 changed files with 12 additions and 7 deletions

View file

@ -835,7 +835,7 @@
"colors": [
{
"id": "git.modifiedForeground",
"description": "Color for modified resources",
"description": "%colors.modified%",
"defaults": {
"light": "#a76e12",
"dark": "#E2C08D",
@ -844,7 +844,7 @@
},
{
"id": "git.deletedForeground",
"description": "Color for deleted resources",
"description": "%colors.deleted%",
"defaults": {
"light": "#ad0707",
"dark": "#c74e39",
@ -853,7 +853,7 @@
},
{
"id": "git.untrackedForeground",
"description": "Color for untracked resources",
"description": "%colors.untracked%",
"defaults": {
"light": "#019001",
"dark": "#73C991",
@ -862,7 +862,7 @@
},
{
"id": "git.ignoredForeground",
"description": "Color for ignored resources",
"description": "%colors.ignored%",
"defaults": {
"light": "#8E8E90",
"dark": "#A7A8A9",
@ -871,7 +871,7 @@
},
{
"id": "git.conflictForeground",
"description": "Color for resources with conflicts",
"description": "%colors.conflict%",
"defaults": {
"light": "#6c6cc4",
"dark": "#6c6cc4",

View file

@ -56,5 +56,10 @@
"config.defaultCloneDirectory": "The default location where to clone a git repository",
"config.enableSmartCommit": "Commit all changes when there are no staged changes.",
"config.enableCommitSigning": "Enables commit signing with GPG.",
"config.discardAllScope": "Controls what changes are discarded by the `Discard all changes` command. `all` discards all changes. `tracked` discards only tracked files. `prompt` shows a prompt dialog every time the action is run."
}
"config.discardAllScope": "Controls what changes are discarded by the `Discard all changes` command. `all` discards all changes. `tracked` discards only tracked files. `prompt` shows a prompt dialog every time the action is run.",
"colors.modified": "Color for modified resources.",
"colors.deleted": "Color for deleted resources.",
"colors.untracked": "Color for untracked resources.",
"colors.ignored": "Color for ignored resources.",
"colors.conflict": "Color for resources with conflicts."
}