# # Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved. # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. # # This code is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License version 2 only, as # published by the Free Software Foundation. Oracle designates this # particular file as subject to the "Classpath" exception as provided # by Oracle in the LICENSE file that accompanied this code. # # This code is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License # version 2 for more details (a copy is included in the LICENSE file that # accompanied this code). # # You should have received a copy of the GNU General Public License version # 2 along with this work; if not, write to the Free Software Foundation, # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. # # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA # or visit www.oracle.com if you need additional information or have any # questions. # # param.app-name.name=App Name param.app-name.description=The name of the application. param.app-fs-name.name=App File System Name param.app-fs-name.description=The name of the application suitable for file system use. Typically this is just letters, numbers, dots, and dashes. param.app-resource.description=All of the files to place in the resources directory. Including all needed jars as assets. param.app-resources.name=Resources param.app-resource-list.description=A List of RelativeFileSet objects containing all of the files to place in the resources directory. Including all needed jars as assets. param.app-resources-list.name=Resources List param.build-root.name=Build Root param.build-root.description=The directory in which to use and place temporary files. param.category.name=Category param.category.description=The category oor group of the application. Generally speaking you will also want to specify application specific categories as well. param.category.default=Unknown param.copyright.name=Copyright param.copyright.description=The copyright for the application. param.copyright.default=Copyright (C) {0,date,YYYY} param.description.name=Description param.description.description=A longer description of the application param.description.default=none param.icon-file.name=Icon param.icon-file.description=The main icon of the application bundle. param.identifier.name=Identifier param.identifier.description=What is the machine readable identifier of this application? The format should be a DNS name in reverse order, such as com.example.myapplication. param.arguments.name=Command Line Arguments param.arguments.description=Command Line Arguments to be passed to the main class if no arguments are specified by the launcher. param.jvm-options.name=JVM Options param.jvm-options.description=JVM flags and options to be passed in. param.jvm-system-properties.name=JVM System Properties param.jvm-system-properties.description=JVM System Properties (of the -Dname\=value variety). param.license-file.name=License param.license-file.description=The license file, relative to the assembled application directory. param.source-files.name=Files param.source-files.description=Set of files from input directory to be bundled. param.main-class.name=Main Class param.main-class.description=The main class for the application. Either a javafx.application.Application instance or a java class with a main method. param.main-module.name=Main Module param.main-module.description=The main module for the application. This is the module containing the main class. param.classpath.name=Main Jar Classpath param.classpath.description=The classpath from the main jar of the application, relative to the assembled application directory. param.main-jar.name=Main Jar param.main-jar.description=The main jar of the application. This jar should have the main-class, and is relative to the assembled application dir. param.name.name=Name param.name.description=The name of the application. param.preferences-id.name=Preferences ID param.preferences-id.description=The preferences node to search for User JVM Options. The format be a slash delimited version of the main package name, such as "com/example/myapplication". param.title.name=Title param.title.description=A title for the application. param.vendor.name=Vendor param.vendor.description=The vendor of the application. param.vendor.default=Unknown param.predefined-app-image.name=Predefined Application Image param.predefined-app-image.description=Location of the predefined application image that is used to build an installable package. param.predefined-runtime-image.name=Predefined Runtime Image param.predefined-runtime-image.description=Location of the custom runtime image that is used to build an application image and installable packages. param.version.name=Version param.version.description=The version of this application. param.version.default=1.0 param.verbose.name=Verbose param.verbose.description=Flag to print out more information and saves configuration files for bundlers. param.drop-in-resources-root.name=Drop-In Resources Root param.drop-in-resources-root.description=The directory to look for bundler specific drop in resources. If not set the classpath will be searched. param.secondary-launchers.name=Secondary Launchers param.secondary-launchers.description=A collection of bundle param info for secondary launchers param.file-associations.name=File Associations param.file-associations.description=A list of maps where each map describes a file association. Uses the "fileAssociation." series of bundle arguments in each map. param.fa-extension.name=File Association Extension param.fa-extension.description=The File Extension to be associated, just the extension no dots. param.fa-content-type.name=File Association Content Type param.fa-content-type.description=Content Type to be associated. Such as application/x-vnd.my-awesome-app. param.fa-icon.name=File Association Icon param.fa-icon.description=The Icon to be used for associated files. Defaults to the application icon. param.fa-description.name=File Association Description param.fa-description.description=The description to be used for associated files. The default is " File". param.source-dir.name=Source Directory param.source-dir.description=Path to the directory containing the files to be bundled. param.module-path.name=Module Path param.module-path.description=When packaging the Java Runtime, this is the path JLink will look in for modules. param.add-modules.name=Add Modules param.add-modules.description=List of Modules to add to JImage creation, including possible services. param.limit-modules.name=Limit Modules param.limit-modules.description=Modules to Limit JImage creation to. param.strip-executables.name=Strip Native Executables param.strip-executables.description=Removes native executables from the JImage creation. param.main.module.name=Main Module param.main.module.description=The main module of the application. This module should have the main-class, and is on the module path. param.singleton.name=Singleton param.singleton.description=Prevents from launching multiple instances of application. param.install-dir.name=Installation Directory param.install-dir.description=Installation directory of the application. message.app-image-dir-does-not-exist=Specified application image directory {0}\: {1} does not exists message.app-image-dir-does-not-exist.advice=Confirm that the value for {0} exists message.runtime-image-dir-does-not-exist=Specified runtime image directory {0}\: {1} does not exists message.runtime-image-dir-does-not-exist.advice=Confirm that the value for {0} exists error.no-main-class-with-main-jar=An application class was not specified nor was one found in the jar {0} error.no-main-class-with-main-jar.advice=Please specify a applicationClass or ensure that the jar {0} specifies one in the manifest. error.no-main-class-with-classpath=An application class was not specified nor was one found in the supplied classpath error.no-main-class-with-classpath.advice=Please specify a applicationClass or ensure that the classpath has a jar containing one in the manifest. error.no-main-class=An application class was not specified nor was one found in the supplied application resources error.no-main-class.advice=Please specify a applicationClass or ensure that the appResources has a jar containing one in the manifest. error.main-jar-does-not-exist=The configured main jar does not exist {0} error.main-jar-does-not-exist.advice=The main jar must be specified relative to the app resources (not an absolute path), and must exist within those resources. warning.no.jdk.modules.found=Warning: No JDK Modules found.