Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 32b70ef

Browse filesBrowse 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
Copy full SHA for 32b70ef

File tree

2 files changed

+2
-1
lines changed
Filter options

2 files changed

+2
-1
lines changed

‎arduino-ide-extension/src/browser/widgets/component-list/list-item-renderer.tsx

Copy file name to clipboardExpand all lines: arduino-ide-extension/src/browser/widgets/component-list/list-item-renderer.tsx
+1-1Lines changed: 1 addition & 1 deletion
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
/>

‎i18n/en.json

Copy file name to clipboardExpand all lines: i18n/en.json
+1Lines changed: 1 addition & 0 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.