Feat: Display variables in the variable assignment node. #10427 (#11349)

### What problem does this PR solve?

Feat: Display variables in the variable assignment node. #10427

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-11-18 20:07:04 +08:00
committed by GitHub
parent 35e5fade93
commit 8cd4882596
5 changed files with 98 additions and 14 deletions

View File

@ -1852,6 +1852,19 @@ Important structured information may include: names, dates, locations, events, k
asc: 'Ascending',
desc: 'Descending',
},
variableAssignerLogicalOperatorOptions: {
overwrite: 'Overwrite',
clear: 'Clear',
set: 'Set',
'+=': 'Add',
'-=': 'Subtract',
'*=': 'Multiply',
'/=': 'Divide',
append: 'Append',
extend: 'Extend',
removeFirst: 'Remove first',
removeLast: 'Remove last',
},
},
llmTools: {
bad_calculator: {

View File

@ -1713,6 +1713,19 @@ Tokenizer 会根据所选方式将内容存储为对应的数据结构。`,
asc: '升序',
desc: '降序',
},
variableAssignerLogicalOperatorOptions: {
overwrite: '覆盖',
clear: '清除',
set: '设置',
add: '加',
subtract: '减',
multiply: '乘',
divide: '除',
append: '追加',
extend: '扩展',
removeFirst: '移除第一个',
removeLast: '移除最后一个',
},
},
footer: {
profile: 'All rights reserved @ React',