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 |
* Default settings for the Spanish language |
4122176ea935
Revision: 200948 + Removing redundant base integration tests and fixing build errors
John Imhofe <john.imhofe@nokia.com>
parents:
0
diff
changeset
|
16 |
* |
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 |
|
0 | 19 |
|
20 |
#include "ls_std.h" |
|
21 |
||
22 |
// The suffix table |
|
23 |
const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] = |
|
24 |
{ |
|
25 |
_S(""),_S(""),_S(""),_S(""),_S(""), |
|
26 |
_S(""),_S(""),_S(""),_S(""),_S(""), |
|
27 |
_S(""),_S(""),_S(""),_S(""),_S(""), |
|
28 |
_S(""),_S(""),_S(""),_S(""),_S(""), |
|
29 |
_S(""),_S(""),_S(""),_S(""),_S(""), |
|
30 |
_S(""),_S(""),_S(""),_S(""),_S(""), |
|
31 |
_S("") |
|
32 |
}; |
|
33 |
// The day names |
|
34 |
const TText * const LLanguage::DayTable[KMaxDays] = |
|
35 |
{ |
|
36 |
_S("Lunes"), |
|
37 |
_S("Martes"), |
|
38 |
_S("Mi\351rcoles"), |
|
39 |
_S("Jueves"), |
|
40 |
_S("Viernes"), |
|
41 |
_S("S\341bado"), |
|
42 |
_S("Domingo") |
|
43 |
}; |
|
44 |
// The abbreviated day names |
|
45 |
const TText * const LLanguage::DayAbbTable[KMaxDays] = |
|
46 |
{ |
|
47 |
_S("Lun"), |
|
48 |
_S("Mar"), |
|
49 |
_S("Mi\351"), |
|
50 |
_S("Jue"), |
|
51 |
_S("Vie"), |
|
52 |
_S("S\341b"), |
|
53 |
_S("Dom") |
|
54 |
}; |
|
55 |
// The month names |
|
56 |
const TText * const LLanguage::MonthTable[KMaxMonths] = |
|
57 |
{ |
|
58 |
_S("Enero"), |
|
59 |
_S("Febrero"), |
|
60 |
_S("Marzo"), |
|
61 |
_S("Abril"), |
|
62 |
_S("Mayo"), |
|
63 |
_S("Junio"), |
|
64 |
_S("Julio"), |
|
65 |
_S("Agosto"), |
|
66 |
_S("Septiembre"), |
|
67 |
_S("Octubre"), |
|
68 |
_S("Noviembre"), |
|
69 |
_S("Diciembre") |
|
70 |
}; |
|
71 |
// The abbreviated month names |
|
72 |
const TText * const LLanguage::MonthAbbTable[KMaxMonths] = |
|
73 |
{ |
|
74 |
_S("Ene"), |
|
75 |
_S("Feb"), |
|
76 |
_S("Mar"), |
|
77 |
_S("Abr"), |
|
78 |
_S("May"), |
|
79 |
_S("Jun"), |
|
80 |
_S("Jul"), |
|
81 |
_S("Ago"), |
|
82 |
_S("Sep"), |
|
83 |
_S("Oct"), |
|
84 |
_S("Nov"), |
|
85 |
_S("Dic") |
|
86 |
}; |
|
87 |
// The am/pm strings |
|
88 |
const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")}; |
|
89 |
||
90 |