tachybase_todo/packages/plugins/workflow/src/client/locale/en-US.ts

137 lines
5.6 KiB
TypeScript
Raw Normal View History

export default {
Workflow: 'Workflow',
'Execution history': 'Execution history',
Executed: 'Executed',
'Trigger type': 'Trigger type',
Status: 'Status',
On: 'On',
Off: 'Off',
Version: 'Version',
'Copy to new version': 'Copy to new version',
Duplicate: 'Duplicate',
Loading: 'Loading',
'Load failed': 'Load failed',
Trigger: 'Trigger',
'Trigger variables': 'Trigger variables',
'Trigger data': 'Trigger data',
'Trigger time': 'Trigger time',
'Triggered at': 'Triggered at',
'Collection event': 'Collection event',
'Trigger on': 'Trigger on',
'After record added': 'After record added',
'After record updated': 'After record updated',
'After record added or updated': 'After record added or updated',
'After record deleted': 'After record deleted',
'Changed fields': 'Changed fields',
'Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.':
'Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When record is added or deleted, any field is considered to have been changed.',
'Only triggers when match conditions': 'Only triggers when match conditions',
'Schedule event': 'Schedule event',
'Trigger mode': 'Trigger mode',
'Based on certain date': 'Based on certain date',
'Based on date field of collection': 'Based on date field of collection',
'Starts on': 'Starts on',
'Ends on': 'Ends on',
'No end': 'No end',
'Exactly at': 'Exactly at',
'Repeat mode': 'Repeat mode',
'Repeat limit': 'Repeat limit',
'No limit': 'No limit',
Seconds: 'Seconds',
Minutes: 'Minutes',
Hours: 'Hours',
Days: 'Days',
Weeks: 'Weeks',
Months: 'Months',
'No repeat': 'No repeat',
Every: 'Every',
'By minute': 'By minute',
'By hour': 'By hour',
'By day': 'By day',
'By week': 'By week',
'By month': 'By month',
'By field': 'By field',
'By custom date': 'By custom date',
Advanced: 'Advanced',
End: 'End',
'Node result': 'Node result',
Constant: 'Constant',
Null: 'Null',
Boolean: 'Boolean',
String: 'String',
Calculator: 'Calculator',
'Arithmetic calculation': 'Arithmetic calculation',
'String operation': 'String operation',
'Executed at': 'Executed at',
Queueing: 'Queueing',
'On going': 'On going',
Succeeded: 'Succeeded',
Failed: 'Failed',
Pending: 'Pending',
Canceled: 'Canceled',
'This node contains branches, deleting will also be preformed to them, are you sure?':
'This node contains branches, deleting will also be preformed to them, are you sure?',
Control: 'Control',
'Collection operations': 'Collection operations',
'Extended types': 'Extended types',
'Node type': 'Node type',
Calculation: 'Calculation',
'Configure calculation': 'Configure calculation',
'Calculation result': 'Calculation result',
True: 'True',
False: 'False',
concat: 'concat',
Condition: 'Condition',
Mode: 'Mode',
'Continue when "Yes"': 'Continue when "Yes"',
'Branch into "Yes" and "No"': 'Branch into "Yes" and "No"',
Conditions: 'Conditions',
'Parallel branch': 'Parallel branch',
'Add branch': 'Add branch',
'All succeeded': 'All succeeded',
'Any succeeded': 'Any succeeded',
'Any succeeded or failed': 'Any succeeded or failed',
'Continue after all branches succeeded': 'Continue after all branches succeeded',
'Continue after any branch succeeded': 'Continue after any branch succeeded',
'Continue after any branch succeeded, or exit after any branch failed':
'Continue after any branch succeeded, or exit after any branch failed',
Delay: 'Delay',
Duration: 'Duration',
'End Status': 'End Status',
'Select status': 'Select status',
'Succeed and continue': 'Succeed and continue',
'Fail and exit': 'Fail and exit',
'Create record': 'Create record',
'Update record': 'Update record',
'Query record': 'Query record',
'Multiple records': 'Multiple records',
'Please select collection first': 'Please select collection first',
'Only update records matching conditions': 'Only update records matching conditions',
'Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.':
'Fields that are not assigned a value will be set to the default value, and those that do not have a default value are set to null.',
'Trigger in executed workflow cannot be modified': 'Trigger in executed workflow cannot be modified',
'Node in executed workflow cannot be modified': 'Node in executed workflow cannot be modified',
'Can not delete': 'Can not delete',
'The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.':
'The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.',
'HTTP request': 'HTTP request',
'HTTP method': 'HTTP method',
URL: 'URL',
Headers: 'Headers',
'Add request header': 'Add request header',
Parameters: 'Parameters',
'Add parameter': 'Add parameter',
Body: 'Body',
Feat(plugin-workflow) manual instruction (#1339) * feat(plugin-workflow): add prompt node * feat(plugin-workflow): useValueGetter for all instructions and triggers * feat(plugin-workflow): add workflow block initializer * refactor(plugin-workflow): change prompt node type to manual * feat(plugin-workflow): add ModeConfig component for mode * feat(plugin-workflow): add todo drawer * feat(plugin-workflow): add block value provider * feat(plugin-workflow): improve todo block and drawer * fix(plugin-workflow): fix instruction name in test cases * fix(plugin-workflow): fix test cases * refactor(plugin-workflow): change param type of collection field initializer * feat(plugin-workflow): add filter types for getters * fix(plugin-workflow): fix assignees variable * fix(plugin-workflow): filter todo by exist workflow * fix(plugin-workflow): fix duplicated save action in manual config * fix(plugin-workflow): fix transaction * feat(plugin-workflow): destroy workflow will be cascaded * fix(plugin-workflow): fix merge * fix(plugin-workflow): fix locale * fix(plugin-workflow): allow open ui view when executed * fix(plugin-workflow): change todo table filter * feat(plugin-workflow): use formula for calculation * fix(plugin-workflow): fix variable template regexp * fix(plugin-workflow): fix sub-options logic with types * refactor(plugin-workflow): drop useless component * fix(plugin-workflow): fix manual node action button * feat(plugin-workflow): add new variable input component * refactor(plugin-workflow): change all variable to new component * fix(plugin-workflow): fix type * fix(plugin-workflow): fix functions init * fix(plugin-workflow): change jsonb to json for stable order * fix(plugin-workflow): fix duplicated field name when initialize * fix(plugin-workflow): fix manual result in manual block * test(plugin-workflow): log field initializer props * fix(plugin-workflow): fix nullable arguments * test(plugin-workflow): test initializer fields schema * fix: observer * fix(plugin-workflow): adjust hints * fix(plugin-workflow): fix locale and cursor in variable input * refactor(plugin-workflow): change status keys * fix(plugin-workflow): fix parallel instruction * fix(plugin-workflow): fix calculation migration * fix(plugin-workflow): move tasks native filter to server * fix(plugin-workflow): fix manual options for variable * fix(plugin-workflow): fix conflict * fix(plugin-workflow): fix some bugs * fix(plugin-workflow): fix todo list filter and locale * fix(plugin-workflow): fix update action of workflow * refactor(plugin-workflow): add legacy condition calculation as basic engine * fix(plugin-workflow): fix type * fix(plugin-workflow): fix condition basic calculation * fix(plugin-workflow): fix type * fix(plugin-workflow): fix migration * fix(plugin-workflow): fix evaluators and scope * fix(plugin-workflow): remove disabled type select in schema config * fix(plugin-workflow): fix manual form schema designer --------- Co-authored-by: chenos <chenlinxh@gmail.com>
2023-02-20 11:52:06 +08:00
'Use variable': 'Use variable',
Format: 'Format',
Insert: 'Insert',
Feat(plugin-workflow) manual instruction (#1339) * feat(plugin-workflow): add prompt node * feat(plugin-workflow): useValueGetter for all instructions and triggers * feat(plugin-workflow): add workflow block initializer * refactor(plugin-workflow): change prompt node type to manual * feat(plugin-workflow): add ModeConfig component for mode * feat(plugin-workflow): add todo drawer * feat(plugin-workflow): add block value provider * feat(plugin-workflow): improve todo block and drawer * fix(plugin-workflow): fix instruction name in test cases * fix(plugin-workflow): fix test cases * refactor(plugin-workflow): change param type of collection field initializer * feat(plugin-workflow): add filter types for getters * fix(plugin-workflow): fix assignees variable * fix(plugin-workflow): filter todo by exist workflow * fix(plugin-workflow): fix duplicated save action in manual config * fix(plugin-workflow): fix transaction * feat(plugin-workflow): destroy workflow will be cascaded * fix(plugin-workflow): fix merge * fix(plugin-workflow): fix locale * fix(plugin-workflow): allow open ui view when executed * fix(plugin-workflow): change todo table filter * feat(plugin-workflow): use formula for calculation * fix(plugin-workflow): fix variable template regexp * fix(plugin-workflow): fix sub-options logic with types * refactor(plugin-workflow): drop useless component * fix(plugin-workflow): fix manual node action button * feat(plugin-workflow): add new variable input component * refactor(plugin-workflow): change all variable to new component * fix(plugin-workflow): fix type * fix(plugin-workflow): fix functions init * fix(plugin-workflow): change jsonb to json for stable order * fix(plugin-workflow): fix duplicated field name when initialize * fix(plugin-workflow): fix manual result in manual block * test(plugin-workflow): log field initializer props * fix(plugin-workflow): fix nullable arguments * test(plugin-workflow): test initializer fields schema * fix: observer * fix(plugin-workflow): adjust hints * fix(plugin-workflow): fix locale and cursor in variable input * refactor(plugin-workflow): change status keys * fix(plugin-workflow): fix parallel instruction * fix(plugin-workflow): fix calculation migration * fix(plugin-workflow): move tasks native filter to server * fix(plugin-workflow): fix manual options for variable * fix(plugin-workflow): fix conflict * fix(plugin-workflow): fix some bugs * fix(plugin-workflow): fix todo list filter and locale * fix(plugin-workflow): fix update action of workflow * refactor(plugin-workflow): add legacy condition calculation as basic engine * fix(plugin-workflow): fix type * fix(plugin-workflow): fix condition basic calculation * fix(plugin-workflow): fix type * fix(plugin-workflow): fix migration * fix(plugin-workflow): fix evaluators and scope * fix(plugin-workflow): remove disabled type select in schema config * fix(plugin-workflow): fix manual form schema designer --------- Co-authored-by: chenos <chenlinxh@gmail.com>
2023-02-20 11:52:06 +08:00
'Timeout config': 'Timeout config',
ms: 'ms',
'Input request data': 'Input request data',
'Only support standard JSON data': 'Only support standard JSON data',
'"Content-Type" only support "application/json", and no need to specify':
'"Content-Type" only support "application/json", and no need to specify',
'Ignore fail request and continue workflow': 'Ignore fail request and continue workflow',
};