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
753 B
22 lines
753 B
/* Brazilian Portuguese translation for the jQuery Timepicker Addon */
|
|
/* Written by Diogo Damiani (diogodamiani@gmail.com) */
|
|
(function ($) {
|
|
$.timepicker.regional['pt-BR'] = {
|
|
timeOnlyTitle: 'Escolha o horário',
|
|
timeText: 'Horário',
|
|
hourText: 'Hora',
|
|
minuteText: 'Minutos',
|
|
secondText: 'Segundos',
|
|
millisecText: 'Milissegundos',
|
|
microsecText: 'Microssegundos',
|
|
timezoneText: 'Fuso horário',
|
|
currentText: 'Agora',
|
|
closeText: 'Fechar',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['a.m.', 'AM', 'A'],
|
|
pmNames: ['p.m.', 'PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['pt-BR']);
|
|
})(jQuery);
|