]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jscalendar/lang/calendar-ja.js
Add .gitignore
[Github/sugarcrm.git] / jscalendar / lang / calendar-ja.js
1 /*
2
3 Modification information for LGPL compliance
4
5 r58364 - 2010-09-29 22:39:05 -0700 (Wed, 29 Sep 2010) - kjing - Author: Stanislav Malyshev <smalyshev@gmail.com>
6     Fix languages in JS calendar
7
8 r58354 - 2010-09-29 14:39:04 -0700 (Wed, 29 Sep 2010) - kjing - Author: Majed Itani <mitani@mitani.local>
9      fixes issues where language pack calendars were not compatible
10
11
12 */
13
14 // ** I18N
15 Calendar._DN = new Array
16 ("日曜日",
17  "月曜日",
18  "火曜日",
19  "水曜日",
20  "木曜日",
21  "金曜日",
22  "土曜日",
23  "日曜日");
24
25 // short day names
26 Calendar._SDN = new Array
27 ("日",
28  "月",
29  "火",
30  "水",
31  "木",
32  "金",
33  "土",
34  "日");
35
36
37 Calendar._MN = new Array
38 ("1月",
39  "2月",
40  "3月",
41  "4月",
42  "5月",
43  "6月",
44  "7月",
45  "8月",
46  "9月",
47  "10月",
48  "11月",
49  "12月");
50 // short month names
51 Calendar._SMN = new Array
52 ("1月",
53  "2月",
54  "3月",
55  "4月",
56  "5月",
57  "6月",
58  "7月",
59  "8月",
60  "9月",
61  "10月",
62  "11月",
63  "12月");
64
65 // tooltips
66
67 Calendar._TT["INFO"] = "カレンダーについて";
68
69 Calendar._TT["ABOUT"] =
70 "DHTML Date/Time Selector\n" +
71 "(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
72 "For latest version visit: http://dynarch.com/mishoo/calendar.epl\n" +
73 "Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
74 "\n\n" +
75 "Date selection:\n" +
76 "- Use the \xab, \xbb buttons to select year\n" +
77 "- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
78 "- Hold mouse button on any of the above buttons for faster selection.";
79 Calendar._TT["ABOUT_TIME"] = "\n\n" +
80 "Time selection:\n" +
81 "- Click on any of the time parts to increase it\n" +
82 "- or Shift-click to decrease it\n" +
83 "- or click and drag for faster selection.";
84
85 Calendar._TT["PREV_YEAR"] = "前年";
86 Calendar._TT["PREV_MONTH"] = "前月";
87 Calendar._TT["GO_TODAY"] = "今日へ";
88 Calendar._TT["NEXT_MONTH"] = "翌月";
89 Calendar._TT["NEXT_YEAR"] = "翌年";
90 Calendar._TT["SEL_DATE"] = "日付選択";
91 Calendar._TT["DRAG_TO_MOVE"] = "ウィンドウの移動";
92 Calendar._TT["PART_TODAY"] = " (今日)";
93
94 // the following is to inform that "%s" is to be the first day of week
95 // %s will be replaced with the day name.
96 Calendar._TT["DAY_FIRST"] = "%sを最初に表示";
97
98 // This may be locale-dependent.  It specifies the week-end days, as an array
99 // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
100 // means Monday, etc.
101 Calendar._TT["WEEKEND"] = "0,6";
102
103 Calendar._TT["CLOSE"] = "閉じる";
104 Calendar._TT["TODAY"] = "今日";
105 Calendar._TT["TIME_PART"] = "(Shift-)クリックかドラッグで変更";
106
107 // date formats
108 //Calendar._TT["DEF_DATE_FORMAT"] = "y-mm-dd";
109 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
110 //Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
111 Calendar._TT["TT_DATE_FORMAT"] = "%b %e日 %a曜日";
112
113 Calendar._TT["WK"] = "週";
114 Calendar._TT["TIME"] = "時間:";