author | herrick |
Wed, 23 Oct 2019 10:37:54 -0400 | |
branch | JDK-8200758-branch |
changeset 58762 | 0fe62353385b |
parent 58434 | b00cbf427368 |
child 58791 | fca9cb5f4953 |
permissions | -rw-r--r-- |
57059 | 1 |
# |
57106
ea870b9ce89a
8216492: Update copyright of all new jpackage fils to 2019
kcr
parents:
57103
diff
changeset
|
2 |
# Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. |
57059 | 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 |
# |
|
57265 | 26 |
app.bundler.name=Linux Application Image |
58114
42df7de58e39
8230519: jpackage "--package-type" values and default
herrick
parents:
57807
diff
changeset
|
27 |
deb.bundler.name=DEB Bundle |
57265 | 28 |
rpm.bundler.name=RPM Bundle |
57059 | 29 |
|
30 |
param.license-type.default=Unknown |
|
57256 | 31 |
param.menu-group.default=Unknown |
57059 | 32 |
|
33 |
resource.deb-control-file=DEB control file |
|
34 |
resource.deb-preinstall-script=DEB preinstall script |
|
35 |
resource.deb-prerm-script=DEB prerm script |
|
36 |
resource.deb-postinstall-script=DEB postinstall script |
|
37 |
resource.deb-postrm-script=DEB postrm script |
|
57807
4a15115716ea
8215381: Investigate if current implementation of --license-file is correct for Debian packages
herrick
parents:
57438
diff
changeset
|
38 |
resource.copyright-file=Copyright file |
57059 | 39 |
resource.menu-shortcut-descriptor=Menu shortcut descriptor |
40 |
resource.menu-icon=menu icon |
|
41 |
resource.rpm-spec-file=RPM spec file |
|
42 |
||
58115 | 43 |
error.tool-not-found.advice=Please install required packages |
58417
67ffaf3a2b75
8231280: Linux packages produced by jpackage should have correct dependencies
herrick
parents:
58115
diff
changeset
|
44 |
error.tool-old-version.advice=Please install required packages |
67ffaf3a2b75
8231280: Linux packages produced by jpackage should have correct dependencies
herrick
parents:
58115
diff
changeset
|
45 |
|
58434
b00cbf427368
8231721 : jpackage --install-dir should reject system dirs on Linux
herrick
parents:
58417
diff
changeset
|
46 |
error.invalid-install-dir=Invalid installation directory "{0}" |
b00cbf427368
8231721 : jpackage --install-dir should reject system dirs on Linux
herrick
parents:
58417
diff
changeset
|
47 |
error.unsupported-install-dir=Installing to system directory "{0}" is currently unsupported |
b00cbf427368
8231721 : jpackage --install-dir should reject system dirs on Linux
herrick
parents:
58417
diff
changeset
|
48 |
|
58115 | 49 |
error.no-content-types-for-file-association=No MIME types were specified for File Association number {0} |
57059 | 50 |
error.too-many-content-types-for-file-association=More than one MIME types was specified for File Association number {0}. |
58114
42df7de58e39
8230519: jpackage "--package-type" values and default
herrick
parents:
57807
diff
changeset
|
51 |
error.invalid-value-for-package-name=Invalid value "{0}" for the bundle name. |
42df7de58e39
8230519: jpackage "--package-type" values and default
herrick
parents:
57807
diff
changeset
|
52 |
error.invalid-value-for-package-name.advice=Set the "linux-bundle-name" option to a valid Debian package name. Note that the package names must consist only of lower case letters (a-z), digits (0-9), plus (+) and minus (-) signs, and periods (.). They must be at least two characters long and must start with an alphanumeric character. |
57059 | 53 |
|
57397
89549ecec1c7
8223212: Code cleanup found during jpackage review
herrick
parents:
57314
diff
changeset
|
54 |
message.icon-not-png=The specified icon "{0}" is not a PNG file and will not be used. The default icon will be used in it's place. |
57314 | 55 |
message.test-for-tool=Test for [{0}]. Result: {1} |
56 |
message.outputting-to-location=Generating DEB for installer to: {0}. |
|
57 |
message.output-to-location=Package (.deb) saved to: {0}. |
|
57397
89549ecec1c7
8223212: Code cleanup found during jpackage review
herrick
parents:
57314
diff
changeset
|
58 |
message.debs-like-licenses=Debian packages should specify a license. The absence of a license will cause some linux distributions to complain about the quality of the application. |
57314 | 59 |
message.outputting-bundle-location=Generating RPM for installer to: {0}. |
60 |
message.output-bundle-location=Package (.rpm) saved to: {0}. |
|
57059 | 61 |
message.creating-association-with-null-extension=Creating association with null extension. |
58417
67ffaf3a2b75
8231280: Linux packages produced by jpackage should have correct dependencies
herrick
parents:
58115
diff
changeset
|
62 |
|
67ffaf3a2b75
8231280: Linux packages produced by jpackage should have correct dependencies
herrick
parents:
58115
diff
changeset
|
63 |
message.ldd-not-available=ldd command not found. Package dependencies will not be generated. |
67ffaf3a2b75
8231280: Linux packages produced by jpackage should have correct dependencies
herrick
parents:
58115
diff
changeset
|
64 |
message.deb-ldd-not-available.advice=Install "libc-bin" DEB package to get ldd. |
67ffaf3a2b75
8231280: Linux packages produced by jpackage should have correct dependencies
herrick
parents:
58115
diff
changeset
|
65 |
message.rpm-ldd-not-available.advice=Install "glibc-common" RPM package to get ldd. |