<#ibiztemplate> TARGET=PSSYSAPP </#ibiztemplate> <#ibizinclude>../@MACRO/FUNC.ts</#ibizinclude> <#list app.getAllPSAppDataEntities() as dataEntitey> import ${dataEntitey.getCodeName()?lower_case}_zh_CN from '@locale/lanres/entities/${srffilepath2(dataEntitey.getCodeName())}/${srffilepath2(dataEntitey.getCodeName())}_zh_CN'; </#list> import components_zh_CN from '@locale/lanres/components/components_zh_CN'; import codelist_zh_CN from '@locale/lanres/codelist/codelist_zh_CN'; import userCustom_zh_CN from '@locale/lanres/userCustom/userCustom_zh_CN'; <#assign langrestype = 'ZH_CN'/> export default { <#-- 本地化语言资源 中文 --> app: { commonWords:{ error: "失败", success: "成功", ok: "确认", cancel: "取消", }, local:{ new: "新建" }, gridpage: { choicecolumns: "选择列", refresh: "刷新", show: "显示", records: "条", totle: "共", }, tabpage: { sureclosetip: { title: "关闭提醒", content: "表单数据已经修改,确定要关闭?", }, closeall: "关闭所有", closeother: "关闭其他", }, fileUpload: { caption: "上传", }, searchButton: { search: "搜索", reset: "重置", }, calendar:{ today: "今天", month: "月", week: "周", day: "天", list: "列", dateSelectModalTitle: "选择要跳转的时间", gotoDate: "跳转", }, // 非实体视图 views: { <#if app.isPubRefViewOnly()><#assign allAppViews = app.getAllRefPSAppViews()/><#else><#assign allAppViews = app.getAllPSAppViews()/></#if> <#if allAppViews??> <#list allAppViews as obj> <#if !obj.isPSDEView()> ${obj.getCodeName()?lower_case}: { caption: "<#ibizinclude>../@MACRO/CAPTIONLANG.ts</#ibizinclude>", title: "<@getTitleLanguage obj langrestype />", }, </#if> </#list> </#if> }, utilview:{ importview:"导入数据", warning:"警告", info:"请配置数据导入项" }, menus: { <#list app.getAllPSAppMenuModels() as menu> ${menu.getCodeName()?lower_case}: { <#list menu.getAllPSAppMenuItems() as obj> ${obj.getName()?lower_case}: "<#ibizinclude>../@MACRO/CAPTIONLANG.ts</#ibizinclude>", </#list> }, </#list> }, }, entities: { <#list app.getAllPSAppDataEntities() as dataEntitey> ${dataEntitey.getCodeName()?lower_case}: ${dataEntitey.getCodeName()?lower_case}_zh_CN, </#list> }, components: components_zh_CN, codelist: codelist_zh_CN, userCustom: userCustom_zh_CN, };