Merge branch 'develop' of github.com:SuanmoSuanyangTechnology/MemoryBear into develop
This commit is contained in:
@@ -1224,6 +1224,8 @@ export const en = {
|
||||
key_findings: 'Key Findings',
|
||||
behavior_pattern: 'Behavior Pattern',
|
||||
growth_trajectory: 'Growth Trajectory',
|
||||
personality: 'Personality Traits',
|
||||
core_values: 'Core Values',
|
||||
},
|
||||
space: {
|
||||
createSpace: 'Create Space',
|
||||
@@ -1799,12 +1801,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': {
|
||||
@@ -1845,12 +1855,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',
|
||||
|
||||
@@ -1305,6 +1305,8 @@ export const zh = {
|
||||
key_findings: '关键发现',
|
||||
behavior_pattern: '行为模式',
|
||||
growth_trajectory: '成长轨迹',
|
||||
personality: '性格特点',
|
||||
core_values: '核心价值观',
|
||||
},
|
||||
space: {
|
||||
createSpace: '创建空间',
|
||||
@@ -1899,12 +1901,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': {
|
||||
@@ -1945,12 +1955,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