Title case (#27569)

This commit is contained in:
Christof Marti 2017-06-02 14:23:48 -07:00
parent fdbdf32717
commit a88d97d63e

View file

@ -84,7 +84,7 @@ export default class MergeDectorator implements vscode.Disposable {
outlineWidth: '1pt',
outlineColor: new vscode.ThemeColor('merge.border'),
after: {
contentText: ' ' + localize('currentChange', '(Current change)'),
contentText: ' ' + localize('currentChange', '(Current Change)'),
color: new vscode.ThemeColor('descriptionForeground')
}
});
@ -105,7 +105,7 @@ export default class MergeDectorator implements vscode.Disposable {
outlineColor: new vscode.ThemeColor('merge.border'),
isWholeLine: this.decorationUsesWholeLine,
after: {
contentText: ' ' + localize('incomingChange', '(Incoming change)'),
contentText: ' ' + localize('incomingChange', '(Incoming Change)'),
color: new vscode.ThemeColor('descriptionForeground')
}
});