Skip to content

Commit

Permalink
Add translators comment
Browse files Browse the repository at this point in the history
  • Loading branch information
t-hamano committed Apr 29, 2024
1 parent 4f37357 commit 400e186
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/content-tab-overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,9 @@ function ShortcutsSection( { selectedSite }: Pick< ContentTabOverviewProps, 'sel
if ( installedApps.vscode ) {
// Use VS Code as a default even if none of the editors are installed
buttonsArray.push( {
label: __( 'VS Code' ),
label:
// translators: "VS Code" is the brand name for an IDE and does not need to be translated
__( 'VS Code' ),
className: 'text-nowrap',
icon: code,
onClick: async () => {
Expand All @@ -171,7 +173,9 @@ function ShortcutsSection( { selectedSite }: Pick< ContentTabOverviewProps, 'sel
} );
} else if ( installedApps.phpstorm ) {
buttonsArray.push( {
label: __( 'PhpStorm' ),
label:
// translators: "PhpStorm" is the brand name for an IDE and does not need to be translated
__( 'PhpStorm' ),
className: 'text-nowrap',
icon: code,
onClick: async () => {
Expand Down

0 comments on commit 400e186

Please sign in to comment.