noalyss  Version-6.7.2
 All Data Structures Namespaces Files Functions Variables Enumerations
cn_utf8.js
Go to the documentation of this file.
00001 // ** I18N
00002 
00003 // Calendar EN language
00004 // Author: Mihai Bazon, <mishoo@infoiasi.ro>
00005 // Encoding: any
00006 // Translator : Niko <nikoused@gmail.com>
00007 // Distributed under the same terms as the calendar itself.
00008 
00009 // For translators: please use UTF-8 if possible.  We strongly believe that
00010 // Unicode is the answer to a real internationalized world.  Also please
00011 // include your contact information in the header, as can be seen above.
00012 
00013 // full day names
00014 Calendar._DN = new Array
00015 ("\u5468\u65e5",//\u5468\u65e5
00016  "\u5468\u4e00",//\u5468\u4e00
00017  "\u5468\u4e8c",//\u5468\u4e8c
00018  "\u5468\u4e09",//\u5468\u4e09
00019  "\u5468\u56db",//\u5468\u56db
00020  "\u5468\u4e94",//\u5468\u4e94
00021  "\u5468\u516d",//\u5468\u516d
00022  "\u5468\u65e5");//\u5468\u65e5
00023 
00024 // Please note that the following array of short day names (and the same goes
00025 // for short month names, _SMN) isn't absolutely necessary.  We give it here
00026 // for exemplification on how one can customize the short day names, but if
00027 // they are simply the first N letters of the full name you can simply say:
00028 //
00029 //   Calendar._SDN_len = N; // short day name length
00030 //   Calendar._SMN_len = N; // short month name length
00031 //
00032 // If N = 3 then this is not needed either since we assume a value of 3 if not
00033 // present, to be compatible with translation files that were written before
00034 // this feature.
00035 
00036 // short day names
00037 Calendar._SDN = new Array
00038 ("\u5468\u65e5",
00039  "\u5468\u4e00",
00040  "\u5468\u4e8c",
00041  "\u5468\u4e09",
00042  "\u5468\u56db",
00043  "\u5468\u4e94",
00044  "\u5468\u516d",
00045  "\u5468\u65e5");
00046 
00047 // full month names
00048 Calendar._MN = new Array
00049 ("\u4e00\u6708",
00050  "\u4e8c\u6708",
00051  "\u4e09\u6708",
00052  "\u56db\u6708",
00053  "\u4e94\u6708",
00054  "\u516d\u6708",
00055  "\u4e03\u6708",
00056  "\u516b\u6708",
00057  "\u4e5d\u6708",
00058  "\u5341\u6708",
00059  "\u5341\u4e00\u6708",
00060  "\u5341\u4e8c\u6708");
00061 
00062 // short month names
00063 Calendar._SMN = new Array
00064 ("\u4e00\u6708",
00065  "\u4e8c\u6708",
00066  "\u4e09\u6708",
00067  "\u56db\u6708",
00068  "\u4e94\u6708",
00069  "\u516d\u6708",
00070  "\u4e03\u6708",
00071  "\u516b\u6708",
00072  "\u4e5d\u6708",
00073  "\u5341\u6708",
00074  "\u5341\u4e00\u6708",
00075  "\u5341\u4e8c\u6708");
00076 
00077 // tooltips
00078 Calendar._TT = {};
00079 Calendar._TT["INFO"] = "\u5173\u4e8e";
00080 
00081 Calendar._TT["ABOUT"] =
00082 "   DHTML \u65e5\u8d77/\u65f6\u95f4\u9009\u62e9\u63a7\u4ef6\n" +
00083 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
00084 "For latest version visit: \u6700\u65b0\u7248\u672c\u8bf7\u767b\u9646http://www.dynarch.com/projects/calendar/\u5bdf\u770b\n" +
00085 "\u9075\u5faaGNU LGPL.  \u7ec6\u8282\u53c2\u9605 http://gnu.org/licenses/lgpl.html" +
00086 "\n\n" +
00087 "\u65e5\u671f\u9009\u62e9:\n" +
00088 "- \u70b9\u51fb\xab(\xbb)\u6309\u94ae\u9009\u62e9\u4e0a(\u4e0b)\u4e00\u5e74\u5ea6.\n" +
00089 "- \u70b9\u51fb" + String.fromCharCode(0x2039) + "(" + String.fromCharCode(0x203a) + ")\u6309\u94ae\u9009\u62e9\u4e0a(\u4e0b)\u4e2a\u6708\u4efd.\n" +
00090 "- \u957f\u65f6\u95f4\u6309\u7740\u6309\u94ae\u5c06\u51fa\u73b0\u66f4\u591a\u9009\u62e9\u9879.";
00091 Calendar._TT["ABOUT_TIME"] = "\n\n" +
00092 "\u65f6\u95f4\u9009\u62e9:\n" +
00093 "-\u5728\u65f6\u95f4\u90e8\u5206(\u5206\u6216\u8005\u79d2)\u4e0a\u5355\u51fb\u9f20\u6807\u5de6\u952e\u6765\u589e\u52a0\u5f53\u524d\u65f6\u95f4\u90e8\u5206(\u5206\u6216\u8005\u79d2)\n" +
00094 "-\u5728\u65f6\u95f4\u90e8\u5206(\u5206\u6216\u8005\u79d2)\u4e0a\u6309\u4f4fShift\u952e\u540e\u5355\u51fb\u9f20\u6807\u5de6\u952e\u6765\u51cf\u5c11\u5f53\u524d\u65f6\u95f4\u90e8\u5206(\u5206\u6216\u8005\u79d2).";
00095 
00096 Calendar._TT["PREV_YEAR"] = "\u4e0a\u4e00\u5e74";
00097 Calendar._TT["PREV_MONTH"] = "\u4e0a\u4e2a\u6708";
00098 Calendar._TT["GO_TODAY"] = "\u5230\u4eca\u5929";
00099 Calendar._TT["NEXT_MONTH"] = "\u4e0b\u4e2a\u6708";
00100 Calendar._TT["NEXT_YEAR"] = "\u4e0b\u4e00\u5e74";
00101 Calendar._TT["SEL_DATE"] = "\u9009\u62e9\u65e5\u671f";
00102 Calendar._TT["DRAG_TO_MOVE"] = "\u62d6\u52a8";
00103 Calendar._TT["PART_TODAY"] = " (\u4eca\u5929)";
00104 
00105 // the following is to inform that "%s" is to be the first day of week
00106 // %s will be replaced with the day name.
00107 Calendar._TT["DAY_FIRST"] = "%s\u4e3a\u8fd9\u5468\u7684\u7b2c\u4e00\u5929";
00108 
00109 // This may be locale-dependent.  It specifies the week-end days, as an array
00110 // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
00111 // means Monday, etc.
00112 Calendar._TT["WEEKEND"] = "0,6";
00113 
00114 Calendar._TT["CLOSE"] = "\u5173\u95ed";
00115 Calendar._TT["TODAY"] = "\u4eca\u5929";
00116 Calendar._TT["TIME_PART"] = "(\u6309\u7740Shift\u952e)\u5355\u51fb\u6216\u62d6\u52a8\u6539\u53d8\u503c";
00117 
00118 // date formats
00119 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
00120 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e\u65e5";
00121 
00122 Calendar._TT["WK"] = "\u5468";
00123 Calendar._TT["TIME"] = "\u65f6\u95f4:";
 All Data Structures Namespaces Files Functions Variables Enumerations