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