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
8 <body onload="prettyPrint();">
\r
9 <pre class="prettyprint lang-js">/*
10 * Japanese translation
12 * 04-08-2007, 05:49 AM
14 * update based on English Translations by Condor (8 Aug 2008)
15 * By sakuro (30 Aug 2008)
18 Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">読み込み中...</div>';
21 Ext.DataView.prototype.emptyText = "";
24 if(Ext.grid.GridPanel){
25 Ext.grid.GridPanel.prototype.ddText = "{0} 行選択";
29 Ext.LoadMask.prototype.msg = "読み込み中...";
47 Date.getShortMonthName = function(month) {
48 return "" + (month + 1);
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
81 Date.getShortDayName = function(day) {
82 return Date.dayNames[day].substring(0, 1); // just remove "曜日" suffix
85 Date.formatCodes.a = "(this.getHours() < 12 ? '午前' : '午後')";
86 Date.formatCodes.A = "(this.getHours() < 12 ? '午前' : '午後')"; // no case difference
89 Ext.MessageBox.buttonText = {
98 Ext.util.Format.date = function(v, format){
100 if(!(v instanceof Date)) v = new Date(Date.parse(v));
101 return v.dateFormat(format || "Y/m/d");
106 Ext.apply(Ext.DatePicker.prototype, {
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} (スペースキー)",
120 cancelText : "キャンセル",
125 if(Ext.PagingToolbar){
126 Ext.apply(Ext.PagingToolbar.prototype, {
127 beforePageText : "ページ",
128 afterPageText : "/ {0}",
129 firstText : "最初のページ",
134 displayMsg : "{2} 件中 {0} - {1} を表示",
135 emptyMsg : '表示するデータがありません。'
140 Ext.form.Field.prototype.invalidText = "フィールドの値が不正です。";
143 if(Ext.form.TextField){
144 Ext.apply(Ext.form.TextField.prototype, {
145 minLengthText : "このフィールドの最小値は {0} です。",
146 maxLengthText : "このフィールドの最大値は {0} です。",
147 blankText : "必須項目です。",
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} は数値ではありません。"
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}」です。",
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"
175 if(Ext.form.ComboBox){
176 Ext.apply(Ext.form.ComboBox.prototype, {
177 loadingText : "読み込み中...",
178 valueNotFoundText : undefined
183 Ext.apply(Ext.form.VTypes, {
184 emailText : 'メールアドレスを"user@example.com"の形式で入力してください。',
185 urlText : 'URLを"http:/'+'/www.example.com"の形式で入力してください。',
186 alphaText : '半角英字と"_"のみです。',
187 alphanumText : '半角英数と"_"のみです。'
191 if(Ext.form.HtmlEditor){
192 Ext.apply(Ext.form.HtmlEditor.prototype, {
193 createLinkText : 'リンクのURLを入力してください:',
196 title: '太字 (コントロール+B)',
197 text: '選択テキストを太字にします。',
198 cls: 'x-html-editor-tip'
201 title: '斜体 (コントロール+I)',
202 text: '選択テキストを斜体にします。',
203 cls: 'x-html-editor-tip'
206 title: '下線 (コントロール+U)',
207 text: '選択テキストに下線を引きます。',
208 cls: 'x-html-editor-tip'
212 text: 'フォントサイズを大きくします。',
213 cls: 'x-html-editor-tip'
217 text: 'フォントサイズを小さくします。',
218 cls: 'x-html-editor-tip'
222 text: '選択テキストの背景色を変更します。',
223 cls: 'x-html-editor-tip'
227 text: '選択テキストの色を変更します。',
228 cls: 'x-html-editor-tip'
232 text: 'テキストを左揃えにします。',
233 cls: 'x-html-editor-tip'
237 text: 'テキストを中央揃えにします。',
238 cls: 'x-html-editor-tip'
242 text: 'テキストを右揃えにします。',
243 cls: 'x-html-editor-tip'
245 insertunorderedlist : {
247 text: '番号なし箇条書きを開始します。',
248 cls: 'x-html-editor-tip'
250 insertorderedlist : {
252 text: '番号付き箇条書きを開始します。',
253 cls: 'x-html-editor-tip'
257 text: '選択テキストをハイパーリンクにします。',
258 cls: 'x-html-editor-tip'
262 text: 'ソース編集モードに切り替えます。',
263 cls: 'x-html-editor-tip'
269 if(Ext.grid.GridView){
270 Ext.apply(Ext.grid.GridView.prototype, {
277 if(Ext.grid.GroupingView){
278 Ext.apply(Ext.grid.GroupingView.prototype, {
279 emptyGroupText : '(なし)',
280 groupByText : 'このカラムでグルーピング',
281 showGroupsText : 'グルーピング'
285 if(Ext.grid.PropertyColumnModel){
286 Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
293 if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
294 Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
295 splitTip : "ドラッグするとリサイズできます。",
296 collapsibleSplitTip : "ドラッグでリサイズ。 ダブルクリックで隠す。"
300 if(Ext.form.TimeField){
301 Ext.apply(Ext.form.TimeField.prototype, {
302 minText : "このフィールドの時刻は、 {0} 以降の時刻に設定してください。",
303 maxText : "このフィールドの時刻は、 {0} 以前の時刻に設定してください。",
304 invalidText : "{0} は間違った時刻入力です。",
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"
310 if(Ext.form.CheckboxGroup){
311 Ext.apply(Ext.form.CheckboxGroup.prototype, {
312 blankText : "このグループから最低1つのアイテムを選択しなければなりません。"
316 if(Ext.form.RadioGroup){
317 Ext.apply(Ext.form.RadioGroup.prototype, {
318 blankText : "このグループから1つのアイテムを選択しなければなりません。"