From ca47e8a09af514926da28e6b2b09603b02476df4 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 21 Aug 2022 17:59:26 -0700 Subject: [PATCH] Fix inconsistency of input field placeholder text capitalization The board search input field of the "Select Other Board and Port" dialog uses placeholder text to explain the usage of the field to the user. All other placeholder text in the IDE's UI uses sentence case. This specific placeholder was the exception, using unpleasant caps lock instead. The inconsistency is resolved by changing the placeholder text to the standard sentence case. --- arduino-ide-extension/src/browser/boards/boards-config.tsx | 2 +- i18n/en.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arduino-ide-extension/src/browser/boards/boards-config.tsx b/arduino-ide-extension/src/browser/boards/boards-config.tsx index 3e55b2b0..ce5d9eda 100644 --- a/arduino-ide-extension/src/browser/boards/boards-config.tsx +++ b/arduino-ide-extension/src/browser/boards/boards-config.tsx @@ -308,7 +308,7 @@ export class BoardsConfig extends React.Component< className="theia-input" placeholder={nls.localize( 'arduino/board/searchBoard', - 'SEARCH BOARD' + 'Search board' )} onChange={this.updateBoards} ref={this.focusNodeSet} diff --git a/i18n/en.json b/i18n/en.json index 3bf13c5f..1b8a65f7 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -27,7 +27,7 @@ "portLabel": "Port: {0}", "programmer": "Programmer", "reselectLater": "Reselect later", - "searchBoard": "SEARCH BOARD", + "searchBoard": "Search board", "selectBoard": "Select Board", "selectBoardForInfo": "Please select a board to obtain board info.", "selectPortForInfo": "Please select a port to obtain board info.",