Changeset 26330 in osm for applications
- Timestamp:
- 2011-07-13T23:37:14+02:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastrePreferenceSetting.java
r23190 r26330 55 55 private JRadioButton grabMultiplier4 = new JRadioButton("", true); 56 56 57 private JRadioButton crosspiece1 = new JRadioButton( "off");58 59 private JRadioButton crosspiece2 = new JRadioButton( "25m");60 61 private JRadioButton crosspiece3 = new JRadioButton( "50m");62 63 private JRadioButton crosspiece4 = new JRadioButton( "100m");64 65 private JRadioButton grabRes1 = new JRadioButton( "high");66 67 private JRadioButton grabRes2 = new JRadioButton( "medium");68 69 private JRadioButton grabRes3 = new JRadioButton( "low");57 private JRadioButton crosspiece1 = new JRadioButton(tr("off")); 58 59 private JRadioButton crosspiece2 = new JRadioButton(tr("25 m")); 60 61 private JRadioButton crosspiece3 = new JRadioButton(tr("50 m")); 62 63 private JRadioButton crosspiece4 = new JRadioButton(tr("100 m")); 64 65 private JRadioButton grabRes1 = new JRadioButton(tr("high")); 66 67 private JRadioButton grabRes2 = new JRadioButton(tr("medium")); 68 69 private JRadioButton grabRes3 = new JRadioButton(tr("low")); 70 70 71 71 private JCheckBox layerLS3 = new JCheckBox(tr("water")); -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionGrab.java
r24907 r26330 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 import static org.openstreetmap.josm.tools.I18n.marktr; 5 6 6 7 import java.awt.event.ActionEvent; … … 20 21 private static final long serialVersionUID = 1L; 21 22 22 public static String name = "Cadastre grab";23 public static String name = marktr("Cadastre grab"); 23 24 24 25 public MenuActionGrab() { -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionGrabPlanImage.java
r26228 r26330 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 import static org.openstreetmap.josm.tools.I18n.marktr; 5 6 6 7 import java.awt.GridBagLayout; … … 31 32 private static final long serialVersionUID = 1L; 32 33 33 public static String name = "Georeference an image";34 public static String name = marktr("Georeference an image"); 34 35 35 36 private DownloadWMSPlanImage downloadWMSPlanImage; -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionLoadFromCache.java
r26228 r26330 3 3 4 4 import static org.openstreetmap.josm.tools.I18n.tr; 5 import static org.openstreetmap.josm.tools.I18n.marktr; 5 6 6 7 import java.awt.event.ActionEvent; … … 19 20 private static final long serialVersionUID = 1L; 20 21 21 public static String name = "Load layer from cache";22 public static String name = marktr("Load layer from cache"); 22 23 23 24 public MenuActionLoadFromCache() {
Note:
See TracChangeset
for help on using the changeset viewer.