os/textandloc/localisation/localesupport/src/ls_lntest.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 * LS_LNENG.CPP
    16 * Default settings for the English language (UK & US)
    17 *
    18 */
    19 
    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