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.
This commit is contained in:
per1234 2022-08-21 17:59:26 -07:00
parent 52804a5b52
commit ca47e8a09a
2 changed files with 2 additions and 2 deletions

View File

@ -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}

View File

@ -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.",