- Timestamp:
- 2014-01-29T21:09:04+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/OsmIdSelectionDialog.java
r6674 r6771 29 29 import java.awt.event.WindowEvent; 30 30 import java.awt.event.WindowListener; 31 import java.util.Arrays; 31 32 import java.util.Collection; 32 33 import java.util.Collections; … … 87 88 tfId.setPreferredSize(new Dimension(400, tfId.getPreferredSize().height)); 88 89 89 HtmlPanel help = new HtmlPanel(tr("Object IDs can be separated by comma or space.<br/>" 90 + " Examples: <b><ul><li>1 2 5</li><li>1,2,5</li></ul><br/></b>" 91 + " In mixed mode, specify objects like this: <b>w123, n110, w12, r15</b><br/>")); 90 HtmlPanel help = new HtmlPanel(/* I18n: {0} and {1} contains example strings not meant for translation. {2}=n, {3}=w, {4}=r. */ 91 tr("Object IDs can be separated by comma or space.<br/>" 92 + "Examples: {0}<br/>" 93 + "In mixed mode, specify objects like this: {1}<br/>" 94 + "({2} stands for <i>node</i>, {3} for <i>way</i>, and {4} for <i>relation</i>)", 95 "<b>" + Utils.joinAsHtmlUnorderedList(Arrays.asList("1 2 5", "1,2,5")) + "</b>", 96 "<b>w123, n110, w12, r15</b>", 97 "<b>n</b>", "<b>w</b>", "<b>r</b>" 98 )); 92 99 help.setBorder(BorderFactory.createEtchedBorder(EtchedBorder.LOWERED)); 93 100
Note:
See TracChangeset
for help on using the changeset viewer.