forked from trentrichardson/jQuery-Timepicker-Addon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
168 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } | ||
.ui-timepicker-div dl { text-align: left; } | ||
.ui-timepicker-div dl dt { height: 25px; } | ||
.ui-timepicker-div dl dd { margin: -25px 10px 10px 65px; } | ||
.ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; } | ||
.ui-timepicker-div dl dd { margin: 0 10px 10px 65px; } | ||
.ui-timepicker-div td { font-size: 90%; } | ||
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* Galician translation for the jQuery Timepicker Addon */ | ||
/* Written by David Barral */ | ||
(function($) { | ||
$.timepicker.regional['gl'] = { | ||
timeOnlyTitle: 'Elixir unha hora', | ||
timeText: 'Hora', | ||
hourText: 'Horas', | ||
minuteText: 'Minutos', | ||
secondText: 'Segundos', | ||
millisecText: 'Milisegundos', | ||
timezoneText: 'Fuso horario', | ||
currentText: 'Agora', | ||
closeText: 'Pechar', | ||
timeFormat: 'hh:mm', | ||
amNames: ['a.m.', 'AM', 'A'], | ||
pmNames: ['p.m.', 'PM', 'P'], | ||
ampm: false | ||
}; | ||
$.timepicker.setDefaults($.timepicker.regional['gl']); | ||
})(jQuery); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* Swedish translation for the jQuery Timepicker Addon */ | ||
/* Written by Nevon */ | ||
(function($) { | ||
$.timepicker.regional['sv'] = { | ||
timeOnlyTitle: 'Välj en tid', | ||
timeText: 'Timme', | ||
hourText: 'Timmar', | ||
minuteText: 'Minuter', | ||
secondText: 'Sekunder', | ||
millisecText: 'Millisekunder', | ||
timezoneText: 'Tidszon', | ||
currentText: 'Nu', | ||
closeText: 'Stäng', | ||
timeFormat: 'hh:mm', | ||
amNames: ['AM', 'A'], | ||
pmNames: ['PM', 'P'], | ||
ampm: false | ||
}; | ||
$.timepicker.setDefaults($.timepicker.regional['sv']); | ||
})(jQuery); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* Simplified Chinese translation for the jQuery Timepicker Addon / | ||
/ Written by Will Lu */ | ||
(function($) { | ||
$.timepicker.regional['zh-CN'] = { | ||
timeOnlyTitle: '选择时间', | ||
timeText: '时间', | ||
hourText: '小时', | ||
minuteText: '分钟', | ||
secondText: '秒钟', | ||
millisecText: '微秒', | ||
timezoneText: '时区', | ||
currentText: '现在时间', | ||
closeText: '关闭', | ||
timeFormat: 'hh:mm', | ||
amNames: ['AM', 'A'], | ||
pmNames: ['PM', 'P'], | ||
ampm: false | ||
}; | ||
$.timepicker.setDefaults($.timepicker.regional['zh-CN']); | ||
})(jQuery); |
Oops, something went wrong.