mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-08 20:06:32 +00:00
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:
parent
52804a5b52
commit
ca47e8a09a
@ -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}
|
||||
|
@ -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.",
|
||||
|
Loading…
x
Reference in New Issue
Block a user