- /*
- * @(#)LocaleElements_en_US.java 1.3 00/01/19
- *
- * Copyright 1998-2000 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the proprietary information of Sun Microsystems, Inc.
- * Use is subject to license terms.
- *
- */
-
- /*
- * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
- * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
- *
- * The original version of this source code and documentation
- * is copyrighted and owned by Taligent, Inc., a wholly-owned
- * subsidiary of IBM. These materials are provided under terms
- * of a License Agreement between Taligent and Sun. This technology
- * is protected by multiple US and International patents.
- *
- * This notice and attribution to Taligent may not be removed.
- * Taligent is a registered trademark of Taligent, Inc.
- *
- */
-
- /**
- *
- * Table of Java supplied standard locale elements
- *
- * automatically generated by java LocaleTool LocaleElements.java
- *
- * Date Created: Wed Aug 21 15:47:57 1996
- *
- * Locale Elements and Patterns: last update 10/23/96
- *
- *
- */
-
- // WARNING : the format of this file will change in the future!
-
- package java.text.resources;
-
- import java.util.ListResourceBundle;
- import java.awt.ComponentOrientation;
-
- public class LocaleElements_en_US extends ListResourceBundle {
- /**
- * Overrides ListResourceBundle
- */
- public Object[][] getContents() {
- return new Object[][] {
- { "LocaleString", "en_US" }, // locale id based on iso codes
- { "ShortCountry", "USA" }, // iso-3 abbrev country name
- { "NumberPatterns",
- new String[] {
- "#,##0.###;-#,##0.###", // decimal pattern
- "\u00a4#,##0.00;(\u00a4#,##0.00)", // currency pattern
- "#,##0%" // percent pattern
- }
- },
- { "CurrencyElements",
- new String[] {
- "$", // local currency symbol
- "USD", // intl currency symbol
- "." // monetary decimal separator
- }
- },
- };
- }
- }