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