Changeset 36165 in osm
- Timestamp:
- 2023-10-10T18:04:41+02:00 (13 months ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/checkstyle-config.xml
r35255 r36165 103 103 </module> 104 104 </module> 105 <module name=" Header">106 <property name="header" value="// License: GPL. For details, see LICENSE file."/>105 <module name="RegexpHeader"> 106 <property name="header" value="// License: (GPL|Public Domain)\. For details, see LICENSE file\."/> 107 107 <property name="fileExtensions" value=".java"/> 108 108 </module> -
applications/editors/josm/plugins/livegps/src/livegps/LiveGPSPreferences.java
r36121 r36165 88 88 panel.add(serialDevice, GBC.eol().fill(GridBagConstraints.HORIZONTAL).insets(5, 0, 0, 5)); 89 89 /* I18n : {0} to {3} is like /dev/ttyACM<b>x</b>, {4} and {5} are COM1 and COM9 */ 90 panel.add(new JLabel(tr("<html>For Linux {0}, {1}, {2} or {3} (<b>x</b> means any number beginning with 0).<br>For Windows {4} to {5} (COM ports bigger than 9 wont work).</html>", "/dev/ttyS<b>x</b>", "/dev/ttyACM<b>x</b>", "/dev/ttyUSB<b>x</b>", "/dev/rfcomm<b>x</b>", "COM1", "COM9")), GBC.eol().fill(GridBagConstraints.HORIZONTAL).insets(10, 0, 0, 5)); 90 panel.add(new JLabel(tr("<html>For Linux {0}, {1}, {2} or {3} (<b>x</b> means any number beginning with 0).<br>" 91 +"For Windows {4} to {5} (COM ports bigger than 9 wont work).</html>", "/dev/ttyS<b>x</b>", 92 "/dev/ttyACM<b>x</b>", "/dev/ttyUSB<b>x</b>", "/dev/rfcomm<b>x</b>", "COM1", "COM9")), 93 GBC.eol().fill(GridBagConstraints.HORIZONTAL).insets(10, 0, 0, 5)); 91 94 92 95 showOffset.setSelected(Config.getPref().getBoolean(C_WAYOFFSET, false));
Note:
See TracChangeset
for help on using the changeset viewer.