[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/inc/lang/ja/ -> jquery.ui.datepicker.js (source)

   1  /* Japanese initialisation for the jQuery UI date picker plugin. */
   2  /* Written by Kentaro SATO (kentaro@ranvis.com). */
   3  ( function( factory ) {
   4      "use strict";
   5  
   6      if ( typeof define === "function" && define.amd ) {
   7  
   8          // AMD. Register as an anonymous module.
   9          define( [ "../widgets/datepicker" ], factory );
  10      } else {
  11  
  12          // Browser globals
  13          factory( jQuery.datepicker );
  14      }
  15  } )( function( datepicker ) {
  16  "use strict";
  17  
  18  datepicker.regional.ja = {
  19      closeText: "閉じる",
  20      prevText: "前",
  21      nextText: "次",
  22      currentText: "今日",
  23      monthNames: [ "1月", "2月", "3月", "4月", "5月", "6月",
  24      "7月", "8月", "9月", "10月", "11月", "12月" ],
  25      monthNamesShort: [ "1月", "2月", "3月", "4月", "5月", "6月",
  26      "7月", "8月", "9月", "10月", "11月", "12月" ],
  27      dayNames: [ "日曜日", "月曜日", "火曜日", "水曜日", "木曜日", "金曜日", "土曜日" ],
  28      dayNamesShort: [ "日", "月", "火", "水", "木", "金", "土" ],
  29      dayNamesMin: [ "日", "月", "火", "水", "木", "金", "土" ],
  30      weekHeader: "週",
  31      dateFormat: "yy/mm/dd",
  32      firstDay: 0,
  33      isRTL: false,
  34      showMonthAfterYear: true,
  35      yearSuffix: "年" };
  36  datepicker.setDefaults( datepicker.regional.ja );
  37  
  38  return datepicker.regional.ja;
  39  
  40  } );