os/textandloc/localisation/localesupport/src/ls_lnger.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 1994-2009 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: 
    15 * Default settings for the German language
    16 *
    17 */
    18 
    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("Montag"),
    37 	_S("Dienstag"),
    38 	_S("Mittwoch"),
    39 	_S("Donnerstag"),
    40 	_S("Freitag"),
    41 	_S("Samstag"),
    42 	_S("Sonntag")
    43 	};
    44 // The abbreviated day names
    45 const TText * const LLanguage::DayAbbTable[KMaxDays] =
    46 	{
    47 	_S("Mo"),
    48 	_S("Di"),
    49 	_S("Mi"),
    50 	_S("Do"),
    51 	_S("Fr"),
    52 	_S("Sa"),
    53 	_S("So")
    54 	};
    55 // The month names
    56 const TText * const LLanguage::MonthTable[KMaxMonths] =
    57 	{
    58 	_S("Januar"),
    59 	_S("Februar"),
    60 	_S("M\344rz"),
    61 	_S("April"),
    62 	_S("Mai"),
    63 	_S("Juni"),
    64 	_S("Juli"),
    65 	_S("August"),
    66 	_S("September"),
    67 	_S("Oktober"),
    68 	_S("November"),
    69 	_S("Dezember")
    70 	};
    71 // The abbreviated month names
    72 const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
    73 	{
    74 	_S("Jan"),
    75 	_S("Feb"),
    76 	_S("M\344r"),
    77 	_S("Apr"),
    78 	_S("Mai"),
    79 	_S("Jun"),
    80 	_S("Jul"),
    81 	_S("Aug"),
    82 	_S("Sep"),
    83 	_S("Okt"),
    84 	_S("Nov"),
    85 	_S("Dez")
    86 	};
    87 // The am/pm strings
    88 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
    89