Ignore:
Timestamp:
2009-10-31T13:15:29+01:00 (14 years ago)
Author:
Gubaer
Message:

fixed #3305: Version is UNKNOWN
fixed #3429: created_by=* includes the wrong language when uploading from a new layer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/I18n.java

    r2225 r2358  
    132132    }
    133133
    134     public static void set(String localeName)
    135     {
     134    /**
     135     * Sets the default locale (see {@see Locale#setDefault(Locale)} to the local
     136     * given by <code>localName</code>.
     137     *
     138     * Ignored if localName is null. If the locale with name <code>localName</code>
     139     * isn't found the default local is set to <tt>en</tt> (english).
     140     *
     141     * @param localeName the locale name. Ignored if null.
     142     */
     143    public static void set(String localeName){
    136144        if (localeName != null) {
    137145            Locale l;
Note: See TracChangeset for help on using the changeset viewer.