os/textandloc/localisation/localesupport/src/ls_lnfre.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 * Default settings for the French 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("Lundi"),
    37 	_S("Mardi"),
    38 	_S("Mercredi"),
    39 	_S("Jeudi"),
    40 	_S("Vendredi"),
    41 	_S("Samedi"),
    42 	_S("Dimanche")
    43 	};
    44 // The abbreviated day names
    45 const TText * const LLanguage::DayAbbTable[KMaxDays] =
    46 	{
    47 	_S("Lun"),
    48 	_S("Mar"),
    49 	_S("Mer"),
    50 	_S("Jeu"),
    51 	_S("Ven"),
    52 	_S("Sam"),
    53 	_S("Dim")
    54 	};
    55 // The month names
    56 const TText * const LLanguage::MonthTable[KMaxMonths] =
    57 	{
    58 	_S("Janvier"),
    59 	_S("F\351vrier"),
    60 	_S("Mars"),
    61 	_S("Avril"),
    62 	_S("Mai"),
    63 	_S("Juin"),
    64 	_S("Juillet"),
    65 	_S("Ao\373t"),
    66 	_S("Septembre"),
    67 	_S("Octobre"),
    68 	_S("Novembre"),
    69 	_S("D\351cembre")
    70 	};
    71 // The abbreviated month names
    72 const TText * const LLanguage::MonthAbbTable[KMaxMonths] =
    73 	{
    74 	_S("Jan"),
    75 	_S("F\351v"),
    76 	_S("Mar"),
    77 	_S("Avr"),
    78 	_S("Mai"),
    79 	_S("Jun"),
    80 	_S("Jul"),
    81 	_S("Ao\373"),
    82 	_S("Sep"),
    83 	_S("Oct"),
    84 	_S("Nov"),
    85 	_S("D\351c")
    86 	};
    87 // The am/pm strings
    88 const TText * const LLanguage::AmPmTable[KMaxAmPms] = {_S("am"),_S("pm")};
    89 
    90