Lines 56-61
static const struct
Link Here
|
56 |
{ "en_US.ISO-8859-1", "November 17, 2017", "%B %e, %Y", 5, 320, 10, 17 }, |
56 |
{ "en_US.ISO-8859-1", "November 17, 2017", "%B %e, %Y", 5, 320, 10, 17 }, |
57 |
{ "de_DE.ISO-8859-1", "18. Nov 2017", "%d. %b %Y", 6, 321, 10, 18 }, |
57 |
{ "de_DE.ISO-8859-1", "18. Nov 2017", "%d. %b %Y", 6, 321, 10, 18 }, |
58 |
{ "fr_FR.UTF-8", "19 novembre 2017", "%d %OB %Y", 0, 322, 10, 19 }, |
58 |
{ "fr_FR.UTF-8", "19 novembre 2017", "%d %OB %Y", 0, 322, 10, 19 }, |
|
|
59 |
{ "es_ES.UTF-8", "20 de nov de 2017", "%d de %Ob de %Y", 1, 323, 10, 20 }, |
59 |
/* Some languages do need the declension of the month names. */ |
60 |
/* Some languages do need the declension of the month names. */ |
60 |
{ "pl_PL.UTF-8", "21 lis 2017", "%d %b %Y", 2, 324, 10, 21 }, |
61 |
{ "pl_PL.UTF-8", "21 lis 2017", "%d %b %Y", 2, 324, 10, 21 }, |
61 |
{ "pl_PL.UTF-8", "22 LIS 2017", "%d %B %Y", 3, 325, 10, 22 }, |
62 |
{ "pl_PL.UTF-8", "22 LIS 2017", "%d %B %Y", 3, 325, 10, 22 }, |
Lines 63-68
static const struct
Link Here
|
63 |
{ "pl_PL.UTF-8", "23 listopad 2017", "%d %B %Y", 4, 326, 10, 23 }, |
64 |
{ "pl_PL.UTF-8", "23 listopad 2017", "%d %B %Y", 4, 326, 10, 23 }, |
64 |
/* The nominative case is incorrect here but it is parseable. */ |
65 |
/* The nominative case is incorrect here but it is parseable. */ |
65 |
{ "pl_PL.UTF-8", "24 listopad 2017", "%d %OB %Y", 5, 327, 10, 24 }, |
66 |
{ "pl_PL.UTF-8", "24 listopad 2017", "%d %OB %Y", 5, 327, 10, 24 }, |
|
|
67 |
{ "pl_PL.UTF-8", "25 lis 2017", "%d %Ob %Y", 6, 328, 10, 25 }, |
68 |
/* ноя - pronounce: 'noya' - "Nov" (abbreviated "November") in Russian. */ |
69 |
{ "ru_RU.UTF-8", "26 ноя 2017", "%d %b %Y", 0, 329, 10, 26 }, |
70 |
/* TODO: Add an example of "may"/"maya" (5th month, May) using %Ob in |
71 |
Russian when the localedata is updated. Without the genitive forms |
72 |
in localedata the word "maya" is ambiguous and may be mistaken for |
73 |
"mart" (March). |
74 |
*/ |
66 |
}; |
75 |
}; |
67 |
|
76 |
|
68 |
|
77 |
|
69 |
- |
|
|