source: trunk/themes/default/js/ui/i18n/jquery.ui.datepicker-zh-HK.js @ 18630

Last change on this file since 18630 was 18630, checked in by rvelices, 12 years ago

feature 2771: upgrade jquery from 1.7.2 to 1.8.2 and jquery.ui from 1.8.16 to 1.9.0
Attention plugins: jquery ui effect script ids change when using combine_script because file names changed ...

File size: 981 bytes
Line 
1/* Chinese initialisation for the jQuery UI date picker plugin. */
2/* Written by SCCY (samuelcychan@gmail.com). */
3jQuery(function($){
4        $.datepicker.regional['zh-HK'] = {
5                closeText: '關閉',
6                prevText: '<上月',
7                nextText: '下月>',
8                currentText: '今天',
9                monthNames: ['一月','二月','三月','四月','五月','六月',
10                '七月','八月','九月','十月','十一月','十二月'],
11                monthNamesShort: ['一月','二月','三月','四月','五月','六月',
12                '七月','八月','九月','十月','十一月','十二月'],
13                dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'],
14                dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'],
15                dayNamesMin: ['日','一','二','三','四','五','六'],
16                weekHeader: '周',
17                dateFormat: 'dd-mm-yy',
18                firstDay: 0,
19                isRTL: false,
20                showMonthAfterYear: true,
21                yearSuffix: '年'};
22        $.datepicker.setDefaults($.datepicker.regional['zh-HK']);
23});
Note: See TracBrowser for help on using the repository browser.