Skip to content

Commit f5c1084

Browse files
author
Federico Fissore
committed
Fixed wrong i18n function name
1 parent ec7cc8c commit f5c1084

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-core/src/processing/app/Serial.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ private Serial(String iname, int irate, char iparity, int idatabits, float istop
114114
port.openPort();
115115
boolean res = port.setParams(irate, idatabits, stopbits, parity, true, true);
116116
if (!res) {
117-
System.err.println(format(_("Error while setting serial port parameters: {0} {1} {2} {3}"),
117+
System.err.println(format(tr("Error while setting serial port parameters: {0} {1} {2} {3}"),
118118
irate, iparity, idatabits, istopbits));
119119
}
120120
port.addEventListener(this);

0 commit comments

Comments
 (0)