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

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

mercurial