fix(web): workflow bug
This commit is contained in:
@@ -1793,12 +1793,20 @@ Memory Bear: After the rebellion, regional warlordism intensified for several re
|
||||
"not_contains": 'Does Not Contain',
|
||||
"startwith": 'Starts With',
|
||||
"endwith": 'Ends With',
|
||||
"eq": '==',
|
||||
"ne": '!=',
|
||||
"lt": '<',
|
||||
"le": '<=',
|
||||
"gt": '>',
|
||||
"ge": '>=',
|
||||
"eq": 'Equals',
|
||||
"ne": 'Not Equals',
|
||||
num: {
|
||||
"eq": '=',
|
||||
"ne": '≠',
|
||||
"lt": '<',
|
||||
"le": '≤',
|
||||
"gt": '>',
|
||||
"ge": '≥',
|
||||
},
|
||||
boolean: {
|
||||
"eq": 'Is',
|
||||
"ne": 'Is Not',
|
||||
},
|
||||
else_desc: 'Used to define the logic that should be executed when the if condition is not met.'
|
||||
},
|
||||
'http-request': {
|
||||
@@ -1839,12 +1847,17 @@ Memory Bear: After the rebellion, regional warlordism intensified for several re
|
||||
loop: {
|
||||
cycle_vars: 'Loop Variables',
|
||||
condition: 'Loop Termination Condition',
|
||||
max_loop: 'Maximum Loop Count',
|
||||
},
|
||||
assigner: {
|
||||
assignments: 'Variables',
|
||||
cover: 'Overwrite',
|
||||
cover: 'Override',
|
||||
assign: 'Set',
|
||||
clear: 'Clear'
|
||||
clear: 'Clear',
|
||||
add: '+=',
|
||||
subtract: '-=',
|
||||
multiply: '*=',
|
||||
divide: '/=',
|
||||
},
|
||||
iteration: {
|
||||
input: 'Input Variable',
|
||||
|
||||
@@ -1893,12 +1893,20 @@ export const zh = {
|
||||
"not_contains": '不包含',
|
||||
"startwith": '开始是',
|
||||
"endwith": '结束是',
|
||||
"eq": '==',
|
||||
"ne": '!=',
|
||||
"lt": '<',
|
||||
"le": '<=',
|
||||
"gt": '>',
|
||||
"ge": '>=',
|
||||
"eq": '是',
|
||||
"ne": '不是',
|
||||
num: {
|
||||
"eq": '=',
|
||||
"ne": '≠',
|
||||
"lt": '<',
|
||||
"le": '≤',
|
||||
"gt": '>',
|
||||
"ge": '≥',
|
||||
},
|
||||
boolean: {
|
||||
"eq": '是',
|
||||
"ne": '不是',
|
||||
},
|
||||
else_desc: '用于定义当 if 条件不满足时应执行的逻辑。'
|
||||
},
|
||||
'http-request': {
|
||||
@@ -1939,12 +1947,17 @@ export const zh = {
|
||||
loop: {
|
||||
cycle_vars: '循环变量',
|
||||
condition: '循环终止条件',
|
||||
max_loop: '最大循环次数',
|
||||
},
|
||||
assigner: {
|
||||
assignments: '变量',
|
||||
cover: '覆盖',
|
||||
assign: '设置',
|
||||
clear: '清空'
|
||||
clear: '清空',
|
||||
add: '+=',
|
||||
subtract: '-=',
|
||||
multiply: '*=',
|
||||
divide: '/=',
|
||||
},
|
||||
iteration: {
|
||||
input: '输入变量',
|
||||
|
||||
Reference in New Issue
Block a user