localeelements_ja.java
来自「《移动Agent技术》一书的所有章节源代码。」· Java 代码 · 共 1,024 行 · 第 1/5 页
JAVA
1,024 行
/*
* @(#)LocaleElements_ja.java 1.12 98/03/05
*
* (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
* (C) Copyright IBM Corp. 1996, 1997 - All Rights Reserved
*
* Portions copyright (c) 1996 Sun Microsystems, Inc. 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.
*
* Permission to use, copy, modify, and distribute this software
* and its documentation for NON-COMMERCIAL purposes and without
* fee is hereby granted provided that this copyright notice
* appears in all copies. Please refer to the file "copyright.html"
* for further important copyright and licensing information.
*
* SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
* THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
* TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
* ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
* DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
*
*/
/**
*
* Table of Java supplied standard locale elements
*
* automatically generated by java LocaleTool LocaleElements.java
*
* Date Created: Wed Aug 21 15:47:57 1996
*
* Locale Elements and Patterns: last update 10/23/96
*
*
*/
// WARNING : the format of this file will change in the future!
package java.text.resources;
import java.util.ListResourceBundle;
public class LocaleElements_ja extends ListResourceBundle {
/**
* Overrides ListResourceBundle
*/
public Object[][] getContents() {
return new Object[][] {
{ "LocaleString", "ja_JP" }, // locale id based on iso codes
{ "LocaleID", "0411" }, // Windows id
{ "ShortLanguage", "jpn" }, // iso-3 abbrev lang name
{ "ShortCountry", "JPN" }, // iso-3 abbrev country name
{ "Languages", // language names
new String[][] {
{ "ja", "\u65e5\u672c\u8a9e" }
}
},
{ "Countries", // country names
new String[][] {
{ "JP", "\u65e5\u672c" }
}
},
{ "MonthNames",
new String[] {
"1\u6708", // january
"2\u6708", // february
"3\u6708", // march
"4\u6708", // april
"5\u6708", // may
"6\u6708", // june
"7\u6708", // july
"8\u6708", // august
"9\u6708", // september
"10\u6708", // october
"11\u6708", // november
"12\u6708", // december
"" // month 13 if applicable
}
},
{ "MonthAbbreviations",
new String[] {
"1", // abb january
"2", // abb february
"3", // abb march
"4", // abb april
"5", // abb may
"6", // abb june
"7", // abb july
"8", // abb august
"9", // abb september
"10", // abb october
"11", // abb november
"12", // abb december
"" // abb month 13 if applicable
}
},
{ "DayNames",
new String[] {
"\u65e5\u66dc\u65e5", // Sunday
"\u6708\u66dc\u65e5", // Monday
"\u706b\u66dc\u65e5", // Tuesday
"\u6c34\u66dc\u65e5", // Wednesday
"\u6728\u66dc\u65e5", // Thursday
"\u91d1\u66dc\u65e5", // Friday
"\u571f\u66dc\u65e5" // Saturday
}
},
{ "DayAbbreviations",
new String[] {
"\u65e5", // abb Sunday
"\u6708", // abb Monday
"\u706b", // abb Tuesday
"\u6c34", // abb Wednesday
"\u6728", // abb Thursday
"\u91d1", // abb Friday
"\u571f" // abb Saturday
}
},
{ "AmPmMarkers",
new String[] {
"\u5348\u524d", // am marker
"\u5348\u5f8c" // pm marker
}
},
{ "Eras",
new String[] { // era strings
"\u7d00\u5143\u524d",
"\u897f\u66a6"
}
},
{ "NumberPatterns",
new String[] {
"#,##0.###;-#,##0.###", // decimal pattern
"\u00a5#,##0.00", // currency pattern
"#,##0%" // percent pattern
}
},
{ "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
}
},
{ "CurrencyElements",
new String[] {
"\u00a5", // local currency symbol
"JPY", // intl currency symbol
"." // monetary decimal separator
}
},
{ "DateTimePatterns",
new String[] {
"H'\u6642'mm'\u5206'ss'\u79d2'z", // full time pattern
"H:mm:ss:z", // long time pattern
"H:mm:ss", // medium time pattern
"H:mm", // short time pattern
"yyyy'\u5e74'M'\u6708'd'\u65e5'", // full date pattern
"yyyy/MM/dd", // long date pattern
"yyyy/MM/dd", // medium date pattern
"yy/MM/dd", // short date pattern
"{1} {0}" // date-time pattern
}
},
{ "CollationElements",
// Japanese JIS order
// Ignorables
"&\u0486;\u30FC" // L. MARK
+ ";\u3099" // V. MARK
+ ";\u309A" // SV. MARK
+ ";\u30FB" // Kana MIDDLE DOT
+ ",\u303F" // IDEOGRAPHIC HALF FILL SPACE
// Symbols
+ "&\u2212 <\u309B" // Kana-Gana V. SOUND MARK
+ "<\u309C" // Kana-Gana SV. SOUND MARK
+ "<\u309D" // Gana ITERATION MARK
+ ",\u30FD" // Kana ITERATION MARK
+ "<\u309E" // Gana V. ITERATION MARK
+ ",\u30FE" // Kana V. ITERATION MARK
// Hiragana/Kanakana Letters
// Remember that decomposition automatically turns
// <ga> into <ka><length>, so <ga>,etc. don't need separate rules
+ "& Z <\u3042" // Gana A
+ ",\u3041" // Gana SMALL A
+ ",\u30A2" // Kana A
+ ",\u30A1" // Kana SMALL A
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?