From 400e1867010048857ab0c94112035ba7881bfed1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tetsuaki=20Hamano=20/=20=E6=B5=9C=E9=87=8E=20=E5=93=B2?= =?UTF-8?q?=E6=98=8E?= Date: Mon, 29 Apr 2024 08:53:05 +0000 Subject: [PATCH] Add translators comment --- src/components/content-tab-overview.tsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/content-tab-overview.tsx b/src/components/content-tab-overview.tsx index 7dbaa60e..36e6d156 100644 --- a/src/components/content-tab-overview.tsx +++ b/src/components/content-tab-overview.tsx @@ -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 () => { @@ -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 () => {