jquery-ui-timepicker-ja.js 604 B

12345678910111213141516171819202122
  1. /* Japanese translation for the jQuery Timepicker Addon */
  2. /* Written by Jun Omae */
  3. (function($) {
  4. $.timepicker.regional['ja'] = {
  5. timeOnlyTitle: '時間を選択',
  6. timeText: '時間',
  7. hourText: '時',
  8. minuteText: '分',
  9. secondText: '秒',
  10. millisecText: 'ミリ秒',
  11. microsecText: 'マイクロ秒',
  12. timezoneText: 'タイムゾーン',
  13. currentText: '現時刻',
  14. closeText: '閉じる',
  15. timeFormat: 'HH:mm',
  16. timeSuffix: '',
  17. amNames: ['午前', 'AM', 'A'],
  18. pmNames: ['午後', 'PM', 'P'],
  19. isRTL: false
  20. };
  21. $.timepicker.setDefaults($.timepicker.regional['ja']);
  22. })(jQuery);