aboutsummaryrefslogtreecommitdiffstats
path: root/ui/i18n/jquery.ui.datepicker-lb.js
diff options
context:
space:
mode:
authorKris Borchers <kris.borchers@gmail.com>2011-11-17 14:17:17 -0800
committerKris Borchers <kris.borchers@gmail.com>2011-11-17 14:17:17 -0800
commit09b51fb7337e08afa5992db8aa7f6c72f879d40e (patch)
treea844773b4d625d08beaf352cd6547f5d428494ba /ui/i18n/jquery.ui.datepicker-lb.js
parentd764388a65c5d56be7443f1de52e92876d009430 (diff)
parentdfbd9be72df7734451f535af6dcc1f07294c242b (diff)
downloadjquery-ui-09b51fb7337e08afa5992db8aa7f6c72f879d40e.tar.gz
jquery-ui-09b51fb7337e08afa5992db8aa7f6c72f879d40e.zip
Merge pull request #527 from kborchers/localization
Datepicker: Added and updated a number of localizations based on pull requests. Fixes #7891, #7892, #7893, #7894 and #7895
Diffstat (limited to 'ui/i18n/jquery.ui.datepicker-lb.js')
-rw-r--r--ui/i18n/jquery.ui.datepicker-lb.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/ui/i18n/jquery.ui.datepicker-lb.js b/ui/i18n/jquery.ui.datepicker-lb.js
new file mode 100644
index 000000000..87c79d594
--- /dev/null
+++ b/ui/i18n/jquery.ui.datepicker-lb.js
@@ -0,0 +1,23 @@
+/* Luxembourgish initialisation for the jQuery UI date picker plugin. */
+/* Written by Michel Weimerskirch <michel@weimerskirch.net> */
+jQuery(function($){
+ $.datepicker.regional['lb'] = {
+ closeText: 'Fäerdeg',
+ prevText: 'Zréck',
+ nextText: 'Weider',
+ currentText: 'Haut',
+ monthNames: ['Januar','Februar','Mäerz','Abrëll','Mee','Juni',
+ 'Juli','August','September','Oktober','November','Dezember'],
+ monthNamesShort: ['Jan', 'Feb', 'Mäe', 'Abr', 'Mee', 'Jun',
+ 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'],
+ dayNames: ['Sonndeg', 'Méindeg', 'Dënschdeg', 'Mëttwoch', 'Donneschdeg', 'Freideg', 'Samschdeg'],
+ dayNamesShort: ['Son', 'Méi', 'Dën', 'Mët', 'Don', 'Fre', 'Sam'],
+ dayNamesMin: ['So','Mé','Dë','Më','Do','Fr','Sa'],
+ weekHeader: 'W',
+ dateFormat: 'dd.mm.yy',
+ firstDay: 1,
+ isRTL: false,
+ showMonthAfterYear: false,
+ yearSuffix: ''};
+ $.datepicker.setDefaults($.datepicker.regional['lb']);
+});