1 /* 2 * Copyright (c) 2001, 2005, 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 * <p> This class represents the <code>ResourceBundle</code> 30 * for the following packages: 31 * 32 * <ol> 33 * <li> com.sun.security.auth 34 * <li> com.sun.security.auth.login 35 * </ol> 36 * 37 */ 38 public class AuthResources_es extends java.util.ListResourceBundle { 39 40 private static final Object[][] contents = { 41 42 // NT principals 43 {"invalid null input: value", "entrada nula no v\u00e1lida: {0}"}, 44 {"NTDomainPrincipal: name", "NTDomainPrincipal: {0}"}, 45 {"NTNumericCredential: name", "NTNumericCredential: {0}"}, 46 {"Invalid NTSid value", "Valor de NTSid no v\u00e1lido"}, 47 {"NTSid: name", "NTSid: {0}"}, 48 {"NTSidDomainPrincipal: name", "NTSidDomainPrincipal: {0}"}, 49 {"NTSidGroupPrincipal: name", "NTSidGroupPrincipal: {0}"}, 50 {"NTSidPrimaryGroupPrincipal: name", "NTSidPrimaryGroupPrincipal: {0}"}, 51 {"NTSidUserPrincipal: name", "NTSidUserPrincipal: {0}"}, 52 {"NTUserPrincipal: name", "NTUserPrincipal: {0}"}, 53 54 // UnixPrincipals 55 {"UnixNumericGroupPrincipal [Primary Group]: name", 56 "UnixNumericGroupPrincipal [Grupo principal] {0}"}, 57 {"UnixNumericGroupPrincipal [Supplementary Group]: name", 58 "UnixNumericGroupPrincipal [Grupo adicional] {0}"}, 59 {"UnixNumericUserPrincipal: name", "UnixNumericUserPrincipal: {0}"}, 60 {"UnixPrincipal: name", "UnixPrincipal: {0}"}, 61 62 // com.sun.security.auth.login.ConfigFile 63 {"Unable to properly expand config", "No se puede ampliar correctamente {0}"}, 64 {"extra_config (No such file or directory)", 65 "{0} (No existe tal archivo o directorio)"}, 66 {"Unable to locate a login configuration", 67 "No se puede localizar una configuraci\u00f3n de inicio de sesi\u00f3n"}, 68 {"Configuration Error:\n\tInvalid control flag, flag", 69 "Error de configuraci\u00f3n:\n\tIndicador de control no v\u00e1lido, {0}"}, 70 {"Configuration Error:\n\tCan not specify multiple entries for appName", 71 "Error de configuraci\u00f3n:\n\tNo se pueden especificar m\u00faltiples entradas para {0}"}, 72 {"Configuration Error:\n\texpected [expect], read [end of file]", 73 "Error de configuraci\u00f3n:\n\tse esperaba [{0}], se ha le\u00eddo [end of file]"}, 74 {"Configuration Error:\n\tLine line: expected [expect], found [value]", 75 "Error de configuraci\u00f3n:\n\tL\u00ednea {0}: se esperaba [{1}], se ha encontrado [{2}]"}, 76 {"Configuration Error:\n\tLine line: expected [expect]", 77 "Error de configuraci\u00f3n:\n\tL\u00ednea {0}: se esperaba [{1}]"}, 78 {"Configuration Error:\n\tLine line: system property [value] expanded to empty value", 79 "Error de configuraci\u00f3n:\n\tL\u00ednea {0}: propiedad de sistema [{1}] ampliada a valor vac\u00edo"}, 80 81 // com.sun.security.auth.module.JndiLoginModule 82 {"username: ","nombre de usuario: "}, 83 {"password: ","contrase\u00f1a: "}, 84 85 // com.sun.security.auth.module.KeyStoreLoginModule 86 {"Please enter keystore information", 87 "Introduzca la informaci\u00f3n del almac\u00e9n de claves"}, 88 {"Keystore alias: ","Alias de almac\u00e9n de claves: "}, 89 {"Keystore password: ","Contrase\u00f1a de almac\u00e9n de claves: "}, 90 {"Private key password (optional): ", 91 "Contrase\u00f1a de clave privada (opcional): "}, 92 93 // com.sun.security.auth.module.Krb5LoginModule 94 {"Kerberos username [[defUsername]]: ", 95 "Nombre de usuario de Kerberos [{0}]: "}, 96 {"Kerberos password for [username]: ", 97 "Contrase\u00f1a de Kerberos de {0}: "}, 98 99 /*** EVERYTHING BELOW IS DEPRECATED ***/ 100 101 // com.sun.security.auth.PolicyFile 102 {": error parsing ", ": error de an\u00e1lisis "}, 103 {": ", ": "}, 104 {": error adding Permission ", ": error al agregar Permiso "}, 105 {" ", " "}, 106 {": error adding Entry ", ": error al agregar Entrada "}, 107 {"(", "("}, 108 {")", ")"}, 109 {"attempt to add a Permission to a readonly PermissionCollection", 110 "se ha intentado agregar un Permiso a una Colecci\u00f3n de permisos de s\u00f3lo lectura"}, 111 112 // com.sun.security.auth.PolicyParser 113 {"expected keystore type", "se esperaba un tipo de almac\u00e9n de claves"}, 114 {"can not specify Principal with a ", 115 "no se puede especificar Principal con una "}, 116 {"wildcard class without a wildcard name", 117 "clase comod\u00edn sin nombre de comod\u00edn"}, 118 {"expected codeBase or SignedBy", "se esperaba base de c\u00f3digos o SignedBy"}, 119 {"only Principal-based grant entries permitted", 120 "s\u00f3lo se permite conceder entradas basadas en Principal"}, 121 {"expected permission entry", "se esperaba un permiso de entrada"}, 122 {"number ", "n\u00famero "}, 123 {"expected ", "se esperaba "}, 124 {", read end of file", ", se ha le\u00eddo final de archivo"}, 125 {"expected ';', read end of file", "se esperaba ';', se ha le\u00eddo final de archivo"}, 126 {"line ", "l\u00ednea "}, 127 {": expected '", ": se esperaba '"}, 128 {"', found '", "', se ha encontrado '"}, 129 {"'", "'"}, 130 131 // SolarisPrincipals 132 {"SolarisNumericGroupPrincipal [Primary Group]: ", 133 "SolarisNumericGroupPrincipal [Grupo principal]: "}, 134 {"SolarisNumericGroupPrincipal [Supplementary Group]: ", 135 "SolarisNumericGroupPrincipal [Grupo adicional]: "}, 136 {"SolarisNumericUserPrincipal: ", 137 "SolarisNumericUserPrincipal: "}, 138 {"SolarisPrincipal: ", "SolarisPrincipal: "}, 139 {"provided null name", "se ha proporcionado un nombre nulo"} 140 141 }; 142 143 /** 144 * Returns the contents of this <code>ResourceBundle</code>. 145 * 146 * <p> 147 * 148 * @return the contents of this <code>ResourceBundle</code>. 149 */ 150 public Object[][] getContents() { 151 return contents; 152 } 153 }