~ubuntu-branches/ubuntu/utopic/jquery-goodies/utopic-proposed

« back to all changes in this revision

Viewing changes to countdown/jquery.countdown-ko.js

  • Committer: Package Import Robot
  • Author(s): Marcelo Jorge Vieira (metal)
  • Date: 2012-05-06 21:48:26 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120506214826-s32mskt091qluihm
Tags: 5-1
* New Upstream Version
  + Updated jQuery form from 2.63 to 3.09 (Closes: #656778)
  + Added jQuery Countdown
* Updated Standards-Version to 3.9.3
  + Machine-readable debian/copyright version 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* http://keith-wood.name/countdown.html
 
2
   Korean initialisation for the jQuery countdown extension
 
3
   Written by Ryan Yu (ryanyu79@gmail.com). */
 
4
(function($) {
 
5
        $.countdown.regional['ko'] = {
 
6
                labels: ['년', '월', '주', '일', '시', '분', '초'],
 
7
                labels1: ['년', '월', '주', '일', '시', '분', '초'],
 
8
                compactLabels: ['년', '월', '주', '일'],
 
9
                compactLabels1: ['년', '월', '주', '일'],
 
10
                whichLabels: null,
 
11
                timeSeparator: ':', isRTL: false};
 
12
        $.countdown.setDefaults($.countdown.regional['ko']);
 
13
})(jQuery);