You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
761 B
22 lines
761 B
/* Bulgarian translation for the jQuery Timepicker Addon */
|
|
/* Written by Plamen Kovandjiev */
|
|
(function ($) {
|
|
$.timepicker.regional['bg'] = {
|
|
timeOnlyTitle: 'Изберете време',
|
|
timeText: 'Време',
|
|
hourText: 'Час',
|
|
minuteText: 'Минути',
|
|
secondText: 'Секунди',
|
|
millisecText: 'Милисекунди',
|
|
microsecText: 'Микросекунди',
|
|
timezoneText: 'Часови пояс',
|
|
currentText: 'Сега',
|
|
closeText: 'Затвори',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['AM', 'A'],
|
|
pmNames: ['PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['bg']);
|
|
})(jQuery);
|