Skip to content

Commit 97e3839

Browse files
authored
feat(locales): add Czech locale (#268)
1 parent aad1555 commit 97e3839

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

src/locales/cs-CZ.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"todayButton": "Dnes",
3+
"nextMonth": "Příští měsíc",
4+
"previousMonth": "Minulý měsíc",
5+
"nextYear": "Příští rok",
6+
"previousYear": "Minulý rok",
7+
"weekdays": [
8+
"Neděle",
9+
"Pondělí",
10+
"Úterý",
11+
"Středa",
12+
"Čtvrtek",
13+
"Pátek",
14+
"Sobota"
15+
],
16+
"months": [
17+
"Leden",
18+
"Únor",
19+
"Březen",
20+
"Duben",
21+
"Květen",
22+
"Červen",
23+
"Červenec",
24+
"Srpen",
25+
"Září",
26+
"Říjen",
27+
"Listopad",
28+
"Prosinec"
29+
]
30+
}

src/types/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export type Locale = {
1414

1515
export type LocaleOptions =
1616
| 'ca-ES'
17+
| 'cs-CZ'
1718
| 'de-DE'
1819
| 'en-US'
1920
| 'es-ES'

0 commit comments

Comments
 (0)