34 lines
896 B
JavaScript
34 lines
896 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Armenian localisation for calendars datepicker for jQuery.
|
|
Written by Levon Zakaryan (levon.zakaryan@gmail.com) */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.hy = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<Նախ.',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'Հաջ.>',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'Այսօր',
|
|
currentStatus: '',
|
|
todayText: 'Այսօր',
|
|
todayStatus: '',
|
|
clearText: 'Մաքրել',
|
|
clearStatus: '',
|
|
closeText: 'Փակել',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'ՇԲՏ',
|
|
weekStatus: '',
|
|
dayStatus: 'DD, M d',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.hy);
|
|
})(jQuery);
|