ext-locale-ja.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. /**
  2. * Japanese translation
  3. * By tyama
  4. * 04-08-2007, 05:49 AM
  5. *
  6. * update based on English Translations by Condor (8 Aug 2008)
  7. * By sakuro (30 Aug 2008)
  8. */
  9. Ext.onReady(function() {
  10. var parseCodes;
  11. if (Ext.Date) {
  12. Ext.Date.monthNames = ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'];
  13. Ext.Date.getShortMonthName = function(month) {
  14. return "" + (month + 1);
  15. };
  16. Ext.Date.monthNumbers = {
  17. "1": 0,
  18. "2": 1,
  19. "3": 2,
  20. "4": 3,
  21. "5": 4,
  22. "6": 5,
  23. "7": 6,
  24. "8": 7,
  25. "9": 8,
  26. "10": 9,
  27. "11": 10,
  28. "12": 11
  29. };
  30. Ext.Date.getMonthNumber = function(name) {
  31. return Ext.Date.monthNumbers[name.substring(0, name.length - 1)];
  32. // or simply parseInt(name.substring(0, name.length - 1)) - 1
  33. };
  34. Ext.Date.dayNames = ["日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日"];
  35. Ext.Date.getShortDayName = function(day) {
  36. return Ext.Date.dayNames[day].substring(0, 1); // just remove "曜日" suffix
  37. };
  38. Ext.Date.formatCodes.a = "(this.getHours() < 12 ? '午前' : '午後')";
  39. Ext.Date.formatCodes.A = "(this.getHours() < 12 ? '午前' : '午後')"; // no case difference
  40. parseCodes = {
  41. g: 1,
  42. c: "if (/(午前)/i.test(results[{0}])) {\n"
  43. + "if (!h || h == 12) { h = 0; }\n"
  44. + "} else { if (!h || h < 12) { h = (h || 0) + 12; }}",
  45. s: "(午前|午後)",
  46. calcAtEnd: true
  47. };
  48. Ext.Date.parseCodes.a = Ext.Date.parseCodes.A = parseCodes;
  49. }
  50. if (Ext.util && Ext.util.Format) {
  51. Ext.apply(Ext.util.Format, {
  52. thousandSeparator: ',',
  53. decimalSeparator: '.',
  54. currencySign: '\u00a5',
  55. // Japanese Yen
  56. dateFormat: 'Y/m/d'
  57. });
  58. }
  59. });
  60. Ext.define("Ext.locale.ja.LoadMask", {
  61. override: "Ext.LoadMask",
  62. msg: "読み込み中..."
  63. });
  64. Ext.define("Ext.locale.ja.view.View", {
  65. override: "Ext.view.View",
  66. emptyText: ""
  67. });
  68. Ext.define("Ext.locale.ja.grid.plugin.DragDrop", {
  69. override: "Ext.grid.plugin.DragDrop",
  70. dragText: "{0} 行選択"
  71. });
  72. // changing the msg text below will affect the LoadMask
  73. Ext.define("Ext.locale.ja.view.AbstractView", {
  74. override: "Ext.view.AbstractView",
  75. loadingText: "読み込み中..."
  76. });
  77. Ext.define("Ext.locale.ja.picker.Date", {
  78. override: "Ext.picker.Date",
  79. todayText: "今日",
  80. minText: "選択した日付は最小値以下です。",
  81. maxText: "選択した日付は最大値以上です。",
  82. disabledDaysText: "",
  83. disabledDatesText: "",
  84. nextText: '次月へ (コントロール+右)',
  85. prevText: '前月へ (コントロール+左)',
  86. monthYearText: '月選択 (コントロール+上/下で年移動)',
  87. todayTip: "{0} (スペースキー)",
  88. format: "Y/m/d",
  89. startDay: 0,
  90. ariaTitle: '{0}',
  91. ariaTitleDateFormat: 'Y\u5e74m\u6708d\u65e5',
  92. longDayFormat: 'Y\u5e74m\u6708d\u65e5',
  93. monthYearFormat: 'Y\u5e74m\u6708'
  94. });
  95. Ext.define("Ext.locale.ja.picker.Month", {
  96. override: "Ext.picker.Month",
  97. okText: "&#160;OK&#160;",
  98. cancelText: "キャンセル"
  99. });
  100. Ext.define("Ext.locale.ja.toolbar.Paging", {
  101. override: "Ext.PagingToolbar",
  102. beforePageText: "ページ",
  103. afterPageText: "/ {0}",
  104. firstText: "最初のページ",
  105. prevText: "前のページ",
  106. nextText: "次のページ",
  107. lastText: "最後のページ",
  108. refreshText: "更新",
  109. displayMsg: "{2} 件中 {0} - {1} を表示",
  110. emptyMsg: '表示するデータがありません。'
  111. });
  112. Ext.define("Ext.locale.ja.form.field.Base", {
  113. override: "Ext.form.field.Base",
  114. invalidText: "フィールドの値が不正です。"
  115. });
  116. Ext.define("Ext.locale.ja.form.field.Text", {
  117. override: "Ext.form.field.Text",
  118. minLengthText: "このフィールドの最小値は {0} です。",
  119. maxLengthText: "このフィールドの最大値は {0} です。",
  120. blankText: "必須項目です。",
  121. regexText: "",
  122. emptyText: null
  123. });
  124. Ext.define("Ext.locale.ja.form.field.File", {
  125. override: "Ext.form.field.File",
  126. buttonText: "参照..."
  127. });
  128. Ext.define("Ext.locale.ja.form.field.Number", {
  129. override: "Ext.form.field.Number",
  130. decimalPrecision: 2,
  131. minText: "このフィールドの最小値は {0} です。",
  132. maxText: "このフィールドの最大値は {0} です。",
  133. nanText: "{0} は数値ではありません。",
  134. negativeText: "負の値は無効です。"
  135. });
  136. Ext.define("Ext.locale.ja.form.field.Date", {
  137. override: "Ext.form.field.Date",
  138. disabledDaysText: "無効",
  139. disabledDatesText: "無効",
  140. minText: "このフィールドの日付は、 {0} 以降の日付に設定してください。",
  141. maxText: "このフィールドの日付は、 {0} 以前の日付に設定してください。",
  142. invalidText: "{0} は間違った日付入力です。 - 入力形式は「{1}」です。",
  143. format: "Y/m/d",
  144. 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"
  145. });
  146. Ext.define("Ext.locale.ja.form.field.ComboBox", {
  147. override: "Ext.form.field.ComboBox",
  148. valueNotFoundText: undefined
  149. }, function() {
  150. Ext.apply(Ext.form.field.ComboBox.prototype.defaultListConfig, {
  151. loadingText: "読み込み中..."
  152. });
  153. });
  154. Ext.define("Ext.locale.ja.form.field.VTypes", {
  155. override: "Ext.form.field.VTypes",
  156. emailText: 'メールアドレスを"user@example.com"の形式で入力してください。',
  157. urlText: 'URLを"http:/' + '/www.example.com"の形式で入力してください。',
  158. alphaText: '半角英字と"_"のみです。',
  159. alphanumText: '半角英数と"_"のみです。'
  160. });
  161. Ext.define("Ext.locale.ja.form.field.HtmlEditor", {
  162. override: "Ext.form.field.HtmlEditor",
  163. createLinkText: 'リンクのURLを入力してください:'
  164. }, function() {
  165. Ext.apply(Ext.form.field.HtmlEditor.prototype, {
  166. buttonTips: {
  167. bold: {
  168. title: '太字 (コントロール+B)',
  169. text: '選択テキストを太字にします。',
  170. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  171. },
  172. italic: {
  173. title: '斜体 (コントロール+I)',
  174. text: '選択テキストを斜体にします。',
  175. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  176. },
  177. underline: {
  178. title: '下線 (コントロール+U)',
  179. text: '選択テキストに下線を引きます。',
  180. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  181. },
  182. increasefontsize: {
  183. title: '文字を大きく',
  184. text: 'フォントサイズを大きくします。',
  185. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  186. },
  187. decreasefontsize: {
  188. title: '文字を小さく',
  189. text: 'フォントサイズを小さくします。',
  190. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  191. },
  192. backcolor: {
  193. title: '文字のハイライト',
  194. text: '選択テキストの背景色を変更します。',
  195. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  196. },
  197. forecolor: {
  198. title: '文字の色',
  199. text: '選択テキストの色を変更します。',
  200. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  201. },
  202. justifyleft: {
  203. title: '左揃え',
  204. text: 'テキストを左揃えにします。',
  205. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  206. },
  207. justifycenter: {
  208. title: '中央揃え',
  209. text: 'テキストを中央揃えにします。',
  210. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  211. },
  212. justifyright: {
  213. title: '右揃え',
  214. text: 'テキストを右揃えにします。',
  215. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  216. },
  217. insertunorderedlist: {
  218. title: '番号なし箇条書き',
  219. text: '番号なし箇条書きを開始します。',
  220. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  221. },
  222. insertorderedlist: {
  223. title: '番号付き箇条書き',
  224. text: '番号付き箇条書きを開始します。',
  225. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  226. },
  227. createlink: {
  228. title: 'ハイパーリンク',
  229. text: '選択テキストをハイパーリンクにします。',
  230. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  231. },
  232. sourceedit: {
  233. title: 'ソース編集',
  234. text: 'ソース編集モードに切り替えます。',
  235. cls: Ext.baseCSSPrefix + 'html-editor-tip'
  236. }
  237. }
  238. });
  239. });
  240. Ext.define("Ext.locale.ja.grid.header.Container", {
  241. override: "Ext.grid.header.Container",
  242. sortAscText: "昇順",
  243. sortDescText: "降順",
  244. columnsText: "カラム"
  245. });
  246. Ext.define("Ext.locale.ja.grid.column.Date", {
  247. override: "Ext.grid.column.Date",
  248. format: "Y/m/d"
  249. });
  250. Ext.define("Ext.locale.ja.grid.GroupingFeature", {
  251. override: "Ext.grid.feature.Grouping",
  252. emptyGroupText: '(なし)',
  253. groupByText: 'このカラムでグルーピング',
  254. showGroupsText: 'グルーピング'
  255. });
  256. Ext.define("Ext.locale.ja.grid.PropertyColumnModel", {
  257. override: "Ext.grid.PropertyColumnModel",
  258. nameText: "名称",
  259. valueText: "値",
  260. dateFormat: "Y/m/d"
  261. });
  262. Ext.define("Ext.locale.ja.form.field.Time", {
  263. override: "Ext.form.field.Time",
  264. minText: "このフィールドの時刻は、 {0} 以降の時刻に設定してください。",
  265. maxText: "このフィールドの時刻は、 {0} 以前の時刻に設定してください。",
  266. invalidText: "{0} は間違った時刻入力です。",
  267. format: "g:i A",
  268. 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"
  269. });
  270. Ext.define("Ext.locale.ja.form.CheckboxGroup", {
  271. override: "Ext.form.CheckboxGroup",
  272. blankText: "このグループから最低1つのアイテムを選択しなければなりません。"
  273. });
  274. Ext.define("Ext.locale.ja.form.RadioGroup", {
  275. override: "Ext.form.RadioGroup",
  276. blankText: "このグループから1つのアイテムを選択しなければなりません。"
  277. });
  278. Ext.define("Ext.locale.ja.window.MessageBox", {
  279. override: "Ext.window.MessageBox",
  280. buttonText: {
  281. ok: "OK",
  282. cancel: "キャンセル",
  283. yes: "はい",
  284. no: "いいえ"
  285. }
  286. });
  287. // This is needed until we can refactor all of the locales into individual files
  288. Ext.define("Ext.locale.ja.Component", {
  289. override: "Ext.Component"
  290. });