Click here to Skip to main content
15,892,927 members
Articles / Windows Installer

Creating a Localized Windows Installer & Bootstrapper: Part 3

Rate me:
Please Sign up or sign in to vote.
4.60/5 (3 votes)
25 Feb 2013CPOL5 min read 56K   537   17  
This series of articles is a complete end-to-end solution for building a localizable Windows Installer & Bootstrapper using some real-world requirements.
<?xml version="1.0" encoding="utf-8"?>
<WixLocalization Culture="it-IT" xmlns="http://schemas.microsoft.com/wix/2006/localization" Codepage='1252'>
  <!-- for this demo I've used google translate, so these tranlsations may not be acturate -->
  <String Id='LANG' Overridable="yes">1040</String>
  <String Id="Feature.Title" Overridable="yes">MyApp Core</String>
  <String Id="Feature.Description" Overridable="yes">L'eseguibile principale</String>
  <String Id="Installer.Description" Overridable="yes">MyApp sviluppata da TheCodeKing.</String>
  <String Id="Installation" Overridable="yes">Installazione</String>
  <String Id="Net40ClientRequired" Overridable="yes">Questa applicazione è necessario Microsoft. NET Framework Client Profile 4. Si prega di installare il quadro e quindi eseguire il programma di installazione di nuovo.</String>
  <String Id="Windows7Required" Overridable="yes">Questa applicazione funziona solo su Windows 7.</String>
  <String Id="HardwareFail" Overridable="yes">Questa applicazione non può essere installato su questo macchina.</String>
</WixLocalization>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United Kingdom United Kingdom
Mike Carlisle - Technical Architect with over 20 years experience in a wide range of technologies.

@TheCodeKing

Comments and Discussions