feat(jdk8): move files to new folder to avoid resources compiled.
This commit is contained in:
67
jdkSrc/jdk8/sun/text/resources/BreakIteratorInfo.java
Normal file
67
jdkSrc/jdk8/sun/text/resources/BreakIteratorInfo.java
Normal file
@@ -0,0 +1,67 @@
|
||||
/*
|
||||
* Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Licensed Materials - Property of IBM
|
||||
*
|
||||
* (C) Copyright IBM Corp. 1999 All Rights Reserved.
|
||||
* (C) IBM Corp. 1997-1998. All Rights Reserved.
|
||||
*
|
||||
* The program is provided "as is" without any warranty express or
|
||||
* implied, including the warranty of non-infringement and the implied
|
||||
* warranties of merchantibility and fitness for a particular purpose.
|
||||
* IBM will not be liable for any damages suffered by you as a result
|
||||
* of using the Program. In no event will IBM be liable for any
|
||||
* special, indirect or consequential damages or lost profits even if
|
||||
* IBM has been advised of the possibility of their occurrence. IBM
|
||||
* will not be liable for any third party claims against you.
|
||||
*/
|
||||
|
||||
package sun.text.resources;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class BreakIteratorInfo extends ListResourceBundle {
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
// BreakIteratorClasses lists the class names to instantiate for each
|
||||
// built-in type of BreakIterator
|
||||
{"BreakIteratorClasses",
|
||||
new String[] {
|
||||
"RuleBasedBreakIterator", // character-break iterator class
|
||||
"RuleBasedBreakIterator", // word-break iterator class
|
||||
"RuleBasedBreakIterator", // line-break iterator class
|
||||
"RuleBasedBreakIterator" // sentence-break iterator class
|
||||
}
|
||||
},
|
||||
|
||||
// Rules filename for each break-iterator
|
||||
{"CharacterData", "CharacterBreakIteratorData"},
|
||||
{"WordData", "WordBreakIteratorData"},
|
||||
{"LineData", "LineBreakIteratorData"},
|
||||
{"SentenceData", "SentenceBreakIteratorData"},
|
||||
};
|
||||
}
|
||||
}
|
||||
379
jdkSrc/jdk8/sun/text/resources/BreakIteratorRules.java
Normal file
379
jdkSrc/jdk8/sun/text/resources/BreakIteratorRules.java
Normal file
@@ -0,0 +1,379 @@
|
||||
/*
|
||||
* Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* Licensed Materials - Property of IBM
|
||||
*
|
||||
* (C) Copyright IBM Corp. 1999 All Rights Reserved.
|
||||
* (C) IBM Corp. 1997-1998. All Rights Reserved.
|
||||
*
|
||||
* The program is provided "as is" without any warranty express or
|
||||
* implied, including the warranty of non-infringement and the implied
|
||||
* warranties of merchantibility and fitness for a particular purpose.
|
||||
* IBM will not be liable for any damages suffered by you as a result
|
||||
* of using the Program. In no event will IBM be liable for any
|
||||
* special, indirect or consequential damages or lost profits even if
|
||||
* IBM has been advised of the possibility of their occurrence. IBM
|
||||
* will not be liable for any third party claims against you.
|
||||
*/
|
||||
|
||||
package sun.text.resources;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
/**
|
||||
* Default break-iterator rules. These rules are more or less general for
|
||||
* all locales, although there are probably a few we're missing. The
|
||||
* behavior currently mimics the behavior of BreakIterator in JDK 1.2.
|
||||
* There are known deficiencies in this behavior, including the fact that
|
||||
* the logic for handling CJK characters works for Japanese but not for
|
||||
* Chinese, and that we don't currently have an appropriate locale for
|
||||
* Thai. The resources will eventually be updated to fix these problems.
|
||||
*/
|
||||
|
||||
/* Modified for Hindi 3/1/99. */
|
||||
|
||||
/*
|
||||
* Since JDK 1.5.0, this file no longer goes to runtime and is used at J2SE
|
||||
* build phase in order to create [Character|Word|Line|Sentence]BreakIteratorData
|
||||
* files which are used on runtime instead.
|
||||
*/
|
||||
|
||||
public class BreakIteratorRules extends ListResourceBundle {
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
// rules describing how to break between logical characters
|
||||
{ "CharacterBreakRules",
|
||||
|
||||
// ignore non-spacing marks and enclosing marks (since we never
|
||||
// put a break before ignore characters, this keeps combining
|
||||
// accents with the base characters they modify)
|
||||
"<enclosing>=[:Mn::Me:];"
|
||||
|
||||
// other category definitions
|
||||
+ "<choseong>=[\u1100-\u115f];"
|
||||
+ "<jungseong>=[\u1160-\u11a7];"
|
||||
+ "<jongseong>=[\u11a8-\u11ff];"
|
||||
+ "<surr-hi>=[\ud800-\udbff];"
|
||||
+ "<surr-lo>=[\udc00-\udfff];"
|
||||
|
||||
// break after every character, except as follows:
|
||||
+ ".;"
|
||||
|
||||
// keep base and combining characters togethers
|
||||
+ "<base>=[^<enclosing>^[:Cc::Cf::Zl::Zp:]];"
|
||||
+ "<base><enclosing><enclosing>*;"
|
||||
|
||||
// keep CRLF sequences together
|
||||
+ "\r\n;"
|
||||
|
||||
// keep surrogate pairs together
|
||||
+ "<surr-hi><surr-lo>;"
|
||||
|
||||
// keep Hangul syllables spelled out using conjoining jamo together
|
||||
+ "<choseong>*<jungseong>*<jongseong>*;"
|
||||
|
||||
// various additions for Hindi support
|
||||
+ "<nukta>=[\u093c];"
|
||||
+ "<danda>=[\u0964\u0965];"
|
||||
+ "<virama>=[\u094d];"
|
||||
+ "<devVowelSign>=[\u093e-\u094c\u0962\u0963];"
|
||||
+ "<devConsonant>=[\u0915-\u0939];"
|
||||
+ "<devNuktaConsonant>=[\u0958-\u095f];"
|
||||
+ "<devCharEnd>=[\u0902\u0903\u0951-\u0954];"
|
||||
+ "<devCAMN>=(<devConsonant>{<nukta>});"
|
||||
+ "<devConsonant1>=(<devNuktaConsonant>|<devCAMN>);"
|
||||
+ "<zwj>=[\u200d];"
|
||||
+ "<devConjunct>=({<devConsonant1><virama>{<zwj>}}<devConsonant1>);"
|
||||
+ "<devConjunct>{<devVowelSign>}{<devCharEnd>};"
|
||||
+ "<danda><nukta>;"
|
||||
},
|
||||
|
||||
// default rules for finding word boundaries
|
||||
{ "WordBreakRules",
|
||||
// ignore non-spacing marks, enclosing marks, and format characters,
|
||||
// all of which should not influence the algorithm
|
||||
//"<ignore>=[:Mn::Me::Cf:];"
|
||||
"<ignore>=[:Cf:];"
|
||||
|
||||
+ "<enclosing>=[:Mn::Me:];"
|
||||
|
||||
// Hindi phrase separator, kanji, katakana, hiragana, CJK diacriticals,
|
||||
// other letters, and digits
|
||||
+ "<danda>=[\u0964\u0965];"
|
||||
+ "<kanji>=[\u3005\u4e00-\u9fa5\uf900-\ufa2d];"
|
||||
+ "<kata>=[\u30a1-\u30fa\u30fd\u30fe];"
|
||||
+ "<hira>=[\u3041-\u3094\u309d\u309e];"
|
||||
+ "<cjk-diacrit>=[\u3099-\u309c\u30fb\u30fc];"
|
||||
+ "<letter-base>=[:L::Mc:^[<kanji><kata><hira><cjk-diacrit>]];"
|
||||
+ "<let>=(<letter-base><enclosing>*);"
|
||||
+ "<digit-base>=[:N:];"
|
||||
+ "<dgt>=(<digit-base><enclosing>*);"
|
||||
|
||||
// punctuation that can occur in the middle of a word: currently
|
||||
// dashes, apostrophes, quotation marks, and periods
|
||||
+ "<mid-word>=[:Pd::Pc:\u00ad\u2027\\\"\\\'\\.];"
|
||||
|
||||
// punctuation that can occur in the middle of a number: currently
|
||||
// apostrophes, qoutation marks, periods, commas, and the Arabic
|
||||
// decimal point
|
||||
+ "<mid-num>=[\\\"\\\'\\,\u066b\\.];"
|
||||
|
||||
// punctuation that can occur at the beginning of a number: currently
|
||||
// the period, the number sign, and all currency symbols except the cents sign
|
||||
+ "<pre-num>=[:Sc:\\#\\.^\u00a2];"
|
||||
|
||||
// punctuation that can occur at the end of a number: currently
|
||||
// the percent, per-thousand, per-ten-thousand, and Arabic percent
|
||||
// signs, the cents sign, and the ampersand
|
||||
+ "<post-num>=[\\%\\&\u00a2\u066a\u2030\u2031];"
|
||||
|
||||
// line separators: currently LF, FF, PS, and LS
|
||||
+ "<ls>=[\n\u000c\u2028\u2029];"
|
||||
|
||||
// whitespace: all space separators and the tab character
|
||||
+ "<ws-base>=[:Zs:\t];"
|
||||
+ "<ws>=(<ws-base><enclosing>*);"
|
||||
|
||||
// a word is a sequence of letters that may contain internal
|
||||
// punctuation, as long as it begins and ends with a letter and
|
||||
// never contains two punctuation marks in a row
|
||||
+ "<word>=((<let><let>*(<mid-word><let><let>*)*){<danda>});"
|
||||
|
||||
// a number is a sequence of digits that may contain internal
|
||||
// punctuation, as long as it begins and ends with a digit and
|
||||
// never contains two punctuation marks in a row.
|
||||
+ "<number>=(<dgt><dgt>*(<mid-num><dgt><dgt>*)*);"
|
||||
|
||||
// break after every character, with the following exceptions
|
||||
// (this will cause punctuation marks that aren't considered
|
||||
// part of words or numbers to be treated as words unto themselves)
|
||||
+ ".;"
|
||||
|
||||
// keep together any sequence of contiguous words and numbers
|
||||
// (including just one of either), plus an optional trailing
|
||||
// number-suffix character
|
||||
+ "{<word>}(<number><word>)*{<number>{<post-num>}};"
|
||||
|
||||
// keep together and sequence of contiguous words and numbers
|
||||
// that starts with a number-prefix character and a number,
|
||||
// and may end with a number-suffix character
|
||||
+ "<pre-num>(<number><word>)*{<number>{<post-num>}};"
|
||||
|
||||
// keep together runs of whitespace (optionally with a single trailing
|
||||
// line separator or CRLF sequence)
|
||||
+ "<ws>*{\r}{<ls>};"
|
||||
|
||||
// keep together runs of Katakana and CJK diacritical marks
|
||||
+ "[<kata><cjk-diacrit>]*;"
|
||||
|
||||
// keep together runs of Hiragana and CJK diacritical marks
|
||||
+ "[<hira><cjk-diacrit>]*;"
|
||||
|
||||
// keep together runs of Kanji
|
||||
+ "<kanji>*;"
|
||||
|
||||
// keep together anything else and an enclosing mark
|
||||
+ "<base>=[^<enclosing>^[:Cc::Cf::Zl::Zp:]];"
|
||||
+ "<base><enclosing><enclosing>*;"
|
||||
},
|
||||
|
||||
// default rules for determining legal line-breaking positions
|
||||
{ "LineBreakRules",
|
||||
// characters that always cause a break: ETX, tab, LF, FF, LS, and PS
|
||||
"<break>=[\u0003\t\n\f\u2028\u2029];"
|
||||
|
||||
// ignore format characters and control characters EXCEPT for breaking chars
|
||||
+ "<ignore>=[:Cf:[:Cc:^[<break>\r]]];"
|
||||
|
||||
// enclosing marks
|
||||
+ "<enclosing>=[:Mn::Me:];"
|
||||
|
||||
// Hindi phrase separators
|
||||
+ "<danda>=[\u0964\u0965];"
|
||||
|
||||
// characters that always prevent a break: the non-breaking space
|
||||
// and similar characters
|
||||
+ "<glue>=[\u00a0\u0f0c\u2007\u2011\u202f\ufeff];"
|
||||
|
||||
// whitespace: space separators and control characters, except for
|
||||
// CR and the other characters mentioned above
|
||||
+ "<space>=[:Zs::Cc:^[<glue><break>\r]];"
|
||||
|
||||
// dashes: dash punctuation and the discretionary hyphen, except for
|
||||
// non-breaking hyphens
|
||||
+ "<dash>=[:Pd:\u00ad^<glue>];"
|
||||
|
||||
// characters that stick to a word if they precede it: currency symbols
|
||||
// (except the cents sign) and starting punctuation
|
||||
+ "<pre-word>=[:Sc::Ps::Pi:^[\u00a2]\\\"\\\'];"
|
||||
|
||||
// characters that stick to a word if they follow it: ending punctuation,
|
||||
// other punctuation that usually occurs at the end of a sentence,
|
||||
// small Kana characters, some CJK diacritics, etc.
|
||||
+ "<post-word>=[\\\":Pe::Pf:\\!\\%\\.\\,\\:\\;\\?\u00a2\u00b0\u066a\u2030-\u2034\u2103"
|
||||
+ "\u2105\u2109\u3001\u3002\u3005\u3041\u3043\u3045\u3047\u3049\u3063"
|
||||
+ "\u3083\u3085\u3087\u308e\u3099-\u309e\u30a1\u30a3\u30a5\u30a7\u30a9"
|
||||
+ "\u30c3\u30e3\u30e5\u30e7\u30ee\u30f5\u30f6\u30fc-\u30fe\uff01\uff05"
|
||||
+ "\uff0c\uff0e\uff1a\uff1b\uff1f];"
|
||||
|
||||
// Kanji: actually includes Kanji,Kana and Hangul syllables,
|
||||
// except for small Kana and CJK diacritics
|
||||
+ "<kanji>=[\u4e00-\u9fa5\uac00-\ud7a3\uf900-\ufa2d\ufa30-\ufa6a\u3041-\u3094\u30a1-\u30fa^[<post-word><ignore>]];"
|
||||
|
||||
// digits
|
||||
+ "<digit>=[:Nd::No:];"
|
||||
|
||||
// punctuation that can occur in the middle of a number: periods and commas
|
||||
+ "<mid-num>=[\\.\\,];"
|
||||
|
||||
// everything not mentioned above
|
||||
+ "<char>=[^[<break><space><dash><kanji><glue><ignore><pre-word><post-word><mid-num>\r<danda>]];"
|
||||
|
||||
// a "number" is a run of prefix characters and dashes, followed by one or
|
||||
// more digits with isolated number-punctuation characters interspersed
|
||||
+ "<number>=([<pre-word><dash>]*<digit><digit>*(<mid-num><digit><digit>*)*);"
|
||||
|
||||
// the basic core of a word can be either a "number" as defined above, a single
|
||||
// "Kanji" character, or a run of any number of not-explicitly-mentioned
|
||||
// characters (this includes Latin letters)
|
||||
+ "<word-core>=(<char>*|<kanji>|<number>);"
|
||||
|
||||
// a word may end with an optional suffix that be either a run of one or
|
||||
// more dashes or a run of word-suffix characters
|
||||
+ "<word-suffix>=((<dash><dash>*|<post-word>*));"
|
||||
|
||||
// a word, thus, is an optional run of word-prefix characters, followed by
|
||||
// a word core and a word suffix (the syntax of <word-core> and <word-suffix>
|
||||
// actually allows either of them to match the empty string, putting a break
|
||||
// between things like ")(" or "aaa(aaa"
|
||||
+ "<word>=(<pre-word>*<word-core><word-suffix>);"
|
||||
|
||||
+ "<hack1>=[\\(];"
|
||||
+ "<hack2>=[\\)];"
|
||||
+ "<hack3>=[\\$\\'];"
|
||||
|
||||
// finally, the rule that does the work: Keep together any run of words that
|
||||
// are joined by runs of one of more non-spacing mark. Also keep a trailing
|
||||
// line-break character or CRLF combination with the word. (line separators
|
||||
// "win" over nbsp's)
|
||||
+ "<word>(((<space>*<glue><glue>*{<space>})|<hack3>)<word>)*<space>*{<enclosing>*}{<hack1><hack2><post-word>*}{<enclosing>*}{\r}{<break>};"
|
||||
+ "\r<break>;"
|
||||
},
|
||||
|
||||
// default rules for finding sentence boundaries
|
||||
{ "SentenceBreakRules",
|
||||
// ignore non-spacing marks, enclosing marks, and format characters
|
||||
"<ignore>=[:Mn::Me::Cf:];"
|
||||
|
||||
// letters
|
||||
+ "<letter>=[:L:];"
|
||||
|
||||
// lowercase letters
|
||||
+ "<lc>=[:Ll:];"
|
||||
|
||||
// uppercase letters
|
||||
+ "<uc>=[:Lu:];"
|
||||
|
||||
// NOT lowercase letters
|
||||
+ "<notlc>=[<letter>^<lc>];"
|
||||
|
||||
// whitespace (line separators are treated as whitespace)
|
||||
+ "<space>=[\t\r\f\n\u2028:Zs:];"
|
||||
|
||||
// punctuation which may occur at the beginning of a sentence: "starting
|
||||
// punctuation" and quotation marks
|
||||
+ "<start-punctuation>=[:Ps::Pi:\\\"\\\'];"
|
||||
|
||||
// punctuation with may occur at the end of a sentence: "ending punctuation"
|
||||
// and quotation marks
|
||||
+ "<end>=[:Pe::Pf:\\\"\\\'];"
|
||||
|
||||
// digits
|
||||
+ "<digit>=[:N:];"
|
||||
|
||||
// characters that unambiguously signal the end of a sentence
|
||||
+ "<term>=[\\!\\?\u3002\uff01\uff1f];"
|
||||
|
||||
// periods, which MAY signal the end of a sentence
|
||||
+ "<period>=[\\.\uff0e];"
|
||||
|
||||
// characters that may occur at the beginning of a sentence: basically anything
|
||||
// not mentioned above (letters and digits are specifically excluded)
|
||||
+ "<sent-start>=[^[:L:<space><start-punctuation><end><digit><term><period>\u2029<ignore>]];"
|
||||
|
||||
// Hindi phrase separator
|
||||
+ "<danda>=[\u0964\u0965];"
|
||||
|
||||
// always break sentences after paragraph separators
|
||||
+ ".*?{\u2029};"
|
||||
|
||||
// always break after a danda, if it's followed by whitespace
|
||||
+ ".*?<danda><space>*;"
|
||||
|
||||
// if you see a period, skip over additional periods and ending punctuation
|
||||
// and if the next character is a paragraph separator, break after the
|
||||
// paragraph separator
|
||||
//+ ".*?<period>[<period><end>]*<space>*\u2029;"
|
||||
//+ ".*?[<period><end>]*<space>*\u2029;"
|
||||
|
||||
// if you see a period, skip over additional periods and ending punctuation,
|
||||
// followed by optional whitespace, followed by optional starting punctuation,
|
||||
// and if the next character is something that can start a sentence
|
||||
// (basically, a capital letter), then put the sentence break between the
|
||||
// whitespace and the opening punctuation
|
||||
+ ".*?<period>[<period><end>]*<space><space>*/<notlc>;"
|
||||
+ ".*?<period>[<period><end>]*<space>*/[<start-punctuation><sent-start>][<start-punctuation><sent-start>]*<letter>;"
|
||||
|
||||
// if you see a sentence-terminating character, skip over any additional
|
||||
// terminators, periods, or ending punctuation, followed by any whitespace,
|
||||
// followed by a SINGLE optional paragraph separator, and put the break there
|
||||
+ ".*?<term>[<term><period><end>]*<space>*{\u2029};"
|
||||
|
||||
// The following rules are here to aid in backwards iteration. The automatically
|
||||
// generated backwards state table will rewind to the beginning of the
|
||||
// paragraph all the time (or all the way to the beginning of the document
|
||||
// if the document doesn't use the Unicode PS character) because the only
|
||||
// unambiguous character pairs are those involving paragraph separators.
|
||||
// These specify a few more unambiguous breaking situations.
|
||||
|
||||
// if you see a sentence-starting character, followed by starting punctuation
|
||||
// (remember, we're iterating backwards), followed by an optional run of
|
||||
// whitespace, followed by an optional run of ending punctuation, followed
|
||||
// by a period, this is a safe place to turn around
|
||||
+ "!<sent-start><start-punctuation>*<space>*<end>*<period>;"
|
||||
|
||||
// if you see a letter or a digit, followed by an optional run of
|
||||
// starting punctuation, followed by an optional run of whitespace,
|
||||
// followed by an optional run of ending punctuation, followed by
|
||||
// a sentence terminator, this is a safe place to turn around
|
||||
+ "![<sent-start><lc><digit>]<start-punctuation>*<space>*<end>*<term>;"
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
55
jdkSrc/jdk8/sun/text/resources/CollationData.java
Normal file
55
jdkSrc/jdk8/sun/text/resources/CollationData.java
Normal file
@@ -0,0 +1,55 @@
|
||||
/*
|
||||
* Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class CollationData extends ListResourceBundle {
|
||||
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "Rule", "" },
|
||||
};
|
||||
}
|
||||
}
|
||||
868
jdkSrc/jdk8/sun/text/resources/FormatData.java
Normal file
868
jdkSrc/jdk8/sun/text/resources/FormatData.java
Normal file
@@ -0,0 +1,868 @@
|
||||
/*
|
||||
* Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ListResourceBundle
|
||||
*/
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
// Julian calendar era strings
|
||||
final String[] julianEras = {
|
||||
"BC",
|
||||
"AD"
|
||||
};
|
||||
|
||||
// Thai Buddhist calendar era strings
|
||||
final String[] buddhistEras = {
|
||||
"BC", // BC
|
||||
"B.E." // Buddhist Era
|
||||
};
|
||||
|
||||
// Japanese imperial calendar era abbreviations
|
||||
final String[] japaneseEraAbbrs = {
|
||||
"",
|
||||
"M",
|
||||
"T",
|
||||
"S",
|
||||
"H",
|
||||
"R",
|
||||
};
|
||||
|
||||
// Japanese imperial calendar era strings
|
||||
final String[] japaneseEras = {
|
||||
"",
|
||||
"Meiji",
|
||||
"Taisho",
|
||||
"Showa",
|
||||
"Heisei",
|
||||
"Reiwa",
|
||||
};
|
||||
|
||||
return new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"January", // january
|
||||
"February", // february
|
||||
"March", // march
|
||||
"April", // april
|
||||
"May", // may
|
||||
"June", // june
|
||||
"July", // july
|
||||
"August", // august
|
||||
"September", // september
|
||||
"October", // october
|
||||
"November", // november
|
||||
"December", // december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Jan", // abb january
|
||||
"Feb", // abb february
|
||||
"Mar", // abb march
|
||||
"Apr", // abb april
|
||||
"May", // abb may
|
||||
"Jun", // abb june
|
||||
"Jul", // abb july
|
||||
"Aug", // abb august
|
||||
"Sep", // abb september
|
||||
"Oct", // abb october
|
||||
"Nov", // abb november
|
||||
"Dec", // abb december
|
||||
"" // abb month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Sunday", // Sunday
|
||||
"Monday", // Monday
|
||||
"Tuesday", // Tuesday
|
||||
"Wednesday", // Wednesday
|
||||
"Thursday", // Thursday
|
||||
"Friday", // Friday
|
||||
"Saturday" // Saturday
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Sun", // abb Sunday
|
||||
"Mon", // abb Monday
|
||||
"Tue", // abb Tuesday
|
||||
"Wed", // abb Wednesday
|
||||
"Thu", // abb Thursday
|
||||
"Fri", // abb Friday
|
||||
"Sat" // abb Saturday
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"S",
|
||||
"M",
|
||||
"T",
|
||||
"W",
|
||||
"T",
|
||||
"F",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"AM", // am marker
|
||||
"PM" // pm marker
|
||||
}
|
||||
},
|
||||
{ "narrow.AmPmMarkers",
|
||||
new String[] {
|
||||
"a", // am marker
|
||||
"p" // pm marker
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
julianEras },
|
||||
{ "short.Eras",
|
||||
julianEras },
|
||||
{ "narrow.Eras",
|
||||
new String[] {
|
||||
"B",
|
||||
"A",
|
||||
}
|
||||
},
|
||||
{ "buddhist.Eras",
|
||||
buddhistEras
|
||||
},
|
||||
{ "buddhist.short.Eras",
|
||||
buddhistEras
|
||||
},
|
||||
{ "buddhist.narrow.Eras",
|
||||
buddhistEras
|
||||
},
|
||||
{ "japanese.Eras",
|
||||
japaneseEras },
|
||||
{ "japanese.short.Eras",
|
||||
japaneseEraAbbrs
|
||||
},
|
||||
{ "japanese.narrow.Eras",
|
||||
japaneseEraAbbrs
|
||||
},
|
||||
{ "japanese.FirstYear",
|
||||
new String[] { // Japanese imperial calendar year name
|
||||
// empty in English
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###;-#,##0.###", // decimal pattern
|
||||
"\u00a4 #,##0.00;-\u00a4 #,##0.00", // currency pattern
|
||||
"#,##0%" // percent pattern
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "" },
|
||||
{ "NumberElements",
|
||||
new String[] {
|
||||
".", // decimal separator
|
||||
",", // group (thousands) separator
|
||||
";", // list separator
|
||||
"%", // percent sign
|
||||
"0", // native 0 digit
|
||||
"#", // pattern digit
|
||||
"-", // minus sign
|
||||
"E", // exponential
|
||||
"\u2030", // per mille
|
||||
"\u221e", // infinity
|
||||
"\ufffd" // NaN
|
||||
}
|
||||
},
|
||||
{ "arab.NumberElements",
|
||||
new String[] {
|
||||
"\u066b",
|
||||
"\u066c",
|
||||
"\u061b",
|
||||
"\u066a",
|
||||
"\u0660",
|
||||
"#",
|
||||
"-",
|
||||
"\u0627\u0633",
|
||||
"\u0609",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "arabext.NumberElements",
|
||||
new String[] {
|
||||
"\u066b",
|
||||
"\u066c",
|
||||
"\u061b",
|
||||
"\u066a",
|
||||
"\u06f0",
|
||||
"#",
|
||||
"-",
|
||||
"\u00d7\u06f1\u06f0^",
|
||||
"\u0609",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "bali.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1b50",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "beng.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u09e6",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "cham.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\uaa50",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "deva.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0966",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "fullwide.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\uff10",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "gujr.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0ae6",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "guru.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0a66",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "java.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\ua9d0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "kali.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\ua900",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "khmr.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u17e0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "knda.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0ce6",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "laoo.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0ed0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "lana.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1a80",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "lanatham.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1a90",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".", // decimal separator
|
||||
",", // group (thousands) separator
|
||||
";", // list separator
|
||||
"%", // percent sign
|
||||
"0", // native 0 digit
|
||||
"#", // pattern digit
|
||||
"-", // minus sign
|
||||
"E", // exponential
|
||||
"\u2030", // per mille
|
||||
"\u221e", // infinity
|
||||
"\ufffd" // NaN
|
||||
}
|
||||
},
|
||||
{ "lepc.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1c40",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "limb.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1946",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mlym.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0d66",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mong.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1810",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mtei.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\uabf0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mymr.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1040",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mymrshan.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1090",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "nkoo.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u07c0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "olck.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1c50",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "orya.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0b66",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "saur.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\ua8d0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "sund.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1bb0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "talu.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u19d0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "tamldec.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0be6",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "telu.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0c66",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "thai.NumberElements",
|
||||
new String[] {
|
||||
".", // decimal separator
|
||||
",", // group (thousands) separator
|
||||
";", // list separator
|
||||
"%", // percent sign
|
||||
"\u0E50", // native 0 digit
|
||||
"#", // pattern digit
|
||||
"-", // minus sign
|
||||
"E", // exponential
|
||||
"\u2030", // per mille
|
||||
"\u221e", // infinity
|
||||
"\ufffd" // NaN
|
||||
}
|
||||
},
|
||||
{ "tibt.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0f20",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "vaii.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\ua620",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a z", // full time pattern
|
||||
"h:mm:ss a z", // long time pattern
|
||||
"h:mm:ss a", // medium time pattern
|
||||
"h:mm a", // short time pattern
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, yyyy", // full date pattern
|
||||
"MMMM d, yyyy", // long date pattern
|
||||
"MMM d, yyyy", // medium date pattern
|
||||
"M/d/yy", // short date pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatterns",
|
||||
new String[] {
|
||||
"{1} {0}" // date-time pattern
|
||||
}
|
||||
},
|
||||
{ "buddhist.TimePatterns",
|
||||
new String[] {
|
||||
"H:mm:ss z", // full time pattern
|
||||
"H:mm:ss z", // long time pattern
|
||||
"H:mm:ss", // medium time pattern
|
||||
"H:mm", // short time pattern
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM G yyyy", // full date pattern
|
||||
"d MMMM yyyy", // long date pattern
|
||||
"d MMM yyyy", // medium date pattern
|
||||
"d/M/yyyy", // short date pattern
|
||||
}
|
||||
},
|
||||
{ "buddhist.DateTimePatterns",
|
||||
new String[] {
|
||||
"{1}, {0}" // date-time pattern
|
||||
}
|
||||
},
|
||||
{ "japanese.TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a z", // full time pattern
|
||||
"h:mm:ss a z", // long time pattern
|
||||
"h:mm:ss a", // medium time pattern
|
||||
"h:mm a", // short time pattern
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"GGGG yyyy MMMM d (EEEE)", // full date pattern
|
||||
"GGGG yyyy MMMM d", // long date pattern
|
||||
"GGGG yyyy MMM d", // medium date pattern
|
||||
"Gy.MM.dd", // short date pattern
|
||||
}
|
||||
},
|
||||
{ "japanese.DateTimePatterns",
|
||||
new String[] {
|
||||
"{1} {0}" // date-time pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
|
||||
|
||||
// Workaround for islamic-umalqura name support (JDK-8015986)
|
||||
{ "calendarname.islamic-umalqura", "Islamic Umm al-Qura Calendar" },
|
||||
};
|
||||
}
|
||||
}
|
||||
289
jdkSrc/jdk8/sun/text/resources/JavaTimeSupplementary.java
Normal file
289
jdkSrc/jdk8/sun/text/resources/JavaTimeSupplementary.java
Normal file
@@ -0,0 +1,289 @@
|
||||
/*
|
||||
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
// Note: this file has been generated by a tool.
|
||||
|
||||
package sun.text.resources;
|
||||
|
||||
import sun.util.resources.OpenListResourceBundle;
|
||||
|
||||
public class JavaTimeSupplementary extends OpenListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "calendarname.buddhist",
|
||||
"Buddhist Calendar" },
|
||||
{ "calendarname.gregorian",
|
||||
"Gregorian Calendar" },
|
||||
{ "calendarname.gregory",
|
||||
"Gregorian Calendar" },
|
||||
{ "calendarname.islamic",
|
||||
"Islamic Calendar" },
|
||||
{ "calendarname.islamic-civil",
|
||||
"Islamic-Civil Calendar" },
|
||||
{ "calendarname.islamicc",
|
||||
"Islamic-Civil Calendar" },
|
||||
{ "calendarname.japanese",
|
||||
"Japanese Calendar" },
|
||||
{ "calendarname.roc",
|
||||
"Minguo Calendar" },
|
||||
{ "field.dayperiod",
|
||||
"Dayperiod" },
|
||||
{ "field.era",
|
||||
"Era" },
|
||||
{ "field.hour",
|
||||
"Hour" },
|
||||
{ "field.minute",
|
||||
"Minute" },
|
||||
{ "field.month",
|
||||
"Month" },
|
||||
{ "field.second",
|
||||
"Second" },
|
||||
{ "field.week",
|
||||
"Week" },
|
||||
{ "field.weekday",
|
||||
"Day of the Week" },
|
||||
{ "field.year",
|
||||
"Year" },
|
||||
{ "field.zone",
|
||||
"Zone" },
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y GGGG",
|
||||
"MMMM d, y GGGG",
|
||||
"MMM d, y GGGG",
|
||||
"M/d/yy GGGG",
|
||||
}
|
||||
},
|
||||
{ "islamic.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"AH",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthAbbreviations",
|
||||
new String[] {
|
||||
"Muh.",
|
||||
"Saf.",
|
||||
"Rab. I",
|
||||
"Rab. II",
|
||||
"Jum. I",
|
||||
"Jum. II",
|
||||
"Raj.",
|
||||
"Sha.",
|
||||
"Ram.",
|
||||
"Shaw.",
|
||||
"Dhu\u02bbl-Q.",
|
||||
"Dhu\u02bbl-H.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNames",
|
||||
new String[] {
|
||||
"Muharram",
|
||||
"Safar",
|
||||
"Rabi\u02bb I",
|
||||
"Rabi\u02bb II",
|
||||
"Jumada I",
|
||||
"Jumada II",
|
||||
"Rajab",
|
||||
"Sha\u02bbban",
|
||||
"Ramadan",
|
||||
"Shawwal",
|
||||
"Dhu\u02bbl-Qi\u02bbdah",
|
||||
"Dhu\u02bbl-Hijjah",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.short.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"AH",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, G y MMMM dd",
|
||||
"G y MMMM d",
|
||||
"G y MMM d",
|
||||
"GGGGG yyyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.short.Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"B.E.",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y G",
|
||||
"MMMM d, y G",
|
||||
"MMM d, y G",
|
||||
"M/d/yy G",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"G y MMMM d (EEEE)",
|
||||
"G y MMMM d",
|
||||
"G y MMM d",
|
||||
"GGGGGy.MM.dd",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.long.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"Meiji",
|
||||
"Taisho",
|
||||
"Showa",
|
||||
"Heisei",
|
||||
"Reiwa",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.short.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"Meiji",
|
||||
"Taisho",
|
||||
"Showa",
|
||||
"Heisei",
|
||||
"Reiwa",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, G y MMMM dd",
|
||||
"G y MMMM d",
|
||||
"G y MMM d",
|
||||
"GGGGG yyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "java.time.short.Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"AD",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, GGGG y MMMM dd",
|
||||
"GGGG y MMMM d",
|
||||
"GGGG y MMM d",
|
||||
"G yyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "roc.Eras",
|
||||
new String[] {
|
||||
"Before R.O.C.",
|
||||
"R.O.C.",
|
||||
}
|
||||
},
|
||||
{ "roc.short.Eras",
|
||||
new String[] {
|
||||
"Before R.O.C.",
|
||||
"R.O.C.",
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
244
jdkSrc/jdk8/sun/text/resources/ar/CollationData_ar.java
Normal file
244
jdkSrc/jdk8/sun/text/resources/ar/CollationData_ar.java
Normal file
@@ -0,0 +1,244 @@
|
||||
/*
|
||||
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class CollationData_ar extends ListResourceBundle {
|
||||
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "Rule",
|
||||
// for ar, the following additions are needed:
|
||||
"& \u0361 = \u0640"
|
||||
+ "= \u064b"
|
||||
+ "= \u064c"
|
||||
+ "= \u064d"
|
||||
+ "= \u064e"
|
||||
+ "= \u064f"
|
||||
+ "= \u0650"
|
||||
+ "= \u0652"
|
||||
+ "= \u066d"
|
||||
+ "= \u06d6"
|
||||
+ "= \u06d7"
|
||||
+ "= \u06d8"
|
||||
+ "= \u06d9"
|
||||
+ "= \u06da"
|
||||
+ "= \u06db"
|
||||
+ "= \u06dc"
|
||||
+ "= \u06dd"
|
||||
+ "= \u06de"
|
||||
+ "= \u06df"
|
||||
+ "= \u06e0"
|
||||
+ "= \u06e1"
|
||||
+ "= \u06e2"
|
||||
+ "= \u06e3"
|
||||
+ "= \u06e4"
|
||||
+ "= \u06e5"
|
||||
+ "= \u06e6"
|
||||
+ "= \u06e7"
|
||||
+ "= \u06e8"
|
||||
+ "= \u06e9"
|
||||
+ "= \u06ea"
|
||||
+ "= \u06eb"
|
||||
+ "= \u06ec"
|
||||
+ "= \u06ed"
|
||||
// Numerics
|
||||
+ "& 0 < \u0660 < \u06f0" // 0
|
||||
+ "& 1 < \u0661 < \u06f1" // 1
|
||||
+ "& 2 < \u0662 < \u06f2" // 2
|
||||
+ "& 3 < \u0663 < \u06f3" // 3
|
||||
+ "& 4 < \u0664 < \u06f4" // 4
|
||||
+ "& 5 < \u0665 < \u06f5" // 5
|
||||
+ "& 6 < \u0666 < \u06f6" // 6
|
||||
+ "& 7 < \u0667 < \u06f7" // 7
|
||||
+ "& 8 < \u0668 < \u06f8" // 8
|
||||
+ "& 9 < \u0669 < \u06f9" // 9
|
||||
// Punctuations
|
||||
+ "& \u00b5 < \u060c" // retroflex click < arabic comma
|
||||
+ "< \u061b" // ar semicolon
|
||||
+ "< \u061f" // ar question mark
|
||||
+ "< \u066a" // ar percent sign
|
||||
+ "< \u066b" // ar decimal separator
|
||||
+ "< \u066c" // ar thousand separator
|
||||
+ "< \u06d4" // ar full stop
|
||||
// Arabic script sorts after Z's
|
||||
+ "& Z < \u0621"
|
||||
+ "; \u0622"
|
||||
+ "; \u0623"
|
||||
+ "; \u0624"
|
||||
+ "; \u0625"
|
||||
+ "; \u0626"
|
||||
+ "< \u0627"
|
||||
+ "< \u0628"
|
||||
+ "< \u067e"
|
||||
+ "< \u0629"
|
||||
+ "= \u062a"
|
||||
+ "< \u062b"
|
||||
+ "< \u062c"
|
||||
+ "< \u0686"
|
||||
+ "< \u062d"
|
||||
+ "< \u062e"
|
||||
+ "< \u062f"
|
||||
+ "< \u0630"
|
||||
+ "< \u0631"
|
||||
+ "< \u0632"
|
||||
+ "< \u0698"
|
||||
+ "< \u0633"
|
||||
+ "< \u0634"
|
||||
+ "< \u0635"
|
||||
+ "< \u0636"
|
||||
+ "< \u0637"
|
||||
+ "< \u0638"
|
||||
+ "< \u0639"
|
||||
+ "< \u063a"
|
||||
+ "< \u0641"
|
||||
+ "< \u0642"
|
||||
+ "< \u0643"
|
||||
+ "< \u06af"
|
||||
+ "< \u0644"
|
||||
+ "< \u0645"
|
||||
+ "< \u0646"
|
||||
+ "< \u0647"
|
||||
+ "< \u0648"
|
||||
+ "< \u0649"
|
||||
+ "; \u064a"
|
||||
+ "< \u0670"
|
||||
+ "< \u0671"
|
||||
+ "< \u0672"
|
||||
+ "< \u0673"
|
||||
+ "< \u0674"
|
||||
+ "< \u0675"
|
||||
+ "< \u0676"
|
||||
+ "< \u0677"
|
||||
+ "< \u0678"
|
||||
+ "< \u0679"
|
||||
+ "< \u067a"
|
||||
+ "< \u067b"
|
||||
+ "< \u067c"
|
||||
+ "< \u067d"
|
||||
+ "< \u067f"
|
||||
+ "< \u0680"
|
||||
+ "< \u0681"
|
||||
+ "< \u0682"
|
||||
+ "< \u0683"
|
||||
+ "< \u0684"
|
||||
+ "< \u0685"
|
||||
+ "< \u0687"
|
||||
+ "< \u0688"
|
||||
+ "< \u0689"
|
||||
+ "< \u068a"
|
||||
+ "< \u068b"
|
||||
+ "< \u068c"
|
||||
+ "< \u068d"
|
||||
+ "< \u068e"
|
||||
+ "< \u068f"
|
||||
+ "< \u0690"
|
||||
+ "< \u0691"
|
||||
+ "< \u0692"
|
||||
+ "< \u0693"
|
||||
+ "< \u0694"
|
||||
+ "< \u0695"
|
||||
+ "< \u0696"
|
||||
+ "< \u0697"
|
||||
+ "< \u0699"
|
||||
+ "< \u069a"
|
||||
+ "< \u069b"
|
||||
+ "< \u069c"
|
||||
+ "< \u069d"
|
||||
+ "< \u069e"
|
||||
+ "< \u069f"
|
||||
+ "< \u06a0"
|
||||
+ "< \u06a1"
|
||||
+ "< \u06a2"
|
||||
+ "< \u06a3"
|
||||
+ "< \u06a4"
|
||||
+ "< \u06a5"
|
||||
+ "< \u06a6"
|
||||
+ "< \u06a7"
|
||||
+ "< \u06a8"
|
||||
+ "< \u06a9"
|
||||
+ "< \u06aa"
|
||||
+ "< \u06ab"
|
||||
+ "< \u06ac"
|
||||
+ "< \u06ad"
|
||||
+ "< \u06ae"
|
||||
+ "< \u06b0"
|
||||
+ "< \u06b1"
|
||||
+ "< \u06b2"
|
||||
+ "< \u06b3"
|
||||
+ "< \u06b4"
|
||||
+ "< \u06b5"
|
||||
+ "< \u06b6"
|
||||
+ "< \u06b7"
|
||||
+ "< \u06ba"
|
||||
+ "< \u06bb"
|
||||
+ "< \u06bc"
|
||||
+ "< \u06bd"
|
||||
+ "< \u06be"
|
||||
+ "< \u06c0"
|
||||
+ "< \u06c1"
|
||||
+ "< \u06c2"
|
||||
+ "< \u06c3"
|
||||
+ "< \u06c4"
|
||||
+ "< \u06c5"
|
||||
+ "< \u06c6"
|
||||
+ "< \u06c7"
|
||||
+ "< \u06c8"
|
||||
+ "< \u06c9"
|
||||
+ "< \u06ca"
|
||||
+ "< \u06cb"
|
||||
+ "< \u06cc"
|
||||
+ "< \u06cd"
|
||||
+ "< \u06ce"
|
||||
+ "< \u06d0"
|
||||
+ "< \u06d1"
|
||||
+ "< \u06d2"
|
||||
+ "< \u06d3"
|
||||
+ "< \u06d5"
|
||||
+ "< \u0651"
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
275
jdkSrc/jdk8/sun/text/resources/ar/FormatData_ar.java
Normal file
275
jdkSrc/jdk8/sun/text/resources/ar/FormatData_ar.java
Normal file
@@ -0,0 +1,275 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.ar;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_ar extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final String[] rocEras = {
|
||||
"Before R.O.C.",
|
||||
"\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u064a",
|
||||
};
|
||||
return new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u064a\u0646\u0627\u064a\u0631", // january
|
||||
"\u0641\u0628\u0631\u0627\u064a\u0631", // february
|
||||
"\u0645\u0627\u0631\u0633", // march
|
||||
"\u0623\u0628\u0631\u064a\u0644", // april
|
||||
"\u0645\u0627\u064a\u0648", // may
|
||||
"\u064a\u0648\u0646\u064a\u0648", // june
|
||||
"\u064a\u0648\u0644\u064a\u0648", // july
|
||||
"\u0623\u063a\u0633\u0637\u0633", // august
|
||||
"\u0633\u0628\u062a\u0645\u0628\u0631", // september
|
||||
"\u0623\u0643\u062a\u0648\u0628\u0631", // october
|
||||
"\u0646\u0648\u0641\u0645\u0628\u0631", // november
|
||||
"\u062f\u064a\u0633\u0645\u0628\u0631", // december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u064a\u0646\u0627", // abb january
|
||||
"\u0641\u0628\u0631", // abb february
|
||||
"\u0645\u0627\u0631", // abb march
|
||||
"\u0623\u0628\u0631", // abb april
|
||||
"\u0645\u0627\u064a", // abb may
|
||||
"\u064a\u0648\u0646", // abb june
|
||||
"\u064a\u0648\u0644", // abb july
|
||||
"\u0623\u063a\u0633", // abb august
|
||||
"\u0633\u0628\u062a", // abb september
|
||||
"\u0623\u0643\u062a", // abb october
|
||||
"\u0646\u0648\u0641", // abb november
|
||||
"\u062f\u064a\u0633", // abb december
|
||||
"" // abb month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u064a",
|
||||
"\u0641",
|
||||
"\u0645",
|
||||
"\u0623",
|
||||
"\u0648",
|
||||
"\u0646",
|
||||
"\u0644",
|
||||
"\u063a",
|
||||
"\u0633",
|
||||
"\u0643",
|
||||
"\u0628",
|
||||
"\u062f",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0623\u062d\u062f", // Sunday
|
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", // Monday
|
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", // Tuesday
|
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", // Wednesday
|
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", // Thursday
|
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", // Friday
|
||||
"\u0627\u0644\u0633\u0628\u062a" // Saturday
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u062d", // abb Sunday
|
||||
"\u0646", // abb Monday
|
||||
"\u062b", // abb Tuesday
|
||||
"\u0631", // abb Wednesday
|
||||
"\u062e", // abb Thursday
|
||||
"\u062c", // abb Friday
|
||||
"\u0633" // abb Saturday
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0623\u062d\u062f",
|
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
|
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
|
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
|
||||
"\u0627\u0644\u062e\u0645\u064a\u0633",
|
||||
"\u0627\u0644\u062c\u0645\u0639\u0629",
|
||||
"\u0627\u0644\u0633\u0628\u062a",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u062d",
|
||||
"\u0646",
|
||||
"\u062b",
|
||||
"\u0631",
|
||||
"\u062e",
|
||||
"\u062c",
|
||||
"\u0633",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u0635", // am marker
|
||||
"\u0645" // pm marker
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] { // era strings
|
||||
"\u0642.\u0645",
|
||||
"\u0645"
|
||||
}
|
||||
},
|
||||
{ "short.Eras",
|
||||
new String[] {
|
||||
"\u0642.\u0645",
|
||||
"\u0645",
|
||||
}
|
||||
},
|
||||
{ "japanese.Eras",
|
||||
new String[] {
|
||||
"\u0645",
|
||||
"\u0645\u064a\u062c\u064a",
|
||||
"\u062a\u064a\u0634\u0648",
|
||||
"\u0634\u0648\u0648\u0627",
|
||||
"\u0647\u064a\u0633\u064a",
|
||||
"\u0631\u064a\u0648\u0627",
|
||||
}
|
||||
},
|
||||
{ "japanese.short.Eras",
|
||||
new String[] {
|
||||
"\u0645",
|
||||
"\u0645\u064a\u062c\u064a",
|
||||
"\u062a\u064a\u0634\u0648",
|
||||
"\u0634\u0648\u0648\u0627",
|
||||
"\u0647\u064a\u0633\u064a",
|
||||
"\u0631\u064a\u0648\u0627",
|
||||
}
|
||||
},
|
||||
{ "buddhist.Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0628\u0648\u0630\u064a",
|
||||
}
|
||||
},
|
||||
{ "buddhist.short.Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0628\u0648\u0630\u064a",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###;#,##0.###-", // decimal pattern
|
||||
"\u00A4 #,##0.###;\u00A4 #,##0.###-", // currency pattern
|
||||
"#,##0%" // percent pattern
|
||||
}
|
||||
},
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"z hh:mm:ss a", // full time pattern
|
||||
"z hh:mm:ss a", // long time pattern
|
||||
"hh:mm:ss a", // medium time pattern
|
||||
"hh:mm a", // short time pattern
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"dd MMMM, yyyy", // full date pattern
|
||||
"dd MMMM, yyyy", // long date pattern
|
||||
"dd/MM/yyyy", // medium date pattern
|
||||
"dd/MM/yy", // short date pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatterns",
|
||||
new String[] {
|
||||
"{1} {0}" // date-time pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
|
||||
|
||||
// Workaround for islamic-umalqura name support (JDK-8015986)
|
||||
{ "calendarname.islamic-umalqura",
|
||||
"\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0647\u062c\u0631\u064a\u060c \u0623\u0645 \u0627\u0644\u0642\u0631\u0649" },
|
||||
};
|
||||
}
|
||||
}
|
||||
100
jdkSrc/jdk8/sun/text/resources/ar/FormatData_ar_JO.java
Normal file
100
jdkSrc/jdk8/sun/text/resources/ar/FormatData_ar_JO.java
Normal file
@@ -0,0 +1,100 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright IBM Corp. 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.ar;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_ar_JO extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // january
|
||||
"\u0634\u0628\u0627\u0637", // february
|
||||
"\u0622\u0630\u0627\u0631", // march
|
||||
"\u0646\u064a\u0633\u0627\u0646", // april
|
||||
"\u0623\u064a\u0627\u0631", // may
|
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", // june
|
||||
"\u062a\u0645\u0648\u0632", // july
|
||||
"\u0622\u0628", // august
|
||||
"\u0623\u064a\u0644\u0648\u0644", // september
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // october
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // november
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // abb january
|
||||
"\u0634\u0628\u0627\u0637", // abb february
|
||||
"\u0622\u0630\u0627\u0631", // abb march
|
||||
"\u0646\u064a\u0633\u0627\u0646", // abb april
|
||||
"\u0623\u064a\u0627\u0631", // abb may
|
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", // abb june
|
||||
"\u062a\u0645\u0648\u0632", // abb july
|
||||
"\u0622\u0628", // abb august
|
||||
"\u0623\u064a\u0644\u0648\u0644", // abb september
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // abb october
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // abb november
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // abb december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0623\u062d\u062f", // abb Sunday
|
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", // abb Monday
|
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", // abb Tuesday
|
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", // abb Wednesday
|
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", // abb Thursday
|
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", // abb Friday
|
||||
"\u0627\u0644\u0633\u0628\u062a" // abb Saturday
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
100
jdkSrc/jdk8/sun/text/resources/ar/FormatData_ar_LB.java
Normal file
100
jdkSrc/jdk8/sun/text/resources/ar/FormatData_ar_LB.java
Normal file
@@ -0,0 +1,100 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright IBM Corp. 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.ar;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_ar_LB extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // january
|
||||
"\u0634\u0628\u0627\u0637", // february
|
||||
"\u0622\u0630\u0627\u0631", // march
|
||||
"\u0646\u064a\u0633\u0627\u0646", // april
|
||||
"\u0623\u064a\u0627\u0631", // may
|
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", // june
|
||||
"\u062a\u0645\u0648\u0632", // july
|
||||
"\u0622\u0628", // august
|
||||
"\u0623\u064a\u0644\u0648\u0644", // september
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // october
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // november
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // abb january
|
||||
"\u0634\u0628\u0627\u0637", // abb february
|
||||
"\u0622\u0630\u0627\u0631", // abb march
|
||||
"\u0646\u064a\u0633\u0627\u0646", // abb april
|
||||
"\u0623\u064a\u0627\u0631", // abb may
|
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", // abb june
|
||||
"\u062a\u0645\u0648\u0632", // abb july
|
||||
"\u0622\u0628", // abb august
|
||||
"\u0623\u064a\u0644\u0648\u0644", // abb september
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // abb october
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // abb november
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // abb december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0623\u062d\u062f", // abb Sunday
|
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", // abb Monday
|
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", // abb Tuesday
|
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", // abb Wednesday
|
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", // abb Thursday
|
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", // abb Friday
|
||||
"\u0627\u0644\u0633\u0628\u062a" // abb Saturday
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
100
jdkSrc/jdk8/sun/text/resources/ar/FormatData_ar_SY.java
Normal file
100
jdkSrc/jdk8/sun/text/resources/ar/FormatData_ar_SY.java
Normal file
@@ -0,0 +1,100 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright IBM Corp. 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.ar;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_ar_SY extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // january
|
||||
"\u0634\u0628\u0627\u0637", // february
|
||||
"\u0622\u0630\u0627\u0631", // march
|
||||
"\u0646\u064a\u0633\u0627\u0646", // april
|
||||
"\u0623\u064a\u0627\u0631", // may
|
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", // june
|
||||
"\u062a\u0645\u0648\u0632", // july
|
||||
"\u0622\u0628", // august
|
||||
"\u0623\u064a\u0644\u0648\u0644", // september
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // october
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // november
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // abb january
|
||||
"\u0634\u0628\u0627\u0637", // abb february
|
||||
"\u0622\u0630\u0627\u0631", // abb march
|
||||
"\u0646\u064a\u0633\u0627\u0646", // abb april
|
||||
"\u0623\u064a\u0627\u0631", // abb may
|
||||
"\u062d\u0632\u064a\u0631\u0627\u0646", // abb june
|
||||
"\u062a\u0645\u0648\u0632", // abb july
|
||||
"\u0622\u0628", // abb august
|
||||
"\u0623\u064a\u0644\u0648\u0644", // abb september
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // abb october
|
||||
"\u062a\u0634\u0631\u064a\u0646\u0020\u0627\u0644\u062b\u0627\u0646\u064a", // abb november
|
||||
"\u0643\u0627\u0646\u0648\u0646\u0020\u0627\u0644\u0623\u0648\u0644", // abb december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0623\u062d\u062f", // abb Sunday
|
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646", // abb Monday
|
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", // abb Tuesday
|
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621", // abb Wednesday
|
||||
"\u0627\u0644\u062e\u0645\u064a\u0633", // abb Thursday
|
||||
"\u0627\u0644\u062c\u0645\u0639\u0629", // abb Friday
|
||||
"\u0627\u0644\u0633\u0628\u062a" // abb Saturday
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
287
jdkSrc/jdk8/sun/text/resources/ar/JavaTimeSupplementary_ar.java
Normal file
287
jdkSrc/jdk8/sun/text/resources/ar/JavaTimeSupplementary_ar.java
Normal file
@@ -0,0 +1,287 @@
|
||||
/*
|
||||
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
// Note: this file has been generated by a tool.
|
||||
|
||||
package sun.text.resources.ar;
|
||||
|
||||
import sun.util.resources.OpenListResourceBundle;
|
||||
|
||||
public class JavaTimeSupplementary_ar extends OpenListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0623\u0648\u0644",
|
||||
"\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0646\u064a",
|
||||
"\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0644\u062b",
|
||||
"\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0631\u0627\u0628\u0639",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"\u0661",
|
||||
"\u0662",
|
||||
"\u0663",
|
||||
"\u0664",
|
||||
}
|
||||
},
|
||||
{ "calendarname.buddhist",
|
||||
"\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0628\u0648\u0630\u064a" },
|
||||
{ "calendarname.gregorian",
|
||||
"\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0645\u064a\u0644\u0627\u062f\u064a" },
|
||||
{ "calendarname.gregory",
|
||||
"\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0645\u064a\u0644\u0627\u062f\u064a" },
|
||||
{ "calendarname.islamic",
|
||||
"\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0647\u062c\u0631\u064a" },
|
||||
{ "calendarname.islamic-civil",
|
||||
"\u062a\u0642\u0648\u064a\u0645 \u0627\u0633\u0644\u0627\u0645\u064a \u0645\u062f\u0646\u064a" },
|
||||
{ "calendarname.islamicc",
|
||||
"\u062a\u0642\u0648\u064a\u0645 \u0627\u0633\u0644\u0627\u0645\u064a \u0645\u062f\u0646\u064a" },
|
||||
{ "calendarname.japanese",
|
||||
"\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u064a\u0627\u0628\u0627\u0646\u064a" },
|
||||
{ "calendarname.roc",
|
||||
"\u062a\u0642\u0648\u064a\u0645 \u0645\u064a\u0646\u062c\u0648" },
|
||||
{ "field.dayperiod",
|
||||
"\u0635/\u0645" },
|
||||
{ "field.era",
|
||||
"\u0627\u0644\u0639\u0635\u0631" },
|
||||
{ "field.hour",
|
||||
"\u0627\u0644\u0633\u0627\u0639\u0627\u062a" },
|
||||
{ "field.minute",
|
||||
"\u0627\u0644\u062f\u0642\u0627\u0626\u0642" },
|
||||
{ "field.month",
|
||||
"\u0627\u0644\u0634\u0647\u0631" },
|
||||
{ "field.second",
|
||||
"\u0627\u0644\u062b\u0648\u0627\u0646\u064a" },
|
||||
{ "field.week",
|
||||
"\u0627\u0644\u0623\u0633\u0628\u0648\u0639" },
|
||||
{ "field.weekday",
|
||||
"\u0627\u0644\u064a\u0648\u0645" },
|
||||
{ "field.year",
|
||||
"\u0627\u0644\u0633\u0646\u0629" },
|
||||
{ "field.zone",
|
||||
"\u0627\u0644\u062a\u0648\u0642\u064a\u062a" },
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM\u060c y GGGG",
|
||||
"d\u200f/M\u200f/yyyy",
|
||||
}
|
||||
},
|
||||
{ "islamic.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"\u0647\u0640",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0645\u062d\u0631\u0645",
|
||||
"\u0635\u0641\u0631",
|
||||
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0623\u0648\u0644",
|
||||
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0622\u062e\u0631",
|
||||
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0623\u0648\u0644\u0649",
|
||||
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0622\u062e\u0631\u0629",
|
||||
"\u0631\u062c\u0628",
|
||||
"\u0634\u0639\u0628\u0627\u0646",
|
||||
"\u0631\u0645\u0636\u0627\u0646",
|
||||
"\u0634\u0648\u0627\u0644",
|
||||
"\u0630\u0648 \u0627\u0644\u0642\u0639\u062f\u0629",
|
||||
"\u0630\u0648 \u0627\u0644\u062d\u062c\u0629",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNames",
|
||||
new String[] {
|
||||
"\u0645\u062d\u0631\u0645",
|
||||
"\u0635\u0641\u0631",
|
||||
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0623\u0648\u0644",
|
||||
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0622\u062e\u0631",
|
||||
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0623\u0648\u0644\u0649",
|
||||
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0622\u062e\u0631\u0629",
|
||||
"\u0631\u062c\u0628",
|
||||
"\u0634\u0639\u0628\u0627\u0646",
|
||||
"\u0631\u0645\u0636\u0627\u0646",
|
||||
"\u0634\u0648\u0627\u0644",
|
||||
"\u0630\u0648 \u0627\u0644\u0642\u0639\u062f\u0629",
|
||||
"\u0630\u0648 \u0627\u0644\u062d\u062c\u0629",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNarrows",
|
||||
new String[] {
|
||||
"\u0661",
|
||||
"\u0662",
|
||||
"\u0663",
|
||||
"\u0664",
|
||||
"\u0665",
|
||||
"\u0666",
|
||||
"\u0667",
|
||||
"\u0668",
|
||||
"\u0669",
|
||||
"\u0661\u0660",
|
||||
"\u0661\u0661",
|
||||
"\u0661\u0662",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.short.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"\u0647\u0640",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y G",
|
||||
"d MMMM\u060c y G",
|
||||
"dd\u200f/MM\u200f/y G",
|
||||
"d\u200f/M\u200f/y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.short.Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0628\u0648\u0630\u064a",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM\u060c y G",
|
||||
"d\u200f/M\u200f/yyyy",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y G",
|
||||
"d MMMM\u060c y G",
|
||||
"dd\u200f/MM\u200f/y G",
|
||||
"d\u200f/M\u200f/y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.long.Eras",
|
||||
new String[] {
|
||||
"\u0645",
|
||||
"\u0645\u064a\u062c\u064a",
|
||||
"\u062a\u064a\u0634\u0648",
|
||||
"\u0634\u0648\u0648\u0627",
|
||||
"\u0647\u064a\u0633\u064a",
|
||||
"\u0631\u064a\u0648\u0627",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.short.Eras",
|
||||
new String[] {
|
||||
"\u0645",
|
||||
"\u0645\u064a\u062c\u064a",
|
||||
"\u062a\u064a\u0634\u0648",
|
||||
"\u0634\u0648\u0648\u0627",
|
||||
"\u0647\u064a\u0633\u064a",
|
||||
"\u0631\u064a\u0648\u0627",
|
||||
}
|
||||
},
|
||||
{ "java.time.long.Eras",
|
||||
new String[] {
|
||||
"\u0642\u0628\u0644 \u0627\u0644\u0645\u064a\u0644\u0627\u062f",
|
||||
"\u0645\u064a\u0644\u0627\u062f\u064a",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y G",
|
||||
"d MMMM\u060c y G",
|
||||
"dd\u200f/MM\u200f/y G",
|
||||
"d\u200f/M\u200f/y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.short.Eras",
|
||||
new String[] {
|
||||
"\u0642.\u0645",
|
||||
"\u0645",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y GGGG",
|
||||
"d MMMM\u060c y GGGG",
|
||||
"dd\u200f/MM\u200f/y GGGG",
|
||||
"d\u200f/M\u200f/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.Eras",
|
||||
new String[] {
|
||||
"Before R.O.C.",
|
||||
"\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u064a",
|
||||
}
|
||||
},
|
||||
{ "roc.short.Eras",
|
||||
new String[] {
|
||||
"Before R.O.C.",
|
||||
"\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u064a",
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
151
jdkSrc/jdk8/sun/text/resources/be/CollationData_be.java
Normal file
151
jdkSrc/jdk8/sun/text/resources/be/CollationData_be.java
Normal file
@@ -0,0 +1,151 @@
|
||||
/*
|
||||
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.be;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class CollationData_be extends ListResourceBundle {
|
||||
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "Rule",
|
||||
"& 9 < \u0482 " + // thousand sign
|
||||
"& Z " + // Arabic script sorts after Z's
|
||||
"< \u0430 , \u0410" + // a
|
||||
"< \u0431 , \u0411" + // be
|
||||
"< \u0432 , \u0412" + // ve
|
||||
"< \u0433 , \u0413" + // ghe
|
||||
"; \u0491 , \u0490" + // ghe-upturn
|
||||
"; \u0495 , \u0494" + // ghe-mid-hook
|
||||
"; \u0453 , \u0403" + // gje
|
||||
"; \u0493 , \u0492" + // ghe-stroke
|
||||
"< \u0434 , \u0414" + // de
|
||||
"< \u0452 , \u0402" + // dje
|
||||
"< \u0435 , \u0415" + // ie
|
||||
"; \u04bd , \u04bc" + // che
|
||||
"; \u0451 , \u0401" + // io
|
||||
"; \u04bf , \u04be" + // che-descender
|
||||
"< \u0454 , \u0404" + // uk ie
|
||||
"< \u0436 , \u0416" + // zhe
|
||||
"; \u0497 , \u0496" + // zhe-descender
|
||||
"; \u04c2 , \u04c1" + // zhe-breve
|
||||
"< \u0437 , \u0417" + // ze
|
||||
"; \u0499 , \u0498" + // zh-descender
|
||||
"< \u0455 , \u0405" + // dze
|
||||
"< \u0438 , \u0418" + // i
|
||||
"< \u0456 , \u0406" + // uk/bg i
|
||||
"; \u04c0 " + // palochka
|
||||
"< \u0457 , \u0407" + // uk yi
|
||||
"< \u0439 , \u0419" + // short i
|
||||
"< \u0458 , \u0408" + // je
|
||||
"< \u043a , \u041a" + // ka
|
||||
"; \u049f , \u049e" + // ka-stroke
|
||||
"; \u04c4 , \u04c3" + // ka-hook
|
||||
"; \u049d , \u049c" + // ka-vt-stroke
|
||||
"; \u04a1 , \u04a0" + // bashkir-ka
|
||||
"; \u045c , \u040c" + // kje
|
||||
"; \u049b , \u049a" + // ka-descender
|
||||
"< \u043b , \u041b" + // el
|
||||
"< \u0459 , \u0409" + // lje
|
||||
"< \u043c , \u041c" + // em
|
||||
"< \u043d , \u041d" + // en
|
||||
"; \u0463 " + // yat
|
||||
"; \u04a3 , \u04a2" + // en-descender
|
||||
"; \u04a5 , \u04a4" + // en-ghe
|
||||
"; \u04bb , \u04ba" + // shha
|
||||
"; \u04c8 , \u04c7" + // en-hook
|
||||
"< \u045a , \u040a" + // nje
|
||||
"< \u043e , \u041e" + // o
|
||||
"; \u04a9 , \u04a8" + // ha
|
||||
"< \u043f , \u041f" + // pe
|
||||
"; \u04a7 , \u04a6" + // pe-mid-hook
|
||||
"< \u0440 , \u0420" + // er
|
||||
"< \u0441 , \u0421" + // es
|
||||
"; \u04ab , \u04aa" + // es-descender
|
||||
"< \u0442 , \u0422" + // te
|
||||
"; \u04ad , \u04ac" + // te-descender
|
||||
"< \u045b , \u040b" + // tshe
|
||||
"< \u0443 , \u0423" + // u
|
||||
"; \u04af , \u04ae" + // straight u
|
||||
"< \u045e , \u040e" + // short u
|
||||
"< \u04b1 , \u04b0" + // straight u-stroke
|
||||
"< \u0444 , \u0424" + // ef
|
||||
"< \u0445 , \u0425" + // ha
|
||||
"; \u04b3 , \u04b2" + // ha-descender
|
||||
"< \u0446 , \u0426" + // tse
|
||||
"; \u04b5 , \u04b4" + // te tse
|
||||
"< \u0447 , \u0427" + // che
|
||||
"; \u04b7 ; \u04b6" + // che-descender
|
||||
"; \u04b9 , \u04b8" + // che-vt-stroke
|
||||
"; \u04cc , \u04cb" + // che
|
||||
"< \u045f , \u040f" + // dzhe
|
||||
"< \u0448 , \u0428" + // sha
|
||||
"< \u0449 , \u0429" + // shcha
|
||||
"< \u044a , \u042a" + // hard sign
|
||||
"< \u044b , \u042b" + // yeru
|
||||
"< \u044c , \u042c" + // soft sign
|
||||
"< \u044d , \u042d" + // e
|
||||
"< \u044e , \u042e" + // yu
|
||||
"< \u044f , \u042f" + // ya
|
||||
"< \u0461 , \u0460" + // omega
|
||||
"< \u0462 " + // yat
|
||||
"< \u0465 , \u0464" + // iotified e
|
||||
"< \u0467 , \u0466" + // little yus
|
||||
"< \u0469 , \u0468" + // iotified little yus
|
||||
"< \u046b , \u046a" + // big yus
|
||||
"< \u046d , \u046c" + // iotified big yus
|
||||
"< \u046f , \u046e" + // ksi
|
||||
"< \u0471 , \u0470" + // psi
|
||||
"< \u0473 , \u0472" + // fita
|
||||
"< \u0475 , \u0474" + // izhitsa
|
||||
"; \u0477 , \u0476" + // izhitsa-double-grave
|
||||
"< \u0479 , \u0478" + // uk
|
||||
"< \u047b , \u047a" + // round omega
|
||||
"< \u047d , \u047c" + // omega-titlo
|
||||
"< \u047f , \u047e" + // ot
|
||||
"< \u0481 , \u0480" // koppa
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
225
jdkSrc/jdk8/sun/text/resources/be/FormatData_be.java
Normal file
225
jdkSrc/jdk8/sun/text/resources/be/FormatData_be.java
Normal file
@@ -0,0 +1,225 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.be;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_be extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044f", // january
|
||||
"\u043b\u044e\u0442\u0430\u0433\u0430", // february
|
||||
"\u0441\u0430\u043a\u0430\u0432\u0456\u043a\u0430", // march
|
||||
"\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a\u0430", // april
|
||||
"\u043c\u0430\u044f", // may
|
||||
"\u0447\u0440\u0432\u0435\u043d\u044f", // june
|
||||
"\u043b\u0456\u043f\u0435\u043d\u044f", // july
|
||||
"\u0436\u043d\u0456\u045e\u043d\u044f", // august
|
||||
"\u0432\u0435\u0440\u0430\u0441\u043d\u044f", // september
|
||||
"\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a\u0430", // october
|
||||
"\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434\u0430", // november
|
||||
"\u0441\u043d\u0435\u0436\u043d\u044f", // december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0441\u0442\u0434", // abb january
|
||||
"\u043b\u044e\u0442", // abb february
|
||||
"\u0441\u043a\u0432", // abb march
|
||||
"\u043a\u0440\u0441", // abb april
|
||||
"\u043c\u0430\u0439", // abb may
|
||||
"\u0447\u0440\u0432", // abb june
|
||||
"\u043b\u043f\u043d", // abb july
|
||||
"\u0436\u043d\u0432", // abb august
|
||||
"\u0432\u0440\u0441", // abb september
|
||||
"\u043a\u0441\u0442", // abb october
|
||||
"\u043b\u0456\u0441", // abb november
|
||||
"\u0441\u043d\u0436", // abb december
|
||||
"" // abb month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNarrows",
|
||||
new String[] {
|
||||
"\u0441",
|
||||
"\u043b",
|
||||
"\u0441",
|
||||
"\u043a",
|
||||
"\u043c",
|
||||
"\u0447",
|
||||
"\u043b",
|
||||
"\u0436",
|
||||
"\u0432",
|
||||
"\u043a",
|
||||
"\u043b",
|
||||
"\u0441",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u043d\u044f\u0434\u0437\u0435\u043b\u044f", // Sunday
|
||||
"\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a", // Monday
|
||||
"\u0430\u045e\u0442\u043e\u0440\u0430\u043a", // Tuesday
|
||||
"\u0441\u0435\u0440\u0430\u0434\u0430", // Wednesday
|
||||
"\u0447\u0430\u0446\u0432\u0435\u0440", // Thursday
|
||||
"\u043f\u044f\u0442\u043d\u0456\u0446\u0430", // Friday
|
||||
"\u0441\u0443\u0431\u043e\u0442\u0430" // Saturday
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u043d\u0434", // abb Sunday
|
||||
"\u043f\u043d", // abb Monday
|
||||
"\u0430\u0442", // abb Tuesday
|
||||
"\u0441\u0440", // abb Wednesday
|
||||
"\u0447\u0446", // abb Thursday
|
||||
"\u043f\u0442", // abb Friday
|
||||
"\u0441\u0431" // abb Saturday
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u043d",
|
||||
"\u043f",
|
||||
"\u0430",
|
||||
"\u0441",
|
||||
"\u0447",
|
||||
"\u043f",
|
||||
"\u0441",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] { // era strings
|
||||
"\u0434\u0430 \u043d.\u0435.",
|
||||
"\u043d.\u0435."
|
||||
}
|
||||
},
|
||||
{ "short.Eras",
|
||||
new String[] {
|
||||
"\u0434\u0430 \u043d.\u044d.",
|
||||
"\u043d.\u044d.",
|
||||
}
|
||||
},
|
||||
{ "NumberElements",
|
||||
new String[] {
|
||||
",", // decimal separator
|
||||
"\u00a0", // group (thousands) separator
|
||||
";", // list separator
|
||||
"%", // percent sign
|
||||
"0", // native 0 digit
|
||||
"#", // pattern digit
|
||||
"-", // minus sign
|
||||
"E", // exponential
|
||||
"\u2030", // per mille
|
||||
"\u221e", // infinity
|
||||
"\ufffd" // NaN
|
||||
}
|
||||
},
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"H.mm.ss z", // full time pattern
|
||||
"H.mm.ss z", // long time pattern
|
||||
"H.mm.ss", // medium time pattern
|
||||
"H.mm", // short time pattern
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d, MMMM yyyy", // full date pattern
|
||||
"EEEE, d, MMMM yyyy", // long date pattern
|
||||
"d.M.yyyy", // medium date pattern
|
||||
"d.M.yy", // short date pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatterns",
|
||||
new String[] {
|
||||
"{1} {0}" // date-time pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
|
||||
};
|
||||
}
|
||||
}
|
||||
63
jdkSrc/jdk8/sun/text/resources/be/FormatData_be_BY.java
Normal file
63
jdkSrc/jdk8/sun/text/resources/be/FormatData_be_BY.java
Normal file
@@ -0,0 +1,63 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.be;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_be_BY extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###;-#,##0.###", // decimal pattern
|
||||
"\u00A4#,##0.##;-\u00A4#,##0.##", // currency pattern
|
||||
"#,##0%" // percent pattern
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
138
jdkSrc/jdk8/sun/text/resources/be/JavaTimeSupplementary_be.java
Normal file
138
jdkSrc/jdk8/sun/text/resources/be/JavaTimeSupplementary_be.java
Normal file
@@ -0,0 +1,138 @@
|
||||
/*
|
||||
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
// Note: this file has been generated by a tool.
|
||||
|
||||
package sun.text.resources.be;
|
||||
|
||||
import sun.util.resources.OpenListResourceBundle;
|
||||
|
||||
public class JavaTimeSupplementary_be extends OpenListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"1-\u0448\u044b \u043a\u0432.",
|
||||
"2-\u0433\u0456 \u043a\u0432.",
|
||||
"3-\u0446\u0456 \u043a\u0432.",
|
||||
"4-\u0442\u044b \u043a\u0432.",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1-\u0448\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
|
||||
"2-\u0433\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
|
||||
"3-\u0446\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
|
||||
"4-\u0442\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
|
||||
}
|
||||
},
|
||||
{ "calendarname.buddhist",
|
||||
"\u0431\u0443\u0434\u044b\u0441\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.gregorian",
|
||||
"\u0433\u0440\u044d\u0433\u0430\u0440\u044b\u044f\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.gregory",
|
||||
"\u0433\u0440\u044d\u0433\u0430\u0440\u044b\u044f\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamic",
|
||||
"\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamic-civil",
|
||||
"\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u043a\u0456 \u0441\u0432\u0435\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamicc",
|
||||
"\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u043a\u0456 \u0441\u0432\u0435\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.japanese",
|
||||
"\u044f\u043f\u043e\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "field.dayperiod",
|
||||
"\u0414\u041f/\u041f\u041f" },
|
||||
{ "field.era",
|
||||
"\u044d\u0440\u0430" },
|
||||
{ "field.hour",
|
||||
"\u0433\u0430\u0434\u0437\u0456\u043d\u0430" },
|
||||
{ "field.minute",
|
||||
"\u0445\u0432\u0456\u043b\u0456\u043d\u0430" },
|
||||
{ "field.month",
|
||||
"\u043c\u0435\u0441\u044f\u0446" },
|
||||
{ "field.second",
|
||||
"\u0441\u0435\u043a\u0443\u043d\u0434\u0430" },
|
||||
{ "field.week",
|
||||
"\u0442\u044b\u0434\u0437\u0435\u043d\u044c" },
|
||||
{ "field.weekday",
|
||||
"\u0434\u0437\u0435\u043d\u044c \u0442\u044b\u0434\u043d\u044f" },
|
||||
{ "field.year",
|
||||
"\u0433\u043e\u0434" },
|
||||
{ "field.zone",
|
||||
"Zone" },
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"d.M.yy",
|
||||
}
|
||||
},
|
||||
{ "java.time.short.Eras",
|
||||
new String[] {
|
||||
"\u0434\u0430 \u043d.\u0435.",
|
||||
"\u043d.\u0435.",
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
152
jdkSrc/jdk8/sun/text/resources/bg/CollationData_bg.java
Normal file
152
jdkSrc/jdk8/sun/text/resources/bg/CollationData_bg.java
Normal file
@@ -0,0 +1,152 @@
|
||||
/*
|
||||
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.bg;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class CollationData_bg extends ListResourceBundle {
|
||||
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "Rule",
|
||||
/* for bg, default plus the following */
|
||||
"& 9 < \u0482 " + // thousand sign
|
||||
"& Z " + // Arabic script sorts after Z's
|
||||
"< \u0430 , \u0410" + // a
|
||||
"< \u0431 , \u0411" + // be
|
||||
"< \u0432 , \u0412" + // ve
|
||||
"< \u0433 , \u0413" + // ghe
|
||||
"; \u0491 , \u0490" + // ghe-upturn
|
||||
"; \u0495 , \u0494" + // ghe-mid-hook
|
||||
"; \u0453 , \u0403" + // gje
|
||||
"; \u0493 , \u0492" + // ghe-stroke
|
||||
"< \u0434 , \u0414" + // de
|
||||
"< \u0452 , \u0402" + // dje
|
||||
"< \u0435 , \u0415" + // ie
|
||||
"; \u04bd , \u04bc" + // che
|
||||
"; \u0451 , \u0401" + // io
|
||||
"; \u04bf , \u04be" + // che-descender
|
||||
"< \u0454 , \u0404" + // uk ie
|
||||
"< \u0436 , \u0416" + // zhe
|
||||
"; \u0497 , \u0496" + // zhe-descender
|
||||
"; \u04c2 , \u04c1" + // zhe-breve
|
||||
"< \u0437 , \u0417" + // ze
|
||||
"; \u0499 , \u0498" + // zh-descender
|
||||
"< \u0455 , \u0405" + // dze
|
||||
"< \u0438 , \u0418" + // i
|
||||
"< \u0456 , \u0406" + // uk/bg i
|
||||
"; \u04c0 " + // palochka
|
||||
"< \u0457 , \u0407" + // uk yi
|
||||
"< \u0439 , \u0419" + // short i
|
||||
"< \u0458 , \u0408" + // je
|
||||
"< \u043a , \u041a" + // ka
|
||||
"; \u049f , \u049e" + // ka-stroke
|
||||
"; \u04c4 , \u04c3" + // ka-hook
|
||||
"; \u049d , \u049c" + // ka-vt-stroke
|
||||
"; \u04a1 , \u04a0" + // bashkir-ka
|
||||
"; \u045c , \u040c" + // kje
|
||||
"; \u049b , \u049a" + // ka-descender
|
||||
"< \u043b , \u041b" + // el
|
||||
"< \u0459 , \u0409" + // lje
|
||||
"< \u043c , \u041c" + // em
|
||||
"< \u043d , \u041d" + // en
|
||||
"; \u0463 " + // yat
|
||||
"; \u04a3 , \u04a2" + // en-descender
|
||||
"; \u04a5 , \u04a4" + // en-ghe
|
||||
"; \u04bb , \u04ba" + // shha
|
||||
"; \u04c8 , \u04c7" + // en-hook
|
||||
"< \u045a , \u040a" + // nje
|
||||
"< \u043e , \u041e" + // o
|
||||
"; \u04a9 , \u04a8" + // ha
|
||||
"< \u043f , \u041f" + // pe
|
||||
"; \u04a7 , \u04a6" + // pe-mid-hook
|
||||
"< \u0440 , \u0420" + // er
|
||||
"< \u0441 , \u0421" + // es
|
||||
"; \u04ab , \u04aa" + // es-descender
|
||||
"< \u0442 , \u0422" + // te
|
||||
"; \u04ad , \u04ac" + // te-descender
|
||||
"< \u045b , \u040b" + // tshe
|
||||
"< \u0443 , \u0423" + // u
|
||||
"; \u04af , \u04ae" + // straight u
|
||||
"< \u045e , \u040e" + // short u
|
||||
"< \u04b1 , \u04b0" + // straight u-stroke
|
||||
"< \u0444 , \u0424" + // ef
|
||||
"< \u0445 , \u0425" + // ha
|
||||
"; \u04b3 , \u04b2" + // ha-descender
|
||||
"< \u0446 , \u0426" + // tse
|
||||
"; \u04b5 , \u04b4" + // te tse
|
||||
"< \u0447 , \u0427" + // che
|
||||
"; \u04b7 ; \u04b6" + // che-descender
|
||||
"; \u04b9 , \u04b8" + // che-vt-stroke
|
||||
"; \u04cc , \u04cb" + // che
|
||||
"< \u045f , \u040f" + // dzhe
|
||||
"< \u0448 , \u0428" + // sha
|
||||
"< \u0449 , \u0429" + // shcha
|
||||
"< \u044a , \u042a" + // hard sign
|
||||
"< \u044b , \u042b" + // yeru
|
||||
"< \u044c , \u042c" + // soft sign
|
||||
"< \u044d , \u042d" + // e
|
||||
"< \u044e , \u042e" + // yu
|
||||
"< \u044f , \u042f" + // ya
|
||||
"< \u0461 , \u0460" + // omega
|
||||
"< \u0462 " + // yat
|
||||
"< \u0465 , \u0464" + // iotified e
|
||||
"< \u0467 , \u0466" + // little yus
|
||||
"< \u0469 , \u0468" + // iotified little yus
|
||||
"< \u046b , \u046a" + // big yus
|
||||
"< \u046d , \u046c" + // iotified big yus
|
||||
"< \u046f , \u046e" + // ksi
|
||||
"< \u0471 , \u0470" + // psi
|
||||
"< \u0473 , \u0472" + // fita
|
||||
"< \u0475 , \u0474" + // izhitsa
|
||||
"; \u0477 , \u0476" + // izhitsa-double-grave
|
||||
"< \u0479 , \u0478" + // uk
|
||||
"< \u047b , \u047a" + // round omega
|
||||
"< \u047d , \u047c" + // omega-titlo
|
||||
"< \u047f , \u047e" + // ot
|
||||
"< \u0481 , \u0480" // koppa
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
225
jdkSrc/jdk8/sun/text/resources/bg/FormatData_bg.java
Normal file
225
jdkSrc/jdk8/sun/text/resources/bg/FormatData_bg.java
Normal file
@@ -0,0 +1,225 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.bg;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_bg extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u042f\u043d\u0443\u0430\u0440\u0438", // january
|
||||
"\u0424\u0435\u0432\u0440\u0443\u0430\u0440\u0438", // february
|
||||
"\u041c\u0430\u0440\u0442", // march
|
||||
"\u0410\u043f\u0440\u0438\u043b", // april
|
||||
"\u041c\u0430\u0439", // may
|
||||
"\u042e\u043d\u0438", // june
|
||||
"\u042e\u043b\u0438", // july
|
||||
"\u0410\u0432\u0433\u0443\u0441\u0442", // august
|
||||
"\u0421\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", // september
|
||||
"\u041e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", // october
|
||||
"\u041d\u043e\u0435\u043c\u0432\u0440\u0438", // november
|
||||
"\u0414\u0435\u043a\u0435\u043c\u0432\u0440\u0438", // december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"I", // abb january
|
||||
"II", // abb february
|
||||
"III", // abb march
|
||||
"IV", // abb april
|
||||
"V", // abb may
|
||||
"VI", // abb june
|
||||
"VII", // abb july
|
||||
"VIII", // abb august
|
||||
"IX", // abb september
|
||||
"X", // abb october
|
||||
"XI", // abb november
|
||||
"XII", // abb december
|
||||
"" // abb month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u044f",
|
||||
"\u0444",
|
||||
"\u043c",
|
||||
"\u0430",
|
||||
"\u043c",
|
||||
"\u044e",
|
||||
"\u044e",
|
||||
"\u0430",
|
||||
"\u0441",
|
||||
"\u043e",
|
||||
"\u043d",
|
||||
"\u0434",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u041d\u0435\u0434\u0435\u043b\u044f", // Sunday
|
||||
"\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", // Monday
|
||||
"\u0412\u0442\u043e\u0440\u043d\u0438\u043a", // Tuesday
|
||||
"\u0421\u0440\u044f\u0434\u0430", // Wednesday
|
||||
"\u0427\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a", // Thursday
|
||||
"\u041f\u0435\u0442\u044a\u043a", // Friday
|
||||
"\u0421\u044a\u0431\u043e\u0442\u0430" // Saturday
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u041d\u0434", // abb Sunday
|
||||
"\u041f\u043d", // abb Monday
|
||||
"\u0412\u0442", // abb Tuesday
|
||||
"\u0421\u0440", // abb Wednesday
|
||||
"\u0427\u0442", // abb Thursday
|
||||
"\u041f\u0442", // abb Friday
|
||||
"\u0421\u0431" // abb Saturday
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u043d",
|
||||
"\u043f",
|
||||
"\u0432",
|
||||
"\u0441",
|
||||
"\u0447",
|
||||
"\u043f",
|
||||
"\u0441",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] { // era strings
|
||||
"\u043f\u0440.\u043d.\u0435.",
|
||||
"\u043d.\u0435."
|
||||
}
|
||||
},
|
||||
{ "short.Eras",
|
||||
new String[] {
|
||||
"\u043f\u0440. \u043d. \u0435.",
|
||||
"\u043e\u0442 \u043d. \u0435.",
|
||||
}
|
||||
},
|
||||
{ "NumberElements",
|
||||
new String[] {
|
||||
",", // decimal separator
|
||||
"\u00a0", // group (thousands) separator
|
||||
";", // list separator
|
||||
"%", // percent sign
|
||||
"0", // native 0 digit
|
||||
"#", // pattern digit
|
||||
"-", // minus sign
|
||||
"E", // exponential
|
||||
"\u2030", // per mille
|
||||
"\u221e", // infinity
|
||||
"\ufffd" // NaN
|
||||
}
|
||||
},
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz", // full time pattern
|
||||
"HH:mm:ss z", // long time pattern
|
||||
"HH:mm:ss", // medium time pattern
|
||||
"HH:mm", // short time pattern
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"dd MMMM y, EEEE", // full date pattern
|
||||
"dd MMMM y", // long date pattern
|
||||
"dd.MM.yyyy", // medium date pattern
|
||||
"dd.MM.yy", // short date pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatterns",
|
||||
new String[] {
|
||||
"{1} {0}" // date-time pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatternChars", "GanjkHmsSEDFwWxhKzZ" },
|
||||
};
|
||||
}
|
||||
}
|
||||
63
jdkSrc/jdk8/sun/text/resources/bg/FormatData_bg_BG.java
Normal file
63
jdkSrc/jdk8/sun/text/resources/bg/FormatData_bg_BG.java
Normal file
@@ -0,0 +1,63 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.bg;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_bg_BG extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###;-#,##0.###", // decimal pattern
|
||||
"\u00A4#,##0.##;-\u00A4#,##0.##", // currency pattern
|
||||
"#,##0%" // percent pattern
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
163
jdkSrc/jdk8/sun/text/resources/bg/JavaTimeSupplementary_bg.java
Normal file
163
jdkSrc/jdk8/sun/text/resources/bg/JavaTimeSupplementary_bg.java
Normal file
@@ -0,0 +1,163 @@
|
||||
/*
|
||||
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
// Note: this file has been generated by a tool.
|
||||
|
||||
package sun.text.resources.bg;
|
||||
|
||||
import sun.util.resources.OpenListResourceBundle;
|
||||
|
||||
public class JavaTimeSupplementary_bg extends OpenListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"I \u0442\u0440\u0438\u043c.",
|
||||
"II \u0442\u0440\u0438\u043c.",
|
||||
"III \u0442\u0440\u0438\u043c.",
|
||||
"IV \u0442\u0440\u0438\u043c.",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1-\u0432\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
|
||||
"2-\u0440\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
|
||||
"3-\u0442\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
|
||||
"4-\u0442\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "calendarname.buddhist",
|
||||
"\u0411\u0443\u0434\u0438\u0441\u0442\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.gregorian",
|
||||
"\u0413\u0440\u0438\u0433\u043e\u0440\u0438\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.gregory",
|
||||
"\u0413\u0440\u0438\u0433\u043e\u0440\u0438\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamic",
|
||||
"\u0418\u0441\u043b\u044f\u043c\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamic-civil",
|
||||
"\u0418\u0441\u043b\u044f\u043c\u0441\u043a\u0438 \u0446\u0438\u0432\u0438\u043b\u0435\u043d \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamicc",
|
||||
"\u0418\u0441\u043b\u044f\u043c\u0441\u043a\u0438 \u0446\u0438\u0432\u0438\u043b\u0435\u043d \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.japanese",
|
||||
"\u042f\u043f\u043e\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.roc",
|
||||
"\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440 \u043d\u0430 \u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0438\u0442\u0430\u0439" },
|
||||
{ "field.dayperiod",
|
||||
"\u0434\u0435\u043d" },
|
||||
{ "field.era",
|
||||
"\u0435\u0440\u0430" },
|
||||
{ "field.hour",
|
||||
"\u0447\u0430\u0441" },
|
||||
{ "field.minute",
|
||||
"\u043c\u0438\u043d\u0443\u0442\u0430" },
|
||||
{ "field.month",
|
||||
"\u043c\u0435\u0441\u0435\u0446" },
|
||||
{ "field.second",
|
||||
"\u0441\u0435\u043a\u0443\u043d\u0434\u0430" },
|
||||
{ "field.week",
|
||||
"\u0441\u0435\u0434\u043c\u0438\u0446\u0430" },
|
||||
{ "field.weekday",
|
||||
"\u0414\u0435\u043d \u043e\u0442 \u0441\u0435\u0434\u043c\u0438\u0446\u0430\u0442\u0430" },
|
||||
{ "field.year",
|
||||
"\u0433\u043e\u0434\u0438\u043d\u0430" },
|
||||
{ "field.zone",
|
||||
"\u0437\u043e\u043d\u0430" },
|
||||
{ "islamic.MonthNames",
|
||||
new String[] {
|
||||
"\u043c\u0443\u0445\u0430\u0440\u0430\u043c",
|
||||
"\u0441\u0430\u0444\u0430\u0440",
|
||||
"\u0440\u0430\u0431\u0438-1",
|
||||
"\u0440\u0430\u0431\u0438-2",
|
||||
"\u0434\u0436\u0443\u043c\u0430\u0434\u0430-1",
|
||||
"\u0434\u0436\u0443\u043c\u0430\u0434\u0430-2",
|
||||
"\u0440\u0430\u0434\u0436\u0430\u0431",
|
||||
"\u0448\u0430\u0431\u0430\u043d",
|
||||
"\u0440\u0430\u043c\u0430\u0437\u0430\u043d",
|
||||
"\u0428\u0430\u0432\u0430\u043b",
|
||||
"\u0414\u0445\u0443\u043b-\u041a\u0430\u0430\u0434\u0430",
|
||||
"\u0414\u0445\u0443\u043b-\u0445\u0438\u0434\u0436\u0430",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "java.time.long.Eras",
|
||||
new String[] {
|
||||
"\u043f\u0440.\u0425\u0440.",
|
||||
"\u0441\u043b.\u0425\u0440.",
|
||||
}
|
||||
},
|
||||
{ "java.time.short.Eras",
|
||||
new String[] {
|
||||
"\u043f\u0440.\u043d.\u0435.",
|
||||
"\u043d.\u0435.",
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
55
jdkSrc/jdk8/sun/text/resources/ca/CollationData_ca.java
Normal file
55
jdkSrc/jdk8/sun/text/resources/ca/CollationData_ca.java
Normal file
@@ -0,0 +1,55 @@
|
||||
/*
|
||||
* Copyright (c) 2005, 2012, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.ca;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class CollationData_ca extends ListResourceBundle {
|
||||
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "Rule", "@" }
|
||||
};
|
||||
}
|
||||
}
|
||||
303
jdkSrc/jdk8/sun/text/resources/ca/FormatData_ca.java
Normal file
303
jdkSrc/jdk8/sun/text/resources/ca/FormatData_ca.java
Normal file
@@ -0,0 +1,303 @@
|
||||
/*
|
||||
* Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.ca;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_ca extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"de gener",
|
||||
"de febrer",
|
||||
"de mar\u00e7",
|
||||
"d\u2019abril",
|
||||
"de maig",
|
||||
"de juny",
|
||||
"de juliol",
|
||||
"d\u2019agost",
|
||||
"de setembre",
|
||||
"d\u2019octubre",
|
||||
"de novembre",
|
||||
"de desembre",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"G",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"J",
|
||||
"G",
|
||||
"A",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"gener", // january
|
||||
"febrer", // february
|
||||
"mar\u00e7", // march
|
||||
"abril", // april
|
||||
"maig", // may
|
||||
"juny", // june
|
||||
"juliol", // july
|
||||
"agost", // august
|
||||
"setembre", // september
|
||||
"octubre", // october
|
||||
"novembre", // november
|
||||
"desembre", // december
|
||||
"" // month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"de gen.",
|
||||
"de febr.",
|
||||
"de mar\u00e7",
|
||||
"d\u2019abr.",
|
||||
"de maig",
|
||||
"de juny",
|
||||
"de jul.",
|
||||
"d\u2019ag.",
|
||||
"de set.",
|
||||
"d\u2019oct.",
|
||||
"de nov.",
|
||||
"de des.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"gen.", // abb january
|
||||
"feb.", // abb february
|
||||
"mar\u00e7", // abb march
|
||||
"abr.", // abb april
|
||||
"maig", // abb may
|
||||
"juny", // abb june
|
||||
"jul.", // abb july
|
||||
"ag.", // abb august
|
||||
"set.", // abb september
|
||||
"oct.", // abb october
|
||||
"nov.", // abb november
|
||||
"des.", // abb december
|
||||
"" // abb month 13 if applicable
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNarrows",
|
||||
new String[] {
|
||||
"g",
|
||||
"f",
|
||||
"m",
|
||||
"a",
|
||||
"m",
|
||||
"j",
|
||||
"j",
|
||||
"a",
|
||||
"s",
|
||||
"o",
|
||||
"n",
|
||||
"d",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"diumenge", // Sunday
|
||||
"dilluns", // Monday
|
||||
"dimarts", // Tuesday
|
||||
"dimecres", // Wednesday
|
||||
"dijous", // Thursday
|
||||
"divendres", // Friday
|
||||
"dissabte" // Saturday
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNames",
|
||||
new String[] {
|
||||
"Diumenge",
|
||||
"Dilluns",
|
||||
"Dimarts",
|
||||
"Dimecres",
|
||||
"Dijous",
|
||||
"Divendres",
|
||||
"Dissabte",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"dg.", // abb Sunday
|
||||
"dl.", // abb Monday
|
||||
"dt.", // abb Tuesday
|
||||
"dc.", // abb Wednesday
|
||||
"dj.", // abb Thursday
|
||||
"dv.", // abb Friday
|
||||
"ds." // abb Saturday
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"dg",
|
||||
"dl",
|
||||
"dt",
|
||||
"dc",
|
||||
"dj",
|
||||
"dv",
|
||||
"ds",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"G",
|
||||
"L", // Note: contributed item in CDLR
|
||||
"T",
|
||||
"C",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNarrows",
|
||||
new String[] {
|
||||
"g",
|
||||
"l",
|
||||
"t",
|
||||
"c",
|
||||
"j",
|
||||
"v",
|
||||
"s",
|
||||
}
|
||||
},
|
||||
{ "short.Eras",
|
||||
new String[] {
|
||||
"aC",
|
||||
"dC",
|
||||
}
|
||||
},
|
||||
{ "NumberElements",
|
||||
new String[] {
|
||||
",", // decimal separator
|
||||
".", // group (thousands) separator
|
||||
";", // list separator
|
||||
"%", // percent sign
|
||||
"0", // native 0 digit
|
||||
"#", // pattern digit
|
||||
"-", // minus sign
|
||||
"E", // exponential
|
||||
"\u2030", // per mille
|
||||
"\u221e", // infinity
|
||||
"\ufffd" // NaN
|
||||
}
|
||||
},
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss z", // full time pattern
|
||||
"HH:mm:ss z", // long time pattern
|
||||
"HH:mm:ss", // medium time pattern
|
||||
"HH:mm", // short time pattern
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d' / 'MMMM' / 'yyyy", // full date pattern
|
||||
"d' / 'MMMM' / 'yyyy", // long date pattern
|
||||
"dd/MM/yyyy", // medium date pattern
|
||||
"dd/MM/yy", // short date pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatterns",
|
||||
new String[] {
|
||||
"{1} {0}" // date-time pattern
|
||||
}
|
||||
},
|
||||
{ "DateTimePatternChars", "GuMtkHmsSEDFwWahKzZ" },
|
||||
};
|
||||
}
|
||||
}
|
||||
63
jdkSrc/jdk8/sun/text/resources/ca/FormatData_ca_ES.java
Normal file
63
jdkSrc/jdk8/sun/text/resources/ca/FormatData_ca_ES.java
Normal file
@@ -0,0 +1,63 @@
|
||||
/*
|
||||
* Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
*/
|
||||
|
||||
/*
|
||||
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
|
||||
* (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
|
||||
*
|
||||
* The original version of this source code and documentation
|
||||
* is copyrighted and owned by Taligent, Inc., a wholly-owned
|
||||
* subsidiary of IBM. These materials are provided under terms
|
||||
* of a License Agreement between Taligent and Sun. This technology
|
||||
* is protected by multiple US and International patents.
|
||||
*
|
||||
* This notice and attribution to Taligent may not be removed.
|
||||
* Taligent is a registered trademark of Taligent, Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
package sun.text.resources.ca;
|
||||
|
||||
import sun.util.resources.ParallelListResourceBundle;
|
||||
|
||||
public class FormatData_ca_ES extends ParallelListResourceBundle {
|
||||
/**
|
||||
* Overrides ParallelListResourceBundle
|
||||
*/
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###;-#,##0.###", // decimal pattern
|
||||
"\u00A4 #,##0;-\u00A4 #,##0", // currency pattern
|
||||
"#,##0%" // percent pattern
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
140
jdkSrc/jdk8/sun/text/resources/ca/JavaTimeSupplementary_ca.java
Normal file
140
jdkSrc/jdk8/sun/text/resources/ca/JavaTimeSupplementary_ca.java
Normal file
@@ -0,0 +1,140 @@
|
||||
/*
|
||||
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
// Note: this file has been generated by a tool.
|
||||
|
||||
package sun.text.resources.ca;
|
||||
|
||||
import sun.util.resources.OpenListResourceBundle;
|
||||
|
||||
public class JavaTimeSupplementary_ca extends OpenListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
return new Object[][] {
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"1T",
|
||||
"2T",
|
||||
"3T",
|
||||
"4T",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1r trimestre",
|
||||
"2n trimestre",
|
||||
"3r trimestre",
|
||||
"4t trimestre",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "calendarname.buddhist",
|
||||
"calendari budista" },
|
||||
{ "calendarname.gregorian",
|
||||
"calendari gregori\u00e0" },
|
||||
{ "calendarname.gregory",
|
||||
"calendari gregori\u00e0" },
|
||||
{ "calendarname.islamic",
|
||||
"calendari musulm\u00e0" },
|
||||
{ "calendarname.islamic-civil",
|
||||
"calendari civil isl\u00e0mic" },
|
||||
{ "calendarname.islamicc",
|
||||
"calendari civil isl\u00e0mic" },
|
||||
{ "calendarname.japanese",
|
||||
"calendari japon\u00e8s" },
|
||||
{ "calendarname.roc",
|
||||
"calendari de la Rep\u00fablica de Xina" },
|
||||
{ "field.dayperiod",
|
||||
"a.m./p.m." },
|
||||
{ "field.era",
|
||||
"era" },
|
||||
{ "field.hour",
|
||||
"hora" },
|
||||
{ "field.minute",
|
||||
"minut" },
|
||||
{ "field.month",
|
||||
"mes" },
|
||||
{ "field.second",
|
||||
"segon" },
|
||||
{ "field.week",
|
||||
"setmana" },
|
||||
{ "field.weekday",
|
||||
"dia de la setmana" },
|
||||
{ "field.year",
|
||||
"any" },
|
||||
{ "field.zone",
|
||||
"zona" },
|
||||
{ "java.time.short.Eras",
|
||||
new String[] {
|
||||
"aC",
|
||||
"dC",
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
}
|
||||
930
jdkSrc/jdk8/sun/text/resources/cldr/FormatData.java
Normal file
930
jdkSrc/jdk8/sun/text/resources/cldr/FormatData.java
Normal file
@@ -0,0 +1,930 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Jan",
|
||||
"Feb",
|
||||
"Mar",
|
||||
"Apr",
|
||||
"May",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Aug",
|
||||
"Sep",
|
||||
"Oct",
|
||||
"Nov",
|
||||
"Dec",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Sun",
|
||||
"Mon",
|
||||
"Tue",
|
||||
"Wed",
|
||||
"Thu",
|
||||
"Fri",
|
||||
"Sat",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"AM",
|
||||
"PM",
|
||||
}
|
||||
},
|
||||
{ "narrow.AmPmMarkers",
|
||||
new String[] {
|
||||
"a",
|
||||
"p",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"BCE",
|
||||
"CE",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Era" },
|
||||
{ "field.year", "Year" },
|
||||
{ "field.month", "Month" },
|
||||
{ "field.week", "Week" },
|
||||
{ "field.weekday", "Day of the Week" },
|
||||
{ "field.dayperiod", "Dayperiod" },
|
||||
{ "field.hour", "Hour" },
|
||||
{ "field.minute", "Minute" },
|
||||
{ "field.second", "Second" },
|
||||
{ "field.zone", "Zone" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, y MMMM dd",
|
||||
"y MMMM d",
|
||||
"y MMM d",
|
||||
"yyyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "DateTimePatterns",
|
||||
new String[] {
|
||||
"{1} {0}",
|
||||
}
|
||||
},
|
||||
{ "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
|
||||
{ "buddhist.Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"BE",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, G y MMMM dd",
|
||||
"G y MMMM d",
|
||||
"G y MMM d",
|
||||
"GGGGG yyyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, GGGG y MMMM dd",
|
||||
"GGGG y MMMM d",
|
||||
"GGGG y MMM d",
|
||||
"G yyyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "japanese.Eras",
|
||||
new String[] {
|
||||
"CE",
|
||||
"Meiji",
|
||||
"Taish\u014d",
|
||||
"Sh\u014dwa",
|
||||
"Heisei",
|
||||
"Reiwa",
|
||||
}
|
||||
},
|
||||
{ "japanese.narrow.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"M",
|
||||
"T",
|
||||
"S",
|
||||
"H",
|
||||
"R",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, G y MMMM dd",
|
||||
"G y MMMM d",
|
||||
"G y MMM d",
|
||||
"GGGGG yy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, GGGG y MMMM dd",
|
||||
"GGGG y MMMM d",
|
||||
"GGGG y MMM d",
|
||||
"G yy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "japanese.DateTimePatterns",
|
||||
new String[] {
|
||||
"{1} {0}",
|
||||
}
|
||||
},
|
||||
{ "roc.Eras",
|
||||
new String[] {
|
||||
"Before R.O.C.",
|
||||
"R.O.C.",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, G y MMMM dd",
|
||||
"G y MMMM d",
|
||||
"G y MMM d",
|
||||
"GGGGG yyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, GGGG y MMMM dd",
|
||||
"GGGG y MMMM d",
|
||||
"GGGG y MMM d",
|
||||
"G yyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNames",
|
||||
new String[] {
|
||||
"Muharram",
|
||||
"Safar",
|
||||
"Rabi\u02bb I",
|
||||
"Rabi\u02bb II",
|
||||
"Jumada I",
|
||||
"Jumada II",
|
||||
"Rajab",
|
||||
"Sha\u02bbban",
|
||||
"Ramadan",
|
||||
"Shawwal",
|
||||
"Dhu\u02bbl-Qi\u02bbdah",
|
||||
"Dhu\u02bbl-Hijjah",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthAbbreviations",
|
||||
new String[] {
|
||||
"Muh.",
|
||||
"Saf.",
|
||||
"Rab. I",
|
||||
"Rab. II",
|
||||
"Jum. I",
|
||||
"Jum. II",
|
||||
"Raj.",
|
||||
"Sha.",
|
||||
"Ram.",
|
||||
"Shaw.",
|
||||
"Dhu\u02bbl-Q.",
|
||||
"Dhu\u02bbl-H.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"AH",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y G",
|
||||
"MMMM d, y G",
|
||||
"MMM d, y G",
|
||||
"M/d/yy G",
|
||||
}
|
||||
},
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y GGGG",
|
||||
"MMMM d, y GGGG",
|
||||
"MMM d, y GGGG",
|
||||
"M/d/yy GGGG",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "Islamic-Civil Calendar" },
|
||||
{ "calendarname.islamicc", "Islamic-Civil Calendar" },
|
||||
{ "calendarname.buddhist", "Buddhist Calendar" },
|
||||
{ "calendarname.islamic", "Islamic Calendar" },
|
||||
{ "calendarname.gregorian", "Gregorian Calendar" },
|
||||
{ "calendarname.gregory", "Gregorian Calendar" },
|
||||
{ "calendarname.roc", "Minguo Calendar" },
|
||||
{ "calendarname.japanese", "Japanese Calendar" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "arab.NumberElements",
|
||||
new String[] {
|
||||
"\u066b",
|
||||
"\u066c",
|
||||
"\u061b",
|
||||
"\u066a",
|
||||
"\u0660",
|
||||
"#",
|
||||
"-",
|
||||
"\u0627\u0633",
|
||||
"\u0609",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "arabext.NumberElements",
|
||||
new String[] {
|
||||
"\u066b",
|
||||
"\u066c",
|
||||
"\u061b",
|
||||
"\u066a",
|
||||
"\u06f0",
|
||||
"#",
|
||||
"-",
|
||||
"\u00d7\u06f1\u06f0^",
|
||||
"\u0609",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "bali.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1b50",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "beng.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u09e6",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "cham.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\uaa50",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "deva.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0966",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "fullwide.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\uff10",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "gujr.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0ae6",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "guru.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0a66",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "java.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\ua9d0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "kali.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\ua900",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "khmr.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u17e0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "knda.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0ce6",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "laoo.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0ed0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "lana.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1a80",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "lanatham.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1a90",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "lepc.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1c40",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "limb.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1946",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mlym.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0d66",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mong.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1810",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mtei.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\uabf0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mymr.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1040",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "mymrshan.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1090",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "nkoo.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u07c0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "olck.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1c50",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "orya.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0b66",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "saur.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\ua8d0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "sund.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u1bb0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "talu.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u19d0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "tamldec.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0be6",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "telu.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0c66",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "thai.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0e50",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "tibt.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0f20",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "vaii.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\ua620",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4\u00a0#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
81
jdkSrc/jdk8/sun/text/resources/cldr/aa/FormatData_aa.java
Normal file
81
jdkSrc/jdk8/sun/text/resources/cldr/aa/FormatData_aa.java
Normal file
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.aa;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_aa extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
273
jdkSrc/jdk8/sun/text/resources/cldr/af/FormatData_af.java
Normal file
273
jdkSrc/jdk8/sun/text/resources/cldr/af/FormatData_af.java
Normal file
@@ -0,0 +1,273 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.af;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_af extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Januarie",
|
||||
"Februarie",
|
||||
"Maart",
|
||||
"April",
|
||||
"Mei",
|
||||
"Junie",
|
||||
"Julie",
|
||||
"Augustus",
|
||||
"September",
|
||||
"Oktober",
|
||||
"November",
|
||||
"Desember",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"April",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Jan",
|
||||
"Feb",
|
||||
"Mar",
|
||||
"Apr",
|
||||
"Mei",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Aug",
|
||||
"Sep",
|
||||
"Okt",
|
||||
"Nov",
|
||||
"Des",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"J",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"J",
|
||||
"J",
|
||||
"A",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Sondag",
|
||||
"Maandag",
|
||||
"Dinsdag",
|
||||
"Woensdag",
|
||||
"Donderdag",
|
||||
"Vrydag",
|
||||
"Saterdag",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"So",
|
||||
"Ma",
|
||||
"Di",
|
||||
"Wo",
|
||||
"Do",
|
||||
"Vr",
|
||||
"Sa",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"S",
|
||||
"M",
|
||||
"D",
|
||||
"W",
|
||||
"D",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1ste kwartaal",
|
||||
"2de kwartaal",
|
||||
"3de kwartaal",
|
||||
"4de kwartaal",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"K1",
|
||||
"K2",
|
||||
"K3",
|
||||
"K4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"vm.",
|
||||
"nm.",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"voor Christus",
|
||||
"na Christus",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"v.C.",
|
||||
"n.C.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Era" },
|
||||
{ "field.year", "Jaar" },
|
||||
{ "field.month", "Maand" },
|
||||
{ "field.week", "Week" },
|
||||
{ "field.weekday", "Weeksdag" },
|
||||
{ "field.dayperiod", "AM/PM" },
|
||||
{ "field.hour", "Uur" },
|
||||
{ "field.minute", "Minuut" },
|
||||
{ "field.second", "Sekonde" },
|
||||
{ "field.zone", "Tydsone" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE dd MMMM y",
|
||||
"dd MMMM y",
|
||||
"dd MMM y",
|
||||
"yyyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "Islamitiese siviele kalender" },
|
||||
{ "calendarname.islamicc", "Islamitiese siviele kalender" },
|
||||
{ "calendarname.gregorian", "Gregoriese kalender" },
|
||||
{ "calendarname.gregory", "Gregoriese kalender" },
|
||||
{ "calendarname.japanese", "Japannese kalender" },
|
||||
{ "calendarname.buddhist", "Boeddhistiese kalender" },
|
||||
{ "calendarname.islamic", "Islamitiese kalender" },
|
||||
{ "calendarname.roc", "Minguo-kalender" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
80
jdkSrc/jdk8/sun/text/resources/cldr/af/FormatData_af_NA.java
Normal file
80
jdkSrc/jdk8/sun/text/resources/cldr/af/FormatData_af_NA.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.af;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_af_NA extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4\u00a0#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
232
jdkSrc/jdk8/sun/text/resources/cldr/agq/FormatData_agq.java
Normal file
232
jdkSrc/jdk8/sun/text/resources/cldr/agq/FormatData_agq.java
Normal file
@@ -0,0 +1,232 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.agq;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_agq extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300n\u00f9m",
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300k\u0197\u0300z\u00f9\u0294",
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300d\u0289\u0300gh\u00e0",
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300t\u01ceaf\u0289\u0304gh\u0101",
|
||||
"ndz\u0254\u0300\u014b\u00e8s\u00e8e",
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300nz\u00f9gh\u00f2",
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300d\u00f9mlo",
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300kw\u00eef\u0254\u0300e",
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300f\u0289\u0300gh\u00e0dzugh\u00f9",
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300gh\u01d4uwel\u0254\u0300m",
|
||||
"ndz\u0254\u0300\u014b\u0254\u0300chwa\u0294\u00e0kaa wo",
|
||||
"ndz\u0254\u0300\u014b\u00e8fw\u00f2o",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"n\u00f9m",
|
||||
"k\u0268z",
|
||||
"t\u0268d",
|
||||
"taa",
|
||||
"see",
|
||||
"nzu",
|
||||
"dum",
|
||||
"f\u0254e",
|
||||
"dzu",
|
||||
"l\u0254m",
|
||||
"kaa",
|
||||
"fwo",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"n",
|
||||
"k",
|
||||
"t",
|
||||
"t",
|
||||
"s",
|
||||
"z",
|
||||
"k",
|
||||
"f",
|
||||
"d",
|
||||
"l",
|
||||
"c",
|
||||
"f",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"tsu\u0294nts\u0268",
|
||||
"tsu\u0294ukp\u00e0",
|
||||
"tsu\u0294ugh\u0254e",
|
||||
"tsu\u0294ut\u0254\u0300ml\u00f2",
|
||||
"tsu\u0294um\u00e8",
|
||||
"tsu\u0294ugh\u0268\u0302m",
|
||||
"tsu\u0294ndz\u0268k\u0254\u0294\u0254",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"nts",
|
||||
"kpa",
|
||||
"gh\u0254",
|
||||
"t\u0254m",
|
||||
"ume",
|
||||
"gh\u0268",
|
||||
"dzk",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"n",
|
||||
"k",
|
||||
"g",
|
||||
"t",
|
||||
"u",
|
||||
"g",
|
||||
"d",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"k\u0268b\u00e2 k\u0268 1",
|
||||
"ugb\u00e2 u 2",
|
||||
"ugb\u00e2 u 3",
|
||||
"ugb\u00e2 u 4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"a.g",
|
||||
"a.k",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"S\u011be K\u0268\u0300lesto",
|
||||
"B\u01cea K\u0268\u0300lesto",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"SK",
|
||||
"BK",
|
||||
}
|
||||
},
|
||||
{ "field.era", "k\u0268t\u00eegh" },
|
||||
{ "field.year", "k\u0268n\u00fbm" },
|
||||
{ "field.month", "ndz\u0254\u014b" },
|
||||
{ "field.week", "ew\u0268n" },
|
||||
{ "field.weekday", "tsu\u0294u m\u0268\u0300 \u00e8w\u0268\u0304n" },
|
||||
{ "field.dayperiod", "\u00e2 ts\u0268\u0300" },
|
||||
{ "field.hour", "t\u00e0m" },
|
||||
{ "field.minute", "men\u00e8" },
|
||||
{ "field.second", "s\u025bk\u0254\u0300n" },
|
||||
{ "field.zone", "d\u0268\u014b\u00f2 k\u0268 en\u0268\u0300gha" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM, y",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
207
jdkSrc/jdk8/sun/text/resources/cldr/ak/FormatData_ak.java
Normal file
207
jdkSrc/jdk8/sun/text/resources/cldr/ak/FormatData_ak.java
Normal file
@@ -0,0 +1,207 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ak;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ak extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Sanda-\u0186p\u025bp\u0254n",
|
||||
"Kwakwar-\u0186gyefuo",
|
||||
"Eb\u0254w-\u0186benem",
|
||||
"Eb\u0254bira-Oforisuo",
|
||||
"Esusow Aketseaba-K\u0254t\u0254nimba",
|
||||
"Obirade-Ay\u025bwohomumu",
|
||||
"Ay\u025bwoho-Kitawonsa",
|
||||
"Difuu-\u0186sandaa",
|
||||
"Fankwa-\u0190b\u0254",
|
||||
"\u0186b\u025bs\u025b-Ahinime",
|
||||
"\u0186ber\u025bf\u025bw-Obubuo",
|
||||
"Mumu-\u0186p\u025bnimba",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"S-\u0186",
|
||||
"K-\u0186",
|
||||
"E-\u0186",
|
||||
"E-O",
|
||||
"E-K",
|
||||
"O-A",
|
||||
"A-K",
|
||||
"D-\u0186",
|
||||
"F-\u0190",
|
||||
"\u0186-A",
|
||||
"\u0186-O",
|
||||
"M-\u0186",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Kwesida",
|
||||
"Dwowda",
|
||||
"Benada",
|
||||
"Wukuda",
|
||||
"Yawda",
|
||||
"Fida",
|
||||
"Memeneda",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Kwe",
|
||||
"Dwo",
|
||||
"Ben",
|
||||
"Wuk",
|
||||
"Yaw",
|
||||
"Fia",
|
||||
"Mem",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"K",
|
||||
"D",
|
||||
"B",
|
||||
"W",
|
||||
"Y",
|
||||
"F",
|
||||
"M",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"AN",
|
||||
"EW",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Ansa Kristo",
|
||||
"Kristo Ekyiri",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"AK",
|
||||
"KE",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Bere" },
|
||||
{ "field.year", "Afe" },
|
||||
{ "field.month", "Bosome" },
|
||||
{ "field.week", "Dap\u025bn" },
|
||||
{ "field.weekday", "Dap\u025bn mu da" },
|
||||
{ "field.dayperiod", "Da bere" },
|
||||
{ "field.hour", "D\u0254nhwer" },
|
||||
{ "field.minute", "Sema" },
|
||||
{ "field.second", "S\u025bk\u025bnd" },
|
||||
{ "field.zone", "Bere apaamu" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, y MMMM dd",
|
||||
"y MMMM d",
|
||||
"y MMM d",
|
||||
"yy/MM/dd",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
257
jdkSrc/jdk8/sun/text/resources/cldr/am/FormatData_am.java
Normal file
257
jdkSrc/jdk8/sun/text/resources/cldr/am/FormatData_am.java
Normal file
@@ -0,0 +1,257 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.am;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_am extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u1303\u1295\u12e9\u12c8\u122a",
|
||||
"\u134c\u1265\u1229\u12c8\u122a",
|
||||
"\u121b\u122d\u127d",
|
||||
"\u12a4\u1355\u1228\u120d",
|
||||
"\u121c\u12ed",
|
||||
"\u1301\u1295",
|
||||
"\u1301\u120b\u12ed",
|
||||
"\u12a6\u1308\u1235\u1275",
|
||||
"\u1234\u1355\u1274\u121d\u1260\u122d",
|
||||
"\u12a6\u12ad\u1270\u12cd\u1260\u122d",
|
||||
"\u1296\u126c\u121d\u1260\u122d",
|
||||
"\u12f2\u1234\u121d\u1260\u122d",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u1303\u1295\u12e9",
|
||||
"\u134c\u1265\u1229",
|
||||
"\u121b\u122d\u127d",
|
||||
"\u12a4\u1355\u1228",
|
||||
"\u121c\u12ed",
|
||||
"\u1301\u1295",
|
||||
"\u1301\u120b\u12ed",
|
||||
"\u12a6\u1308\u1235",
|
||||
"\u1234\u1355\u1274",
|
||||
"\u12a6\u12ad\u1270",
|
||||
"\u1296\u126c\u121d",
|
||||
"\u12f2\u1234\u121d",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u1303",
|
||||
"\u134c",
|
||||
"\u121b",
|
||||
"\u12a4",
|
||||
"\u121c",
|
||||
"\u1301",
|
||||
"\u1301",
|
||||
"\u12a6",
|
||||
"\u1234",
|
||||
"\u12a6",
|
||||
"\u1296",
|
||||
"\u12f2",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u12a5\u1211\u12f5",
|
||||
"\u1230\u129e",
|
||||
"\u121b\u12ad\u1230\u129e",
|
||||
"\u1228\u1261\u12d5",
|
||||
"\u1210\u1219\u1235",
|
||||
"\u12d3\u122d\u1265",
|
||||
"\u1245\u12f3\u121c",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u12a5\u1211\u12f5",
|
||||
"\u1230\u129e",
|
||||
"\u121b\u12ad\u1230",
|
||||
"\u1228\u1261\u12d5",
|
||||
"\u1210\u1219\u1235",
|
||||
"\u12d3\u122d\u1265",
|
||||
"\u1245\u12f3\u121c",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u12a5",
|
||||
"\u1230",
|
||||
"\u121b",
|
||||
"\u1228",
|
||||
"\u1210",
|
||||
"\u12d3",
|
||||
"\u1245",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1\u129b\u12cd \u1229\u1265",
|
||||
"\u1201\u1208\u1270\u129b\u12cd \u1229\u1265",
|
||||
"3\u129b\u12cd \u1229\u1265",
|
||||
"4\u129b\u12cd \u1229\u1265",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterNames",
|
||||
new String[] {
|
||||
"1\u129b\u12cd \u1229\u1265",
|
||||
"2\u129b\u12cd \u1229\u1265",
|
||||
"3\u129b\u12cd \u1229\u1265",
|
||||
"4\u129b\u12cd \u1229\u1265",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u1321\u12cb\u1275",
|
||||
"\u12a8\u1233\u12d3\u1275",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"\u12d3\u1218\u1270 \u12d3\u1208\u121d",
|
||||
"\u12d3\u1218\u1270 \u121d\u1215\u1228\u1275",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u12d3/\u12d3",
|
||||
"\u12d3/\u121d",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u12d8\u1218\u1295" },
|
||||
{ "field.year", "\u12d3\u1218\u1275" },
|
||||
{ "field.month", "\u12c8\u122d" },
|
||||
{ "field.week", "\u1233\u121d\u1295\u1275" },
|
||||
{ "field.weekday", "\u12a0\u12d8\u1266\u1275" },
|
||||
{ "field.dayperiod", "\u1321\u12ce\u1275/\u12a8\u1230\u12a0\u1275" },
|
||||
{ "field.hour", "\u1230\u12d3\u1275" },
|
||||
{ "field.minute", "\u12f0\u1242\u1243" },
|
||||
{ "field.second", "\u1230\u12a8\u1295\u12f5" },
|
||||
{ "field.zone", "\u12e8\u1230\u12d3\u1275 \u1230\u1245" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
{ "calendarname.gregorian", "\u12e8\u130d\u122a\u130e\u122a\u12eb\u1295 \u1240\u1295 \u12a0\u1246\u1323\u1320\u122d" },
|
||||
{ "calendarname.gregory", "\u12e8\u130d\u122a\u130e\u122a\u12eb\u1295 \u1240\u1295 \u12a0\u1246\u1323\u1320\u122d" },
|
||||
{ "calendarname.roc", "\u12e8\u121a\u1295\u1309 \u12e8\u1240\u1295 \u12a0\u1246\u1323\u1320\u122d" },
|
||||
{ "calendarname.islamic-civil", "\u12e8\u12a5\u1235\u120b\u121d \u1205\u12dd\u1263\u12ca \u12e8\u1240\u1295 \u12a0\u1246\u1323\u1320\u122d" },
|
||||
{ "calendarname.islamicc", "\u12e8\u12a5\u1235\u120b\u121d \u1205\u12dd\u1263\u12ca \u12e8\u1240\u1295 \u12a0\u1246\u1323\u1320\u122d" },
|
||||
{ "calendarname.japanese", "\u12e8\u1303\u1353\u1295 \u12e8\u1240\u1295 \u12a0\u1246\u1323\u1320\u122d" },
|
||||
{ "calendarname.buddhist", "\u12e8\u1261\u12f2\u1235\u1275 \u1240\u1295 \u12a0\u1246\u1323\u1320\u122d" },
|
||||
{ "calendarname.islamic", "\u12e8\u12a5\u1235\u120b\u121b\u12ca \u12e8\u1230\u12d3\u1275 \u12a0\u1246\u1323\u1320\u122d" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
412
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar.java
Normal file
412
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar.java
Normal file
@@ -0,0 +1,412 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u064a\u0646\u0627\u064a\u0631",
|
||||
"\u0641\u0628\u0631\u0627\u064a\u0631",
|
||||
"\u0645\u0627\u0631\u0633",
|
||||
"\u0623\u0628\u0631\u064a\u0644",
|
||||
"\u0645\u0627\u064a\u0648",
|
||||
"\u064a\u0648\u0646\u064a\u0648",
|
||||
"\u064a\u0648\u0644\u064a\u0648",
|
||||
"\u0623\u063a\u0633\u0637\u0633",
|
||||
"\u0633\u0628\u062a\u0645\u0628\u0631",
|
||||
"\u0623\u0643\u062a\u0648\u0628\u0631",
|
||||
"\u0646\u0648\u0641\u0645\u0628\u0631",
|
||||
"\u062f\u064a\u0633\u0645\u0628\u0631",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u064a",
|
||||
"\u0641",
|
||||
"\u0645",
|
||||
"\u0623",
|
||||
"\u0648",
|
||||
"\u0646",
|
||||
"\u0644",
|
||||
"\u063a",
|
||||
"\u0633",
|
||||
"\u0643",
|
||||
"\u0628",
|
||||
"\u062f",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0623\u062d\u062f",
|
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
|
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
|
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
|
||||
"\u0627\u0644\u062e\u0645\u064a\u0633",
|
||||
"\u0627\u0644\u062c\u0645\u0639\u0629",
|
||||
"\u0627\u0644\u0633\u0628\u062a",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNames",
|
||||
new String[] {
|
||||
"",
|
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0623\u062d\u062f",
|
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
|
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
|
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
|
||||
"\u0627\u0644\u062e\u0645\u064a\u0633",
|
||||
"\u0627\u0644\u062c\u0645\u0639\u0629",
|
||||
"\u0627\u0644\u0633\u0628\u062a",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0623\u062d\u062f",
|
||||
"\u0627\u0644\u0627\u062b\u0646\u064a\u0646",
|
||||
"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621",
|
||||
"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621",
|
||||
"\u0627\u0644\u062e\u0645\u064a\u0633",
|
||||
"\u0627\u0644\u062c\u0645\u0639\u0629",
|
||||
"\u0627\u0644\u0633\u0628\u062a",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u062d",
|
||||
"\u0646",
|
||||
"\u062b",
|
||||
"\u0631",
|
||||
"\u062e",
|
||||
"\u062c",
|
||||
"\u0633",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0623\u0648\u0644",
|
||||
"\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0646\u064a",
|
||||
"\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u062b\u0627\u0644\u062b",
|
||||
"\u0627\u0644\u0631\u0628\u0639 \u0627\u0644\u0631\u0627\u0628\u0639",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"\u0661",
|
||||
"\u0662",
|
||||
"\u0663",
|
||||
"\u0664",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u0635",
|
||||
"\u0645",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"\u0642\u0628\u0644 \u0627\u0644\u0645\u064a\u0644\u0627\u062f",
|
||||
"\u0645\u064a\u0644\u0627\u062f\u064a",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u0642.\u0645",
|
||||
"\u0645",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u0627\u0644\u0639\u0635\u0631" },
|
||||
{ "field.year", "\u0627\u0644\u0633\u0646\u0629" },
|
||||
{ "field.month", "\u0627\u0644\u0634\u0647\u0631" },
|
||||
{ "field.week", "\u0627\u0644\u0623\u0633\u0628\u0648\u0639" },
|
||||
{ "field.weekday", "\u0627\u0644\u064a\u0648\u0645" },
|
||||
{ "field.dayperiod", "\u0635/\u0645" },
|
||||
{ "field.hour", "\u0627\u0644\u0633\u0627\u0639\u0627\u062a" },
|
||||
{ "field.minute", "\u0627\u0644\u062f\u0642\u0627\u0626\u0642" },
|
||||
{ "field.second", "\u0627\u0644\u062b\u0648\u0627\u0646\u064a" },
|
||||
{ "field.zone", "\u0627\u0644\u062a\u0648\u0642\u064a\u062a" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"zzzz h:mm:ss a",
|
||||
"z h:mm:ss a",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y",
|
||||
"d MMMM\u060c y",
|
||||
"dd\u200f/MM\u200f/yyyy",
|
||||
"d\u200f/M\u200f/yyyy",
|
||||
}
|
||||
},
|
||||
{ "buddhist.Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0628\u0648\u0630\u064a",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y G",
|
||||
"d MMMM\u060c y G",
|
||||
"dd\u200f/MM\u200f/y G",
|
||||
"d\u200f/M\u200f/y G",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y GGGG",
|
||||
"d MMMM\u060c y GGGG",
|
||||
"dd\u200f/MM\u200f/y GGGG",
|
||||
"d\u200f/M\u200f/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "japanese.Eras",
|
||||
new String[] {
|
||||
"\u0645",
|
||||
"\u0645\u064a\u062c\u064a",
|
||||
"\u062a\u064a\u0634\u0648",
|
||||
"\u0634\u0648\u0648\u0627",
|
||||
"\u0647\u064a\u0633\u064a",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y G",
|
||||
"d MMMM\u060c y G",
|
||||
"dd\u200f/MM\u200f/y G",
|
||||
"d\u200f/M\u200f/y G",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y GGGG",
|
||||
"d MMMM\u060c y GGGG",
|
||||
"dd\u200f/MM\u200f/y GGGG",
|
||||
"d\u200f/M\u200f/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.Eras",
|
||||
new String[] {
|
||||
"Before R.O.C.",
|
||||
"\u062c\u0645\u0647\u0648\u0631\u064a\u0629 \u0627\u0644\u0635\u064a",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y G",
|
||||
"d MMMM\u060c y G",
|
||||
"dd\u200f/MM\u200f/y G",
|
||||
"d\u200f/M\u200f/y G",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y GGGG",
|
||||
"d MMMM\u060c y GGGG",
|
||||
"dd\u200f/MM\u200f/y GGGG",
|
||||
"d\u200f/M\u200f/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNames",
|
||||
new String[] {
|
||||
"\u0645\u062d\u0631\u0645",
|
||||
"\u0635\u0641\u0631",
|
||||
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0623\u0648\u0644",
|
||||
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0622\u062e\u0631",
|
||||
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0623\u0648\u0644\u0649",
|
||||
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0622\u062e\u0631\u0629",
|
||||
"\u0631\u062c\u0628",
|
||||
"\u0634\u0639\u0628\u0627\u0646",
|
||||
"\u0631\u0645\u0636\u0627\u0646",
|
||||
"\u0634\u0648\u0627\u0644",
|
||||
"\u0630\u0648 \u0627\u0644\u0642\u0639\u062f\u0629",
|
||||
"\u0630\u0648 \u0627\u0644\u062d\u062c\u0629",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0645\u062d\u0631\u0645",
|
||||
"\u0635\u0641\u0631",
|
||||
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0623\u0648\u0644",
|
||||
"\u0631\u0628\u064a\u0639 \u0627\u0644\u0622\u062e\u0631",
|
||||
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0623\u0648\u0644\u0649",
|
||||
"\u062c\u0645\u0627\u062f\u0649 \u0627\u0644\u0622\u062e\u0631\u0629",
|
||||
"\u0631\u062c\u0628",
|
||||
"\u0634\u0639\u0628\u0627\u0646",
|
||||
"\u0631\u0645\u0636\u0627\u0646",
|
||||
"\u0634\u0648\u0627\u0644",
|
||||
"\u0630\u0648 \u0627\u0644\u0642\u0639\u062f\u0629",
|
||||
"\u0630\u0648 \u0627\u0644\u062d\u062c\u0629",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNarrows",
|
||||
new String[] {
|
||||
"\u0661",
|
||||
"\u0662",
|
||||
"\u0663",
|
||||
"\u0664",
|
||||
"\u0665",
|
||||
"\u0666",
|
||||
"\u0667",
|
||||
"\u0668",
|
||||
"\u0669",
|
||||
"\u0661\u0660",
|
||||
"\u0661\u0661",
|
||||
"\u0661\u0662",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"\u0647\u0640",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM\u060c y G",
|
||||
"d\u200f/M\u200f/yyyy",
|
||||
}
|
||||
},
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM\u060c y GGGG",
|
||||
"d\u200f/M\u200f/yyyy",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-umalqura", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0625\u0633\u0644\u0627\u0645\u064a [\u0623\u0645 \u0627\u0644\u0642\u0631\u0649]" },
|
||||
{ "calendarname.islamic-civil", "\u062a\u0642\u0648\u064a\u0645 \u0627\u0633\u0644\u0627\u0645\u064a \u0645\u062f\u0646\u064a" },
|
||||
{ "calendarname.islamicc", "\u062a\u0642\u0648\u064a\u0645 \u0627\u0633\u0644\u0627\u0645\u064a \u0645\u062f\u0646\u064a" },
|
||||
{ "calendarname.buddhist", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0628\u0648\u0630\u064a" },
|
||||
{ "calendarname.islamic", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0647\u062c\u0631\u064a" },
|
||||
{ "calendarname.gregorian", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0645\u064a\u0644\u0627\u062f\u064a" },
|
||||
{ "calendarname.gregory", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u0645\u064a\u0644\u0627\u062f\u064a" },
|
||||
{ "calendarname.roc", "\u062a\u0642\u0648\u064a\u0645 \u0645\u064a\u0646\u062c\u0648" },
|
||||
{ "calendarname.japanese", "\u0627\u0644\u062a\u0642\u0648\u064a\u0645 \u0627\u0644\u064a\u0627\u0628\u0627\u0646\u064a" },
|
||||
{ "DefaultNumberingSystem", "arab" },
|
||||
{ "arab.NumberElements",
|
||||
new String[] {
|
||||
"\u066b",
|
||||
"\u066c",
|
||||
"\u061b",
|
||||
"\u066a",
|
||||
"\u0660",
|
||||
"#",
|
||||
"-",
|
||||
"\u0627\u0633",
|
||||
"\u0609",
|
||||
"\u221e",
|
||||
"\u0644\u064a\u0633 \u0631\u0642\u0645",
|
||||
}
|
||||
},
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###;#,##0.###-",
|
||||
"\u00a4\u00a0#,##0.00;\u00a4\u00a0#,##0.00-",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
82
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_DZ.java
Normal file
82
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_DZ.java
Normal file
@@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar_DZ extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y",
|
||||
"d MMMM\u060c y",
|
||||
"yyyy/MM/dd",
|
||||
"yyyy/M/d",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
90
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_JO.java
Normal file
90
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_JO.java
Normal file
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar_JO extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
|
||||
"\u0634\u0628\u0627\u0637",
|
||||
"\u0622\u0630\u0627\u0631",
|
||||
"\u0646\u064a\u0633\u0627\u0646",
|
||||
"\u0623\u064a\u0627\u0631",
|
||||
"\u062d\u0632\u064a\u0631\u0627\u0646",
|
||||
"\u062a\u0645\u0648\u0632",
|
||||
"\u0622\u0628",
|
||||
"\u0623\u064a\u0644\u0648\u0644",
|
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
|
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
|
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644",
|
||||
"",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
90
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_LB.java
Normal file
90
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_LB.java
Normal file
@@ -0,0 +1,90 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar_LB extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
|
||||
"\u0634\u0628\u0627\u0637",
|
||||
"\u0622\u0630\u0627\u0631",
|
||||
"\u0646\u064a\u0633\u0627\u0646",
|
||||
"\u0623\u064a\u0627\u0631",
|
||||
"\u062d\u0632\u064a\u0631\u0627\u0646",
|
||||
"\u062a\u0645\u0648\u0632",
|
||||
"\u0622\u0628",
|
||||
"\u0623\u064a\u0644\u0648\u0644",
|
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
|
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
|
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644",
|
||||
"",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
82
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_MA.java
Normal file
82
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_MA.java
Normal file
@@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar_MA extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y",
|
||||
"d MMMM\u060c y",
|
||||
"yyyy/MM/dd",
|
||||
"yyyy/M/d",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
80
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_QA.java
Normal file
80
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_QA.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar_QA extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#0.###;#0.###-",
|
||||
"\u00a4#0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
80
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_SA.java
Normal file
80
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_SA.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar_SA extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#0.###;#0.###-",
|
||||
"\u00a4#0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
97
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_SY.java
Normal file
97
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_SY.java
Normal file
@@ -0,0 +1,97 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar_SY extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
|
||||
"\u0634\u0628\u0627\u0637",
|
||||
"\u0622\u0630\u0627\u0631",
|
||||
"\u0646\u064a\u0633\u0627\u0646",
|
||||
"\u0623\u064a\u0627\u0631",
|
||||
"\u062d\u0632\u064a\u0631\u0627\u0646",
|
||||
"\u062a\u0645\u0648\u0632",
|
||||
"\u0622\u0628",
|
||||
"\u0623\u064a\u0644\u0648\u0644",
|
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644",
|
||||
"\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a",
|
||||
"\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#0.###;#0.###-",
|
||||
"\u00a4#0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
89
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_TN.java
Normal file
89
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_TN.java
Normal file
@@ -0,0 +1,89 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar_TN extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE\u060c d MMMM\u060c y",
|
||||
"d MMMM\u060c y",
|
||||
"yyyy/MM/dd",
|
||||
"yyyy/M/d",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#0.###;#0.###-",
|
||||
"\u00a4#0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
80
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_YE.java
Normal file
80
jdkSrc/jdk8/sun/text/resources/cldr/ar/FormatData_ar_YE.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ar;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ar_YE extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#0.###;#0.###-",
|
||||
"\u00a4#0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
167
jdkSrc/jdk8/sun/text/resources/cldr/as/FormatData_as.java
Normal file
167
jdkSrc/jdk8/sun/text/resources/cldr/as/FormatData_as.java
Normal file
@@ -0,0 +1,167 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.as;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_as extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u099c\u09be\u09a8\u09c1\u09f1\u09be\u09f0\u09c0",
|
||||
"\u09ab\u09c7\u09ac\u09cd\u09f0\u09c1\u09f1\u09be\u09f0\u09c0",
|
||||
"\u09ae\u09be\u09f0\u09cd\u099a",
|
||||
"\u098f\u09aa\u09cd\u09f0\u09bf\u09b2",
|
||||
"\u09ae\u09c7",
|
||||
"\u099c\u09c1\u09a8",
|
||||
"\u099c\u09c1\u09b2\u09be\u0987",
|
||||
"\u0986\u0997\u09b7\u09cd\u099f",
|
||||
"\u099b\u09c7\u09aa\u09cd\u09a4\u09c7\u09ae\u09cd\u09ac\u09f0",
|
||||
"\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09f0",
|
||||
"\u09a8\u09f1\u09c7\u09ae\u09cd\u09ac\u09f0",
|
||||
"\u09a1\u09bf\u099a\u09c7\u09ae\u09cd\u09ac\u09f0",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u099c\u09be\u09a8\u09c1",
|
||||
"\u09ab\u09c7\u09ac\u09cd\u09f0\u09c1",
|
||||
"\u09ae\u09be\u09f0\u09cd\u099a",
|
||||
"\u098f\u09aa\u09cd\u09f0\u09bf\u09b2",
|
||||
"\u09ae\u09c7",
|
||||
"\u099c\u09c1\u09a8",
|
||||
"\u099c\u09c1\u09b2\u09be\u0987",
|
||||
"\u0986\u0997",
|
||||
"\u09b8\u09c7\u09aa\u09cd\u099f",
|
||||
"\u0985\u0995\u09cd\u099f\u09cb",
|
||||
"\u09a8\u09ad\u09c7",
|
||||
"\u09a1\u09bf\u09b8\u09c7",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u09a6\u09c7\u0993\u09ac\u09be\u09f0",
|
||||
"\u09b8\u09cb\u09ae\u09ac\u09be\u09f0",
|
||||
"\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09f0",
|
||||
"\u09ac\u09c1\u09a7\u09ac\u09be\u09f0",
|
||||
"\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09f0",
|
||||
"\u09b6\u09c1\u0995\u09cd\u09f0\u09ac\u09be\u09f0",
|
||||
"\u09b6\u09a8\u09bf\u09ac\u09be\u09f0",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u09f0\u09ac\u09bf",
|
||||
"\u09b8\u09cb\u09ae",
|
||||
"\u09ae\u0999\u09cd\u0997\u09b2",
|
||||
"\u09ac\u09c1\u09a7",
|
||||
"\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf",
|
||||
"\u09b6\u09c1\u0995\u09cd\u09f0",
|
||||
"\u09b6\u09a8\u09bf",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"\u09aa\u09cd\u09f0\u09a5\u09ae \u09aa\u09cd\u09f0\u09b9\u09f0",
|
||||
"\u09a6\u09cd\u09ac\u09bf\u09a4\u09c0\u09af\u09bc \u09aa\u09cd\u09f0\u09b9\u09f0",
|
||||
"\u09a4\u09c3\u09a4\u09c0\u09af\u09bc \u09aa\u09cd\u09f0\u09b9\u09f0",
|
||||
"\u099a\u09a4\u09c1\u09f0\u09cd\u09a5 \u09aa\u09cd\u09f0\u09b9\u09f0",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u09aa\u09c2\u09f0\u09cd\u09ac\u09be\u09b9\u09cd\u09a3",
|
||||
"\u0985\u09aa\u09f0\u09be\u09b9\u09cd\u09a3",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u09af\u09c1\u0997" },
|
||||
{ "field.year", "\u09ac\u099b\u09f0" },
|
||||
{ "field.month", "\u09ae\u09be\u09b9" },
|
||||
{ "field.week", "\u09b8\u09aa\u09cd\u09a4\u09be\u09b9" },
|
||||
{ "field.hour", "\u0998\u09a3\u09cd\u099f\u09be" },
|
||||
{ "field.minute", "\u09ae\u09bf\u09a8\u09bf\u099f" },
|
||||
{ "field.second", "\u099b\u09c7\u0995\u09c7\u09a3\u09cd\u09a1" },
|
||||
{ "field.zone", "\u0995\u09cd\u09b7\u09c7\u09a4\u09cd\u09f0" },
|
||||
{ "calendarname.islamic-civil", "\u0987\u099a\u09b2\u09be\u09ae\u09c0-\u09a8\u09be\u0997\u09f0\u09bf\u0995\u09f0 \u09aa\u099e\u09cd\u099c\u09bf\u0995\u09be" },
|
||||
{ "calendarname.islamicc", "\u0987\u099a\u09b2\u09be\u09ae\u09c0-\u09a8\u09be\u0997\u09f0\u09bf\u0995\u09f0 \u09aa\u099e\u09cd\u099c\u09bf\u0995\u09be" },
|
||||
{ "calendarname.japanese", "\u099c\u09be\u09aa\u09be\u09a8\u09c0 \u09aa\u099e\u09cd\u099c\u09bf\u0995\u09be" },
|
||||
{ "calendarname.roc", "\u099a\u09c0\u09a8\u09be \u0997\u09a3\u09f0\u09be\u099c\u09cd\u09af\u09f0 \u09aa\u099e\u09cd\u099c\u09bf\u0995\u09be" },
|
||||
{ "calendarname.islamic", "\u0987\u099a\u09b2\u09be\u09ae\u09c0 \u09aa\u099e\u09cd\u099c\u09bf\u0995\u09be" },
|
||||
{ "calendarname.gregorian", "\u0997\u09cd\u09f0\u09bf\u0997\u09cb\u09f0\u09c0\u09af\u09bc \u09aa\u099e\u09cd\u099c\u09bf\u0995\u09be" },
|
||||
{ "calendarname.gregory", "\u0997\u09cd\u09f0\u09bf\u0997\u09cb\u09f0\u09c0\u09af\u09bc \u09aa\u099e\u09cd\u099c\u09bf\u0995\u09be" },
|
||||
{ "calendarname.buddhist", "\u09ac\u09cc\u09a6\u09cd\u09a7 \u09aa\u099e\u09cd\u099c\u09bf\u0995\u09be" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##,##0.###",
|
||||
"\u00a4\u00a0#,##,##0.00",
|
||||
"#,##,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
224
jdkSrc/jdk8/sun/text/resources/cldr/asa/FormatData_asa.java
Normal file
224
jdkSrc/jdk8/sun/text/resources/cldr/asa/FormatData_asa.java
Normal file
@@ -0,0 +1,224 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.asa;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_asa extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Januari",
|
||||
"Februari",
|
||||
"Machi",
|
||||
"Aprili",
|
||||
"Mei",
|
||||
"Juni",
|
||||
"Julai",
|
||||
"Agosti",
|
||||
"Septemba",
|
||||
"Oktoba",
|
||||
"Novemba",
|
||||
"Desemba",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Jan",
|
||||
"Feb",
|
||||
"Mac",
|
||||
"Apr",
|
||||
"Mei",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Ago",
|
||||
"Sep",
|
||||
"Okt",
|
||||
"Nov",
|
||||
"Dec",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"J",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"J",
|
||||
"J",
|
||||
"A",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Jumapili",
|
||||
"Jumatatu",
|
||||
"Jumanne",
|
||||
"Jumatano",
|
||||
"Alhamisi",
|
||||
"Ijumaa",
|
||||
"Jumamosi",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Jpi",
|
||||
"Jtt",
|
||||
"Jnn",
|
||||
"Jtn",
|
||||
"Alh",
|
||||
"Ijm",
|
||||
"Jmo",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"J",
|
||||
"J",
|
||||
"J",
|
||||
"J",
|
||||
"A",
|
||||
"I",
|
||||
"J",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"Robo 1",
|
||||
"Robo 2",
|
||||
"Robo 3",
|
||||
"Robo 4",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"R1",
|
||||
"R2",
|
||||
"R3",
|
||||
"R4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"icheheavo",
|
||||
"ichamthi",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Kabla yakwe Yethu",
|
||||
"Baada yakwe Yethu",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"KM",
|
||||
"BM",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Edhi" },
|
||||
{ "field.year", "Mwaka" },
|
||||
{ "field.month", "Mweji" },
|
||||
{ "field.week", "Ndisha" },
|
||||
{ "field.weekday", "Thiku ya ndisha" },
|
||||
{ "field.dayperiod", "Marango athiku" },
|
||||
{ "field.hour", "Thaa" },
|
||||
{ "field.minute", "Dakika" },
|
||||
{ "field.second", "Thekunde" },
|
||||
{ "field.zone", "Majira Athaa" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
224
jdkSrc/jdk8/sun/text/resources/cldr/az/FormatData_az.java
Normal file
224
jdkSrc/jdk8/sun/text/resources/cldr/az/FormatData_az.java
Normal file
@@ -0,0 +1,224 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.az;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_az extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Yanvar",
|
||||
"Fevral",
|
||||
"Mart",
|
||||
"Aprel",
|
||||
"May",
|
||||
"\u0130yun",
|
||||
"\u0130yul",
|
||||
"Avqust",
|
||||
"Sentyabr",
|
||||
"Oktyabr",
|
||||
"Noyabr",
|
||||
"Dekabr",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"yan",
|
||||
"fev",
|
||||
"mar",
|
||||
"apr",
|
||||
"may",
|
||||
"iyn",
|
||||
"iyl",
|
||||
"avq",
|
||||
"sen",
|
||||
"okt",
|
||||
"noy",
|
||||
"dek",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"bazar",
|
||||
"bazar ert\u0259si",
|
||||
"\u00e7\u0259r\u015f\u0259nb\u0259 ax\u015fam\u0131",
|
||||
"\u00e7\u0259r\u015f\u0259nb\u0259",
|
||||
"c\u00fcm\u0259 ax\u015fam\u0131",
|
||||
"c\u00fcm\u0259",
|
||||
"\u015f\u0259nb\u0259",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"B.",
|
||||
"B.E.",
|
||||
"\u00c7.A.",
|
||||
"\u00c7.",
|
||||
"C.A.",
|
||||
"C",
|
||||
"\u015e.",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"7",
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1-ci kvartal",
|
||||
"2-ci kvartal",
|
||||
"3-c\u00fc kvartal",
|
||||
"4-c\u00fc kvartal",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"1-ci kv.",
|
||||
"2-ci kv.",
|
||||
"3-c\u00fc kv.",
|
||||
"4-c\u00fc kv.",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"eram\u0131zdan \u0259vv\u0259l",
|
||||
"bizim eram\u0131z\u0131n",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"e.\u0259.",
|
||||
"b.e.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "era" },
|
||||
{ "field.year", "il" },
|
||||
{ "field.month", "ay" },
|
||||
{ "field.week", "h\u0259ft\u0259" },
|
||||
{ "field.weekday", "h\u0259ft\u0259 g\u00fcn\u00fc" },
|
||||
{ "field.hour", "saat" },
|
||||
{ "field.minute", "d\u0259qiq\u0259" },
|
||||
{ "field.second", "saniy\u0259" },
|
||||
{ "field.zone", "zona" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d, MMMM, y",
|
||||
"d MMMM , y",
|
||||
"d MMM, y",
|
||||
"yyyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "calendarname.gregorian", "Qreqoriy t\u0259qvimi" },
|
||||
{ "calendarname.gregory", "Qreqoriy t\u0259qvimi" },
|
||||
{ "calendarname.roc", "\u00c7in respublikas\u0131 t\u0259qvimi" },
|
||||
{ "calendarname.islamic-civil", "Ivrit t\u0259qvimi" },
|
||||
{ "calendarname.islamicc", "Ivrit t\u0259qvimi" },
|
||||
{ "calendarname.japanese", "Yapon t\u0259qvimi" },
|
||||
{ "calendarname.buddhist", "Budist t\u0259qvimi" },
|
||||
{ "calendarname.islamic", "M\u00fcs\u0259lman t\u0259qvimi" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4\u00a0#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
140
jdkSrc/jdk8/sun/text/resources/cldr/az/FormatData_az_Cyrl.java
Normal file
140
jdkSrc/jdk8/sun/text/resources/cldr/az/FormatData_az_Cyrl.java
Normal file
@@ -0,0 +1,140 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.az;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_az_Cyrl extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0458\u0430\u043d\u0432\u0430\u0440",
|
||||
"\u0444\u0435\u0432\u0440\u0430\u043b",
|
||||
"\u043c\u0430\u0440\u0442",
|
||||
"\u0430\u043f\u0440\u0435\u043b",
|
||||
"\u043c\u0430\u0439",
|
||||
"\u0438\u0458\u0443\u043d",
|
||||
"\u0438\u0458\u0443\u043b",
|
||||
"\u0430\u0432\u0433\u0443\u0441\u0442",
|
||||
"\u0441\u0435\u043d\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043e\u043a\u0442\u0458\u0430\u0431\u0440",
|
||||
"\u043d\u043e\u0458\u0430\u0431\u0440",
|
||||
"\u0434\u0435\u043a\u0430\u0431\u0440",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u0431\u0430\u0437\u0430\u0440",
|
||||
"\u0431\u0430\u0437\u0430\u0440 \u0435\u0440\u0442\u04d9\u0441\u0438",
|
||||
"\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
|
||||
"\u0447\u04d9\u0440\u0448\u04d9\u043d\u0431\u04d9",
|
||||
"\u04b9\u04af\u043c\u04d9 \u0430\u0445\u0448\u0430\u043c\u044b",
|
||||
"\u04b9\u04af\u043c\u04d9",
|
||||
"\u0448\u04d9\u043d\u0431\u04d9",
|
||||
}
|
||||
},
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d, MMMM, y",
|
||||
"d MMMM , y",
|
||||
"d MMM, y",
|
||||
"yyyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4\u00a0#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
240
jdkSrc/jdk8/sun/text/resources/cldr/bas/FormatData_bas.java
Normal file
240
jdkSrc/jdk8/sun/text/resources/cldr/bas/FormatData_bas.java
Normal file
@@ -0,0 +1,240 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.bas;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_bas extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"K\u0254nd\u0254\u014b",
|
||||
"M\u00e0c\u025b\u0302l",
|
||||
"M\u00e0t\u00f9mb",
|
||||
"M\u00e0top",
|
||||
"M\u0300puy\u025b",
|
||||
"H\u00ecl\u00f2nd\u025b\u0300",
|
||||
"Nj\u00e8b\u00e0",
|
||||
"H\u00ecka\u014b",
|
||||
"D\u00ecp\u0254\u0300s",
|
||||
"B\u00ec\u00f2\u00f4m",
|
||||
"M\u00e0y\u025bs\u00e8p",
|
||||
"L\u00ecbuy li \u0144y\u00e8e",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"k\u0254n",
|
||||
"mac",
|
||||
"mat",
|
||||
"mto",
|
||||
"mpu",
|
||||
"hil",
|
||||
"nje",
|
||||
"hik",
|
||||
"dip",
|
||||
"bio",
|
||||
"may",
|
||||
"li\u0253",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"k",
|
||||
"m",
|
||||
"m",
|
||||
"m",
|
||||
"m",
|
||||
"h",
|
||||
"n",
|
||||
"h",
|
||||
"d",
|
||||
"b",
|
||||
"m",
|
||||
"l",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u014bgw\u00e0 n\u0254\u0302y",
|
||||
"\u014bgw\u00e0 nja\u014bgumba",
|
||||
"\u014bgw\u00e0 \u00fbm",
|
||||
"\u014bgw\u00e0 \u014bg\u00ea",
|
||||
"\u014bgw\u00e0 mb\u0254k",
|
||||
"\u014bgw\u00e0 k\u0254\u0254",
|
||||
"\u014bgw\u00e0 j\u00f4n",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"n\u0254y",
|
||||
"nja",
|
||||
"uum",
|
||||
"\u014bge",
|
||||
"mb\u0254",
|
||||
"k\u0254\u0254",
|
||||
"jon",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"n",
|
||||
"n",
|
||||
"u",
|
||||
"\u014b",
|
||||
"m",
|
||||
"k",
|
||||
"j",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"K\u00e8k bisu i so\u014b ia\u00e2",
|
||||
"K\u00e8k i \u0144yonos bi\u0253a\u00e0 i so\u014b ia\u00e2",
|
||||
"K\u00e8k i \u0144yonos bia\u00e2 i so\u014b ia\u00e2",
|
||||
"K\u00e8k i \u0144yonos bin\u00e2 i so\u014b ia\u00e2",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"K1s3",
|
||||
"K2s3",
|
||||
"K3s3",
|
||||
"K4s3",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"I bik\u025b\u0302gl\u00e0",
|
||||
"I \u0253ugaj\u0254p",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"bis\u016b bi Yes\u00f9 Kr\u01d0st\u00f2",
|
||||
"i mb\u016bs Yes\u00f9 Kr\u01d0st\u00f2",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"b.Y.K",
|
||||
"m.Y.K",
|
||||
}
|
||||
},
|
||||
{ "field.era", "k\u00e8k" },
|
||||
{ "field.year", "\u014bw\u00eci" },
|
||||
{ "field.month", "so\u014b" },
|
||||
{ "field.week", "s\u0254nd\u025b\u0302" },
|
||||
{ "field.weekday", "h\u00ecl\u0254 hi s\u0254nd\u025b\u0302" },
|
||||
{ "field.dayperiod", "nj\u01cem\u00f9ha" },
|
||||
{ "field.hour", "\u014bg\u025b\u014b" },
|
||||
{ "field.minute", "\u014bget" },
|
||||
{ "field.second", "h\u00ec\u014bge\u014bget" },
|
||||
{ "field.zone", "komboo i \u014bg\u025b\u014b" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM, y",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0\u00a0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
308
jdkSrc/jdk8/sun/text/resources/cldr/be/FormatData_be.java
Normal file
308
jdkSrc/jdk8/sun/text/resources/cldr/be/FormatData_be.java
Normal file
@@ -0,0 +1,308 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.be;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_be extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c",
|
||||
"\u043b\u044e\u0442\u044b",
|
||||
"\u0441\u0430\u043a\u0430\u0432\u0456\u043a",
|
||||
"\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a",
|
||||
"\u043c\u0430\u0439",
|
||||
"\u0447\u044d\u0440\u0432\u0435\u043d\u044c",
|
||||
"\u043b\u0456\u043f\u0435\u043d\u044c",
|
||||
"\u0436\u043d\u0456\u0432\u0435\u043d\u044c",
|
||||
"\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c",
|
||||
"\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a",
|
||||
"\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434",
|
||||
"\u0441\u043d\u0435\u0436\u0430\u043d\u044c",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"\u0442\u0440\u0430\u0432\u0435\u043d\u044c",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0441\u0442\u0443",
|
||||
"\u043b\u044e\u0442",
|
||||
"\u0441\u0430\u043a",
|
||||
"\u043a\u0440\u0430",
|
||||
"\u043c\u0430\u0439",
|
||||
"\u0447\u044d\u0440",
|
||||
"\u043b\u0456\u043f",
|
||||
"\u0436\u043d\u0456",
|
||||
"\u0432\u0435\u0440",
|
||||
"\u043a\u0430\u0441",
|
||||
"\u043b\u0456\u0441",
|
||||
"\u0441\u043d\u0435",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"\u0442\u0440\u0430",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"\u0442",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNarrows",
|
||||
new String[] {
|
||||
"\u0441",
|
||||
"\u043b",
|
||||
"\u0441",
|
||||
"\u043a",
|
||||
"\u043c",
|
||||
"\u0447",
|
||||
"\u043b",
|
||||
"\u0436",
|
||||
"\u0432",
|
||||
"\u043a",
|
||||
"\u043b",
|
||||
"\u0441",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u043d\u044f\u0434\u0437\u0435\u043b\u044f",
|
||||
"\u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a",
|
||||
"\u0430\u045e\u0442\u043e\u0440\u0430\u043a",
|
||||
"\u0441\u0435\u0440\u0430\u0434\u0430",
|
||||
"\u0447\u0430\u0446\u0432\u0435\u0440",
|
||||
"\u043f\u044f\u0442\u043d\u0456\u0446\u0430",
|
||||
"\u0441\u0443\u0431\u043e\u0442\u0430",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u043d\u0434",
|
||||
"\u043f\u043d",
|
||||
"\u0430\u045e",
|
||||
"\u0441\u0440",
|
||||
"\u0447\u0446",
|
||||
"\u043f\u0442",
|
||||
"\u0441\u0431",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u043d",
|
||||
"\u043f",
|
||||
"\u0430",
|
||||
"\u0441",
|
||||
"\u0447",
|
||||
"\u043f",
|
||||
"\u0441",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1-\u0448\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
|
||||
"2-\u0433\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
|
||||
"3-\u0446\u0456 \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
|
||||
"4-\u0442\u044b \u043a\u0432\u0430\u0440\u0442\u0430\u043b",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"1-\u0448\u044b \u043a\u0432.",
|
||||
"2-\u0433\u0456 \u043a\u0432.",
|
||||
"3-\u0446\u0456 \u043a\u0432.",
|
||||
"4-\u0442\u044b \u043a\u0432.",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u0434\u0430 \u043f\u0430\u043b\u0443\u0434\u043d\u044f",
|
||||
"\u043f\u0430\u0441\u043b\u044f \u043f\u0430\u043b\u0443\u0434\u043d\u044f",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u0434\u0430 \u043d.\u044d.",
|
||||
"\u043d.\u044d.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u044d\u0440\u0430" },
|
||||
{ "field.year", "\u0433\u043e\u0434" },
|
||||
{ "field.month", "\u043c\u0435\u0441\u044f\u0446" },
|
||||
{ "field.week", "\u0442\u044b\u0434\u0437\u0435\u043d\u044c" },
|
||||
{ "field.weekday", "\u0434\u0437\u0435\u043d\u044c \u0442\u044b\u0434\u043d\u044f" },
|
||||
{ "field.dayperiod", "\u0414\u041f/\u041f\u041f" },
|
||||
{ "field.hour", "\u0433\u0430\u0434\u0437\u0456\u043d\u0430" },
|
||||
{ "field.minute", "\u0445\u0432\u0456\u043b\u0456\u043d\u0430" },
|
||||
{ "field.second", "\u0441\u0435\u043a\u0443\u043d\u0434\u0430" },
|
||||
{ "field.zone", "Zone" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH.mm.ss zzzz",
|
||||
"HH.mm.ss z",
|
||||
"HH.mm.ss",
|
||||
"HH.mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d.M.yyyy",
|
||||
"d.M.yy",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"d.M.yy",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y GGGG",
|
||||
"d MMMM y GGGG",
|
||||
"d MMM y GGGG",
|
||||
"d.M.yy",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u043a\u0456 \u0441\u0432\u0435\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamicc", "\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u043a\u0456 \u0441\u0432\u0435\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.gregorian", "\u0433\u0440\u044d\u0433\u0430\u0440\u044b\u044f\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.gregory", "\u0433\u0440\u044d\u0433\u0430\u0440\u044b\u044f\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.japanese", "\u044f\u043f\u043e\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.buddhist", "\u0431\u0443\u0434\u044b\u0441\u0446\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamic", "\u043c\u0443\u0441\u0443\u043b\u044c\u043c\u0430\u043d\u0441\u043a\u0456 \u043a\u0430\u043b\u044f\u043d\u0434\u0430\u0440" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
185
jdkSrc/jdk8/sun/text/resources/cldr/bem/FormatData_bem.java
Normal file
185
jdkSrc/jdk8/sun/text/resources/cldr/bem/FormatData_bem.java
Normal file
@@ -0,0 +1,185 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.bem;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_bem extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Januari",
|
||||
"Februari",
|
||||
"Machi",
|
||||
"Epreo",
|
||||
"Mei",
|
||||
"Juni",
|
||||
"Julai",
|
||||
"Ogasti",
|
||||
"Septemba",
|
||||
"Oktoba",
|
||||
"Novemba",
|
||||
"Disemba",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Jan",
|
||||
"Feb",
|
||||
"Mac",
|
||||
"Epr",
|
||||
"Mei",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Oga",
|
||||
"Sep",
|
||||
"Okt",
|
||||
"Nov",
|
||||
"Dis",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"J",
|
||||
"F",
|
||||
"M",
|
||||
"E",
|
||||
"M",
|
||||
"J",
|
||||
"J",
|
||||
"O",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Pa Mulungu",
|
||||
"Palichimo",
|
||||
"Palichibuli",
|
||||
"Palichitatu",
|
||||
"Palichine",
|
||||
"Palichisano",
|
||||
"Pachibelushi",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"uluchelo",
|
||||
"akasuba",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Before Yesu",
|
||||
"After Yesu",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"AD",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Inkulo" },
|
||||
{ "field.year", "Umwaka" },
|
||||
{ "field.month", "Umweshi" },
|
||||
{ "field.week", "Umulungu" },
|
||||
{ "field.weekday", "Ubushiku" },
|
||||
{ "field.dayperiod", "Akasuba" },
|
||||
{ "field.hour", "Insa" },
|
||||
{ "field.minute", "Mineti" },
|
||||
{ "field.second", "Sekondi" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
224
jdkSrc/jdk8/sun/text/resources/cldr/bez/FormatData_bez.java
Normal file
224
jdkSrc/jdk8/sun/text/resources/cldr/bez/FormatData_bez.java
Normal file
@@ -0,0 +1,224 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.bez;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_bez extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"pa mwedzi gwa hutala",
|
||||
"pa mwedzi gwa wuvili",
|
||||
"pa mwedzi gwa wudatu",
|
||||
"pa mwedzi gwa wutai",
|
||||
"pa mwedzi gwa wuhanu",
|
||||
"pa mwedzi gwa sita",
|
||||
"pa mwedzi gwa saba",
|
||||
"pa mwedzi gwa nane",
|
||||
"pa mwedzi gwa tisa",
|
||||
"pa mwedzi gwa kumi",
|
||||
"pa mwedzi gwa kumi na moja",
|
||||
"pa mwedzi gwa kumi na mbili",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Hut",
|
||||
"Vil",
|
||||
"Dat",
|
||||
"Tai",
|
||||
"Han",
|
||||
"Sit",
|
||||
"Sab",
|
||||
"Nan",
|
||||
"Tis",
|
||||
"Kum",
|
||||
"Kmj",
|
||||
"Kmb",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"H",
|
||||
"V",
|
||||
"D",
|
||||
"T",
|
||||
"H",
|
||||
"S",
|
||||
"S",
|
||||
"N",
|
||||
"T",
|
||||
"K",
|
||||
"K",
|
||||
"K",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"pa mulungu",
|
||||
"pa shahuviluha",
|
||||
"pa hivili",
|
||||
"pa hidatu",
|
||||
"pa hitayi",
|
||||
"pa hihanu",
|
||||
"pa shahulembela",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Mul",
|
||||
"Vil",
|
||||
"Hiv",
|
||||
"Hid",
|
||||
"Hit",
|
||||
"Hih",
|
||||
"Lem",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"M",
|
||||
"J",
|
||||
"H",
|
||||
"H",
|
||||
"H",
|
||||
"W",
|
||||
"J",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"Lobo 1",
|
||||
"Lobo 2",
|
||||
"Lobo 3",
|
||||
"Lobo 4",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"L1",
|
||||
"L2",
|
||||
"L3",
|
||||
"L4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"pamilau",
|
||||
"pamunyi",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Kabla ya Mtwaa",
|
||||
"Baada ya Mtwaa",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"KM",
|
||||
"BM",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Amajira" },
|
||||
{ "field.year", "Mwaha" },
|
||||
{ "field.month", "Mwedzi" },
|
||||
{ "field.week", "Mlungu gumamfu" },
|
||||
{ "field.weekday", "Sihudza kasi" },
|
||||
{ "field.dayperiod", "Lwamelau" },
|
||||
{ "field.hour", "Saa" },
|
||||
{ "field.minute", "Dakika" },
|
||||
{ "field.second", "Sekunde" },
|
||||
{ "field.zone", "Amajira ga saa" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
292
jdkSrc/jdk8/sun/text/resources/cldr/bg/FormatData_bg.java
Normal file
292
jdkSrc/jdk8/sun/text/resources/cldr/bg/FormatData_bg.java
Normal file
@@ -0,0 +1,292 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.bg;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_bg extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u044f\u043d\u0443\u0430\u0440\u0438",
|
||||
"\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438",
|
||||
"\u043c\u0430\u0440\u0442",
|
||||
"\u0430\u043f\u0440\u0438\u043b",
|
||||
"\u043c\u0430\u0439",
|
||||
"\u044e\u043d\u0438",
|
||||
"\u044e\u043b\u0438",
|
||||
"\u0430\u0432\u0433\u0443\u0441\u0442",
|
||||
"\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438",
|
||||
"\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438",
|
||||
"\u043d\u043e\u0435\u043c\u0432\u0440\u0438",
|
||||
"\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u044f\u043d.",
|
||||
"\u0444\u0435\u0432\u0440.",
|
||||
"\u043c\u0430\u0440\u0442",
|
||||
"\u0430\u043f\u0440.",
|
||||
"\u043c\u0430\u0439",
|
||||
"\u044e\u043d\u0438",
|
||||
"\u044e\u043b\u0438",
|
||||
"\u0430\u0432\u0433.",
|
||||
"\u0441\u0435\u043f\u0442.",
|
||||
"\u043e\u043a\u0442.",
|
||||
"\u043d\u043e\u0435\u043c.",
|
||||
"\u0434\u0435\u043a.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u044f",
|
||||
"\u0444",
|
||||
"\u043c",
|
||||
"\u0430",
|
||||
"\u043c",
|
||||
"\u044e",
|
||||
"\u044e",
|
||||
"\u0430",
|
||||
"\u0441",
|
||||
"\u043e",
|
||||
"\u043d",
|
||||
"\u0434",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u043d\u0435\u0434\u0435\u043b\u044f",
|
||||
"\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a",
|
||||
"\u0432\u0442\u043e\u0440\u043d\u0438\u043a",
|
||||
"\u0441\u0440\u044f\u0434\u0430",
|
||||
"\u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a",
|
||||
"\u043f\u0435\u0442\u044a\u043a",
|
||||
"\u0441\u044a\u0431\u043e\u0442\u0430",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u043d\u0434",
|
||||
"\u043f\u043d",
|
||||
"\u0432\u0442",
|
||||
"\u0441\u0440",
|
||||
"\u0447\u0442",
|
||||
"\u043f\u0442",
|
||||
"\u0441\u0431",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u043d",
|
||||
"\u043f",
|
||||
"\u0432",
|
||||
"\u0441",
|
||||
"\u0447",
|
||||
"\u043f",
|
||||
"\u0441",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1-\u0432\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
|
||||
"2-\u0440\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
|
||||
"3-\u0442\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
|
||||
"4-\u0442\u043e \u0442\u0440\u0438\u043c\u0435\u0441\u0435\u0447\u0438\u0435",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"I \u0442\u0440\u0438\u043c.",
|
||||
"II \u0442\u0440\u0438\u043c.",
|
||||
"III \u0442\u0440\u0438\u043c.",
|
||||
"IV \u0442\u0440\u0438\u043c.",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterAbbreviations",
|
||||
new String[] {
|
||||
"1 \u0442\u0440\u0438\u043c.",
|
||||
"2 \u0442\u0440\u0438\u043c.",
|
||||
"3 \u0442\u0440\u0438\u043c.",
|
||||
"4 \u0442\u0440\u0438\u043c.",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u043f\u0440. \u043e\u0431.",
|
||||
"\u0441\u043b. \u043e\u0431.",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"\u043f\u0440.\u0425\u0440.",
|
||||
"\u0441\u043b.\u0425\u0440.",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u043f\u0440. \u043d. \u0435.",
|
||||
"\u043e\u0442 \u043d. \u0435.",
|
||||
}
|
||||
},
|
||||
{ "narrow.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"\u0441\u043b.\u043d.\u0435.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u0435\u0440\u0430" },
|
||||
{ "field.year", "\u0433\u043e\u0434\u0438\u043d\u0430" },
|
||||
{ "field.month", "\u043c\u0435\u0441\u0435\u0446" },
|
||||
{ "field.week", "\u0441\u0435\u0434\u043c\u0438\u0446\u0430" },
|
||||
{ "field.weekday", "\u0414\u0435\u043d \u043e\u0442 \u0441\u0435\u0434\u043c\u0438\u0446\u0430\u0442\u0430" },
|
||||
{ "field.dayperiod", "\u0434\u0435\u043d" },
|
||||
{ "field.hour", "\u0447\u0430\u0441" },
|
||||
{ "field.minute", "\u043c\u0438\u043d\u0443\u0442\u0430" },
|
||||
{ "field.second", "\u0441\u0435\u043a\u0443\u043d\u0434\u0430" },
|
||||
{ "field.zone", "\u0437\u043e\u043d\u0430" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"dd MMMM y, EEEE",
|
||||
"dd MMMM y",
|
||||
"dd.MM.yyyy",
|
||||
"dd.MM.yy",
|
||||
}
|
||||
},
|
||||
{ "DateTimePatterns",
|
||||
new String[] {
|
||||
"{1}, {0}",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNames",
|
||||
new String[] {
|
||||
"\u043c\u0443\u0445\u0430\u0440\u0430\u043c",
|
||||
"\u0441\u0430\u0444\u0430\u0440",
|
||||
"\u0440\u0430\u0431\u0438-1",
|
||||
"\u0440\u0430\u0431\u0438-2",
|
||||
"\u0434\u0436\u0443\u043c\u0430\u0434\u0430-1",
|
||||
"\u0434\u0436\u0443\u043c\u0430\u0434\u0430-2",
|
||||
"\u0440\u0430\u0434\u0436\u0430\u0431",
|
||||
"\u0448\u0430\u0431\u0430\u043d",
|
||||
"\u0440\u0430\u043c\u0430\u0437\u0430\u043d",
|
||||
"\u0428\u0430\u0432\u0430\u043b",
|
||||
"\u0414\u0445\u0443\u043b-\u041a\u0430\u0430\u0434\u0430",
|
||||
"\u0414\u0445\u0443\u043b-\u0445\u0438\u0434\u0436\u0430",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "\u0418\u0441\u043b\u044f\u043c\u0441\u043a\u0438 \u0446\u0438\u0432\u0438\u043b\u0435\u043d \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamicc", "\u0418\u0441\u043b\u044f\u043c\u0441\u043a\u0438 \u0446\u0438\u0432\u0438\u043b\u0435\u043d \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.buddhist", "\u0411\u0443\u0434\u0438\u0441\u0442\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.islamic", "\u0418\u0441\u043b\u044f\u043c\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.gregorian", "\u0413\u0440\u0438\u0433\u043e\u0440\u0438\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.gregory", "\u0413\u0440\u0438\u0433\u043e\u0440\u0438\u0430\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "calendarname.roc", "\u041a\u0430\u043b\u0435\u043d\u0434\u0430\u0440 \u043d\u0430 \u0420\u0435\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u041a\u0438\u0442\u0430\u0439" },
|
||||
{ "calendarname.japanese", "\u042f\u043f\u043e\u043d\u0441\u043a\u0438 \u043a\u0430\u043b\u0435\u043d\u0434\u0430\u0440" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
218
jdkSrc/jdk8/sun/text/resources/cldr/bm/FormatData_bm.java
Normal file
218
jdkSrc/jdk8/sun/text/resources/cldr/bm/FormatData_bm.java
Normal file
@@ -0,0 +1,218 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.bm;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_bm extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"zanwuye",
|
||||
"feburuye",
|
||||
"marisi",
|
||||
"awirili",
|
||||
"m\u025b",
|
||||
"zuw\u025bn",
|
||||
"zuluye",
|
||||
"uti",
|
||||
"s\u025btanburu",
|
||||
"\u0254kut\u0254buru",
|
||||
"nowanburu",
|
||||
"desanburu",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"zan",
|
||||
"feb",
|
||||
"nar",
|
||||
"awi",
|
||||
"m\u025b",
|
||||
"zuw",
|
||||
"zul",
|
||||
"uti",
|
||||
"s\u025bt",
|
||||
"\u0254ku",
|
||||
"now",
|
||||
"des",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"Z",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"Z",
|
||||
"Z",
|
||||
"U",
|
||||
"S",
|
||||
"\u0186",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"kari",
|
||||
"nt\u025bn\u025b",
|
||||
"tarata",
|
||||
"araba",
|
||||
"alamisa",
|
||||
"juma",
|
||||
"sibiri",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"kar",
|
||||
"nt\u025b",
|
||||
"tar",
|
||||
"ara",
|
||||
"ala",
|
||||
"jum",
|
||||
"sib",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"K",
|
||||
"N",
|
||||
"T",
|
||||
"A",
|
||||
"A",
|
||||
"J",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"kalo saba f\u0254l\u0254",
|
||||
"kalo saba filanan",
|
||||
"kalo saba sabanan",
|
||||
"kalo saba naaninan",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"KS1",
|
||||
"KS2",
|
||||
"KS3",
|
||||
"KS4",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"jezu krisiti \u0272\u025b",
|
||||
"jezu krisiti mink\u025b",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"J.-C. \u0272\u025b",
|
||||
"ni J.-C.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "tile" },
|
||||
{ "field.year", "san" },
|
||||
{ "field.month", "kalo" },
|
||||
{ "field.week", "d\u0254g\u0254kun" },
|
||||
{ "field.weekday", "don" },
|
||||
{ "field.dayperiod", "s\u0254g\u0254ma/tile/wula/su" },
|
||||
{ "field.hour", "l\u025br\u025b" },
|
||||
{ "field.minute", "miniti" },
|
||||
{ "field.second", "sekondi" },
|
||||
{ "field.zone", "sigikun tilena" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM, y",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
304
jdkSrc/jdk8/sun/text/resources/cldr/bn/FormatData_bn.java
Normal file
304
jdkSrc/jdk8/sun/text/resources/cldr/bn/FormatData_bn.java
Normal file
@@ -0,0 +1,304 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.bn;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_bn extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
|
||||
"\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0",
|
||||
"\u09ae\u09be\u09b0\u09cd\u099a",
|
||||
"\u098f\u09aa\u09cd\u09b0\u09bf\u09b2",
|
||||
"\u09ae\u09c7",
|
||||
"\u099c\u09c1\u09a8",
|
||||
"\u099c\u09c1\u09b2\u09be\u0987",
|
||||
"\u0986\u0997\u09b8\u09cd\u099f",
|
||||
"\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0",
|
||||
"\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0",
|
||||
"\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0",
|
||||
"\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u099c\u09be",
|
||||
"\u09ab\u09c7",
|
||||
"\u09ae\u09be",
|
||||
"\u098f",
|
||||
"\u09ae\u09c7",
|
||||
"\u099c\u09c1\u09a8",
|
||||
"\u099c\u09c1",
|
||||
"\u0986",
|
||||
"\u09b8\u09c7",
|
||||
"\u0985",
|
||||
"\u09a8",
|
||||
"\u09a1\u09bf",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u09b0\u09ac\u09bf\u09ac\u09be\u09b0",
|
||||
"\u09b8\u09cb\u09ae\u09ac\u09be\u09b0",
|
||||
"\u09ae\u0999\u09cd\u0997\u09b2\u09ac\u09be\u09b0",
|
||||
"\u09ac\u09c1\u09a7\u09ac\u09be\u09b0",
|
||||
"\u09ac\u09c3\u09b9\u09b7\u09cd\u09aa\u09a4\u09bf\u09ac\u09be\u09b0",
|
||||
"\u09b6\u09c1\u0995\u09cd\u09b0\u09ac\u09be\u09b0",
|
||||
"\u09b6\u09a8\u09bf\u09ac\u09be\u09b0",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u09b0\u09ac\u09bf",
|
||||
"\u09b8\u09cb\u09ae",
|
||||
"\u09ae\u0999\u09cd\u0997\u09b2",
|
||||
"\u09ac\u09c1\u09a7",
|
||||
"\u09ac\u09c3\u09b9\u09b8\u09cd\u09aa\u09a4\u09bf",
|
||||
"\u09b6\u09c1\u0995\u09cd\u09b0",
|
||||
"\u09b6\u09a8\u09bf",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u09b0",
|
||||
"\u09b8\u09cb",
|
||||
"\u09ae",
|
||||
"\u09ac\u09c1",
|
||||
"\u09ac\u09c3",
|
||||
"\u09b6\u09c1",
|
||||
"\u09b6",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"\u09aa\u09cd\u09b0\u09a5\u09ae \u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6",
|
||||
"\u09a6\u09cd\u09ac\u09bf\u09a4\u09c0\u09af\u09bc \u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6",
|
||||
"\u09a4\u09c3\u09a4\u09c0\u09af\u09bc \u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6",
|
||||
"\u099a\u09a4\u09c1\u09b0\u09cd\u09a5 \u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"\u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6 \u09e7",
|
||||
"\u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6 \u09e8",
|
||||
"\u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6 \u09e9",
|
||||
"\u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6 \u09ea",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterNarrows",
|
||||
new String[] {
|
||||
"\u09e7",
|
||||
"\u09e8",
|
||||
"\u09e9",
|
||||
"\u09ea",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u09aa\u09c2\u09b0\u09cd\u09ac\u09be\u09b9\u09cd\u09a3",
|
||||
"\u0985\u09aa\u09b0\u09be\u09b9\u09cd\u09a3",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u0996\u09c3\u09b7\u09cd\u099f\u09aa\u09c2\u09b0\u09cd\u09ac",
|
||||
"\u0996\u09c3\u09b7\u09cd\u099f\u09be\u09ac\u09cd\u09a6",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u09af\u09c1\u0997" },
|
||||
{ "field.year", "\u09ac\u099b\u09b0" },
|
||||
{ "field.month", "\u09ae\u09be\u09b8" },
|
||||
{ "field.week", "\u09b8\u09aa\u09cd\u09a4\u09be\u09b9" },
|
||||
{ "field.weekday", "\u09b8\u09aa\u09cd\u09a4\u09be\u09b9\u09c7\u09b0 \u09a6\u09bf\u09a8" },
|
||||
{ "field.dayperiod", "\u09aa\u09c2\u09b0\u09cd\u09ac\u09be\u09b9\u09cd\u09a3/\u0985\u09aa\u09b0\u09be\u09b9\u09cd\u09a3" },
|
||||
{ "field.hour", "\u0998\u09a8\u09cd\u099f\u09be" },
|
||||
{ "field.minute", "\u09ae\u09bf\u09a8\u09bf\u099f" },
|
||||
{ "field.second", "\u09b8\u09c7\u0995\u09c7\u09a8\u09cd\u09a1" },
|
||||
{ "field.zone", "\u098f\u09b2\u09be\u0995\u09be" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y",
|
||||
"d MMMM, y",
|
||||
"d MMM, y",
|
||||
"d/M/yy",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNames",
|
||||
new String[] {
|
||||
"\u09ae\u09b9\u09b0\u09b0\u09ae",
|
||||
"\u09b8\u09ab\u09b0",
|
||||
"\u09b0\u09ac\u09bf\u0989\u09b2 \u0986\u0989\u09af\u09bc\u09be\u09b2",
|
||||
"\u09b0\u09ac\u09bf\u0989\u09b8 \u09b8\u09be\u09a8\u09bf",
|
||||
"\u099c\u09ae\u09be\u09a6\u09bf\u0989\u09b2 \u0986\u0989\u09af\u09bc\u09be\u09b2",
|
||||
"\u099c\u09ae\u09be\u09a6\u09bf\u0989\u09b8 \u09b8\u09be\u09a8\u09bf",
|
||||
"\u09b0\u099c\u09ac",
|
||||
"\u09b6\u09be'\u09ac\u09be\u09a8",
|
||||
"\u09b0\u09ae\u099c\u09be\u09a8",
|
||||
"\u09b6\u09be\u0993\u09af\u09bc\u09be\u09b2",
|
||||
"\u099c\u09cd\u09ac\u09bf\u09b2\u0995\u09a6",
|
||||
"\u099c\u09cd\u09ac\u09bf\u09b2\u09b9\u099c\u09cd\u099c",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.MonthNarrows",
|
||||
new String[] {
|
||||
"\u09e7",
|
||||
"\u09e8",
|
||||
"\u09e9",
|
||||
"\u09ea",
|
||||
"\u09eb",
|
||||
"\u09ec",
|
||||
"\u09ed",
|
||||
"\u09ee",
|
||||
"\u09ef",
|
||||
"\u09e7\u09e6",
|
||||
"\u09e7\u09e7",
|
||||
"\u09e7\u09e8",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "islamic.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"\u09af\u09c1\u0997",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "\u0987\u09b8\u09b2\u09be\u09ae\u09bf\u0995-\u09b8\u09bf\u09ad\u09bf\u09b2 \u09ac\u09b0\u09cd\u09b7\u09aa\u099e\u09cd\u099c\u09c0" },
|
||||
{ "calendarname.islamicc", "\u0987\u09b8\u09b2\u09be\u09ae\u09bf\u0995-\u09b8\u09bf\u09ad\u09bf\u09b2 \u09ac\u09b0\u09cd\u09b7\u09aa\u099e\u09cd\u099c\u09c0" },
|
||||
{ "calendarname.buddhist", "\u09ac\u09cc\u09a6\u09cd\u09a7 \u09ac\u09b0\u09cd\u09b7\u09aa\u099e\u09cd\u099c\u09c0" },
|
||||
{ "calendarname.islamic", "\u0987\u09b8\u09b2\u09be\u09ae\u09bf\u0995 \u09ac\u09b0\u09cd\u09b7\u09aa\u099e\u09cd\u099c\u09c0" },
|
||||
{ "calendarname.gregorian", "\u0997\u09cd\u09b0\u09bf\u0997\u09cb\u09b0\u09bf\u09af\u09bc\u09be\u09a8 \u09ac\u09b0\u09cd\u09b7\u09aa\u099e\u09cd\u099c\u09c0" },
|
||||
{ "calendarname.gregory", "\u0997\u09cd\u09b0\u09bf\u0997\u09cb\u09b0\u09bf\u09af\u09bc\u09be\u09a8 \u09ac\u09b0\u09cd\u09b7\u09aa\u099e\u09cd\u099c\u09c0" },
|
||||
{ "calendarname.roc", "\u0997\u09a3\u09aa\u09cd\u09b0\u099c\u09be\u09a4\u09a8\u09cd\u09a4\u09cd\u09b0\u09c0 \u099a\u09c0\u09a8\u09be \u09ac\u09b0\u09cd\u09b7\u09aa\u099e\u09cd\u099c\u09c0" },
|
||||
{ "calendarname.japanese", "\u099c\u09be\u09aa\u09be\u09a8\u09bf \u09ac\u09b0\u09cd\u09b7\u09aa\u099e\u09cd\u099c\u09c0" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "beng.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u09e6",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"\u09b8\u0982\u0996\u09cd\u09af\u09be \u09a8\u09be",
|
||||
}
|
||||
},
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##,##0.###",
|
||||
"#,##,##0.00\u00a4;(#,##,##0.00\u00a4)",
|
||||
"#,##,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
91
jdkSrc/jdk8/sun/text/resources/cldr/bn/FormatData_bn_IN.java
Normal file
91
jdkSrc/jdk8/sun/text/resources/cldr/bn/FormatData_bn_IN.java
Normal file
@@ -0,0 +1,91 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.bn;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_bn_IN extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"\u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995",
|
||||
"\u09b7\u09be\u09a3\u09cd\u09ae\u09be\u09b8\u09bf\u0995",
|
||||
"\u09a4\u09c3\u09a4\u09c0\u09af\u09bc \u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6",
|
||||
"\u09ac\u09be\u09b0\u09cd\u09b7\u09bf\u0995",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"\u09a4\u09cd\u09b0\u09c8\u09ae\u09be\u09b8\u09bf\u0995",
|
||||
"\u09b7\u09be\u09a3\u09cd\u09ae\u09be\u09b8\u09bf\u0995",
|
||||
"\u099a\u09a4\u09c1\u09b0\u09cd\u09a5\u09be\u0982\u09b6 \u09e9",
|
||||
"\u09ac\u09be\u09b0\u09cd\u09b7\u09bf\u0995",
|
||||
}
|
||||
},
|
||||
{ "field.hour", "\u0998\u09a3\u09cd\u099f\u09be" },
|
||||
{ "field.second", "\u09b8\u09c7\u0995\u09c7\u09a3\u09cd\u09a1" },
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
204
jdkSrc/jdk8/sun/text/resources/cldr/bo/FormatData_bo.java
Normal file
204
jdkSrc/jdk8/sun/text/resources/cldr/bo/FormatData_bo.java
Normal file
@@ -0,0 +1,204 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.bo;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_bo extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0f5f\u0fb3\u0f0b\u0f21",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f22",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f23",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f24",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f25",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f26",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f27",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f28",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f29",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f21\u0f20",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f21\u0f21",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f21\u0f22",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u0f42\u0f5f\u0f60\u0f0b\u0f49\u0f72\u0f0b\u0f58\u0f0b",
|
||||
"\u0f42\u0f5f\u0f60\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f0b",
|
||||
"\u0f42\u0f5f\u0f60\u0f0b\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b",
|
||||
"\u0f42\u0f5f\u0f60\u0f0b\u0f67\u0fb3\u0f42\u0f0b\u0f54\u0f0b",
|
||||
"\u0f42\u0f5f\u0f60\u0f0b\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74\u0f0b",
|
||||
"\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0f44\u0f66\u0f0b",
|
||||
"\u0f42\u0f5f\u0f60\u0f0b\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u0f49\u0f72\u0f0b\u0f58\u0f0b",
|
||||
"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b",
|
||||
"\u0f58\u0f72\u0f42\u0f0b\u0f51\u0f58\u0f62\u0f0b",
|
||||
"\u0f67\u0fb3\u0f42\u0f0b\u0f54\u0f0b",
|
||||
"\u0f55\u0f74\u0f62\u0f0b\u0f56\u0f74\u0f0b",
|
||||
"\u0f66\u0f44\u0f66\u0f0b",
|
||||
"\u0f66\u0fa4\u0f7a\u0f53\u0f0b\u0f54\u0f0b",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u0f49\u0f72",
|
||||
"\u0f5f\u0fb3",
|
||||
"\u0f58\u0f72",
|
||||
"\u0f67\u0fb3",
|
||||
"\u0f55\u0f74",
|
||||
"\u0f66",
|
||||
"\u0f66\u0fa4\u0f7a",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u0f66\u0f94\u0f0b\u0f51\u0fb2\u0f7c\u0f0b",
|
||||
"\u0f55\u0fb1\u0f72\u0f0b\u0f51\u0fb2\u0f7c\u0f0b",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f63\u0f7c\u0f0b\u0f66\u0f94\u0f7c\u0f53\u0f0d",
|
||||
"\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f63\u0f7c\u0f0d",
|
||||
}
|
||||
},
|
||||
{ "field.year", "\u0f63\u0f7c\u0f0d" },
|
||||
{ "field.month", "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b" },
|
||||
{ "field.hour", "\u0f46\u0f74\u0f0b\u0f59\u0f7c\u0f0b" },
|
||||
{ "field.minute", "\u0f66\u0f90\u0f62\u0f0b\u0f58\u0f0d" },
|
||||
{ "field.second", "\u0f66\u0f90\u0f62\u0f0b\u0f46\u0f0d" },
|
||||
{ "field.zone", "\u0f51\u0f74\u0f66\u0f0b\u0f5a\u0f7c\u0f51\u0f0d" },
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, y MMMM dd",
|
||||
"\u0f66\u0fa6\u0fb1\u0f72\u0f0b\u0f63\u0f7c\u0f0by MMMM\u0f60\u0f72\u0f0b\u0f59\u0f7a\u0f66\u0f0bd\u0f51",
|
||||
"y \u0f63\u0f7c\u0f0b\u0f60\u0f72\u0f0bMMM\u0f59\u0f7a\u0f66\u0f0bd",
|
||||
"yyyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "tibt.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0f20",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"\u0f68\u0f44\u0f0b\u0f58\u0f7a\u0f53\u0f0b",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4\u00a0#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
236
jdkSrc/jdk8/sun/text/resources/cldr/br/FormatData_br.java
Normal file
236
jdkSrc/jdk8/sun/text/resources/cldr/br/FormatData_br.java
Normal file
@@ -0,0 +1,236 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.br;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_br extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Genver",
|
||||
"C\u02bchwevrer",
|
||||
"Meurzh",
|
||||
"Ebrel",
|
||||
"Mae",
|
||||
"Mezheven",
|
||||
"Gouere",
|
||||
"Eost",
|
||||
"Gwengolo",
|
||||
"Here",
|
||||
"Du",
|
||||
"Kerzu",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"Genver",
|
||||
"C\u02bchwevrer",
|
||||
"Meurzh",
|
||||
"Ebrel",
|
||||
"Mae",
|
||||
"Mezheven",
|
||||
"Gouere",
|
||||
"Eost",
|
||||
"Gwengolo",
|
||||
"Here",
|
||||
"Du",
|
||||
"Kerzu",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Gen",
|
||||
"C\u02bchwe",
|
||||
"Meur",
|
||||
"Ebr",
|
||||
"Mae",
|
||||
"Mezh",
|
||||
"Goue",
|
||||
"Eost",
|
||||
"Gwen",
|
||||
"Here",
|
||||
"Du",
|
||||
"Ker",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"Gen",
|
||||
"C\u02bchwe",
|
||||
"Meur",
|
||||
"Ebr",
|
||||
"Mae",
|
||||
"Mezh",
|
||||
"Goue",
|
||||
"Eost",
|
||||
"Gwen",
|
||||
"Here",
|
||||
"Du",
|
||||
"Ker",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Sul",
|
||||
"Lun",
|
||||
"Meurzh",
|
||||
"Merc\u02bcher",
|
||||
"Yaou",
|
||||
"Gwener",
|
||||
"Sadorn",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNames",
|
||||
new String[] {
|
||||
"Sul",
|
||||
"Lun",
|
||||
"Meurzh",
|
||||
"Merc\u02bcher",
|
||||
"Yaou",
|
||||
"Gwener",
|
||||
"Sadorn",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"sul",
|
||||
"lun",
|
||||
"meu.",
|
||||
"mer.",
|
||||
"yaou",
|
||||
"gwe.",
|
||||
"sad.",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"sul",
|
||||
"lun",
|
||||
"meu.",
|
||||
"mer.",
|
||||
"yaou",
|
||||
"gwe.",
|
||||
"sad.",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"su",
|
||||
"lu",
|
||||
"mz",
|
||||
"mc",
|
||||
"ya",
|
||||
"gw",
|
||||
"sa",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNarrows",
|
||||
new String[] {
|
||||
"su",
|
||||
"lu",
|
||||
"mz",
|
||||
"mc",
|
||||
"ya",
|
||||
"gw",
|
||||
"sa",
|
||||
}
|
||||
},
|
||||
{ "field.month", "miz" },
|
||||
{ "field.week", "sizhun" },
|
||||
{ "field.hour", "eur" },
|
||||
{ "field.minute", "munut" },
|
||||
{ "field.second", "eilenn" },
|
||||
{ "calendarname.gregorian", "deiziadur gregorian" },
|
||||
{ "calendarname.gregory", "deiziadur gregorian" },
|
||||
{ "calendarname.roc", "deiziadur Republik Sina" },
|
||||
{ "calendarname.islamic-civil", "deiziadur islamek keodedel" },
|
||||
{ "calendarname.islamicc", "deiziadur islamek keodedel" },
|
||||
{ "calendarname.japanese", "deiziadur japanat" },
|
||||
{ "calendarname.buddhist", "deiziadur boudaat" },
|
||||
{ "calendarname.islamic", "deiziadur islamek" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
217
jdkSrc/jdk8/sun/text/resources/cldr/brx/FormatData_brx.java
Normal file
217
jdkSrc/jdk8/sun/text/resources/cldr/brx/FormatData_brx.java
Normal file
@@ -0,0 +1,217 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.brx;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_brx extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u091c\u093e\u0928\u0941\u0935\u093e\u0930\u0940",
|
||||
"\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940",
|
||||
"\u092e\u093e\u0930\u094d\u0938",
|
||||
"\u090f\u092b\u094d\u0930\u093f\u0932",
|
||||
"\u092e\u0947",
|
||||
"\u091c\u0941\u0928",
|
||||
"\u091c\u0941\u0932\u093e\u0907",
|
||||
"\u0906\u0917\u0938\u094d\u0925",
|
||||
"\u0938\u0947\u092c\u0925\u0947\u091c\u094d\u092c\u093c\u0930",
|
||||
"\u0905\u0916\u0925\u092c\u0930",
|
||||
"\u0928\u092c\u0947\u091c\u094d\u092c\u093c\u0930",
|
||||
"\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u091c",
|
||||
"\u092b\u0947",
|
||||
"\u092e\u093e",
|
||||
"\u090f",
|
||||
"\u092e\u0947",
|
||||
"\u091c\u0941",
|
||||
"\u091c\u0941",
|
||||
"\u0906",
|
||||
"\u0938\u0947",
|
||||
"\u0905",
|
||||
"\u0928",
|
||||
"\u0926\u093f",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u0930\u092c\u093f\u092c\u093e\u0930",
|
||||
"\u0938\u092e\u092c\u093e\u0930",
|
||||
"\u092e\u0902\u0917\u0932\u092c\u093e\u0930",
|
||||
"\u092c\u0941\u0926\u092c\u093e\u0930",
|
||||
"\u092c\u093f\u0938\u0925\u093f\u092c\u093e\u0930",
|
||||
"\u0938\u0941\u0916\u0941\u0930\u092c\u093e\u0930",
|
||||
"\u0938\u0941\u0928\u093f\u092c\u093e\u0930",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u0930\u092c\u093f",
|
||||
"\u0938\u092e",
|
||||
"\u092e\u0902\u0917\u0932",
|
||||
"\u092c\u0941\u0926",
|
||||
"\u092c\u093f\u0938\u0925\u093f",
|
||||
"\u0938\u0941\u0916\u0941\u0930",
|
||||
"\u0938\u0941\u0928\u093f",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u0930",
|
||||
"\u0938",
|
||||
"\u092e\u0902",
|
||||
"\u092c\u0941",
|
||||
"\u092c\u093f",
|
||||
"\u0938\u0941",
|
||||
"\u0938\u0941",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"\u0938\u093f\u0925\u093e\u0938\u0947/\u0916\u094b\u0928\u094d\u0926\u094b\u0938\u0947/\u092c\u093e\u0939\u093e\u0917\u094b\u0938\u0947",
|
||||
"\u0916\u093e\u0935\u0938\u0947/\u0916\u094b\u0928\u094d\u0926\u094b\u0928\u0948/\u092c\u093e\u0939\u093e\u0917\u094b\u0928\u0948",
|
||||
"\u0916\u093e\u0935\u0925\u093e\u092e/\u0916\u094b\u0928\u094d\u0926\u094b\u0925\u093e\u092e/\u092c\u093e\u0939\u093e\u0917\u094b\u0925\u093e\u092e",
|
||||
"\u0916\u093e\u0935\u092c\u094d\u0930\u0948/\u0916\u094b\u0928\u094d\u0926\u094b\u092c\u094d\u0930\u0948/\u092b\u0941\u0930\u093e/\u0906\u092c\u0941\u0902",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u092b\u0941\u0902",
|
||||
"\u092c\u0947\u0932\u093e\u0938\u0947",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u0908\u0938\u093e.\u092a\u0942\u0930\u094d\u0935",
|
||||
"\u0938\u0928",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u091c\u094c\u0925\u093e\u092f" },
|
||||
{ "field.year", "\u092c\u094b\u0938\u094b\u0930" },
|
||||
{ "field.month", "\u0926\u093e\u0928" },
|
||||
{ "field.week", "\u0938\u092c\u0925\u093e/\u0939\u092c\u0925\u093e" },
|
||||
{ "field.weekday", "\u0938\u092a\u094d\u0924\u093e\u0939 \u0915\u0947 \u0926\u093f\u0928" },
|
||||
{ "field.dayperiod", "\u092b\u0941\u0902/\u092c\u0947\u0932\u093e\u0938\u0947" },
|
||||
{ "field.hour", "\u0930\u093f\u0902\u0917\u093e" },
|
||||
{ "field.minute", "\u092e\u093f\u0928\u093f\u0925" },
|
||||
{ "field.second", "\u0938\u0947\u0916\u0947\u0928\u094d\u0926" },
|
||||
{ "field.zone", "\u0913\u0928\u0938\u094b\u0932" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y",
|
||||
"MMMM d, y",
|
||||
"MMM d, y",
|
||||
"M/d/yy",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "\u0907\u0938\u094d\u0932\u093e\u092e\u0940 \u0928\u093e\u0917\u0930\u093f\u0915 \u092a\u0902\u091a\u093e\u0902\u0917" },
|
||||
{ "calendarname.islamicc", "\u0907\u0938\u094d\u0932\u093e\u092e\u0940 \u0928\u093e\u0917\u0930\u093f\u0915 \u092a\u0902\u091a\u093e\u0902\u0917" },
|
||||
{ "calendarname.buddhist", "\u092c\u094c\u0926\u094d\u0927 \u092a\u0902\u091a\u093e\u0902\u0917" },
|
||||
{ "calendarname.islamic", "\u0907\u0938\u094d\u0932\u093e\u092e\u0940 \u092a\u0902\u091a\u093e\u0902\u0917" },
|
||||
{ "calendarname.gregorian", "\u0917\u094d\u0930\u0947\u0917\u0930\u0940\u0905\u0928 \u092a\u0902\u091a\u093e\u0902\u0917" },
|
||||
{ "calendarname.gregory", "\u0917\u094d\u0930\u0947\u0917\u0930\u0940\u0905\u0928 \u092a\u0902\u091a\u093e\u0902\u0917" },
|
||||
{ "calendarname.roc", "\u091a\u0940\u0928\u0940 \u0917\u0923\u0924\u0902\u0924\u094d\u0930 \u092a\u0902\u091a\u093e\u0902\u0917" },
|
||||
{ "calendarname.japanese", "\u091c\u093e\u092a\u093e\u0928\u0940 \u092a\u0902\u091a\u093e\u0902\u0917" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##,##0.###",
|
||||
"\u00a4\u00a0#,##,##0.00",
|
||||
"#,##,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
252
jdkSrc/jdk8/sun/text/resources/cldr/bs/FormatData_bs.java
Normal file
252
jdkSrc/jdk8/sun/text/resources/cldr/bs/FormatData_bs.java
Normal file
@@ -0,0 +1,252 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.bs;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_bs extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"januar",
|
||||
"februar",
|
||||
"mart",
|
||||
"april",
|
||||
"maj",
|
||||
"juni",
|
||||
"juli",
|
||||
"avgust",
|
||||
"septembar",
|
||||
"oktobar",
|
||||
"novembar",
|
||||
"decembar",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"jan",
|
||||
"feb",
|
||||
"mar",
|
||||
"apr",
|
||||
"maj",
|
||||
"jun",
|
||||
"jul",
|
||||
"avg",
|
||||
"sep",
|
||||
"okt",
|
||||
"nov",
|
||||
"dec",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"j",
|
||||
"f",
|
||||
"m",
|
||||
"a",
|
||||
"m",
|
||||
"j",
|
||||
"j",
|
||||
"a",
|
||||
"s",
|
||||
"o",
|
||||
"n",
|
||||
"d",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"nedjelja",
|
||||
"ponedjeljak",
|
||||
"utorak",
|
||||
"srijeda",
|
||||
"\u010detvrtak",
|
||||
"petak",
|
||||
"subota",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"ned",
|
||||
"pon",
|
||||
"uto",
|
||||
"sri",
|
||||
"\u010det",
|
||||
"pet",
|
||||
"sub",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"Prvi kvartal",
|
||||
"Drugi kvartal",
|
||||
"Tre\u0107i kvartal",
|
||||
"\u010cetvrti kvartal",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"K1",
|
||||
"K2",
|
||||
"K3",
|
||||
"K4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"pre podne",
|
||||
"popodne",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Pre nove ere",
|
||||
"Nove ere",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"p. n. e.",
|
||||
"n. e",
|
||||
}
|
||||
},
|
||||
{ "field.era", "era" },
|
||||
{ "field.year", "godina" },
|
||||
{ "field.month", "mesec" },
|
||||
{ "field.week", "nedelja" },
|
||||
{ "field.weekday", "dan u nedelji" },
|
||||
{ "field.dayperiod", "pre podne/ popodne" },
|
||||
{ "field.hour", "\u010das" },
|
||||
{ "field.minute", "minut" },
|
||||
{ "field.second", "sekund" },
|
||||
{ "field.zone", "zona" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, dd. MMMM y.",
|
||||
"dd. MMMM y.",
|
||||
"dd.MM.y.",
|
||||
"dd.MM.yy.",
|
||||
}
|
||||
},
|
||||
{ "islamic.Eras",
|
||||
new String[] {
|
||||
"",
|
||||
"AH",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, dd. MMMM y. G",
|
||||
"dd. MMMM y. G",
|
||||
"dd.MM.y. G",
|
||||
"dd.MM.y. G",
|
||||
}
|
||||
},
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, dd. MMMM y. GGGG",
|
||||
"dd. MMMM y. GGGG",
|
||||
"dd.MM.y. GGGG",
|
||||
"dd.MM.y. GGGG",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "Islamski civilni kalendar" },
|
||||
{ "calendarname.islamicc", "Islamski civilni kalendar" },
|
||||
{ "calendarname.buddhist", "Budisti\u010dki kalendar" },
|
||||
{ "calendarname.islamic", "Islamski kalendar" },
|
||||
{ "calendarname.gregorian", "Gregorijanski kalendar" },
|
||||
{ "calendarname.gregory", "Gregorijanski kalendar" },
|
||||
{ "calendarname.roc", "Kalendar Republike Kine" },
|
||||
{ "calendarname.japanese", "Japanski kalendar" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
82
jdkSrc/jdk8/sun/text/resources/cldr/byn/FormatData_byn.java
Normal file
82
jdkSrc/jdk8/sun/text/resources/cldr/byn/FormatData_byn.java
Normal file
@@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.byn;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_byn extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
350
jdkSrc/jdk8/sun/text/resources/cldr/ca/FormatData_ca.java
Normal file
350
jdkSrc/jdk8/sun/text/resources/cldr/ca/FormatData_ca.java
Normal file
@@ -0,0 +1,350 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ca;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ca extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"de gener",
|
||||
"de febrer",
|
||||
"de mar\u00e7",
|
||||
"d\u2019abril",
|
||||
"de maig",
|
||||
"de juny",
|
||||
"de juliol",
|
||||
"d\u2019agost",
|
||||
"de setembre",
|
||||
"d\u2019octubre",
|
||||
"de novembre",
|
||||
"de desembre",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"gener",
|
||||
"febrer",
|
||||
"mar\u00e7",
|
||||
"abril",
|
||||
"maig",
|
||||
"juny",
|
||||
"juliol",
|
||||
"agost",
|
||||
"setembre",
|
||||
"octubre",
|
||||
"novembre",
|
||||
"desembre",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"de gen.",
|
||||
"de febr.",
|
||||
"de mar\u00e7",
|
||||
"d\u2019abr.",
|
||||
"de maig",
|
||||
"de juny",
|
||||
"de jul.",
|
||||
"d\u2019ag.",
|
||||
"de set.",
|
||||
"d\u2019oct.",
|
||||
"de nov.",
|
||||
"de des.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"gen.",
|
||||
"febr.",
|
||||
"mar\u00e7",
|
||||
"abr.",
|
||||
"maig",
|
||||
"juny",
|
||||
"jul.",
|
||||
"ag.",
|
||||
"set.",
|
||||
"oct.",
|
||||
"nov.",
|
||||
"des.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"G",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"J",
|
||||
"G",
|
||||
"A",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNarrows",
|
||||
new String[] {
|
||||
"g",
|
||||
"f",
|
||||
"m",
|
||||
"a",
|
||||
"m",
|
||||
"j",
|
||||
"j",
|
||||
"a",
|
||||
"s",
|
||||
"o",
|
||||
"n",
|
||||
"d",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"diumenge",
|
||||
"dilluns",
|
||||
"dimarts",
|
||||
"dimecres",
|
||||
"dijous",
|
||||
"divendres",
|
||||
"dissabte",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNames",
|
||||
new String[] {
|
||||
"Diumenge",
|
||||
"Dilluns",
|
||||
"Dimarts",
|
||||
"Dimecres",
|
||||
"Dijous",
|
||||
"Divendres",
|
||||
"Dissabte",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"dg.",
|
||||
"dl.",
|
||||
"dt.",
|
||||
"dc.",
|
||||
"dj.",
|
||||
"dv.",
|
||||
"ds.",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"dg",
|
||||
"dl",
|
||||
"dt",
|
||||
"dc",
|
||||
"dj",
|
||||
"dv",
|
||||
"ds",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"G",
|
||||
"l",
|
||||
"T",
|
||||
"C",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNarrows",
|
||||
new String[] {
|
||||
"g",
|
||||
"l",
|
||||
"t",
|
||||
"c",
|
||||
"j",
|
||||
"v",
|
||||
"s",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1r trimestre",
|
||||
"2n trimestre",
|
||||
"3r trimestre",
|
||||
"4t trimestre",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterNames",
|
||||
new String[] {
|
||||
"1r trimestre",
|
||||
"2n trimestre",
|
||||
"3r trimestre",
|
||||
"4t trimestre",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"1T",
|
||||
"2T",
|
||||
"3T",
|
||||
"4T",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterAbbreviations",
|
||||
new String[] {
|
||||
"1T",
|
||||
"2T",
|
||||
"3T",
|
||||
"4T",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"a.m.",
|
||||
"p.m.",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"aC",
|
||||
"dC",
|
||||
}
|
||||
},
|
||||
{ "field.era", "era" },
|
||||
{ "field.year", "any" },
|
||||
{ "field.month", "mes" },
|
||||
{ "field.week", "setmana" },
|
||||
{ "field.weekday", "dia de la setmana" },
|
||||
{ "field.dayperiod", "a.m./p.m." },
|
||||
{ "field.hour", "hora" },
|
||||
{ "field.minute", "minut" },
|
||||
{ "field.second", "segon" },
|
||||
{ "field.zone", "zona" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"H:mm:ss zzzz",
|
||||
"H:mm:ss z",
|
||||
"H:mm:ss",
|
||||
"H:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM 'de' y",
|
||||
"d MMMM 'de' y",
|
||||
"dd/MM/yyyy",
|
||||
"dd/MM/yy",
|
||||
}
|
||||
},
|
||||
{ "calendarname.gregorian", "calendari gregori\u00e0" },
|
||||
{ "calendarname.gregory", "calendari gregori\u00e0" },
|
||||
{ "calendarname.roc", "calendari de la Rep\u00fablica de Xina" },
|
||||
{ "calendarname.islamic-civil", "calendari civil isl\u00e0mic" },
|
||||
{ "calendarname.islamicc", "calendari civil isl\u00e0mic" },
|
||||
{ "calendarname.japanese", "calendari japon\u00e8s" },
|
||||
{ "calendarname.buddhist", "calendari budista" },
|
||||
{ "calendarname.islamic", "calendari musulm\u00e0" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
217
jdkSrc/jdk8/sun/text/resources/cldr/cgg/FormatData_cgg.java
Normal file
217
jdkSrc/jdk8/sun/text/resources/cldr/cgg/FormatData_cgg.java
Normal file
@@ -0,0 +1,217 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.cgg;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_cgg extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Okwokubanza",
|
||||
"Okwakabiri",
|
||||
"Okwakashatu",
|
||||
"Okwakana",
|
||||
"Okwakataana",
|
||||
"Okwamukaaga",
|
||||
"Okwamushanju",
|
||||
"Okwamunaana",
|
||||
"Okwamwenda",
|
||||
"Okwaikumi",
|
||||
"Okwaikumi na kumwe",
|
||||
"Okwaikumi na ibiri",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"KBZ",
|
||||
"KBR",
|
||||
"KST",
|
||||
"KKN",
|
||||
"KTN",
|
||||
"KMK",
|
||||
"KMS",
|
||||
"KMN",
|
||||
"KMW",
|
||||
"KKM",
|
||||
"KNK",
|
||||
"KNB",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"J",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"J",
|
||||
"J",
|
||||
"A",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Sande",
|
||||
"Orwokubanza",
|
||||
"Orwakabiri",
|
||||
"Orwakashatu",
|
||||
"Orwakana",
|
||||
"Orwakataano",
|
||||
"Orwamukaaga",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"SAN",
|
||||
"ORK",
|
||||
"OKB",
|
||||
"OKS",
|
||||
"OKN",
|
||||
"OKT",
|
||||
"OMK",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"S",
|
||||
"K",
|
||||
"R",
|
||||
"S",
|
||||
"N",
|
||||
"T",
|
||||
"M",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"KWOTA 1",
|
||||
"KWOTA 2",
|
||||
"KWOTA 3",
|
||||
"KWOTA 4",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"K1",
|
||||
"K2",
|
||||
"K3",
|
||||
"K4",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Kurisito Atakaijire",
|
||||
"Kurisito Yaijire",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"AD",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Obunaku" },
|
||||
{ "field.year", "Omwaka" },
|
||||
{ "field.month", "Omwezi" },
|
||||
{ "field.week", "Esande" },
|
||||
{ "field.weekday", "Eizooba ry'okukora" },
|
||||
{ "field.dayperiod", "Nyomushana/nyekiro" },
|
||||
{ "field.hour", "Shaaha" },
|
||||
{ "field.minute", "Edakiika" },
|
||||
{ "field.second", "Obucweka/Esekendi" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;-#,##0.00\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
225
jdkSrc/jdk8/sun/text/resources/cldr/chr/FormatData_chr.java
Normal file
225
jdkSrc/jdk8/sun/text/resources/cldr/chr/FormatData_chr.java
Normal file
@@ -0,0 +1,225 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.chr;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_chr extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u13a4\u13c3\u13b8\u13d4\u13c5",
|
||||
"\u13a7\u13a6\u13b5",
|
||||
"\u13a0\u13c5\u13f1",
|
||||
"\u13a7\u13ec\u13c2",
|
||||
"\u13a0\u13c2\u13cd\u13ac\u13d8",
|
||||
"\u13d5\u13ad\u13b7\u13f1",
|
||||
"\u13ab\u13f0\u13c9\u13c2",
|
||||
"\u13a6\u13b6\u13c2",
|
||||
"\u13da\u13b5\u13cd\u13d7",
|
||||
"\u13da\u13c2\u13c5\u13d7",
|
||||
"\u13c5\u13d3\u13d5\u13c6",
|
||||
"\u13a4\u13cd\u13a9\u13f1",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u13a4\u13c3",
|
||||
"\u13a7\u13a6",
|
||||
"\u13a0\u13c5",
|
||||
"\u13a7\u13ec",
|
||||
"\u13a0\u13c2",
|
||||
"\u13d5\u13ad",
|
||||
"\u13ab\u13f0",
|
||||
"\u13a6\u13b6",
|
||||
"\u13da\u13b5",
|
||||
"\u13da\u13c2",
|
||||
"\u13c5\u13d3",
|
||||
"\u13a4\u13cd",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u13a4",
|
||||
"\u13a7",
|
||||
"\u13a0",
|
||||
"\u13a7",
|
||||
"\u13a0",
|
||||
"\u13d5",
|
||||
"\u13ab",
|
||||
"\u13a6",
|
||||
"\u13da",
|
||||
"\u13da",
|
||||
"\u13c5",
|
||||
"\u13a4",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u13a4\u13be\u13d9\u13d3\u13c6\u13cd\u13ac",
|
||||
"\u13a4\u13be\u13d9\u13d3\u13c9\u13c5\u13af",
|
||||
"\u13d4\u13b5\u13c1\u13a2\u13a6",
|
||||
"\u13e6\u13a2\u13c1\u13a2\u13a6",
|
||||
"\u13c5\u13a9\u13c1\u13a2\u13a6",
|
||||
"\u13e7\u13be\u13a9\u13b6\u13cd\u13d7",
|
||||
"\u13a4\u13be\u13d9\u13d3\u13c8\u13d5\u13be",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u13c6\u13cd\u13ac",
|
||||
"\u13c9\u13c5\u13af",
|
||||
"\u13d4\u13b5\u13c1",
|
||||
"\u13e6\u13a2\u13c1",
|
||||
"\u13c5\u13a9\u13c1",
|
||||
"\u13e7\u13be\u13a9",
|
||||
"\u13c8\u13d5\u13be",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u13c6",
|
||||
"\u13c9",
|
||||
"\u13d4",
|
||||
"\u13e6",
|
||||
"\u13c5",
|
||||
"\u13e7",
|
||||
"\u13a4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u13cc\u13be\u13b4",
|
||||
"\u13d2\u13af\u13f1\u13a2\u13d7\u13e2",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"\u13cf \u13e5\u13cc \u13be\u13d5\u13b2\u13cd\u13ac\u13be",
|
||||
"\u13a0\u13a9\u13c3\u13ae\u13b5\u13d3\u13cd\u13d7\u13f1 \u13a0\u13d5\u13d8\u13f1\u13cd\u13ac \u13f1\u13b0\u13e9 \u13e7\u13d3\u13c2\u13b8\u13a2\u13cd\u13d7",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u13a4\u13d3\u13b7\u13b8",
|
||||
"\u13a4\u13b6\u13d0\u13c5",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u13a1\u13b6\u13af \u13a0\u13e3\u13a2\u13b5\u13d2\u13a2" },
|
||||
{ "field.year", "\u13d1\u13d5\u13d8\u13f4\u13d3" },
|
||||
{ "field.month", "\u13cf\u13c5\u13d3" },
|
||||
{ "field.week", "\u13d2\u13be\u13d9\u13d3\u13c6\u13cd\u13d7" },
|
||||
{ "field.weekday", "\u13d2\u13be\u13d9\u13d3\u13c6\u13cd\u13d7 \u13a0\u13e3\u13a2\u13b5\u13d2" },
|
||||
{ "field.hour", "\u13d1\u13e3\u13b6\u13d3" },
|
||||
{ "field.minute", "\u13a2\u13ef\u13d4\u13ec\u13cd\u13d4\u13c5" },
|
||||
{ "field.second", "\u13a0\u13ce\u13e2" },
|
||||
{ "field.zone", "\u13a1\u13b6\u13af \u13a0\u13cd\u13d3\u13c5\u13c5" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y",
|
||||
"MMMM d, y",
|
||||
"MMM d, y",
|
||||
"M/d/yy",
|
||||
}
|
||||
},
|
||||
{ "calendarname.gregorian", "\u13c5\u13d9 \u13d7\u13ce\u13d7" },
|
||||
{ "calendarname.gregory", "\u13c5\u13d9 \u13d7\u13ce\u13d7" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
416
jdkSrc/jdk8/sun/text/resources/cldr/cs/FormatData_cs.java
Normal file
416
jdkSrc/jdk8/sun/text/resources/cldr/cs/FormatData_cs.java
Normal file
@@ -0,0 +1,416 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.cs;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_cs extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"ledna",
|
||||
"\u00fanora",
|
||||
"b\u0159ezna",
|
||||
"dubna",
|
||||
"kv\u011btna",
|
||||
"\u010dervna",
|
||||
"\u010dervence",
|
||||
"srpna",
|
||||
"z\u00e1\u0159\u00ed",
|
||||
"\u0159\u00edjna",
|
||||
"listopadu",
|
||||
"prosince",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"leden",
|
||||
"\u00fanor",
|
||||
"b\u0159ezen",
|
||||
"duben",
|
||||
"kv\u011bten",
|
||||
"\u010derven",
|
||||
"\u010dervenec",
|
||||
"srpen",
|
||||
"z\u00e1\u0159\u00ed",
|
||||
"\u0159\u00edjen",
|
||||
"listopad",
|
||||
"prosinec",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Led",
|
||||
"\u00dano",
|
||||
"B\u0159e",
|
||||
"Dub",
|
||||
"Kv\u011b",
|
||||
"\u010cer",
|
||||
"\u010cvc",
|
||||
"Srp",
|
||||
"Z\u00e1\u0159",
|
||||
"\u0158\u00edj",
|
||||
"Lis",
|
||||
"Pro",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"1.",
|
||||
"2.",
|
||||
"3.",
|
||||
"4.",
|
||||
"5.",
|
||||
"6.",
|
||||
"7.",
|
||||
"8.",
|
||||
"9.",
|
||||
"10.",
|
||||
"11.",
|
||||
"12.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
"5",
|
||||
"6",
|
||||
"7",
|
||||
"8",
|
||||
"9",
|
||||
"10",
|
||||
"11",
|
||||
"12",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNarrows",
|
||||
new String[] {
|
||||
"l",
|
||||
"\u00fa",
|
||||
"b",
|
||||
"d",
|
||||
"k",
|
||||
"\u010d",
|
||||
"\u010d",
|
||||
"s",
|
||||
"z",
|
||||
"\u0159",
|
||||
"l",
|
||||
"p",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"ned\u011ble",
|
||||
"pond\u011bl\u00ed",
|
||||
"\u00fater\u00fd",
|
||||
"st\u0159eda",
|
||||
"\u010dtvrtek",
|
||||
"p\u00e1tek",
|
||||
"sobota",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNames",
|
||||
new String[] {
|
||||
"ned\u011ble",
|
||||
"pond\u011bl\u00ed",
|
||||
"\u00fater\u00fd",
|
||||
"st\u0159eda",
|
||||
"\u010dtvrtek",
|
||||
"p\u00e1tek",
|
||||
"sobota",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"ne",
|
||||
"po",
|
||||
"\u00fat",
|
||||
"st",
|
||||
"\u010dt",
|
||||
"p\u00e1",
|
||||
"so",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"ne",
|
||||
"po",
|
||||
"\u00fat",
|
||||
"st",
|
||||
"\u010dt",
|
||||
"p\u00e1",
|
||||
"so",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"N",
|
||||
"P",
|
||||
"\u00da",
|
||||
"S",
|
||||
"\u010c",
|
||||
"P",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNarrows",
|
||||
new String[] {
|
||||
"N",
|
||||
"P",
|
||||
"\u00da",
|
||||
"S",
|
||||
"\u010c",
|
||||
"P",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1. \u010dtvrtlet\u00ed",
|
||||
"2. \u010dtvrtlet\u00ed",
|
||||
"3. \u010dtvrtlet\u00ed",
|
||||
"4. \u010dtvrtlet\u00ed",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterNames",
|
||||
new String[] {
|
||||
"1. \u010dtvrtlet\u00ed",
|
||||
"2. \u010dtvrtlet\u00ed",
|
||||
"3. \u010dtvrtlet\u00ed",
|
||||
"4. \u010dtvrtlet\u00ed",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"dop.",
|
||||
"odp.",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"p\u0159. n. l.",
|
||||
"n. l.",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"p\u0159. n. l.",
|
||||
"n. l.",
|
||||
}
|
||||
},
|
||||
{ "narrow.Eras",
|
||||
new String[] {
|
||||
"p\u0159.n.l.",
|
||||
"n. l.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Letopo\u010det" },
|
||||
{ "field.year", "Rok" },
|
||||
{ "field.month", "M\u011bs\u00edc" },
|
||||
{ "field.week", "T\u00fdden" },
|
||||
{ "field.weekday", "Den v t\u00fddnu" },
|
||||
{ "field.dayperiod", "AM/PM" },
|
||||
{ "field.hour", "Hodina" },
|
||||
{ "field.minute", "Minuta" },
|
||||
{ "field.second", "Sekunda" },
|
||||
{ "field.zone", "\u010casov\u00e9 p\u00e1smo" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"H:mm:ss zzzz",
|
||||
"H:mm:ss z",
|
||||
"H:mm:ss",
|
||||
"H:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d. MMMM y",
|
||||
"d. MMMM y",
|
||||
"d. M. yyyy",
|
||||
"dd.MM.yy",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. M. y G",
|
||||
"dd.MM.yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. M. y GGGG",
|
||||
"dd.MM.yy G",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. M. y G",
|
||||
"dd.MM.yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. M. y GGGG",
|
||||
"dd.MM.yy G",
|
||||
}
|
||||
},
|
||||
{ "roc.Eras",
|
||||
new String[] {
|
||||
"P\u0159ed R. O. C.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. M. y G",
|
||||
"dd.MM.yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. M. y GGGG",
|
||||
"dd.MM.yy G",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "Muslimsk\u00fd ob\u010dansk\u00fd kalend\u00e1\u0159" },
|
||||
{ "calendarname.islamicc", "Muslimsk\u00fd ob\u010dansk\u00fd kalend\u00e1\u0159" },
|
||||
{ "calendarname.buddhist", "Buddhistick\u00fd kalend\u00e1\u0159" },
|
||||
{ "calendarname.islamic", "Muslimsk\u00fd kalend\u00e1\u0159" },
|
||||
{ "calendarname.gregorian", "Gregori\u00e1nsk\u00fd kalend\u00e1\u0159" },
|
||||
{ "calendarname.gregory", "Gregori\u00e1nsk\u00fd kalend\u00e1\u0159" },
|
||||
{ "calendarname.roc", "Kalend\u00e1\u0159 \u010c\u00ednsk\u00e9 republiky" },
|
||||
{ "calendarname.japanese", "Japonsk\u00fd kalend\u00e1\u0159" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0\u00a0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
262
jdkSrc/jdk8/sun/text/resources/cldr/cy/FormatData_cy.java
Normal file
262
jdkSrc/jdk8/sun/text/resources/cldr/cy/FormatData_cy.java
Normal file
@@ -0,0 +1,262 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.cy;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_cy extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Ionawr",
|
||||
"Chwefror",
|
||||
"Mawrth",
|
||||
"Ebrill",
|
||||
"Mai",
|
||||
"Mehefin",
|
||||
"Gorffenaf",
|
||||
"Awst",
|
||||
"Medi",
|
||||
"Hydref",
|
||||
"Tachwedd",
|
||||
"Rhagfyr",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"Gorffennaf",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Ion",
|
||||
"Chwef",
|
||||
"Mawrth",
|
||||
"Ebrill",
|
||||
"Mai",
|
||||
"Meh",
|
||||
"Gorff",
|
||||
"Awst",
|
||||
"Medi",
|
||||
"Hyd",
|
||||
"Tach",
|
||||
"Rhag",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"",
|
||||
"Chwe",
|
||||
"Maw",
|
||||
"Ebr",
|
||||
"",
|
||||
"",
|
||||
"Gor",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"I",
|
||||
"C",
|
||||
"M",
|
||||
"E",
|
||||
"M",
|
||||
"M",
|
||||
"G",
|
||||
"A",
|
||||
"M",
|
||||
"H",
|
||||
"T",
|
||||
"R",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Dydd Sul",
|
||||
"Dydd Llun",
|
||||
"Dydd Mawrth",
|
||||
"Dydd Mercher",
|
||||
"Dydd Iau",
|
||||
"Dydd Gwener",
|
||||
"Dydd Sadwrn",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Sul",
|
||||
"Llun",
|
||||
"Maw",
|
||||
"Mer",
|
||||
"Iau",
|
||||
"Gwen",
|
||||
"Sad",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"Gwe",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"S",
|
||||
"L",
|
||||
"M",
|
||||
"M",
|
||||
"I",
|
||||
"G",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"Chwarter 1af",
|
||||
"2il chwarter",
|
||||
"3ydd chwarter",
|
||||
"4ydd chwarter",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Ch1",
|
||||
"Ch2",
|
||||
"Ch3",
|
||||
"Ch4",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Cyn Crist",
|
||||
"Oed Crist",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"CC",
|
||||
"OC",
|
||||
}
|
||||
},
|
||||
{ "narrow.Eras",
|
||||
new String[] {
|
||||
"C",
|
||||
"O",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Oes" },
|
||||
{ "field.year", "Blwyddyn" },
|
||||
{ "field.month", "Mis" },
|
||||
{ "field.week", "Wythnos" },
|
||||
{ "field.weekday", "Dydd o'r Wythnos" },
|
||||
{ "field.dayperiod", "AM/PM" },
|
||||
{ "field.hour", "Awr" },
|
||||
{ "field.minute", "Munud" },
|
||||
{ "field.second", "Eiliad" },
|
||||
{ "field.zone", "Cylchfa" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
337
jdkSrc/jdk8/sun/text/resources/cldr/da/FormatData_da.java
Normal file
337
jdkSrc/jdk8/sun/text/resources/cldr/da/FormatData_da.java
Normal file
@@ -0,0 +1,337 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.da;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_da extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"januar",
|
||||
"februar",
|
||||
"marts",
|
||||
"april",
|
||||
"maj",
|
||||
"juni",
|
||||
"juli",
|
||||
"august",
|
||||
"september",
|
||||
"oktober",
|
||||
"november",
|
||||
"december",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"jan.",
|
||||
"feb.",
|
||||
"mar.",
|
||||
"apr.",
|
||||
"maj",
|
||||
"jun.",
|
||||
"jul.",
|
||||
"aug.",
|
||||
"sep.",
|
||||
"okt.",
|
||||
"nov.",
|
||||
"dec.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"jan",
|
||||
"feb",
|
||||
"mar",
|
||||
"apr",
|
||||
"maj",
|
||||
"jun",
|
||||
"jul",
|
||||
"aug",
|
||||
"sep",
|
||||
"okt",
|
||||
"nov",
|
||||
"dec",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"J",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"J",
|
||||
"J",
|
||||
"A",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"s\u00f8ndag",
|
||||
"mandag",
|
||||
"tirsdag",
|
||||
"onsdag",
|
||||
"torsdag",
|
||||
"fredag",
|
||||
"l\u00f8rdag",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"s\u00f8n",
|
||||
"man",
|
||||
"tir",
|
||||
"ons",
|
||||
"tor",
|
||||
"fre",
|
||||
"l\u00f8r",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"S",
|
||||
"M",
|
||||
"T",
|
||||
"O",
|
||||
"T",
|
||||
"F",
|
||||
"L",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1. kvartal",
|
||||
"2. kvartal",
|
||||
"3. kvartal",
|
||||
"4. kvartal",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"K1",
|
||||
"K2",
|
||||
"K3",
|
||||
"K4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"f.m.",
|
||||
"e.m.",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"f.Kr.",
|
||||
"e.Kr.",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"f.Kr.",
|
||||
"e.Kr.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u00e6ra" },
|
||||
{ "field.year", "\u00e5r" },
|
||||
{ "field.month", "m\u00e5ned" },
|
||||
{ "field.week", "uge" },
|
||||
{ "field.weekday", "ugedag" },
|
||||
{ "field.dayperiod", "dagtid" },
|
||||
{ "field.hour", "time" },
|
||||
{ "field.minute", "minut" },
|
||||
{ "field.second", "sekund" },
|
||||
{ "field.zone", "tidszone" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH.mm.ss zzzz",
|
||||
"HH.mm.ss z",
|
||||
"HH.mm.ss",
|
||||
"HH.mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE 'den' d. MMMM y",
|
||||
"d. MMM y",
|
||||
"dd/MM/yyyy",
|
||||
"dd/MM/yy",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. MMM y G",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. MMM y GGGG",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. MMM y G",
|
||||
"d/M/y GGGGG",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. MMM y GGGG",
|
||||
"d/M/y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. MMM y G",
|
||||
"d/M/y GGGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. MMM y GGGG",
|
||||
"d/M/y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. MMM y G",
|
||||
"d/M/y G",
|
||||
}
|
||||
},
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. MMM y GGGG",
|
||||
"d/M/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "calendarname.gregorian", "gregoriansk kalender" },
|
||||
{ "calendarname.gregory", "gregoriansk kalender" },
|
||||
{ "calendarname.roc", "kalender for Republikken Kina" },
|
||||
{ "calendarname.islamic-civil", "verdslig islamisk kalender" },
|
||||
{ "calendarname.islamicc", "verdslig islamisk kalender" },
|
||||
{ "calendarname.japanese", "japansk kalender" },
|
||||
{ "calendarname.buddhist", "buddhistisk kalender" },
|
||||
{ "calendarname.islamic", "islamisk kalender" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
",",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0\u00a0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
224
jdkSrc/jdk8/sun/text/resources/cldr/dav/FormatData_dav.java
Normal file
224
jdkSrc/jdk8/sun/text/resources/cldr/dav/FormatData_dav.java
Normal file
@@ -0,0 +1,224 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.dav;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_dav extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Mori ghwa imbiri",
|
||||
"Mori ghwa kawi",
|
||||
"Mori ghwa kadadu",
|
||||
"Mori ghwa kana",
|
||||
"Mori ghwa kasanu",
|
||||
"Mori ghwa karandadu",
|
||||
"Mori ghwa mfungade",
|
||||
"Mori ghwa wunyanya",
|
||||
"Mori ghwa ikenda",
|
||||
"Mori ghwa ikumi",
|
||||
"Mori ghwa ikumi na imweri",
|
||||
"Mori ghwa ikumi na iwi",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Imb",
|
||||
"Kaw",
|
||||
"Kad",
|
||||
"Kan",
|
||||
"Kas",
|
||||
"Kar",
|
||||
"Mfu",
|
||||
"Wun",
|
||||
"Ike",
|
||||
"Iku",
|
||||
"Imw",
|
||||
"Iwi",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"I",
|
||||
"K",
|
||||
"K",
|
||||
"K",
|
||||
"K",
|
||||
"K",
|
||||
"M",
|
||||
"W",
|
||||
"I",
|
||||
"I",
|
||||
"I",
|
||||
"I",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Ituku ja jumwa",
|
||||
"Kuramuka jimweri",
|
||||
"Kuramuka kawi",
|
||||
"Kuramuka kadadu",
|
||||
"Kuramuka kana",
|
||||
"Kuramuka kasanu",
|
||||
"Kifula nguwo",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Jum",
|
||||
"Jim",
|
||||
"Kaw",
|
||||
"Kad",
|
||||
"Kan",
|
||||
"Kas",
|
||||
"Ngu",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"J",
|
||||
"J",
|
||||
"K",
|
||||
"K",
|
||||
"K",
|
||||
"K",
|
||||
"N",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"Kimu cha imbiri",
|
||||
"Kimu cha kawi",
|
||||
"Kimu cha kadadu",
|
||||
"Kimu cha kana",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"K1",
|
||||
"K2",
|
||||
"K3",
|
||||
"K4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"Luma lwa K",
|
||||
"luma lwa p",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Kabla ya Kristo",
|
||||
"Baada ya Kristo",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"KK",
|
||||
"BK",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Ngelo" },
|
||||
{ "field.year", "Mwaka" },
|
||||
{ "field.month", "Mori" },
|
||||
{ "field.week", "Juma" },
|
||||
{ "field.weekday", "Ituku" },
|
||||
{ "field.dayperiod", "KE/PE" },
|
||||
{ "field.hour", "Saa" },
|
||||
{ "field.minute", "Dakika" },
|
||||
{ "field.second", "Sekunde" },
|
||||
{ "field.zone", "Majira ya saa" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
348
jdkSrc/jdk8/sun/text/resources/cldr/de/FormatData_de.java
Normal file
348
jdkSrc/jdk8/sun/text/resources/cldr/de/FormatData_de.java
Normal file
@@ -0,0 +1,348 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.de;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_de extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Januar",
|
||||
"Februar",
|
||||
"M\u00e4rz",
|
||||
"April",
|
||||
"Mai",
|
||||
"Juni",
|
||||
"Juli",
|
||||
"August",
|
||||
"September",
|
||||
"Oktober",
|
||||
"November",
|
||||
"Dezember",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Jan",
|
||||
"Feb",
|
||||
"M\u00e4r",
|
||||
"Apr",
|
||||
"Mai",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Aug",
|
||||
"Sep",
|
||||
"Okt",
|
||||
"Nov",
|
||||
"Dez",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"Jan",
|
||||
"Feb",
|
||||
"M\u00e4r",
|
||||
"Apr",
|
||||
"Mai",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Aug",
|
||||
"Sep",
|
||||
"Okt",
|
||||
"Nov",
|
||||
"Dez",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"J",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"J",
|
||||
"J",
|
||||
"A",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Sonntag",
|
||||
"Montag",
|
||||
"Dienstag",
|
||||
"Mittwoch",
|
||||
"Donnerstag",
|
||||
"Freitag",
|
||||
"Samstag",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"So.",
|
||||
"Mo.",
|
||||
"Di.",
|
||||
"Mi.",
|
||||
"Do.",
|
||||
"Fr.",
|
||||
"Sa.",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"So",
|
||||
"Mo",
|
||||
"Di",
|
||||
"Mi",
|
||||
"Do",
|
||||
"Fr",
|
||||
"Sa",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"S",
|
||||
"M",
|
||||
"D",
|
||||
"M",
|
||||
"D",
|
||||
"F",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1. Quartal",
|
||||
"2. Quartal",
|
||||
"3. Quartal",
|
||||
"4. Quartal",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"vorm.",
|
||||
"nachm.",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"v. Chr.",
|
||||
"n. Chr.",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"v. Chr.",
|
||||
"n. Chr.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Epoche" },
|
||||
{ "field.year", "Jahr" },
|
||||
{ "field.month", "Monat" },
|
||||
{ "field.week", "Woche" },
|
||||
{ "field.weekday", "Wochentag" },
|
||||
{ "field.dayperiod", "Tagesh\u00e4lfte" },
|
||||
{ "field.hour", "Stunde" },
|
||||
{ "field.minute", "Minute" },
|
||||
{ "field.second", "Sekunde" },
|
||||
{ "field.zone", "Zone" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d. MMMM y",
|
||||
"d. MMMM y",
|
||||
"dd.MM.yyyy",
|
||||
"dd.MM.yy",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. MMM y G",
|
||||
"d.M.yyyy",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. MMM y GGGG",
|
||||
"d.M.yyyy",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. MMM y G",
|
||||
"d.M.y GGGGG",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. MMM y GGGG",
|
||||
"d.M.y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. MMM y G",
|
||||
"d.M.y GGGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. MMM y GGGG",
|
||||
"d.M.y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y G",
|
||||
"d. MMMM y G",
|
||||
"d. MMM y G",
|
||||
"d.M.y G",
|
||||
}
|
||||
},
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d. MMMM y GGGG",
|
||||
"d. MMMM y GGGG",
|
||||
"d. MMM y GGGG",
|
||||
"d.M.y GGGG",
|
||||
}
|
||||
},
|
||||
{ "calendarname.gregorian", "Gregorianischer Kalender" },
|
||||
{ "calendarname.gregory", "Gregorianischer Kalender" },
|
||||
{ "calendarname.roc", "Kalender der Republik China" },
|
||||
{ "calendarname.islamic-civil", "B\u00fcrgerlicher islamischer Kalender" },
|
||||
{ "calendarname.islamicc", "B\u00fcrgerlicher islamischer Kalender" },
|
||||
{ "calendarname.japanese", "Japanischer Kalender" },
|
||||
{ "calendarname.buddhist", "Buddhistischer Kalender" },
|
||||
{ "calendarname.islamic", "Islamischer Kalender" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0\u00a0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
139
jdkSrc/jdk8/sun/text/resources/cldr/de/FormatData_de_AT.java
Normal file
139
jdkSrc/jdk8/sun/text/resources/cldr/de/FormatData_de_AT.java
Normal file
@@ -0,0 +1,139 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.de;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_de_AT extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"J\u00e4nner",
|
||||
"Februar",
|
||||
"M\u00e4rz",
|
||||
"April",
|
||||
"Mai",
|
||||
"Juni",
|
||||
"Juli",
|
||||
"August",
|
||||
"September",
|
||||
"Oktober",
|
||||
"November",
|
||||
"Dezember",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"J\u00e4n",
|
||||
"Feb",
|
||||
"M\u00e4r",
|
||||
"Apr",
|
||||
"Mai",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Aug",
|
||||
"Sep",
|
||||
"Okt",
|
||||
"Nov",
|
||||
"Dez",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"J\u00e4n",
|
||||
"Feb",
|
||||
"M\u00e4r",
|
||||
"Apr",
|
||||
"Mai",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Aug",
|
||||
"Sep",
|
||||
"Okt",
|
||||
"Nov",
|
||||
"Dez",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, dd. MMMM y",
|
||||
"dd. MMMM y",
|
||||
"dd.MM.yyyy",
|
||||
"dd.MM.yy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4\u00a0#,##0.00",
|
||||
"#,##0\u00a0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
96
jdkSrc/jdk8/sun/text/resources/cldr/de/FormatData_de_CH.java
Normal file
96
jdkSrc/jdk8/sun/text/resources/cldr/de/FormatData_de_CH.java
Normal file
@@ -0,0 +1,96 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.de;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_de_CH extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
"'",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4\u00a0#,##0.00;\u00a4-#,##0.00",
|
||||
"#,##0\u00a0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
96
jdkSrc/jdk8/sun/text/resources/cldr/de/FormatData_de_LI.java
Normal file
96
jdkSrc/jdk8/sun/text/resources/cldr/de/FormatData_de_LI.java
Normal file
@@ -0,0 +1,96 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.de;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_de_LI extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
"'",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4\u00a0#,##0.00",
|
||||
"#,##0\u00a0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
240
jdkSrc/jdk8/sun/text/resources/cldr/dje/FormatData_dje.java
Normal file
240
jdkSrc/jdk8/sun/text/resources/cldr/dje/FormatData_dje.java
Normal file
@@ -0,0 +1,240 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.dje;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_dje extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u017danwiye",
|
||||
"Feewiriye",
|
||||
"Marsi",
|
||||
"Awiril",
|
||||
"Me",
|
||||
"\u017duwe\u014b",
|
||||
"\u017duyye",
|
||||
"Ut",
|
||||
"Sektanbur",
|
||||
"Oktoobur",
|
||||
"Noowanbur",
|
||||
"Deesanbur",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u017dan",
|
||||
"Fee",
|
||||
"Mar",
|
||||
"Awi",
|
||||
"Me",
|
||||
"\u017duw",
|
||||
"\u017duy",
|
||||
"Ut",
|
||||
"Sek",
|
||||
"Okt",
|
||||
"Noo",
|
||||
"Dee",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u017d",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"\u017d",
|
||||
"\u017d",
|
||||
"U",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Alhadi",
|
||||
"Atinni",
|
||||
"Atalaata",
|
||||
"Alarba",
|
||||
"Alhamisi",
|
||||
"Alzuma",
|
||||
"Asibti",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Alh",
|
||||
"Ati",
|
||||
"Ata",
|
||||
"Ala",
|
||||
"Alm",
|
||||
"Alz",
|
||||
"Asi",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"H",
|
||||
"T",
|
||||
"T",
|
||||
"L",
|
||||
"M",
|
||||
"Z",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"Arrubu 1",
|
||||
"Arrubu 2",
|
||||
"Arrubu 3",
|
||||
"Arrubu 4",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"A1",
|
||||
"A2",
|
||||
"A3",
|
||||
"A4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"Subbaahi",
|
||||
"Zaarikay b",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Isaa jine",
|
||||
"Isaa zamanoo",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"IJ",
|
||||
"IZ",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Zaman" },
|
||||
{ "field.year", "Jiiri" },
|
||||
{ "field.month", "Handu" },
|
||||
{ "field.week", "Hebu" },
|
||||
{ "field.weekday", "Zaari" },
|
||||
{ "field.dayperiod", "Subbaahi/Zaarikay banda" },
|
||||
{ "field.hour", "Guuru" },
|
||||
{ "field.minute", "Miniti" },
|
||||
{ "field.second", "Miti" },
|
||||
{ "field.zone", "Leerazuu" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM, y",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
239
jdkSrc/jdk8/sun/text/resources/cldr/dua/FormatData_dua.java
Normal file
239
jdkSrc/jdk8/sun/text/resources/cldr/dua/FormatData_dua.java
Normal file
@@ -0,0 +1,239 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.dua;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_dua extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"dim\u0254\u0301di",
|
||||
"\u014bg\u0254nd\u025b",
|
||||
"s\u0254\u014b\u025b",
|
||||
"di\u0253\u00e1\u0253\u00e1",
|
||||
"emiasele",
|
||||
"es\u0254p\u025bs\u0254p\u025b",
|
||||
"madi\u0253\u025b\u0301d\u00ed\u0253\u025b\u0301",
|
||||
"di\u014bgindi",
|
||||
"ny\u025bt\u025bki",
|
||||
"may\u00e9s\u025b\u0301",
|
||||
"tin\u00edn\u00ed",
|
||||
"el\u00e1\u014bg\u025b\u0301",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"di",
|
||||
"\u014bg\u0254n",
|
||||
"s\u0254\u014b",
|
||||
"di\u0253",
|
||||
"emi",
|
||||
"es\u0254",
|
||||
"mad",
|
||||
"di\u014b",
|
||||
"ny\u025bt",
|
||||
"may",
|
||||
"tin",
|
||||
"el\u00e1",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"d",
|
||||
"\u014b",
|
||||
"s",
|
||||
"d",
|
||||
"e",
|
||||
"e",
|
||||
"m",
|
||||
"d",
|
||||
"n",
|
||||
"m",
|
||||
"t",
|
||||
"e",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u00e9ti",
|
||||
"m\u0254\u0301s\u00fa",
|
||||
"kwas\u00fa",
|
||||
"muk\u0254\u0301s\u00fa",
|
||||
"\u014bgis\u00fa",
|
||||
"\u0257\u00f3n\u025bs\u00fa",
|
||||
"esa\u0253as\u00fa",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u00e9t",
|
||||
"m\u0254\u0301s",
|
||||
"kwa",
|
||||
"muk",
|
||||
"\u014bgi",
|
||||
"\u0257\u00f3n",
|
||||
"esa",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"e",
|
||||
"m",
|
||||
"k",
|
||||
"m",
|
||||
"\u014b",
|
||||
"\u0257",
|
||||
"e",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"nd\u00famb\u016b ny\u00e1 \u0253os\u00f3",
|
||||
"nd\u00famb\u016b n\u00ed l\u00f3nd\u025b\u0301 \u00ed\u0253a\u00e1",
|
||||
"nd\u00famb\u016b n\u00ed l\u00f3nd\u025b\u0301 \u00edl\u00e1lo",
|
||||
"nd\u00famb\u016b n\u00ed l\u00f3nd\u025b\u0301 \u00edn\u025b\u0301y",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"ndu1",
|
||||
"ndu2",
|
||||
"ndu3",
|
||||
"ndu4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"idi\u0253a",
|
||||
"eby\u00e1mu",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"\u0253oso \u0253w\u00e1 y\u00e1\u0253e l\u00e1",
|
||||
"mb\u00fasa kw\u00e9di a Y\u00e9s",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u0253.Ys",
|
||||
"mb.Ys",
|
||||
}
|
||||
},
|
||||
{ "field.era", "p\u00f3nd\u00e1" },
|
||||
{ "field.year", "mb\u00fa" },
|
||||
{ "field.month", "m\u0254\u0301di" },
|
||||
{ "field.week", "disama" },
|
||||
{ "field.weekday", "m\u00edny\u00e1 m\u00e1 disama" },
|
||||
{ "field.dayperiod", "epasi a b\u00fany\u00e1" },
|
||||
{ "field.hour", "\u014bgand\u025b" },
|
||||
{ "field.minute", "nd\u0254k\u0254" },
|
||||
{ "field.second", "p\u00ednd\u00ed" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0\u00a0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
214
jdkSrc/jdk8/sun/text/resources/cldr/dyo/FormatData_dyo.java
Normal file
214
jdkSrc/jdk8/sun/text/resources/cldr/dyo/FormatData_dyo.java
Normal file
@@ -0,0 +1,214 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.dyo;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_dyo extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Sanvie",
|
||||
"F\u00e9birie",
|
||||
"Mars",
|
||||
"Aburil",
|
||||
"Mee",
|
||||
"Sue\u014b",
|
||||
"S\u00fauyee",
|
||||
"Ut",
|
||||
"Settembar",
|
||||
"Oktobar",
|
||||
"Novembar",
|
||||
"Disambar",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Sa",
|
||||
"Fe",
|
||||
"Ma",
|
||||
"Ab",
|
||||
"Me",
|
||||
"Su",
|
||||
"S\u00fa",
|
||||
"Ut",
|
||||
"Se",
|
||||
"Ok",
|
||||
"No",
|
||||
"De",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"S",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"S",
|
||||
"S",
|
||||
"U",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Dimas",
|
||||
"Tene\u014b",
|
||||
"Talata",
|
||||
"Alarbay",
|
||||
"Aramisay",
|
||||
"Arjuma",
|
||||
"Sibiti",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Dim",
|
||||
"Ten",
|
||||
"Tal",
|
||||
"Ala",
|
||||
"Ara",
|
||||
"Arj",
|
||||
"Sib",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"D",
|
||||
"T",
|
||||
"T",
|
||||
"A",
|
||||
"A",
|
||||
"A",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Ari\u014buu Yeesu",
|
||||
"Atoo\u014be Yeesu",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"ArY",
|
||||
"AtY",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Jamanay" },
|
||||
{ "field.year", "Emit" },
|
||||
{ "field.month", "Fulee\u014b" },
|
||||
{ "field.week", "L\u00f3oku\u014b" },
|
||||
{ "field.weekday", "Funak" },
|
||||
{ "field.dayperiod", "Bujom / Kal\u00edim" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
112
jdkSrc/jdk8/sun/text/resources/cldr/dz/FormatData_dz.java
Normal file
112
jdkSrc/jdk8/sun/text/resources/cldr/dz/FormatData_dz.java
Normal file
@@ -0,0 +1,112 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.dz;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_dz extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, y MMMM dd",
|
||||
"y MMMM d",
|
||||
"y MMM d",
|
||||
"yyyy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "tibt.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"\u0f20",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
224
jdkSrc/jdk8/sun/text/resources/cldr/ebu/FormatData_ebu.java
Normal file
224
jdkSrc/jdk8/sun/text/resources/cldr/ebu/FormatData_ebu.java
Normal file
@@ -0,0 +1,224 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ebu;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ebu extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"Mweri wa mbere",
|
||||
"Mweri wa ka\u0129ri",
|
||||
"Mweri wa kathat\u0169",
|
||||
"Mweri wa kana",
|
||||
"Mweri wa gatano",
|
||||
"Mweri wa gatantat\u0169",
|
||||
"Mweri wa m\u0169gwanja",
|
||||
"Mweri wa kanana",
|
||||
"Mweri wa kenda",
|
||||
"Mweri wa ik\u0169mi",
|
||||
"Mweri wa ik\u0169mi na \u0169mwe",
|
||||
"Mweri wa ik\u0169mi na Ka\u0129r\u0129",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Mbe",
|
||||
"Kai",
|
||||
"Kat",
|
||||
"Kan",
|
||||
"Gat",
|
||||
"Gan",
|
||||
"Mug",
|
||||
"Knn",
|
||||
"Ken",
|
||||
"Iku",
|
||||
"Imw",
|
||||
"Igi",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"M",
|
||||
"K",
|
||||
"K",
|
||||
"K",
|
||||
"G",
|
||||
"G",
|
||||
"M",
|
||||
"K",
|
||||
"K",
|
||||
"I",
|
||||
"I",
|
||||
"I",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Kiumia",
|
||||
"Njumatatu",
|
||||
"Njumaine",
|
||||
"Njumatano",
|
||||
"Aramithi",
|
||||
"Njumaa",
|
||||
"NJumamothii",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Kma",
|
||||
"Tat",
|
||||
"Ine",
|
||||
"Tan",
|
||||
"Arm",
|
||||
"Maa",
|
||||
"NMM",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"K",
|
||||
"N",
|
||||
"N",
|
||||
"N",
|
||||
"A",
|
||||
"M",
|
||||
"N",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"Kuota ya mbere",
|
||||
"Kuota ya Ka\u0129r\u0129",
|
||||
"Kuota ya kathatu",
|
||||
"Kuota ya kana",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"K1",
|
||||
"K2",
|
||||
"K3",
|
||||
"K4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"KI",
|
||||
"UT",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Mbere ya Kristo",
|
||||
"Thutha wa Kristo",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"MK",
|
||||
"TK",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Ivinda" },
|
||||
{ "field.year", "Mwaka" },
|
||||
{ "field.month", "Mweri" },
|
||||
{ "field.week", "Kiumia" },
|
||||
{ "field.weekday", "M\u0169thenya kiumia-in\u0129" },
|
||||
{ "field.dayperiod", "M\u0169thenya" },
|
||||
{ "field.hour", "Ithaa" },
|
||||
{ "field.minute", "Ndag\u0129ka" },
|
||||
{ "field.second", "Sekondi" },
|
||||
{ "field.zone", "G\u0129thaa" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
361
jdkSrc/jdk8/sun/text/resources/cldr/ee/FormatData_ee.java
Normal file
361
jdkSrc/jdk8/sun/text/resources/cldr/ee/FormatData_ee.java
Normal file
@@ -0,0 +1,361 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.ee;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_ee extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"dzove",
|
||||
"dzodze",
|
||||
"tedoxe",
|
||||
"af\u0254f\u0129e",
|
||||
"dama",
|
||||
"masa",
|
||||
"siaml\u0254m",
|
||||
"deasiamime",
|
||||
"any\u0254ny\u0254",
|
||||
"kele",
|
||||
"ade\u025bmekp\u0254xe",
|
||||
"dzome",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"dzove",
|
||||
"dzodze",
|
||||
"tedoxe",
|
||||
"af\u0254f\u0129e",
|
||||
"dama",
|
||||
"masa",
|
||||
"siaml\u0254m",
|
||||
"deasiamime",
|
||||
"any\u0254ny\u0254",
|
||||
"kele",
|
||||
"ade\u025bmekp\u0254xe",
|
||||
"dzome",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"dzv",
|
||||
"dzd",
|
||||
"ted",
|
||||
"af\u0254",
|
||||
"dam",
|
||||
"mas",
|
||||
"sia",
|
||||
"dea",
|
||||
"any",
|
||||
"kel",
|
||||
"ade",
|
||||
"dzm",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"dzv",
|
||||
"dzd",
|
||||
"ted",
|
||||
"af\u0254",
|
||||
"dam",
|
||||
"mas",
|
||||
"sia",
|
||||
"dea",
|
||||
"any",
|
||||
"kel",
|
||||
"ade",
|
||||
"dzm",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"d",
|
||||
"d",
|
||||
"t",
|
||||
"a",
|
||||
"d",
|
||||
"m",
|
||||
"s",
|
||||
"d",
|
||||
"a",
|
||||
"k",
|
||||
"a",
|
||||
"d",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNarrows",
|
||||
new String[] {
|
||||
"d",
|
||||
"d",
|
||||
"t",
|
||||
"a",
|
||||
"d",
|
||||
"m",
|
||||
"s",
|
||||
"d",
|
||||
"a",
|
||||
"k",
|
||||
"a",
|
||||
"d",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"k\u0254si\u0256a",
|
||||
"dzo\u0256a",
|
||||
"bla\u0256a",
|
||||
"ku\u0256a",
|
||||
"yawo\u0256a",
|
||||
"fi\u0256a",
|
||||
"memle\u0256a",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNames",
|
||||
new String[] {
|
||||
"k\u0254si\u0256a",
|
||||
"dzo\u0256a",
|
||||
"bla\u0256a",
|
||||
"ku\u0256a",
|
||||
"yawo\u0256a",
|
||||
"fi\u0256a",
|
||||
"memle\u0256a",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"k\u0254s",
|
||||
"dzo",
|
||||
"bla",
|
||||
"ku\u0256",
|
||||
"yaw",
|
||||
"fi\u0256",
|
||||
"mem",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"k\u0254s",
|
||||
"dzo",
|
||||
"bla",
|
||||
"ku\u0256",
|
||||
"yaw",
|
||||
"fi\u0256",
|
||||
"mem",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"k",
|
||||
"d",
|
||||
"b",
|
||||
"k",
|
||||
"y",
|
||||
"f",
|
||||
"m",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNarrows",
|
||||
new String[] {
|
||||
"k",
|
||||
"d",
|
||||
"b",
|
||||
"k",
|
||||
"y",
|
||||
"f",
|
||||
"m",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"memama ene \u0192e akpa gb\u00e3t\u0254",
|
||||
"memama ene \u0192e akpa evelia",
|
||||
"memama ene \u0192e akpa et\u0254\u0303lia",
|
||||
"memama ene \u0192e akpa enelia",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterNames",
|
||||
new String[] {
|
||||
"memama ene \u0192e akpa gb\u00e3t\u0254",
|
||||
"memama ene \u0192e akpa evelia",
|
||||
"memama ene \u0192e akpa et\u0254\u0303lia",
|
||||
"memama ene \u0192e akpa enelia",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"q1",
|
||||
"q2",
|
||||
"q3",
|
||||
"q4",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterAbbreviations",
|
||||
new String[] {
|
||||
"q1",
|
||||
"q2",
|
||||
"q3",
|
||||
"q4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u014bdi",
|
||||
"\u0263etr\u0254",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Hafi Yesu Va Do \u014bg\u0254",
|
||||
"Yesu \u014a\u0254li",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"hY",
|
||||
"Y\u014b",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u014b\u0254li" },
|
||||
{ "field.year", "\u0192e" },
|
||||
{ "field.month", "Xleti" },
|
||||
{ "field.week", "k\u0254si\u0256a \u0256eka" },
|
||||
{ "field.weekday", "k\u0254si\u0256a me \u014bkeke" },
|
||||
{ "field.dayperiod", "\u014bkekea me" },
|
||||
{ "field.hour", "ga\u0192o\u0192o" },
|
||||
{ "field.minute", "Mintiga\u0192o\u0192o" },
|
||||
{ "field.second", "sekend" },
|
||||
{ "field.zone", "nutomega\u0192o\u0192ome" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"a h:mm:ss zzzz",
|
||||
"a h:mm:ss z",
|
||||
"a h:mm:ss",
|
||||
"a h:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
{ "DateTimePatterns",
|
||||
new String[] {
|
||||
"{0} {1}",
|
||||
}
|
||||
},
|
||||
{ "calendarname.gregorian", "gregoria kalenda" },
|
||||
{ "calendarname.gregory", "gregoria kalenda" },
|
||||
{ "calendarname.roc", "china rep\u0254blikt\u0254wo \u0192e kalenda tso 1912" },
|
||||
{ "calendarname.islamic-civil", "islam sub\u0254lawo \u0192e sivil kalenda" },
|
||||
{ "calendarname.islamicc", "islam sub\u0254lawo \u0192e sivil kalenda" },
|
||||
{ "calendarname.japanese", "japant\u0254wo \u0192e kalenda" },
|
||||
{ "calendarname.buddhist", "buddha sub\u0254lawo \u0192e kalenda" },
|
||||
{ "calendarname.islamic", "islam sub\u0254lawo \u0192e kalenda" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"mnn",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
404
jdkSrc/jdk8/sun/text/resources/cldr/el/FormatData_el.java
Normal file
404
jdkSrc/jdk8/sun/text/resources/cldr/el/FormatData_el.java
Normal file
@@ -0,0 +1,404 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.el;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_el extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
|
||||
"\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5",
|
||||
"\u039c\u03b1\u03c1\u03c4\u03af\u03bf\u03c5",
|
||||
"\u0391\u03c0\u03c1\u03b9\u03bb\u03af\u03bf\u03c5",
|
||||
"\u039c\u03b1\u0390\u03bf\u03c5",
|
||||
"\u0399\u03bf\u03c5\u03bd\u03af\u03bf\u03c5",
|
||||
"\u0399\u03bf\u03c5\u03bb\u03af\u03bf\u03c5",
|
||||
"\u0391\u03c5\u03b3\u03bf\u03cd\u03c3\u03c4\u03bf\u03c5",
|
||||
"\u03a3\u03b5\u03c0\u03c4\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
|
||||
"\u039f\u03ba\u03c4\u03c9\u03b2\u03c1\u03af\u03bf\u03c5",
|
||||
"\u039d\u03bf\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
|
||||
"\u0394\u03b5\u03ba\u03b5\u03bc\u03b2\u03c1\u03af\u03bf\u03c5",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
|
||||
"\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2",
|
||||
"\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2",
|
||||
"\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2",
|
||||
"\u039c\u03ac\u03b9\u03bf\u03c2",
|
||||
"\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2",
|
||||
"\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2",
|
||||
"\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2",
|
||||
"\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
|
||||
"\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2",
|
||||
"\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
|
||||
"\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0399\u03b1\u03bd",
|
||||
"\u03a6\u03b5\u03b2",
|
||||
"\u039c\u03b1\u03c1",
|
||||
"\u0391\u03c0\u03c1",
|
||||
"\u039c\u03b1\u03ca",
|
||||
"\u0399\u03bf\u03c5\u03bd",
|
||||
"\u0399\u03bf\u03c5\u03bb",
|
||||
"\u0391\u03c5\u03b3",
|
||||
"\u03a3\u03b5\u03c0",
|
||||
"\u039f\u03ba\u03c4",
|
||||
"\u039d\u03bf\u03b5",
|
||||
"\u0394\u03b5\u03ba",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"\u0399\u03b1\u03bd",
|
||||
"\u03a6\u03b5\u03b2",
|
||||
"\u039c\u03ac\u03c1",
|
||||
"\u0391\u03c0\u03c1",
|
||||
"\u039c\u03ac\u03b9",
|
||||
"\u0399\u03bf\u03cd\u03bd",
|
||||
"\u0399\u03bf\u03cd\u03bb",
|
||||
"\u0391\u03c5\u03b3",
|
||||
"\u03a3\u03b5\u03c0",
|
||||
"\u039f\u03ba\u03c4",
|
||||
"\u039d\u03bf\u03ad",
|
||||
"\u0394\u03b5\u03ba",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\u0399",
|
||||
"\u03a6",
|
||||
"\u039c",
|
||||
"\u0391",
|
||||
"\u039c",
|
||||
"\u0399",
|
||||
"\u0399",
|
||||
"\u0391",
|
||||
"\u03a3",
|
||||
"\u039f",
|
||||
"\u039d",
|
||||
"\u0394",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNarrows",
|
||||
new String[] {
|
||||
"\u0399",
|
||||
"\u03a6",
|
||||
"\u039c",
|
||||
"\u0391",
|
||||
"\u039c",
|
||||
"\u0399",
|
||||
"\u0399",
|
||||
"\u0391",
|
||||
"\u03a3",
|
||||
"\u039f",
|
||||
"\u039d",
|
||||
"\u0394",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae",
|
||||
"\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1",
|
||||
"\u03a4\u03c1\u03af\u03c4\u03b7",
|
||||
"\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7",
|
||||
"\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7",
|
||||
"\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae",
|
||||
"\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNames",
|
||||
new String[] {
|
||||
"\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae",
|
||||
"\u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1",
|
||||
"\u03a4\u03c1\u03af\u03c4\u03b7",
|
||||
"\u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7",
|
||||
"\u03a0\u03ad\u03bc\u03c0\u03c4\u03b7",
|
||||
"\u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae",
|
||||
"\u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\u039a\u03c5\u03c1",
|
||||
"\u0394\u03b5\u03c5",
|
||||
"\u03a4\u03c1\u03b9",
|
||||
"\u03a4\u03b5\u03c4",
|
||||
"\u03a0\u03b5\u03bc",
|
||||
"\u03a0\u03b1\u03c1",
|
||||
"\u03a3\u03b1\u03b2",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayAbbreviations",
|
||||
new String[] {
|
||||
"\u039a\u03c5\u03c1",
|
||||
"\u0394\u03b5\u03c5",
|
||||
"\u03a4\u03c1\u03af",
|
||||
"\u03a4\u03b5\u03c4",
|
||||
"\u03a0\u03ad\u03bc",
|
||||
"\u03a0\u03b1\u03c1",
|
||||
"\u03a3\u03ac\u03b2",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\u039a",
|
||||
"\u0394",
|
||||
"\u03a4",
|
||||
"\u03a4",
|
||||
"\u03a0",
|
||||
"\u03a0",
|
||||
"\u03a3",
|
||||
}
|
||||
},
|
||||
{ "standalone.DayNarrows",
|
||||
new String[] {
|
||||
"\u039a",
|
||||
"\u0394",
|
||||
"\u03a4",
|
||||
"\u03a4",
|
||||
"\u03a0",
|
||||
"\u03a0",
|
||||
"\u03a3",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
|
||||
"2\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
|
||||
"3\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
|
||||
"4\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterNames",
|
||||
new String[] {
|
||||
"1\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
|
||||
"2\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
|
||||
"3\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
|
||||
"4\u03bf \u03c4\u03c1\u03af\u03bc\u03b7\u03bd\u03bf",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"\u03a41",
|
||||
"\u03a42",
|
||||
"\u03a43",
|
||||
"\u03a44",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterAbbreviations",
|
||||
new String[] {
|
||||
"\u03a41",
|
||||
"\u03a42",
|
||||
"\u03a43",
|
||||
"\u03a44",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\u03c0.\u03bc.",
|
||||
"\u03bc.\u03bc.",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\u03c0.\u03a7.",
|
||||
"\u03bc.\u03a7.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2" },
|
||||
{ "field.year", "\u0388\u03c4\u03bf\u03c2" },
|
||||
{ "field.month", "\u039c\u03ae\u03bd\u03b1\u03c2" },
|
||||
{ "field.week", "\u0395\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1" },
|
||||
{ "field.weekday", "\u0397\u03bc\u03ad\u03c1\u03b1 \u03b5\u03b2\u03b4\u03bf\u03bc\u03ac\u03b4\u03b1\u03c2" },
|
||||
{ "field.dayperiod", "\u03c0.\u03bc./\u03bc.\u03bc." },
|
||||
{ "field.hour", "\u038f\u03c1\u03b1" },
|
||||
{ "field.minute", "\u039b\u03b5\u03c0\u03c4\u03cc" },
|
||||
{ "field.second", "\u0394\u03b5\u03c5\u03c4\u03b5\u03c1\u03cc\u03bb\u03b5\u03c0\u03c4\u03bf" },
|
||||
{ "field.zone", "\u0396\u03ce\u03bd\u03b7" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"d/M/yy",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y GGGG",
|
||||
"d MMMM, y GGGG",
|
||||
"d MMM, y GGGG",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/yy",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y GGGG",
|
||||
"d MMMM, y GGGG",
|
||||
"d MMM, y GGGG",
|
||||
"d/M/yy",
|
||||
}
|
||||
},
|
||||
{ "roc.Eras",
|
||||
new String[] {
|
||||
"\u03a0\u03c1\u03b9\u03bd R.O.C.",
|
||||
"R.O.C.",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/y G",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y GGGG",
|
||||
"d MMMM, y GGGG",
|
||||
"d MMM, y GGGG",
|
||||
"d/M/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "\u0399\u03c3\u03bb\u03b1\u03bc\u03b9\u03ba\u03cc \u03b1\u03c3\u03c4\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
|
||||
{ "calendarname.islamicc", "\u0399\u03c3\u03bb\u03b1\u03bc\u03b9\u03ba\u03cc \u03b1\u03c3\u03c4\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
|
||||
{ "calendarname.buddhist", "\u0392\u03bf\u03c5\u03b4\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
|
||||
{ "calendarname.islamic", "\u0399\u03c3\u03bb\u03b1\u03bc\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
|
||||
{ "calendarname.gregorian", "\u0393\u03c1\u03b7\u03b3\u03bf\u03c1\u03b9\u03b1\u03bd\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
|
||||
{ "calendarname.gregory", "\u0393\u03c1\u03b7\u03b3\u03bf\u03c1\u03b9\u03b1\u03bd\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
|
||||
{ "calendarname.roc", "\u0397\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf \u03c4\u03b7\u03c2 \u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1\u03c2 \u03c4\u03b7\u03c2 \u039a\u03af\u03bd\u03b1\u03c2" },
|
||||
{ "calendarname.japanese", "\u0399\u03b1\u03c0\u03c9\u03bd\u03b9\u03ba\u03cc \u03b7\u03bc\u03b5\u03c1\u03bf\u03bb\u03cc\u03b3\u03b9\u03bf" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
",",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"e",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
80
jdkSrc/jdk8/sun/text/resources/cldr/el/FormatData_el_CY.java
Normal file
80
jdkSrc/jdk8/sun/text/resources/cldr/el/FormatData_el_CY.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.el;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_el_CY extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
324
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en.java
Normal file
324
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en.java
Normal file
@@ -0,0 +1,324 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"January",
|
||||
"February",
|
||||
"March",
|
||||
"April",
|
||||
"May",
|
||||
"June",
|
||||
"July",
|
||||
"August",
|
||||
"September",
|
||||
"October",
|
||||
"November",
|
||||
"December",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"Jan",
|
||||
"Feb",
|
||||
"Mar",
|
||||
"Apr",
|
||||
"May",
|
||||
"Jun",
|
||||
"Jul",
|
||||
"Aug",
|
||||
"Sep",
|
||||
"Oct",
|
||||
"Nov",
|
||||
"Dec",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"J",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"J",
|
||||
"J",
|
||||
"A",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"Sunday",
|
||||
"Monday",
|
||||
"Tuesday",
|
||||
"Wednesday",
|
||||
"Thursday",
|
||||
"Friday",
|
||||
"Saturday",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"Sun",
|
||||
"Mon",
|
||||
"Tue",
|
||||
"Wed",
|
||||
"Thu",
|
||||
"Fri",
|
||||
"Sat",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"S",
|
||||
"M",
|
||||
"T",
|
||||
"W",
|
||||
"T",
|
||||
"F",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1st quarter",
|
||||
"2nd quarter",
|
||||
"3rd quarter",
|
||||
"4th quarter",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"Q1",
|
||||
"Q2",
|
||||
"Q3",
|
||||
"Q4",
|
||||
}
|
||||
},
|
||||
{ "narrow.AmPmMarkers",
|
||||
new String[] {
|
||||
"a",
|
||||
"p",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"Before Christ",
|
||||
"Anno Domini",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"BC",
|
||||
"AD",
|
||||
}
|
||||
},
|
||||
{ "narrow.Eras",
|
||||
new String[] {
|
||||
"B",
|
||||
"A",
|
||||
}
|
||||
},
|
||||
{ "field.era", "Era" },
|
||||
{ "field.year", "Year" },
|
||||
{ "field.month", "Month" },
|
||||
{ "field.week", "Week" },
|
||||
{ "field.weekday", "Day of the Week" },
|
||||
{ "field.dayperiod", "AM/PM" },
|
||||
{ "field.hour", "Hour" },
|
||||
{ "field.minute", "Minute" },
|
||||
{ "field.second", "Second" },
|
||||
{ "field.zone", "Time Zone" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y",
|
||||
"MMMM d, y",
|
||||
"MMM d, y",
|
||||
"M/d/yy",
|
||||
}
|
||||
},
|
||||
{ "DateTimePatterns",
|
||||
new String[] {
|
||||
"{1} {0}",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y G",
|
||||
"MMMM d, y G",
|
||||
"MMM d, y G",
|
||||
"M/d/yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y GGGG",
|
||||
"MMMM d, y GGGG",
|
||||
"MMM d, y GGGG",
|
||||
"M/d/yy G",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y G",
|
||||
"MMMM d, y G",
|
||||
"MMM d, y G",
|
||||
"M/d/yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y GGGG",
|
||||
"MMMM d, y GGGG",
|
||||
"MMM d, y GGGG",
|
||||
"M/d/yy G",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y G",
|
||||
"MMMM d, y G",
|
||||
"MMM d, y G",
|
||||
"M/d/yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y GGGG",
|
||||
"MMMM d, y GGGG",
|
||||
"MMM d, y GGGG",
|
||||
"M/d/yy G",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y G",
|
||||
"MMMM d, y G",
|
||||
"MMM d, y G",
|
||||
"M/d/yy G",
|
||||
}
|
||||
},
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y GGGG",
|
||||
"MMMM d, y GGGG",
|
||||
"MMM d, y GGGG",
|
||||
"M/d/yy GGGG",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-umalqura", "Islamic Calendar [Umm al-Qura]" },
|
||||
{ "calendarname.islamic-civil", "Islamic-Civil Calendar" },
|
||||
{ "calendarname.islamicc", "Islamic-Civil Calendar" },
|
||||
{ "calendarname.buddhist", "Buddhist Calendar" },
|
||||
{ "calendarname.islamic", "Islamic Calendar" },
|
||||
{ "calendarname.gregorian", "Gregorian Calendar" },
|
||||
{ "calendarname.gregory", "Gregorian Calendar" },
|
||||
{ "calendarname.roc", "Minguo Calendar" },
|
||||
{ "calendarname.japanese", "Japanese Calendar" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
89
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_AU.java
Normal file
89
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_AU.java
Normal file
@@ -0,0 +1,89 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_AU extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"dd/MM/yyyy",
|
||||
"d/MM/yy",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
112
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_BE.java
Normal file
112
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_BE.java
Normal file
@@ -0,0 +1,112 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_BE extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH 'h' mm 'min' ss 's' zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM y",
|
||||
"d MMM y",
|
||||
"dd MMM y",
|
||||
"dd/MM/yy",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
88
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_BW.java
Normal file
88
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_BW.java
Normal file
@@ -0,0 +1,88 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_BW extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE dd MMMM y",
|
||||
"dd MMMM y",
|
||||
"MMM d, y",
|
||||
"dd/MM/yy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
88
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_BZ.java
Normal file
88
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_BZ.java
Normal file
@@ -0,0 +1,88 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_BZ extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y",
|
||||
"MMMM d, y",
|
||||
"dd-MMM-y",
|
||||
"M/d/yy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
81
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_CA.java
Normal file
81
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_CA.java
Normal file
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_CA extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y",
|
||||
"d MMMM, y",
|
||||
"yyyy-MM-dd",
|
||||
"yy-MM-dd",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
258
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_Dsrt.java
Normal file
258
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_Dsrt.java
Normal file
@@ -0,0 +1,258 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_Dsrt extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"\ud801\udc16\ud801\udc30\ud801\udc4c\ud801\udc37\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
|
||||
"\ud801\udc19\ud801\udc2f\ud801\udc3a\ud801\udc49\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
|
||||
"\ud801\udc23\ud801\udc2a\ud801\udc49\ud801\udc3d",
|
||||
"\ud801\udc01\ud801\udc39\ud801\udc49\ud801\udc2e\ud801\udc4a",
|
||||
"\ud801\udc23\ud801\udc29",
|
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4c",
|
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4a\ud801\udc34",
|
||||
"\ud801\udc02\ud801\udc40\ud801\udc32\ud801\udc45\ud801\udc3b",
|
||||
"\ud801\udc1d\ud801\udc2f\ud801\udc39\ud801\udc3b\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
|
||||
"\ud801\udc09\ud801\udc3f\ud801\udc3b\ud801\udc2c\ud801\udc3a\ud801\udc32\ud801\udc49",
|
||||
"\ud801\udc24\ud801\udc2c\ud801\udc42\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
|
||||
"\ud801\udc14\ud801\udc28\ud801\udc45\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNames",
|
||||
new String[] {
|
||||
"\ud801\udc16\ud801\udc30\ud801\udc4c\ud801\udc37\ud801\udc2d\ud801\udc2f\ud801\udc49\ud801\udc28",
|
||||
"",
|
||||
"\ud801\udc23\ud801\udc2a\ud801\udc49\ud801\udc3d",
|
||||
"\ud801\udc01\ud801\udc39\ud801\udc49\ud801\udc2e\ud801\udc4a",
|
||||
"\ud801\udc23\ud801\udc29",
|
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4c",
|
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4a\ud801\udc34",
|
||||
"\ud801\udc02\ud801\udc40\ud801\udc32\ud801\udc45\ud801\udc3b",
|
||||
"\ud801\udc1d\ud801\udc2f\ud801\udc39\ud801\udc3b\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
|
||||
"\ud801\udc09\ud801\udc3f\ud801\udc3b\ud801\udc2c\ud801\udc3a\ud801\udc32\ud801\udc49",
|
||||
"\ud801\udc24\ud801\udc2c\ud801\udc42\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
|
||||
"\ud801\udc14\ud801\udc28\ud801\udc45\ud801\udc2f\ud801\udc4b\ud801\udc3a\ud801\udc32\ud801\udc49",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"\ud801\udc16\ud801\udc30\ud801\udc4c",
|
||||
"\ud801\udc19\ud801\udc2f\ud801\udc3a",
|
||||
"\ud801\udc23\ud801\udc2a\ud801\udc49",
|
||||
"\ud801\udc01\ud801\udc39\ud801\udc49",
|
||||
"\ud801\udc23\ud801\udc29",
|
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4c",
|
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4a",
|
||||
"\ud801\udc02\ud801\udc40",
|
||||
"\ud801\udc1d\ud801\udc2f\ud801\udc39",
|
||||
"\ud801\udc09\ud801\udc3f\ud801\udc3b",
|
||||
"\ud801\udc24\ud801\udc2c\ud801\udc42",
|
||||
"\ud801\udc14\ud801\udc28\ud801\udc45",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"\ud801\udc16\ud801\udc30\ud801\udc4c",
|
||||
"",
|
||||
"\ud801\udc23\ud801\udc2a\ud801\udc49",
|
||||
"\ud801\udc01\ud801\udc39\ud801\udc49",
|
||||
"\ud801\udc23\ud801\udc29",
|
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4c",
|
||||
"\ud801\udc16\ud801\udc2d\ud801\udc4a",
|
||||
"\ud801\udc02\ud801\udc40",
|
||||
"\ud801\udc1d\ud801\udc2f\ud801\udc39",
|
||||
"\ud801\udc09\ud801\udc3f\ud801\udc3b",
|
||||
"\ud801\udc24\ud801\udc2c\ud801\udc42",
|
||||
"\ud801\udc14\ud801\udc28\ud801\udc45",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"\ud801\udc16",
|
||||
"\ud801\udc19",
|
||||
"\ud801\udc23",
|
||||
"\ud801\udc01",
|
||||
"\ud801\udc23",
|
||||
"\ud801\udc16",
|
||||
"\ud801\udc16",
|
||||
"\ud801\udc02",
|
||||
"\ud801\udc1d",
|
||||
"\ud801\udc09",
|
||||
"\ud801\udc24",
|
||||
"\ud801\udc14",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthNarrows",
|
||||
new String[] {
|
||||
"\ud801\udc16",
|
||||
"\ud801\udc19",
|
||||
"\ud801\udc23",
|
||||
"\ud801\udc01",
|
||||
"\ud801\udc23",
|
||||
"\ud801\udc16",
|
||||
"\ud801\udc16",
|
||||
"\ud801\udc02",
|
||||
"\ud801\udc1d",
|
||||
"\ud801\udc09",
|
||||
"\ud801\udc24",
|
||||
"\ud801\udc14",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"\ud801\udc1d\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
|
||||
"\ud801\udc23\ud801\udc32\ud801\udc4c\ud801\udc3c\ud801\udc29",
|
||||
"\ud801\udc13\ud801\udc2d\ud801\udc46\ud801\udc3c\ud801\udc29",
|
||||
"\ud801\udc0e\ud801\udc2f\ud801\udc4c\ud801\udc46\ud801\udc3c\ud801\udc29",
|
||||
"\ud801\udc1b\ud801\udc32\ud801\udc49\ud801\udc46\ud801\udc3c\ud801\udc29",
|
||||
"\ud801\udc19\ud801\udc49\ud801\udc34\ud801\udc3c\ud801\udc29",
|
||||
"\ud801\udc1d\ud801\udc30\ud801\udc3b\ud801\udc32\ud801\udc49\ud801\udc3c\ud801\udc29",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"\ud801\udc1d\ud801\udc32\ud801\udc4c",
|
||||
"\ud801\udc23\ud801\udc32\ud801\udc4c",
|
||||
"\ud801\udc13\ud801\udc2d\ud801\udc46",
|
||||
"\ud801\udc0e\ud801\udc2f\ud801\udc4c",
|
||||
"\ud801\udc1b\ud801\udc32\ud801\udc49",
|
||||
"\ud801\udc19\ud801\udc49\ud801\udc34",
|
||||
"\ud801\udc1d\ud801\udc30\ud801\udc3b",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"\ud801\udc1d",
|
||||
"\ud801\udc23",
|
||||
"\ud801\udc13",
|
||||
"\ud801\udc0e",
|
||||
"\ud801\udc1b",
|
||||
"\ud801\udc19",
|
||||
"\ud801\udc1d",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1\ud801\udc45\ud801\udc3b \ud801\udc3f\ud801\udc36\ud801\udc2a\ud801\udc49\ud801\udc3b\ud801\udc32\ud801\udc49",
|
||||
"2\ud801\udc4c\ud801\udc3c \ud801\udc3f\ud801\udc36\ud801\udc2a\ud801\udc49\ud801\udc3b\ud801\udc32\ud801\udc49",
|
||||
"3\ud801\udc49\ud801\udc3c \ud801\udc3f\ud801\udc36\ud801\udc2a\ud801\udc49\ud801\udc3b\ud801\udc32\ud801\udc49",
|
||||
"4\ud801\udc49\ud801\udc43 \ud801\udc3f\ud801\udc36\ud801\udc2a\ud801\udc49\ud801\udc3b\ud801\udc32\ud801\udc49",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"\ud801\udc171",
|
||||
"\ud801\udc172",
|
||||
"\ud801\udc173",
|
||||
"\ud801\udc174",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"\ud801\udc08\ud801\udc23",
|
||||
"\ud801\udc11\ud801\udc23",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"\ud801\udc12\ud801\udc32\ud801\udc41\ud801\udc2c\ud801\udc49 \ud801\udc17\ud801\udc49\ud801\udc34\ud801\udc45\ud801\udc3b",
|
||||
"\ud801\udc08\ud801\udc4c\ud801\udc2c \ud801\udc14\ud801\udc31\ud801\udc4b\ud801\udc2e\ud801\udc4c\ud801\udc28",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"\ud801\udc12\ud801\udc17",
|
||||
"\ud801\udc08\ud801\udc14",
|
||||
}
|
||||
},
|
||||
{ "narrow.Eras",
|
||||
new String[] {
|
||||
"\ud801\udc12",
|
||||
"\ud801\udc08",
|
||||
}
|
||||
},
|
||||
{ "field.era", "\ud801\udc07\ud801\udc49\ud801\udc32" },
|
||||
{ "field.year", "\ud801\udc0f\ud801\udc28\ud801\udc49" },
|
||||
{ "field.month", "\ud801\udc23\ud801\udc32\ud801\udc4c\ud801\udc43" },
|
||||
{ "field.week", "\ud801\udc0e\ud801\udc28\ud801\udc3f" },
|
||||
{ "field.weekday", "\ud801\udc14\ud801\udc29 \ud801\udc32\ud801\udc42 \ud801\udc44 \ud801\udc0e\ud801\udc28\ud801\udc3f" },
|
||||
{ "field.dayperiod", "\ud801\udc08\ud801\udc23/\ud801\udc11\ud801\udc23" },
|
||||
{ "field.hour", "\ud801\udc0d\ud801\udc49" },
|
||||
{ "field.minute", "\ud801\udc23\ud801\udc2e\ud801\udc4c\ud801\udc32\ud801\udc3b" },
|
||||
{ "field.second", "\ud801\udc1d\ud801\udc2f\ud801\udc3f\ud801\udc32\ud801\udc4c\ud801\udc3c" },
|
||||
{ "field.zone", "\ud801\udc1e\ud801\udc2c\ud801\udc4c" },
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
160
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_GB.java
Normal file
160
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_GB.java
Normal file
@@ -0,0 +1,160 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_GB extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"dd/MM/y G",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y GGGG",
|
||||
"d MMMM y GGGG",
|
||||
"d MMM y GGGG",
|
||||
"dd/MM/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"dd/MM/y GGGGG",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y GGGG",
|
||||
"d MMMM y GGGG",
|
||||
"d MMM y GGGG",
|
||||
"dd/MM/y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"dd/MM/y GGGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y GGGG",
|
||||
"d MMMM y GGGG",
|
||||
"d MMM y GGGG",
|
||||
"dd/MM/y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y G",
|
||||
"d MMMM y G",
|
||||
"d MMM y G",
|
||||
"dd/MM/y G",
|
||||
}
|
||||
},
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y GGGG",
|
||||
"d MMMM y GGGG",
|
||||
"d MMM y GGGG",
|
||||
"dd/MM/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
144
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_HK.java
Normal file
144
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_HK.java
Normal file
@@ -0,0 +1,144 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_HK extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y",
|
||||
"d MMMM, y",
|
||||
"d MMM, y",
|
||||
"d/M/yy",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y GGGG",
|
||||
"d MMMM, y GGGG",
|
||||
"d MMM, y GGGG",
|
||||
"d/M/yy G",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y GGGG",
|
||||
"d MMMM, y GGGG",
|
||||
"d MMM, y GGGG",
|
||||
"d/M/yy G",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y GGGG",
|
||||
"d MMMM, y GGGG",
|
||||
"d MMM, y GGGG",
|
||||
"d/M/yy G",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
87
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_IE.java
Normal file
87
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_IE.java
Normal file
@@ -0,0 +1,87 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_IE extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"a.m.",
|
||||
"p.m.",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM y",
|
||||
"d MMMM y",
|
||||
"d MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
96
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_IN.java
Normal file
96
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_IN.java
Normal file
@@ -0,0 +1,96 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_IN extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE d MMMM y",
|
||||
"d MMMM y",
|
||||
"dd-MMM-y",
|
||||
"dd/MM/yy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##,##0.###",
|
||||
"\u00a4\u00a0#,##,##0.00",
|
||||
"#,##,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
80
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_JM.java
Normal file
80
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_JM.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_JM extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
81
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_MT.java
Normal file
81
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_MT.java
Normal file
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_MT extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"dd MMMM y",
|
||||
"dd MMM y",
|
||||
"dd/MM/yyyy",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
80
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_NA.java
Normal file
80
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_NA.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_NA extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
89
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_NZ.java
Normal file
89
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_NZ.java
Normal file
@@ -0,0 +1,89 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_NZ extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM y",
|
||||
"d MMMM y",
|
||||
"d/MM/yyyy",
|
||||
"d/MM/yy",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
89
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_PK.java
Normal file
89
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_PK.java
Normal file
@@ -0,0 +1,89 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_PK extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, MMMM d, y",
|
||||
"MMMM d, y",
|
||||
"dd-MMM-y",
|
||||
"M/d/yy",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
144
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_SG.java
Normal file
144
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_SG.java
Normal file
@@ -0,0 +1,144 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_SG extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"h:mm:ss a zzzz",
|
||||
"h:mm:ss a z",
|
||||
"h:mm:ss a",
|
||||
"h:mm a",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y",
|
||||
"d MMMM, y",
|
||||
"d MMM, y",
|
||||
"d/M/yy",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y GGGG",
|
||||
"d MMMM, y GGGG",
|
||||
"d MMM, y GGGG",
|
||||
"d/M/yy G",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y GGGG",
|
||||
"d MMMM, y GGGG",
|
||||
"d MMM, y GGGG",
|
||||
"d/M/yy G",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y G",
|
||||
"d MMMM, y G",
|
||||
"d MMM, y G",
|
||||
"d/M/yy GGGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d MMMM, y GGGG",
|
||||
"d MMMM, y GGGG",
|
||||
"d MMM, y GGGG",
|
||||
"d/M/yy G",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00;(\u00a4#,##0.00)",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
80
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_TT.java
Normal file
80
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_TT.java
Normal file
@@ -0,0 +1,80 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_TT extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_US_POSIX extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"0/00",
|
||||
"INF",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#0.######",
|
||||
"\u00a4\u00a0#0.00",
|
||||
"#0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
97
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_ZA.java
Normal file
97
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_ZA.java
Normal file
@@ -0,0 +1,97 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_ZA extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE dd MMMM y",
|
||||
"dd MMMM y",
|
||||
"dd MMM y",
|
||||
"yyyy/MM/dd",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
88
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_ZW.java
Normal file
88
jdkSrc/jdk8/sun/text/resources/cldr/en/FormatData_en_ZW.java
Normal file
@@ -0,0 +1,88 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.en;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_en_ZW extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE dd MMMM y",
|
||||
"dd MMMM y",
|
||||
"dd MMM,y",
|
||||
"d/M/yyyy",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
173
jdkSrc/jdk8/sun/text/resources/cldr/eo/FormatData_eo.java
Normal file
173
jdkSrc/jdk8/sun/text/resources/cldr/eo/FormatData_eo.java
Normal file
@@ -0,0 +1,173 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.eo;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_eo extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"januaro",
|
||||
"februaro",
|
||||
"marto",
|
||||
"aprilo",
|
||||
"majo",
|
||||
"junio",
|
||||
"julio",
|
||||
"a\u016dgusto",
|
||||
"septembro",
|
||||
"oktobro",
|
||||
"novembro",
|
||||
"decembro",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"jan",
|
||||
"feb",
|
||||
"mar",
|
||||
"apr",
|
||||
"maj",
|
||||
"jun",
|
||||
"jul",
|
||||
"a\u016dg",
|
||||
"sep",
|
||||
"okt",
|
||||
"nov",
|
||||
"dec",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"diman\u0109o",
|
||||
"lundo",
|
||||
"mardo",
|
||||
"merkredo",
|
||||
"\u0135a\u016ddo",
|
||||
"vendredo",
|
||||
"sabato",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"di",
|
||||
"lu",
|
||||
"ma",
|
||||
"me",
|
||||
"\u0135a",
|
||||
"ve",
|
||||
"sa",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"atm",
|
||||
"ptm",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"aK",
|
||||
"pK",
|
||||
}
|
||||
},
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"H-'a' 'horo' 'kaj' m:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d-'a' 'de' MMMM y",
|
||||
"y-MMMM-dd",
|
||||
"y-MMM-dd",
|
||||
"yy-MM-dd",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
"\u00a0",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
359
jdkSrc/jdk8/sun/text/resources/cldr/es/FormatData_es.java
Normal file
359
jdkSrc/jdk8/sun/text/resources/cldr/es/FormatData_es.java
Normal file
@@ -0,0 +1,359 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.es;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_es extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "MonthNames",
|
||||
new String[] {
|
||||
"enero",
|
||||
"febrero",
|
||||
"marzo",
|
||||
"abril",
|
||||
"mayo",
|
||||
"junio",
|
||||
"julio",
|
||||
"agosto",
|
||||
"septiembre",
|
||||
"octubre",
|
||||
"noviembre",
|
||||
"diciembre",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthAbbreviations",
|
||||
new String[] {
|
||||
"ene",
|
||||
"feb",
|
||||
"mar",
|
||||
"abr",
|
||||
"may",
|
||||
"jun",
|
||||
"jul",
|
||||
"ago",
|
||||
"sep",
|
||||
"oct",
|
||||
"nov",
|
||||
"dic",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "standalone.MonthAbbreviations",
|
||||
new String[] {
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"mayo",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "MonthNarrows",
|
||||
new String[] {
|
||||
"E",
|
||||
"F",
|
||||
"M",
|
||||
"A",
|
||||
"M",
|
||||
"J",
|
||||
"J",
|
||||
"A",
|
||||
"S",
|
||||
"O",
|
||||
"N",
|
||||
"D",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "DayNames",
|
||||
new String[] {
|
||||
"domingo",
|
||||
"lunes",
|
||||
"martes",
|
||||
"mi\u00e9rcoles",
|
||||
"jueves",
|
||||
"viernes",
|
||||
"s\u00e1bado",
|
||||
}
|
||||
},
|
||||
{ "DayAbbreviations",
|
||||
new String[] {
|
||||
"dom",
|
||||
"lun",
|
||||
"mar",
|
||||
"mi\u00e9",
|
||||
"jue",
|
||||
"vie",
|
||||
"s\u00e1b",
|
||||
}
|
||||
},
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"D",
|
||||
"L",
|
||||
"M",
|
||||
"X",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "QuarterNames",
|
||||
new String[] {
|
||||
"1er trimestre",
|
||||
"2\u00ba trimestre",
|
||||
"3er trimestre",
|
||||
"4\u00ba trimestre",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterNames",
|
||||
new String[] {
|
||||
"1.er trimestre",
|
||||
"2.\u00ba trimestre",
|
||||
"3.er trimestre",
|
||||
"4.\u00ba trimestre",
|
||||
}
|
||||
},
|
||||
{ "QuarterAbbreviations",
|
||||
new String[] {
|
||||
"T1",
|
||||
"T2",
|
||||
"T3",
|
||||
"T4",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1T",
|
||||
"2T",
|
||||
"3T",
|
||||
"4T",
|
||||
}
|
||||
},
|
||||
{ "standalone.QuarterNarrows",
|
||||
new String[] {
|
||||
"1T",
|
||||
"2T",
|
||||
"3T",
|
||||
"4T",
|
||||
}
|
||||
},
|
||||
{ "AmPmMarkers",
|
||||
new String[] {
|
||||
"a.m.",
|
||||
"p.m.",
|
||||
}
|
||||
},
|
||||
{ "long.Eras",
|
||||
new String[] {
|
||||
"antes de Cristo",
|
||||
"anno D\u00f3mini",
|
||||
}
|
||||
},
|
||||
{ "Eras",
|
||||
new String[] {
|
||||
"a.C.",
|
||||
"d.C.",
|
||||
}
|
||||
},
|
||||
{ "field.era", "era" },
|
||||
{ "field.year", "a\u00f1o" },
|
||||
{ "field.month", "mes" },
|
||||
{ "field.week", "semana" },
|
||||
{ "field.weekday", "d\u00eda de la semana" },
|
||||
{ "field.dayperiod", "periodo del d\u00eda" },
|
||||
{ "field.hour", "hora" },
|
||||
{ "field.minute", "minuto" },
|
||||
{ "field.second", "segundo" },
|
||||
{ "field.zone", "zona" },
|
||||
{ "TimePatterns",
|
||||
new String[] {
|
||||
"HH:mm:ss zzzz",
|
||||
"HH:mm:ss z",
|
||||
"HH:mm:ss",
|
||||
"HH:mm",
|
||||
}
|
||||
},
|
||||
{ "DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d 'de' MMMM 'de' y",
|
||||
"d 'de' MMMM 'de' y",
|
||||
"dd/MM/yyyy",
|
||||
"dd/MM/yy",
|
||||
}
|
||||
},
|
||||
{ "java.time.buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d 'de' MMMM 'de' y G",
|
||||
"d 'de' MMMM 'de' y G",
|
||||
"dd/MM/y G",
|
||||
"dd/MM/y G",
|
||||
}
|
||||
},
|
||||
{ "buddhist.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d 'de' MMMM 'de' y GGGG",
|
||||
"d 'de' MMMM 'de' y GGGG",
|
||||
"dd/MM/y GGGG",
|
||||
"dd/MM/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "java.time.japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d 'de' MMMM 'de' y G",
|
||||
"d 'de' MMMM 'de' y G",
|
||||
"dd/MM/y G",
|
||||
"dd/MM/y GGGGG",
|
||||
}
|
||||
},
|
||||
{ "japanese.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d 'de' MMMM 'de' y GGGG",
|
||||
"d 'de' MMMM 'de' y GGGG",
|
||||
"dd/MM/y GGGG",
|
||||
"dd/MM/y G",
|
||||
}
|
||||
},
|
||||
{ "roc.Eras",
|
||||
new String[] {
|
||||
"antes de R.O.C.",
|
||||
"",
|
||||
}
|
||||
},
|
||||
{ "java.time.roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d 'de' MMMM 'de' y G",
|
||||
"d 'de' MMMM 'de' y G",
|
||||
"dd/MM/y G",
|
||||
"dd/MM/y GGGGG",
|
||||
}
|
||||
},
|
||||
{ "roc.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d 'de' MMMM 'de' y GGGG",
|
||||
"d 'de' MMMM 'de' y GGGG",
|
||||
"dd/MM/y GGGG",
|
||||
"dd/MM/y G",
|
||||
}
|
||||
},
|
||||
{ "java.time.islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d 'de' MMMM 'de' y G",
|
||||
"d 'de' MMMM 'de' y G",
|
||||
"dd/MM/y G",
|
||||
"dd/MM/y G",
|
||||
}
|
||||
},
|
||||
{ "islamic.DatePatterns",
|
||||
new String[] {
|
||||
"EEEE, d 'de' MMMM 'de' y GGGG",
|
||||
"d 'de' MMMM 'de' y GGGG",
|
||||
"dd/MM/y GGGG",
|
||||
"dd/MM/y GGGG",
|
||||
}
|
||||
},
|
||||
{ "calendarname.islamic-civil", "calendario civil isl\u00e1mico" },
|
||||
{ "calendarname.islamicc", "calendario civil isl\u00e1mico" },
|
||||
{ "calendarname.buddhist", "calendario budista" },
|
||||
{ "calendarname.islamic", "calendario isl\u00e1mico" },
|
||||
{ "calendarname.gregorian", "calendario gregoriano" },
|
||||
{ "calendarname.gregory", "calendario gregoriano" },
|
||||
{ "calendarname.roc", "calendario de la Rep\u00fablica de China" },
|
||||
{ "calendarname.japanese", "calendario japon\u00e9s" },
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
",",
|
||||
".",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"#,##0.00\u00a0\u00a4",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
115
jdkSrc/jdk8/sun/text/resources/cldr/es/FormatData_es_419.java
Normal file
115
jdkSrc/jdk8/sun/text/resources/cldr/es/FormatData_es_419.java
Normal file
@@ -0,0 +1,115 @@
|
||||
/*
|
||||
* Copyright (c) 2012, 2025, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation. Oracle designates this
|
||||
* particular file as subject to the "Classpath" exception as provided
|
||||
* by Oracle in the LICENSE file that accompanied this code.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* COPYRIGHT AND PERMISSION NOTICE
|
||||
*
|
||||
* Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
|
||||
* the Terms of Use in http://www.unicode.org/copyright.html.
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of the Unicode data files and any associated documentation (the "Data
|
||||
* Files") or Unicode software and any associated documentation (the
|
||||
* "Software") to deal in the Data Files or Software without restriction,
|
||||
* including without limitation the rights to use, copy, modify, merge,
|
||||
* publish, distribute, and/or sell copies of the Data Files or Software, and
|
||||
* to permit persons to whom the Data Files or Software are furnished to do so,
|
||||
* provided that (a) the above copyright notice(s) and this permission notice
|
||||
* appear with all copies of the Data Files or Software, (b) both the above
|
||||
* copyright notice(s) and this permission notice appear in associated
|
||||
* documentation, and (c) there is clear notice in each modified Data File or
|
||||
* in the Software as well as in the documentation associated with the Data
|
||||
* File(s) or Software that the data or software has been modified.
|
||||
*
|
||||
* THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
||||
* KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
||||
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
||||
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
|
||||
* CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
||||
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
||||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THE DATA FILES OR SOFTWARE.
|
||||
*
|
||||
* Except as contained in this notice, the name of a copyright holder shall not
|
||||
* be used in advertising or otherwise to promote the sale, use or other
|
||||
* dealings in these Data Files or Software without prior written authorization
|
||||
* of the copyright holder.
|
||||
*/
|
||||
|
||||
package sun.text.resources.cldr.es;
|
||||
|
||||
import java.util.ListResourceBundle;
|
||||
|
||||
public class FormatData_es_419 extends ListResourceBundle {
|
||||
@Override
|
||||
protected final Object[][] getContents() {
|
||||
final Object[][] data = new Object[][] {
|
||||
{ "DayNarrows",
|
||||
new String[] {
|
||||
"D",
|
||||
"L",
|
||||
"M",
|
||||
"M",
|
||||
"J",
|
||||
"V",
|
||||
"S",
|
||||
}
|
||||
},
|
||||
{ "QuarterNarrows",
|
||||
new String[] {
|
||||
"1",
|
||||
"2",
|
||||
"3",
|
||||
"4",
|
||||
}
|
||||
},
|
||||
{ "DefaultNumberingSystem", "latn" },
|
||||
{ "latn.NumberElements",
|
||||
new String[] {
|
||||
".",
|
||||
",",
|
||||
";",
|
||||
"%",
|
||||
"0",
|
||||
"#",
|
||||
"-",
|
||||
"E",
|
||||
"\u2030",
|
||||
"\u221e",
|
||||
"NaN",
|
||||
}
|
||||
},
|
||||
{ "NumberPatterns",
|
||||
new String[] {
|
||||
"#,##0.###",
|
||||
"\u00a4#,##0.00",
|
||||
"#,##0%",
|
||||
}
|
||||
},
|
||||
};
|
||||
return data;
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user