001 //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/model/csct/units/resources/Units_fr.java $ 002 /* 003 * Map and oceanographical data visualisation 004 * Copyright (C) 1999 P�ches et Oc�ans Canada 005 * 2000 Institut de Recherche pour le D�veloppement 006 * 007 * 008 * This library is free software; you can redistribute it and/or 009 * modify it under the terms of the GNU Library General Public 010 * License as published by the Free Software Foundation; either 011 * version 2 of the License, or (at your option) any later version. 012 * 013 * This library is distributed in the hope that it will be useful, 014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 016 * Library General Public License for more details (http://www.gnu.org/). 017 * 018 * 019 * Contacts: 020 * FRANCE: Surveillance de l'Environnement Assist�e par Satellite 021 * Institut de Recherche pour le D�veloppement / US-Espace 022 * mailto:seasnet@teledetection.fr 023 * 024 * CANADA: Observatoire du Saint-Laurent 025 * Institut Maurice-Lamontagne 026 * mailto:osl@osl.gc.ca 027 */ 028 package org.deegree.model.csct.units.resources; 029 030 031 /** 032 * Noms d'unit�s en langue fran�aise. Les unit�s qui n'apparaissent 033 * pas dans cette ressources ne seront pas localis�es. 034 * 035 * @version 1.0 036 * @author Martin Desruisseaux 037 */ 038 public class Units_fr extends Units 039 { 040 /** 041 * Liste des unit�s en fran�ais. Les cl�s sont les symboles 042 * standards (sauf exception) des unit�s. Les valeurs sont 043 * les noms en fran�ais de ces unit�s. 044 */ 045 static final String[] contents= 046 { 047 "m", "m�tre", 048 "g", "gramme", 049 "s", "seconde", 050 "A", "amp�re", 051 "K", "kelvin", 052 "mol", "mole", 053 "cd", "candela", 054 "rad", "radian", 055 "sr", "st�radian", 056 "Hz", "hertz", 057 "N", "newton", 058 "Pa", "pascal", 059 "J", "joule", 060 "W", "watt", 061 "C", "coulomb", 062 "V", "volt", 063 "F", "farad", 064 "\u03A9", "Ohm", 065 "S", "siemmens", 066 "T", "tesla", 067 "Wb", "weber", 068 "lx", "lux", 069 "Bq", "becquerel", 070 "Gy", "gray", 071 "Sv", "sievert", 072 "H", "henry", 073 "lm", "lumen", 074 "min", "minute", 075 "h", "heure", 076 "d", "jour", 077 "�", "degr� d'angle", 078 "'", "minute d'angle", 079 "\"", "seconde d'angle", 080 "l", "litre", 081 "L", "litre", 082 "t", "tonne m�trique", 083 "eV", "�lectronvolt", 084 "u", "unit� de masse atomique unifi�e", 085 "ua", "unit� astronomique", 086 "inch", "pouce", // Symbole non-standard 087 "foot", "pied", // Symbole non-standard 088 "yard", "yard", // Symbole non-standard 089 "fathom", "brasse anglaise", // Symbole non-standard 090 "brasse", "brasse fran�aise", // Symbole non-standard 091 "mile", "mille", // Symbole non-standard 092 "nmile", "mille marin", // Symbole non-standard 093 "knot", "noeud", // Symbole non-standard 094 "are", "are", 095 "ha", "hectare", 096 "bar", "bar", 097 "�", "�ngstr�m", 098 "barn", "barn", 099 "erg", "erg", 100 "dyn", "dyne", 101 "P", "poise", 102 "St", "stokes", 103 "G", "gauss", 104 "Oe", "oersted", 105 "Mx", "maxwell", 106 "sb", "stilb", 107 "ph", "phot", 108 "Gal", "gal", 109 "Ci", "curie", 110 "R", "r�ntgen", 111 "rd", "rad", 112 "rem", "rem", 113 "Jy", "jansky", 114 "Torr", "torr", 115 "atm", "atmosph�re normale", 116 "pound", "livre", // Symbole non-standard 117 "onze", "onze", // Symbole non-standard 118 "�C", "degr� celcius", 119 "�F", "fahrenheit" // Symbole non-standard 120 }; 121 122 /** 123 * Initialise les ressources fran�aises. 124 */ 125 public Units_fr() 126 {super(contents);} 127 }