1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-11-30 11:24:12 +01:00

Fixed translation string

This commit is contained in:
Cristian Maglie 2013-09-10 12:34:46 +02:00
parent e563c5f136
commit 9df65fdfe5

View File

@ -127,7 +127,7 @@ public class NetworkMonitor extends AbstractMonitor {
} }
} }
if (connectionAttempts < MAX_CONNECTION_ATTEMPTS) { if (connectionAttempts < MAX_CONNECTION_ATTEMPTS) {
s = "\n" + _("Unable to connect: retrying (" + connectionAttempts + ")... "); s = "\n" + _("Unable to connect: retrying") + " (" + connectionAttempts + ")... ";
SwingUtilities.invokeLater(new Runnable() { SwingUtilities.invokeLater(new Runnable() {
@Override @Override