1
// If you want to suggest a new language you can use this file as a template.
2
// To reduce the file size you should remove the comment lines (the ones that start with // )
3
if(!window.calendar_languages) {
4
window.calendar_languages = {};
6
// Here you define the language and Country code. Replace en-US with your own.
7
// First letters: the language code (lower case). See http://www.loc.gov/standards/iso639-2/php/code_list.php
8
// Last letters: the Country code (upper case). See http://www.iso.org/iso/home/standards/country_codes/country_names_and_code_elements.htm
9
window.calendar_languages['cs-CZ'] = {
10
error_noview: 'Kalendář: Pohled {0} nebyl nalezen',
11
error_dateformat: 'Kalendář: Chybný formát data {0}. Zvolte "now" nebo "yyyy-mm-dd"',
12
error_loadurl: 'Kalendář: Není vyplněno URL události',
13
error_where: 'Kalendář: Chyba navigace {0}. Can be only "next" or "prev" or "today"',
14
error_timedevide: 'Kalendář: Rozdělení času musí být dělitelem 60 beze zbytku. Například 10, 15, 30',
16
no_events_in_day: 'Dnes žádné události.',
18
// {0} will be replaced with the year (example: 2013)
20
// {0} will be replaced with the month name (example: September)
21
// {1} will be replaced with the year (example: 2013)
22
title_month: '{0} {1}',
23
// {0} will be replaced with the week number (example: 37)
24
// {1} will be replaced with the year (example: 2013)
25
title_week: 'týden {0} of {1}',
26
// {0} will be replaced with the weekday name (example: Thursday)
27
// {1} will be replaced with the day of the month (example: 12)
28
// {2} will be replaced with the month name (example: September)
29
// {3} will be replaced with the year (example: 2013)
30
title_day: '{0} {1} {2}, {3}',
36
before_time: 'Ends before timeline',
37
after_time: 'Starts after timeline',
73
// Which is the first day of the week (2 for sunday, 1 for monday)
76
// The list of the holidays.
77
// Each holiday has a date definition and a name (in your language)
83
// 'date': 'name' //No ending comma for the last holiday
85
// The format of the date may be one of the following:
86
// # For a holiday recurring every year in the same day: 'dd-mm' (dd is the day of the month, mm is the month). For example: '25-12'.
87
// # For a holiday that exists only in one specific year: 'dd-mm-yyyy' (dd is the day of the month, mm is the month, yyyy is the year). For example: '31-01-2013'
88
// # For Easter: use simply 'easter'
89
// # For holidays that are based on the Easter date: 'easter+offset in days'.
91
// - 'easter-2' is Good Friday (2 days before Easter)
92
// - 'easter+1' is Easter Monday (1 day after Easter)
93
// - 'easter+39' is the Ascension Day
94
// - 'easter+49' is Pentecost
95
// # For holidays that are on a specific weekday after the beginning of a month: 'mm+n*w', where 'mm' is the month, 'n' is the ordinal position, 'w' is the weekday being 0: Sunday, 1: Monday, ..., 6: Saturnday
97
// - Second (2) Monday (1) in October (10): '10+2*1'
98
// # For holidays that are on a specific weekday before the ending of a month: 'mm-n*w', where 'mm' is the month, 'n' is the ordinal position, 'w' is the weekday being 0: Sunday, 1: Monday, ..., 6: Saturnday
100
// - Last (1) Saturnday (6) in Match (03): '03-1*6'
101
// - Last (1) Monday (1) in May (05): '05-1*1'
102
// # You can also specify a holiday that lasts more than one day. To do that use the format 'start>end' where 'start' and 'end' are specified as above.
104
// - From 1 January to 6 January: '01-01>06-01'
105
// - Easter and the day after Easter: 'easter>easter+1'
106
// Limitations: currently the multi-day holydays can't cross an year. So, for example, you can't specify a range as '30-12>01-01'; as a workaround you can specify two distinct holidays (for instance '30-12>31-12' and '01-01').