codelist_en_US.ts.ftl 820 字节
Newer Older
1 2 3 4 5 6 7 8 9 10
<#ibiztemplate>
TARGET=PSSYSAPP
</#ibiztemplate>
<#ibizinclude>../../@MACRO/FUNC.ts</#ibizinclude>
<#assign langrestype = 'EN'/>
export default {
<#if app.getAllPSAppCodeLists()??>
  <#list app.getAllPSAppCodeLists() as codelist>
    <#if codelist.getCodeListType() == "STATIC">
    ${codelist.codeName}: {
11 12 13 14 15
      <#if codelist.getAllPSCodeItems?? && codelist.getAllPSCodeItems()??>
        <#list codelist.getAllPSCodeItems() as codeitem>
        '${codeitem.getValue()?j_string}': '<@getTextLanguage codeitem langrestype />',
        </#list>
      </#if>
16 17 18 19 20 21 22 23 24 25
        empty: '<@getEmptyTextLanguage codelist langrestype '' />',
    },
    <#elseif codelist.getCodeListType() == "DYNAMIC">
    ${codelist.codeName}: {
        empty: '<@getEmptyTextLanguage codelist langrestype '' />',
    },
    </#if>
  </#list>
</#if>
};