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.
This commit is contained in:
per1234 2022-09-30 02:28:09 -07:00
parent 6f07717369
commit 32b70efd5c
2 changed files with 2 additions and 1 deletions

View File

@ -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'),
}}
/>

View File

@ -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}?",