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
1.1 KiB
JavaScript
Executable File
19 lines
1.1 KiB
JavaScript
Executable File
/* Armenian(UTF-8) initialisation for the jQuery UI date picker plugin. */
|
||
/* Written by Levon Zakaryan (levon.zakaryan@gmail.com)*/
|
||
jQuery(function($){
|
||
$.datepicker.regional['hy'] = {
|
||
closeText: 'Փակել',
|
||
prevText: '<Նախ.',
|
||
nextText: 'Հաջ.>',
|
||
currentText: 'Այսօր',
|
||
monthNames: ['Հունվար','Փետրվար','Մարտ','Ապրիլ','Մայիս','Հունիս',
|
||
'Հուլիս','Օգոստոս','Սեպտեմբեր','Հոկտեմբեր','Նոյեմբեր','Դեկտեմբեր'],
|
||
monthNamesShort: ['Հունվ','Փետր','Մարտ','Ապր','Մայիս','Հունիս',
|
||
'Հուլ','Օգս','Սեպ','Հոկ','Նոյ','Դեկ'],
|
||
dayNames: ['կիրակի','եկուշաբթի','երեքշաբթի','չորեքշաբթի','հինգշաբթի','ուրբաթ','շաբաթ'],
|
||
dayNamesShort: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'],
|
||
dayNamesMin: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'],
|
||
dateFormat: 'dd.mm.yy', firstDay: 1,
|
||
isRTL: false};
|
||
$.datepicker.setDefaults($.datepicker.regional['hy']);
|
||
}); |