1 #
   2 # Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
   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 #
  26 
  27 bundler.name=MSI Installer
  28 bundler.description=Microsoft Windows MSI Installer, via WiX.
  29 
  30 param.system-wide.name=System Wide
  31 param.system-wide.description=Should this application attempt to install itself system wide, or only for each user?  Null means use the system default.
  32 
  33 param.app-bundler.name=MSI App Bundler
  34 param.app-bundler.description=MSI App Bundler
  35 
  36 param.can-use-wix36.name=Can Use Wix
  37 param.can-use-wix36.description=Can Use Wix
  38 
  39 param.config-root.name=Config Root Dir
  40 param.config-root.description=Config Root Dir
  41 
  42 param.image-dir.name=Image Dir
  43 param.image-dir.description=Image Dir
  44 
  45 param.app-dir.name=App Dir
  46 param.app-dir.description=App Dir
  47 
  48 param.menu-shortcut-hint.name=Menu Hint
  49 param.menu-shortcut-hint.description=If the bundler can add the application to the system menu, should it?
  50 
  51 param.desktop-shortcut-hint.name=Shortcut Hint
  52 param.desktop-shortcut-hint.description=If the bundler can create desktop shortcuts, should it make one?
  53 
  54 param.upgrade-uuid.name=Upgrade UUID
  55 param.upgrade-uuid.description=The UUID associated with upgrades for this package.
  56 
  57 param.product-version.name=Product Version
  58 param.product-version.description=The version of the application as seen by Windows and MSI, of the form "1.2.3"
  59 
  60 param.candle-path.name=WiX candle.exe location
  61 param.candle-path.description=File path to candle.exe from the WiX toolset.
  62 
  63 param.light-path.name=WiX light.exe location
  64 param.light-path.description=File path to light.exe from the WiX toolset.
  65 
  66 resource.post-install-script=script to run after application image is populated
  67 resource.wix-config-file=WiX config file
  68 
  69 error.parameters-null=Parameters map is null.
  70 error.parameters-null.advice=Pass in a non-null parameters map.
  71 error.no-wix-tools=Can not find WiX tools (light.exe, candle.exe).
  72 error.no-wix-tools.advice=Download WiX 3.0 or later from http\://wix.sf.net and add it to the PATH.
  73 error.version-string-wrong-format=Version string is not compatible with MSI rules [{0}].
  74 error.version-string-wrong-format.advice=Set the bundler argument "{0}" according to these rules: http\://msdn.microsoft.com/en-us/library/aa370859%28v\=VS.85%29.aspx
  75 error.version-string-major-out-of-range=Major version must be in the range [0, 255]
  76 error.version-string-build-out-of-range=Build part of version must be in the range [0, 65535]
  77 error.version-string-minor-out-of-range=Minor version must be in the range [0, 255]
  78 error.version-string-part-not-number=Failed to convert version component to int.
  79 error.cannot-walk-directory=Can not walk [{0}] - it is not a valid directory
  80 error.cannot-create-output-dir=Output directory {0} cannot be created.
  81 error.cannot-write-to-output-dir=Output directory {0} is not writable.
  82 error.too-many-content-types-for-file-association=More than one MIME types was specified for File Association number {0}.
  83 error.too-many-content-types-for-file-association.advice=Specify one and only one MIME type for each file association.
  84 error.license-missing=can not find license file {0}.
  85 error.license-missing.advice=include license file {0} in the --files argument.
  86 
  87 
  88 message.tool-version=Detected [{0}] version [{1}]
  89 message.running-wsh-script=Running WSH script on application image [{0}]
  90 message.wrong-tool-version=Detected [{0}] version {1} but version {2} is required.
  91 message.use-wix36-features=WiX 3.6 detected. Enabling advanced cleanup action.
  92 message.version-string-too-many-components=Version sting may have up to 3 components - major.minor.build .
  93 message.debug-working-directory=Kept working directory for debug\: {0}
  94 message.generated-product-guid=Generated product GUID\: {0}
  95 message.preparing-msi-config=Preparing MSI config\: {0}
  96 message.generating-msi=Generating MSI\: {0}
  97 message.one-shortcut-required=At least one type of shortcut is required. Enabling menu shortcut.
  98 message.light-file-string=WiX light tool set to {0}
  99 message.candle-file-string=WiX candle tool set to {0}
 100 message.creating-association-with-null-extension=Creating association with null extension.