forked from goodsign/monday
-
Notifications
You must be signed in to change notification settings - Fork 0
/
format_pl_pl.go
56 lines (51 loc) · 1.21 KB
/
format_pl_pl.go
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
45
46
47
48
49
50
51
52
53
54
55
56
package monday
// ============================================================
// Format rules for "pl_PL" locale: Polish (Poland)
// ============================================================
var longDayNamesPlPL = map[string]string{
"Sunday": "Niedziela",
"Monday": "Poniedziałek",
"Tuesday": "Wtorek",
"Wednesday": "Środa",
"Thursday": "Czwartek",
"Friday": "Piątek",
"Saturday": "Sobota",
}
// http://sjp.pwn.pl/poradnia/haslo/skracanie-nazw-dni-tygodnia-i-miesiecy;8124.html
var shortDayNamesPlPL = map[string]string{
"Sun": "Nie",
"Mon": "Pon",
"Tue": "Wto",
"Wed": "Śro",
"Thu": "Czw",
"Fri": "Pią",
"Sat": "Sob",
}
var longMonthNamesPlPL = map[string]string{
"January": "Styczeń",
"February": "Luty",
"March": "Marzec",
"April": "Kwiecień",
"May": "Maj",
"June": "Czerwiec",
"July": "Lipiec",
"August": "Sierpień",
"September": "Wrzesień",
"October": "Październik",
"November": "Listopad",
"December": "Grudzień",
}
var shortMonthNamesPlPL = map[string]string{
"Jan": "Sty",
"Feb": "Lut",
"Mar": "Mar",
"Apr": "Kwi",
"May": "Maj",
"Jun": "Cze",
"Jul": "Lip",
"Aug": "Sie",
"Sep": "Wrz",
"Oct": "Paź",
"Nov": "Lis",
"Dec": "Gru",
}