@@ -292,7 +292,7 @@ export class SerialConnectionManager {
292
292
case SerialError . ErrorCodes . DEVICE_BUSY : {
293
293
this . messageService . warn (
294
294
nls . localize (
295
- 'arduino/monitor /connectionBusy' ,
295
+ 'arduino/serial /connectionBusy' ,
296
296
'Connection failed. Serial port is busy: {0}' ,
297
297
Port . toString ( port )
298
298
) ,
@@ -304,7 +304,7 @@ export class SerialConnectionManager {
304
304
case SerialError . ErrorCodes . DEVICE_NOT_CONFIGURED : {
305
305
this . messageService . info (
306
306
nls . localize (
307
- 'arduino/monitor /disconnected' ,
307
+ 'arduino/serial /disconnected' ,
308
308
'Disconnected {0} from {1}.' ,
309
309
Board . toString ( board , {
310
310
useFqbn : false ,
@@ -318,7 +318,7 @@ export class SerialConnectionManager {
318
318
case undefined : {
319
319
this . messageService . error (
320
320
nls . localize (
321
- 'arduino/monitor /unexpectedError' ,
321
+ 'arduino/serial /unexpectedError' ,
322
322
'Unexpected error. Reconnecting {0} on port {1}.' ,
323
323
Board . toString ( board ) ,
324
324
Port . toString ( port )
@@ -335,8 +335,8 @@ export class SerialConnectionManager {
335
335
if ( this . serialErrors . length >= 10 ) {
336
336
this . messageService . warn (
337
337
nls . localize (
338
- 'arduino/monitor /failedReconnect' ,
339
- 'Failed to reconnect {0} to serial after 10 consecutive attempts. The {1} serial port is busy.' ,
338
+ 'arduino/serial /failedReconnect' ,
339
+ 'Failed to reconnect {0} to serial port after 10 consecutive attempts. The {1} serial port is busy.' ,
340
340
Board . toString ( board , {
341
341
useFqbn : false ,
342
342
} ) ,
@@ -353,7 +353,7 @@ export class SerialConnectionManager {
353
353
const timeout = attempts * 1000 ;
354
354
this . messageService . warn (
355
355
nls . localize (
356
- 'arduino/monitor /reconnect' ,
356
+ 'arduino/serial /reconnect' ,
357
357
'Reconnecting {0} to {1} in {2] seconds...' ,
358
358
Board . toString ( board , {
359
359
useFqbn : false ,
0 commit comments