mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-28 09:24:14 +01:00
Removed translation and updated some URLs
This commit is contained in:
parent
f4f98cf25e
commit
021bcacdb1
@ -1163,7 +1163,7 @@ public class Editor extends JFrame implements RunnerListener {
|
||||
menu.add(item);
|
||||
|
||||
item = new JMenuItem(tr("Visit Arduino.cc"));
|
||||
item.addActionListener(event -> Base.openURL(tr("http://www.arduino.cc/")));
|
||||
item.addActionListener(event -> Base.openURL("https://www.arduino.cc/"));
|
||||
menu.add(item);
|
||||
|
||||
// macosx already has its own about menu
|
||||
|
@ -51,7 +51,7 @@ import static processing.app.I18n.tr;
|
||||
*/
|
||||
public class UpdateCheck implements Runnable {
|
||||
Base base;
|
||||
String downloadURL = tr("https://www.arduino.cc/latest.txt");
|
||||
String downloadURL = "https://www.arduino.cc/latest.txt";
|
||||
|
||||
static final long ONE_DAY = 24 * 60 * 60 * 1000;
|
||||
|
||||
@ -116,7 +116,7 @@ public class UpdateCheck implements Runnable {
|
||||
options,
|
||||
options[0]);
|
||||
if (result == JOptionPane.YES_OPTION) {
|
||||
Base.openURL(tr("https://www.arduino.cc/en/Main/Software"));
|
||||
Base.openURL("https://www.arduino.cc/en/software");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user