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
722 B
22 lines
722 B
/* Finnish translation for the jQuery Timepicker Addon */
|
|
/* Written by Juga Paazmaya (http://github.com/paazmaya) */
|
|
(function ($) {
|
|
$.timepicker.regional['fi'] = {
|
|
timeOnlyTitle: 'Valitse aika',
|
|
timeText: 'Aika',
|
|
hourText: 'Tunti',
|
|
minuteText: 'Minuutti',
|
|
secondText: 'Sekunti',
|
|
millisecText: 'Millisekunnin',
|
|
microsecText: 'Mikrosekuntia',
|
|
timezoneText: 'Aikavyöhyke',
|
|
currentText: 'Nyt',
|
|
closeText: 'Sulje',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['ap.', 'AM', 'A'],
|
|
pmNames: ['ip.', 'PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['fi']);
|
|
})(jQuery);
|