|
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 Turkish language, ELOCL.14 |
|
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("Pazartesi"), |
|
45 _S("Sal\x0131"), |
|
46 _S("Çar\x015F"L"amba"), |
|
47 _S("Per\x015F"L"embe"), |
|
48 _S("Cuma"), |
|
49 _S("Cumartesi"), |
|
50 _S("Pazar") |
|
51 }; |
|
52 // The abbreviated day names |
|
53 const TText * const LLanguage::DayAbbTable[KMaxDays] = |
|
54 { |
|
55 _S("Pt"), |
|
56 _S("Sa"), |
|
57 _S("Ça"), |
|
58 _S("Pe"), |
|
59 _S("Cu"), |
|
60 _S("Ct"), |
|
61 _S("Pz") |
|
62 }; |
|
63 // The month names |
|
64 const TText * const LLanguage::MonthTable[KMaxMonths] = |
|
65 { |
|
66 _S("Ocak"), |
|
67 _S("\x015E" L"ubat"), |
|
68 _S("Mart"), |
|
69 _S("Nisan"), |
|
70 _S("May\x0131" L"s"), |
|
71 _S("Haziran"), |
|
72 _S("Temmuz"), |
|
73 _S("A\x011F" L"ustos"), |
|
74 _S("Eylül"), |
|
75 _S("Ekim"), |
|
76 _S("Kas\x0131" L"m"), |
|
77 _S("Aral\x0131" L"k") |
|
78 }; |
|
79 // The abbreviated month names |
|
80 const TText * const LLanguage::MonthAbbTable[KMaxMonths] = |
|
81 { |
|
82 _S("Oca"), |
|
83 _S("\x015E" L"ub"), |
|
84 _S("Mar"), |
|
85 _S("Nis"), |
|
86 _S("May"), |
|
87 _S("Haz"), |
|
88 _S("Tem"), |
|
89 _S("A\x011F" L"u"), |
|
90 _S("Eyl"), |
|
91 _S("Eki"), |
|
92 _S("Kas"), |
|
93 _S("Ara") |
|
94 }; |
|
95 // The am/pm strings |
|
96 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("ÖÖ"),_S("ÖS")}; |
|
97 |
|
98 // End of File |