1 param.app-name.name=App Name
   2 param.app-name.description=The name of the application.
   3 
   4 param.app-resource.description=All of the files to place in the resources directory.  Including all needed jars as assets.
   5 param.app-resources.name=Resources
   6 
   7 param.build-root.name=Build Root
   8 param.build-root.description=The directory in which to use and place temporary files.
   9 
  10 param.category.name=Category
  11 param.category.description=The category oor group of the application.  Generally speaking you will also want to specify application specific categories as well.
  12 param.category.default=Unknown
  13 
  14 param.copyright.name=Copyright
  15 param.copyright.description=The copyright for the application.
  16 param.copyright.default=Copyright (C) {0,date,YYYY}
  17 
  18 param.description.name=Description
  19 param.description.description=A longer description of the application
  20 param.description.default=none
  21 
  22 param.desktop-shortcut-hint.name=Shortcut Hint
  23 param.desktop-shortcut-hint.description=If the bundler can create desktop shortcuts, should it make one?
  24 
  25 param.icon-file.name=Icon
  26 param.icon-file.description=The main icon of the application bundle.
  27 
  28 param.identifier.name=Identifier
  29 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.
  30 
  31 param.jvm-options.name=JVM Options
  32 param.jvm-options.description=JVM flags and options to be passed in.
  33 
  34 param.jvm-system-properties.name=JVM System Properties
  35 param.jvm-system-properties.description=JVM System Properties (of the -Dname\=value variety).
  36 
  37 param.license-files.name=License
  38 param.license-files.description=Text of the end user license presented during interactive installers.
  39 
  40 param.license-type.name=
  41 param.license-type.description=
  42 param.license-type.default=Unknown
  43 
  44 param.main-class.name=Main Class
  45 param.main-class.description=The main class for the application.  Either a javafx.application.Application instance or a java class with a main method.
  46 
  47 param.main-jar-classpath.description=The classpath from the main jar of the application.
  48 param.main-jar-classpath.name=Main Jar Classpath
  49 
  50 param.main-jar.name=Main Jar
  51 param.main-jar.description=The main jar of the application.  This jar should have the main-class
  52 
  53 param.service-hint.name=Service Hint
  54 param.service-hint.description=The bundler should register the application as service/daemon
  55 
  56 param.start-on-install.name=Start On Install
  57 param.start-on-install.description=Controls whether the service/daemon should be started on install
  58 
  59 param.stop-on-uninstall.name=Stop On Uninstall
  60 param.stop-on-uninstall.description=Controls whether the service/daemon should be stopped on uninstall
  61 
  62 param.run-at-startup.name=Run At Startup
  63 param.run-at-startup.description=Controls whether the service/daemon should be started during system startup
  64 
  65 param.menu-shortcut-hint.name=Menu Hint
  66 param.menu-shortcut-hint.description=If the bundler can add the application to the system menu, should it?
  67 
  68 param.name.name=Name
  69 param.name.description=The name of the application.
  70 
  71 param.preferences-id.description=When storing and retrieving user preferences, what is the identifier that should be used?  The format should be a DNS name in reverse order, such as com.example.myapplication.
  72 param.preferences-id.name=Preferences ID
  73 
  74 param.runtime.name=JRE
  75 param.runtime.description=The Java Runtime to co-bundle.  The default value is the current JRE running the bundler.  A value of null will cause no JRE to be co-bundled and the system JRE will be used to launch the application.
  76 
  77 param.system-wide.name=System Wide
  78 param.system-wide.description=Should this application attempt to install itself system wide, or only for each user?  Null means use the system default.
  79 
  80 param.title.name=Title
  81 param.title.description=A title for the application.
  82 
  83 param.use-javafx-packaging.name=FX Packaging
  84 param.use-javafx-packaging.description=Should we use the JavaFX packaging conventions?
  85 
  86 param.user-jvm-options.name=User JVM Options
  87 param.user-jvm-options.description=JVM Options the user may override, along with their default values.
  88 
  89 param.vendor.name=Vendor
  90 param.vendor.description=The vendor of the application.
  91 param.vendor.default=Unknown
  92 
  93 param.version.name=Version
  94 param.version.description=The version of this application.
  95 param.version.default=1.0
  96 
  97 param.verbose.name=Verbose
  98 param.verbose.description=Flag to print out more information and saves configuration files for bundlers.
  99 
 100 error.required-parameter={0} is a required parameter.
 101 
 102 message.fx-app-does-not-match-specified-main=The jar {0} has an FX Application class{1} that does not match the declared main {2}
 103 message.main-class-does-not-match-specified-main=The jar {0} has a main class {1} that does not match the declared main {2}