/* * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package sun.security.util; /** *

This class represents the ResourceBundle * for the following packages: * *

    *
  1. com.sun.security.auth *
  2. com.sun.security.auth.login *
* */ public class AuthResources_ja extends java.util.ListResourceBundle { private static final Object[][] contents = { // NT principals {"invalid.null.input.value", "無効なnullの入力: {0}"}, {"NTDomainPrincipal.name", "NTDomainPrincipal: {0}"}, {"NTNumericCredential.name", "NTNumericCredential: {0}"}, {"Invalid.NTSid.value", "無効なNTSid値"}, {"NTSid.name", "NTSid: {0}"}, {"NTSidDomainPrincipal.name", "NTSidDomainPrincipal: {0}"}, {"NTSidGroupPrincipal.name", "NTSidGroupPrincipal: {0}"}, {"NTSidPrimaryGroupPrincipal.name", "NTSidPrimaryGroupPrincipal: {0}"}, {"NTSidUserPrincipal.name", "NTSidUserPrincipal: {0}"}, {"NTUserPrincipal.name", "NTUserPrincipal: {0}"}, // UnixPrincipals {"UnixNumericGroupPrincipal.Primary.Group.name", "UnixNumericGroupPrincipal [主グループ]: {0}"}, {"UnixNumericGroupPrincipal.Supplementary.Group.name", "UnixNumericGroupPrincipal [補助グループ]: {0}"}, {"UnixNumericUserPrincipal.name", "UnixNumericUserPrincipal: {0}"}, {"UnixPrincipal.name", "UnixPrincipal: {0}"}, // com.sun.security.auth.login.ConfigFile {"Unable.to.properly.expand.config", "{0}を正しく展開できません"}, {"extra.config.No.such.file.or.directory.", "{0}(指定されたファイルまたはディレクトリは存在しません)"}, {"Configuration.Error.No.such.file.or.directory", "構成エラー:\n\t指定されたファイルまたはディレクトリは存在しません"}, {"Configuration.Error.Invalid.control.flag.flag", "構成エラー:\n\t無効な制御フラグ: {0}"}, {"Configuration.Error.Can.not.specify.multiple.entries.for.appName", "構成エラー:\n\t{0}に複数のエントリを指定できません"}, {"Configuration.Error.expected.expect.read.end.of.file.", "構成エラー:\n\t[{0}]ではなく、[ファイルの終わり]が読み込まれました"}, {"Configuration.Error.Line.line.expected.expect.found.value.", "構成エラー:\n\t行{0}: [{1}]ではなく、[{2}]が検出されました"}, {"Configuration.Error.Line.line.expected.expect.", "構成エラー:\n\t行{0}: [{1}]が要求されました"}, {"Configuration.Error.Line.line.system.property.value.expanded.to.empty.value", "構成エラー:\n\t行{0}: システム・プロパティ[{1}]が空の値に展開されました"}, // com.sun.security.auth.module.JndiLoginModule {"username.","ユーザー名: "}, {"password.","パスワード: "}, // com.sun.security.auth.module.KeyStoreLoginModule {"Please.enter.keystore.information", "キーストア情報を入力してください"}, {"Keystore.alias.","キーストアの別名: "}, {"Keystore.password.","キーストアのパスワード: "}, {"Private.key.password.optional.", "秘密キーのパスワード(オプション): "}, // com.sun.security.auth.module.Krb5LoginModule {"Kerberos.username.defUsername.", "Kerberosユーザー名[{0}]: "}, {"Kerberos.password.for.username.", "{0}のKerberosパスワード: "}, }; /** * Returns the contents of this ResourceBundle. * *

* * @return the contents of this ResourceBundle. */ public Object[][] getContents() { return contents; } }