001: /*
002: * Portions Copyright 1998-2005 Sun Microsystems, Inc. All Rights Reserved.
003: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
004: *
005: * This code is free software; you can redistribute it and/or modify it
006: * under the terms of the GNU General Public License version 2 only, as
007: * published by the Free Software Foundation. Sun designates this
008: * particular file as subject to the "Classpath" exception as provided
009: * by Sun in the LICENSE file that accompanied this code.
010: *
011: * This code is distributed in the hope that it will be useful, but WITHOUT
012: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
013: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
014: * version 2 for more details (a copy is included in the LICENSE file that
015: * accompanied this code).
016: *
017: * You should have received a copy of the GNU General Public License version
018: * 2 along with this work; if not, write to the Free Software Foundation,
019: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
020: *
021: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
022: * CA 95054 USA or visit www.sun.com if you need additional information or
023: * have any questions.
024: */
025:
026: /*
027: * @(#)FormatData_ar_JO.java 1.23 07/05/05
028: */
029:
030: /*
031: * (C) Copyright IBM Corp. 1998 - All Rights Reserved
032: *
033: * The original version of this source code and documentation
034: * is copyrighted and owned by Taligent, Inc., a wholly-owned
035: * subsidiary of IBM. These materials are provided under terms
036: * of a License Agreement between Taligent and Sun. This technology
037: * is protected by multiple US and International patents.
038: *
039: * This notice and attribution to Taligent may not be removed.
040: * Taligent is a registered trademark of Taligent, Inc.
041: *
042: */
043:
044: package sun.text.resources;
045:
046: import java.util.ListResourceBundle;
047:
048: public class FormatData_ar_JO extends ListResourceBundle {
049: /**
050: * Overrides ListResourceBundle
051: */
052: protected final Object[][] getContents() {
053: return new Object[][] {
054: {
055: "MonthNames",
056: new String[] {
057: "\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // january
058: "\u0634\u0628\u0627\u0637", // february
059: "\u0622\u0630\u0627\u0631", // march
060: "\u0646\u064a\u0633\u0627\u0646", // april
061: "\u0646\u0648\u0627\u0631", // may
062: "\u062d\u0632\u064a\u0631\u0627\u0646", // june
063: "\u062a\u0645\u0648\u0632", // july
064: "\u0622\u0628", // august
065: "\u0623\u064a\u0644\u0648\u0644", // september
066: "\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // october
067: "\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // november
068: "\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // december
069: "" // month 13 if applicable
070: } },
071: {
072: "MonthAbbreviations",
073: new String[] {
074: "\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // abb january
075: "\u0634\u0628\u0627\u0637", // abb february
076: "\u0622\u0630\u0627\u0631", // abb march
077: "\u0646\u064a\u0633\u0627\u0646", // abb april
078: "\u0646\u0648\u0627\u0631", // abb may
079: "\u062d\u0632\u064a\u0631\u0627\u0646", // abb june
080: "\u062a\u0645\u0648\u0632", // abb july
081: "\u0622\u0628", // abb august
082: "\u0623\u064a\u0644\u0648\u0644", // abb september
083: "\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // abb october
084: "\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // abb november
085: "\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // abb december
086: "" // month 13 if applicable
087: } },
088: {
089: "DayAbbreviations",
090: new String[] {
091: "\u0627\u0644\u0623\u062d\u062f", // abb Sunday
092: "\u0627\u0644\u0627\u062b\u0646\u064a\u0646", // abb Monday
093: "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", // abb Tuesday
094: "\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", // abb Wednesday
095: "\u0627\u0644\u062e\u0645\u064a\u0633", // abb Thursday
096: "\u0627\u0644\u062c\u0645\u0639\u0629", // abb Friday
097: "\u0627\u0644\u0633\u0628\u062a" // abb Saturday
098: } }, };
099: }
100: }
|