Skip to content

Commit 503cbbd

Browse files
committed
Use formatted i18n string to ease a translation
1 parent d2277fc commit 503cbbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ private boolean canUploadWWWFiles(File sourcePath, SSH ssh, List<String> warning
203203
return false;
204204
}
205205
if (!www.canExecute()) {
206-
warningsAccumulator.add(tr("Problem accessing files in folder ") + www);
206+
warningsAccumulator.add(I18n.format(tr("Problem accessing files in folder \"{0}\""), www));
207207
return false;
208208
}
209209
if (!ssh.execSyncCommand("special-storage-available")) {

0 commit comments

Comments
 (0)