Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
deal with the need for multilingual printing in PDF
we are using PDF template in Japanese. It was discovered that the current PDF template does not print Hangul characters "e.g. 주식".
<#elseif .locale == "ja_JP">
font-family: NotoSans, NotoSansCJKjp, sans-serif;
If we add "NotoSansCJKkr" to the above font-family
However, I think it would be better to add the specification to font-family in advance if other languages are also considered.
For example, I would like to know if there are any advantages or disadvantages of the following description.
font-family: heiseimin, NotoSansCJKjp, NotoSansCJKkr, NotoSansCJKkr, NotoSansThai, NotoSansCJKsc, NotoSansCJKtc sans-serif;
How should we deal with the need for multilingual printing in PDF?
Please advise if you have any examples.