35 lines
1.1 KiB
JavaScript
35 lines
1.1 KiB
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Faroese localisation for calendars datepicker for jQuery.
|
|
Written by Sverri Mohr Olsen,
|
|
sverrimo@gmail.com */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.fo = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<Sísta',
|
|
prevStatus: 'Vís sísta mánaðan',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: 'Vís sísta árið',
|
|
nextText: 'Næsta>',
|
|
nextStatus: 'Vís næsta mánaðan',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: 'Vís næsta árið',
|
|
currentText: 'Hesin',
|
|
currentStatus: 'Vís hendan mánaðan',
|
|
todayText: 'Í dag',
|
|
todayStatus: 'Vís mánaðan fyri í dag',
|
|
clearText: 'Strika',
|
|
clearStatus: 'Strika allir mánaðarnar',
|
|
closeText: 'Goym',
|
|
closeStatus: 'Goym hetta vindeyðga',
|
|
yearStatus: 'Broyt árið',
|
|
monthStatus: 'Broyt mánaðans',
|
|
weekText: 'Vk',
|
|
weekStatus: 'Vika av árinum',
|
|
dayStatus: 'Vel DD, M d, yyyy',
|
|
defaultStatus: 'Vel ein dato',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.fo);
|
|
})(jQuery);
|