34 lines
1.2 KiB
JavaScript
34 lines
1.2 KiB
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Amharic (አማርኛ) localisation for calendars datepicker for jQuery.
|
|
Leyu Sisay. */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.am = {
|
|
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, yyyy ምረጥ',
|
|
defaultStatus: 'ቀን ምረጥ',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.am);
|
|
})(jQuery);
|