FormatData_es_PA.java revision 0
504N/A/*
2887N/A * Portions Copyright 1997-2005 Sun Microsystems, Inc. All Rights Reserved.
671N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
671N/A *
671N/A * This code is free software; you can redistribute it and/or modify it
671N/A * under the terms of the GNU General Public License version 2 only, as
671N/A * published by the Free Software Foundation. Sun designates this
671N/A * particular file as subject to the "Classpath" exception as provided
671N/A * by Sun in the LICENSE file that accompanied this code.
671N/A *
671N/A * This code is distributed in the hope that it will be useful, but WITHOUT
671N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
671N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
671N/A * version 2 for more details (a copy is included in the LICENSE file that
671N/A * accompanied this code).
671N/A *
671N/A * You should have received a copy of the GNU General Public License version
671N/A * 2 along with this work; if not, write to the Free Software Foundation,
671N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
671N/A *
873N/A * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
671N/A * CA 95054 USA or visit www.sun.com if you need additional information or
671N/A * have any questions.
671N/A */
671N/A
4116N/A/*
671N/A * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
504N/A * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
4618N/A *
4618N/A * The original version of this source code and documentation
3816N/A * is copyrighted and owned by Taligent, Inc., a wholly-owned
3816N/A * subsidiary of IBM. These materials are provided under terms
3816N/A * of a License Agreement between Taligent and Sun. This technology
504N/A * is protected by multiple US and International patents.
690N/A *
3973N/A * This notice and attribution to Taligent may not be removed.
4618N/A * Taligent is a registered trademark of Taligent, Inc.
3973N/A *
3973N/A */
3973N/A
3973N/Apackage sun.text.resources;
3973N/A
3973N/Aimport java.util.ListResourceBundle;
3973N/A
3973N/Apublic class FormatData_es_PA extends ListResourceBundle {
4618N/A /**
4618N/A * Overrides ListResourceBundle
4618N/A */
3973N/A protected final Object[][] getContents() {
4618N/A return new Object[][] {
3973N/A { "NumberElements",
4618N/A new String[] {
3973N/A ".", // decimal separator
3973N/A ",", // group (thousands) separator
3973N/A ";", // list separator
5331N/A "%", // percent sign
3973N/A "0", // native 0 digit
4618N/A "#", // pattern digit
3973N/A "-", // minus sign
3973N/A "E", // exponential
3973N/A "\u2030", // per mille
3973N/A "\u221e", // infinity
3973N/A "\ufffd" // NaN
3973N/A }
4618N/A },
3973N/A { "DateTimePatterns",
3973N/A new String[] {
3973N/A "hh:mm:ss a z", // full time pattern
3973N/A "hh:mm:ss a z", // long time pattern
3973N/A "hh:mm:ss a", // medium time pattern
3973N/A "hh:mm a", // short time pattern
3973N/A "EEEE d' de 'MMMM' de 'yyyy", // full date pattern
3973N/A "d' de 'MMMM' de 'yyyy", // long date pattern
3973N/A "MM/dd/yyyy", // medium date pattern
3973N/A "MM/dd/yy", // short date pattern
3973N/A "{1} {0}" // date-time pattern
3973N/A }
3973N/A }
3973N/A };
3973N/A }
3973N/A}
3973N/A