Changeset 30703 in osm for applications
- Timestamp:
- 2014-10-05T00:01:09+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 3 added
- 8 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/build.xml
r30416 r30703 12 12 <property name="plugin.class" value="cadastre_fr.CadastrePlugin"/> 13 13 <property name="plugin.description" value="A special handler for the French land registry WMS server."/> 14 <property name="plugin.icon" value="images/preferences/cadastrewms. gif"/>14 <property name="plugin.icon" value="images/preferences/cadastrewms.png"/> 15 15 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/FR:JOSM/Fr:Plugin/Cadastre"/> 16 16 <property name="plugin.stage" value="60"/> -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastrePreferenceSetting.java
r30532 r30703 99 99 */ 100 100 public CadastrePreferenceSetting() { 101 super("cadastrewms. gif", I18n.tr("French cadastre WMS"),101 super("cadastrewms.png", I18n.tr("French cadastre WMS"), 102 102 tr("A special handler of the French cadastre wms at www.cadastre.gouv.fr" + "<BR><BR>" 103 103 + "Please read the Terms and Conditions of Use here (in French): <br>" -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/ac/AutoCompletionListRenderer.java
r30488 r30703 22 22 public class AutoCompletionListRenderer extends JLabel implements TableCellRenderer { 23 23 24 static public final String RES_OSM_ICON = "/resources/osm. gif";25 static public final String RES_SELECTION_ICON = "/resources/selection. gif";24 static public final String RES_OSM_ICON = "/resources/osm.png"; 25 static public final String RES_SELECTION_ICON = "/resources/selection.png"; 26 26 27 27 /** the icon used to decorate items of priority -
applications/editors/josm/plugins/tageditor/src/org/openstreetmap/josm/plugins/tageditor/tagspec/ui/TabularTagSelector.java
r30488 r30703 114 114 JPanel pnl = new JPanel(); 115 115 pnl.setLayout(new FlowLayout(FlowLayout.LEFT)); 116 btnApply = new JButton( "Apply");116 btnApply = new JButton(tr("Apply")); 117 117 pnl.add(btnApply); 118 118 btnApply.addActionListener(
Note:
See TracChangeset
for help on using the changeset viewer.