Skip to content

Commit cb43a76

Browse files
Flip pairing input labels so column number is first (#529)
1 parent e6722f0 commit cb43a76

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

lang/ui.en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@
236236
"description": "Heading for Bluetooth pattern connection dialog"
237237
},
238238
"connect-pattern-input-label": {
239-
"defaultMessage": "Number of LEDs lit in column {colNum} on the micro:bit display",
239+
"defaultMessage": "Column {colNum} - number of LEDs lit on the micro:bit display",
240240
"description": "Screenreader text for numeric pattern input"
241241
},
242242
"connect-pattern-subtitle": {

src/components/BluetoothPatternInput.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ const PatternColumnInput = ({
165165
<FormattedMessage
166166
id="connect-pattern-input-label"
167167
values={{ colNum: colIdx + 1 }}
168-
sr-onlu
169168
/>
170169
</FormLabel>
171170
</VisuallyHidden>

src/messages/ui.en.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -418,15 +418,15 @@
418418
"connect-pattern-input-label": [
419419
{
420420
"type": 0,
421-
"value": "Number of LEDs lit in column "
421+
"value": "Column "
422422
},
423423
{
424424
"type": 1,
425425
"value": "colNum"
426426
},
427427
{
428428
"type": 0,
429-
"value": " on the micro:bit display"
429+
"value": " - number of LEDs lit on the micro:bit display"
430430
}
431431
],
432432
"connect-pattern-subtitle": [

0 commit comments

Comments
 (0)