mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
Changed labels
This commit is contained in:
parent
0435a80f6d
commit
562c566618
@ -1167,7 +1167,7 @@ public class Base {
|
|||||||
JMenu boardMenu = new JMenu(_("Board"));
|
JMenu boardMenu = new JMenu(_("Board"));
|
||||||
MenuScroller.setScrollerFor(boardMenu);
|
MenuScroller.setScrollerFor(boardMenu);
|
||||||
@SuppressWarnings("serial")
|
@SuppressWarnings("serial")
|
||||||
Action runInstaller = new AbstractAction("Install boards...") {
|
Action runInstaller = new AbstractAction(_("Boards Manager...")) {
|
||||||
public void actionPerformed(ActionEvent actionevent) {
|
public void actionPerformed(ActionEvent actionevent) {
|
||||||
try {
|
try {
|
||||||
openInstallBoardDialog();
|
openInstallBoardDialog();
|
||||||
@ -2544,7 +2544,7 @@ public class Base {
|
|||||||
activeEditor.statusError(e);
|
activeEditor.statusError(e);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
activeEditor.statusNotice(_("Library added to your libraries. Check \"Import library\" menu"));
|
activeEditor.statusNotice(_("Library added to your libraries. Check \"Include library\" menu"));
|
||||||
} finally {
|
} finally {
|
||||||
// delete zip created temp folder, if exists
|
// delete zip created temp folder, if exists
|
||||||
FileUtils.recursiveDelete(tmpFolder);
|
FileUtils.recursiveDelete(tmpFolder);
|
||||||
|
@ -651,7 +651,7 @@ public class Editor extends JFrame implements RunnerListener {
|
|||||||
sketchMenu.addSeparator();
|
sketchMenu.addSeparator();
|
||||||
|
|
||||||
if (importMenu == null) {
|
if (importMenu == null) {
|
||||||
importMenu = new JMenu(_("Import Library..."));
|
importMenu = new JMenu(_("Include Library"));
|
||||||
MenuScroller.setScrollerFor(importMenu);
|
MenuScroller.setScrollerFor(importMenu);
|
||||||
base.rebuildImportMenu(importMenu);
|
base.rebuildImportMenu(importMenu);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user