mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
26b52dd772
API CHANGE Upgraded jQuery UI themes from v1.6rc1 to v1.8rc3. Removed 'flora' and 'default' themes, replaced with the 'base' and 'smoothness' themes found in the default distribution git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@100842 467b73ca-7a2a-4603-9d3b-597d59a354a9
19 lines
956 B
JavaScript
Executable File
19 lines
956 B
JavaScript
Executable File
/* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
|
|
/* Javad Mowlanezhad -- jmowla@gmail.com */
|
|
/* Jalali calendar should supported soon! (Its implemented but I have to test it) */
|
|
jQuery(function($) {
|
|
$.datepicker.regional['fa'] = {
|
|
closeText: 'بستن',
|
|
prevText: '<قبلي',
|
|
nextText: 'بعدي>',
|
|
currentText: 'امروز',
|
|
monthNames: ['فروردين','ارديبهشت','خرداد','تير','مرداد','شهريور',
|
|
'مهر','آبان','آذر','دي','بهمن','اسفند'],
|
|
monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
|
|
dayNames: ['يکشنبه','دوشنبه','سهشنبه','چهارشنبه','پنجشنبه','جمعه','شنبه'],
|
|
dayNamesShort: ['ي','د','س','چ','پ','ج', 'ش'],
|
|
dayNamesMin: ['ي','د','س','چ','پ','ج', 'ش'],
|
|
dateFormat: 'yy/mm/dd', firstDay: 6,
|
|
isRTL: true};
|
|
$.datepicker.setDefaults($.datepicker.regional['fa']);
|
|
}); |