34 lines
1.5 KiB
JavaScript
34 lines
1.5 KiB
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Gujarati (ગુજરાતી) localisation for calendars datepicker for jQuery.
|
|
Naymesh Mistry (naymesh@yahoo.com). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.gu = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<પાછળ',
|
|
prevStatus: 'પાછલો મહિનો બતાવો',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: 'પાછળ',
|
|
nextText: 'આગળ>',
|
|
nextStatus: 'આગલો મહિનો બતાવો',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: 'આગળ',
|
|
currentText: 'આજે',
|
|
currentStatus: 'આજનો દિવસ બતાવો',
|
|
todayText: 'આજે',
|
|
todayStatus: 'આજનો દિવસ',
|
|
clearText: 'ભૂંસો',
|
|
clearStatus: 'હાલ પસંદ કરેલી તારીખ ભૂંસો',
|
|
closeText: 'બંધ કરો',
|
|
closeStatus: 'તારીખ પસંદ કર્યા વગર બંધ કરો',
|
|
yearStatus: 'જુદુ વર્ષ બતાવો',
|
|
monthStatus: 'જુદો મહિનો બતાવો',
|
|
weekText: 'અઠવાડિયું',
|
|
weekStatus: 'અઠવાડિયું',
|
|
dayStatus: 'અઠવાડિયાનો પહેલો દિવસ પસંદ કરો',
|
|
defaultStatus: 'તારીખ પસંદ કરો',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.gu);
|
|
})(jQuery);
|