Ignore:
Timestamp:
2011-07-13T23:37:14+02:00 (13 years ago)
Author:
pieren
Message:

Added more i18n calls.

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  
    5555    private JRadioButton grabMultiplier4 = new JRadioButton("", true);
    5656
    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"));
    7070
    7171    private JCheckBox layerLS3 = new JCheckBox(tr("water"));
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionGrab.java

    r24907 r26330  
    33
    44import static org.openstreetmap.josm.tools.I18n.tr;
     5import static org.openstreetmap.josm.tools.I18n.marktr;
    56
    67import java.awt.event.ActionEvent;
     
    2021    private static final long serialVersionUID = 1L;
    2122
    22     public static String name = "Cadastre grab";
     23    public static String name = marktr("Cadastre grab");
    2324
    2425    public MenuActionGrab() {
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionGrabPlanImage.java

    r26228 r26330  
    33
    44import static org.openstreetmap.josm.tools.I18n.tr;
     5import static org.openstreetmap.josm.tools.I18n.marktr;
    56
    67import java.awt.GridBagLayout;
     
    3132    private static final long serialVersionUID = 1L;
    3233
    33     public static String name = "Georeference an image";
     34    public static String name = marktr("Georeference an image");
    3435
    3536    private DownloadWMSPlanImage downloadWMSPlanImage;
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/MenuActionLoadFromCache.java

    r26228 r26330  
    33
    44import static org.openstreetmap.josm.tools.I18n.tr;
     5import static org.openstreetmap.josm.tools.I18n.marktr;
    56
    67import java.awt.event.ActionEvent;
     
    1920    private static final long serialVersionUID = 1L;
    2021
    21     public static String name = "Load layer from cache";
     22    public static String name = marktr("Load layer from cache");
    2223
    2324    public MenuActionLoadFromCache() {
Note: See TracChangeset for help on using the changeset viewer.