Bug Tracker

Changeset 4227

Show
Ignore:
Timestamp:
12/19/07 04:30:52 (9 months ago)
Author:
grabanski@…
Message:

Added Norwegian and updated Hebrew localization.

Location:
trunk/ui/current/datepicker/i18n
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/ui/current/datepicker/i18n/ui.datepicker-he.js

    r4200 r4227  
    11/* Hebrew initialisation for the UI Datepicker extension. */ 
    22/* Written by Amir Hardon (ahardon at gmail dot com). */ 
    3 jQuery(function($){ 
    4     $.datepicker.regional['he'] = {clearText: 'נקה', closeText: 'סגור', 
    5         prevText: '<קודם', nextText: 'הבא>', currentText: 'היום', 
    6         dayNames: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 
     3jQuery(document).ready(function(){ 
     4    jQuery.datepicker.regional['he'] = {clearText: 'נקה', clearStatus: '', 
     5        closeText: 'סגור', closeStatus: '', 
     6        prevText: '<הקודם', prevStatus: '', 
     7        nextText: 'הבא>', nextStatus: '', 
     8        currentText: 'היום', currentStatus: '', 
    79        monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', 
    8         'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר']}; 
    9     $.datepicker.setDefaults($.datepicker.regional['he']); 
     10        'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], 
     11        monthNamesShort: ['1','2','3','4','5','6', 
     12        '7','8','9','10','11','12'], 
     13        monthStatus: '', yearStatus: '', 
     14        weekHeader: 'Sm', weekStatus: '', 
     15        dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], 
     16        dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 
     17        dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 
     18        dayStatus: 'DD', dateStatus: 'D, M d', 
     19        dateFormat: 'dd/mm/yy', firstDay: 0,  
     20        initStatus: '', isRTL: true}; 
     21    jQuery.datepicker.setDefaults($.datepicker.regional['he']); 
    1022}); 
    11