1 /*
   2  * Copyright (c) 2000, 2016, 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 package sun.security.util;
  27 
  28 /**
  29  * This class represents the <code>ResourceBundle</code>
  30  * for javax.security.auth and sun.security.
  31  *
  32  */
  33 public class Resources_fr extends java.util.ListResourceBundle {
  34 
  35     private static final Object[][] contents = {
  36 
  37         // javax.security.auth.PrivateCredentialPermission
  38         {"invalid.null.input.s.", "entrées NULL non valides"},
  39         {"actions.can.only.be.read.", "les actions sont accessibles en lecture uniquement"},
  40         {"permission.name.name.syntax.invalid.",
  41                 "syntaxe de nom de droit [{0}] non valide : "},
  42         {"Credential.Class.not.followed.by.a.Principal.Class.and.Name",
  43                 "Classe Credential non suivie d'une classe et d'un nom de principal"},
  44         {"Principal.Class.not.followed.by.a.Principal.Name",
  45                 "Classe de principal non suivie d'un nom de principal"},
  46         {"Principal.Name.must.be.surrounded.by.quotes",
  47                 "Le nom de principal doit être indiqué entre guillemets"},
  48         {"Principal.Name.missing.end.quote",
  49                 "Guillemet fermant manquant pour le nom de principal"},
  50         {"PrivateCredentialPermission.Principal.Class.can.not.be.a.wildcard.value.if.Principal.Name.is.not.a.wildcard.value",
  51                 "La classe de principal PrivateCredentialPermission ne peut pas être une valeur générique (*) si le nom de principal n'est pas une valeur générique (*)"},
  52         {"CredOwner.Principal.Class.class.Principal.Name.name",
  53                 "CredOwner :\n\tClasse de principal = {0}\n\tNom de principal = {1}"},
  54 
  55         // javax.security.auth.x500
  56         {"provided.null.name", "nom NULL fourni"},
  57         {"provided.null.keyword.map", "mappage de mots-clés NULL fourni"},
  58         {"provided.null.OID.map", "mappage OID NULL fourni"},
  59 
  60         // javax.security.auth.Subject
  61         {"NEWLINE", "\n"},
  62         {"invalid.null.AccessControlContext.provided",
  63                 "AccessControlContext NULL fourni non valide"},
  64         {"invalid.null.action.provided", "action NULL fournie non valide"},
  65         {"invalid.null.Class.provided", "classe NULL fournie non valide"},
  66         {"Subject.", "Objet :\n"},
  67         {".Principal.", "\tPrincipal : "},
  68         {".Public.Credential.", "\tInformations d'identification publiques : "},
  69         {".Private.Credentials.inaccessible.",
  70                 "\tInformations d'identification privées inaccessibles\n"},
  71         {".Private.Credential.", "\tInformations d'identification privées : "},
  72         {".Private.Credential.inaccessible.",
  73                 "\tInformations d'identification privées inaccessibles\n"},
  74         {"Subject.is.read.only", "Sujet en lecture seule"},
  75         {"attempting.to.add.an.object.which.is.not.an.instance.of.java.security.Principal.to.a.Subject.s.Principal.Set",
  76                 "tentative d'ajout d'un objet qui n'est pas une instance de java.security.Principal dans un ensemble de principaux du sujet"},
  77         {"attempting.to.add.an.object.which.is.not.an.instance.of.class",
  78                 "tentative d''ajout d''un objet qui n''est pas une instance de {0}"},
  79 
  80         // javax.security.auth.login.AppConfigurationEntry
  81         {"LoginModuleControlFlag.", "LoginModuleControlFlag : "},
  82 
  83         // javax.security.auth.login.LoginContext
  84         {"Invalid.null.input.name", "Entrée NULL non valide : nom"},
  85         {"No.LoginModules.configured.for.name",
  86          "Aucun LoginModule configuré pour {0}"},
  87         {"invalid.null.Subject.provided", "sujet NULL fourni non valide"},
  88         {"invalid.null.CallbackHandler.provided",
  89                 "CallbackHandler NULL fourni non valide"},
  90         {"null.subject.logout.called.before.login",
  91                 "sujet NULL - Tentative de déconnexion avant la connexion"},
  92         {"unable.to.instantiate.LoginModule.module.because.it.does.not.provide.a.no.argument.constructor",
  93                 "impossible d''instancier LoginModule {0} car il ne fournit pas de constructeur sans argument"},
  94         {"unable.to.instantiate.LoginModule",
  95                 "impossible d'instancier LoginModule"},
  96         {"unable.to.instantiate.LoginModule.",
  97                 "impossible d'instancier LoginModule : "},
  98         {"unable.to.find.LoginModule.class.",
  99                 "classe LoginModule introuvable : "},
 100         {"unable.to.access.LoginModule.",
 101                 "impossible d'accéder à LoginModule : "},
 102         {"Login.Failure.all.modules.ignored",
 103                 "Echec de connexion : tous les modules ont été ignorés"},
 104 
 105         // sun.security.provider.PolicyFile
 106 
 107         {"java.security.policy.error.parsing.policy.message",
 108                 "java.security.policy : erreur d''analyse de {0} :\n\t{1}"},
 109         {"java.security.policy.error.adding.Permission.perm.message",
 110                 "java.security.policy : erreur d''ajout de droit, {0} :\n\t{1}"},
 111         {"java.security.policy.error.adding.Entry.message",
 112                 "java.security.policy : erreur d''ajout d''entrée :\n\t{0}"},
 113         {"alias.name.not.provided.pe.name.", "nom d''alias non fourni ({0})"},
 114         {"unable.to.perform.substitution.on.alias.suffix",
 115                 "impossible d''effectuer une substitution pour l''alias, {0}"},
 116         {"substitution.value.prefix.unsupported",
 117                 "valeur de substitution, {0}, non prise en charge"},
 118         {"LPARAM", "("},
 119         {"RPARAM", ")"},
 120         {"type.can.t.be.null","le type ne peut être NULL"},
 121 
 122         // sun.security.provider.PolicyParser
 123         {"keystorePasswordURL.can.not.be.specified.without.also.specifying.keystore",
 124                 "Impossible de spécifier keystorePasswordURL sans indiquer aussi le fichier de clés"},
 125         {"expected.keystore.type", "type de fichier de clés attendu"},
 126         {"expected.keystore.provider", "fournisseur de fichier de clés attendu"},
 127         {"multiple.Codebase.expressions",
 128                 "expressions Codebase multiples"},
 129         {"multiple.SignedBy.expressions","expressions SignedBy multiples"},
 130         {"duplicate.keystore.domain.name","nom de domaine de fichier de clés en double : {0}"},
 131         {"duplicate.keystore.name","nom de fichier de clés en double : {0}"},
 132         {"SignedBy.has.empty.alias","SignedBy possède un alias vide"},
 133         {"can.not.specify.Principal.with.a.wildcard.class.without.a.wildcard.name",
 134                 "impossible de spécifier le principal avec une classe générique sans nom générique"},
 135         {"expected.codeBase.or.SignedBy.or.Principal",
 136                 "codeBase, SignedBy ou Principal attendu"},
 137         {"expected.permission.entry", "entrée de droit attendue"},
 138         {"number.", "nombre "},
 139         {"expected.expect.read.end.of.file.",
 140                 "attendu [{0}], lu [fin de fichier]"},
 141         {"expected.read.end.of.file.",
 142                 "attendu [;], lu [fin de fichier]"},
 143         {"line.number.msg", "ligne {0} : {1}"},
 144         {"line.number.expected.expect.found.actual.",
 145                 "ligne {0} : attendu [{1}], trouvé [{2}]"},
 146         {"null.principalClass.or.principalName",
 147                 "principalClass ou principalName NULL"},
 148 
 149         // sun.security.pkcs11.SunPKCS11
 150         {"PKCS11.Token.providerName.Password.",
 151                 "Mot de passe PKCS11 Token [{0}] : "},
 152 
 153         /* --- DEPRECATED --- */
 154         // javax.security.auth.Policy
 155         {"unable.to.instantiate.Subject.based.policy",
 156                 "impossible d'instancier les règles basées sur le sujet"}
 157     };
 158 
 159 
 160     /**
 161      * Returns the contents of this <code>ResourceBundle</code>.
 162      *
 163      * @return the contents of this <code>ResourceBundle</code>.
 164      */
 165     @Override
 166     public Object[][] getContents() {
 167         return contents;
 168     }
 169 }
 170