os/kernelhwsrv/kerneltest/e32test/locl/t_lneng.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.
sl@0
     1
// Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of the License "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// f32test\locl\t_lneng.cpp
sl@0
    15
// Default settings for the English language (UK & US)
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
#include <kernel/localise.h>
sl@0
    20
sl@0
    21
// The suffix table
sl@0
    22
const TText * const LLanguage::DateSuffixTable[KMaxSuffixes] =
sl@0
    23
	{
sl@0
    24
	_S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"),
sl@0
    25
	_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
sl@0
    26
	_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
sl@0
    27
	_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
sl@0
    28
	_S("st"),_S("nd"),_S("rd"),_S("th"),_S("th"),
sl@0
    29
	_S("th"),_S("th"),_S("th"),_S("th"),_S("th"),
sl@0
    30
	_S("st")
sl@0
    31
	};
sl@0
    32
// The day names
sl@0
    33
const TText * const LLanguage::DayTable[KMaxDays] =
sl@0
    34
	{
sl@0
    35
	_S("Monday"),
sl@0
    36
	_S("Tuesday"),
sl@0
    37
	_S("Wednesday"),
sl@0
    38
	_S("Thursday"),
sl@0
    39
	_S("Friday"),
sl@0
    40
	_S("Saturday"),
sl@0
    41
	_S("Sunday")
sl@0
    42
	};
sl@0
    43
// The abbreviated day names
sl@0
    44
const TText * const LLanguage::DayAbbTable[KMaxDays] =
sl@0
    45
	{
sl@0
    46
	_S("Mon"),
sl@0
    47
	_S("Tue"),
sl@0
    48
	_S("Wed"),
sl@0
    49
	_S("Thu"),
sl@0
    50
	_S("Fri"),
sl@0
    51
	_S("Sat"),
sl@0
    52
	_S("Sun")
sl@0
    53
	};
sl@0
    54
// The month names
sl@0
    55
const TText * const LLanguage::MonthTable[KMaxMonths] =
sl@0
    56
	{
sl@0
    57
	_S("January"),
sl@0
    58
	_S("February"),
sl@0
    59
	_S("March"),
sl@0
    60
	_S("April"),
sl@0
    61
	_S("May"),
sl@0
    62
	_S("June"),
sl@0
    63
	_S("July"),
sl@0
    64
	_S("August"),
sl@0
    65
	_S("September"),
sl@0
    66
	_S("October"),
sl@0
    67
	_S("November"),
sl@0
    68
	_S("December")
sl@0
    69
	};
sl@0
    70
// The abbreviated month names
sl@0
    71
const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
sl@0
    72
	{
sl@0
    73
	_S("Jan"),
sl@0
    74
	_S("Feb"),
sl@0
    75
	_S("Mar"),
sl@0
    76
	_S("Apr"),
sl@0
    77
	_S("May"),
sl@0
    78
	_S("Jun"),
sl@0
    79
	_S("Jul"),
sl@0
    80
	_S("Aug"),
sl@0
    81
	_S("Sep"),
sl@0
    82
	_S("Oct"),
sl@0
    83
	_S("Nov"),
sl@0
    84
	_S("Dec")
sl@0
    85
	};
sl@0
    86
// The am/pm strings
sl@0
    87
const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
sl@0
    88
sl@0
    89