1 /*
   2  * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /*
  27  * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  28  * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  29  *
  30  * The original version of this source code and documentation
  31  * is copyrighted and owned by Taligent, Inc., a wholly-owned
  32  * subsidiary of IBM. These materials are provided under terms
  33  * of a License Agreement between Taligent and Sun. This technology
  34  * is protected by multiple US and International patents.
  35  *
  36  * This notice and attribution to Taligent may not be removed.
  37  * Taligent is a registered trademark of Taligent, Inc.
  38  *
  39  */
  40 
  41 /*
  42  * COPYRIGHT AND PERMISSION NOTICE
  43  *
  44  * Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
  45  * the Terms of Use in http://www.unicode.org/copyright.html.
  46  *
  47  * Permission is hereby granted, free of charge, to any person obtaining a copy
  48  * of the Unicode data files and any associated documentation (the "Data
  49  * Files") or Unicode software and any associated documentation (the
  50  * "Software") to deal in the Data Files or Software without restriction,
  51  * including without limitation the rights to use, copy, modify, merge,
  52  * publish, distribute, and/or sell copies of the Data Files or Software, and
  53  * to permit persons to whom the Data Files or Software are furnished to do so,
  54  * provided that (a) the above copyright notice(s) and this permission notice
  55  * appear with all copies of the Data Files or Software, (b) both the above
  56  * copyright notice(s) and this permission notice appear in associated
  57  * documentation, and (c) there is clear notice in each modified Data File or
  58  * in the Software as well as in the documentation associated with the Data
  59  * File(s) or Software that the data or software has been modified.
  60  *
  61  * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  62  * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  63  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
  64  * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
  65  * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
  66  * CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  67  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  68  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  69  * OF THE DATA FILES OR SOFTWARE.
  70  *
  71  * Except as contained in this notice, the name of a copyright holder shall not
  72  * be used in advertising or otherwise to promote the sale, use or other
  73  * dealings in these Data Files or Software without prior written authorization
  74  * of the copyright holder.
  75  */
  76 
  77 package sun.text.resources.fr;
  78 
  79 import java.util.ListResourceBundle;
  80 
  81 public class FormatData_fr extends ListResourceBundle {
  82     /**
  83      * Overrides ListResourceBundle
  84      */
  85     protected final Object[][] getContents() {
  86         return new Object[][] {
  87             { "MonthNames",
  88                 new String[] {
  89                     "janvier", // january
  90                     "f\u00e9vrier", // february
  91                     "mars", // march
  92                     "avril", // april
  93                     "mai", // may
  94                     "juin", // june
  95                     "juillet", // july
  96                     "ao\u00fbt", // august
  97                     "septembre", // september
  98                     "octobre", // october
  99                     "novembre", // november
 100                     "d\u00e9cembre", // december
 101                     "" // month 13 if applicable
 102                 }
 103             },
 104             { "MonthAbbreviations",
 105                 new String[] {
 106                     "janv.", // abb january
 107                     "f\u00e9vr.", // abb february
 108                     "mars", // abb march
 109                     "avr.", // abb april
 110                     "mai", // abb may
 111                     "juin", // abb june
 112                     "juil.", // abb july
 113                     "ao\u00fbt", // abb august
 114                     "sept.", // abb september
 115                     "oct.", // abb october
 116                     "nov.", // abb november
 117                     "d\u00e9c.", // abb december
 118                     "" // abb mo month 13 if applicable
 119                 }
 120             },
 121             { "DayNames",
 122                 new String[] {
 123                     "dimanche", // Sunday
 124                     "lundi", // Monday
 125                     "mardi", // Tuesday
 126                     "mercredi", // Wednesday
 127                     "jeudi", // Thursday
 128                     "vendredi", // Friday
 129                     "samedi" // Saturday
 130                 }
 131             },
 132             { "DayAbbreviations",
 133                 new String[] {
 134                     "dim.", // abb Sunday
 135                     "lun.", // abb Monday
 136                     "mar.", // abb Tuesday
 137                     "mer.", // abb Wednesday
 138                     "jeu.", // abb Thursday
 139                     "ven.", // abb Friday
 140                     "sam." // abb Saturday
 141                 }
 142             },
 143             { "DayNarrows",
 144                 new String[] {
 145                     "D",
 146                     "L",
 147                     "M",
 148                     "M",
 149                     "J",
 150                     "V",
 151                     "S",
 152                 }
 153             },
 154             { "Eras",
 155                 new String[] { // era strings
 156                     "BC",
 157                     "ap. J.-C."
 158                 }
 159             },
 160             { "NumberPatterns",
 161                 new String[] {
 162                     "#,##0.###;-#,##0.###", // decimal pattern
 163                     "#,##0.00 \u00A4;-#,##0.00 \u00A4", // currency pattern
 164                     "#,##0 %" // percent pattern
 165                 }
 166             },
 167             { "NumberElements",
 168                 new String[] {
 169                     ",", // decimal separator
 170                     "\u00a0", // group (thousands) separator
 171                     ";", // list separator
 172                     "%", // percent sign
 173                     "0", // native 0 digit
 174                     "#", // pattern digit
 175                     "-", // minus sign
 176                     "E", // exponential
 177                     "\u2030", // per mille
 178                     "\u221e", // infinity
 179                     "\ufffd" // NaN
 180                 }
 181             },
 182             { "TimePatterns",
 183                 new String[] {
 184                     "HH' h 'mm z", // full time pattern
 185                     "HH:mm:ss z", // long time pattern
 186                     "HH:mm:ss", // medium time pattern
 187                     "HH:mm", // short time pattern
 188                 }
 189             },
 190             { "DatePatterns",
 191                 new String[] {
 192                     "EEEE d MMMM yyyy", // full date pattern
 193                     "d MMMM yyyy", // long date pattern
 194                     "d MMM yyyy", // medium date pattern
 195                     "dd/MM/yy", // short date pattern
 196                 }
 197             },
 198             { "DateTimePatterns",
 199                 new String[] {
 200                     "{1} {0}" // date-time pattern
 201                 }
 202             },
 203             { "DateTimePatternChars", "GaMjkHmsSEDFwWxhKzZ" },
 204             { "cldr.buddhist.DatePatterns",
 205                 new String[] {
 206                     "EEEE d MMMM y G",
 207                     "d MMMM y G",
 208                     "d MMM, y G",
 209                     "d/M/yyyy",
 210                 }
 211             },
 212             { "cldr.japanese.DatePatterns",
 213                 new String[] {
 214                     "EEEE d MMMM y G",
 215                     "d MMMM y G",
 216                     "d MMM, y G",
 217                     "d/M/y GGGGG",
 218                 }
 219             },
 220             { "cldr.roc.DatePatterns",
 221                 new String[] {
 222                     "EEEE d MMMM y G",
 223                     "d MMMM y G",
 224                     "d MMM, y G",
 225                     "d/M/y GGGGG",
 226                 }
 227             },
 228             { "roc.DatePatterns",
 229                 new String[] {
 230                     "EEEE d MMMM y GGGG",
 231                     "d MMMM y GGGG",
 232                     "d MMM, y GGGG",
 233                     "d/M/y G",
 234                 }
 235             },
 236             { "islamic.MonthNames",
 237                 new String[] {
 238                     "Mouharram",
 239                     "Safar",
 240                     "Rabi\u02bb-oul-Aououal",
 241                     "Rabi\u02bb-out-Tani",
 242                     "Djoumada-l-Oula",
 243                     "Djoumada-t-Tania",
 244                     "Radjab",
 245                     "Cha\u02bbban",
 246                     "Ramadan",
 247                     "Chaououal",
 248                     "Dou-l-Qa\u02bbda",
 249                     "Dou-l-Hidjja",
 250                     "",
 251                 }
 252             },
 253             { "islamic.MonthAbbreviations",
 254                 new String[] {
 255                     "Mouh.",
 256                     "Saf.",
 257                     "Rabi\u02bb-oul-A.",
 258                     "Rabi\u02bb-out-T.",
 259                     "Djoum.-l-O.",
 260                     "Djoum.-t-T.",
 261                     "Radj.",
 262                     "Cha.",
 263                     "Ram.",
 264                     "Chaou.",
 265                     "Dou-l-Q.",
 266                     "Dou-l-H.",
 267                     "",
 268                 }
 269             },
 270             { "islamic.Eras",
 271                 new String[] {
 272                     "",
 273                     "AH",
 274                 }
 275             },
 276             { "cldr.islamic.DatePatterns",
 277                 new String[] {
 278                     "EEEE d MMMM y G",
 279                     "d MMMM y G",
 280                     "d MMM, y G",
 281                     "d/M/y G",
 282                 }
 283             },
 284             { "islamic.DatePatterns",
 285                 new String[] {
 286                     "EEEE d MMMM y GGGG",
 287                     "d MMMM y GGGG",
 288                     "d MMM, y GGGG",
 289                     "d/M/y GGGG",
 290                 }
 291             },
 292             { "calendarname.islamic-civil", "Calendrier civil musulman" },
 293             { "calendarname.islamicc", "Calendrier civil musulman" },
 294             { "calendarname.islamic", "Calendrier musulman" },
 295             { "calendarname.japanese", "Calendrier japonais" },
 296             { "calendarname.gregorian", "Calendrier gr\u00e9gorien" },
 297             { "calendarname.gregory", "Calendrier gr\u00e9gorien" },
 298             { "calendarname.roc", "Calendrier r\u00e9publicain chinois" },
 299             { "calendarname.buddhist", "Calendrier bouddhiste" },
 300             { "field.era", "\u00e8re" },
 301             { "field.year", "ann\u00e9e" },
 302             { "field.month", "mois" },
 303             { "field.week", "semaine" },
 304             { "field.weekday", "jour de la semaine" },
 305             { "field.dayperiod", "cadran" },
 306             { "field.hour", "heure" },
 307             { "field.minute", "minute" },
 308             { "field.second", "seconde" },
 309             { "field.zone", "fuseau horaire" },
 310         };
 311     }
 312 }