Skip to content

Commit

Permalink
Correct text of "INSTALLED" label in Library/Boards Manager
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
per1234 committed Oct 3, 2022
1 parent 6f07717 commit 32b70ef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class ListItemRenderer<T extends ArduinoComponent> {
className="installed"
onClick={onClickUninstall}
{...{
install: nls.localize('arduino/component/install', 'INSTALL'),
install: nls.localize('arduino/component/installed', 'INSTALLED'),
uninstall: nls.localize('arduino/component/uninstall', 'Uninstall'),
}}
/>
Expand Down
1 change: 1 addition & 0 deletions i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@
"by": "by",
"filterSearch": "Filter your search...",
"install": "INSTALL",
"installed": "INSTALLED",
"moreInfo": "More info",
"uninstall": "Uninstall",
"uninstallMsg": "Do you want to uninstall {0}?",
Expand Down

0 comments on commit 32b70ef

Please sign in to comment.