s/Web USB/WebUSB/g

This commit is contained in:
David Lechner
2025-08-09 21:51:47 -05:00
parent 5e8c8b8743
commit 8b5cab4760
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
"tryAgainButton": "Try again"
},
"noWebUsb": {
"message": "This browser does not support Web USB or Web USB is not enabled.",
"message": "This browser does not support WebUSB or WebUSB is not enabled.",
"suggestion": "Use a supported browser such as Google Chrome or Microsoft Edge."
},
"noDfuHub": {
+1 -1
View File
@@ -689,7 +689,7 @@ function* handleFlashUsbDfu(action: ReturnType<typeof firmwareFlashUsbDfu>): Gen
const defer = new Array<() => void>();
try {
// not all web browsers support Web USB
// not all web browsers support WebUSB
if (!navigator.usb) {
yield* put(alertsShowAlert('firmware', 'noWebUsb'));
yield* put(firmwareDidFailToFlashUsbDfu());
+1 -1
View File
@@ -1,6 +1,6 @@
{
"noWebUsb": {
"message": "This browser does not support Web USB or it is not enabled.",
"message": "This browser does not support WebUSB or it is not enabled.",
"suggestion": "Use a supported browser such as Google Chrome or Microsoft Edge.",
"action": "More Info"
},