/win32/wix/cmenu-i18n.wxs
WiX source | 25 lines | 21 code | 4 blank | 0 comment | 0 complexity | 359fddeec714b97f1d50e1fdaf4e7bc3 MD5 | raw file
Possible License(s): GPL-2.0
- <?xml version="1.0" encoding="utf-8"?>
- <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <?include guids.wxi ?>
- <?include defines.wxi ?>
- <?define thgcmenulangs =
- cs;da;de;en_GB;en_US;es;fa;fr;he;hr;it;ja;ko;nl;nn;pl;pt;pt_BR;ru;tr;uk;zh_CN;zh_TW
- ?>
- <!-- lang 'ca' is used for key path -->
- <Fragment>
- <DirectoryRef Id="i18ndir">
- <Directory Id="cmenuI18n" Name="cmenu" FileSource="$(var.SourceDir)">
- <Component Id="cmenuI18n" Guid="$(var.cmenuI18n.guid)" Win64='$(var.IsX64)'>
- <File Name="thg-cmenu-ca.reg" KeyPath="yes"/>
- <?foreach LANG in $(var.thgcmenulangs) ?>
- <File Name="thg-cmenu-$(var.LANG).reg" />
- <?endforeach?>
- </Component>
- </Directory>
- </DirectoryRef>
- </Fragment>
- </Wix>