source: trunk/template-common/lib/ui/i18n/ui.datepicker-no.js @ 4918

Last change on this file since 4918 was 4918, checked in by nikrou, 14 years ago

Feature 1442 : update jquery

  • update jquery to 1.4.1
  • update jquery ui to 1.7.2
  • Property svn:eol-style set to LF
File size: 865 bytes
Line 
1/* Norwegian initialisation for the jQuery UI date picker plugin. */
2/* Written by Naimdjon Takhirov (naimdjon@gmail.com). */
3jQuery(function($){
4    $.datepicker.regional['no'] = {
5                closeText: 'Lukk',
6        prevText: '«Forrige',
7                nextText: 'Neste»',
8                currentText: 'I dag',
9        monthNames: ['Januar','Februar','Mars','April','Mai','Juni',
10        'Juli','August','September','Oktober','November','Desember'],
11        monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jun',
12        'Jul','Aug','Sep','Okt','Nov','Des'],
13                dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'],
14                dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'],
15                dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'],
16        dateFormat: 'yy-mm-dd', firstDay: 0,
17                isRTL: false};
18    $.datepicker.setDefaults($.datepicker.regional['no']);
19});
Note: See TracBrowser for help on using the repository browser.