Index: C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/.classpath =================================================================== --- C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/.classpath (revision 26323) +++ C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/.classpath (working copy) @@ -1,7 +1,7 @@ - - - - - - - + + + + + + + Index: C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/build.xml =================================================================== --- C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/build.xml (revision 26323) +++ C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/build.xml (working copy) @@ -25,7 +25,7 @@ ** --> - + Index: C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/CadastrePreferenceSetting.java =================================================================== --- C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/CadastrePreferenceSetting.java (revision 26323) +++ C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/CadastrePreferenceSetting.java (working copy) @@ -54,19 +54,19 @@ private JRadioButton grabMultiplier4 = new JRadioButton("", true); - private JRadioButton crosspiece1 = new JRadioButton("off"); + private JRadioButton crosspiece1 = new JRadioButton(tr("off")); - private JRadioButton crosspiece2 = new JRadioButton("25m"); + private JRadioButton crosspiece2 = new JRadioButton(tr("25 m")); - private JRadioButton crosspiece3 = new JRadioButton("50m"); + private JRadioButton crosspiece3 = new JRadioButton(tr("50 m")); - private JRadioButton crosspiece4 = new JRadioButton("100m"); + private JRadioButton crosspiece4 = new JRadioButton(tr("100 m")); private JRadioButton grabRes1 = new JRadioButton("high"); - private JRadioButton grabRes2 = new JRadioButton("medium"); + private JRadioButton grabRes2 = new JRadioButton(tr("medium")); - private JRadioButton grabRes3 = new JRadioButton("low"); + private JRadioButton grabRes3 = new JRadioButton(tr("low")); private JCheckBox layerLS3 = new JCheckBox(tr("water")); private JCheckBox layerLS2 = new JCheckBox(tr("building")); Index: C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/MenuActionGrab.java =================================================================== --- C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/MenuActionGrab.java (revision 26323) +++ C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/MenuActionGrab.java (working copy) @@ -19,7 +19,7 @@ */ private static final long serialVersionUID = 1L; - public static String name = "Cadastre grab"; + public static String name = tr("Cadastre grab"); public MenuActionGrab() { super(tr(name), "cadastre_small", tr("Download Image from French Cadastre WMS"), Index: C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/MenuActionGrabPlanImage.java =================================================================== --- C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/MenuActionGrabPlanImage.java (revision 26323) +++ C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/MenuActionGrabPlanImage.java (working copy) @@ -30,7 +30,7 @@ */ private static final long serialVersionUID = 1L; - public static String name = "Georeference an image"; + public static String name = tr("Georeference an image"); private DownloadWMSPlanImage downloadWMSPlanImage; private WMSLayer wmsLayer; Index: C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/MenuActionLoadFromCache.java =================================================================== --- C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/MenuActionLoadFromCache.java (revision 26323) +++ C:/Users/Philippe/Desktop/JOSM-Cadastre-fr/src/cadastre_fr/MenuActionLoadFromCache.java (working copy) @@ -18,7 +18,7 @@ public class MenuActionLoadFromCache extends JosmAction { private static final long serialVersionUID = 1L; - public static String name = "Load layer from cache"; + public static String name = tr("Load layer from cache"); public MenuActionLoadFromCache() { super(tr(name), "cadastre_small", tr("Load location from cache (only if cache is enabled)"), null, false);