aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChi Cheng <cloudream@gmail.com>2009-08-19 16:33:32 +0000
committerChi Cheng <cloudream@gmail.com>2009-08-19 16:33:32 +0000
commit5293096526a21ac39ae2244d578e5c9908490cee (patch)
treec01e2310b7fb4d3945dde1b73323c0bf6d16db5e
parent977d73c90de13fc634a32c8279b70aaf49c90e22 (diff)
downloadjquery-ui-5293096526a21ac39ae2244d578e5c9908490cee.tar.gz
jquery-ui-5293096526a21ac39ae2244d578e5c9908490cee.zip
Datepicker: Add yearSuffix value for Chinese/Korean. fixes #4793
-rw-r--r--ui/i18n/ui.datepicker-ko.js2
-rw-r--r--ui/i18n/ui.datepicker-zh-CN.js4
-rw-r--r--ui/i18n/ui.datepicker-zh-TW.js4
3 files changed, 5 insertions, 5 deletions
diff --git a/ui/i18n/ui.datepicker-ko.js b/ui/i18n/ui.datepicker-ko.js
index b0d2f7b13..5b3531652 100644
--- a/ui/i18n/ui.datepicker-ko.js
+++ b/ui/i18n/ui.datepicker-ko.js
@@ -18,6 +18,6 @@ jQuery(function($){
firstDay: 0,
isRTL: false,
showMonthAfterYear: false,
- yearSuffix: ''};
+ yearSuffix: '년'};
$.datepicker.setDefaults($.datepicker.regional['ko']);
}); \ No newline at end of file
diff --git a/ui/i18n/ui.datepicker-zh-CN.js b/ui/i18n/ui.datepicker-zh-CN.js
index 213aa2dfc..6c4883f53 100644
--- a/ui/i18n/ui.datepicker-zh-CN.js
+++ b/ui/i18n/ui.datepicker-zh-CN.js
@@ -17,7 +17,7 @@ jQuery(function($){
dateFormat: 'yy-mm-dd',
firstDay: 1,
isRTL: false,
- showMonthAfterYear: false,
- yearSuffix: ''};
+ showMonthAfterYear: true,
+ yearSuffix: '年'};
$.datepicker.setDefaults($.datepicker.regional['zh-CN']);
});
diff --git a/ui/i18n/ui.datepicker-zh-TW.js b/ui/i18n/ui.datepicker-zh-TW.js
index 1a046f9e8..d211573c6 100644
--- a/ui/i18n/ui.datepicker-zh-TW.js
+++ b/ui/i18n/ui.datepicker-zh-TW.js
@@ -17,7 +17,7 @@ jQuery(function($){
dateFormat: 'yy/mm/dd',
firstDay: 1,
isRTL: false,
- showMonthAfterYear: false,
- yearSuffix: ''};
+ showMonthAfterYear: true,
+ yearSuffix: '年'};
$.datepicker.setDefaults($.datepicker.regional['zh-TW']);
});