Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/arduino/Arduino.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCristian Maglie <c.maglie@arduino.cc>2016-11-21 20:08:37 +0300
committerCristian Maglie <c.maglie@arduino.cc>2016-11-21 20:14:38 +0300
commit954941c0aaa0a780e96a54ff62ac4303825eaae0 (patch)
tree67ead9135d3ee1c3abdf7c1b9878a740c91d851a
parent27d1b8d9a190469e185af7484b52cc5884e7d731 (diff)
Updated string
-rw-r--r--arduino-core/src/processing/app/Platform.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/arduino-core/src/processing/app/Platform.java b/arduino-core/src/processing/app/Platform.java
index 0f3d59175..374d80953 100644
--- a/arduino-core/src/processing/app/Platform.java
+++ b/arduino-core/src/processing/app/Platform.java
@@ -220,7 +220,7 @@ public class Platform {
// replace spaces with &
String realBoardName = board.getName().replaceAll("\\(.*?\\)", "").trim();
String boardNameReplaced = realBoardName.replaceAll(" ", "&");
- String message = I18n.format(tr("{0}Install{1} the package to use your {2}"), "<a href=\"http://boardsmanager/all#"+boardNameReplaced+"\">", "</a>", realBoardName);
+ String message = I18n.format(tr("{0}Install this package{1} to use your {2} board"), "<a href=\"http://boardsmanager/all#"+boardNameReplaced+"\">", "</a>", realBoardName);
BaseNoGui.setBoardManagerLink(message);
} catch (Exception e) {
// No connection no problem, fail silently