]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jscalendar/lang/calendar-jp.js
Release 6.1.4
[Github/sugarcrm.git] / jscalendar / lang / calendar-jp.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 r56990 - 2010-06-16 13:05:36 -0700 (Wed, 16 Jun 2010) - kjing - snapshot "Mango" svn branch to a new one for GitHub sync
12
13 r56989 - 2010-06-16 13:01:33 -0700 (Wed, 16 Jun 2010) - kjing - defunt "Mango" svn dev branch before github cutover
14
15 r55980 - 2010-04-19 13:31:28 -0700 (Mon, 19 Apr 2010) - kjing - create Mango (6.1) based on windex
16
17 r51719 - 2009-10-22 10:18:00 -0700 (Thu, 22 Oct 2009) - mitani - Converted to Build 3  tags and updated the build system 
18
19 r51634 - 2009-10-19 13:32:22 -0700 (Mon, 19 Oct 2009) - mitani - Windex is the branch for Sugar Sales 1.0 development
20
21 r50375 - 2009-08-24 18:07:43 -0700 (Mon, 24 Aug 2009) - dwong - branch kobe2 from tokyo r50372
22
23 r42807 - 2008-12-29 11:16:59 -0800 (Mon, 29 Dec 2008) - dwong - Branch from trunk/sugarcrm r42806 to branches/tokyo/sugarcrm
24
25 r13449 - 2006-05-24 14:08:37 -0700 (Wed, 24 May 2006) - chris - Bug 5447: i18n fix for JScalendar
26 Touched:
27 jscalendar/lang/calendar-jp.js
28
29 r550 - 2004-09-03 15:39:17 -0700 (Fri, 03 Sep 2004) - jostrow - Calendar feature
30
31
32 */
33
34 // ** I18N
35 Calendar._DN = new Array
36 ("日曜日",
37  "月曜日",
38  "火曜日",
39  "水曜日",
40  "木曜日",
41  "金曜日",
42  "土曜日",
43  "日曜日");
44
45 // short day names
46 Calendar._SDN = new Array
47 ("日",
48  "月",
49  "火",
50  "水",
51  "木",
52  "金",
53  "土",
54  "日");
55
56
57 Calendar._MN = new Array
58 ("1月",
59  "2月",
60  "3月",
61  "4月",
62  "5月",
63  "6月",
64  "7月",
65  "8月",
66  "9月",
67  "10月",
68  "11月",
69  "12月");
70 // short month names
71 Calendar._SMN = new Array
72 ("1月",
73  "2月",
74  "3月",
75  "4月",
76  "5月",
77  "6月",
78  "7月",
79  "8月",
80  "9月",
81  "10月",
82  "11月",
83  "12月");
84
85 // tooltips
86 if(Calendar._TT == undefined) Calendar._TT = {};
87 Calendar._TT["INFO"] = "カレンダーについて";
88
89 Calendar._TT["ABOUT"] =
90 "DHTML Date/Time Selector\n" +
91 "(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
92 "For latest version visit: http://dynarch.com/mishoo/calendar.epl\n" +
93 "Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
94 "\n\n" +
95 "Date selection:\n" +
96 "- Use the \xab, \xbb buttons to select year\n" +
97 "- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
98 "- Hold mouse button on any of the above buttons for faster selection.";
99 Calendar._TT["ABOUT_TIME"] = "\n\n" +
100 "Time selection:\n" +
101 "- Click on any of the time parts to increase it\n" +
102 "- or Shift-click to decrease it\n" +
103 "- or click and drag for faster selection.";
104
105 Calendar._TT["PREV_YEAR"] = "前年";
106 Calendar._TT["PREV_MONTH"] = "前月";
107 Calendar._TT["GO_TODAY"] = "今日へ";
108 Calendar._TT["NEXT_MONTH"] = "翌月";
109 Calendar._TT["NEXT_YEAR"] = "翌年";
110 Calendar._TT["SEL_DATE"] = "日付選択";
111 Calendar._TT["DRAG_TO_MOVE"] = "ウィンドウの移動";
112 Calendar._TT["PART_TODAY"] = " (今日)";
113
114 // the following is to inform that "%s" is to be the first day of week
115 // %s will be replaced with the day name.
116 Calendar._TT["DAY_FIRST"] = "%sを最初に表示";
117
118 // This may be locale-dependent.  It specifies the week-end days, as an array
119 // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
120 // means Monday, etc.
121 Calendar._TT["WEEKEND"] = "0,6";
122
123 Calendar._TT["CLOSE"] = "閉じる";
124 Calendar._TT["TODAY"] = "今日";
125 Calendar._TT["TIME_PART"] = "(Shift-)クリックかドラッグで変更";
126
127 // date formats
128 //Calendar._TT["DEF_DATE_FORMAT"] = "y-mm-dd";
129 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
130 //Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
131 Calendar._TT["TT_DATE_FORMAT"] = "%b %e日 %a曜日";
132
133 Calendar._TT["WK"] = "週";
134 Calendar._TT["TIME"] = "時間:";