Skip to content

Commit 41092be

Browse files
committed
Merge branch 'editor-refactor-fixup'
2 parents 6508403 + 10dcc1d commit 41092be

File tree

139 files changed

+499
-6
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+499
-6
lines changed

app/src/processing/app/Base.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -1254,6 +1254,7 @@ public void rebuildExamplesMenu(JMenu menu) {
12541254
}
12551255

12561256
private static String priorPlatformFolder;
1257+
private static boolean newLibraryImported;
12571258

12581259
public void onBoardOrPortChange() {
12591260
BaseNoGui.onBoardOrPortChange();
@@ -1262,10 +1263,11 @@ public void onBoardOrPortChange() {
12621263
TargetPlatform tp = BaseNoGui.getTargetPlatform();
12631264
if (tp != null) {
12641265
String platformFolder = tp.getFolder().getAbsolutePath();
1265-
if (priorPlatformFolder == null || !priorPlatformFolder.equals(platformFolder)) {
1266+
if (priorPlatformFolder == null || !priorPlatformFolder.equals(platformFolder) || newLibraryImported) {
12661267
pdeKeywords = new PdeKeywords();
12671268
pdeKeywords.reload();
12681269
priorPlatformFolder = platformFolder;
1270+
newLibraryImported = false;
12691271
for (Editor editor : editors) {
12701272
editor.updateKeywords(pdeKeywords);
12711273
}
@@ -1305,6 +1307,7 @@ protected void onIndexesUpdated() throws Exception {
13051307
// Manager dialog is modal, waits here until closed
13061308

13071309
//handleAddLibrary();
1310+
newLibraryImported = true;
13081311
onBoardOrPortChange();
13091312
rebuildImportMenu(Editor.importMenu);
13101313
rebuildExamplesMenu(Editor.examplesMenu);
@@ -2262,6 +2265,7 @@ public void handleAddLibrary() {
22622265
// FIXME error when importing. ignoring :(
22632266
} finally {
22642267
// delete zip created temp folder, if exists
2268+
newLibraryImported = true;
22652269
FileUtils.recursiveDelete(tmpFolder);
22662270
}
22672271
}

app/src/processing/app/Editor.java

+13
Original file line numberDiff line numberDiff line change
@@ -1691,6 +1691,13 @@ public void createTabs() {
16911691
selectTab(0);
16921692
}
16931693

1694+
/**
1695+
* Reorders tabs as per current sketch's files order
1696+
*/
1697+
public void reorderTabs() {
1698+
Collections.sort(tabs, (x, y) -> Sketch.CODE_DOCS_COMPARATOR.compare(x.getSketchFile(), y.getSketchFile()));
1699+
}
1700+
16941701
/**
16951702
* Add a new tab.
16961703
*
@@ -1704,6 +1711,12 @@ public void createTabs() {
17041711
protected void addTab(SketchFile file, String contents) throws IOException {
17051712
EditorTab tab = new EditorTab(this, file, contents);
17061713
tabs.add(tab);
1714+
reorderTabs();
1715+
}
1716+
1717+
protected void removeTab(SketchFile file) throws IOException {
1718+
int index = findTabIndex(file);
1719+
tabs.remove(index);
17071720
}
17081721

17091722
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

app/src/processing/app/SketchController.java

+2
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,8 @@ public void handleDeleteCode() throws IOException {
260260
return;
261261
}
262262

263+
editor.removeTab(current);
264+
263265
// just set current tab to the main tab
264266
editor.selectTab(0);
265267

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

+9-4
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,17 @@ static public PreferencesMap getBoardPreferences() {
166166

167167
// Add all tools dependencies from the (possibily) referenced core
168168
String core = prefs.get("build.core");
169-
if (core.contains(":")) {
169+
if (core != null && core.contains(":")) {
170170
String split[] = core.split(":");
171171
TargetPlatform referenced = BaseNoGui.getCurrentTargetPlatformFromPackage(split[0]);
172-
ContributedPlatform referencedPlatform = indexer.getContributedPlaform(referenced);
173-
if (referencedPlatform != null)
174-
requiredTools.addAll(referencedPlatform.getResolvedTools());
172+
if (referenced != null) {
173+
ContributedPlatform referencedPlatform = indexer.getContributedPlaform(referenced);
174+
if (referencedPlatform != null)
175+
requiredTools.addAll(referencedPlatform.getResolvedTools());
176+
} else {
177+
String msg = tr("The current selected board needs the core '{0}' that is not installed.");
178+
System.out.println(I18n.format(msg, core));
179+
}
175180
}
176181

177182
String prefix = "runtime.tools.";

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class Sketch {
3131

3232
private File buildPath;
3333

34-
private static final Comparator<SketchFile> CODE_DOCS_COMPARATOR = new Comparator<SketchFile>() {
34+
public static final Comparator<SketchFile> CODE_DOCS_COMPARATOR = new Comparator<SketchFile>() {
3535
@Override
3636
public int compare(SketchFile x, SketchFile y) {
3737
if (x.isPrimary() && !y.isPrimary())

arduino-core/src/processing/app/i18n/Resources_ach.po

+4
Original file line numberDiff line numberDiff line change
@@ -2006,6 +2006,10 @@ msgstr ""
20062006
msgid "The Udp class has been renamed EthernetUdp."
20072007
msgstr ""
20082008

2009+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2010+
msgid "The current selected board needs the core '{0}' that is not installed."
2011+
msgstr ""
2012+
20092013
#: Editor.java:2147
20102014
#, java-format
20112015
msgid ""

arduino-core/src/processing/app/i18n/Resources_ach.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1463,6 +1463,9 @@
14631463
#: debug/Compiler.java:432
14641464
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
14651465

1466+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1467+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1468+
14661469
#: Editor.java:2147
14671470
#, java-format
14681471
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=

arduino-core/src/processing/app/i18n/Resources_af.po

+4
Original file line numberDiff line numberDiff line change
@@ -2007,6 +2007,10 @@ msgstr ""
20072007
msgid "The Udp class has been renamed EthernetUdp."
20082008
msgstr ""
20092009

2010+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2011+
msgid "The current selected board needs the core '{0}' that is not installed."
2012+
msgstr ""
2013+
20102014
#: Editor.java:2147
20112015
#, java-format
20122016
msgid ""

arduino-core/src/processing/app/i18n/Resources_af.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1464,6 +1464,9 @@ System\ Default=Stelsel Verstek
14641464
#: debug/Compiler.java:432
14651465
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
14661466

1467+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1468+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1469+
14671470
#: Editor.java:2147
14681471
#, java-format
14691472
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=

arduino-core/src/processing/app/i18n/Resources_an.po

+4
Original file line numberDiff line numberDiff line change
@@ -2007,6 +2007,10 @@ msgstr "A clase Servidor ha estau renombrada a EthernetServer"
20072007
msgid "The Udp class has been renamed EthernetUdp."
20082008
msgstr "A clase Udp ha estau renombrada a EthernetUdp"
20092009

2010+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2011+
msgid "The current selected board needs the core '{0}' that is not installed."
2012+
msgstr ""
2013+
20102014
#: Editor.java:2147
20112015
#, java-format
20122016
msgid ""

arduino-core/src/processing/app/i18n/Resources_an.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1464,6 +1464,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A clase Servidor ha esta
14641464
#: debug/Compiler.java:432
14651465
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp ha estau renombrada a EthernetUdp
14661466

1467+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1468+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1469+
14671470
#: Editor.java:2147
14681471
#, java-format
14691472
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=O fichero "{0}" ameneste estar dentro d'una\ncarpeta de prochecto clamada "{1}".\nCreyar-la, mover o fichero y continar?

arduino-core/src/processing/app/i18n/Resources_ar.po

+4
Original file line numberDiff line numberDiff line change
@@ -2014,6 +2014,10 @@ msgstr "الـ Server class أعيد تسميته الى EthernetServer."
20142014
msgid "The Udp class has been renamed EthernetUdp."
20152015
msgstr "The Udp class أعيد تسميته الى EthernetUdp."
20162016

2017+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2018+
msgid "The current selected board needs the core '{0}' that is not installed."
2019+
msgstr ""
2020+
20172021
#: Editor.java:2147
20182022
#, java-format
20192023
msgid ""

arduino-core/src/processing/app/i18n/Resources_ar.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1471,6 +1471,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0627\u0644\u0640 Serve
14711471
#: debug/Compiler.java:432
14721472
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=The Udp class \u0623\u0639\u064a\u062f \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 EthernetUdp.
14731473

1474+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1475+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1476+
14741477
#: Editor.java:2147
14751478
#, java-format
14761479
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u0627\u0644\u0645\u0644\u0641 "{0}" \u0628\u062d\u0627\u062c\u0629 \u0644\u0623\u0646 \u064a\u0643\u0648\u0646 \u0628\u062f\u0627\u062e\u0644 \n"{1}" \u0645\u062c\u0644\u062f \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0627\u0644\u0645\u0633\u0645\u0649 \n \u0623\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u062c\u0644\u062f \u0648\u0646\u0642\u0644 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0648\u0627\u0644\u0645\u062a\u0628\u0627\u0639\u0629\u061f

arduino-core/src/processing/app/i18n/Resources_ast.po

+4
Original file line numberDiff line numberDiff line change
@@ -2007,6 +2007,10 @@ msgstr ""
20072007
msgid "The Udp class has been renamed EthernetUdp."
20082008
msgstr ""
20092009

2010+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2011+
msgid "The current selected board needs the core '{0}' that is not installed."
2012+
msgstr ""
2013+
20102014
#: Editor.java:2147
20112015
#, java-format
20122016
msgid ""

arduino-core/src/processing/app/i18n/Resources_ast.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1464,6 +1464,9 @@ Sunshine=Soleyero
14641464
#: debug/Compiler.java:432
14651465
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
14661466

1467+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1468+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1469+
14671470
#: Editor.java:2147
14681471
#, java-format
14691472
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=

arduino-core/src/processing/app/i18n/Resources_be.po

+4
Original file line numberDiff line numberDiff line change
@@ -2007,6 +2007,10 @@ msgstr "Клас Server быў перайменаваны ў EthernetServer."
20072007
msgid "The Udp class has been renamed EthernetUdp."
20082008
msgstr "Клас Udp быў перайменаваны ў EthernetUdp."
20092009

2010+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2011+
msgid "The current selected board needs the core '{0}' that is not installed."
2012+
msgstr ""
2013+
20102014
#: Editor.java:2147
20112015
#, java-format
20122016
msgid ""

arduino-core/src/processing/app/i18n/Resources_be.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1464,6 +1464,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u041a\u043b\u0430\u0441
14641464
#: debug/Compiler.java:432
14651465
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u041a\u043b\u0430\u0441 Udp \u0431\u044b\u045e \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u044b \u045e EthernetUdp.
14661466

1467+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1468+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1469+
14671470
#: Editor.java:2147
14681471
#, java-format
14691472
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u0424\u0430\u0439\u043b"{0}" \u043f\u0430\u0432\u0456\u043d\u0435\u043d \u0431\u044b\u0446\u044c \u0443\u043d\u0443\u0442\u0440\u044b \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430\n\u0441\u043a\u0435\u0442\u0447\u0443 \u0437 \u0456\u043c\u0451\u043c "{1}". \u0421\u0442\u0432\u0430\u0440\u044b\u0446\u044c \u0442\u0430\u043a\u0456 \u043a\u0430\u0442\u0430\u043b\u043e\u0433, \n\u043f\u0435\u0440\u0430\u043c\u044f\u0441\u0446\u0456\u0446\u044c \u0444\u0430\u0439\u043b, \u0438 \u043f\u0440\u0430\u0446\u044f\u0433\u043d\u0443\u0446\u044c?

arduino-core/src/processing/app/i18n/Resources_bg.po

+4
Original file line numberDiff line numberDiff line change
@@ -2010,6 +2010,10 @@ msgstr "Класът Server беше преименуван на EthernetServer.
20102010
msgid "The Udp class has been renamed EthernetUdp."
20112011
msgstr "Класът Udp беше преименуван на EthernetUdp."
20122012

2013+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2014+
msgid "The current selected board needs the core '{0}' that is not installed."
2015+
msgstr ""
2016+
20132017
#: Editor.java:2147
20142018
#, java-format
20152019
msgid ""

arduino-core/src/processing/app/i18n/Resources_bg.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1467,6 +1467,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u041a\u043b\u0430\u0441
14671467
#: debug/Compiler.java:432
14681468
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u041a\u043b\u0430\u0441\u044a\u0442 Udp \u0431\u0435\u0448\u0435 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u043d \u043d\u0430 EthernetUdp.
14691469

1470+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1471+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1472+
14701473
#: Editor.java:2147
14711474
#, java-format
14721475
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u0424\u0430\u0439\u043b\u044a\u0442 "{0}" \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u0432\n\u043f\u0430\u043f\u043a\u0430\u0442\u0430 \u0441 \u0438\u043c\u0435 "{1}" \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430.\n\u0414\u0430 \u0441\u044a\u0437\u0434\u0430\u043c \u043b\u0438 \u043f\u0430\u043f\u043a\u0430\u0442\u0430, \u0434\u0430 \u043f\u0440\u0435\u043c\u0435\u0441\u0442\u044f \u0444\u0430\u0439\u043b\u0430 \u0438 \u0434\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0430?

arduino-core/src/processing/app/i18n/Resources_bs.po

+4
Original file line numberDiff line numberDiff line change
@@ -2007,6 +2007,10 @@ msgstr ""
20072007
msgid "The Udp class has been renamed EthernetUdp."
20082008
msgstr ""
20092009

2010+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2011+
msgid "The current selected board needs the core '{0}' that is not installed."
2012+
msgstr ""
2013+
20102014
#: Editor.java:2147
20112015
#, java-format
20122016
msgid ""

arduino-core/src/processing/app/i18n/Resources_bs.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1464,6 +1464,9 @@ Tamil=tamilski
14641464
#: debug/Compiler.java:432
14651465
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
14661466

1467+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1468+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1469+
14671470
#: Editor.java:2147
14681471
#, java-format
14691472
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=

arduino-core/src/processing/app/i18n/Resources_ca.po

+4
Original file line numberDiff line numberDiff line change
@@ -2015,6 +2015,10 @@ msgstr "La classe Server ha estat reanomenada EthernetServer."
20152015
msgid "The Udp class has been renamed EthernetUdp."
20162016
msgstr "La classe Udp ha estat reanomenada a EthernetUdp."
20172017

2018+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2019+
msgid "The current selected board needs the core '{0}' that is not installed."
2020+
msgstr ""
2021+
20182022
#: Editor.java:2147
20192023
#, java-format
20202024
msgid ""

arduino-core/src/processing/app/i18n/Resources_ca.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1472,6 +1472,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=La classe Server ha esta
14721472
#: debug/Compiler.java:432
14731473
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=La classe Udp ha estat reanomenada a EthernetUdp.
14741474

1475+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1476+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1477+
14751478
#: Editor.java:2147
14761479
#, java-format
14771480
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=L'arxiu "{0}" ha de trobar-se dins\nla carpeta de l'sketch anomenat "{1}".\nCrear aquesta carpeta, moure l'arxiu, i continua?

arduino-core/src/processing/app/i18n/Resources_cs_CZ.po

+4
Original file line numberDiff line numberDiff line change
@@ -2014,6 +2014,10 @@ msgstr "U třídy Server byl změněn název na EthernetServer."
20142014
msgid "The Udp class has been renamed EthernetUdp."
20152015
msgstr "U třídy Udp byl změněn název na EthernetUdp."
20162016

2017+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2018+
msgid "The current selected board needs the core '{0}' that is not installed."
2019+
msgstr ""
2020+
20172021
#: Editor.java:2147
20182022
#, java-format
20192023
msgid ""

arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1471,6 +1471,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=U t\u0159\u00eddy Server
14711471
#: debug/Compiler.java:432
14721472
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=U t\u0159\u00eddy Udp byl zm\u011bn\u011bn n\u00e1zev na EthernetUdp.
14731473

1474+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1475+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1476+
14741477
#: Editor.java:2147
14751478
#, java-format
14761479
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Soubor "{0}" mus\u00ed b\u00fdt ulo\u017een \nv adres\u00e1\u0159i pro projekty pojmenovan\u00e9m "{1}".\nM\u00e1m vytvo\u0159it adres\u00e1\u0159, p\u0159esunout tam soubor a pokra\u010dovat?

arduino-core/src/processing/app/i18n/Resources_da_DK.po

+4
Original file line numberDiff line numberDiff line change
@@ -2010,6 +2010,10 @@ msgstr ""
20102010
msgid "The Udp class has been renamed EthernetUdp."
20112011
msgstr ""
20122012

2013+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2014+
msgid "The current selected board needs the core '{0}' that is not installed."
2015+
msgstr ""
2016+
20132017
#: Editor.java:2147
20142018
#, java-format
20152019
msgid ""

arduino-core/src/processing/app/i18n/Resources_da_DK.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1467,6 +1467,9 @@ Tamil=Tamilsk
14671467
#: debug/Compiler.java:432
14681468
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
14691469

1470+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1471+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1472+
14701473
#: Editor.java:2147
14711474
#, java-format
14721475
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=

arduino-core/src/processing/app/i18n/Resources_de_DE.po

+4
Original file line numberDiff line numberDiff line change
@@ -2010,6 +2010,10 @@ msgstr "Die Klasse Server wurde in EthernetServer umbenannt."
20102010
msgid "The Udp class has been renamed EthernetUdp."
20112011
msgstr "Die Klasse Udp wurde in EthernetUdp umbenannt."
20122012

2013+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2014+
msgid "The current selected board needs the core '{0}' that is not installed."
2015+
msgstr ""
2016+
20132017
#: Editor.java:2147
20142018
#, java-format
20152019
msgid ""

arduino-core/src/processing/app/i18n/Resources_de_DE.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1467,6 +1467,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Die Klasse Server wurde
14671467
#: debug/Compiler.java:432
14681468
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Die Klasse Udp wurde in EthernetUdp umbenannt.
14691469

1470+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1471+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1472+
14701473
#: Editor.java:2147
14711474
#, java-format
14721475
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Die Datei "{0}" muss sich in einem\nSketch-Ordner "{1}" befinden.\nSoll der Ordner angelegt, die Datei\nverschoben und danach fortgefahren werden?

arduino-core/src/processing/app/i18n/Resources_el_GR.po

+4
Original file line numberDiff line numberDiff line change
@@ -2012,6 +2012,10 @@ msgstr "Η κλάση Server έχει μετονομαστεί σε EthernetServ
20122012
msgid "The Udp class has been renamed EthernetUdp."
20132013
msgstr "Η κλάση Udp έχει μετονομαστεί σε EthernetUdp."
20142014

2015+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2016+
msgid "The current selected board needs the core '{0}' that is not installed."
2017+
msgstr ""
2018+
20152019
#: Editor.java:2147
20162020
#, java-format
20172021
msgid ""

arduino-core/src/processing/app/i18n/Resources_el_GR.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1469,6 +1469,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0397 \u03ba\u03bb\u03a
14691469
#: debug/Compiler.java:432
14701470
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Udp \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetUdp.
14711471

1472+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1473+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1474+
14721475
#: Editor.java:2147
14731476
#, java-format
14741477
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf "{0}" \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd\n\u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 "{1}". \u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03c5\u03c4\u03bf\u03cd\n\u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5, \u03bc\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1;

arduino-core/src/processing/app/i18n/Resources_en.po

+4
Original file line numberDiff line numberDiff line change
@@ -2006,6 +2006,10 @@ msgstr "The Server class has been renamed EthernetServer."
20062006
msgid "The Udp class has been renamed EthernetUdp."
20072007
msgstr "The Udp class has been renamed EthernetUdp."
20082008

2009+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
2010+
msgid "The current selected board needs the core '{0}' that is not installed."
2011+
msgstr ""
2012+
20092013
#: Editor.java:2147
20102014
#, java-format
20112015
msgid ""

arduino-core/src/processing/app/i18n/Resources_en.properties

+3
Original file line numberDiff line numberDiff line change
@@ -1463,6 +1463,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=The Server class has bee
14631463
#: debug/Compiler.java:432
14641464
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=The Udp class has been renamed EthernetUdp.
14651465

1466+
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
1467+
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
1468+
14661469
#: Editor.java:2147
14671470
#, java-format
14681471
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=The file "{0}" needs to be inside\na sketch folder named "{1}".\nCreate this folder, move the file, and continue?

0 commit comments

Comments
 (0)