Skip to content

Commit ca47e8a

Browse files
committed
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.
1 parent 52804a5 commit ca47e8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: arduino-ide-extension/src/browser/boards/boards-config.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ export class BoardsConfig extends React.Component<
308308
className="theia-input"
309309
placeholder={nls.localize(
310310
'arduino/board/searchBoard',
311-
'SEARCH BOARD'
311+
'Search board'
312312
)}
313313
onChange={this.updateBoards}
314314
ref={this.focusNodeSet}

Diff for: i18n/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"portLabel": "Port: {0}",
2828
"programmer": "Programmer",
2929
"reselectLater": "Reselect later",
30-
"searchBoard": "SEARCH BOARD",
30+
"searchBoard": "Search board",
3131
"selectBoard": "Select Board",
3232
"selectBoardForInfo": "Please select a board to obtain board info.",
3333
"selectPortForInfo": "Please select a port to obtain board info.",

0 commit comments

Comments
 (0)