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_lnger.cpp
|
|
15 |
// Default settings for the German language
|
|
16 |
//
|
|
17 |
//
|
|
18 |
|
|
19 |
#include <kernel/localise.h>
|
|
20 |
|
|
21 |
// The suffix table
|
|
22 |
const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
|
|
23 |
{
|
|
24 |
_S(""),_S(""),_S(""),_S(""),_S(""),
|
|
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("")
|
|
31 |
};
|
|
32 |
// The day names
|
|
33 |
const TText * const LLanguage::DayTable[KMaxDays] =
|
|
34 |
{
|
|
35 |
_S("Montag"),
|
|
36 |
_S("Dienstag"),
|
|
37 |
_S("Mittwoch"),
|
|
38 |
_S("Donnerstag"),
|
|
39 |
_S("Freitag"),
|
|
40 |
_S("Samstag"),
|
|
41 |
_S("Sonntag")
|
|
42 |
};
|
|
43 |
// The abbreviated day names
|
|
44 |
const TText * const LLanguage::DayAbbTable[KMaxDays] =
|
|
45 |
{
|
|
46 |
_S("Mo"),
|
|
47 |
_S("Di"),
|
|
48 |
_S("Mi"),
|
|
49 |
_S("Do"),
|
|
50 |
_S("Fr"),
|
|
51 |
_S("Sa"),
|
|
52 |
_S("So")
|
|
53 |
};
|
|
54 |
// The month names
|
|
55 |
const TText * const LLanguage::MonthTable[KMaxMonths] =
|
|
56 |
{
|
|
57 |
_S("Januar"),
|
|
58 |
_S("Februar"),
|
|
59 |
_S("M\xE4rz"),
|
|
60 |
_S("April"),
|
|
61 |
_S("Mai"),
|
|
62 |
_S("Juni"),
|
|
63 |
_S("Juli"),
|
|
64 |
_S("August"),
|
|
65 |
_S("September"),
|
|
66 |
_S("Oktober"),
|
|
67 |
_S("November"),
|
|
68 |
_S("Dezember")
|
|
69 |
};
|
|
70 |
// The abbreviated month names
|
|
71 |
const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
|
|
72 |
{
|
|
73 |
_S("Jan"),
|
|
74 |
_S("Feb"),
|
|
75 |
_S("M\xE4r"),
|
|
76 |
_S("Apr"),
|
|
77 |
_S("Mai"),
|
|
78 |
_S("Jun"),
|
|
79 |
_S("Jul"),
|
|
80 |
_S("Aug"),
|
|
81 |
_S("Sep"),
|
|
82 |
_S("Okt"),
|
|
83 |
_S("Nov"),
|
|
84 |
_S("Dez")
|
|
85 |
};
|
|
86 |
// The am/pm strings
|
|
87 |
const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
|
|
88 |
|