Blame view

framework/thirdparty/jquery-ui/datepicker/i18n/jquery.ui.datepicker-nb.js 966 Bytes
0084d336   Administrator   Importers CRUD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  /*
   * Norwegian (UTF-8) initialisation for the jQuery UI date picker plugin.
   * Adapted to match the Zend Data localization for SilverStripe CMS
   * See: README
   */
  jQuery(function($){
      $.datepicker.regional['no'] = {
  		closeText: 'Lukk',
          prevText: '«Forrige',
  		nextText: 'Neste»',
  		currentText: 'I dag',
          monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'],
          monthNamesShort: ['jan.','feb.','mars','apr.','mai','juni','juli','aug.','sep.','okt.','nov.','des.'],
  		dayNames: ['søndag','mandag','tirsdag','onsdag','torsdag','fredag','lørdag'],
  		dayNamesShort: ['søn','man','tir','ons','tor','fre','lør'],
  		dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'],
  		weekHeader: 'Uke',
          dateFormat: 'yy-mm-dd',
  		firstDay: 0,
  		isRTL: false,
  		showMonthAfterYear: false,
  		yearSuffix: ''};
      $.datepicker.setDefaults($.datepicker.regional['no']);
  });