34 lines
911 B
JavaScript
34 lines
911 B
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Finnish localisation for calendars datepicker for jQuery.
|
|
Written by Harri Kilpiö (harrikilpio@gmail.com). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.fi = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '«Edellinen',
|
|
prevStatus: '',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: '',
|
|
nextText: 'Seuraava»',
|
|
nextStatus: '',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: '',
|
|
currentText: 'Tänään',
|
|
currentStatus: '',
|
|
todayText: 'Tänään',
|
|
todayStatus: '',
|
|
clearText: 'Tyhjennä',
|
|
clearStatus: '',
|
|
closeText: 'Sulje',
|
|
closeStatus: '',
|
|
yearStatus: '',
|
|
monthStatus: '',
|
|
weekText: 'Vk',
|
|
weekStatus: '',
|
|
dayStatus: 'DD, M d',
|
|
defaultStatus: '',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.fi);
|
|
})(jQuery);
|