jdk/src/share/classes/sun/security/tools/keytool/Resources.java
author weijun
Thu, 28 Mar 2013 20:27:53 +0800
changeset 16720 0e7e9e6ed98a
parent 14182 3041082abb40
child 20516 fa2edce67c48
permissions -rw-r--r--
8010125: keytool -importkeystore could create a pkcs12 keystore with different storepass and keypass Reviewed-by: vinnie
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14182
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
     1
/*
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
     2
 * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
     4
 *
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    10
 *
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    15
 * accompanied this code).
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    16
 *
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    20
 *
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    23
 * questions.
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    24
 */
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    25
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    26
package sun.security.tools.keytool;
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    27
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    28
/**
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    29
 * <p> This class represents the <code>ResourceBundle</code>
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    30
 * for the keytool.
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    31
 *
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    32
 */
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    33
public class Resources extends java.util.ListResourceBundle {
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    34
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    35
    private static final Object[][] contents = {
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    36
        {"NEWLINE", "\n"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    37
        {"STAR",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    38
                "*******************************************"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    39
        {"STARNN",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    40
                "*******************************************\n\n"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    41
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    42
        // keytool: Help part
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    43
        {".OPTION.", " [OPTION]..."},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    44
        {"Options.", "Options:"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    45
        {"Use.keytool.help.for.all.available.commands",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    46
                 "Use \"keytool -help\" for all available commands"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    47
        {"Key.and.Certificate.Management.Tool",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    48
                 "Key and Certificate Management Tool"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    49
        {"Commands.", "Commands:"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    50
        {"Use.keytool.command.name.help.for.usage.of.command.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    51
                "Use \"keytool -command_name -help\" for usage of command_name"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    52
        // keytool: help: commands
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    53
        {"Generates.a.certificate.request",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    54
                "Generates a certificate request"}, //-certreq
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    55
        {"Changes.an.entry.s.alias",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    56
                "Changes an entry's alias"}, //-changealias
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    57
        {"Deletes.an.entry",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    58
                "Deletes an entry"}, //-delete
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    59
        {"Exports.certificate",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    60
                "Exports certificate"}, //-exportcert
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    61
        {"Generates.a.key.pair",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    62
                "Generates a key pair"}, //-genkeypair
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    63
        {"Generates.a.secret.key",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    64
                "Generates a secret key"}, //-genseckey
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    65
        {"Generates.certificate.from.a.certificate.request",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    66
                "Generates certificate from a certificate request"}, //-gencert
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    67
        {"Generates.CRL", "Generates CRL"}, //-gencrl
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    68
        {"Imports.entries.from.a.JDK.1.1.x.style.identity.database",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    69
                "Imports entries from a JDK 1.1.x-style identity database"}, //-identitydb
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    70
        {"Imports.a.certificate.or.a.certificate.chain",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    71
                "Imports a certificate or a certificate chain"}, //-importcert
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    72
        {"Imports.one.or.all.entries.from.another.keystore",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    73
                "Imports one or all entries from another keystore"}, //-importkeystore
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    74
        {"Clones.a.key.entry",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    75
                "Clones a key entry"}, //-keyclone
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    76
        {"Changes.the.key.password.of.an.entry",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    77
                "Changes the key password of an entry"}, //-keypasswd
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    78
        {"Lists.entries.in.a.keystore",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    79
                "Lists entries in a keystore"}, //-list
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    80
        {"Prints.the.content.of.a.certificate",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    81
                "Prints the content of a certificate"}, //-printcert
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    82
        {"Prints.the.content.of.a.certificate.request",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    83
                "Prints the content of a certificate request"}, //-printcertreq
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    84
        {"Prints.the.content.of.a.CRL.file",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    85
                "Prints the content of a CRL file"}, //-printcrl
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    86
        {"Generates.a.self.signed.certificate",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    87
                "Generates a self-signed certificate"}, //-selfcert
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    88
        {"Changes.the.store.password.of.a.keystore",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    89
                "Changes the store password of a keystore"}, //-storepasswd
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    90
        // keytool: help: options
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    91
        {"alias.name.of.the.entry.to.process",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    92
                "alias name of the entry to process"}, //-alias
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    93
        {"destination.alias",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    94
                "destination alias"}, //-destalias
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    95
        {"destination.key.password",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    96
                "destination key password"}, //-destkeypass
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    97
        {"destination.keystore.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    98
                "destination keystore name"}, //-destkeystore
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
    99
        {"destination.keystore.password.protected",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   100
                "destination keystore password protected"}, //-destprotected
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   101
        {"destination.keystore.provider.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   102
                "destination keystore provider name"}, //-destprovidername
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   103
        {"destination.keystore.password",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   104
                "destination keystore password"}, //-deststorepass
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   105
        {"destination.keystore.type",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   106
                "destination keystore type"}, //-deststoretype
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   107
        {"distinguished.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   108
                "distinguished name"}, //-dname
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   109
        {"X.509.extension",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   110
                "X.509 extension"}, //-ext
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   111
        {"output.file.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   112
                "output file name"}, //-file and -outfile
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   113
        {"input.file.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   114
                "input file name"}, //-file and -infile
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   115
        {"key.algorithm.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   116
                "key algorithm name"}, //-keyalg
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   117
        {"key.password",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   118
                "key password"}, //-keypass
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   119
        {"key.bit.size",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   120
                "key bit size"}, //-keysize
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   121
        {"keystore.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   122
                "keystore name"}, //-keystore
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   123
        {"new.password",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   124
                "new password"}, //-new
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   125
        {"do.not.prompt",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   126
                "do not prompt"}, //-noprompt
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   127
        {"password.through.protected.mechanism",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   128
                "password through protected mechanism"}, //-protected
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   129
        {"provider.argument",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   130
                "provider argument"}, //-providerarg
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   131
        {"provider.class.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   132
                "provider class name"}, //-providerclass
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   133
        {"provider.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   134
                "provider name"}, //-providername
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   135
        {"provider.classpath",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   136
                "provider classpath"}, //-providerpath
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   137
        {"output.in.RFC.style",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   138
                "output in RFC style"}, //-rfc
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   139
        {"signature.algorithm.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   140
                "signature algorithm name"}, //-sigalg
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   141
        {"source.alias",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   142
                "source alias"}, //-srcalias
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   143
        {"source.key.password",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   144
                "source key password"}, //-srckeypass
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   145
        {"source.keystore.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   146
                "source keystore name"}, //-srckeystore
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   147
        {"source.keystore.password.protected",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   148
                "source keystore password protected"}, //-srcprotected
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   149
        {"source.keystore.provider.name",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   150
                "source keystore provider name"}, //-srcprovidername
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   151
        {"source.keystore.password",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   152
                "source keystore password"}, //-srcstorepass
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   153
        {"source.keystore.type",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   154
                "source keystore type"}, //-srcstoretype
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   155
        {"SSL.server.host.and.port",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   156
                "SSL server host and port"}, //-sslserver
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   157
        {"signed.jar.file",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   158
                "signed jar file"}, //=jarfile
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   159
        {"certificate.validity.start.date.time",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   160
                "certificate validity start date/time"}, //-startdate
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   161
        {"keystore.password",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   162
                "keystore password"}, //-storepass
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   163
        {"keystore.type",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   164
                "keystore type"}, //-storetype
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   165
        {"trust.certificates.from.cacerts",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   166
                "trust certificates from cacerts"}, //-trustcacerts
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   167
        {"verbose.output",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   168
                "verbose output"}, //-v
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   169
        {"validity.number.of.days",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   170
                "validity number of days"}, //-validity
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   171
        {"Serial.ID.of.cert.to.revoke",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   172
                 "Serial ID of cert to revoke"}, //-id
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   173
        // keytool: Running part
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   174
        {"keytool.error.", "keytool error: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   175
        {"Illegal.option.", "Illegal option:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   176
        {"Illegal.value.", "Illegal value: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   177
        {"Unknown.password.type.", "Unknown password type: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   178
        {"Cannot.find.environment.variable.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   179
                "Cannot find environment variable: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   180
        {"Cannot.find.file.", "Cannot find file: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   181
        {"Command.option.flag.needs.an.argument.", "Command option {0} needs an argument."},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   182
        {"Warning.Different.store.and.key.passwords.not.supported.for.PKCS12.KeyStores.Ignoring.user.specified.command.value.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   183
                "Warning:  Different store and key passwords not supported for PKCS12 KeyStores. Ignoring user-specified {0} value."},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   184
        {".keystore.must.be.NONE.if.storetype.is.{0}",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   185
                "-keystore must be NONE if -storetype is {0}"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   186
        {"Too.many.retries.program.terminated",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   187
                 "Too many retries, program terminated"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   188
        {".storepasswd.and.keypasswd.commands.not.supported.if.storetype.is.{0}",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   189
                "-storepasswd and -keypasswd commands not supported if -storetype is {0}"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   190
        {".keypasswd.commands.not.supported.if.storetype.is.PKCS12",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   191
                "-keypasswd commands not supported if -storetype is PKCS12"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   192
        {".keypass.and.new.can.not.be.specified.if.storetype.is.{0}",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   193
                "-keypass and -new can not be specified if -storetype is {0}"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   194
        {"if.protected.is.specified.then.storepass.keypass.and.new.must.not.be.specified",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   195
                "if -protected is specified, then -storepass, -keypass, and -new must not be specified"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   196
        {"if.srcprotected.is.specified.then.srcstorepass.and.srckeypass.must.not.be.specified",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   197
                "if -srcprotected is specified, then -srcstorepass and -srckeypass must not be specified"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   198
        {"if.keystore.is.not.password.protected.then.storepass.keypass.and.new.must.not.be.specified",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   199
                "if keystore is not password protected, then -storepass, -keypass, and -new must not be specified"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   200
        {"if.source.keystore.is.not.password.protected.then.srcstorepass.and.srckeypass.must.not.be.specified",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   201
                "if source keystore is not password protected, then -srcstorepass and -srckeypass must not be specified"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   202
        {"Illegal.startdate.value", "Illegal startdate value"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   203
        {"Validity.must.be.greater.than.zero",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   204
                "Validity must be greater than zero"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   205
        {"provName.not.a.provider", "{0} not a provider"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   206
        {"Usage.error.no.command.provided", "Usage error: no command provided"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   207
        {"Source.keystore.file.exists.but.is.empty.", "Source keystore file exists, but is empty: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   208
        {"Please.specify.srckeystore", "Please specify -srckeystore"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   209
        {"Must.not.specify.both.v.and.rfc.with.list.command",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   210
                "Must not specify both -v and -rfc with 'list' command"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   211
        {"Key.password.must.be.at.least.6.characters",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   212
                "Key password must be at least 6 characters"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   213
        {"New.password.must.be.at.least.6.characters",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   214
                "New password must be at least 6 characters"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   215
        {"Keystore.file.exists.but.is.empty.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   216
                "Keystore file exists, but is empty: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   217
        {"Keystore.file.does.not.exist.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   218
                "Keystore file does not exist: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   219
        {"Must.specify.destination.alias", "Must specify destination alias"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   220
        {"Must.specify.alias", "Must specify alias"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   221
        {"Keystore.password.must.be.at.least.6.characters",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   222
                "Keystore password must be at least 6 characters"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   223
        {"Enter.keystore.password.", "Enter keystore password:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   224
        {"Enter.source.keystore.password.", "Enter source keystore password:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   225
        {"Enter.destination.keystore.password.", "Enter destination keystore password:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   226
        {"Keystore.password.is.too.short.must.be.at.least.6.characters",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   227
         "Keystore password is too short - must be at least 6 characters"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   228
        {"Unknown.Entry.Type", "Unknown Entry Type"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   229
        {"Too.many.failures.Alias.not.changed", "Too many failures. Alias not changed"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   230
        {"Entry.for.alias.alias.successfully.imported.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   231
                 "Entry for alias {0} successfully imported."},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   232
        {"Entry.for.alias.alias.not.imported.", "Entry for alias {0} not imported."},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   233
        {"Problem.importing.entry.for.alias.alias.exception.Entry.for.alias.alias.not.imported.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   234
                 "Problem importing entry for alias {0}: {1}.\nEntry for alias {0} not imported."},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   235
        {"Import.command.completed.ok.entries.successfully.imported.fail.entries.failed.or.cancelled",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   236
                 "Import command completed:  {0} entries successfully imported, {1} entries failed or cancelled"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   237
        {"Warning.Overwriting.existing.alias.alias.in.destination.keystore",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   238
                 "Warning: Overwriting existing alias {0} in destination keystore"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   239
        {"Existing.entry.alias.alias.exists.overwrite.no.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   240
                 "Existing entry alias {0} exists, overwrite? [no]:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   241
        {"Too.many.failures.try.later", "Too many failures - try later"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   242
        {"Certification.request.stored.in.file.filename.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   243
                "Certification request stored in file <{0}>"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   244
        {"Submit.this.to.your.CA", "Submit this to your CA"},
16720
0e7e9e6ed98a 8010125: keytool -importkeystore could create a pkcs12 keystore with different storepass and keypass
weijun
parents: 14182
diff changeset
   245
        {"if.alias.not.specified.destalias.and.srckeypass.must.not.be.specified",
0e7e9e6ed98a 8010125: keytool -importkeystore could create a pkcs12 keystore with different storepass and keypass
weijun
parents: 14182
diff changeset
   246
            "if alias not specified, destalias and srckeypass must not be specified"},
0e7e9e6ed98a 8010125: keytool -importkeystore could create a pkcs12 keystore with different storepass and keypass
weijun
parents: 14182
diff changeset
   247
        {"The.destination.pkcs12.keystore.has.different.storepass.and.keypass.Please.retry.with.destkeypass.specified.",
0e7e9e6ed98a 8010125: keytool -importkeystore could create a pkcs12 keystore with different storepass and keypass
weijun
parents: 14182
diff changeset
   248
            "The destination pkcs12 keystore has different storepass and keypass. Please retry with -destkeypass specified."},
14182
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   249
        {"Certificate.stored.in.file.filename.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   250
                "Certificate stored in file <{0}>"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   251
        {"Certificate.reply.was.installed.in.keystore",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   252
                "Certificate reply was installed in keystore"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   253
        {"Certificate.reply.was.not.installed.in.keystore",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   254
                "Certificate reply was not installed in keystore"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   255
        {"Certificate.was.added.to.keystore",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   256
                "Certificate was added to keystore"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   257
        {"Certificate.was.not.added.to.keystore",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   258
                "Certificate was not added to keystore"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   259
        {".Storing.ksfname.", "[Storing {0}]"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   260
        {"alias.has.no.public.key.certificate.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   261
                "{0} has no public key (certificate)"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   262
        {"Cannot.derive.signature.algorithm",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   263
                "Cannot derive signature algorithm"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   264
        {"Alias.alias.does.not.exist",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   265
                "Alias <{0}> does not exist"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   266
        {"Alias.alias.has.no.certificate",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   267
                "Alias <{0}> has no certificate"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   268
        {"Key.pair.not.generated.alias.alias.already.exists",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   269
                "Key pair not generated, alias <{0}> already exists"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   270
        {"Generating.keysize.bit.keyAlgName.key.pair.and.self.signed.certificate.sigAlgName.with.a.validity.of.validality.days.for",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   271
                "Generating {0} bit {1} key pair and self-signed certificate ({2}) with a validity of {3} days\n\tfor: {4}"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   272
        {"Enter.key.password.for.alias.", "Enter key password for <{0}>"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   273
        {".RETURN.if.same.as.keystore.password.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   274
                "\t(RETURN if same as keystore password):  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   275
        {"Key.password.is.too.short.must.be.at.least.6.characters",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   276
                "Key password is too short - must be at least 6 characters"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   277
        {"Too.many.failures.key.not.added.to.keystore",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   278
                "Too many failures - key not added to keystore"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   279
        {"Destination.alias.dest.already.exists",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   280
                "Destination alias <{0}> already exists"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   281
        {"Password.is.too.short.must.be.at.least.6.characters",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   282
                "Password is too short - must be at least 6 characters"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   283
        {"Too.many.failures.Key.entry.not.cloned",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   284
                "Too many failures. Key entry not cloned"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   285
        {"key.password.for.alias.", "key password for <{0}>"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   286
        {"Keystore.entry.for.id.getName.already.exists",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   287
                "Keystore entry for <{0}> already exists"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   288
        {"Creating.keystore.entry.for.id.getName.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   289
                "Creating keystore entry for <{0}> ..."},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   290
        {"No.entries.from.identity.database.added",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   291
                "No entries from identity database added"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   292
        {"Alias.name.alias", "Alias name: {0}"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   293
        {"Creation.date.keyStore.getCreationDate.alias.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   294
                "Creation date: {0,date}"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   295
        {"alias.keyStore.getCreationDate.alias.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   296
                "{0}, {1,date}, "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   297
        {"alias.", "{0}, "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   298
        {"Entry.type.type.", "Entry type: {0}"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   299
        {"Certificate.chain.length.", "Certificate chain length: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   300
        {"Certificate.i.1.", "Certificate[{0,number,integer}]:"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   301
        {"Certificate.fingerprint.SHA1.", "Certificate fingerprint (SHA1): "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   302
        {"Keystore.type.", "Keystore type: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   303
        {"Keystore.provider.", "Keystore provider: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   304
        {"Your.keystore.contains.keyStore.size.entry",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   305
                "Your keystore contains {0,number,integer} entry"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   306
        {"Your.keystore.contains.keyStore.size.entries",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   307
                "Your keystore contains {0,number,integer} entries"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   308
        {"Failed.to.parse.input", "Failed to parse input"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   309
        {"Empty.input", "Empty input"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   310
        {"Not.X.509.certificate", "Not X.509 certificate"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   311
        {"alias.has.no.public.key", "{0} has no public key"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   312
        {"alias.has.no.X.509.certificate", "{0} has no X.509 certificate"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   313
        {"New.certificate.self.signed.", "New certificate (self-signed):"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   314
        {"Reply.has.no.certificates", "Reply has no certificates"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   315
        {"Certificate.not.imported.alias.alias.already.exists",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   316
                "Certificate not imported, alias <{0}> already exists"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   317
        {"Input.not.an.X.509.certificate", "Input not an X.509 certificate"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   318
        {"Certificate.already.exists.in.keystore.under.alias.trustalias.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   319
                "Certificate already exists in keystore under alias <{0}>"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   320
        {"Do.you.still.want.to.add.it.no.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   321
                "Do you still want to add it? [no]:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   322
        {"Certificate.already.exists.in.system.wide.CA.keystore.under.alias.trustalias.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   323
                "Certificate already exists in system-wide CA keystore under alias <{0}>"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   324
        {"Do.you.still.want.to.add.it.to.your.own.keystore.no.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   325
                "Do you still want to add it to your own keystore? [no]:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   326
        {"Trust.this.certificate.no.", "Trust this certificate? [no]:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   327
        {"YES", "YES"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   328
        {"New.prompt.", "New {0}: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   329
        {"Passwords.must.differ", "Passwords must differ"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   330
        {"Re.enter.new.prompt.", "Re-enter new {0}: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   331
        {"Re.enter.new.password.", "Re-enter new password: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   332
        {"They.don.t.match.Try.again", "They don't match. Try again"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   333
        {"Enter.prompt.alias.name.", "Enter {0} alias name:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   334
        {"Enter.new.alias.name.RETURN.to.cancel.import.for.this.entry.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   335
                 "Enter new alias name\t(RETURN to cancel import for this entry):  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   336
        {"Enter.alias.name.", "Enter alias name:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   337
        {".RETURN.if.same.as.for.otherAlias.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   338
                "\t(RETURN if same as for <{0}>)"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   339
        {".PATTERN.printX509Cert",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   340
                "Owner: {0}\nIssuer: {1}\nSerial number: {2}\nValid from: {3} until: {4}\nCertificate fingerprints:\n\t MD5:  {5}\n\t SHA1: {6}\n\t SHA256: {7}\n\t Signature algorithm name: {8}\n\t Version: {9}"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   341
        {"What.is.your.first.and.last.name.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   342
                "What is your first and last name?"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   343
        {"What.is.the.name.of.your.organizational.unit.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   344
                "What is the name of your organizational unit?"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   345
        {"What.is.the.name.of.your.organization.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   346
                "What is the name of your organization?"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   347
        {"What.is.the.name.of.your.City.or.Locality.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   348
                "What is the name of your City or Locality?"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   349
        {"What.is.the.name.of.your.State.or.Province.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   350
                "What is the name of your State or Province?"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   351
        {"What.is.the.two.letter.country.code.for.this.unit.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   352
                "What is the two-letter country code for this unit?"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   353
        {"Is.name.correct.", "Is {0} correct?"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   354
        {"no", "no"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   355
        {"yes", "yes"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   356
        {"y", "y"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   357
        {".defaultValue.", "  [{0}]:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   358
        {"Alias.alias.has.no.key",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   359
                "Alias <{0}> has no key"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   360
        {"Alias.alias.references.an.entry.type.that.is.not.a.private.key.entry.The.keyclone.command.only.supports.cloning.of.private.key",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   361
                 "Alias <{0}> references an entry type that is not a private key entry.  The -keyclone command only supports cloning of private key entries"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   362
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   363
        {".WARNING.WARNING.WARNING.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   364
            "*****************  WARNING WARNING WARNING  *****************"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   365
        {"Signer.d.", "Signer #%d:"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   366
        {"Timestamp.", "Timestamp:"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   367
        {"Signature.", "Signature:"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   368
        {"CRLs.", "CRLs:"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   369
        {"Certificate.owner.", "Certificate owner: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   370
        {"Not.a.signed.jar.file", "Not a signed jar file"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   371
        {"No.certificate.from.the.SSL.server",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   372
                "No certificate from the SSL server"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   373
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   374
        {".The.integrity.of.the.information.stored.in.your.keystore.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   375
            "* The integrity of the information stored in your keystore  *\n" +
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   376
            "* has NOT been verified!  In order to verify its integrity, *\n" +
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   377
            "* you must provide your keystore password.                  *"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   378
        {".The.integrity.of.the.information.stored.in.the.srckeystore.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   379
            "* The integrity of the information stored in the srckeystore*\n" +
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   380
            "* has NOT been verified!  In order to verify its integrity, *\n" +
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   381
            "* you must provide the srckeystore password.                *"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   382
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   383
        {"Certificate.reply.does.not.contain.public.key.for.alias.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   384
                "Certificate reply does not contain public key for <{0}>"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   385
        {"Incomplete.certificate.chain.in.reply",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   386
                "Incomplete certificate chain in reply"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   387
        {"Certificate.chain.in.reply.does.not.verify.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   388
                "Certificate chain in reply does not verify: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   389
        {"Top.level.certificate.in.reply.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   390
                "Top-level certificate in reply:\n"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   391
        {".is.not.trusted.", "... is not trusted. "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   392
        {"Install.reply.anyway.no.", "Install reply anyway? [no]:  "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   393
        {"NO", "NO"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   394
        {"Public.keys.in.reply.and.keystore.don.t.match",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   395
                "Public keys in reply and keystore don't match"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   396
        {"Certificate.reply.and.certificate.in.keystore.are.identical",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   397
                "Certificate reply and certificate in keystore are identical"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   398
        {"Failed.to.establish.chain.from.reply",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   399
                "Failed to establish chain from reply"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   400
        {"n", "n"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   401
        {"Wrong.answer.try.again", "Wrong answer, try again"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   402
        {"Secret.key.not.generated.alias.alias.already.exists",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   403
                "Secret Key not generated, alias <{0}> already exists"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   404
        {"Please.provide.keysize.for.secret.key.generation",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   405
                "Please provide -keysize for secret key generation"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   406
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   407
        {"verified.by.s.in.s", "Verified by %s in %s"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   408
        {"warning.not.verified.make.sure.keystore.is.correct",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   409
            "WARNING: not verified. Make sure -keystore is correct."},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   410
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   411
        {"Extensions.", "Extensions: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   412
        {".Empty.value.", "(Empty value)"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   413
        {"Extension.Request.", "Extension Request:"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   414
        {"PKCS.10.Certificate.Request.Version.1.0.Subject.s.Public.Key.s.format.s.key.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   415
                "PKCS #10 Certificate Request (Version 1.0)\n" +
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   416
                "Subject: %s\nPublic Key: %s format %s key\n"},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   417
        {"Unknown.keyUsage.type.", "Unknown keyUsage type: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   418
        {"Unknown.extendedkeyUsage.type.", "Unknown extendedkeyUsage type: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   419
        {"Unknown.AccessDescription.type.", "Unknown AccessDescription type: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   420
        {"Unrecognized.GeneralName.type.", "Unrecognized GeneralName type: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   421
        {"This.extension.cannot.be.marked.as.critical.",
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   422
                 "This extension cannot be marked as critical. "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   423
        {"Odd.number.of.hex.digits.found.", "Odd number of hex digits found: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   424
        {"Unknown.extension.type.", "Unknown extension type: "},
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   425
        {"command.{0}.is.ambiguous.", "command {0} is ambiguous:"}
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   426
    };
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   427
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   428
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   429
    /**
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   430
     * Returns the contents of this <code>ResourceBundle</code>.
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   431
     *
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   432
     * <p>
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   433
     *
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   434
     * @return the contents of this <code>ResourceBundle</code>.
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   435
     */
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   436
    @Override
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   437
    public Object[][] getContents() {
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   438
        return contents;
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   439
    }
3041082abb40 7194449: String resources for Key Tool and Policy Tool should be in their respective packages
sflores
parents:
diff changeset
   440
}