Path: blob/master/src/java.base/share/classes/sun/security/util/AuthResources_fr.java
41159 views
/*1* Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package sun.security.util;2627/**28* <p> This class represents the <code>ResourceBundle</code>29* for the following packages:30*31* <ol>32* <li> com.sun.security.auth33* <li> com.sun.security.auth.login34* </ol>35*36*/37public class AuthResources_fr extends java.util.ListResourceBundle {3839private static final Object[][] contents = {4041// NT principals42{"invalid.null.input.value", "entr\u00E9e NULL non valide : {0}"},43{"NTDomainPrincipal.name", "NTDomainPrincipal : {0}"},44{"NTNumericCredential.name", "NTNumericCredential : {0}"},45{"Invalid.NTSid.value", "Valeur de NTSid non valide"},46{"NTSid.name", "NTSid : {0}"},47{"NTSidDomainPrincipal.name", "NTSidDomainPrincipal : {0}"},48{"NTSidGroupPrincipal.name", "NTSidGroupPrincipal : {0}"},49{"NTSidPrimaryGroupPrincipal.name", "NTSidPrimaryGroupPrincipal : {0}"},50{"NTSidUserPrincipal.name", "NTSidUserPrincipal : {0}"},51{"NTUserPrincipal.name", "NTUserPrincipal : {0}"},5253// UnixPrincipals54{"UnixNumericGroupPrincipal.Primary.Group.name",55"UnixNumericGroupPrincipal [groupe principal] : {0}"},56{"UnixNumericGroupPrincipal.Supplementary.Group.name",57"UnixNumericGroupPrincipal [groupe suppl\u00E9mentaire] : {0}"},58{"UnixNumericUserPrincipal.name", "UnixNumericUserPrincipal : {0}"},59{"UnixPrincipal.name", "UnixPrincipal : {0}"},6061// com.sun.security.auth.login.ConfigFile62{"Unable.to.properly.expand.config", "Impossible de d\u00E9velopper {0} correctement"},63{"extra.config.No.such.file.or.directory.",64"{0} (fichier ou r\u00E9pertoire inexistant)"},65{"Configuration.Error.No.such.file.or.directory",66"Erreur de configuration :\n\tCe fichier ou r\u00E9pertoire n'existe pas"},67{"Configuration.Error.Invalid.control.flag.flag",68"Erreur de configuration :\n\tIndicateur de contr\u00F4le non valide, {0}"},69{"Configuration.Error.Can.not.specify.multiple.entries.for.appName",70"Erreur de configuration :\n\tImpossible de sp\u00E9cifier des entr\u00E9es multiples pour {0}"},71{"Configuration.Error.expected.expect.read.end.of.file.",72"Erreur de configuration :\n\tAttendu : [{0}], lu : [fin de fichier]"},73{"Configuration.Error.Line.line.expected.expect.found.value.",74"Erreur de configuration :\n\tLigne {0} : attendu [{1}], trouv\u00E9 [{2}]"},75{"Configuration.Error.Line.line.expected.expect.",76"Erreur de configuration :\n\tLigne {0} : attendu [{1}]"},77{"Configuration.Error.Line.line.system.property.value.expanded.to.empty.value",78"Erreur de configuration :\n\tLigne {0} : propri\u00E9t\u00E9 syst\u00E8me [{1}] d\u00E9velopp\u00E9e en valeur vide"},7980// com.sun.security.auth.module.JndiLoginModule81{"username.","nom utilisateur : "},82{"password.","mot de passe : "},8384// com.sun.security.auth.module.KeyStoreLoginModule85{"Please.enter.keystore.information",86"Entrez les informations du fichier de cl\u00E9s"},87{"Keystore.alias.","Alias du fichier de cl\u00E9s : "},88{"Keystore.password.","Mot de passe pour fichier de cl\u00E9s : "},89{"Private.key.password.optional.",90"Mot de passe de la cl\u00E9 priv\u00E9e (facultatif) : "},9192// com.sun.security.auth.module.Krb5LoginModule93{"Kerberos.username.defUsername.",94"Nom utilisateur Kerberos [{0}] : "},95{"Kerberos.password.for.username.",96"Mot de passe Kerberos pour {0} : "},97};9899/**100* Returns the contents of this <code>ResourceBundle</code>.101*102* <p>103*104* @return the contents of this <code>ResourceBundle</code>.105*/106public Object[][] getContents() {107return contents;108}109}110111112