mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-16 01:40:53 +08:00
fix:国际化针对lodash template模板bug [amis-saas-6285] 卡片随机
Change-Id: Icbfa4fc79869e26b661d6137fc523a8191cec931
This commit is contained in:
parent
21ed8fbb55
commit
9e9594e745
File diff suppressed because it is too large
Load Diff
@ -174,8 +174,6 @@ extendLocale('zh-CN', {
|
|||||||
'2e28645c67c5742e473888a27aab7bd6':
|
'2e28645c67c5742e473888a27aab7bd6':
|
||||||
'使按钮组宽度占满父容器,各按钮宽度自适应',
|
'使按钮组宽度占满父容器,各按钮宽度自适应',
|
||||||
'66774850742a81e8b2393195290b7330': '按钮管理',
|
'66774850742a81e8b2393195290b7330': '按钮管理',
|
||||||
'fd179c2844536ce198290441c38c814e':
|
|
||||||
'<span class=label label-default><% if (data.type === button-group) { %> 按钮组 <% } else { %><%= data.label %><% if (data.icon) { %><i class=<%= data.icon %>/><% }%><% } %></span>',
|
|
||||||
'f9f2b9cc91cd332db6b2b732c3869233': '新增按钮',
|
'f9f2b9cc91cd332db6b2b732c3869233': '新增按钮',
|
||||||
'40f3bc0a4f4d0f4230fc7fa6f4fcec92': '子按钮',
|
'40f3bc0a4f4d0f4230fc7fa6f4fcec92': '子按钮',
|
||||||
'f05dd80af77a441216ef940e7887a8db': '按钮工具栏',
|
'f05dd80af77a441216ef940e7887a8db': '按钮工具栏',
|
||||||
@ -1522,8 +1520,7 @@ extendLocale('zh-CN', {
|
|||||||
'b6f2fcb279241fe5ff9a8052a444266a':
|
'b6f2fcb279241fe5ff9a8052a444266a':
|
||||||
'<span class=label label-default>列${index | plus}</span>',
|
'<span class=label label-default>列${index | plus}</span>',
|
||||||
'cb2f68c9c24e85d21e6b090b6e5657d8': '列',
|
'cb2f68c9c24e85d21e6b090b6e5657d8': '列',
|
||||||
'372097f745fe808e301d2e3d9a859e7a':
|
'92e2c6523449dfad4350f58908260266': '请按住高亮框右侧方块拖动调整宽度',
|
||||||
'<% if (this.width && this.width !== auto) {%>请按住高亮框右侧方块拖动调整宽度<%}%>',
|
|
||||||
'129b16a89a82c6d5e03ab075633b3892': '列 CSS 类名',
|
'129b16a89a82c6d5e03ab075633b3892': '列 CSS 类名',
|
||||||
'd34cc10492e80595a901a292d0c16bb8':
|
'd34cc10492e80595a901a292d0c16bb8':
|
||||||
'可以添加宽度类样式调整宽度,默认宽度为平均分配。',
|
'可以添加宽度类样式调整宽度,默认宽度为平均分配。',
|
||||||
@ -2156,8 +2153,9 @@ extendLocale('zh-CN', {
|
|||||||
'8dc91bca9bc83efea73150e3478657fc': '发送条件',
|
'8dc91bca9bc83efea73150e3478657fc': '发送条件',
|
||||||
'd811d2650a17fb7cac710e9376645287': '如:this.type == 123',
|
'd811d2650a17fb7cac710e9376645287': '如:this.type == 123',
|
||||||
'91ee84292a5bf5e59d3b6309f948f2f1': '用表达式来设置该请求的发送条件',
|
'91ee84292a5bf5e59d3b6309f948f2f1': '用表达式来设置该请求的发送条件',
|
||||||
'd9c62bc61e1ca3987e449508c5f69193':
|
'55409342e28d37db86fb23efbd84a025': '发送体格式为',
|
||||||
'发送体格式为:<%= data.dataType === json ? application/json : data.dataType === form-data ? multipart/form-data : data.dataType === form ? application/x-www-form-urlencoded : %>,当发送内容中存在文件时会自动使用 form-data 格式。',
|
'e06a14abe7ef66a8ead143db4ae9786e':
|
||||||
|
'当发送内容中存在文件时会自动使用 form-data 格式。',
|
||||||
'773a0e8384fd6f784088b829d7cc2f68': '是否设置缓存',
|
'773a0e8384fd6f784088b829d7cc2f68': '是否设置缓存',
|
||||||
'c1b110f13431df9662299f26def71df1': '设置该请求缓存有效时间,单位 ms',
|
'c1b110f13431df9662299f26def71df1': '设置该请求缓存有效时间,单位 ms',
|
||||||
'a18ea11244325dd3d20c5988bc7f6e39': '文件下载',
|
'a18ea11244325dd3d20c5988bc7f6e39': '文件下载',
|
||||||
|
@ -93,7 +93,7 @@ export class ButtonGroupPlugin extends BasePlugin {
|
|||||||
type: 'tpl',
|
type: 'tpl',
|
||||||
inline: false,
|
inline: false,
|
||||||
className: 'p-t-xs',
|
className: 'p-t-xs',
|
||||||
tpl: '<span class="label label-default"><% if (data.type === "button-group") { %> 按钮组 <% } else { %><%= data.label %><% if (data.icon) { %><i class="<%= data.icon %>"/><% }%><% } %></span>'
|
tpl: `<span class="label label-default"><% if (data.type === "button-group") { %> ${'按钮组'} <% } else { %><%= data.label %><% if (data.icon) { %><i class="<%= data.icon %>"/><% }%><% } %></span>`
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
addButtonText: '新增按钮',
|
addButtonText: '新增按钮',
|
||||||
|
@ -55,8 +55,7 @@ export class ButtonToolbarPlugin extends BasePlugin {
|
|||||||
type: 'tpl',
|
type: 'tpl',
|
||||||
inline: false,
|
inline: false,
|
||||||
className: 'p-t-xs',
|
className: 'p-t-xs',
|
||||||
tpl:
|
tpl: `<span class="label label-default"><% if (data.type === "button-group") { %> ${'按钮组'} <% } else { %><%= data.label %><% if (data.icon) { %><i class="<%= data.icon %>"/><% }%><% } %></span>`
|
||||||
'<span class="label label-default"><% if (data.type === "button-group") { %> 按钮组 <% } else { %><%= data.label %><% if (data.icon) { %><i class="<%= data.icon %>"/><% }%><% } %></span>'
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
addButtonText: '新增按钮',
|
addButtonText: '新增按钮',
|
||||||
|
@ -93,8 +93,7 @@ export class ButtonToolbarControlPlugin extends BasePlugin {
|
|||||||
{
|
{
|
||||||
type: 'tpl',
|
type: 'tpl',
|
||||||
inline: false,
|
inline: false,
|
||||||
tpl:
|
tpl: `<span class="label label-default"><% if (data.type === "button-group") { %> ${'按钮组'} <% } else { %><%= data.label %><% if (data.icon) { %><i class="<%= data.icon %>"/><% }%><% } %></span>`
|
||||||
'<span class="label label-default"><% if (data.type === "button-group") { %> 按钮组 <% } else { %><%= data.label %><% if (data.icon) { %><i class="<%= data.icon %>"/><% }%><% } %></span>'
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
addButtonText: '新增按钮',
|
addButtonText: '新增按钮',
|
||||||
|
@ -179,8 +179,7 @@ export class HBoxPlugin extends BasePlugin {
|
|||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
type: 'tpl',
|
type: 'tpl',
|
||||||
tpl:
|
tpl: `<span class="label label-default">${'列'}\${index | plus}</span>`,
|
||||||
'<span class="label label-default">列${index | plus}</span>',
|
|
||||||
columnClassName: 'no-grow v-middle'
|
columnClassName: 'no-grow v-middle'
|
||||||
},
|
},
|
||||||
getSchemaTpl('className', {
|
getSchemaTpl('className', {
|
||||||
@ -378,8 +377,7 @@ export class HBoxPlugin extends BasePlugin {
|
|||||||
label: '手动'
|
label: '手动'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
description:
|
description: `<% if (this.width && this.width !== "auto") {%>${'请按住高亮框右侧方块拖动调整宽度'}<%}%>`
|
||||||
'<% if (this.width && this.width !== "auto") {%>请按住高亮框右侧方块拖动调整宽度<%}%>'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}),
|
}),
|
||||||
|
@ -403,8 +403,7 @@ export default class APIControl extends React.Component<
|
|||||||
name: 'dataType',
|
name: 'dataType',
|
||||||
size: 'sm',
|
size: 'sm',
|
||||||
mode: 'horizontal',
|
mode: 'horizontal',
|
||||||
description:
|
description: `${'发送体格式为'}:<%= data.dataType === "json" ? "application/json" : (data.dataType === "form-data" ? "multipart/form-data" : (data.dataType === "form" ? "application/x-www-form-urlencoded" : "")) %>,${'当发送内容中存在文件时会自动使用 form-data 格式。'}`,
|
||||||
'发送体格式为:<%= data.dataType === "json" ? "application/json" : (data.dataType === "form-data" ? "multipart/form-data" : (data.dataType === "form" ? "application/x-www-form-urlencoded" : "")) %>,当发送内容中存在文件时会自动使用 form-data 格式。',
|
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
label: 'JSON',
|
label: 'JSON',
|
||||||
|
@ -405,8 +405,7 @@ export default class APIControl extends React.Component<
|
|||||||
name: 'dataType',
|
name: 'dataType',
|
||||||
size: 'sm',
|
size: 'sm',
|
||||||
mode: 'horizontal',
|
mode: 'horizontal',
|
||||||
description:
|
description: `${'发送体格式为'}:<%= data.dataType === "json" ? "application/json" : (data.dataType === "form-data" ? "multipart/form-data" : (data.dataType === "form" ? "application/x-www-form-urlencoded" : "")) %>,${'当发送内容中存在文件时会自动使用 form-data 格式。'}`,
|
||||||
'发送体格式为:<%= data.dataType === "json" ? "application/json" : (data.dataType === "form-data" ? "multipart/form-data" : (data.dataType === "form" ? "application/x-www-form-urlencoded" : "")) %>,当发送内容中存在文件时会自动使用 form-data 格式。',
|
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
label: 'JSON',
|
label: 'JSON',
|
||||||
|
@ -223,8 +223,7 @@ setSchemaTpl('api', (patch: any = {}) => {
|
|||||||
label: '数据格式',
|
label: '数据格式',
|
||||||
type: 'button-group-select',
|
type: 'button-group-select',
|
||||||
name: 'dataType',
|
name: 'dataType',
|
||||||
description:
|
description: `${'发送体格式为'}:<%= data.dataType === "json" ? "application/json" : (data.dataType === "form-data" ? "multipart/form-data" : (data.dataType === "form" ? "application/x-www-form-urlencoded" : "")) %>,${'当发送内容中存在文件时会自动使用 form-data 格式。'}`,
|
||||||
'发送体格式为:<%= data.dataType === "json" ? "application/json" : (data.dataType === "form-data" ? "multipart/form-data" : (data.dataType === "form" ? "application/x-www-form-urlencoded" : "")) %>,当发送内容中存在文件时会自动使用 form-data 格式。',
|
|
||||||
size: 'sm',
|
size: 'sm',
|
||||||
className: 'block',
|
className: 'block',
|
||||||
mode: 'inline',
|
mode: 'inline',
|
||||||
|
Loading…
Reference in New Issue
Block a user