Skip to content

Editor refactor fixup #5528

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Nov 9, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/src/processing/app/Base.java
Original file line number Diff line number Diff line change
Expand Up @@ -1295,6 +1295,7 @@ public void rebuildExamplesMenu(JMenu menu) {
}

private static String priorPlatformFolder;
private static boolean newLibraryImported;

public void onBoardOrPortChange() {
BaseNoGui.onBoardOrPortChange();
Expand All @@ -1303,10 +1304,11 @@ public void onBoardOrPortChange() {
TargetPlatform tp = BaseNoGui.getTargetPlatform();
if (tp != null) {
String platformFolder = tp.getFolder().getAbsolutePath();
if (priorPlatformFolder == null || !priorPlatformFolder.equals(platformFolder)) {
if (priorPlatformFolder == null || !priorPlatformFolder.equals(platformFolder) || newLibraryImported) {
pdeKeywords = new PdeKeywords();
pdeKeywords.reload();
priorPlatformFolder = platformFolder;
newLibraryImported = false;
for (Editor editor : editors) {
editor.updateKeywords(pdeKeywords);
}
Expand Down Expand Up @@ -1346,6 +1348,7 @@ protected void onIndexesUpdated() throws Exception {
// Manager dialog is modal, waits here until closed

//handleAddLibrary();
newLibraryImported = true;
onBoardOrPortChange();
rebuildImportMenu(Editor.importMenu);
rebuildExamplesMenu(Editor.examplesMenu);
Expand Down Expand Up @@ -2303,6 +2306,7 @@ public void handleAddLibrary() {
// FIXME error when importing. ignoring :(
} finally {
// delete zip created temp folder, if exists
newLibraryImported = true;
FileUtils.recursiveDelete(tmpFolder);
}
}
Expand Down
13 changes: 13 additions & 0 deletions app/src/processing/app/Editor.java
Original file line number Diff line number Diff line change
Expand Up @@ -1691,6 +1691,13 @@ public void createTabs() {
selectTab(0);
}

/**
* Reorders tabs as per current sketch's files order
*/
public void reorderTabs() {
Collections.sort(tabs, (x, y) -> Sketch.CODE_DOCS_COMPARATOR.compare(x.getSketchFile(), y.getSketchFile()));
}

/**
* Add a new tab.
*
Expand All @@ -1704,6 +1711,12 @@ public void createTabs() {
protected void addTab(SketchFile file, String contents) throws IOException {
EditorTab tab = new EditorTab(this, file, contents);
tabs.add(tab);
reorderTabs();
}

protected void removeTab(SketchFile file) throws IOException {
int index = findTabIndex(file);
tabs.remove(index);
}

// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Expand Down
2 changes: 2 additions & 0 deletions app/src/processing/app/SketchController.java
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,8 @@ public void handleDeleteCode() throws IOException {
return;
}

editor.removeTab(current);

// just set current tab to the main tab
editor.selectTab(0);

Expand Down
13 changes: 9 additions & 4 deletions arduino-core/src/processing/app/BaseNoGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,17 @@ static public PreferencesMap getBoardPreferences() {

// Add all tools dependencies from the (possibily) referenced core
String core = prefs.get("build.core");
if (core.contains(":")) {
if (core != null && core.contains(":")) {
String split[] = core.split(":");
TargetPlatform referenced = BaseNoGui.getCurrentTargetPlatformFromPackage(split[0]);
ContributedPlatform referencedPlatform = indexer.getContributedPlaform(referenced);
if (referencedPlatform != null)
requiredTools.addAll(referencedPlatform.getResolvedTools());
if (referenced != null) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't an error be given when a referenced core does not exist?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mmmh, good idea 😄
Compilation would fail anyway, so the problem should be solved by the maintainer (Arrow SAMD boards and Win10 IoT core are affected). However a message is ok, I'm pushing it tomorrow

ContributedPlatform referencedPlatform = indexer.getContributedPlaform(referenced);
if (referencedPlatform != null)
requiredTools.addAll(referencedPlatform.getResolvedTools());
} else {
String msg = tr("The current selected board needs the core '{0}' that is not installed.");
System.out.println(I18n.format(msg, core));
}
}

String prefix = "runtime.tools.";
Expand Down
2 changes: 1 addition & 1 deletion arduino-core/src/processing/app/Sketch.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class Sketch {

private File buildPath;

private static final Comparator<SketchFile> CODE_DOCS_COMPARATOR = new Comparator<SketchFile>() {
public static final Comparator<SketchFile> CODE_DOCS_COMPARATOR = new Comparator<SketchFile>() {
@Override
public int compare(SketchFile x, SketchFile y) {
if (x.isPrimary() && !y.isPrimary())
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_ach.po
Original file line number Diff line number Diff line change
Expand Up @@ -2006,6 +2006,10 @@ msgstr ""
msgid "The Udp class has been renamed EthernetUdp."
msgstr ""

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_ach.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1463,6 +1463,9 @@
#: debug/Compiler.java:432
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_af.po
Original file line number Diff line number Diff line change
Expand Up @@ -2007,6 +2007,10 @@ msgstr ""
msgid "The Udp class has been renamed EthernetUdp."
msgstr ""

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_af.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1464,6 +1464,9 @@ System\ Default=Stelsel Verstek
#: debug/Compiler.java:432
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_an.po
Original file line number Diff line number Diff line change
Expand Up @@ -2007,6 +2007,10 @@ msgstr "A clase Servidor ha estau renombrada a EthernetServer"
msgid "The Udp class has been renamed EthernetUdp."
msgstr "A clase Udp ha estau renombrada a EthernetUdp"

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_an.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1464,6 +1464,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A clase Servidor ha esta
#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp ha estau renombrada a EthernetUdp

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
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?
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_ar.po
Original file line number Diff line number Diff line change
Expand Up @@ -2014,6 +2014,10 @@ msgstr "الـ Server class أعيد تسميته الى EthernetServer."
msgid "The Udp class has been renamed EthernetUdp."
msgstr "The Udp class أعيد تسميته الى EthernetUdp."

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_ar.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1471,6 +1471,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0627\u0644\u0640 Serve
#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=The Udp class \u0623\u0639\u064a\u062f \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 EthernetUdp.

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
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
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_ast.po
Original file line number Diff line number Diff line change
Expand Up @@ -2007,6 +2007,10 @@ msgstr ""
msgid "The Udp class has been renamed EthernetUdp."
msgstr ""

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_ast.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1464,6 +1464,9 @@ Sunshine=Soleyero
#: debug/Compiler.java:432
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_be.po
Original file line number Diff line number Diff line change
Expand Up @@ -2007,6 +2007,10 @@ msgstr "Клас Server быў перайменаваны ў EthernetServer."
msgid "The Udp class has been renamed EthernetUdp."
msgstr "Клас Udp быў перайменаваны ў EthernetUdp."

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_be.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1464,6 +1464,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u041a\u043b\u0430\u0441
#: debug/Compiler.java:432
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.

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
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?
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_bg.po
Original file line number Diff line number Diff line change
Expand Up @@ -2010,6 +2010,10 @@ msgstr "Класът Server беше преименуван на EthernetServer.
msgid "The Udp class has been renamed EthernetUdp."
msgstr "Класът Udp беше преименуван на EthernetUdp."

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_bg.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1467,6 +1467,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u041a\u043b\u0430\u0441
#: debug/Compiler.java:432
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.

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
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?
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_bs.po
Original file line number Diff line number Diff line change
Expand Up @@ -2007,6 +2007,10 @@ msgstr ""
msgid "The Udp class has been renamed EthernetUdp."
msgstr ""

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_bs.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1464,6 +1464,9 @@ Tamil=tamilski
#: debug/Compiler.java:432
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_ca.po
Original file line number Diff line number Diff line change
Expand Up @@ -2015,6 +2015,10 @@ msgstr "La classe Server ha estat reanomenada EthernetServer."
msgid "The Udp class has been renamed EthernetUdp."
msgstr "La classe Udp ha estat reanomenada a EthernetUdp."

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_ca.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1472,6 +1472,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=La classe Server ha esta
#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=La classe Udp ha estat reanomenada a EthernetUdp.

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
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?
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_cs_CZ.po
Original file line number Diff line number Diff line change
Expand Up @@ -2014,6 +2014,10 @@ msgstr "U třídy Server byl změněn název na EthernetServer."
msgid "The Udp class has been renamed EthernetUdp."
msgstr "U třídy Udp byl změněn název na EthernetUdp."

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1471,6 +1471,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=U t\u0159\u00eddy Server
#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=U t\u0159\u00eddy Udp byl zm\u011bn\u011bn n\u00e1zev na EthernetUdp.

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
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?
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_da_DK.po
Original file line number Diff line number Diff line change
Expand Up @@ -2010,6 +2010,10 @@ msgstr ""
msgid "The Udp class has been renamed EthernetUdp."
msgstr ""

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1467,6 +1467,9 @@ Tamil=Tamilsk
#: debug/Compiler.java:432
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_de_DE.po
Original file line number Diff line number Diff line change
Expand Up @@ -2010,6 +2010,10 @@ msgstr "Die Klasse Server wurde in EthernetServer umbenannt."
msgid "The Udp class has been renamed EthernetUdp."
msgstr "Die Klasse Udp wurde in EthernetUdp umbenannt."

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1467,6 +1467,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Die Klasse Server wurde
#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Die Klasse Udp wurde in EthernetUdp umbenannt.

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
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?
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_el_GR.po
Original file line number Diff line number Diff line change
Expand Up @@ -2012,6 +2012,10 @@ msgstr "Η κλάση Server έχει μετονομαστεί σε EthernetServ
msgid "The Udp class has been renamed EthernetUdp."
msgstr "Η κλάση Udp έχει μετονομαστεί σε EthernetUdp."

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1469,6 +1469,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0397 \u03ba\u03bb\u03a
#: debug/Compiler.java:432
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.

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
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;
Expand Down
4 changes: 4 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_en.po
Original file line number Diff line number Diff line change
Expand Up @@ -2006,6 +2006,10 @@ msgstr "The Server class has been renamed EthernetServer."
msgid "The Udp class has been renamed EthernetUdp."
msgstr "The Udp class has been renamed EthernetUdp."

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""

#: Editor.java:2147
#, java-format
msgid ""
Expand Down
3 changes: 3 additions & 0 deletions arduino-core/src/processing/app/i18n/Resources_en.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1463,6 +1463,9 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=The Server class has bee
#: debug/Compiler.java:432
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=The Udp class has been renamed EthernetUdp.

#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:173
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=

#: Editor.java:2147
#, java-format
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?
Expand Down
Loading