src/java.base/share/classes/sun/security/util/AuthResources_ja.java
author mbaesken
Wed, 12 Sep 2018 11:13:09 +0200
changeset 51879 6ffa38b8da65
parent 47216 71c04702a3d5
child 53219 ef41d615b3f0
permissions -rw-r--r--
8207768: Improve exception messages during manifest parsing of jar archives Reviewed-by: clanger, mullan, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
46888
ab8444ea0151 8159544: Remove deprecated classes in com.sun.security.auth.**
mullan
parents: 25859
diff changeset
     2
 * Copyright (c) 2000, 2017, 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: 5307
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: 5307
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: 5307
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5307
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5307
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 the following packages:
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * <ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * <li> com.sun.security.auth
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * <li> com.sun.security.auth.login
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * </ol>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
public class AuthResources_ja extends java.util.ListResourceBundle {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    private static final Object[][] contents = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
        // NT principals
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    43
        {"invalid.null.input.value", "\u7121\u52B9\u306Anull\u306E\u5165\u529B: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    44
        {"NTDomainPrincipal.name", "NTDomainPrincipal: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    45
        {"NTNumericCredential.name", "NTNumericCredential: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    46
        {"Invalid.NTSid.value", "\u7121\u52B9\u306ANTSid\u5024"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    47
        {"NTSid.name", "NTSid: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    48
        {"NTSidDomainPrincipal.name", "NTSidDomainPrincipal: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    49
        {"NTSidGroupPrincipal.name", "NTSidGroupPrincipal: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    50
        {"NTSidPrimaryGroupPrincipal.name", "NTSidPrimaryGroupPrincipal: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    51
        {"NTSidUserPrincipal.name", "NTSidUserPrincipal: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    52
        {"NTUserPrincipal.name", "NTUserPrincipal: {0}"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        // UnixPrincipals
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    55
        {"UnixNumericGroupPrincipal.Primary.Group.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    56
                "UnixNumericGroupPrincipal [\u4E3B\u30B0\u30EB\u30FC\u30D7]: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    57
        {"UnixNumericGroupPrincipal.Supplementary.Group.name",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    58
                "UnixNumericGroupPrincipal [\u88DC\u52A9\u30B0\u30EB\u30FC\u30D7]: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    59
        {"UnixNumericUserPrincipal.name", "UnixNumericUserPrincipal: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    60
        {"UnixPrincipal.name", "UnixPrincipal: {0}"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        // com.sun.security.auth.login.ConfigFile
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    63
        {"Unable.to.properly.expand.config", "{0}\u3092\u6B63\u3057\u304F\u5C55\u958B\u3067\u304D\u307E\u305B\u3093"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    64
        {"extra.config.No.such.file.or.directory.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    65
                "{0}(\u6307\u5B9A\u3055\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\u5B58\u5728\u3057\u307E\u305B\u3093)"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    66
        {"Configuration.Error.No.such.file.or.directory",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    67
                "\u69CB\u6210\u30A8\u30E9\u30FC:\n\t\u6307\u5B9A\u3055\u308C\u305F\u30D5\u30A1\u30A4\u30EB\u307E\u305F\u306F\u30C7\u30A3\u30EC\u30AF\u30C8\u30EA\u306F\u5B58\u5728\u3057\u307E\u305B\u3093"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    68
        {"Configuration.Error.Invalid.control.flag.flag",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    69
                "\u69CB\u6210\u30A8\u30E9\u30FC:\n\t\u7121\u52B9\u306A\u5236\u5FA1\u30D5\u30E9\u30B0: {0}"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    70
        {"Configuration.Error.Can.not.specify.multiple.entries.for.appName",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    71
            "\u69CB\u6210\u30A8\u30E9\u30FC:\n\t{0}\u306B\u8907\u6570\u306E\u30A8\u30F3\u30C8\u30EA\u3092\u6307\u5B9A\u3067\u304D\u307E\u305B\u3093"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    72
        {"Configuration.Error.expected.expect.read.end.of.file.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    73
                "\u69CB\u6210\u30A8\u30E9\u30FC:\n\t[{0}]\u3067\u306F\u306A\u304F\u3001[\u30D5\u30A1\u30A4\u30EB\u306E\u7D42\u308F\u308A]\u304C\u8AAD\u307F\u8FBC\u307E\u308C\u307E\u3057\u305F"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    74
        {"Configuration.Error.Line.line.expected.expect.found.value.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    75
            "\u69CB\u6210\u30A8\u30E9\u30FC:\n\t\u884C{0}: [{1}]\u3067\u306F\u306A\u304F\u3001[{2}]\u304C\u691C\u51FA\u3055\u308C\u307E\u3057\u305F"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    76
        {"Configuration.Error.Line.line.expected.expect.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    77
            "\u69CB\u6210\u30A8\u30E9\u30FC:\n\t\u884C{0}: [{1}]\u304C\u8981\u6C42\u3055\u308C\u307E\u3057\u305F"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    78
        {"Configuration.Error.Line.line.system.property.value.expanded.to.empty.value",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    79
            "\u69CB\u6210\u30A8\u30E9\u30FC:\n\t\u884C{0}: \u30B7\u30B9\u30C6\u30E0\u30FB\u30D7\u30ED\u30D1\u30C6\u30A3[{1}]\u304C\u7A7A\u306E\u5024\u306B\u5C55\u958B\u3055\u308C\u307E\u3057\u305F"},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        // com.sun.security.auth.module.JndiLoginModule
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    82
        {"username.","\u30E6\u30FC\u30B6\u30FC\u540D: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    83
        {"password.","\u30D1\u30B9\u30EF\u30FC\u30C9: "},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        // com.sun.security.auth.module.KeyStoreLoginModule
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    86
        {"Please.enter.keystore.information",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    87
                "\u30AD\u30FC\u30B9\u30C8\u30A2\u60C5\u5831\u3092\u5165\u529B\u3057\u3066\u304F\u3060\u3055\u3044"},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    88
        {"Keystore.alias.","\u30AD\u30FC\u30B9\u30C8\u30A2\u306E\u5225\u540D: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    89
        {"Keystore.password.","\u30AD\u30FC\u30B9\u30C8\u30A2\u306E\u30D1\u30B9\u30EF\u30FC\u30C9: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    90
        {"Private.key.password.optional.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    91
            "\u79D8\u5BC6\u9375\u306E\u30D1\u30B9\u30EF\u30FC\u30C9(\u30AA\u30D7\u30B7\u30E7\u30F3): "},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        // com.sun.security.auth.module.Krb5LoginModule
8203
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    94
        {"Kerberos.username.defUsername.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    95
                "Kerberos\u30E6\u30FC\u30B6\u30FC\u540D[{0}]: "},
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    96
        {"Kerberos.password.for.username.",
e5debcae2183 7017734: jdk7 message drop 1 translation integration
mfang
parents: 7668
diff changeset
    97
                "{0}\u306EKerberos\u30D1\u30B9\u30EF\u30FC\u30C9: "},
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * Returns the contents of this <code>ResourceBundle</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * @return the contents of this <code>ResourceBundle</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public Object[][] getContents() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        return contents;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
}