From 562c56661818233401f400349e55a66805e4f3d8 Mon Sep 17 00:00:00 2001 From: Federico Fissore Date: Tue, 3 Mar 2015 16:58:46 +0100 Subject: [PATCH] Changed labels --- app/src/processing/app/Base.java | 4 ++-- app/src/processing/app/Editor.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 9bb5ec1e5..6f6ab8834 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -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); diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index e4de635a5..1dbcfe622 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -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); }