1 MSG_Version=JavaFX Packager version
   2 MSG_Help_1=Usage: javafxpackager -command [-options]\n\
   3      \n\
   4 where command is one of: \n\
   5 \  -createjar\n\
   6 \          The packager produces jar archive according to other parameters. \n\
   7 \  -deploy \n\
   8 \          The packager generates the jnlp and html files according to other\n\
   9 \          parameters.\n\
  10 \  -createbss\n\
  11 \          Converts css file into binary form \n\
  12 \  -signJar\n\
  13 \          Signs jar file(s) with a provided certificate.\n\
  14 \  -makeall\n\
  15 \          Performs compilation, createjar and deploy steps as one call with \n\
  16 \          most arguments predefined. The sources must be located in "src"\n\
  17 \          folder, the resulting files (jar, jnlp, html) are put in "dist"\n\
  18 \          folder. This command may be configured only in a minimal way and is\n\
  19 \          as automated as possible.\n\
  20 \n
  21 MSG_Help_2=Options for createjar command include: \n\
  22 \  -appclass <application class>\n\
  23 \          qualified name of the application class to be executed.\n\
  24 \  -preloader <preloader class>\n\
  25 \          qualified name of the preloader class to be executed.\n\
  26 \  -paramfile <file>\n\
  27 \          properties file with default named application parameters.\n\
  28 \  -argument arg\n\
  29 \          An unnamed argument to be put in <fx:argument> element in the JNLP\n\
  30 \          file.\n\
  31 \  -classpath <files>\n\
  32 \          list of dependent jar file names.\n\
  33 \  -manifestAttrs <manifest attributes>\n\
  34 \          List of additional manifest attributes. Syntax: "name1=value1,\n\
  35 \          name2=value2,name3=value3.\n\
  36 \  -noembedlauncher \n\
  37 \          If present, the packager will not add the JavaFX launcher classes\n\
  38 \          to the jarfile.\n\
  39 \  -nocss2bin\n\
  40 \          The packager won't convert CSS files to binary form before copying\n\
  41 \          to jar. \n\
  42 \  -runtimeversion <version> \n\
  43 \          version of the required JavaFX Runtime.\n\
  44 \  -outdir <dir>\n\
  45 \          name of the directory to generate output file to.\n\
  46 \  -outfile <filename>\n\
  47 \          The name (without the extension) of the resulting file.\n\
  48 \  -srcdir <dir>\n\
  49 \          Base dir of the files to pack.\n\
  50 \  -srcfiles <files>\n\
  51 \          List of files in srcdir. If omitted, all files in srcdir (which\n\
  52 \          is a mandatory argument in this case) will be packed.\n\
  53 \n
  54 MSG_Help_3=Options for deploy command include:\n\
  55 \  -title <title>\n\
  56 \          title of the application.\n\
  57 \  -vendor <vendor>\n\
  58 \          vendor of the application.\n\
  59 \  -description <description>\n\
  60 \          description of the application.\n\
  61 \  -appclass <application class>\n\
  62 \          qualified name of the application class to be executed.\n\
  63 \  -preloader <preloader class>\n\
  64 \          qualified name of the preloader class to be executed.\n\
  65 \  -paramfile <file>\n\
  66 \          properties file with default named application parameters.\n\
  67 \  -htmlparamfile <file>\n\
  68 \          properties file with parameters for the resulting applet.\n\
  69 \  -width <width>\n\
  70 \          width of the application.\n\
  71 \  -height <height>\n\
  72 \          height of the application.\n\
  73 \  -native <type>\n\
  74 \          generate self-contained application bundles (if possible).\n\
  75 \          If type is specified then only bundle of this type is created.\n\
  76 \          List of supported types includes: installer, image, exe, msi, dmg, rpm, deb.\n\
  77 \  -name <name>\n\
  78 \          name of the application.\n\
  79 \  -embedjnlp\n\
  80 \          If present, the jnlp file will be embedded in the html document.\n\
  81 \  -embedCertificates\n\
  82 \          If present, the certificates will be embedded in the jnlp file.\n\
  83 \  -allpermissions\n\
  84 \          If present, the application will require all security permissions \n\
  85 \          in the jnlp file.\n\
  86 \  -updatemode <updatemode>\n\
  87 \          sets the update mode for the jnlp file.\n\
  88 \  -isExtension\n\
  89 \          if present, the srcfiles are treated as extensions.\n\
  90 \  -callbacks\n\
  91 \          specifies user callback methods in generated HTML. The format is\n\
  92 \          "name1:value1,name2:value2,..."\n\
  93 \  -templateInFilename\n\
  94 \          name of the html template file. Placeholders are in form of\n\
  95 \          #XXXX.YYYY(APPID)#\n\
  96 \  -templateOutFilename\n\
  97 \          name of the html file to write the filled-in template to.\n\
  98 \  -templateId\n\
  99 \          Application ID of the application for template processing.\n\
 100 \  -argument arg\n\
 101 \          An unnamed argument to be put in <fx:argument> element in the JNLP\n\
 102 \          file.\n\
 103 \  -outdir <dir>\n\
 104 \          name of the directory to generate output file to.\n\
 105 \  -outfile <filename>\n\
 106 \          The name (without the extension) of the resulting file.\n\
 107 \  -srcdir <dir>\n\
 108 \          Base dir of the files to pack.\n\
 109 \  -srcfiles <files>\n\
 110 \          List of files in srcdir. If omitted, all files in srcdir (which\n\
 111 \          is a mandatory argument in this case) will be used.\n\
 112 \n
 113 MSG_Help_4=Options for createbss command include:\n\
 114 \  -outdir <dir>\n\
 115 \          name of the directory to generate output file to.\n\
 116 \  -srcdir <dir>\n\
 117 \          Base dir of the files to pack.\n\
 118 \  -srcfiles <files>\n\
 119 \          List of files in srcdir. If omitted, all files in srcdir (which\n\
 120 \          is a mandatory argument in this case) will be used.\n\
 121 \n
 122 MSG_Help_5=Options for signJar command include:\n\
 123 \  -keyStore <file>\n\
 124 \          Keystore filename.\n\
 125 \  -alias \n\
 126 \          Alias for the key.\n\
 127 \  -storePass\n\
 128 \          Password to check integrity of the keystore or unlock the keystore.\n\
 129 \  -keyPass\n\
 130 \          Password for recovering the key.\n\
 131 \  -storeType\n\
 132 \          Keystore type, the default value is "jks".\n\
 133 \  -outdir <dir>\n\
 134 \          name of the directory to generate output file(s) to.\n\
 135 \  -srcdir <dir>\n\
 136 \          Base dir of the files to signed.\n\
 137 \  -srcfiles <files>\n\
 138 \          List of files in srcdir. If omitted, all files in srcdir (which\n\
 139 \          is a mandatory argument in this case) will be signed.\n\
 140 \n
 141 MSG_Help_6=Options for makeAll command include:\n\
 142 \  -appclass <application class>\n\
 143 \          qualified name of the application class to be executed.\n\
 144 \  -preloader <preloader class>\n\
 145 \          qualified name of the preloader class to be executed.\n\
 146 \  -classpath <files>\n\
 147 \          list of dependent jar file names.\n\
 148 \  -name <name>\n\
 149 \          name of the application.\n\
 150 \  -width <width>\n\
 151 \          width of the application.\n\
 152 \  -height <height>\n\
 153 \          height of the application.\n\
 154 \  -v      enable verbose output.\n\
 155 \n
 156 MSG_Help_7=Sample usages:\n\
 157 --------------\n\
 158 javafxpackager -createjar -appclass package.ClassName  \n\
 159 \  -srcdir classes -outdir out -outfile outjar -v\n\
 160 \          Packages the content of the classes directory to outjar.jar,\n\
 161 \          sets the application class to package.ClassName.\n\
 162 javafxpackager -deploy -outdir outdir -outfile outfile -width 34 -height 43 \n\
 163 \  -name AppName -appclass package.ClassName -v -srcdir compiled\n\
 164 \          Generates outfile.jnlp and corresponding outfile.html files in \n\
 165 \          outdir for aplication AppName that is started by package.ClassName\n\
 166 \          class and has dimensions of 34x43.\n\
 167 javafxpackager -makeall -appclass brickbreaker.Main -name BrickBreaker\n\
 168 \  -width 600 -height 600\n\
 169 \          This command does all the packaging work including compilation: \n\
 170 \          compile, createjar, deploy.
 171 
 172 
 173 ERR_UnknownArgument=Error: Unknown argument: {0}
 174 ERR_UnknownCommand=Error: Unknown command: {0}
 175 ERR_BSSConversionFailed=Error: Conversion of CSS file to binary form failed for file: {0}, reason: {1}
 176 ERR_UnknownReason=Unknown reason
 177 ERR_MissingArgument=Error: Missing argument: {0}
 178 ERR_IllegalCSSFile=Error: -cssfile argument must be a readable file
 179 ERR_EmbedingLauncher=Error: Missing embedded resource [{0}]
 180 ERR_CreatingDirFailed=Error: Failed to create directory {0}
 181 ERR_CreatingFileFailed=Error: Failed to create file {0}
 182 ERR_CreatingTempFileFailed=Error: Failed to create temporary file
 183 ERR_CreatingJarFailed=Error: Failed to create jar file {0}
 184 ERR_FileCopyFailed=Error: Failed copy file to directory {0}
 185 ERR_FileReadFailed=Error: Failed reading file {0}
 186 ERR_CantFindRuntime=Error: jfxrt.jar needs to be on classpath for -createbss and for -createJar without -nocss2bin
 187 ERR_CantDeleteFile=Error: File {0} could not be deleted.
 188 ERR_MissingDirectory=Missing directory {0}
 189 ERR_EmptySourceDirectory=Empty source directory {0}
 190 ERR_MissingJavaHome=Error: Java home directory is not known.
 191 ERR_MissingJavaFxHome=Error: JavaFx home directory is not known.
 192 ERR_JavacFailed=Error: javac execution failed, exit code: {0}
 193 ERR_MakeAllJavacFailed=Error: compilation of java sources failed
 194 ERR_DeployFailed=Error: deploy failed
 195 ERR_InvalidStoreFile=Error: Invalid keystore file: {0}
 196 ERR_SignFailed=Error: Signing failed
 197 ERR_MissingAppResources=Error: No application jars found
 198 ERR_NoEmbeddedDT=Error: -includedt requires the java deployment toolkit, which is not included in this distribution
 199 
 200 MSG_UpdatingJar=Updating jar file\: {0}
 201 MSG_NoJREPackaged=Package is configured to ship without a JRE.
 202 MSG_UserProvidedJRE=Using base JDK at\: {0}
 203 MSG_UseSystemJRE=No base JDK. Package will use system JRE.
 204 MSG_BundlerPlatformException=Bundler {0} skipped because the bundler does not support bundling on this platform.
 205 MSG_BundlerConfigException=Bundler {0} skipped because of a configuration problem\: {1}\
 206 Advice to fix\: {2}
 207 MSG_BundlerConfigExceptionNoAdvice=Bundler {0} skipped because of a configuration problem\: {1}
 208 MSG_BundlerRuntimeException=Bundler {0} failed because of {1}
 209 MSG_JarNoSelfCopy=Skip jar copy to itself\: {0}