local-list.ts.ftl 390 字节
Newer Older
ibizdev's avatar
ibizdev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<#ibiztemplate>
TARGET=PSSYSAPP
</#ibiztemplate>
export const localList: any[] = [
<#--  语言资源列表  -->
    {
        type: 'ZH-CN',
        name: '中文简体',
    },
    <#if app.getAllPSAppLans()??>
    <#list app.getAllPSAppLans() as lans>
    <#if lans.getLanguage() == 'EN'>
    {
        type: 'EN-US',
        name: 'English',
    },
    </#if>
    </#list>
    </#if>
];