Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / ext-lang-ja.html
1 <html>\r
2 <head>\r
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    \r
4   <title>The source code</title>\r
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
7 </head>\r
8 <body  onload="prettyPrint();">\r
9     <pre class="prettyprint lang-js">/*
10  * Japanese translation
11  * By tyama
12  * 04-08-2007, 05:49 AM
13  *
14  * update based on English Translations by Condor (8 Aug 2008)
15  * By sakuro (30 Aug 2008)
16  */
17
18 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">読み込み中...</div>';
19
20 if(Ext.DataView){
21   Ext.DataView.prototype.emptyText = "";
22 }
23
24 if(Ext.grid.GridPanel){
25   Ext.grid.GridPanel.prototype.ddText = "{0} 行選択";
26 }
27
28 if(Ext.LoadMask){
29   Ext.LoadMask.prototype.msg = "読み込み中...";
30 }
31
32 Date.monthNames = [
33   '1月',
34   '2月',
35   '3月',
36   '4月',
37   '5月',
38   '6月',
39   '7月',
40   '8月',
41   '9月',
42   '10月',
43   '11月',
44   '12月'
45 ];
46
47 Date.getShortMonthName = function(month) {
48   return "" + (month + 1);
49 };
50
51 Date.monthNumbers = {
52   "1" : 0,
53   "2" : 1,
54   "3" : 2,
55   "4" : 3,
56   "5" : 4,
57   "6" : 5,
58   "7" : 6,
59   "8" : 7,
60   "9" : 8,
61   "10" : 9,
62   "11" : 10,
63   "12" : 11
64 };
65
66 Date.getMonthNumber = function(name) {
67   return Date.monthNumbers[name.substring(0, name.length - 1)];
68   // or simply parseInt(name.substring(0, name.length - 1)) - 1
69 };
70
71 Date.dayNames = [
72   "日曜日",
73   "月曜日",
74   "火曜日",
75   "水曜日",
76   "木曜日",
77   "金曜日",
78   "土曜日"
79 ];
80
81 Date.getShortDayName = function(day) {
82   return Date.dayNames[day].substring(0, 1); // just remove "曜日" suffix
83 };
84
85 Date.formatCodes.a = "(this.getHours() < 12 ? '午前' : '午後')";
86 Date.formatCodes.A = "(this.getHours() < 12 ? '午前' : '午後')"; // no case difference
87
88 if(Ext.MessageBox){
89   Ext.MessageBox.buttonText = {
90     ok     : "OK",
91     cancel : "キャンセル",
92     yes    : "はい",
93     no     : "いいえ"
94   };
95 }
96
97 if(Ext.util.Format){
98   Ext.util.Format.date = function(v, format){
99     if(!v) return "";
100     if(!(v instanceof Date)) v = new Date(Date.parse(v));
101     return v.dateFormat(format || "Y/m/d");
102   };
103 }
104
105 if(Ext.DatePicker){
106   Ext.apply(Ext.DatePicker.prototype, {
107     todayText         : "今日",
108     minText           : "選択した日付は最小値以下です。",
109     maxText           : "選択した日付は最大値以上です。",
110     disabledDaysText  : "",
111     disabledDatesText : "",
112     monthNames        : Date.monthNames,
113     dayNames          : Date.dayNames,
114     nextText          : '次月へ (コントロール+右)',
115     prevText          : '前月へ (コントロール+左)',
116     monthYearText     : '月選択 (コントロール+上/下で年移動)',
117     todayTip          : "{0} (スペースキー)",
118     format            : "Y/m/d",
119     okText            : "OK",
120     cancelText        : "キャンセル",
121     startDay          : 0
122   });
123 }
124
125 if(Ext.PagingToolbar){
126   Ext.apply(Ext.PagingToolbar.prototype, {
127     beforePageText : "ページ",
128     afterPageText  : "/ {0}",
129     firstText      : "最初のページ",
130     prevText       : "前のページ",
131     nextText       : "次のページ",
132     lastText       : "最後のページ",
133     refreshText    : "更新",
134     displayMsg     : "{2} 件中 {0} - {1} を表示",
135     emptyMsg       : '表示するデータがありません。'
136   });
137 }
138
139 if(Ext.form.Field){
140   Ext.form.Field.prototype.invalidText = "フィールドの値が不正です。";
141 }
142
143 if(Ext.form.TextField){
144   Ext.apply(Ext.form.TextField.prototype, {
145     minLengthText : "このフィールドの最小値は {0} です。",
146     maxLengthText : "このフィールドの最大値は {0} です。",
147     blankText     : "必須項目です。",
148     regexText     : "",
149     emptyText     : null
150   });
151 }
152
153 if(Ext.form.NumberField){
154   Ext.apply(Ext.form.NumberField.prototype, {
155     decimalSeparator : ".",
156     decimalPrecision : 2,
157     minText : "このフィールドの最小値は {0} です。",
158     maxText : "このフィールドの最大値は {0} です。",
159     nanText : "{0} は数値ではありません。"
160   });
161 }
162
163 if(Ext.form.DateField){
164   Ext.apply(Ext.form.DateField.prototype, {
165     disabledDaysText  : "無効",
166     disabledDatesText : "無効",
167     minText           : "このフィールドの日付は、 {0} 以降の日付に設定してください。",
168     maxText           : "このフィールドの日付は、 {0} 以前の日付に設定してください。",
169     invalidText       : "{0} は間違った日付入力です。 - 入力形式は「{1}」です。",
170     format            : "Y/m/d",
171     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"
172   });
173 }
174
175 if(Ext.form.ComboBox){
176   Ext.apply(Ext.form.ComboBox.prototype, {
177     loadingText       : "読み込み中...",
178     valueNotFoundText : undefined
179   });
180 }
181
182 if(Ext.form.VTypes){
183   Ext.apply(Ext.form.VTypes, {
184     emailText    : 'メールアドレスを"user@example.com"の形式で入力してください。',
185     urlText      : 'URLを"http:/'+'/www.example.com"の形式で入力してください。',
186     alphaText    : '半角英字と"_"のみです。',
187     alphanumText : '半角英数と"_"のみです。'
188   });
189 }
190
191 if(Ext.form.HtmlEditor){
192   Ext.apply(Ext.form.HtmlEditor.prototype, {
193     createLinkText : 'リンクのURLを入力してください:',
194     buttonTips : {
195       bold : {
196         title: '太字 (コントロール+B)',
197         text: '選択テキストを太字にします。',
198         cls: 'x-html-editor-tip'
199       },
200       italic : {
201         title: '斜体 (コントロール+I)',
202         text: '選択テキストを斜体にします。',
203         cls: 'x-html-editor-tip'
204       },
205       underline : {
206         title: '下線 (コントロール+U)',
207         text: '選択テキストに下線を引きます。',
208         cls: 'x-html-editor-tip'
209       },
210       increasefontsize : {
211         title: '文字を大きく',
212         text: 'フォントサイズを大きくします。',
213         cls: 'x-html-editor-tip'
214       },
215       decreasefontsize : {
216         title: '文字を小さく',
217         text: 'フォントサイズを小さくします。',
218         cls: 'x-html-editor-tip'
219       },
220       backcolor : {
221         title: '文字のハイライト',
222         text: '選択テキストの背景色を変更します。',
223         cls: 'x-html-editor-tip'
224       },
225       forecolor : {
226         title: '文字の色',
227         text: '選択テキストの色を変更します。',
228         cls: 'x-html-editor-tip'
229       },
230       justifyleft : {
231         title: '左揃え',
232         text: 'テキストを左揃えにします。',
233         cls: 'x-html-editor-tip'
234       },
235       justifycenter : {
236         title: '中央揃え',
237         text: 'テキストを中央揃えにします。',
238         cls: 'x-html-editor-tip'
239       },
240       justifyright : {
241         title: '右揃え',
242         text: 'テキストを右揃えにします。',
243         cls: 'x-html-editor-tip'
244       },
245       insertunorderedlist : {
246         title: '番号なし箇条書き',
247         text: '番号なし箇条書きを開始します。',
248         cls: 'x-html-editor-tip'
249       },
250       insertorderedlist : {
251         title: '番号付き箇条書き',
252         text: '番号付き箇条書きを開始します。',
253         cls: 'x-html-editor-tip'
254       },
255       createlink : {
256         title: 'ハイパーリンク',
257         text: '選択テキストをハイパーリンクにします。',
258         cls: 'x-html-editor-tip'
259       },
260       sourceedit : {
261         title: 'ソース編集',
262         text: 'ソース編集モードに切り替えます。',
263         cls: 'x-html-editor-tip'
264       }
265     }
266   });
267 }
268
269 if(Ext.grid.GridView){
270   Ext.apply(Ext.grid.GridView.prototype, {
271     sortAscText  : "昇順",
272     sortDescText : "降順",
273     columnsText  : "カラム"
274   });
275 }
276
277 if(Ext.grid.GroupingView){
278   Ext.apply(Ext.grid.GroupingView.prototype, {
279     emptyGroupText : '(なし)',
280     groupByText    : 'このカラムでグルーピング',
281     showGroupsText : 'グルーピング'
282   });
283 }
284
285 if(Ext.grid.PropertyColumnModel){
286   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
287     nameText   : "名称",
288     valueText  : "値",
289     dateFormat : "Y/m/d"
290   });
291 }
292
293 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
294   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
295     splitTip            : "ドラッグするとリサイズできます。",
296     collapsibleSplitTip : "ドラッグでリサイズ。 ダブルクリックで隠す。"
297   });
298 }
299
300 if(Ext.form.TimeField){
301   Ext.apply(Ext.form.TimeField.prototype, {
302     minText : "このフィールドの時刻は、 {0} 以降の時刻に設定してください。",
303     maxText : "このフィールドの時刻は、 {0} 以前の時刻に設定してください。",
304     invalidText : "{0} は間違った時刻入力です。",
305     format : "g:i A",
306     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"
307   });
308 }
309
310 if(Ext.form.CheckboxGroup){
311   Ext.apply(Ext.form.CheckboxGroup.prototype, {
312     blankText : "このグループから最低1つのアイテムを選択しなければなりません。"
313   });
314 }
315
316 if(Ext.form.RadioGroup){
317   Ext.apply(Ext.form.RadioGroup.prototype, {
318     blankText : "このグループから1つのアイテムを選択しなければなりません。"
319   });
320 }
321 </pre>    \r
322 </body>\r
323 </html>