问题

默认的模板地区是en_US也就是美国英文,如何改变设置以适应其他地区的货币格式等信息?

解答

在 <head>中把<#setting locale="xzy"> 放在<#if .locale> 上面。

<head>
	<link name="NotoSans"/>
	<#setting locale="ja_JP">
	<#if .locale == "ja_JP">
               <!-- some .local if-else statement-->
	</#if>
    
        <macrolist>
                <!--macrolist here, like header, footer, etc-->
        </macrolist>
</head>

模板的区域设置定义了货币格式、日期格式等。当区域设置为日本时,以下是价格表的样子:

QtySKURateAmount
1Battery¥26,000¥26,000

Last modified: 12/08/2023

Author

Comments

Write a Reply or Comment

Your email address will not be published.