Skip to content

Commit cdae301

Browse files
author
Akos Kitta
committed
Let CSS do the uppercase transformation.
Expose no implementation details to translation files. Signed-off-by: Akos Kitta <[email protected]>
1 parent 945a8f4 commit cdae301

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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/installed', 'INSTALLED'),
62+
install: nls.localize('arduino/component/installed', 'Installed'),
6363
uninstall: nls.localize('arduino/component/uninstall', 'Uninstall'),
6464
}}
6565
/>

i18n/en.json

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

0 commit comments

Comments
 (0)