0
|
1 |
// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
// All rights reserved.
|
|
3 |
// This component and the accompanying materials are made available
|
|
4 |
// under the terms of the License "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
// f32test\locl\t_lneng.cpp
|
|
15 |
// Default settings for the English language (UK & US)
|
|
16 |
//
|
|
17 |
//
|
|
18 |
|
|
19 |
#include <kernel/localise.h>
|
|
20 |
|
|
21 |
// The suffix table
|
|
22 |
const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
|
|
23 |
{
|
|
24 |
_S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"),
|
|
25 |
_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
|
|
26 |
_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
|
|
27 |
_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
|
|
28 |
_S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"),
|
|
29 |
_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
|
|
30 |
_S("st")
|
|
31 |
};
|
|
32 |
// The day names
|
|
33 |
const TText * const LLanguage::DayTable[KMaxDays] =
|
|
34 |
{
|
|
35 |
_S("Monday"),
|
|
36 |
_S("Tuesday"),
|
|
37 |
_S("Wednesday"),
|
|
38 |
_S("Thursday"),
|
|
39 |
_S("Friday"),
|
|
40 |
_S("Saturday"),
|
|
41 |
_S("Sunday")
|
|
42 |
};
|
|
43 |
// The abbreviated day names
|
|
44 |
const TText * const LLanguage::DayAbbTable[KMaxDays] =
|
|
45 |
{
|
|
46 |
_S("Mon"),
|
|
47 |
_S("Tue"),
|
|
48 |
_S("Wed"),
|
|
49 |
_S("Thu"),
|
|
50 |
_S("Fri"),
|
|
51 |
_S("Sat"),
|
|
52 |
_S("Sun")
|
|
53 |
};
|
|
54 |
// The month names
|
|
55 |
const TText * const LLanguage::MonthTable[KMaxMonths] =
|
|
56 |
{
|
|
57 |
_S("January"),
|
|
58 |
_S("February"),
|
|
59 |
_S("March"),
|
|
60 |
_S("April"),
|
|
61 |
_S("May"),
|
|
62 |
_S("June"),
|
|
63 |
_S("July"),
|
|
64 |
_S("August"),
|
|
65 |
_S("September"),
|
|
66 |
_S("October"),
|
|
67 |
_S("November"),
|
|
68 |
_S("December")
|
|
69 |
};
|
|
70 |
// The abbreviated month names
|
|
71 |
const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
|
|
72 |
{
|
|
73 |
_S("Jan"),
|
|
74 |
_S("Feb"),
|
|
75 |
_S("Mar"),
|
|
76 |
_S("Apr"),
|
|
77 |
_S("May"),
|
|
78 |
_S("Jun"),
|
|
79 |
_S("Jul"),
|
|
80 |
_S("Aug"),
|
|
81 |
_S("Sep"),
|
|
82 |
_S("Oct"),
|
|
83 |
_S("Nov"),
|
|
84 |
_S("Dec")
|
|
85 |
};
|
|
86 |
// The am/pm strings
|
|
87 |
const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
|
|
88 |
|
|
89 |
|