Changeset 36165 in osm for applications


Ignore:
Timestamp:
2023-10-10T18:04:41+02:00 (9 months ago)
Author:
stoecker
Message:

allow PD license, cut long line

Location:
applications/editors/josm/plugins
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/checkstyle-config.xml

    r35255 r36165  
    103103    </module>
    104104  </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\."/>
    107107    <property name="fileExtensions" value=".java"/>
    108108  </module>
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGPSPreferences.java

    r36121 r36165  
    8888        panel.add(serialDevice, GBC.eol().fill(GridBagConstraints.HORIZONTAL).insets(5, 0, 0, 5));
    8989        /* 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));
    9194
    9295        showOffset.setSelected(Config.getPref().getBoolean(C_WAYOFFSET, false));
Note: See TracChangeset for help on using the changeset viewer.