Skip to content

Commit

Permalink
Fix step description string to be localization friendly
Browse files Browse the repository at this point in the history
  • Loading branch information
bhavyaus committed Mar 7, 2023
1 parent a320598 commit 3e50666
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ export const walkthroughs: GettingStartedWalkthroughContent = [
{
id: 'installGit',
title: localize('gettingStarted.installGit.title', "Install Git"),
description: localize('gettingStarted.installGit.description.interpolated', "Install Git to track changes in your projects.\n{0}\n{1} after installation to complete Git setup.", Button(localize('installGit', "Install Git"), 'https://aka.ms/vscode-install-git'), '[Reload window](command:workbench.action.reloadWindow)'),
description: localize({ key: 'gettingStarted.installGit.description.interpolated', comment: ['The placeholders are command link items should not be translated'] }, "Install Git to track changes in your projects.\n{0}\n{1}Reload window{2} after installation to complete Git setup.", Button(localize('installGit', "Install Git"), 'https://aka.ms/vscode-install-git'), '[', '](command:workbench.action.reloadWindow)'),
when: 'git.missing',
media: {
type: 'svg', altText: 'Install Git.', path: 'git.svg',
Expand Down

0 comments on commit 3e50666

Please sign in to comment.