Hi,
I am working on one migration where I expected to generate custom ovf template for my product.
I used the earlier version ovf template and it was working in those version perfectly
In new ovf template wherever I generated by my own, <Info> tag under Eula section should take content dynamically based on the language selection
My ovf template looks like this
<EulaSection>
<Info ovf:msgid="license-info">LicenseAgreement1</Info>
<License ovf:msgid="license-text">License Agreement1
some content
</License>
</EulaSection>
<EulaSection>
<Info/>
<License>License Agreement2
some content
</License>
</EulaSection>
<Strings xml:lang="ko-KR">
<Msg ovf:msgid="license-info">Korean string for LicenseAgreement1</Msg>
<Msg ovf:msgid="license-text">Korean language License Agreement1</Msg>
</Strings>
Note: License Agreement2 looks same for all languages so no message under Strings tag
ovf:msgid="license-text" working fine when switching language
ovf:msgid="license-info" is not working and it is showing default Agreement 1 value
Can anyone help me to fix this?
Regards,
Gobi S.