1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Use formatted i18n string to ease a translation

This commit is contained in:
Hasso Tepper 2016-01-03 23:44:57 +02:00 committed by Hasso Tepper
parent d2277fc1c7
commit 503cbbd745

View File

@ -203,7 +203,7 @@ public class SSHUploader extends Uploader {
return false;
}
if (!www.canExecute()) {
warningsAccumulator.add(tr("Problem accessing files in folder ") + www);
warningsAccumulator.add(I18n.format(tr("Problem accessing files in folder \"{0}\""), www));
return false;
}
if (!ssh.execSyncCommand("special-storage-available")) {