Hi Phill,

 I created directories for Japanese them and placed the wxl file and license
files and was able to get a Japanese bootstrapper installer when I ran with
the option -lang 1041. I was able to get the same output even by using a
single msi created in English as my Internal UI is set to No. But how can I
just click on the Installer and make it run with Japanese culture? When I
changed my keyboard settings to JP, it did not help either. Can you tell me
what I am doing wrong here?

Please refer to my code below.

<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'
         xmlns:bal="http://schemas.microsoft.com/wix/BalExtension";
         xmlns:util="http://schemas.microsoft.com/wix/UtilExtension";>
 
  
 <Bundle Name="AppBundleName" Version="$(var.ProductVersion)" 
   Manufacturer="ManufacturerName"
UpgradeCode="{2D04966D-0EF6-492F-9A23-F456CCE6F6BE}"
   Copyright="Copyright (c) 2014 - 2015 by Sling Media, Inc."
IconSourceFile=".\Logo_128x128.ico">

 <BootstrapperApplicationRef
Id="WixStandardBootstrapperApplication.RtfLicense" >
        <bal:WixStandardBootstrapperApplication 
            LicenseFile=".\theme\EULA.rtf"
            ThemeFile=".\MyTheme.xml"
            ShowVersion="yes" 
            LogoFile="theme\Logo.png" 
            LocalizationFile="theme\RtfTheme.wxl"
          />
    
        <Payload SourceFile="theme\Logo.png"/>
        <Payload SourceFile="player-logo-pc.png"/>
        <Payload Id="theme_ja_jp" Compressed="yes"  Name="1041\thm.wxl"
SourceFile="theme\1041 \RtfTheme.wxl"/>
        <Payload Id="license_ja_jp" Compressed="yes" Name="1041\license.rtf"
SourceFile="theme\1041\license.rtf"/>

</BootstrapperApplicationRef>

<WixVariable Id="chkSPD" Value="![CDATA[chkSPD]]" />

<util:RegistrySearch Root='HKCU' Key='SOFTWARE\CompName\ProdName'
Id="SPDCheckInstalled" Variable="ProductName" Result="exists" />

<Variable Name="InstallFolder" Type="string"
Value="[ProgramFilesFolder]ProductName"/> 
<Variable Name="LaunchTarget" Value="[InstallFolder]\Application.exe"/>

<Chain>

    <MsiPackage Id="MainPackage" SourceFile="bin\Release\AppInstaller.msi"
Vital="yes" DisplayInternalUI="no">
      <MsiProperty Name="INSTALLDIR" Value="[InstallFolder]"/>
    </MsiPackage>


</Chain>
</Bundle>

Thanks and Regards
Vikas



--
View this message in context: 
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Bootstrapper-for-multiple-cultures-tp7598840p7598871.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------------
New Year. New Location. New Benefits. New Data Center in Ashburn, VA.
GigeNET is offering a free month of service with a new server in Ashburn.
Choose from 2 high performing configs, both with 100TB of bandwidth.
Higher redundancy.Lower latency.Increased capacity.Completely compliant.
http://p.sf.net/sfu/gigenet
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to