jdk/src/share/classes/sun/security/util/Resources_it.java
author ohair
Wed, 06 Apr 2011 22:06:11 -0700
changeset 9035 1255eb81cc2f
parent 8203 e5debcae2183
child 9571 1179f805f359
permissions -rw-r--r--
7033660: Update copyright year to 2011 on any files changed in 2011 Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 8203
diff changeset
     2
 * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * <p> This class represents the <code>ResourceBundle</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * for javax.security.auth and sun.security.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
public class Resources_it extends java.util.ListResourceBundle {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
    private static final Object[][] contents = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
        // shared (from jarsigner)
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    38
        {"SPACE", " "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    39
        {"2SPACE", "  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    40
        {"6SPACE", "      "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    41
        {"COMMA", ", "},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        // shared (from keytool)
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    43
        {"NEWLINE", "\n"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    44
        {"STAR",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
                "*******************************************"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    46
        {"STARNN",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
                "*******************************************\n\n"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    49
        // keytool: Help part
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    50
        {".OPTION.", " [OPTION]..."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    51
        {"Options.", "Opzioni:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    52
        {"Use.keytool.help.for.all.available.commands",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    53
                 "Utilizzare \"keytool -help\" per visualizzare tutti i comandi disponibili"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    54
        {"Key.and.Certificate.Management.Tool",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    55
                 "Strumento di gestione di chiavi e certificati"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    56
        {"Commands.", "Comandi:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    57
        {"Use.keytool.command.name.help.for.usage.of.command.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    58
                "Utilizzare \"keytool -command_name -help\" per informazioni sull'uso di command_name"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    59
        // keytool: help: commands
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    60
        {"Generates.a.certificate.request",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    61
                "Genera una richiesta di certificato"}, //-certreq
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    62
        {"Changes.an.entry.s.alias",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    63
                "Modifica l'alias di una voce"}, //-changealias
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    64
        {"Deletes.an.entry",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    65
                "Elimina una voce"}, //-delete
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    66
        {"Exports.certificate",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    67
                "Esporta il certificato"}, //-exportcert
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    68
        {"Generates.a.key.pair",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    69
                "Genera una coppia di chiavi"}, //-genkeypair
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    70
        {"Generates.a.secret.key",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    71
                "Genera una chiave segreta"}, //-genseckey
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    72
        {"Generates.certificate.from.a.certificate.request",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    73
                "Genera un certificato da una richiesta di certificato"}, //-gencert
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    74
        {"Generates.CRL", "Genera CRL"}, //-gencrl
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    75
        {"Imports.entries.from.a.JDK.1.1.x.style.identity.database",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    76
                "Importa le voci da un database delle identit\u00E0 di tipo JDK 1.1.x"}, //-identitydb
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    77
        {"Imports.a.certificate.or.a.certificate.chain",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    78
                "Importa un certificato o una catena di certificati"}, //-importcert
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    79
        {"Imports.one.or.all.entries.from.another.keystore",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    80
                "Importa una o tutte le voci da un altro keystore"}, //-importkeystore
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    81
        {"Clones.a.key.entry",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    82
                "Duplica una voce di chiave"}, //-keyclone
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    83
        {"Changes.the.key.password.of.an.entry",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    84
                "Modifica la password della chiave per una voce"}, //-keypasswd
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    85
        {"Lists.entries.in.a.keystore",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    86
                "Elenca le voci in un keystore"}, //-list
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    87
        {"Prints.the.content.of.a.certificate",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    88
                "Visualizza i contenuti di un certificato"}, //-printcert
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    89
        {"Prints.the.content.of.a.certificate.request",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    90
                "Visualizza i contenuti di una richiesta di certificato"}, //-printcertreq
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    91
        {"Prints.the.content.of.a.CRL.file",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    92
                "Visualizza i contenuti di un file CRL"}, //-printcrl
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    93
        {"Generates.a.self.signed.certificate",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    94
                "Genera certificato con firma automatica"}, //-selfcert
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    95
        {"Changes.the.store.password.of.a.keystore",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    96
                "Modifica la password di area di memorizzazione di un keystore"}, //-storepasswd
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    97
        // keytool: help: options
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    98
        {"alias.name.of.the.entry.to.process",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    99
                "nome alias della voce da elaborare"}, //-alias
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   100
        {"destination.alias",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   101
                "alias di destinazione"}, //-destalias
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   102
        {"destination.key.password",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   103
                "password chiave di destinazione"}, //-destkeypass
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   104
        {"destination.keystore.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   105
                "nome keystore di destinazione"}, //-destkeystore
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   106
        {"destination.keystore.password.protected",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   107
                "password keystore di destinazione protetta"}, //-destprotected
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   108
        {"destination.keystore.provider.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   109
                "nome provider keystore di destinazione"}, //-destprovidername
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   110
        {"destination.keystore.password",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   111
                "password keystore di destinazione"}, //-deststorepass
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   112
        {"destination.keystore.type",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   113
                "tipo keystore di destinazione"}, //-deststoretype
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   114
        {"distinguished.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   115
                "nome distinto"}, //-dname
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   116
        {"X.509.extension",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   117
                "estensione X.509"}, //-ext
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   118
        {"output.file.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   119
                "nome file di output"}, //-file and -outfile
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   120
        {"input.file.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   121
                "nome file di input"}, //-file and -infile
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   122
        {"key.algorithm.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   123
                "nome algoritmo chiave"}, //-keyalg
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   124
        {"key.password",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   125
                "password chiave"}, //-keypass
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   126
        {"key.bit.size",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   127
                "dimensione bit chiave"}, //-keysize
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   128
        {"keystore.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   129
                "nome keystore"}, //-keystore
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   130
        {"new.password",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   131
                "nuova password"}, //-new
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   132
        {"do.not.prompt",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   133
                "non richiedere"}, //-noprompt
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   134
        {"password.through.protected.mechanism",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   135
                "password mediante meccanismo protetto"}, //-protected
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   136
        {"provider.argument",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   137
                "argomento provider"}, //-providerarg
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   138
        {"provider.class.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   139
                "nome classe provider"}, //-providerclass
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   140
        {"provider.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   141
                "nome provider"}, //-providername
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   142
        {"provider.classpath",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   143
                "classpath provider"}, //-providerpath
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   144
        {"output.in.RFC.style",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   145
                "output in stile RFC"}, //-rfc
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   146
        {"signature.algorithm.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   147
                "nome algoritmo firma"}, //-sigalg
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   148
        {"source.alias",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   149
                "alias origine"}, //-srcalias
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   150
        {"source.key.password",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   151
                "password chiave di origine"}, //-srckeypass
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   152
        {"source.keystore.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   153
                "nome keystore di origine"}, //-srckeystore
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   154
        {"source.keystore.password.protected",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   155
                "password keystore di origine protetta"}, //-srcprotected
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   156
        {"source.keystore.provider.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   157
                "nome provider keystore di origine"}, //-srcprovidername
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   158
        {"source.keystore.password",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   159
                "password keystore di origine"}, //-srcstorepass
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   160
        {"source.keystore.type",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   161
                "tipo keystore di origine"}, //-srcstoretype
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   162
        {"SSL.server.host.and.port",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   163
                "host e porta server SSL"}, //-sslserver
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   164
        {"signed.jar.file",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   165
                "file jar firmato"}, //=jarfile
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   166
        {"certificate.validity.start.date.time",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   167
                "data/ora di inizio validit\u00E0 certificato"}, //-startdate
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   168
        {"keystore.password",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   169
                "password keystore"}, //-storepass
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   170
        {"keystore.type",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   171
                "tipo keystore"}, //-storetype
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   172
        {"trust.certificates.from.cacerts",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   173
                "considera sicuri i certificati da cacerts"}, //-trustcacerts
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   174
        {"verbose.output",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   175
                "output descrittivo"}, //-v
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   176
        {"validity.number.of.days",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   177
                "numero di giorni di validit\u00E0"}, //-validity
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   178
        {"Serial.ID.of.cert.to.revoke",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   179
                 "ID seriale del certificato da revocare"}, //-id
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   180
        // keytool: Running part
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   181
        {"keytool.error.", "Errore keytool: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   182
        {"Illegal.option.", "Opzione non valida:  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   183
        {"Illegal.value.", "Valore non valido: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   184
        {"Unknown.password.type.", "Tipo di password sconosciuto: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   185
        {"Cannot.find.environment.variable.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   186
                "Impossibile trovare la variabile di ambiente: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   187
        {"Cannot.find.file.", "Impossibile trovare il file: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   188
        {"Command.option.flag.needs.an.argument.", "\u00C8 necessario specificare un argomento per l''opzione di comando {0}."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   189
        {"Warning.Different.store.and.key.passwords.not.supported.for.PKCS12.KeyStores.Ignoring.user.specified.command.value.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   190
                "Avvertenza: non sono supportate password diverse di chiave e di archivio per i keystore PKCS12. Il valore {0} specificato dall''utente verr\u00E0 ignorato."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   191
        {".keystore.must.be.NONE.if.storetype.is.{0}",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   192
                "Se -storetype \u00E8 impostato su {0}, -keystore deve essere impostato su NONE"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   193
        {"Too.many.retries.program.terminated",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   194
                 "Il numero dei tentativi consentiti \u00E8 stato superato. Il programma verr\u00E0 terminato."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   195
        {".storepasswd.and.keypasswd.commands.not.supported.if.storetype.is.{0}",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   196
                "Se -storetype \u00E8 impostato su {0}, i comandi -storepasswd e -keypasswd non sono supportati"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   197
        {".keypasswd.commands.not.supported.if.storetype.is.PKCS12",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   198
                "Se -storetype \u00E8 impostato su PKCS12 i comandi -keypasswd non vengono supportati"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   199
        {".keypass.and.new.can.not.be.specified.if.storetype.is.{0}",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   200
                "Se -storetype \u00E8 impostato su {0}, non \u00E8 possibile specificare un valore per -keypass e -new"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   201
        {"if.protected.is.specified.then.storepass.keypass.and.new.must.not.be.specified",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   202
                "Se \u00E8 specificata l'opzione -protected, le opzioni -storepass, -keypass e -new non possono essere specificate"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   203
        {"if.srcprotected.is.specified.then.srcstorepass.and.srckeypass.must.not.be.specified",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                "Se viene specificato -srcprotected, -srcstorepass e -srckeypass non dovranno essere specificati"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   205
        {"if.keystore.is.not.password.protected.then.storepass.keypass.and.new.must.not.be.specified",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   206
                "Se il file keystore non \u00E8 protetto da password, non deve essere specificato alcun valore per -storepass, -keypass e -new"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   207
        {"if.source.keystore.is.not.password.protected.then.srcstorepass.and.srckeypass.must.not.be.specified",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   208
                "Se il file keystore non \u00E8 protetto da password, non deve essere specificato alcun valore per -srcstorepass e -srckeypass"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   209
        {"Illegal.startdate.value", "Valore di data di inizio non valido"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   210
        {"Validity.must.be.greater.than.zero",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   211
                "La validit\u00E0 deve essere maggiore di zero"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   212
        {"provName.not.a.provider", "{0} non \u00E8 un provider"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   213
        {"Usage.error.no.command.provided", "Errore di utilizzo: nessun comando specificato"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   214
        {"Source.keystore.file.exists.but.is.empty.", "Il file keystore di origine esiste, ma \u00E8 vuoto: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   215
        {"Please.specify.srckeystore", "Specificare -srckeystore"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   216
        {"Must.not.specify.both.v.and.rfc.with.list.command",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                "Impossibile specificare sia -v sia -rfc con il comando 'list'"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   218
        {"Key.password.must.be.at.least.6.characters",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
                "La password della chiave deve contenere almeno 6 caratteri"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   220
        {"New.password.must.be.at.least.6.characters",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
                "La nuova password deve contenere almeno 6 caratteri"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   222
        {"Keystore.file.exists.but.is.empty.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   223
                "Il file keystore esiste ma \u00E8 vuoto: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   224
        {"Keystore.file.does.not.exist.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                "Il file keystore non esiste: "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   226
        {"Must.specify.destination.alias", "\u00C8 necessario specificare l'alias di destinazione"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   227
        {"Must.specify.alias", "\u00C8 necessario specificare l'alias"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   228
        {"Keystore.password.must.be.at.least.6.characters",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
                "La password del keystore deve contenere almeno 6 caratteri"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   230
        {"Enter.keystore.password.", "Immettere la password del keystore:  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   231
        {"Enter.source.keystore.password.", "Immettere la password del keystore di origine:  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   232
        {"Enter.destination.keystore.password.", "Immettere la password del keystore di destinazione:  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   233
        {"Keystore.password.is.too.short.must.be.at.least.6.characters",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   234
         "La password del keystore \u00E8 troppo corta - deve contenere almeno 6 caratteri"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   235
        {"Unknown.Entry.Type", "Tipo di voce sconosciuto"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   236
        {"Too.many.failures.Alias.not.changed", "Numero eccessivo di errori. L'alias non \u00E8 stato modificato."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   237
        {"Entry.for.alias.alias.successfully.imported.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   238
                 "La voce dell''alias {0} \u00E8 stata importata."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   239
        {"Entry.for.alias.alias.not.imported.", "La voce dell''alias {0} non \u00E8 stata importata."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   240
        {"Problem.importing.entry.for.alias.alias.exception.Entry.for.alias.alias.not.imported.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   241
                 "Si \u00E8 verificato un problema durante l''importazione della voce dell''alias {0}: {1}.\nLa voce dell''alias {0} non \u00E8 stata importata."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   242
        {"Import.command.completed.ok.entries.successfully.imported.fail.entries.failed.or.cancelled",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   243
                 "Comando di importazione completato: {0} voce/i importata/e, {1} voce/i non importata/e o annullata/e"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   244
        {"Warning.Overwriting.existing.alias.alias.in.destination.keystore",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   245
                 "Avvertenza: sovrascrittura in corso dell''alias {0} nel file keystore di destinazione"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   246
        {"Existing.entry.alias.alias.exists.overwrite.no.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   247
                 "La voce dell''alias {0} esiste gi\u00E0. Sovrascrivere? [no]:  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   248
        {"Too.many.failures.try.later", "Troppi errori - riprovare"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   249
        {"Certification.request.stored.in.file.filename.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   250
                "La richiesta di certificazione \u00E8 memorizzata nel file <{0}>"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   251
        {"Submit.this.to.your.CA", "Sottomettere alla propria CA"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   252
        {"if.alias.not.specified.destalias.srckeypass.and.destkeypass.must.not.be.specified",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   253
            "Se l'alias non \u00E8 specificato, destalias, srckeypass e destkeypass non dovranno essere specificati"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   254
        {"Certificate.stored.in.file.filename.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   255
                "Il certificato \u00E8 memorizzato nel file <{0}>"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   256
        {"Certificate.reply.was.installed.in.keystore",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   257
                "La risposta del certificato \u00E8 stata installata nel keystore"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   258
        {"Certificate.reply.was.not.installed.in.keystore",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   259
                "La risposta del certificato non \u00E8 stata installata nel keystore"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   260
        {"Certificate.was.added.to.keystore",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   261
                "Il certificato \u00E8 stato aggiunto al keystore"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   262
        {"Certificate.was.not.added.to.keystore",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   263
                "Il certificato non \u00E8 stato aggiunto al keystore"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   264
        {".Storing.ksfname.", "[Memorizzazione di {0}] in corso"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   265
        {"alias.has.no.public.key.certificate.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
                "{0} non dispone di chiave pubblica (certificato)"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   267
        {"Cannot.derive.signature.algorithm",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
                "Impossibile derivare l'algoritmo di firma"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   269
        {"Alias.alias.does.not.exist",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   270
                "L''alias <{0}> non esiste"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   271
        {"Alias.alias.has.no.certificate",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   272
                "L''alias <{0}> non dispone di certificato"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   273
        {"Key.pair.not.generated.alias.alias.already.exists",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   274
                "Non \u00E8 stata generata la coppia di chiavi, l''alias <{0}> \u00E8 gi\u00E0 esistente"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   275
        {"Generating.keysize.bit.keyAlgName.key.pair.and.self.signed.certificate.sigAlgName.with.a.validity.of.validality.days.for",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   276
                "Generazione in corso di una coppia di chiavi {1} da {0} bit e di un certificato autofirmato ({2}) con una validit\u00E0 di {3} giorni\n\tper: {4}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   277
        {"Enter.key.password.for.alias.", "Immettere la password della chiave per <{0}>"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   278
        {".RETURN.if.same.as.keystore.password.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                "\t(INVIO se corrisponde alla password del keystore):  "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   280
        {"Key.password.is.too.short.must.be.at.least.6.characters",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   281
                "La password della chiave \u00E8 troppo corta - deve contenere almeno 6 caratteri"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   282
        {"Too.many.failures.key.not.added.to.keystore",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   283
                "Troppi errori - la chiave non \u00E8 stata aggiunta al keystore"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   284
        {"Destination.alias.dest.already.exists",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   285
                "L''alias di destinazione <{0}> \u00E8 gi\u00E0 esistente"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   286
        {"Password.is.too.short.must.be.at.least.6.characters",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   287
                "La password \u00E8 troppo corta - deve contenere almeno 6 caratteri"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   288
        {"Too.many.failures.Key.entry.not.cloned",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   289
                "Numero eccessivo di errori. Il valore della chiave non \u00E8 stato copiato."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   290
        {"key.password.for.alias.", "password della chiave per <{0}>"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   291
        {"Keystore.entry.for.id.getName.already.exists",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   292
                "La voce del keystore per <{0}> esiste gi\u00E0"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   293
        {"Creating.keystore.entry.for.id.getName.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   294
                "Creazione della voce del keystore per <{0}> in corso..."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   295
        {"No.entries.from.identity.database.added",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   296
                "Nessuna voce aggiunta dal database delle identit\u00E0"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   297
        {"Alias.name.alias", "Nome alias: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   298
        {"Creation.date.keyStore.getCreationDate.alias.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
                "Data di creazione: {0,date}"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   300
        {"alias.keyStore.getCreationDate.alias.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
                "{0}, {1,date}, "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   302
        {"alias.", "{0}, "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   303
        {"Entry.type.type.", "Tipo di voce: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   304
        {"Certificate.chain.length.", "Lunghezza catena certificati: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   305
        {"Certificate.i.1.", "Certificato[{0,number,integer}]:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   306
        {"Certificate.fingerprint.SHA1.", "Impronta digitale certificato (SHA1): "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   307
        {"Entry.type.trustedCertEntry.", "Tipo di voce: trustedCertEntry\n"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   308
        {"trustedCertEntry.", "trustedCertEntry,"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   309
        {"Keystore.type.", "Tipo keystore: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   310
        {"Keystore.provider.", "Provider keystore: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   311
        {"Your.keystore.contains.keyStore.size.entry",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   312
                "Il keystore contiene {0,number,integer} voce"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   313
        {"Your.keystore.contains.keyStore.size.entries",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   314
                "Il keystore contiene {0,number,integer} voci"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   315
        {"Failed.to.parse.input", "Impossibile analizzare l'input"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   316
        {"Empty.input", "Input vuoto"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   317
        {"Not.X.509.certificate", "Il certificato non \u00E8 X.509"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   318
        {"alias.has.no.public.key", "{0} non dispone di chiave pubblica"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   319
        {"alias.has.no.X.509.certificate", "{0} non dispone di certificato X.509"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   320
        {"New.certificate.self.signed.", "Nuovo certificato (autofirmato):"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   321
        {"Reply.has.no.certificates", "La risposta non dispone di certificati"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   322
        {"Certificate.not.imported.alias.alias.already.exists",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   323
                "Impossibile importare il certificato, l''alias <{0}> \u00E8 gi\u00E0 esistente"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   324
        {"Input.not.an.X.509.certificate", "L'input non \u00E8 un certificato X.509"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   325
        {"Certificate.already.exists.in.keystore.under.alias.trustalias.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   326
                "Il certificato esiste gi\u00E0 nel keystore con alias <{0}>"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   327
        {"Do.you.still.want.to.add.it.no.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
                "Aggiungerlo ugualmente? [no]:  "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   329
        {"Certificate.already.exists.in.system.wide.CA.keystore.under.alias.trustalias.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   330
                "Il certificato esiste gi\u00E0 nel keystore CA con alias <{0}>"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   331
        {"Do.you.still.want.to.add.it.to.your.own.keystore.no.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
                "Aggiungerlo al proprio keystore? [no]:  "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   333
        {"Trust.this.certificate.no.", "Considerare sicuro questo certificato? [no]:  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   334
        {"YES", "S\u00EC"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   335
        {"New.prompt.", "Nuova {0}: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   336
        {"Passwords.must.differ", "Le password non devono coincidere"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   337
        {"Re.enter.new.prompt.", "Reimmettere un nuovo valore per {0}: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   338
        {"Re.enter.new.password.", "Immettere nuovamente la nuova password: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   339
        {"They.don.t.match.Try.again", "Non corrispondono. Riprovare."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   340
        {"Enter.prompt.alias.name.", "Immettere nome alias {0}:  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   341
        {"Enter.new.alias.name.RETURN.to.cancel.import.for.this.entry.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                 "Immettere un nuovo nome alias\t(premere INVIO per annullare l'importazione della voce):  "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   343
        {"Enter.alias.name.", "Immettere nome alias:  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   344
        {".RETURN.if.same.as.for.otherAlias.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                "\t(INVIO se corrisponde al nome di <{0}>"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   346
        {".PATTERN.printX509Cert",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   347
                "Proprietario: {0}\nAutorit\u00E0 emittente: {1}\nNumero di serie: {2}\nValido da: {3} a: {4}\nImpronte digitali certificato:\n\t MD5:  {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t Nome algoritmo firma: {8}\n\t Versione: {9}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   348
        {"What.is.your.first.and.last.name.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
                "Specificare nome e cognome"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   350
        {"What.is.the.name.of.your.organizational.unit.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   351
                "Specificare il nome dell'unit\u00E0 organizzativa"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   352
        {"What.is.the.name.of.your.organization.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   353
                "Specificare il nome dell'organizzazione"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   354
        {"What.is.the.name.of.your.City.or.Locality.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   355
                "Specificare la localit\u00E0"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   356
        {"What.is.the.name.of.your.State.or.Province.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                "Specificare la provincia"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   358
        {"What.is.the.two.letter.country.code.for.this.unit.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   359
                "Specificare il codice a due lettere del paese in cui si trova l'unit\u00E0"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   360
        {"Is.name.correct.", "Il dato {0} \u00E8 corretto?"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        {"no", "no"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   362
        {"yes", "s\u00EC"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        {"y", "s"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   364
        {".defaultValue.", "  [{0}]:  "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   365
        {"Alias.alias.has.no.key",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   366
                "All''alias <{0}> non \u00E8 associata alcuna chiave"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   367
        {"Alias.alias.references.an.entry.type.that.is.not.a.private.key.entry.The.keyclone.command.only.supports.cloning.of.private.key",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   368
                 "L''alias <{0}> fa riferimento a un tipo di voce che non \u00E8 una voce di chiave privata. Il comando -keyclone supporta solo la copia delle voci di chiave private."},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   370
        {".WARNING.WARNING.WARNING.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   371
            "*****************  WARNING WARNING WARNING  *****************"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   372
        {"Signer.d.", "Firmatario #%d:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   373
        {"Timestamp.", "Indicatore orario:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   374
        {"Signature.", "Firma:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   375
        {"CRLs.", "CRL:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   376
        {"Certificate.owner.", "Proprietario certificato: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   377
        {"Not.a.signed.jar.file", "Non \u00E8 un file jar firmato"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   378
        {"No.certificate.from.the.SSL.server",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   379
                "Nessun certificato dal server SSL"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        // Translators of the following 5 pairs, ATTENTION:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        // the next 5 string pairs are meant to be combined into 2 paragraphs,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        // 1+3+4 and 2+3+5. make sure your translation also does.
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   384
        {".The.integrity.of.the.information.stored.in.your.keystore.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   385
            "* L'integrit\u00E0 delle informazioni memorizzate nel keystore    *"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   386
        {".The.integrity.of.the.information.stored.in.the.srckeystore.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   387
            "* L'integrit\u00E0 delle informazioni salvate nel srckeystore*"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   388
        {".has.NOT.been.verified.In.order.to.verify.its.integrity.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   389
            "* NON \u00E8 stata verificata. A tale scopo \u00E8 necessario fornire *"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   390
        {".you.must.provide.your.keystore.password.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
            "* la password del keystore.                                 *"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   392
        {".you.must.provide.the.srckeystore.password.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   393
            "* \u00C8 necessario fornire la password per il srckeystore.                *"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   396
        {"Certificate.reply.does.not.contain.public.key.for.alias.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                "La risposta del certificato non contiene la chiave pubblica per <{0}>"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   398
        {"Incomplete.certificate.chain.in.reply",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                "Catena dei certificati incompleta nella risposta"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   400
        {"Certificate.chain.in.reply.does.not.verify.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
                "La catena dei certificati nella risposta non verifica: "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   402
        {"Top.level.certificate.in.reply.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
                "Certificato di primo livello nella risposta:\n"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   404
        {".is.not.trusted.", "...non \u00E8 considerato sicuro. "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   405
        {"Install.reply.anyway.no.", "Installare la risposta? [no]:  "},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        {"NO", "NO"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   407
        {"Public.keys.in.reply.and.keystore.don.t.match",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                "Le chiavi pubbliche nella risposta e nel keystore non corrispondono"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   409
        {"Certificate.reply.and.certificate.in.keystore.are.identical",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                "La risposta del certificato e il certificato nel keystore sono identici"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   411
        {"Failed.to.establish.chain.from.reply",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
                "Impossibile stabilire la catena dalla risposta"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        {"n", "n"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   414
        {"Wrong.answer.try.again", "Risposta errata, riprovare"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   415
        {"Secret.key.not.generated.alias.alias.already.exists",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   416
                "La chiave segreta non \u00E8 stata generata; l''alias <{0}> esiste gi\u00E0"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   417
        {"Please.provide.keysize.for.secret.key.generation",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
                "Specificare il valore -keysize per la generazione della chiave segreta"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   420
        {"Extensions.", "Estensioni: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   421
        {".Empty.value.", "(valore vuoto)"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   422
        {"Extension.Request.", "Richiesta di estensione:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   423
        {"PKCS.10.Certificate.Request.Version.1.0.Subject.s.Public.Key.s.format.s.key.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   424
                "Richiesta di certificato PKCS #10 (versione 1.0)\nOggetto: %s\nChiave pubblica: %s formato %s chiave\n"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   425
        {"Unknown.keyUsage.type.", "Tipo keyUsage sconosciuto: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   426
        {"Unknown.extendedkeyUsage.type.", "Tipo extendedkeyUsage sconosciuto: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   427
        {"Unknown.AccessDescription.type.", "Tipo AccessDescription sconosciuto: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   428
        {"Unrecognized.GeneralName.type.", "Tipo GeneralName non riconosciuto: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   429
        {"This.extension.cannot.be.marked.as.critical.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   430
                 "Impossibile contrassegnare questa estensione come critica. "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   431
        {"Odd.number.of.hex.digits.found.", "\u00C8 stato trovato un numero dispari di cifre esadecimali: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   432
        {"Unknown.extension.type.", "Tipo di estensione sconosciuto: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   433
        {"command.{0}.is.ambiguous.", "il comando {0} \u00E8 ambiguo:"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        // policytool
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   436
        {"Warning.A.public.key.for.alias.signers.i.does.not.exist.Make.sure.a.KeyStore.is.properly.configured.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   437
                "Avvertenza: non esiste una chiave pubblica per l''alias {0}. Verificare che il keystore sia configurato correttamente."},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   438
        {"Warning.Class.not.found.class", "Avvertenza: classe non trovata: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   439
        {"Warning.Invalid.argument.s.for.constructor.arg",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   440
                "Avvertenza: argomento o argomenti non validi per il costruttore {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   441
        {"Illegal.Principal.Type.type", "Tipo principal non valido: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   442
        {"Illegal.option.option", "Opzione non valida: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   443
        {"Usage.policytool.options.", "Utilizzo: policytool [opzioni]"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   444
        {".file.file.policy.file.location",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   445
                "  [-file <file>]    posizione del file dei criteri"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        {"New", "Nuovo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        {"Open", "Apri"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
        {"Save", "Salva"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   449
        {"Save.As", "Salva con nome"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   450
        {"View.Warning.Log", "Visualizza registro avvertenze"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        {"Exit", "Esci"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   452
        {"Add.Policy.Entry", "Aggiungi voce dei criteri"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   453
        {"Edit.Policy.Entry", "Modifica voce dei criteri"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   454
        {"Remove.Policy.Entry", "Rimuovi voce dei criteri"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        {"Edit", "Modifica"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        {"Retain", "Mantieni"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   458
        {"Warning.File.name.may.include.escaped.backslash.characters.It.is.not.necessary.to.escape.backslash.characters.the.tool.escapes",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   459
            "Avvertenza: il nome file pu\u00F2 includere barre rovesciate con escape. Non \u00E8 necessario eseguire l'escape delle barre rovesciate (se necessario lo strumento esegue l'escape dei caratteri al momento della scrittura del contenuto dei criteri nell'area di memorizzazione persistente).\n\nFare click su Mantieni per conservare il nome immesso, oppure su Modifica per modificare il nome."},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   461
        {"Add.Public.Key.Alias", "Aggiungi alias chiave pubblica"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   462
        {"Remove.Public.Key.Alias", "Rimuovi alias chiave pubblica"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        {"File", "File"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   464
        {"KeyStore", "Keystore"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   465
        {"Policy.File.", "File dei criteri:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   466
        {"Could.not.open.policy.file.policyFile.e.toString.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
                "Impossibile aprire il file di criteri {0}: {1}"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   468
        {"Policy.Tool", "Strumento criteri"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   469
        {"Errors.have.occurred.while.opening.the.policy.configuration.View.the.Warning.Log.for.more.information.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   470
                "Si sono verificati errori durante l'apertura della configurazione dei criteri. Consultare il registro delle avvertenze per ulteriori informazioni."},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        {"Error", "Errore"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
        {"OK", "OK"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        {"Status", "Stato"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   474
        {"Warning", "Avvertenza"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   475
        {"Permission.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   476
                "Autorizzazione:                                                       "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   477
        {"Principal.Type.", "Tipo principal:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   478
        {"Principal.Name.", "Nome principal:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   479
        {"Target.Name.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   480
                "Nome destinazione:                                                    "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   481
        {"Actions.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
                "Azioni:                                                             "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   483
        {"OK.to.overwrite.existing.file.filename.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
                "OK per sovrascrivere il file {0}?"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        {"Cancel", "Annulla"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   486
        {"CodeBase.", "CodeBase:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   487
        {"SignedBy.", "SignedBy:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   488
        {"Add.Principal", "Aggiungi principal"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   489
        {"Edit.Principal", "Modifica principal"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   490
        {"Remove.Principal", "Rimuovi principal"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   491
        {"Principals.", "Principal:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   492
        {".Add.Permission", "  Aggiungi autorizzazione"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   493
        {".Edit.Permission", "  Modifica autorizzazione"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   494
        {"Remove.Permission", "Rimuovi autorizzazione"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
        {"Done", "Fine"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   496
        {"KeyStore.URL.", "URL keystore:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   497
        {"KeyStore.Type.", "Tipo keystore:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   498
        {"KeyStore.Provider.", "Provider keystore:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   499
        {"KeyStore.Password.URL.", "URL password keystore:"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        {"Principals", "Principal:"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   501
        {".Edit.Principal.", "  Modifica principal:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   502
        {".Add.New.Principal.", "  Aggiungi nuovo principal:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   503
        {"Permissions", "Autorizzazioni"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   504
        {".Edit.Permission.", "  Modifica autorizzazione:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   505
        {".Add.New.Permission.", "  Aggiungi nuova autorizzazione:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   506
        {"Signed.By.", "Firmato da:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   507
        {"Cannot.Specify.Principal.with.a.Wildcard.Class.without.a.Wildcard.Name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   508
            "Impossibile specificare principal con una classe carattere jolly senza un nome carattere jolly"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   509
        {"Cannot.Specify.Principal.without.a.Name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   510
            "Impossibile specificare principal senza un nome"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   511
        {"Permission.and.Target.Name.must.have.a.value",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   512
                "L'autorizzazione e il nome destinazione non possono essere nulli"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   513
        {"Remove.this.Policy.Entry.", "Rimuovere questa voce dei criteri?"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   514
        {"Overwrite.File", "Sovrascrivi file"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   515
        {"Policy.successfully.written.to.filename",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   516
                "I criteri sono stati scritti in {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   517
        {"null.filename", "nome file nullo"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   518
        {"Save.changes.", "Salvare le modifiche?"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   519
        {"Yes", "S\u00EC"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
        {"No", "No"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   521
        {"Policy.Entry", "Voce dei criteri"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   522
        {"Save.Changes", "Salva le modifiche"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   523
        {"No.Policy.Entry.selected", "Nessuna voce dei criteri selezionata"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   524
        {"Unable.to.open.KeyStore.ex.toString.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   525
                "Impossibile aprire il keystore: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   526
        {"No.principal.selected", "Nessun principal selezionato"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   527
        {"No.permission.selected", "Nessuna autorizzazione selezionata"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
        {"name", "nome"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   529
        {"configuration.type", "tipo di configurazione"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   530
        {"environment.variable.name", "nome variabile ambiente"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   531
        {"library.name", "nome libreria"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   532
        {"package.name", "nome package"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   533
        {"policy.type", "tipo di criteri"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   534
        {"property.name", "nome propriet\u00E0"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   535
        {"Principal.List", "Lista principal"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   536
        {"Permission.List", "Lista autorizzazioni"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   537
        {"Code.Base", "Codebase"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   538
        {"KeyStore.U.R.L.", "URL keystore:"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   539
        {"KeyStore.Password.U.R.L.", "URL password keystore:"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        // javax.security.auth.PrivateCredentialPermission
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   543
        {"invalid.null.input.s.", "input nullo/i non valido/i"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   544
        {"actions.can.only.be.read.", "le azioni possono essere solamente 'lette'"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   545
        {"permission.name.name.syntax.invalid.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   546
                "sintassi [{0}] non valida per il nome autorizzazione: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   547
        {"Credential.Class.not.followed.by.a.Principal.Class.and.Name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   548
                "la classe di credenziali non \u00E8 seguita da un nome e una classe di principal"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   549
        {"Principal.Class.not.followed.by.a.Principal.Name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   550
                "la classe di principal non \u00E8 seguita da un nome principal"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   551
        {"Principal.Name.must.be.surrounded.by.quotes",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   552
                "il nome principal deve essere compreso tra apici"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   553
        {"Principal.Name.missing.end.quote",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   554
                "apice di chiusura del nome principal mancante"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   555
        {"PrivateCredentialPermission.Principal.Class.can.not.be.a.wildcard.value.if.Principal.Name.is.not.a.wildcard.value",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   556
                "la classe principal PrivateCredentialPermission non pu\u00F2 essere un valore carattere jolly (*) se il nome principal a sua volta non \u00E8 un valore carattere jolly (*)"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   557
        {"CredOwner.Principal.Class.class.Principal.Name.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   558
                "CredOwner:\n\tclasse Principal = {0}\n\tNome Principal = {1}"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        // javax.security.auth.x500
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   561
        {"provided.null.name", "il nome fornito \u00E8 nullo"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   562
        {"provided.null.keyword.map", "specificata mappa parole chiave null"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   563
        {"provided.null.OID.map", "specificata mappa OID null"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        // javax.security.auth.Subject
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   566
        {"invalid.null.AccessControlContext.provided",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                "fornito un valore nullo non valido per AccessControlContext"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   568
        {"invalid.null.action.provided", "fornita un'azione nulla non valida"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   569
        {"invalid.null.Class.provided", "fornita una classe nulla non valida"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   570
        {"Subject.", "Oggetto:\n"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   571
        {".Principal.", "\tPrincipal: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   572
        {".Public.Credential.", "\tCredenziale pubblica: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   573
        {".Private.Credentials.inaccessible.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
                "\tImpossibile accedere alle credenziali private\n"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   575
        {".Private.Credential.", "\tCredenziale privata: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   576
        {".Private.Credential.inaccessible.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
                "\tImpossibile accedere alla credenziale privata\n"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   578
        {"Subject.is.read.only", "L'oggetto \u00E8 di sola lettura"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   579
        {"attempting.to.add.an.object.which.is.not.an.instance.of.java.security.Principal.to.a.Subject.s.Principal.Set",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   580
                "si \u00E8 tentato di aggiungere un oggetto che non \u00E8 un'istanza di java.security.Principal a un set principal dell'oggetto"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   581
        {"attempting.to.add.an.object.which.is.not.an.instance.of.class",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   582
                "si \u00E8 tentato di aggiungere un oggetto che non \u00E8 un''istanza di {0}"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        // javax.security.auth.login.AppConfigurationEntry
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   585
        {"LoginModuleControlFlag.", "LoginModuleControlFlag: "},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        // javax.security.auth.login.LoginContext
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   588
        {"Invalid.null.input.name", "Input nullo non valido: nome"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   589
        {"No.LoginModules.configured.for.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   590
         "Nessun LoginModules configurato per {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   591
        {"invalid.null.Subject.provided", "fornito un valore nullo non valido per l'oggetto"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   592
        {"invalid.null.CallbackHandler.provided",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
                "fornito un valore nullo non valido per CallbackHandler"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   594
        {"null.subject.logout.called.before.login",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   595
                "oggetto nullo - il logout \u00E8 stato richiamato prima del login"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   596
        {"unable.to.instantiate.LoginModule.module.because.it.does.not.provide.a.no.argument.constructor",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   597
                "impossibile creare un''istanza di LoginModule {0} in quanto non restituisce un argomento vuoto per il costruttore"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   598
        {"unable.to.instantiate.LoginModule",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   599
                "impossibile creare un'istanza di LoginModule"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   600
        {"unable.to.instantiate.LoginModule.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   601
                "impossibile creare un'istanza di LoginModule: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   602
        {"unable.to.find.LoginModule.class.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
                "impossibile trovare la classe LoginModule: "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   604
        {"unable.to.access.LoginModule.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                "impossibile accedere a LoginModule "},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   606
        {"Login.Failure.all.modules.ignored",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
                "Errore di login: tutti i moduli sono stati ignorati"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        // sun.security.provider.PolicyFile
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   611
        {"java.security.policy.error.parsing.policy.message",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   612
                "java.security.policy: errore durante l''analisi di {0}:\n\t{1}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   613
        {"java.security.policy.error.adding.Permission.perm.message",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   614
                "java.security.policy: errore durante l''aggiunta dell''autorizzazione {0}:\n\t{1}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   615
        {"java.security.policy.error.adding.Entry.message",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   616
                "java.security.policy: errore durante l''aggiunta della voce:\n\t{0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   617
        {"alias.name.not.provided.pe.name.", "impossibile fornire nome alias ({0})"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   618
        {"unable.to.perform.substitution.on.alias.suffix",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                "impossibile eseguire una sostituzione sull''alias, {0}"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   620
        {"substitution.value.prefix.unsupported",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                "valore sostituzione, {0}, non supportato"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   622
        {"LPARAM", "("},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   623
        {"RPARAM", ")"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   624
        {"type.can.t.be.null","il tipo non pu\u00F2 essere nullo"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
        // sun.security.provider.PolicyParser
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   627
        {"keystorePasswordURL.can.not.be.specified.without.also.specifying.keystore",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                "Impossibile specificare keystorePasswordURL senza specificare anche il keystore"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   629
        {"expected.keystore.type", "tipo keystore previsto"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   630
        {"expected.keystore.provider", "provider di keystore previsto"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   631
        {"multiple.Codebase.expressions",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                "espressioni Codebase multiple"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   633
        {"multiple.SignedBy.expressions","espressioni SignedBy multiple"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   634
        {"SignedBy.has.empty.alias","SignedBy presenta un alias vuoto"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   635
        {"can.not.specify.Principal.with.a.wildcard.class.without.a.wildcard.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   636
                "impossibile specificare un principal con una classe carattere jolly senza un nome carattere jolly"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   637
        {"expected.codeBase.or.SignedBy.or.Principal",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   638
                "previsto codeBase o SignedBy o principal"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   639
        {"expected.permission.entry", "prevista voce di autorizzazione"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   640
        {"number.", "numero "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   641
        {"expected.expect.read.end.of.file.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
                "previsto [{0}], letto [end of file]"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   643
        {"expected.read.end.of.file.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
                "previsto [;], letto [end of file]"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   645
        {"line.number.msg", "riga {0}: {1}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   646
        {"line.number.expected.expect.found.actual.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
                "riga {0}: previsto [{1}], trovato [{2}]"},
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   648
        {"null.principalClass.or.principalName",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                "principalClass o principalName nullo"},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        // sun.security.pkcs11.SunPKCS11
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   652
        {"PKCS11.Token.providerName.Password.",
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
                "Password per token PKCS11 [{0}]: "},
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        /* --- DEPRECATED --- */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
        // javax.security.auth.Policy
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   657
        {"unable.to.instantiate.Subject.based.policy",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   658
                "impossibile creare un'istanza dei criteri basati sull'oggetto"}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
     * Returns the contents of this <code>ResourceBundle</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * @return the contents of this <code>ResourceBundle</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
    public Object[][] getContents() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        return contents;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
}
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
   673