1. /*
  2. * @(#)LocaleElements_en_US.java 1.3 00/01/19
  3. *
  4. * Copyright 1998-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. /*
  11. * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  12. * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  13. *
  14. * The original version of this source code and documentation
  15. * is copyrighted and owned by Taligent, Inc., a wholly-owned
  16. * subsidiary of IBM. These materials are provided under terms
  17. * of a License Agreement between Taligent and Sun. This technology
  18. * is protected by multiple US and International patents.
  19. *
  20. * This notice and attribution to Taligent may not be removed.
  21. * Taligent is a registered trademark of Taligent, Inc.
  22. *
  23. */
  24. /**
  25. *
  26. * Table of Java supplied standard locale elements
  27. *
  28. * automatically generated by java LocaleTool LocaleElements.java
  29. *
  30. * Date Created: Wed Aug 21 15:47:57 1996
  31. *
  32. * Locale Elements and Patterns: last update 10/23/96
  33. *
  34. *
  35. */
  36. // WARNING : the format of this file will change in the future!
  37. package java.text.resources;
  38. import java.util.ListResourceBundle;
  39. import java.awt.ComponentOrientation;
  40. public class LocaleElements_en_US extends ListResourceBundle {
  41. /**
  42. * Overrides ListResourceBundle
  43. */
  44. public Object[][] getContents() {
  45. return new Object[][] {
  46. { "LocaleString", "en_US" }, // locale id based on iso codes
  47. { "ShortCountry", "USA" }, // iso-3 abbrev country name
  48. { "NumberPatterns",
  49. new String[] {
  50. "#,##0.###;-#,##0.###", // decimal pattern
  51. "\u00a4#,##0.00;(\u00a4#,##0.00)", // currency pattern
  52. "#,##0%" // percent pattern
  53. }
  54. },
  55. { "CurrencyElements",
  56. new String[] {
  57. "$", // local currency symbol
  58. "USD", // intl currency symbol
  59. "." // monetary decimal separator
  60. }
  61. },
  62. };
  63. }
  64. }