Skip to content

Commit 021bcac

Browse files
committed
Removed translation and updated some URLs
1 parent f4f98cf commit 021bcac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/src/processing/app/Editor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ private JMenu buildHelpMenu() {
11631163
menu.add(item);
11641164

11651165
item = new JMenuItem(tr("Visit Arduino.cc"));
1166-
item.addActionListener(event -> Base.openURL(tr("http://www.arduino.cc/")));
1166+
item.addActionListener(event -> Base.openURL("https://www.arduino.cc/"));
11671167
menu.add(item);
11681168

11691169
// macosx already has its own about menu

app/src/processing/app/UpdateCheck.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
*/
5252
public class UpdateCheck implements Runnable {
5353
Base base;
54-
String downloadURL = tr("https://www.arduino.cc/latest.txt");
54+
String downloadURL = "https://www.arduino.cc/latest.txt";
5555

5656
static final long ONE_DAY = 24 * 60 * 60 * 1000;
5757

@@ -116,7 +116,7 @@ public void run() {
116116
options,
117117
options[0]);
118118
if (result == JOptionPane.YES_OPTION) {
119-
Base.openURL(tr("https://www.arduino.cc/en/Main/Software"));
119+
Base.openURL("https://www.arduino.cc/en/software");
120120
}
121121
}
122122
}

0 commit comments

Comments
 (0)