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