Skip to content

Commit d6b3b42

Browse files
rebuild
1 parent b5fdaee commit d6b3b42

6 files changed

+36
-13
lines changed

dist/i18n/jquery-ui-timepicker-addon-i18n.js

+25-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*! jQuery Timepicker Addon - v1.6.2 - 2015-11-14
22
* http://trentrichardson.com/examples/timepicker
3-
* Copyright (c) 2015 Trent Richardson; Licensed MIT */
3+
* Copyright (c) 2016 Trent Richardson; Licensed MIT */
44

55
(function($){
66

@@ -168,8 +168,8 @@
168168
hourText: 'Ώρες',
169169
minuteText: 'Λεπτά',
170170
secondText: 'Δευτερόλεπτα',
171-
millisecText: 'μιλιδευτερόλεπτο',
172-
microsecText: 'Microseconds',
171+
millisecText: 'Χιλιοστοδευτερόλεπτα',
172+
microsecText: 'Μικροδευτερόλεπτα',
173173
timezoneText: 'Ζώνη ώρας',
174174
currentText: 'Τώρα',
175175
closeText: 'Κλείσιμο',
@@ -754,6 +754,28 @@
754754
isRTL: false
755755
};
756756

757+
// source: src/i18n/jquery-ui-timepicker-sq.js
758+
/* Albanian translation for the jQuery Timepicker Addon */
759+
/* Written by Olti Buzi */
760+
761+
$.timepicker.regional['sq'] = {
762+
timeOnlyTitle: 'Zgjidh orarin',
763+
timeText: 'Orari',
764+
hourText: 'Ora',
765+
minuteText: 'Minuta',
766+
secondText: 'Sekonda',
767+
millisecText: 'Minisekonda',
768+
microsecText: 'Mikrosekonda',
769+
timezoneText: 'Zona kohore',
770+
currentText: 'Tani',
771+
closeText: 'Mbyll',
772+
timeFormat: 'HH:mm',
773+
timeSuffix: '',
774+
amNames: ['m.', 'AM', 'A'],
775+
pmNames: ['p.', 'PM', 'P'],
776+
isRTL: false
777+
};
778+
757779
// source: src/i18n/jquery-ui-timepicker-sr-RS.js
758780
/* Serbian cyrilic translation for the jQuery Timepicker Addon */
759781
/* Written by Vladimir Jelovac */

dist/i18n/jquery-ui-timepicker-addon-i18n.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/i18n/jquery-ui-timepicker-el.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
hourText: 'Ώρες',
88
minuteText: 'Λεπτά',
99
secondText: 'Δευτερόλεπτα',
10-
millisecText: 'μιλιδευτερόλεπτο',
11-
microsecText: 'Microseconds',
10+
millisecText: 'Χιλιοστοδευτερόλεπτα',
11+
microsecText: 'Μικροδευτερόλεπτα',
1212
timezoneText: 'Ζώνη ώρας',
1313
currentText: 'Τώρα',
1414
closeText: 'Κλείσιμο',
@@ -19,4 +19,4 @@
1919
isRTL: false
2020
};
2121
$.timepicker.setDefaults($.timepicker.regional['el']);
22-
})(jQuery);
22+
})(jQuery);

dist/jquery-ui-timepicker-addon.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*! jQuery Timepicker Addon - v1.6.2 - 2015-11-14
22
* http://trentrichardson.com/examples/timepicker
3-
* Copyright (c) 2015 Trent Richardson; Licensed MIT */
3+
* Copyright (c) 2016 Trent Richardson; Licensed MIT */
44
(function (factory) {
55
if (typeof define === 'function' && define.amd) {
66
define(['jquery', 'jquery-ui'], factory);
@@ -2223,7 +2223,8 @@
22232223
* @return {void}
22242224
*/
22252225
$.timepicker.log = function () {
2226-
if (window.console) {
2226+
// Older IE (9, maybe 10) throw error on accessing `window.console.log.apply`, so check first.
2227+
if (window.console && window.console.log && window.console.log.apply) {
22272228
window.console.log.apply(window.console, Array.prototype.slice.call(arguments));
22282229
}
22292230
};

dist/jquery-ui-timepicker-addon.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery-ui-timepicker-addon.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)