Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / src / locale / ext-lang-ja.js
1 /*!
2  * Ext JS Library 3.0.3
3  * Copyright(c) 2006-2009 Ext JS, LLC
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /*
8  * Japanese translation
9  * By tyama
10  * 04-08-2007, 05:49 AM
11  *
12  * update based on English Translations by Condor (8 Aug 2008)
13  * By sakuro (30 Aug 2008)
14  */
15
16 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">読ã?¿è¾¼ã?¿ä¸­...</div>';
17
18 if(Ext.DataView){
19   Ext.DataView.prototype.emptyText = "";
20 }
21
22 if(Ext.grid.GridPanel){
23   Ext.grid.GridPanel.prototype.ddText = "{0} è¡\8cé?¸æ\8a\9e";
24 }
25
26 if(Ext.LoadMask){
27   Ext.LoadMask.prototype.msg = "読ã?¿è¾¼ã?¿ä¸­...";
28 }
29
30 Date.monthNames = [
31   '1月',
32   '2月',
33   '3月',
34   '4月',
35   '5月',
36   '6月',
37   '7月',
38   '8月',
39   '9月',
40   '10月',
41   '11月',
42   '12月'
43 ];
44
45 Date.getShortMonthName = function(month) {
46   return "" + (month + 1);
47 };
48
49 Date.monthNumbers = {
50   "1" : 0,
51   "2" : 1,
52   "3" : 2,
53   "4" : 3,
54   "5" : 4,
55   "6" : 5,
56   "7" : 6,
57   "8" : 7,
58   "9" : 8,
59   "10" : 9,
60   "11" : 10,
61   "12" : 11
62 };
63
64 Date.getMonthNumber = function(name) {
65   return Date.monthNumbers[name.substring(0, name.length - 1)];
66   // or simply parseInt(name.substring(0, name.length - 1)) - 1
67 };
68
69 Date.dayNames = [
70   "日曜日",
71   "月曜日",
72   "ç?«æ\9b\9cæ\97¥",
73   "水曜日",
74   "木曜日",
75   "金曜日",
76   "土曜日"
77 ];
78
79 Date.getShortDayName = function(day) {
80   return Date.dayNames[day].substring(0, 1); // just remove "曜日" suffix
81 };
82
83 Date.formatCodes.a = "(this.getHours() < 12 ? 'å?\88å\89?' : 'å?\88å¾\8c')";
84 Date.formatCodes.A = "(this.getHours() < 12 ? 'å?\88å\89?' : 'å?\88å¾\8c')"; // no case difference
85
86 if(Ext.MessageBox){
87   Ext.MessageBox.buttonText = {
88     ok     : "OK",
89     cancel : "キャンセル",
90     yes    : "ã?¯ã?\84",
91     no     : "ã?\84ã?\84ã?\88"
92   };
93 }
94
95 if(Ext.util.Format){
96   Ext.util.Format.date = function(v, format){
97     if(!v) return "";
98     if(!(v instanceof Date)) v = new Date(Date.parse(v));
99     return v.dateFormat(format || "Y/m/d");
100   };
101 }
102
103 if(Ext.DatePicker){
104   Ext.apply(Ext.DatePicker.prototype, {
105     todayText         : "今日",
106     minText           : "é?¸æ\8a\9eã?\97ã?\9fæ\97¥ä»\98ã?¯æ\9c\80å°?å\80¤ä»¥ä¸\8bã?§ã?\99ã\80\82",
107     maxText           : "é?¸æ\8a\9eã?\97ã?\9fæ\97¥ä»\98ã?¯æ\9c\80大å\80¤ä»¥ä¸\8aã?§ã?\99ã\80\82",
108     disabledDaysText  : "",
109     disabledDatesText : "",
110     monthNames        : Date.monthNames,
111     dayNames          : Date.dayNames,
112     nextText          : '次æ\9c\88ã?¸ (ã\82³ã\83³ã\83\88ã\83­ã\83¼ã\83«+å?³)',
113     prevText          : 'å\89\9c\88ã?¸ (ã\82³ã\83³ã\83\88ã\83­ã\83¼ã\83«+å·¦)',
114     monthYearText     : 'æ\9c\88é?¸æ\8a\9e (ã\82³ã\83³ã\83\88ã\83­ã\83¼ã\83«+ä¸\8a/ä¸\8bã?§å¹´ç§»å\8b\95)',
115     todayTip          : "{0} (スペースキー)",
116     format            : "Y/m/d",
117     okText            : "OK",
118     cancelText        : "キャンセル",
119     startDay          : 0
120   });
121 }
122
123 if(Ext.PagingToolbar){
124   Ext.apply(Ext.PagingToolbar.prototype, {
125     beforePageText : "ページ",
126     afterPageText  : "/ {0}",
127     firstText      : "æ\9c\80å\88?ã?®ã\83\9aã\83¼ã\82¸",
128     prevText       : "å\89?ã?®ã\83\9aã\83¼ã\82¸",
129     nextText       : "次ã?®ã\83\9aã\83¼ã\82¸",
130     lastText       : "æ\9c\80å¾\8cã?®ã\83\9aã\83¼ã\82¸",
131     refreshText    : "更新",
132     displayMsg     : "{2} 件中 {0} - {1} を表示",
133     emptyMsg       : '表示ã?\99ã\82\8bã\83\87ã\83¼ã\82¿ã?\8cã?\82ã\82\8aã?¾ã?\9bã\82\93ã\80\82'
134   });
135 }
136
137 if(Ext.form.Field){
138   Ext.form.Field.prototype.invalidText = "ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã?®å\80¤ã?\8cä¸?æ­£ã?§ã?\99ã\80\82";
139 }
140
141 if(Ext.form.TextField){
142   Ext.apply(Ext.form.TextField.prototype, {
143     minLengthText : "ã?\93ã?®ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã?®æ\9c\80å°?å\80¤ã?¯ {0} ã?§ã?\99ã\80\82",
144     maxLengthText : "ã?\93ã?®ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã?®æ\9c\80大å\80¤ã?¯ {0} ã?§ã?\99ã\80\82",
145     blankText     : "å¿\85é \88é \85ç\9b®ã?§ã?\99ã\80\82",
146     regexText     : "",
147     emptyText     : null
148   });
149 }
150
151 if(Ext.form.NumberField){
152   Ext.apply(Ext.form.NumberField.prototype, {
153     decimalSeparator : ".",
154     decimalPrecision : 2,
155     minText : "ã?\93ã?®ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã?®æ\9c\80å°?å\80¤ã?¯ {0} ã?§ã?\99ã\80\82",
156     maxText : "ã?\93ã?®ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã?®æ\9c\80大å\80¤ã?¯ {0} ã?§ã?\99ã\80\82",
157     nanText : "{0} ã?¯æ\95°å\80¤ã?§ã?¯ã?\82ã\82\8aã?¾ã?\9bã\82\93ã\80\82"
158   });
159 }
160
161 if(Ext.form.DateField){
162   Ext.apply(Ext.form.DateField.prototype, {
163     disabledDaysText  : "無効",
164     disabledDatesText : "無効",
165     minText           : "ã?\93ã?®ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã?®æ\97¥ä»\98ã?¯ã\80? {0} ä»¥é\99?ã?®æ\97¥ä»\98ã?«è¨­å®\9aã?\97ã?¦ã??ã? ã?\95ã?\84ã\80\82",
166     maxText           : "ã?\93ã?®ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã?®æ\97¥ä»\98ã?¯ã\80? {0} ä»¥å\89?ã?®æ\97¥ä»\98ã?«è¨­å®\9aã?\97ã?¦ã??ã? ã?\95ã?\84ã\80\82",
167     invalidText       : "{0} ã?¯é\96\93é?\95ã?£ã?\9fæ\97¥ä»\98å\85¥å\8a\9bã?§ã?\99ã\80\82 - å\85¥å\8a\9bå½¢å¼?ã?¯ã\80\8c{1}ã\80?ã?§ã?\99ã\80\82",
168     format            : "Y/m/d",
169     altFormats        : "y/m/d|m/d/y|m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d"
170   });
171 }
172
173 if(Ext.form.ComboBox){
174   Ext.apply(Ext.form.ComboBox.prototype, {
175     loadingText       : "読ã?¿è¾¼ã?¿ä¸­...",
176     valueNotFoundText : undefined
177   });
178 }
179
180 if(Ext.form.VTypes){
181   Ext.apply(Ext.form.VTypes, {
182     emailText    : 'ã\83¡ã\83¼ã\83«ã\82¢ã\83\89ã\83¬ã\82¹ã\82\92"user@example.com"ã?®å½¢å¼?ã?§å\85¥å\8a\9bã?\97ã?¦ã??ã? ã?\95ã?\84ã\80\82',
183     urlText      : 'URLã\82\92"http:/'+'/www.example.com"ã?®å½¢å¼?ã?§å\85¥å\8a\9bã?\97ã?¦ã??ã? ã?\95ã?\84ã\80\82',
184     alphaText    : 'å?\8aè§\92è\8b±å­\97ã?¨"_"ã?®ã?¿ã?§ã?\99ã\80\82',
185     alphanumText : 'å?\8aè§\92è\8b±æ\95°ã?¨"_"ã?®ã?¿ã?§ã?\99ã\80\82'
186   });
187 }
188
189 if(Ext.form.HtmlEditor){
190   Ext.apply(Ext.form.HtmlEditor.prototype, {
191     createLinkText : 'ã\83ªã\83³ã\82¯ã?®URLã\82\92å\85¥å\8a\9bã?\97ã?¦ã??ã? ã?\95ã?\84:',
192     buttonTips : {
193       bold : {
194         title: '太字 (コントロール+B)',
195         text: 'é?¸æ\8a\9eã\83\86ã\82­ã\82¹ã\83\88ã\82\92太å­\97ã?«ã?\97ã?¾ã?\99ã\80\82',
196         cls: 'x-html-editor-tip'
197       },
198       italic : {
199         title: '斜体 (コントロール+I)',
200         text: 'é?¸æ\8a\9eã\83\86ã\82­ã\82¹ã\83\88ã\82\92æ\96\9cä½\93ã?«ã?\97ã?¾ã?\99ã\80\82',
201         cls: 'x-html-editor-tip'
202       },
203       underline : {
204         title: '下線 (コントロール+U)',
205         text: 'é?¸æ\8a\9eã\83\86ã\82­ã\82¹ã\83\88ã?«ä¸\8bç·\9aã\82\92å¼\95ã??ã?¾ã?\99ã\80\82',
206         cls: 'x-html-editor-tip'
207       },
208       increasefontsize : {
209         title: 'æ\96\87å­\97ã\82\92大ã??ã??',
210         text: 'ã\83\95ã\82©ã\83³ã\83\88ã\82µã\82¤ã\82ºã\82\92大ã??ã??ã?\97ã?¾ã?\99ã\80\82',
211         cls: 'x-html-editor-tip'
212       },
213       decreasefontsize : {
214         title: 'æ\96\87å­\97ã\82\92å°?ã?\95ã??',
215         text: 'ã\83\95ã\82©ã\83³ã\83\88ã\82µã\82¤ã\82ºã\82\92å°?ã?\95ã??ã?\97ã?¾ã?\99ã\80\82',
216         cls: 'x-html-editor-tip'
217       },
218       backcolor : {
219         title: 'æ\96\87å­\97ã?®ã\83\82¤ã\83©ã\82¤ã\83\88',
220         text: 'é?¸æ\8a\9eã\83\86ã\82­ã\82¹ã\83\88ã?®è\83\8cæ\99¯è\89²ã\82\92å¤\89æ\9b´ã?\97ã?¾ã?\99ã\80\82',
221         cls: 'x-html-editor-tip'
222       },
223       forecolor : {
224         title: 'æ\96\87å­\97ã?®è\89²',
225         text: 'é?¸æ\8a\9eã\83\86ã\82­ã\82¹ã\83\88ã?®è\89²ã\82\92å¤\89æ\9b´ã?\97ã?¾ã?\99ã\80\82',
226         cls: 'x-html-editor-tip'
227       },
228       justifyleft : {
229         title: 'å·¦æ?\83ã?\88',
230         text: 'ã\83\86ã\82­ã\82¹ã\83\88ã\82\92å·¦æ?\83ã?\88ã?«ã?\97ã?¾ã?\99ã\80\82',
231         cls: 'x-html-editor-tip'
232       },
233       justifycenter : {
234         title: '中央æ?\83ã?\88',
235         text: 'ã\83\86ã\82­ã\82¹ã\83\88ã\82\92中央æ?\83ã?\88ã?«ã?\97ã?¾ã?\99ã\80\82',
236         cls: 'x-html-editor-tip'
237       },
238       justifyright : {
239         title: 'å?³æ?\83ã?\88',
240         text: 'ã\83\86ã\82­ã\82¹ã\83\88ã\82\92å?³æ?\83ã?\88ã?«ã?\97ã?¾ã?\99ã\80\82',
241         cls: 'x-html-editor-tip'
242       },
243       insertunorderedlist : {
244         title: 'ç\95ªå?·ã?ªã?\97ç®\87æ?¡æ\9b¸ã??',
245         text: 'ç\95ªå?·ã?ªã?\97ç®\87æ?¡æ\9b¸ã??ã\82\92é\96\8bå§\8bã?\97ã?¾ã?\99ã\80\82',
246         cls: 'x-html-editor-tip'
247       },
248       insertorderedlist : {
249         title: 'ç\95ªå?·ä»\98ã??ç®\87æ?¡æ\9b¸ã??',
250         text: 'ç\95ªå?·ä»\98ã??ç®\87æ?¡æ\9b¸ã??ã\82\92é\96\8bå§\8bã?\97ã?¾ã?\99ã\80\82',
251         cls: 'x-html-editor-tip'
252       },
253       createlink : {
254         title: 'ã\83\82¤ã\83\91ã\83¼ã\83ªã\83³ã\82¯',
255         text: 'é?¸æ\8a\9eã\83\86ã\82­ã\82¹ã\83\88ã\82\92ã\83\82¤ã\83\91ã\83¼ã\83ªã\83³ã\82¯ã?«ã?\97ã?¾ã?\99ã\80\82',
256         cls: 'x-html-editor-tip'
257       },
258       sourceedit : {
259         title: 'ソース編集',
260         text: 'ã\82½ã\83¼ã\82¹ç·¨é\9b\86ã\83¢ã\83¼ã\83\89ã?«å\88\87ã\82\8aæ\9b¿ã?\88ã?¾ã?\99ã\80\82',
261         cls: 'x-html-editor-tip'
262       }
263     }
264   });
265 }
266
267 if(Ext.grid.GridView){
268   Ext.apply(Ext.grid.GridView.prototype, {
269     sortAscText  : "昇順",
270     sortDescText : "é\99?é \86",
271     columnsText  : "カラム"
272   });
273 }
274
275 if(Ext.grid.GroupingView){
276   Ext.apply(Ext.grid.GroupingView.prototype, {
277     emptyGroupText : '(ã?ªã?\97)',
278     groupByText    : 'ã?\93ã?®ã\82«ã\83©ã\83 ã?§ã\82°ã\83«ã\83¼ã\83\94ã\83³ã\82°',
279     showGroupsText : 'グルーピング'
280   });
281 }
282
283 if(Ext.grid.PropertyColumnModel){
284   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
285     nameText   : "å??称",
286     valueText  : "値",
287     dateFormat : "Y/m/d"
288   });
289 }
290
291 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
292   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
293     splitTip            : "ã\83\89ã\83©ã\83\83ã\82°ã?\99ã\82\8bã?¨ã\83ªã\82µã\82¤ã\82ºã?§ã??ã?¾ã?\99ã\80\82",
294     collapsibleSplitTip : "ã\83\89ã\83©ã\83\83ã\82°ã?§ã\83ªã\82µã\82¤ã\82ºã\80\82 ã\83\80ã\83\96ã\83«ã\82¯ã\83ªã\83\83ã\82¯ã?§é\9a ã?\99ã\80\82"
295   });
296 }
297
298 if(Ext.form.TimeField){
299   Ext.apply(Ext.form.TimeField.prototype, {
300     minText : "ã?\93ã?®ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã?®æ\99\82å\88»ã?¯ã\80? {0} ä»¥é\99?ã?®æ\99\82å\88»ã?«è¨­å®\9aã?\97ã?¦ã??ã? ã?\95ã?\84ã\80\82",
301     maxText : "ã?\93ã?®ã\83\95ã\82£ã\83¼ã\83«ã\83\89ã?®æ\99\82å\88»ã?¯ã\80? {0} ä»¥å\89?ã?®æ\99\82å\88»ã?«è¨­å®\9aã?\97ã?¦ã??ã? ã?\95ã?\84ã\80\82",
302     invalidText : "{0} ã?¯é\96\93é?\95ã?£ã?\9fæ\99\82å\88»å\85¥å\8a\9bã?§ã?\99ã\80\82",
303     format : "g:i A",
304     altFormats : "g:ia|g:iA|g:i a|g:i A|h:i|g:i|H:i|ga|ha|gA|h a|g a|g A|gi|hi|gia|hia|g|H"
305   });
306 }
307
308 if(Ext.form.CheckboxGroup){
309   Ext.apply(Ext.form.CheckboxGroup.prototype, {
310     blankText : "ã?\93ã?®ã\82°ã\83«ã\83¼ã\83\97ã?\8bã\82\89æ\9c\80ä½\8eï¼\91ã?¤ã?®ã\82¢ã\82¤ã\83\86ã\83 ã\82\92é?¸æ\8a\9eã?\97ã?ªã?\91ã\82\8cã?°ã?ªã\82\8aã?¾ã?\9bã\82\93ã\80\82"
311   });
312 }
313
314 if(Ext.form.RadioGroup){
315   Ext.apply(Ext.form.RadioGroup.prototype, {
316     blankText : "ã?\93ã?®ã\82°ã\83«ã\83¼ã\83\97ã?\8bã\82\89ï¼\91ã?¤ã?®ã\82¢ã\82¤ã\83\86ã\83 ã\82\92é?¸æ\8a\9eã?\97ã?ªã?\91ã\82\8cã?°ã?ªã\82\8aã?¾ã?\9bã\82\93ã\80\82"
317   });
318 }