Skip to content

Commit

Permalink
Git - fix secondary action localization (#153604)
Browse files Browse the repository at this point in the history
  • Loading branch information
lszomoru authored Jun 28, 2022
1 parent 8fd6e38 commit adecb6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions extensions/git/src/actionButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,17 +111,17 @@ export class ActionButtonCommand {
[
{
command: 'git.commit',
title: 'Commit',
title: localize('scm secondary button commit', "Commit"),
arguments: [this.repository.sourceControl, ''],
},
{
command: 'git.commit',
title: 'Commit & Push',
title: localize('scm secondary button commit and push', "Commit & Push"),
arguments: [this.repository.sourceControl, 'push'],
},
{
command: 'git.commit',
title: 'Commit & Sync',
title: localize('scm secondary button commit and sync', "Commit & Sync"),
arguments: [this.repository.sourceControl, 'sync'],
},
]
Expand Down

0 comments on commit adecb6b

Please sign in to comment.