Skip to content

Commit 4231848

Browse files
authored
Git - quick diff decoration label casing (microsoft#247717)
1 parent a6171a1 commit 4231848

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

extensions/git/src/repository.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ export class Repository implements Disposable {
10211021
* Quick diff label
10221022
*/
10231023
get label(): string {
1024-
return l10n.t('Git local changes (working tree)');
1024+
return l10n.t('Git Local Changes (Working Tree)');
10251025
}
10261026

10271027
provideOriginalResource(uri: Uri): Uri | undefined {
@@ -2805,8 +2805,7 @@ export class Repository implements Disposable {
28052805
}
28062806

28072807
export class StagedResourceQuickDiffProvider implements QuickDiffProvider {
2808-
readonly visible: boolean = true;
2809-
readonly label = l10n.t('Git local changes (index)');
2808+
readonly label = l10n.t('Git Local Changes (Index)');
28102809

28112810
constructor(
28122811
private readonly _repository: Repository,

0 commit comments

Comments
 (0)