Print this page
rev 5615 : 6336885: RFE: Locale Data Deployment Enhancements
4609153: Provide locale data for Indic locales
5104387: Support for gl_ES locale (galician language)
6337471: desktop/system locale preferences support
7056139: (cal) SPI support for locale-dependent Calendar parameters
7058206: Provide CalendarData SPI for week params and display field value names
7073852: Support multiple scripts for digits and decimal symbols per locale
7079560: [Fmt-Da] Context dependent month names support in SimpleDateFormat
7171324: getAvailableLocales() of locale sensitive services should return the actual availability of locales
7151414: (cal) Support calendar type identification
7168528: LocaleServiceProvider needs to be aware of Locale extensions
7171372: (cal) locale's default Calendar should be created if unknown calendar is specified
Summary: JEP 127: Improve Locale Data Packaging and Adopt Unicode CLDR Data (part 1 w/o Jigsaw. by Naoto Sato and Masayoshi Okutsu)

Split Close
Expand all
Collapse all
          --- old/src/share/classes/sun/text/resources/FormatData_en_IN.java
          +++ new/src/share/classes/sun/text/resources/en/FormatData_en_IN.java
   1    1  /*
   2      - * Copyright (c) 1999, 2005, Oracle and/or its affiliates. All rights reserved.
        2 + * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
   3    3   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4    4   *
   5    5   * This code is free software; you can redistribute it and/or modify it
   6    6   * under the terms of the GNU General Public License version 2 only, as
   7    7   * published by the Free Software Foundation.  Oracle designates this
   8    8   * particular file as subject to the "Classpath" exception as provided
   9    9   * by Oracle in the LICENSE file that accompanied this code.
  10   10   *
  11   11   * This code is distributed in the hope that it will be useful, but WITHOUT
  12   12   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
↓ open down ↓ 9 lines elided ↑ open up ↑
  22   22   * or visit www.oracle.com if you need additional information or have any
  23   23   * questions.
  24   24   */
  25   25  
  26   26  /*
  27   27   * Copyright (c) 1999 International Business Machines.
  28   28   * All Rights Reserved.
  29   29   *
  30   30   */
  31   31  
  32      -package sun.text.resources;
       32 +package sun.text.resources.en;
  33   33  
  34   34  import java.util.ListResourceBundle;
  35   35  
  36   36  
  37   37  /**
  38   38   * The locale elements for English in India.
  39   39   *
  40   40   */
  41   41  public class FormatData_en_IN extends ListResourceBundle {
  42   42      /**
↓ open down ↓ 9 lines elided ↑ open up ↑
  52   52                      "%", // percent sign
  53   53                      "\u0030", // native 0 digit
  54   54                      "#", // pattern digit
  55   55                      "-", // minus sign
  56   56                      "E", // exponential
  57   57                      "\u2030", // per mille
  58   58                      "\u221e", // infinity
  59   59                      "\ufffd" // NaN
  60   60                  }
  61   61              },
  62      -            { "DateTimePatterns",
       62 +            { "TimePatterns",
  63   63                  new String[] {
  64   64                      "h:mm:ss a z", // full time pattern
  65   65                      "h:mm:ss a z", // long time pattern
  66   66                      "h:mm:ss a", // medium time pattern
  67   67                      "h:mm a", // short time pattern
       68 +                }
       69 +            },
       70 +            { "DatePatterns",
       71 +                new String[] {
  68   72                      "EEEE, d MMMM, yyyy", // full date pattern
  69   73                      "d MMMM, yyyy", // long date pattern
  70   74                      "d MMM, yyyy", // medium date pattern
  71   75                      "d/M/yy", // short date pattern
       76 +                }
       77 +            },
       78 +            { "DateTimePatterns",
       79 +                new String[] {
  72   80                      "{1} {0}" // date-time pattern
  73   81                  }
  74   82              },
  75   83              { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
  76   84          };
  77   85      }
  78   86  }
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX