src/share/classes/com/sun/tools/javah/resources/l10n.properties

changeset 0
959103a6100f
child 2525
2eb010b6cb22
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/classes/com/sun/tools/javah/resources/l10n.properties	Wed Apr 27 01:34:52 2016 +0800
     1.3 @@ -0,0 +1,161 @@
     1.4 +#
     1.5 +# Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
     1.6 +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 +#
     1.8 +# This code is free software; you can redistribute it and/or modify it
     1.9 +# under the terms of the GNU General Public License version 2 only, as
    1.10 +# published by the Free Software Foundation.  Oracle designates this
    1.11 +# particular file as subject to the "Classpath" exception as provided
    1.12 +# by Oracle in the LICENSE file that accompanied this code.
    1.13 +#
    1.14 +# This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 +# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 +# version 2 for more details (a copy is included in the LICENSE file that
    1.18 +# accompanied this code).
    1.19 +#
    1.20 +# You should have received a copy of the GNU General Public License version
    1.21 +# 2 along with this work; if not, write to the Free Software Foundation,
    1.22 +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 +#
    1.24 +# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 +# or visit www.oracle.com if you need additional information or have any
    1.26 +# questions.
    1.27 +#
    1.28 +
    1.29 +#
    1.30 +# User errors, command line errors.
    1.31 +#
    1.32 +cant.create.dir=\
    1.33 +        The directory {0} could not be create for output.
    1.34 +at.args.cant.read=\
    1.35 +        Can''t read command line arguments from file {1}.
    1.36 +at.args.file.not.found=\
    1.37 +        Can''t find file {0}.
    1.38 +at.args.io.exception=\
    1.39 +        The following I/O problem was encountered when processing an @ \
    1.40 +        argument on the command line: {0}.
    1.41 +old.jni.mixed=\
    1.42 +        Can''t mix options -jni and -old.  Try -help.
    1.43 +old.llni.mixed=\
    1.44 +        Can''t mix options -old and -llni.  Try -help.
    1.45 +old.not.supported=\
    1.46 +        Option -old not supported by this version of javah.
    1.47 +invalid.method.signature=\
    1.48 +        Invalid method signature: {0}
    1.49 +jni.llni.mixed=\
    1.50 +        Can''t mix options -jni and -llni.  Try -help.
    1.51 +jni.no.stubs=\
    1.52 +        JNI does not require stubs, please refer to the JNI documentation.
    1.53 +jni.sigerror=\
    1.54 +        Cannot determine signature for {0}
    1.55 +dir.file.mixed=\
    1.56 +        Can''t mix options -d and -o.  Try -help.
    1.57 +no.classes.specified=\
    1.58 +        No classes were specified on the command line.  Try -help.
    1.59 +no.outputfile.specified=\
    1.60 +        No outputfile was specified on the command line.  Try -help.
    1.61 +no.outputdir.specified=\
    1.62 +        No output directory was specified on the command line.  Try -help.
    1.63 +no.classpath.specified=\
    1.64 +        No classpath was specified on the command line.  Try -help.
    1.65 +no.bootclasspath.specified=\
    1.66 +        No bootclasspath was specified on the command line.  Try -help.
    1.67 +unknown.option=\
    1.68 +        {0} is an illegal argument\n
    1.69 +tracing.not.supported=\
    1.70 +        Warning: Tracing is no longer supported.  Instead, use\
    1.71 +        -verbose:jni option of the virtual machine.
    1.72 +
    1.73 +#
    1.74 +# Usage message.
    1.75 +#
    1.76 +usage=\
    1.77 +Usage: javah [options] <classes>\n\
    1.78 +\n\
    1.79 +where [options] include:\n\
    1.80 +\n\t\
    1.81 +-help                 Print this help message and exit\n\t\
    1.82 +-classpath <path>     Path from which to load classes\n\t\
    1.83 +-cp <path>            Path from which to load classes\n\t\
    1.84 +-bootclasspath <path> Path from which to load bootstrap classes\n\t\
    1.85 +-d <dir>              Output directory\n\t\
    1.86 +-o <file>             Output file (only one of -d or -o may be used)\n\t\
    1.87 +-jni                  Generate JNI-style header file (default)\n\t\
    1.88 +-version              Print version information\n\t\
    1.89 +-verbose              Enable verbose output\n\t\
    1.90 +-force                Always write output files\n\
    1.91 +\n\
    1.92 +<classes> are specified with their fully qualified names (for\n\
    1.93 +instance, java.lang.Object).\n
    1.94 +
    1.95 +main.usage=\
    1.96 +Usage: \n\
    1.97 +\  javah [options] <classes>\n\
    1.98 +where [options] include:
    1.99 +main.opt.o=\
   1.100 +\  -o <file>                Output file (only one of -d or -o may be used)
   1.101 +main.opt.d=\
   1.102 +\  -d <dir>                 Output directory
   1.103 +main.opt.v=\
   1.104 +\  -v  -verbose             Enable verbose output
   1.105 +main.opt.h=\
   1.106 +\  -h  --help  -?           Print this message
   1.107 +main.opt.version=\
   1.108 +\  -version                 Print version information
   1.109 +main.opt.jni=\
   1.110 +\  -jni                     Generate JNI-style header file (default)
   1.111 +main.opt.force=\
   1.112 +\  -force                   Always write output files
   1.113 +main.opt.classpath=\
   1.114 +\  -classpath <path>        Path from which to load classes
   1.115 +main.opt.cp=\
   1.116 +\  -cp <path>               Path from which to load classes
   1.117 +main.opt.bootclasspath=\
   1.118 +\  -bootclasspath <path>    Path from which to load bootstrap classes
   1.119 +main.usage.foot=\
   1.120 +<classes> are specified with their fully qualified names\n\
   1.121 +(for example, java.lang.Object).
   1.122 +
   1.123 +#
   1.124 +# Version string.
   1.125 +#
   1.126 +javah.version={0} version "{1}"
   1.127 +javah.fullVersion={0} full version "{1}"
   1.128 +
   1.129 +#
   1.130 +# These should have better diagnostics.
   1.131 +#
   1.132 +super.class.not.found=\
   1.133 +        A required super class {0} could not be found.
   1.134 +class.not.found=\
   1.135 +        Class {0} could not be found.
   1.136 +io.exception=\
   1.137 +        Can''t recover from an I/O error with the following message: \
   1.138 +        {0}.
   1.139 +
   1.140 +#
   1.141 +# Problems in the guts of javah.
   1.142 +#
   1.143 +encoding.iso8859_1.not.found=\
   1.144 +        ISO8859_1 converter was not found for output.  This is \
   1.145 +        probably due to an error in the installation installation.
   1.146 +tried.to.define.non.static=\
   1.147 +        Tried to generate #define for non-static field.
   1.148 +jni.unknown.type=\
   1.149 +        An unknown type encountered (JNI).
   1.150 +unknown.array.type=\
   1.151 +        An unknown array type encountered when generating old style headers.
   1.152 +unknown.type.for.field=\
   1.153 +        An unknown type encountered when generating old style headers.
   1.154 +unknown.type.in.method.signature=\
   1.155 +        An unknown type eccountered when generating old style stubs.
   1.156 +
   1.157 +
   1.158 +err.prefix=Error:
   1.159 +err.cant.use.option.for.fm=Can't use {0} option with given file manager
   1.160 +err.internal.error=Internal error: {0}
   1.161 +err.ioerror=IO error: {0}
   1.162 +err.missing.arg=value missing for {0}
   1.163 +err.no.classes.specified=no classes specified
   1.164 +err.unknown.option=unknown option: {0}

mercurial