Skip to content

Commit 32b70ef

Browse files
committed
Correct text of "INSTALLED" label in Library/Boards Manager
An "INSTALLED" label is shown on the items in the Library Manager and Boards Manager views that are currently installed on the user's system. During some work to add missing internationalization to the UI strings, this text was changed to "INSTALL". That text is not appropriate for what this label is intended to communicate. The regression is hereby corrected, while retaining the internationalization of the string.
1 parent 6f07717 commit 32b70ef

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: arduino-ide-extension/src/browser/widgets/component-list/list-item-renderer.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class ListItemRenderer<T extends ArduinoComponent> {
5959
className="installed"
6060
onClick={onClickUninstall}
6161
{...{
62-
install: nls.localize('arduino/component/install', 'INSTALL'),
62+
install: nls.localize('arduino/component/installed', 'INSTALLED'),
6363
uninstall: nls.localize('arduino/component/uninstall', 'Uninstall'),
6464
}}
6565
/>

Diff for: i18n/en.json

+1
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@
145145
"by": "by",
146146
"filterSearch": "Filter your search...",
147147
"install": "INSTALL",
148+
"installed": "INSTALLED",
148149
"moreInfo": "More info",
149150
"uninstall": "Uninstall",
150151
"uninstallMsg": "Do you want to uninstall {0}?",

0 commit comments

Comments
 (0)