|
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 datesuffixtable + am/pm symbols for US English language |
|
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("st"),_S("nd"),_S("rd"),_S("th"),_S("th"), |
|
34 _S("th"),_S("th"),_S("th"),_S("th"),_S("th"), |
|
35 _S("th"),_S("th"),_S("th"),_S("th"),_S("th"), |
|
36 _S("th"),_S("th"),_S("th"),_S("th"),_S("th"), |
|
37 _S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"), |
|
38 _S("th"),_S("th"),_S("th"),_S("th"),_S("th"), |
|
39 _S("st") |
|
40 }; |
|
41 // The day names |
|
42 const TText * const LLanguage::DayTable[KMaxDays] = |
|
43 { |
|
44 _S("Monday"), |
|
45 _S("Tuesday"), |
|
46 _S("Wednesday"), |
|
47 _S("Thursday"), |
|
48 _S("Friday"), |
|
49 _S("Saturday"), |
|
50 _S("Sunday") |
|
51 }; |
|
52 // The abbreviated day names |
|
53 const TText * const LLanguage::DayAbbTable[KMaxDays] = |
|
54 { |
|
55 _S("Mon"), |
|
56 _S("Tue"), |
|
57 _S("Wed"), |
|
58 _S("Thu"), |
|
59 _S("Fri"), |
|
60 _S("Sat"), |
|
61 _S("Sun") |
|
62 }; |
|
63 // The month names |
|
64 const TText * const LLanguage::MonthTable[KMaxMonths] = |
|
65 { |
|
66 _S("January"), |
|
67 _S("February"), |
|
68 _S("March"), |
|
69 _S("April"), |
|
70 _S("May"), |
|
71 _S("June"), |
|
72 _S("July"), |
|
73 _S("August"), |
|
74 _S("September"), |
|
75 _S("October"), |
|
76 _S("November"), |
|
77 _S("December") |
|
78 }; |
|
79 // The abbreviated month names |
|
80 const TText * const LLanguage::MonthAbbTable[KMaxMonths] = |
|
81 { |
|
82 _S("Jan"), |
|
83 _S("Feb"), |
|
84 _S("Mar"), |
|
85 _S("Apr"), |
|
86 _S("May"), |
|
87 _S("Jun"), |
|
88 _S("Jul"), |
|
89 _S("Aug"), |
|
90 _S("Sep"), |
|
91 _S("Oct"), |
|
92 _S("Nov"), |
|
93 _S("Dec") |
|
94 }; |
|
95 // The am/pm strings |
|
96 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("AM"),_S("PM")}; |
|
97 |
|
98 // End of File |