mirror of
https://github.com/arduino/Arduino.git
synced 2024-11-28 09:24:14 +01:00
Merge 17fe8351ad
into 3278173ef8
This commit is contained in:
commit
f4a6c163a2
@ -346,7 +346,7 @@
|
||||
<Connection code="tr("Additional Boards Manager URLs: ")" type="code"/>
|
||||
</Property>
|
||||
<Property name="toolTipText" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="tr("Enter a comma separated list of urls")" type="code"/>
|
||||
<Connection code="tr("Enter a comma separated list of urls or use a pop-up window on the right")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<AuxValues>
|
||||
@ -357,7 +357,7 @@
|
||||
<Component class="javax.swing.JTextField" name="additionalBoardsManagerField">
|
||||
<Properties>
|
||||
<Property name="toolTipText" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="tr("Enter a comma separated list of urls")" type="code"/>
|
||||
<Connection code="tr("Enter a comma separated list of urls or use a pop-up window on the right")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
@ -366,6 +366,9 @@
|
||||
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="new ImageIcon(Theme.getThemeImage("newwindow", this, Theme.scale(16), Theme.scale(14)))" type="code"/>
|
||||
</Property>
|
||||
<Property name="toolTipText" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="tr("Opens a window to enter additional URLs, one for each row")" type="code"/>
|
||||
</Property>
|
||||
<Property name="margin" type="java.awt.Insets" editor="org.netbeans.beaninfo.editors.InsetsEditor">
|
||||
<Insets value="[1, 1, 1, 1]"/>
|
||||
</Property>
|
||||
|
@ -212,12 +212,13 @@ public class Preferences extends javax.swing.JDialog {
|
||||
comboWarningsLabel.setLabelFor(comboWarnings);
|
||||
|
||||
additionalBoardsManagerLabel.setText(tr("Additional Boards Manager URLs: "));
|
||||
additionalBoardsManagerLabel.setToolTipText(tr("Enter a comma separated list of urls"));
|
||||
additionalBoardsManagerLabel.setToolTipText(tr("Enter a comma separated list of urls or use a pop-up window on the right"));
|
||||
additionalBoardsManagerLabel.setLabelFor(additionalBoardsManagerField);
|
||||
|
||||
additionalBoardsManagerField.setToolTipText(tr("Enter a comma separated list of urls"));
|
||||
additionalBoardsManagerField.setToolTipText(tr("Enter a comma separated list of urls or use a pop-up window on the right"));
|
||||
|
||||
extendedAdditionalUrlFieldWindow.setIcon(new ImageIcon(Theme.getThemeImage("newwindow", this, Theme.scale(16), Theme.scale(14))));
|
||||
extendedAdditionalUrlFieldWindow.setToolTipText(tr("Opens a window to enter additional URLs, one for each row"));
|
||||
extendedAdditionalUrlFieldWindow.setMargin(new java.awt.Insets(1, 1, 1, 1));
|
||||
extendedAdditionalUrlFieldWindow.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
|
Loading…
Reference in New Issue
Block a user