kerneltest/e32test/locl/t_lneng2.cpp
changeset 0 a41df078684a
equal deleted inserted replaced
-1:000000000000 0:a41df078684a
       
     1 // Copyright (c) 2007-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_lneng2.cpp
       
    15 // Settings for the English language (UK & US), but with Vietnamese month names
       
    16 // 
       
    17 //
       
    18 
       
    19 #include <kernel/localise.h>
       
    20 
       
    21 // The suffix table
       
    22 const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
       
    23 	{
       
    24 	_S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"),
       
    25 	_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
       
    26 	_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
       
    27 	_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
       
    28 	_S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"),
       
    29 	_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
       
    30 	_S("st")
       
    31 	};
       
    32 // The day names
       
    33 const TText * const LLanguage::DayTable[KMaxDays] =
       
    34 	{
       
    35 	_S("Monday"),
       
    36 	_S("Tuesday"),
       
    37 	_S("Wednesday"),
       
    38 	_S("Thursday"),
       
    39 	_S("Friday"),
       
    40 	_S("Saturday"),
       
    41 	_S("Sunday")
       
    42 	};
       
    43 // The abbreviated day names
       
    44 const TText * const LLanguage::DayAbbTable[KMaxDays] =
       
    45 	{
       
    46 	_S("Mon"),
       
    47 	_S("Tue"),
       
    48 	_S("Wed"),
       
    49 	_S("Thu"),
       
    50 	_S("Fri"),
       
    51 	_S("Sat"),
       
    52 	_S("Sun")
       
    53 	};
       
    54 // The month names
       
    55 const TText * const LLanguage::MonthTable[KMaxMonths] =
       
    56 	{
       
    57 	_S("Thang 1"),
       
    58 	_S("Thang 2"),
       
    59 	_S("Thang 3"),
       
    60 	_S("Thang 4"),
       
    61 	_S("Thang 5"),
       
    62 	_S("Thang 6"),
       
    63 	_S("Thang 7"),
       
    64 	_S("Thang 8"),
       
    65 	_S("Thang 9"),
       
    66 	_S("Thang 10"),
       
    67 	_S("Thang 11"),
       
    68 	_S("Thang 12")
       
    69 	};
       
    70 // The abbreviated month names
       
    71 const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
       
    72 	{
       
    73 	_S("TH1"),
       
    74 	_S("TH2"),
       
    75 	_S("TH3"),
       
    76 	_S("TH4"),
       
    77 	_S("TH5"),
       
    78 	_S("TH6"),
       
    79 	_S("TH7"),
       
    80 	_S("TH8"),
       
    81 	_S("TH9"),
       
    82 	_S("TH10"),
       
    83 	_S("TH11"),
       
    84 	_S("TH12")
       
    85 	};
       
    86 // The am/pm strings
       
    87 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
       
    88 
       
    89