You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
893 B
22 lines
893 B
/* Norwegian Nynorsk initialisation for the jQuery UI date picker plugin. */ |
|
/* Written by Bjørn Johansen (post@bjornjohansen.no). */ |
|
jQuery(function($){ |
|
$.datepicker.regional['nn'] = { |
|
closeText: 'Lukk', |
|
prevText: '«Førre', |
|
nextText: 'Neste»', |
|
currentText: 'I dag', |
|
monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'], |
|
monthNamesShort: ['jan','feb','mar','apr','mai','jun','jul','aug','sep','okt','nov','des'], |
|
dayNamesShort: ['sun','mån','tys','ons','tor','fre','lau'], |
|
dayNames: ['sundag','måndag','tysdag','onsdag','torsdag','fredag','laurdag'], |
|
dayNamesMin: ['su','må','ty','on','to','fr','la'], |
|
weekHeader: 'Veke', |
|
dateFormat: 'dd.mm.yy', |
|
firstDay: 1, |
|
isRTL: false, |
|
showMonthAfterYear: false, |
|
yearSuffix: '' |
|
}; |
|
$.datepicker.setDefaults($.datepicker.regional['nn']); |
|
});
|
|
|