diff options
-rw-r--r-- | localization/jquery-ui-timepicker-af.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/localization/jquery-ui-timepicker-af.js b/localization/jquery-ui-timepicker-af.js new file mode 100644 index 0000000..da922d5 --- /dev/null +++ b/localization/jquery-ui-timepicker-af.js @@ -0,0 +1,20 @@ +/* Afrikaans translation for the jQuery Timepicker Addon */
+/* Written by Deon Heyns */
+(function($) {
+ $.timepicker.regional['af'] = {
+ timeOnlyTitle: 'Kies Tyd',
+ timeText: 'Tyd ',
+ hourText: 'Ure ',
+ minuteText: 'Minute',
+ secondText: 'Sekondes',
+ millisecText: 'Millisekondes',
+ timezoneText: 'Tydsone',
+ currentText: 'Huidige Tyd',
+ closeText: 'Klaar',
+ timeFormat: 'hh:mm tt',
+ amNames: ['AM', 'A'],
+ pmNames: ['PM', 'P'],
+ ampm: false
+ };
+ $.timepicker.setDefaults($.timepicker.regional['af']);
+})(jQuery);
|