Created
February 10, 2024 21:34
-
-
Save railmedia/df3524253539eeaa9232d7a29467d7bb to your computer and use it in GitHub Desktop.
jQueryUI datepicker locale
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Romanian | |
| jQuery.datepicker.regional['ro'] = { | |
| clearText: 'Sterge', clearStatus: '', | |
| closeText: 'Inchide', closeStatus: 'Inchide fara modificari', | |
| prevText: '<Inapoi', prevStatus: 'Vezi luna precedenta', | |
| nextText: 'Inainte>', nextStatus: 'Vezi luna viitoare', | |
| currentText: 'Curenta', currentStatus: 'Vezi luna curenta', | |
| monthNames: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie','Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'], | |
| monthNamesShort: ['Ian','Feb','Mar','Apr','Mai','Iun','Iul','Aug','Sep','Oct','Nov','Dec'], | |
| monthStatus: 'Vezi alta luna', yearStatus: 'Vezi alt an', | |
| weekHeader: 'Sapt', weekStatus: '', | |
| dayNames: ['Duminica','Luni','Marti','Miercuri','Joi','Vineri','Sambata'], | |
| dayNamesShort: ['Dum','Lun','Mar','Mir','Joi','Vin','Sam'], | |
| dayNamesMin: ['Du','Lu','Ma','Mi','Jo','Vi','Sa'], | |
| dayStatus: 'Foloseste DD ca prima zi a saptamanii', dateStatus: 'Alege DD, MM d', | |
| dateFormat: 'dd/mm/yy', firstDay: 0, | |
| initStatus: 'Alege data', isRTL: false | |
| }; | |
| jQuery.datepicker.setDefaults($.datepicker.regional['ro']); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment