Revision: 5381
          http://sourceforge.net/p/jump-pilot/code/5381
Author:   edso
Date:     2017-03-18 15:25:28 +0000 (Sat, 18 Mar 2017)
Log Message:
-----------
reuse OJs I18N
survive missing languages now. CADext died when de_DE locale was used 
previously.

Modified Paths:
--------------
    
plug-ins/CADExtension/trunk/src/org/openjump/advancedtools/language/I18NPlug.java

Modified: 
plug-ins/CADExtension/trunk/src/org/openjump/advancedtools/language/I18NPlug.java
===================================================================
--- 
plug-ins/CADExtension/trunk/src/org/openjump/advancedtools/language/I18NPlug.java
   2017-03-18 15:11:34 UTC (rev 5380)
+++ 
plug-ins/CADExtension/trunk/src/org/openjump/advancedtools/language/I18NPlug.java
   2017-03-18 15:25:28 UTC (rev 5381)
@@ -1,113 +1,23 @@
-/* 
- * Kosmo - Sistema Abierto de Informaci\xF3n Geogr\xE1fica
- * Kosmo - Open Geographical Information System
- *
- * http://www.saig.es
- * (C) 2011, SAIG S.L.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public
- * License as published by the Free Software Foundation;
- * version 2.1 of the License.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, 
USA.
- *
- * For more information, contact:
- * 
- * Sistemas Abiertos de Informaci\xF3n Geogr\xE1fica, S.L.
- * Avnda. Rep\xFAblica Argentina, 28
- * Edificio Domocenter Planta 2\xAA Oficina 7
- * C.P.: 41930 - Bormujos (Sevilla)
- * Espa\xF1a / Spain
- *
- * Tel\xE9fono / Phone Number
- * +34 954 788876
- * 
- * Correo electr\xF3nico / Email
- * [email protected]
- *
- */
-
 package org.openjump.advancedtools.language;
 
-/**
- * @author Giuseppe Aruta, adapted from Kosmo org.saig.jump.lang.I18N class
- * @since OpenJUMP 1.10
- */
+import java.io.File;
 
-import java.text.MessageFormat;
-import java.util.Locale;
-import java.util.MissingResourceException;
-import java.util.ResourceBundle;
-
-import org.apache.commons.lang.StringUtils;
-import org.apache.log4j.Logger;
-
 import com.vividsolutions.jump.I18N;
 
+/**
+ * Lightweight wrapper reusing OJ's I18N class
+ * @author ed
+ *
+ */
 public class I18NPlug {
-    private static final ResourceBundle I18N_RESOURCE = ResourceBundle
-            .getBundle("org/openjump/advancedtools/language/cadtoolbox",
-                    new Locale(I18N.getLocale()));
+    private static I18N i18n = I18N.getInstance(new 
File("org/openjump/advancedtools/language/cadtoolbox"));
 
-    private final static Logger LOGGER = Logger.getLogger(I18N.class);
-    // Default language file location
-    public final static String DEFAULT_LANG_FILE = 
"org/openjump/advancedtools/language/cadtoolbox";
-    public final static String NO_STRING_FOUND = "<No string found>";
-
     public static String getI18N(String key) {
-        try {
-            return I18N_RESOURCE.getString(key);
-        } catch (MissingResourceException ex) {
-            String[] labelpath = key.split("\\.");
-            ex.printStackTrace();
-            return labelpath[(labelpath.length - 1)];
-        } catch (Exception ex) {
-            ex.printStackTrace();
-        }
-        return "";
+        return i18n.getText(key);
     }
 
-    /**
-     * Process text with the locale 'kosmo_<locale>.properties' file
-     * 
-     * @param label
-     *            with argument insertion : {0}
-     * @param objects
-     * @return i18n label
-     */
     public static String getMessage(String label, Object[] objects) {
-
-        try {
-            String translation = StringUtils.replace(
-                    I18N_RESOURCE.getString(label), "'", "''");
-            MessageFormat mf = new MessageFormat(translation,
-                    I18N_RESOURCE.getLocale());
-            return mf.format(objects);
-        } catch (java.util.MissingResourceException e) {
-
-            try {
-                String default_translation = StringUtils.replace(ResourceBundle
-                        .getBundle(DEFAULT_LANG_FILE).getString(label), "'",
-                        "''");
-                ;
-                LOGGER.debug(e.getMessage() + " default_value:"
-                        + default_translation);
-                MessageFormat mf = new MessageFormat(default_translation,
-                        I18N_RESOURCE.getLocale());
-                return mf.format(objects);
-            } catch (java.util.MissingResourceException ex) {
-                LOGGER.warn(NO_STRING_FOUND + " " + label);
-                return NO_STRING_FOUND;
-            }
-        }
+        return i18n.getMessage(label, objects);
     }
 
 }


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Jump-pilot-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jump-pilot-devel

Reply via email to