/xpages_/images/js/ui/i18n/jquery.ui.datepicker-ja.js

http://xpages.googlecode.com/ · JavaScript · 23 lines · 21 code · 0 blank · 2 comment · 0 complexity · c38ec30b43857d8a099098052b9967f4 MD5 · raw file

  1. /* Japanese initialisation for the jQuery UI date picker plugin. */
  2. /* Written by Kentaro SATO (kentaro@ranvis.com). */
  3. jQuery(function($){
  4. $.datepicker.regional['ja'] = {
  5. closeText: '???',
  6. prevText: '<?',
  7. nextText: '?>',
  8. currentText: '??',
  9. monthNames: ['1?','2?','3?','4?','5?','6?',
  10. '7?','8?','9?','10?','11?','12?'],
  11. monthNamesShort: ['1?','2?','3?','4?','5?','6?',
  12. '7?','8?','9?','10?','11?','12?'],
  13. dayNames: ['???','???','???','???','???','???','???'],
  14. dayNamesShort: ['?','?','?','?','?','?','?'],
  15. dayNamesMin: ['?','?','?','?','?','?','?'],
  16. weekHeader: '?',
  17. dateFormat: 'yy/mm/dd',
  18. firstDay: 0,
  19. isRTL: false,
  20. showMonthAfterYear: true,
  21. yearSuffix: '?'};
  22. $.datepicker.setDefaults($.datepicker.regional['ja']);
  23. });