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

Tue, 28 Dec 2010 15:54:52 -0800

author
ohair
date
Tue, 28 Dec 2010 15:54:52 -0800
changeset 798
4868a36f6fd8
parent 728
895bea45a3e8
child 1885
d6158f8d7235
permissions
-rw-r--r--

6962318: Update copyright year
Reviewed-by: xdono

     1 #
     2 # Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.  Oracle designates this
     8 # particular file as subject to the "Classpath" exception as provided
     9 # by Oracle in the LICENSE file that accompanied this code.
    10 #
    11 # This code is distributed in the hope that it will be useful, but WITHOUT
    12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14 # version 2 for more details (a copy is included in the LICENSE file that
    15 # accompanied this code).
    16 #
    17 # You should have received a copy of the GNU General Public License version
    18 # 2 along with this work; if not, write to the Free Software Foundation,
    19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20 #
    21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    22 # or visit www.oracle.com if you need additional information or have any
    23 # questions.
    24 #
    26 #
    27 # User errors, command line errors.
    28 #
    29 cant.create.dir=\
    30         The directory {0} could not be create for output.
    31 at.args.cant.read=\
    32         Can''t read command line arguments from file {1}.
    33 at.args.file.not.found=\
    34         Can''t find file {0}.
    35 at.args.io.exception=\
    36         The following I/O problem was encountered when processing an @ \
    37         argument on the command line: {0}.
    38 old.jni.mixed=\
    39         Can''t mix options -jni and -old.  Try -help.
    40 old.llni.mixed=\
    41         Can''t mix options -old and -llni.  Try -help.
    42 old.not.supported=\
    43         Option -old not supported by this version of javah.
    44 invalid.method.signature=\
    45         Invalid method signature: {0}
    46 jni.llni.mixed=\
    47         Can''t mix options -jni and -llni.  Try -help.
    48 jni.no.stubs=\
    49         JNI does not require stubs, please refer to the JNI documentation.
    50 jni.sigerror=\
    51         Cannot determine signature for {0}
    52 dir.file.mixed=\
    53         Can''t mix options -d and -o.  Try -help.
    54 no.classes.specified=\
    55         No classes were specified on the command line.  Try -help.
    56 no.outputfile.specified=\
    57         No outputfile was specified on the command line.  Try -help.
    58 no.outputdir.specified=\
    59         No output directory was specified on the command line.  Try -help.
    60 no.classpath.specified=\
    61         No classpath was specified on the command line.  Try -help.
    62 no.bootclasspath.specified=\
    63         No bootclasspath was specified on the command line.  Try -help.
    64 unknown.option=\
    65         {0} is an illegal argument\n
    66 tracing.not.supported=\
    67         Warning: Tracing is no longer supported.  Instead, use\
    68         -verbose:jni option of the virtual machine.
    70 #
    71 # Usage message.
    72 #
    73 usage=\
    74 Usage: javah [options] <classes>\n\
    75 \n\
    76 where [options] include:\n\
    77 \n\t\
    78 -help                 Print this help message and exit\n\t\
    79 -classpath <path>     Path from which to load classes\n\t\
    80 -bootclasspath <path> Path from which to load bootstrap classes\n\t\
    81 -d <dir>              Output directory\n\t\
    82 -o <file>             Output file (only one of -d or -o may be used)\n\t\
    83 -jni                  Generate JNI-style header file (default)\n\t\
    84 -version              Print version information\n\t\
    85 -verbose              Enable verbose output\n\t\
    86 -force                Always write output files\n\
    87 \n\
    88 <classes> are specified with their fully qualified names (for\n\
    89 instance, java.lang.Object).\n
    91 main.usage=\
    92 Usage: \n\
    93 \  javah [options] <classes>\n\
    94 where [options] include:
    95 main.opt.o=\
    96 \  -o <file>                Output file (only one of -d or -o may be used)
    97 main.opt.d=\
    98 \  -d <dir>                 Output directory
    99 main.opt.v=\
   100 \  -v  -verbose             Enable verbose output
   101 main.opt.h=\
   102 \  -h  --help  -?           Print this message
   103 main.opt.version=\
   104 \  -version                 Print version information
   105 main.opt.jni=\
   106 \  -jni                     Generate JNI-style header file (default)
   107 main.opt.force=\
   108 \  -force                   Always write output files
   109 main.opt.classpath=\
   110 \  -classpath <path>        Path from which to load classes
   111 main.opt.bootclasspath=\
   112 \  -bootclasspath <path>    Path from which to load bootstrap classes
   113 main.usage.foot=\
   114 <classes> are specified with their fully qualified names\n\
   115 (for example, java.lang.Object).
   117 #
   118 # Version string.
   119 #
   120 javah.version={0} version "{1}"
   121 javah.fullVersion={0} full version "{1}"
   123 #
   124 # These should have better diagnostics.
   125 #
   126 super.class.not.found=\
   127         A required super class {0} could not be found.
   128 class.not.found=\
   129         Class {0} could not be found.
   130 io.exception=\
   131         Can''t recover from an I/O error with the following message: \
   132         {0}.
   134 #
   135 # Problems in the guts of javah.
   136 #
   137 encoding.iso8859_1.not.found=\
   138         ISO8859_1 converter was not found for output.  This is \
   139         probably due to an error in the installation installation.
   140 tried.to.define.non.static=\
   141         Tried to generate #define for non-static field.
   142 jni.unknown.type=\
   143         An unknown type encountered (JNI).
   144 unknown.array.type=\
   145         An unknown array type encountered when generating old style headers.
   146 unknown.type.for.field=\
   147         An unknown type encountered when generating old style headers.
   148 unknown.type.in.method.signature=\
   149         An unknown type eccountered when generating old style stubs.
   152 err.prefix=Error:
   153 err.cant.use.option.for.fm=Can't use {0} option with given file manager
   154 err.internal.error=Internal error: {0}
   155 err.ioerror=IO error: {0}
   156 err.missing.arg=value missing for {0}
   157 err.no.classes.specified=no classes specified
   158 err.unknown.option=unknown option: {0}

mercurial