1. /*
  2. * @(#)LocaleElements_en_US.java 1.3 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. /*
  8. * @(#)LocaleElements_en_US.java 1.3 01/11/29
  9. *
  10. * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  11. * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  12. *
  13. * Portions copyright (c) 1998 Sun Microsystems, Inc.
  14. * All Rights Reserved.
  15. *
  16. * The original version of this source code and documentation
  17. * is copyrighted and owned by Taligent, Inc., a wholly-owned
  18. * subsidiary of IBM. These materials are provided under terms
  19. * of a License Agreement between Taligent and Sun. This technology
  20. * is protected by multiple US and International patents.
  21. *
  22. * This notice and attribution to Taligent may not be removed.
  23. * Taligent is a registered trademark of Taligent, Inc.
  24. *
  25. * Permission to use, copy, modify, and distribute this software
  26. * and its documentation for NON-COMMERCIAL purposes and without
  27. * fee is hereby granted provided that this copyright notice
  28. * appears in all copies. Please refer to the file "copyright.html"
  29. * for further important copyright and licensing information.
  30. *
  31. * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
  32. * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
  33. * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  34. * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
  35. * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
  36. * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
  37. *
  38. */
  39. /**
  40. *
  41. * Table of Java supplied standard locale elements
  42. *
  43. * automatically generated by java LocaleTool LocaleElements.java
  44. *
  45. * Date Created: Wed Aug 21 15:47:57 1996
  46. *
  47. * Locale Elements and Patterns: last update 10/23/96
  48. *
  49. *
  50. */
  51. // WARNING : the format of this file will change in the future!
  52. package java.text.resources;
  53. import java.util.ListResourceBundle;
  54. import java.awt.ComponentOrientation;
  55. public class LocaleElements_en_US extends ListResourceBundle {
  56. /**
  57. * Overrides ListResourceBundle
  58. */
  59. public Object[][] getContents() {
  60. return new Object[][] {
  61. { "LocaleString", "en_US" }, // locale id based on iso codes
  62. { "ShortCountry", "USA" }, // iso-3 abbrev country name
  63. { "NumberPatterns",
  64. new String[] {
  65. "#,##0.###;-#,##0.###", // decimal pattern
  66. "\u00a4#,##0.00;(\u00a4#,##0.00)", // currency pattern
  67. "#,##0%" // percent pattern
  68. }
  69. },
  70. { "CurrencyElements",
  71. new String[] {
  72. "$", // local currency symbol
  73. "USD", // intl currency symbol
  74. "." // monetary decimal separator
  75. }
  76. },
  77. };
  78. }
  79. }