Skip to content

Minor fix to FR, add ES translation #174

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 7, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions localization/jquery-ui-timepicker-es.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* Spanish translation for the jQuery Timepicker Addon */
/* Written by Ianaré Sévi */
(function($) {
$.timepicker.regional['es'] = {
timeOnlyTitle: 'Elegir una hora',
timeText: 'Hora',
hourText: 'Horas',
minuteText: 'Minutos',
secondText: 'Segundos',
timezoneText: 'Huso horario',
currentText: 'Ahora',
closeText: 'Cerrar',
timeFormat: 'hh:mm',
ampm: false
};
$.timepicker.setDefaults($.timepicker.regional['es']);
})(jQuery);
4 changes: 2 additions & 2 deletions localization/jquery-ui-timepicker-fr.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Czech translation for the jQuery Timepicker Addon */
/* French translation for the jQuery Timepicker Addon */
/* Written by Thomas Lété */
(function($) {
$.timepicker.regional['fr'] = {
Expand All @@ -10,7 +10,7 @@
timezoneText: 'Fuseau horaire',
currentText: 'Maintenant',
closeText: 'Terminé',
timeFormat: 'h:m',
timeFormat: 'hh:mm',
ampm: false
};
$.timepicker.setDefaults($.timepicker.regional['fr']);
Expand Down