|
1 /* |
|
2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Day & Month names, abbreviations and datesuffix table + am/pm symbols for Polish language, ELOCL.27 |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 // EXTERNAL RESOURCES |
|
22 |
|
23 |
|
24 // Include Files |
|
25 |
|
26 #include <kernel/ls_std.h> |
|
27 |
|
28 // LOCAL CONSTANTS AND MACROS |
|
29 |
|
30 // The suffix table |
|
31 const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] = |
|
32 { |
|
33 _S(""),_S(""),_S(""),_S(""),_S(""), |
|
34 _S(""),_S(""),_S(""),_S(""),_S(""), |
|
35 _S(""),_S(""),_S(""),_S(""),_S(""), |
|
36 _S(""),_S(""),_S(""),_S(""),_S(""), |
|
37 _S(""),_S(""),_S(""),_S(""),_S(""), |
|
38 _S(""),_S(""),_S(""),_S(""),_S(""), |
|
39 _S("") |
|
40 }; |
|
41 // The day names |
|
42 const TText * const LLanguage::DayTable[KMaxDays] = |
|
43 { |
|
44 _S("Poniedzia\x0142"L"ek"), |
|
45 _S("Wtorek"), |
|
46 _S("\x015A" L"roda"), |
|
47 _S("Czwartek"), |
|
48 _S("Pi\x0105" L"tek"), |
|
49 _S("Sobota"), |
|
50 _S("Niedziela") |
|
51 }; |
|
52 // The abbreviated day names |
|
53 const TText * const LLanguage::DayAbbTable[KMaxDays] = |
|
54 { |
|
55 _S("Pn"), |
|
56 _S("Wt"), |
|
57 _S("\x015A" L"r"), |
|
58 _S("Cz"), |
|
59 _S("Pt"), |
|
60 _S("So"), |
|
61 _S("N") |
|
62 }; |
|
63 // The month names |
|
64 const TText * const LLanguage::MonthTable[KMaxMonths] = |
|
65 { |
|
66 _S("Stycze\x0144"), |
|
67 _S("Luty"), |
|
68 _S("Marzec"), |
|
69 _S("Kwiecie\x0144"), |
|
70 _S("Maj"), |
|
71 _S("Czerwiec"), |
|
72 _S("Lipiec"), |
|
73 _S("Sierpie\x0144"), |
|
74 _S("Wrzesie\x0144"), |
|
75 _S("Pa\x017A"L"dziernik"), |
|
76 _S("Listopad"), |
|
77 _S("Grudzie\x0144") |
|
78 }; |
|
79 // The abbreviated month names |
|
80 const TText * const LLanguage::MonthAbbTable[KMaxMonths] = |
|
81 { |
|
82 _S("Sty"), |
|
83 _S("Lut"), |
|
84 _S("Mar"), |
|
85 _S("Kwi"), |
|
86 _S("Maj"), |
|
87 _S("Cze"), |
|
88 _S("Lip"), |
|
89 _S("Si\x0119"), |
|
90 _S("Wrz"), |
|
91 _S("Pa\x017A"), |
|
92 _S("Lis"), |
|
93 _S("Gru") |
|
94 }; |
|
95 // The am/pm strings |
|
96 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("AM"),_S("PM")}; |
|
97 |
|
98 // End of File |