aboutsummaryrefslogtreecommitdiffstats
path: root/ui/i18n
diff options
context:
space:
mode:
authorDouglas <replaceafill@system76.(none)>2012-02-12 20:56:13 -0500
committerScott González <scott.gonzalez@gmail.com>2012-02-12 20:56:13 -0500
commit8406d97c6d3721d54485770355d71de55468b0e0 (patch)
tree727c83fcc7662d35a33c4f4af806a9b291d23943 /ui/i18n
parent57fe6ed01d07162fa3c9f7893137c1be509fa625 (diff)
downloadjquery-ui-8406d97c6d3721d54485770355d71de55468b0e0.tar.gz
jquery-ui-8406d97c6d3721d54485770355d71de55468b0e0.zip
Datepicker: Added Khmer localization. Fixes #8116 - Datepicker: Add Khmer localization.
Diffstat (limited to 'ui/i18n')
-rw-r--r--ui/i18n/jquery.ui.datepicker-km.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/i18n/jquery.ui.datepicker-km.js b/ui/i18n/jquery.ui.datepicker-km.js
new file mode 100644
index 000000000..f9c4e3a02
--- /dev/null
+++ b/ui/i18n/jquery.ui.datepicker-km.js
@@ -0,0 +1,23 @@
+/* Khmer initialisation for the jQuery calendar extension. */
+/* Written by Chandara Om (chandara.teacher@gmail.com). */
+jQuery(function($){
+ $.datepicker.regional['km'] = {
+ closeText: 'ធ្វើ​រួច',
+ prevText: 'មុន',
+ nextText: 'បន្ទាប់',
+ currentText: 'ថ្ងៃ​នេះ',
+ monthNames: ['មករា','កុម្ភៈ','មីនា','មេសា','ឧសភា','មិថុនា',
+ 'កក្កដា','សីហា','កញ្ញា','តុលា','វិច្ឆិកា','ធ្នូ'],
+ monthNamesShort: ['មករា','កុម្ភៈ','មីនា','មេសា','ឧសភា','មិថុនា',
+ 'កក្កដា','សីហា','កញ្ញា','តុលា','វិច្ឆិកា','ធ្នូ'],
+ dayNames: ['អាទិត្យ', 'ចន្ទ', 'អង្គារ', 'ពុធ', 'ព្រហស្បតិ៍', 'សុក្រ', 'សៅរ៍'],
+ dayNamesShort: ['អា', 'ច', 'អ', 'ពុ', 'ព្រហ', 'សុ', 'សៅ'],
+ dayNamesMin: ['អា', 'ច', 'អ', 'ពុ', 'ព្រហ', 'សុ', 'សៅ'],
+ weekHeader: 'សប្ដាហ៍',
+ dateFormat: 'dd-mm-yy',
+ firstDay: 1,
+ isRTL: false,
+ showMonthAfterYear: false,
+ yearSuffix: ''};
+ $.datepicker.setDefaults($.datepicker.regional['km']);
+});