1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-15 12:29:26 +01:00

Fixed wrong i18n function name

This commit is contained in:
Federico Fissore 2015-10-29 14:09:51 +01:00
parent ec7cc8c5cf
commit f5c1084f5f

View File

@ -114,7 +114,7 @@ public class Serial implements SerialPortEventListener {
port.openPort();
boolean res = port.setParams(irate, idatabits, stopbits, parity, true, true);
if (!res) {
System.err.println(format(_("Error while setting serial port parameters: {0} {1} {2} {3}"),
System.err.println(format(tr("Error while setting serial port parameters: {0} {1} {2} {3}"),
irate, iparity, idatabits, istopbits));
}
port.addEventListener(this);