Use 'stashed changes' terminology

This commit is contained in:
Eric Amodio
2017-03-29 00:14:28 -04:00
parent 0dda92cf8d
commit 0686c882c8
3 changed files with 6 additions and 6 deletions

View File

@@ -79,12 +79,12 @@ export class CommitDetailsQuickPick {
if (stash && git.config.insiders) {
items.splice(index++, 0, new CommandQuickPickItem({
label: `$(repo-forked) Apply Stash`,
label: `$(repo-forked) Apply Stashed Changes`,
description: `\u00a0 \u2014 \u00a0\u00a0 ${commit.message}`
}, Commands.StashApply, [commit as GitStashCommit, true, false]));
items.splice(index++, 0, new CommandQuickPickItem({
label: `$(x) Delete Stash`,
label: `$(x) Delete Stashed Changes`,
description: `\u00a0 \u2014 \u00a0\u00a0 ${commit.message}`
}, Commands.StashDelete, [commit as GitStashCommit, true]));
}