diff options
author | Trent <trentdrichardson@gmail.com> | 2011-12-06 10:57:13 -0500 |
---|---|---|
committer | Trent <trentdrichardson@gmail.com> | 2011-12-06 10:57:13 -0500 |
commit | 0ec258f82be98443890bda084d5587a220e4a1bd (patch) | |
tree | 7b15feaebd3225235d2c38cd29a2245eecc7c2a5 | |
parent | 9af6f920e8341ab36b68bd1548887c1535595e78 (diff) | |
download | jQuery-Timepicker-Addon-0ec258f82be98443890bda084d5587a220e4a1bd.zip jQuery-Timepicker-Addon-0ec258f82be98443890bda084d5587a220e4a1bd.tar.gz jQuery-Timepicker-Addon-0ec258f82be98443890bda084d5587a220e4a1bd.tar.bz2 |
Added Norwegian translation
-rw-r--r-- | localization/jquery-ui-timepicker-no.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/localization/jquery-ui-timepicker-no.js b/localization/jquery-ui-timepicker-no.js new file mode 100644 index 0000000..c34348b --- /dev/null +++ b/localization/jquery-ui-timepicker-no.js @@ -0,0 +1,20 @@ +/* Norwegian translation for the jQuery Timepicker Addon */ +/* Written by Morten Hauan (http://hauan.me) */ +(function($) { + $.timepicker.regional['no'] = { + timeOnlyTitle: 'Velg tid', + timeText: 'Tid', + hourText: 'Time', + minuteText: 'Minutt', + secondText: 'Sekund', + millisecText: 'Millisekund', + timezoneText: 'Tidssone', + currentText: 'NĂ¥', + closeText: 'Lukk', + timeFormat: 'hh:mm', + amNames: ['am', 'AM', 'A'], + pmNames: ['pm', 'PM', 'P'], + ampm: false + }; + $.timepicker.setDefaults($.timepicker.regional['no']); +})(jQuery); |