modules/fxpackager/src/main/resources/com/oracle/bundlers/StandardBundlerParam.properties

Print this page

        

@@ -11,11 +11,11 @@
 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}

+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
 

@@ -48,10 +48,22 @@
 param.main-jar-classpath.name=Main Jar Classpath
 
 param.main-jar.name=Main Jar
 param.main-jar.description=The main jar of the application.  This jar should have the main-class
 
+param.service-hint.name=Service Hint
+param.service-hint.description=The bundler should register the application as service/daemon
+
+param.start-on-install.name=Start On Install
+param.start-on-install.description=Controls whether the service/daemon should be started on install
+
+param.stop-on-uninstall.name=Stop On Uninstall
+param.stop-on-uninstall.description=Controls whether the service/daemon should be stopped on uninstall
+
+param.run-at-startup.name=Run At Startup
+param.run-at-startup.description=Controls whether the service/daemon should be started during system startup
+
 param.menu-shortcut-hint.name=Menu Hint
 param.menu-shortcut-hint.description=If the bundler can add the application to the system menu, should it?
 
 param.name.name=Name
 param.name.description=The name of the application.

@@ -80,9 +92,12 @@
 
 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.
+
 error.required-parameter={0} is a required parameter.
 
 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}
 message.main-class-does-not-match-specified-main=The jar {0} has a main class {1} that does not match the declared main {2}