source: uKadecot/trunk/tools/EcnlControllerUI/EcnlCtrlUI/js/jqm-datebox/i18n/jquery.mobile.datebox.i18n.ja.asc.js@ 101

Last change on this file since 101 was 101, checked in by coas-nagasima, 9 years ago

TOPPERS/uKadecotのソースコードを追加

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/plain
File size: 2.3 KB
Line 
1/*
2 * jQuery Mobile Framework : plugin to provide a date and time picker.
3 * Copyright (c) JTSage
4 * CC 3.0 Attribution. May be relicensed without permission/notifcation.
5 * https://github.com/jtsage/jquery-mobile-datebox
6 *
7 * Translation by: Moon Dial
8 *
9 */
10
11jQuery.extend(jQuery.mobile.datebox.prototype.options.lang, {
12 'ja': {
13 setDateButtonLabel: "日付を設定",
14 setTimeButtonLabel: "時刻を設定",
15 setDurationButtonLabel: "期間を設定",
16 calTodayButtonLabel: "今日へジャンプ",
17 titleDateDialogLabel: "日付を選択します。",
18 titleTimeDialogLabel: "時間を選択します。",
19 daysOfWeek: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜"],
20 daysOfWeekShort: ["日", "月", "火", "水", "木", "金", "土"],
21 monthsOfYear: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
22 monthsOfYearShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"],
23 durationLabel: ["日", "時間", "分", "秒"],
24 durationDays: ["日", "日"],
25 tooltip: "日付を選択する",
26 nextMonth: "次の月",
27 prevMonth: "前月",
28 timeFormat: 24,
29 headerFormat: '%A, %B %-d, %Y',
30 dateFieldOrder: ['m', 'd', 'y'],
31 timeFieldOrder: ['h', 'i', 'a'],
32 slideFieldOrder: ['y', 'm', 'd'],
33 dateFormat: "%Y/%m/%d",
34 useArabicIndic: false,
35 isRTL: false,
36 calStartDay: 0,
37 clearButton: "クリア",
38 durationOrder: ['d', 'h', 'i', 's'],
39 meridiem: ["AM", "PM"],
40 timeOutput: "%k:%M",
41 durationFormat: "%Dd %DA, %Dl:%DM:%DS",
42 calDateListLabel: "その他の日付",
43 calHeaderFormat: "%B %Y"
44 }
45});
46jQuery.extend(jQuery.mobile.datebox.prototype.options, {
47 useLang: 'ja'
48});
49
Note: See TracBrowser for help on using the repository browser.