File tree 2 files changed +6
-3
lines changed
arduino-ide-extension/src/browser/contributions 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -223,8 +223,10 @@ export abstract class CoreServiceContribution extends SketchContribution {
223
223
}
224
224
if ( message ) {
225
225
if ( message . includes ( 'Missing FQBN (Fully Qualified Board Name)' ) ) {
226
- message =
227
- 'No board selected. Please select your Arduino board from the Tools > Board menu.' ;
226
+ message = nls . localize (
227
+ 'arduino/coreContribution/noBoardSelected' ,
228
+ 'No board selected. Please select your Arduino board from the Tools > Board menu.'
229
+ ) ;
228
230
}
229
231
const copyAction = nls . localize (
230
232
'arduino/coreContribution/copyError' ,
Original file line number Diff line number Diff line change 132
132
"replaceTitle" : " Replace"
133
133
},
134
134
"coreContribution" : {
135
- "copyError" : " Copy error messages"
135
+ "copyError" : " Copy error messages" ,
136
+ "noBoardSelected" : " No board selected. Please select your Arduino board from the Tools > Board menu."
136
137
},
137
138
"daemon" : {
138
139
"restart" : " Restart Daemon" ,
You can’t perform that action at this time.
0 commit comments