javadoc.properties revision 3981:8be741555fa6
1#
2# Copyright (c) 1997, 2016, 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#
25
26main.errors={0} errors
27main.error={0} error
28main.warnings={0} warnings
29main.warning={0} warning
30
31main.usage=Usage:\n\
32\    javadoc [options] [packagenames] [sourcefiles] [@files]\n\
33where options include:
34
35main.opt.public.desc=\
36    Show only public types and members. For named modules,\n\
37    show exported packages and the module''s API.
38
39main.opt.protected.desc=\
40    Show protected/public types and members (default). For\n\
41    named modules, show exported packages and the module''s API.
42
43main.opt.package.desc=\
44    Show package/protected/public types and members. For \n\
45    named modules, show all packages and all module details.
46
47main.opt.private.desc=\
48    Show all types and members. For named modules,\n\
49    show all packages and all module details.
50
51main.opt.show.members.arg=\
52    <value>
53main.opt.show.members.desc=\
54    Specifies which members (fields, methods, etc.) will be\n\
55    documented, where value can be one of "public", "protected",\n\
56    "package" or "private". The default is "protected", which will\n\
57    show public and protected members, "public" will show only\n\
58    public members, "package" will show public, protected and\n\
59    package members and "private" will show all members.
60
61main.opt.show.types.arg=\
62    <value>
63main.opt.show.types.desc=\
64    Specifies which types (classes, interfaces, etc.) will be\n\
65    documented, where value can be one of "public", "protected",\n\
66    "package" or "private". The default is "protected", which will\n\
67    show public and protected types, "public" will show only\n\
68    public types, "package" will show public, protected and\n\
69    package types and "private" will show all types.
70
71main.opt.show.packages.arg=\
72    <value>
73main.opt.show.packages.desc=\
74    Specifies which module's packages will be documented. Possible\n\
75    values are "exported" or "all" packages.
76
77main.opt.show.module.contents.arg=\
78    <value>
79main.opt.show.module.contents.desc=\
80    Specifies the documentation granularity of module\n\
81    declarations. Possible values are "api" or "all".
82
83main.opt.expand.requires.arg=\
84    <value>
85main.opt.expand.requires.desc=\
86    Instructs the tool to expand the set of modules to be\n\
87    documented. By default, only the modules given explicitly on\n\
88    the command line will be documented. A value of "transitive" will\n\
89    additionally include all "requires transitive" dependencies of\n\
90    those modules. A value of "all" will include all dependencies\n\
91    of those modules.
92
93main.opt.help.desc=\
94    Display command line options and exit
95
96main.opt.module.arg=\
97    <module>(,<module>)*
98main.opt.module.desc=\
99    Document the specified module(s)
100
101main.opt.doclet.arg=\
102    <class>
103main.opt.doclet.desc=\
104    Generate output via alternate doclet
105
106main.opt.docletpath.arg=\
107    <path>
108main.opt.docletpath.desc=\
109    Specify where to find doclet class files
110
111main.opt.module.source.path.arg=\
112    <path>
113main.opt.module.source.path.desc=\
114    Specify where to find input source files for multiple modules
115
116main.opt.upgrade.module.path.arg=\
117    <path>
118main.opt.upgrade.module.path.desc=\
119    Override location of upgradeable modules
120
121main.opt.module.path.arg=\
122    <path>
123main.opt.module.path.desc=\
124    Specify where to find application modules
125
126main.opt.add.modules.arg=\
127    <module>(,<module>)*
128main.opt.add.modules.desc=\
129    Root modules to resolve in addition to the initial modules,\n\
130    or all modules on the module path if <module> is\n\
131    ALL-MODULE-PATH.
132
133main.opt.limit.modules.arg=\
134    <module>(,<module>)*
135main.opt.limit.modules.desc=\
136    Limit the universe of observable modules
137
138main.opt.source.path.arg=\
139    <path>
140main.opt.source.path.desc=\
141    Specify where to find source files
142
143main.opt.class.path.arg=\
144    <path>
145main.opt.class.path.desc=\
146    Specify where to find user class files
147
148main.opt.exclude.arg=\
149    <pkglist>
150main.opt.exclude.desc=\
151    Specify a list of packages to exclude
152
153main.opt.subpackages.arg=\
154    <subpkglist>
155main.opt.subpackages.desc=\
156    Specify subpackages to recursively load
157
158main.opt.breakiterator.desc=\
159    Compute first sentence with BreakIterator
160
161main.opt.bootclasspath.arg=\
162    <path>
163main.opt.bootclasspath.desc=\
164    Override location of platform class files used for non-modular\n\
165    releases
166
167main.opt.system.arg=\
168    <jdk>
169main.opt.system.desc=\
170    Override location of system modules used for modular releases
171
172main.opt.release.arg=\
173    <release>
174main.opt.release.desc=\
175    Provide source compatibility with specified release
176
177main.opt.source.arg=\
178    <release>
179main.opt.source.desc=\
180    Provide source compatibility with specified release
181
182main.opt.extdirs.arg=\
183    <dirlist>
184main.opt.extdirs.desc=\
185    Override location of installed extensions
186
187main.opt.verbose.desc=\
188    Output messages about what Javadoc is doing
189
190main.opt.locale.arg=\
191    <name>
192main.opt.locale.desc=\
193    Locale to be used, e.g. en_US or en_US_WIN
194
195main.opt.encoding.arg=\
196    <name>
197main.opt.encoding.desc=\
198    Source file encoding name
199
200main.opt.quiet.desc=\
201    Do not display status messages
202
203main.opt.J.arg=\
204    <flag>
205main.opt.J.desc=\
206    Pass <flag> directly to the runtime system
207
208main.opt.X.desc=\
209    Print a synopsis of nonstandard options and exit
210
211main.usage.foot=\n\
212GNU-style options may use '=' instead of whitespace to separate the name of an\n\
213option from its value.\n
214
215main.Xusage=
216
217main.opt.Xmaxerrs.arg=\
218    <number>
219main.opt.Xmaxerrs.desc=\
220    Set the maximum number of errors to print
221
222main.opt.Xmaxwarns.arg=\
223    <number>
224main.opt.Xmaxwarns.desc=\
225    Set the maximum number of warnings to print
226
227main.opt.add.exports.arg=\
228    <module>/<package>=<other-module>(,<other-module>)*
229main.opt.add.exports.desc=\
230    Specify a package to be considered as exported from its\n\
231    defining module to additional modules, or to all unnamed\n\
232    modules if <other-module> is ALL-UNNAMED
233
234main.opt.add.reads.arg=\
235    <module>=<other-module>(,<other-module>)*
236main.opt.add.reads.desc=\
237    Specify additional modules to be considered as required by a\n\
238    given module. <other-module> may be ALL-UNNAMED to require\n\
239    the unnamed module.
240
241main.opt.patch.module.arg=\
242    <module>=<file>(:<file>)*
243main.opt.patch.module.desc=\
244    Override or augment a module with classes and resources in\n\
245    JAR files or directories
246
247main.opt.Xold.desc=\
248    Invoke the legacy javadoc tool
249
250main.Xusage.foot=\n\
251These options are non-standard and subject to change without notice.
252
253main.doclet.usage.header=\nProvided by the {0} doclet:
254
255main.requires_argument=option {0} requires an argument.
256main.unnecessary_arg_provided=option {0} does not require an argument
257main.only_one_argument_with_equals=cannot use ''='' syntax for options that require multiple arguments
258main.invalid_flag=invalid flag: {0}
259main.No_modules_packages_or_classes_specified=No modules, packages or classes specified.
260main.module_not_found=module {0} not found.\n
261main.cant.read=cannot read {0}
262main.Loading_source_files_for_package=Loading source files for package {0}...
263main.Loading_source_file=Loading source file {0}...
264main.Building_tree=Constructing Javadoc information...
265main.no_source_files_for_package=No source files for package {0}
266main.package_not_found=Package {0} not found
267main.fatal.error=fatal error encountered: {0}
268main.out.of.memory=java.lang.OutOfMemoryError: Please increase memory.\n\
269For example, on the JDK Classic or HotSpot VMs, add the option -J-Xmx\n\
270such as -J-Xmx32m.
271main.done_in=[done in {0} ms]
272main.more_than_one_doclet_specified_0_and_1=More than one doclet specified ({0} and {1}).
273main.doclet_could_not_get_location=Could not get location for {0}
274main.doclet_could_not_set_location=Could not set location for {0}
275main.doclet_no_classloader_found=Could not obtain classloader to load {0}
276main.could_not_instantiate_class=Could not instantiate class {0}
277main.doclet_class_not_found=Cannot find doclet class {0}
278main.illegal_locale_name=Locale not available: {0}
279main.malformed_locale_name=Malformed locale name: {0}
280main.file_not_found=File not found: "{0}"
281main.file_ignored=File ignored: "{0}" (not yet supported)
282main.illegal_class_name=Illegal class name: "{0}"
283main.illegal_package_name=Illegal package name: "{0}"
284main.illegal_option_value=Illegal option value: "{0}"
285main.release.bootclasspath.conflict=option {0} cannot be used together with -release
286main.unsupported.release.version=release version {0} not supported
287main.release.not.standard.file.manager=-release option specified, but the provided JavaFileManager is not a StandardJavaFileManager.
288main.file.manager.list=FileManager error listing files: "{0}"
289main.assertion.error=assertion failed: "{0}}"
290main.unknown.error=an unknown error has occurred
291main.internal.error=an internal error has occurred
292main.unexpected.exception=an unexpected exception was caught: {0}
293doclet.internal.report.bug=\
294Please file a bug against the javadoc tool via the Java bug reporting page\n\
295(http://bugreport.java.com) after checking the Bug Database (http://bugs.java.com)\n\
296for duplicates. Include error messages and the following diagnostic in your report. Thank you.
297main.legacy_api=The old Doclet and Taglet APIs in the packages\n\
298    com.sun.javadoc, com.sun.tools.doclets and their implementations\n\
299    are planned to be removed in a future JDK release. These\n\
300    components have been superseded by the new APIs in jdk.javadoc.doclet.\n\
301    Users are strongly recommended to migrate to the new APIs.\n
302
303javadoc.class_not_found=Class {0} not found.
304javadoc.error=error
305javadoc.warning=warning
306javadoc.error.msg={0}: error - {1}
307javadoc.warning.msg={0}: warning - {1}
308javadoc.note.msg = {1}
309javadoc.note.pos.msg= {0}: {1}
310