I have .NET solution with fully working WIX project that builds installer. We have recently introduced translation resources for latin spanish language (es-419) generated by SDL Passolo. The problem is that upon build we now receive errors like the following:
ICE03: Invalid Language Id; Table: File, Column: Language, Key(s): <file_key_here>
Languages are included in compilation via LanguageDirectories.wxs
<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<DirectoryRef Id="INSTALLFOLDER">
<Directory Id="de" Name="de" />
<Directory Id="en" Name="en" />
<Directory Id="es_419" Name="es-419" />
</DirectoryRef>
</Fragment>
</Wix>
I went through WIX documentation but didn't find anything that could help me with this error. I've used ILSpy to inspect the DLLs but they do not seem to have any language id the error speaks of.