feat: add missing i18n items.
This commit is contained in:
parent
8d910c7f34
commit
cc97abd7ea
@ -205,6 +205,7 @@ const translation = {
|
||||
testRunIteration: 'Test Run Iteration',
|
||||
back: 'Back',
|
||||
iteration: 'Iteration',
|
||||
loop: 'Loop',
|
||||
},
|
||||
tabs: {
|
||||
'searchBlock': 'Search block',
|
||||
@ -242,6 +243,8 @@ const translation = {
|
||||
'document-extractor': 'Doc Extractor',
|
||||
'list-operator': 'List Operator',
|
||||
'agent': 'Agent',
|
||||
'loop-start': 'Loop Start',
|
||||
'loop': 'Loop',
|
||||
},
|
||||
blocksAbout: {
|
||||
'start': 'Define the initial parameters for launching a workflow',
|
||||
@ -258,6 +261,7 @@ const translation = {
|
||||
'assigner': 'The variable assignment node is used for assigning values to writable variables(like conversation variables).',
|
||||
'variable-aggregator': 'Aggregate multi-branch variables into a single variable for unified configuration of downstream nodes.',
|
||||
'iteration': 'Perform multiple steps on a list object until all results are outputted.',
|
||||
'loop': 'Execute a loop of logic until the termination condition is met or the maximum loop count is reached.',
|
||||
'parameter-extractor': 'Use LLM to extract structured parameters from natural language for tool invocations or HTTP requests.',
|
||||
'document-extractor': 'Used to parse uploaded documents into text content that is easily understandable by LLM.',
|
||||
'list-operator': 'Used to filter or sort array content.',
|
||||
@ -657,6 +661,24 @@ const translation = {
|
||||
},
|
||||
answerNodeWarningDesc: 'Parallel mode warning: Answer nodes, conversation variable assignments, and persistent read/write operations within iterations may cause exceptions.',
|
||||
},
|
||||
loop: {
|
||||
deleteTitle: 'Delete Loop Node?',
|
||||
deleteDesc: 'Deleting the loop node will remove all child nodes',
|
||||
input: 'Input',
|
||||
output: 'Output Variable',
|
||||
loop_one: '{{count}} Loop',
|
||||
loop_other: '{{count}} Loops',
|
||||
currentLoop: 'Current Loop',
|
||||
breakCondition: 'Loop Termination Condition',
|
||||
loopMaxCount: 'Maximum Loop Count',
|
||||
loopMaxCountError: 'Please enter a valid maximum loop count, ranging from 1 to 100',
|
||||
errorResponseMethod: 'Error Response Method',
|
||||
ErrorMethod: {
|
||||
operationTerminated: 'Terminated',
|
||||
continueOnError: 'Continue on Error',
|
||||
removeAbnormalOutput: 'Remove Abnormal Output',
|
||||
},
|
||||
},
|
||||
note: {
|
||||
addNote: 'Add Note',
|
||||
editor: {
|
||||
|
Loading…
Reference in New Issue
Block a user