diff --git a/arduino-ide-extension/src/browser/style/index.css b/arduino-ide-extension/src/browser/style/index.css index a308deebc..ee6b51c17 100644 --- a/arduino-ide-extension/src/browser/style/index.css +++ b/arduino-ide-extension/src/browser/style/index.css @@ -136,6 +136,9 @@ button.secondary[disabled], .theia-button.secondary[disabled] { font-size: 14px; } +.uppercase { + text-transform: uppercase; +} /* High Contrast Theme rules */ /* TODO: Remove it when the Theia version is upgraded to 1.27.0 and use Theia APIs to implement it*/ diff --git a/arduino-ide-extension/src/browser/style/list-widget.css b/arduino-ide-extension/src/browser/style/list-widget.css index 843be61f9..b277a62a9 100644 --- a/arduino-ide-extension/src/browser/style/list-widget.css +++ b/arduino-ide-extension/src/browser/style/list-widget.css @@ -112,14 +112,12 @@ max-height: calc(1em + 4px); color: var(--theia-button-foreground); content: attr(install); - text-transform: uppercase; } .component-list-item .header .installed:hover:before { background-color: var(--theia-button-foreground); color: var(--theia-button-background); content: attr(uninstall); - text-transform: uppercase; } .component-list-item[min-width~="170px"] .footer { diff --git a/arduino-ide-extension/src/browser/widgets/cloud-sketchbook/cloud-sketchbook-tree-widget.tsx b/arduino-ide-extension/src/browser/widgets/cloud-sketchbook/cloud-sketchbook-tree-widget.tsx index 043dfea86..7bb0abc73 100644 --- a/arduino-ide-extension/src/browser/widgets/cloud-sketchbook/cloud-sketchbook-tree-widget.tsx +++ b/arduino-ide-extension/src/browser/widgets/cloud-sketchbook/cloud-sketchbook-tree-widget.tsx @@ -61,10 +61,10 @@ export class CloudSketchbookTreeWidget extends SketchbookTreeWidget {
diff --git a/arduino-ide-extension/src/browser/widgets/component-list/list-item-renderer.tsx b/arduino-ide-extension/src/browser/widgets/component-list/list-item-renderer.tsx index 2999cc05a..ff5b469b9 100644 --- a/arduino-ide-extension/src/browser/widgets/component-list/list-item-renderer.tsx +++ b/arduino-ide-extension/src/browser/widgets/component-list/list-item-renderer.tsx @@ -56,10 +56,10 @@ export class ListItemRenderer { )} @@ -77,10 +77,10 @@ export class ListItemRenderer { const onClickInstall = () => install(item); const installButton = item.installable && ( ); diff --git a/i18n/en.json b/i18n/en.json index 3480a2215..77cbfc24c 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -90,6 +90,7 @@ "donePushing": "Done pushing ‘{0}’.", "embed": "Embed:", "emptySketchbook": "Your Sketchbook is empty", + "goToCloud": "Go to Cloud", "learnMore": "Learn more", "link": "Link:", "notYetPulled": "Cannot push to Cloud. It is not yet pulled.", @@ -144,8 +145,8 @@ "boardsIncluded": "Boards included in this package:", "by": "by", "filterSearch": "Filter your search...", - "install": "INSTALL", - "installed": "INSTALLED", + "install": "Install", + "installed": "Installed", "moreInfo": "More info", "uninstall": "Uninstall", "uninstallMsg": "Do you want to uninstall {0}?", @@ -422,9 +423,6 @@ "upload": "Upload" } }, - "cloud": { - "GoToCloud": "GO TO CLOUD" - }, "theia": { "core": { "cannotConnectBackend": "Cannot connect to the backend.",