34 lines
1021 B
JavaScript
34 lines
1021 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Albanian localisation for calendars datepicker for jQuery.
|
|
Written by Flakron Bytyqi (flakron@gmail.com). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.sq = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<mbrapa',
|
|
prevStatus: 'trego muajin e fundit',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'Përpara>',
|
|
nextStatus: 'trego muajin tjetër',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'sot',
|
|
currentStatus: '',
|
|
todayText: 'sot',
|
|
todayStatus: '',
|
|
clearText: 'fshije',
|
|
clearStatus: 'fshije datën aktuale',
|
|
closeText: 'mbylle',
|
|
closeStatus: 'mbylle pa ndryshime',
|
|
yearStatus: 'trego tjetër vit',
|
|
monthStatus: 'trego muajin tjetër',
|
|
weekText: 'Ja',
|
|
weekStatus: 'Java e muajit',
|
|
dayStatus: '\'Zgjedh\' D, M d',
|
|
defaultStatus: 'Zgjedhe një datë',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.sq);
|
|
})(jQuery);
|