From adecb6b529448a6ee43dfc67aa6bde65a10277c3 Mon Sep 17 00:00:00 2001 From: Ladislau Szomoru <3372902+lszomoru@users.noreply.github.com> Date: Tue, 28 Jun 2022 22:46:03 +0200 Subject: [PATCH] Git - fix secondary action localization (#153604) Fix #153503 --- extensions/git/src/actionButton.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/extensions/git/src/actionButton.ts b/extensions/git/src/actionButton.ts index f461a92ec6b57..56d87027361aa 100644 --- a/extensions/git/src/actionButton.ts +++ b/extensions/git/src/actionButton.ts @@ -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'], }, ]