-
Notifications
You must be signed in to change notification settings - Fork 13
/
09-datepicker-cz.html
44 lines (39 loc) · 1.42 KB
/
09-datepicker-cz.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="us">
<head>
<meta charset="utf-8">
<title>jQuery Datepicker</title>
<!--připojení nezbytných stylů a skriptů (z jQuery UI by bylo možné použít také jen příslušnou část!)-->
<link href="external/jquery-ui/jquery-ui.css" rel="stylesheet">
<script src="external/jquery-2.1.4.js"></script>
<script src="external/jquery-ui/jquery-ui.js"></script>
<script>
/*lokalizace do češtiny*/
$.datepicker.regional['cs'] = {
closeText: 'Zavřít',
prevText: 'Předchozí',
nextText: 'Další',
currentText: 'Hoy',
monthNames: ['Leden','Únor','Březen','Duben','Květen','Červen', 'Červenec','Srpen','Září','Říjen','Listopad','Prosinec'],
monthNamesShort: ['Le','Ún','Bř','Du','Kv','Čn', 'Čc','Sr','Zá','Ří','Li','Pr'],
dayNames: ['Neděle','Pondělí','Úterý','Středa','Čtvrtek','Pátek','Sobota'],
dayNamesShort: ['Ne','Po','Út','St','Čt','Pá','So'],
dayNamesMin: ['Ne','Po','Út','St','Čt','Pá','So'],
weekHeader: 'Sm',
dateFormat: 'dd.mm.yy',
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: ''};
$.datepicker.setDefaults($.datepicker.regional['cs']);
$(document).ready(function(){
//vytvoření datepickeru
$('.datepicker').datepicker();
});
</script>
</head>
<body>
<h1>Datepicker</h1>
<label for="input1">Ukázkový datepicker:</label><input type="text" id="input1" class="datepicker" />
</body>
</html>