@nocobase/plugin-workflow 0.11.1-alpha.5 → 0.12.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client.d.ts +2 -3
- package/client.js +1 -1
- package/dist/client/index.js +7802 -0
- package/{lib → dist}/client/nodes/aggregate.d.ts +1 -5
- package/{lib → dist}/client/nodes/create.d.ts +1 -2
- package/{lib → dist}/client/nodes/destroy.d.ts +1 -1
- package/{lib → dist}/client/nodes/query.d.ts +1 -2
- package/{lib → dist}/client/nodes/request.d.ts +1 -2
- package/{lib → dist}/client/nodes/update.d.ts +1 -1
- package/{lib → dist}/client/schemas/collection.d.ts +1 -2
- package/{lib → dist}/client/triggers/collection.d.ts +6 -7
- package/{lib → dist}/index.d.ts +1 -0
- package/dist/index.js +18 -0
- package/dist/locale/en-US.js +133 -0
- package/{lib → dist}/locale/es-ES.js +51 -54
- package/dist/locale/fr-FR.js +133 -0
- package/dist/locale/ja-JP.js +91 -0
- package/dist/locale/pt-BR.js +133 -0
- package/dist/locale/ru-RU.js +91 -0
- package/dist/locale/tr-TR.js +91 -0
- package/dist/locale/zh-CN.js +216 -0
- package/dist/node_modules/cron-parser/.eslintrc.json +15 -0
- package/dist/node_modules/cron-parser/.travis.yml +7 -0
- package/dist/node_modules/cron-parser/LICENSE +21 -0
- package/dist/node_modules/cron-parser/component.json +11 -0
- package/dist/node_modules/cron-parser/index.d.ts +1 -0
- package/dist/node_modules/cron-parser/lib/date.js +252 -0
- package/dist/node_modules/cron-parser/lib/expression.js +983 -0
- package/dist/node_modules/cron-parser/lib/field_compactor.js +70 -0
- package/dist/node_modules/cron-parser/lib/field_stringify.js +38 -0
- package/dist/node_modules/cron-parser/lib/parser.js +1 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/build/amd/luxon.js +8489 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/build/cjs-browser/luxon.js +8487 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/build/global/luxon.js +8490 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/build/global/luxon.min.js +1 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/build/node/luxon.js +7522 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/package.json +96 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/datetime.js +2169 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/duration.js +880 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/errors.js +61 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/conversions.js +157 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/diff.js +80 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/digits.js +76 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/english.js +233 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/formats.js +191 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/formatter.js +386 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/invalid.js +14 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/locale.js +482 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/regexParser.js +335 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/tokenParser.js +424 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/util.js +292 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/impl/zoneUtil.js +36 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/info.js +193 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/interval.js +602 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/luxon.js +26 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/luxonFilled.js +13 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/settings.js +137 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/zone.js +88 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/zones/IANAZone.js +191 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/zones/fixedOffsetZone.js +94 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/zones/invalidZone.js +53 -0
- package/dist/node_modules/cron-parser/node_modules/luxon/src/zones/localZone.js +63 -0
- package/dist/node_modules/cron-parser/package.json +1 -0
- package/dist/node_modules/cron-parser/test/31_of_month.js +17 -0
- package/dist/node_modules/cron-parser/test/bug.js +29 -0
- package/dist/node_modules/cron-parser/test/crondate.js +16 -0
- package/dist/node_modules/cron-parser/test/crontab.example +7 -0
- package/dist/node_modules/cron-parser/test/empty_around_comma.js +22 -0
- package/dist/node_modules/cron-parser/test/expression.js +1489 -0
- package/dist/node_modules/cron-parser/test/field_compactor.js +250 -0
- package/dist/node_modules/cron-parser/test/field_stringify.js +84 -0
- package/dist/node_modules/cron-parser/test/fields.js +32 -0
- package/dist/node_modules/cron-parser/test/increment_on_first_iteration.js +22 -0
- package/dist/node_modules/cron-parser/test/index-ts3.test-d.ts +133 -0
- package/dist/node_modules/cron-parser/test/index.test-d.ts +138 -0
- package/dist/node_modules/cron-parser/test/leap_year.js +17 -0
- package/dist/node_modules/cron-parser/test/parser.js +46 -0
- package/dist/node_modules/cron-parser/test/parser_crondate_formats.js +145 -0
- package/dist/node_modules/cron-parser/test/parser_day_of_month.js +169 -0
- package/dist/node_modules/cron-parser/test/prev_date.js +32 -0
- package/dist/node_modules/cron-parser/test/stringify.js +402 -0
- package/dist/node_modules/cron-parser/test/timezone.js +422 -0
- package/dist/node_modules/cron-parser/types/common.d.ts +131 -0
- package/dist/node_modules/cron-parser/types/index.d.ts +45 -0
- package/dist/node_modules/cron-parser/types/ts3/index.d.ts +28 -0
- package/dist/node_modules/lru-cache/index-cjs.d.ts +7 -0
- package/dist/node_modules/lru-cache/index-cjs.js +1 -0
- package/dist/node_modules/lru-cache/index.d.ts +807 -0
- package/dist/node_modules/lru-cache/index.js +1334 -0
- package/dist/node_modules/lru-cache/index.min.js +2 -0
- package/dist/node_modules/lru-cache/package.json +1 -0
- package/dist/server/Plugin.js +297 -0
- package/{src/server/Processor.ts → dist/server/Processor.js} +80 -147
- package/dist/server/actions/index.js +49 -0
- package/{src/server/actions/nodes.ts → dist/server/actions/nodes.js} +55 -81
- package/{src/server/actions/workflows.ts → dist/server/actions/workflows.js} +60 -72
- package/dist/server/collections/executions.js +37 -0
- package/dist/server/collections/flow_nodes.js +56 -0
- package/dist/server/collections/jobs.js +33 -0
- package/dist/server/collections/workflows.js +90 -0
- package/{lib → dist}/server/constants.js +5 -8
- package/dist/server/fields/expression-field.js +11 -0
- package/dist/server/fields/index.js +11 -0
- package/dist/server/functions/index.js +13 -0
- package/dist/server/index.js +41 -0
- package/dist/server/instructions/aggregate.js +37 -0
- package/dist/server/instructions/calculation.js +34 -0
- package/dist/server/instructions/condition.js +123 -0
- package/{src/server/instructions/create.ts → dist/server/instructions/create.js} +17 -17
- package/dist/server/instructions/delay.js +87 -0
- package/dist/server/instructions/destroy.js +24 -0
- package/dist/server/instructions/index.js +40 -0
- package/{src/server/instructions/loop.ts → dist/server/instructions/loop.js} +21 -43
- package/{src/server/instructions/manual/actions.ts → dist/server/instructions/manual/actions.js} +18 -44
- package/dist/server/instructions/manual/collecions/jobs.js +21 -0
- package/dist/server/instructions/manual/collecions/users.js +19 -0
- package/dist/server/instructions/manual/collecions/users_jobs.js +52 -0
- package/{src/server/instructions/manual/forms/create.ts → dist/server/instructions/manual/forms/create.js} +8 -8
- package/dist/server/instructions/manual/forms/index.js +16 -0
- package/{src/server/instructions/manual/forms/update.ts → dist/server/instructions/manual/forms/update.js} +8 -8
- package/dist/server/instructions/manual/index.js +160 -0
- package/dist/server/instructions/parallel.js +105 -0
- package/dist/server/instructions/query.js +36 -0
- package/dist/server/instructions/request.js +69 -0
- package/dist/server/instructions/sql.js +26 -0
- package/dist/server/instructions/update.js +24 -0
- package/{src/server/migrations/20221129153547-calculation-variables.ts → dist/server/migrations/20221129153547-calculation-variables.js} +20 -19
- package/dist/server/migrations/20230221032941-change-request-body-type.js +71 -0
- package/dist/server/migrations/20230221071831-calculation-expression.js +94 -0
- package/dist/server/migrations/20230221121203-condition-calculation.js +41 -0
- package/dist/server/migrations/20230221162902-jsonb-to-json.js +52 -0
- package/dist/server/migrations/20230411034722-manual-multi-form.js +252 -0
- package/dist/server/migrations/20230612021134-manual-collection-block.js +126 -0
- package/dist/server/migrations/20230710115902-manual-action-values.js +74 -0
- package/{src/server/triggers/collection.ts → dist/server/triggers/collection.js} +34 -64
- package/dist/server/triggers/index.js +27 -0
- package/{src/server/triggers/schedule.ts → dist/server/triggers/schedule.js} +108 -220
- package/dist/server/types/Execution.js +8 -0
- package/dist/server/types/FlowNode.js +8 -0
- package/dist/server/types/Job.js +8 -0
- package/dist/server/types/Workflow.js +8 -0
- package/dist/server/types/index.js +2 -0
- package/{lib → dist}/server/utils.js +6 -8
- package/package.json +26 -37
- package/server.d.ts +2 -3
- package/server.js +1 -1
- package/lib/client/AddButton.js +0 -161
- package/lib/client/Branch.js +0 -50
- package/lib/client/CanvasContent.js +0 -51
- package/lib/client/ExecutionCanvas.js +0 -218
- package/lib/client/ExecutionLink.js +0 -48
- package/lib/client/ExecutionPage.js +0 -68
- package/lib/client/ExecutionResourceProvider.js +0 -48
- package/lib/client/FlowContext.js +0 -21
- package/lib/client/WorkflowCanvas.js +0 -300
- package/lib/client/WorkflowLink.js +0 -48
- package/lib/client/WorkflowPage.js +0 -70
- package/lib/client/WorkflowProvider.js +0 -100
- package/lib/client/components/CollectionBlockInitializer.js +0 -103
- package/lib/client/components/CollectionFieldset.js +0 -198
- package/lib/client/components/Duration.js +0 -72
- package/lib/client/components/DynamicExpression.js +0 -117
- package/lib/client/components/FieldsSelect.js +0 -72
- package/lib/client/components/FilterDynamicComponent.js +0 -34
- package/lib/client/components/NodeDescription.js +0 -73
- package/lib/client/components/NullRender.js +0 -9
- package/lib/client/components/OpenDrawer.js +0 -68
- package/lib/client/components/RadioWithTooltip.js +0 -65
- package/lib/client/components/ValueBlock.js +0 -103
- package/lib/client/components/renderEngineReference.js +0 -49
- package/lib/client/constants.js +0 -126
- package/lib/client/index.js +0 -121
- package/lib/client/interfaces/expression.js +0 -38
- package/lib/client/locale/index.js +0 -42
- package/lib/client/nodes/aggregate.js +0 -353
- package/lib/client/nodes/calculation.js +0 -292
- package/lib/client/nodes/condition.js +0 -531
- package/lib/client/nodes/create.js +0 -110
- package/lib/client/nodes/delay.js +0 -47
- package/lib/client/nodes/destroy.js +0 -49
- package/lib/client/nodes/index.js +0 -550
- package/lib/client/nodes/loop.js +0 -171
- package/lib/client/nodes/manual/AssigneesSelect.js +0 -56
- package/lib/client/nodes/manual/DetailsBlockProvider.js +0 -106
- package/lib/client/nodes/manual/FormBlockInitializer.js +0 -107
- package/lib/client/nodes/manual/FormBlockProvider.js +0 -113
- package/lib/client/nodes/manual/ModeConfig.js +0 -126
- package/lib/client/nodes/manual/SchemaConfig.js +0 -468
- package/lib/client/nodes/manual/WorkflowTodo.js +0 -642
- package/lib/client/nodes/manual/WorkflowTodoBlockInitializer.js +0 -60
- package/lib/client/nodes/manual/forms/create.js +0 -111
- package/lib/client/nodes/manual/forms/custom.js +0 -428
- package/lib/client/nodes/manual/forms/update.js +0 -168
- package/lib/client/nodes/manual/index.js +0 -168
- package/lib/client/nodes/manual/utils.js +0 -31
- package/lib/client/nodes/parallel.js +0 -162
- package/lib/client/nodes/query.js +0 -112
- package/lib/client/nodes/request.js +0 -225
- package/lib/client/nodes/sql.js +0 -61
- package/lib/client/nodes/update.js +0 -127
- package/lib/client/schemas/collection.js +0 -93
- package/lib/client/schemas/executions.js +0 -190
- package/lib/client/schemas/workflows.js +0 -397
- package/lib/client/style.js +0 -350
- package/lib/client/triggers/collection.js +0 -188
- package/lib/client/triggers/index.js +0 -356
- package/lib/client/triggers/schedule/EndsByField.js +0 -71
- package/lib/client/triggers/schedule/OnField.js +0 -117
- package/lib/client/triggers/schedule/RepeatField.js +0 -155
- package/lib/client/triggers/schedule/ScheduleConfig.js +0 -251
- package/lib/client/triggers/schedule/constants.js +0 -11
- package/lib/client/triggers/schedule/index.js +0 -101
- package/lib/client/triggers/schedule/locale/Cron.zh-CN.js +0 -48
- package/lib/client/utils.js +0 -59
- package/lib/client/variable.js +0 -319
- package/lib/index.js +0 -13
- package/lib/locale/en-US.js +0 -136
- package/lib/locale/fr-FR.js +0 -136
- package/lib/locale/ja-JP.js +0 -94
- package/lib/locale/pt-BR.js +0 -136
- package/lib/locale/ru-RU.js +0 -94
- package/lib/locale/tr-TR.js +0 -94
- package/lib/locale/zh-CN.js +0 -219
- package/lib/server/Plugin.js +0 -382
- package/lib/server/Processor.js +0 -394
- package/lib/server/actions/index.js +0 -30
- package/lib/server/actions/nodes.js +0 -269
- package/lib/server/actions/workflows.js +0 -273
- package/lib/server/collections/executions.js +0 -33
- package/lib/server/collections/flow_nodes.js +0 -53
- package/lib/server/collections/jobs.js +0 -30
- package/lib/server/collections/workflows.js +0 -76
- package/lib/server/fields/expression-field.js +0 -19
- package/lib/server/fields/index.js +0 -12
- package/lib/server/functions/index.js +0 -26
- package/lib/server/index.js +0 -55
- package/lib/server/instructions/aggregate.js +0 -57
- package/lib/server/instructions/calculation.js +0 -59
- package/lib/server/instructions/condition.js +0 -150
- package/lib/server/instructions/create.js +0 -60
- package/lib/server/instructions/delay.js +0 -118
- package/lib/server/instructions/destroy.js +0 -37
- package/lib/server/instructions/index.js +0 -44
- package/lib/server/instructions/loop.js +0 -107
- package/lib/server/instructions/manual/actions.js +0 -99
- package/lib/server/instructions/manual/collecions/jobs.js +0 -21
- package/lib/server/instructions/manual/collecions/users.js +0 -19
- package/lib/server/instructions/manual/collecions/users_jobs.js +0 -46
- package/lib/server/instructions/manual/forms/create.js +0 -52
- package/lib/server/instructions/manual/forms/index.js +0 -15
- package/lib/server/instructions/manual/forms/update.js +0 -53
- package/lib/server/instructions/manual/index.js +0 -174
- package/lib/server/instructions/parallel.js +0 -128
- package/lib/server/instructions/query.js +0 -53
- package/lib/server/instructions/request.js +0 -99
- package/lib/server/instructions/sql.js +0 -34
- package/lib/server/instructions/update.js +0 -38
- package/lib/server/migrations/20221129153547-calculation-variables.js +0 -92
- package/lib/server/migrations/20230221032941-change-request-body-type.js +0 -90
- package/lib/server/migrations/20230221071831-calculation-expression.js +0 -111
- package/lib/server/migrations/20230221121203-condition-calculation.js +0 -103
- package/lib/server/migrations/20230221162902-jsonb-to-json.js +0 -64
- package/lib/server/migrations/20230411034722-manual-multi-form.js +0 -297
- package/lib/server/migrations/20230612021134-manual-collection-block.js +0 -155
- package/lib/server/migrations/20230710115902-manual-action-values.js +0 -97
- package/lib/server/triggers/collection.js +0 -175
- package/lib/server/triggers/index.js +0 -46
- package/lib/server/triggers/schedule.js +0 -582
- package/lib/server/types/Execution.js +0 -15
- package/lib/server/types/FlowNode.js +0 -15
- package/lib/server/types/Job.js +0 -15
- package/lib/server/types/Workflow.js +0 -15
- package/lib/server/types/index.js +0 -5
- package/src/client/AddButton.tsx +0 -111
- package/src/client/Branch.tsx +0 -37
- package/src/client/CanvasContent.tsx +0 -25
- package/src/client/ExecutionCanvas.tsx +0 -166
- package/src/client/ExecutionLink.tsx +0 -16
- package/src/client/ExecutionPage.tsx +0 -45
- package/src/client/ExecutionResourceProvider.tsx +0 -21
- package/src/client/FlowContext.ts +0 -7
- package/src/client/WorkflowCanvas.tsx +0 -221
- package/src/client/WorkflowLink.tsx +0 -16
- package/src/client/WorkflowPage.tsx +0 -52
- package/src/client/WorkflowProvider.tsx +0 -84
- package/src/client/components/CollectionBlockInitializer.tsx +0 -71
- package/src/client/components/CollectionFieldset.tsx +0 -152
- package/src/client/components/Duration.tsx +0 -45
- package/src/client/components/DynamicExpression.tsx +0 -57
- package/src/client/components/FieldsSelect.tsx +0 -32
- package/src/client/components/FilterDynamicComponent.tsx +0 -15
- package/src/client/components/NodeDescription.tsx +0 -51
- package/src/client/components/NullRender.tsx +0 -3
- package/src/client/components/OpenDrawer.tsx +0 -24
- package/src/client/components/RadioWithTooltip.tsx +0 -38
- package/src/client/components/ValueBlock.tsx +0 -67
- package/src/client/components/renderEngineReference.tsx +0 -30
- package/src/client/constants.tsx +0 -91
- package/src/client/index.tsx +0 -51
- package/src/client/interfaces/expression.tsx +0 -25
- package/src/client/locale/index.ts +0 -18
- package/src/client/nodes/aggregate.tsx +0 -327
- package/src/client/nodes/calculation.tsx +0 -216
- package/src/client/nodes/condition.tsx +0 -463
- package/src/client/nodes/create.tsx +0 -85
- package/src/client/nodes/delay.tsx +0 -37
- package/src/client/nodes/destroy.tsx +0 -34
- package/src/client/nodes/index.tsx +0 -500
- package/src/client/nodes/loop.tsx +0 -144
- package/src/client/nodes/manual/AssigneesSelect.tsx +0 -33
- package/src/client/nodes/manual/DetailsBlockProvider.tsx +0 -80
- package/src/client/nodes/manual/FormBlockInitializer.tsx +0 -69
- package/src/client/nodes/manual/FormBlockProvider.tsx +0 -75
- package/src/client/nodes/manual/ModeConfig.tsx +0 -84
- package/src/client/nodes/manual/SchemaConfig.tsx +0 -509
- package/src/client/nodes/manual/WorkflowTodo.tsx +0 -607
- package/src/client/nodes/manual/WorkflowTodoBlockInitializer.tsx +0 -28
- package/src/client/nodes/manual/forms/create.tsx +0 -92
- package/src/client/nodes/manual/forms/custom.tsx +0 -392
- package/src/client/nodes/manual/forms/update.tsx +0 -134
- package/src/client/nodes/manual/index.tsx +0 -162
- package/src/client/nodes/manual/utils.ts +0 -28
- package/src/client/nodes/parallel.tsx +0 -138
- package/src/client/nodes/query.tsx +0 -88
- package/src/client/nodes/request.tsx +0 -185
- package/src/client/nodes/sql.tsx +0 -37
- package/src/client/nodes/update.tsx +0 -100
- package/src/client/schemas/collection.ts +0 -75
- package/src/client/schemas/executions.tsx +0 -169
- package/src/client/schemas/workflows.ts +0 -364
- package/src/client/style.tsx +0 -350
- package/src/client/triggers/collection.tsx +0 -190
- package/src/client/triggers/index.tsx +0 -311
- package/src/client/triggers/schedule/EndsByField.tsx +0 -40
- package/src/client/triggers/schedule/OnField.tsx +0 -64
- package/src/client/triggers/schedule/RepeatField.tsx +0 -116
- package/src/client/triggers/schedule/ScheduleConfig.tsx +0 -227
- package/src/client/triggers/schedule/constants.ts +0 -4
- package/src/client/triggers/schedule/index.tsx +0 -78
- package/src/client/triggers/schedule/locale/Cron.zh-CN.ts +0 -79
- package/src/client/utils.ts +0 -36
- package/src/client/variable.tsx +0 -318
- package/src/index.ts +0 -1
- package/src/locale/en-US.ts +0 -136
- package/src/locale/es-ES.ts +0 -129
- package/src/locale/fr-FR.ts +0 -137
- package/src/locale/ja-JP.ts +0 -90
- package/src/locale/pt-BR.ts +0 -136
- package/src/locale/ru-RU.ts +0 -90
- package/src/locale/tr-TR.ts +0 -90
- package/src/locale/zh-CN.ts +0 -248
- package/src/server/Plugin.ts +0 -355
- package/src/server/__tests__/Plugin.test.ts +0 -398
- package/src/server/__tests__/Processor.test.ts +0 -474
- package/src/server/__tests__/actions/workflows.test.ts +0 -419
- package/src/server/__tests__/collections/categories.ts +0 -27
- package/src/server/__tests__/collections/comments.ts +0 -24
- package/src/server/__tests__/collections/posts.ts +0 -42
- package/src/server/__tests__/collections/replies.ts +0 -9
- package/src/server/__tests__/collections/tags.ts +0 -15
- package/src/server/__tests__/index.ts +0 -89
- package/src/server/__tests__/instructions/aggregate.test.ts +0 -294
- package/src/server/__tests__/instructions/calculation.test.ts +0 -265
- package/src/server/__tests__/instructions/condition.test.ts +0 -434
- package/src/server/__tests__/instructions/create.test.ts +0 -129
- package/src/server/__tests__/instructions/delay.test.ts +0 -182
- package/src/server/__tests__/instructions/destroy.test.ts +0 -58
- package/src/server/__tests__/instructions/loop.test.ts +0 -331
- package/src/server/__tests__/instructions/manual.test.ts +0 -1173
- package/src/server/__tests__/instructions/parallel.test.ts +0 -445
- package/src/server/__tests__/instructions/query.test.ts +0 -359
- package/src/server/__tests__/instructions/request.test.ts +0 -247
- package/src/server/__tests__/instructions/sql.test.ts +0 -162
- package/src/server/__tests__/instructions/update.test.ts +0 -189
- package/src/server/__tests__/triggers/collection.test.ts +0 -333
- package/src/server/__tests__/triggers/schedule.test.ts +0 -369
- package/src/server/actions/index.ts +0 -25
- package/src/server/collections/executions.ts +0 -35
- package/src/server/collections/flow_nodes.ts +0 -54
- package/src/server/collections/jobs.ts +0 -31
- package/src/server/collections/workflows.ts +0 -88
- package/src/server/constants.ts +0 -26
- package/src/server/fields/expression-field.ts +0 -11
- package/src/server/fields/index.ts +0 -7
- package/src/server/functions/index.ts +0 -16
- package/src/server/index.ts +0 -6
- package/src/server/instructions/aggregate.ts +0 -42
- package/src/server/instructions/calculation.ts +0 -41
- package/src/server/instructions/condition.ts +0 -172
- package/src/server/instructions/delay.ts +0 -105
- package/src/server/instructions/destroy.ts +0 -23
- package/src/server/instructions/index.ts +0 -64
- package/src/server/instructions/manual/collecions/jobs.ts +0 -17
- package/src/server/instructions/manual/collecions/users.ts +0 -15
- package/src/server/instructions/manual/collecions/users_jobs.ts +0 -50
- package/src/server/instructions/manual/forms/index.ts +0 -12
- package/src/server/instructions/manual/index.ts +0 -184
- package/src/server/instructions/parallel.ts +0 -121
- package/src/server/instructions/query.ts +0 -42
- package/src/server/instructions/request.ts +0 -88
- package/src/server/instructions/sql.ts +0 -25
- package/src/server/instructions/update.ts +0 -24
- package/src/server/migrations/20230221032941-change-request-body-type.ts +0 -76
- package/src/server/migrations/20230221071831-calculation-expression.ts +0 -102
- package/src/server/migrations/20230221121203-condition-calculation.ts +0 -82
- package/src/server/migrations/20230221162902-jsonb-to-json.ts +0 -51
- package/src/server/migrations/20230411034722-manual-multi-form.ts +0 -282
- package/src/server/migrations/20230612021134-manual-collection-block.ts +0 -138
- package/src/server/migrations/20230710115902-manual-action-values.ts +0 -78
- package/src/server/triggers/index.ts +0 -22
- package/src/server/types/Execution.ts +0 -26
- package/src/server/types/FlowNode.ts +0 -21
- package/src/server/types/Job.ts +0 -18
- package/src/server/types/Workflow.ts +0 -36
- package/src/server/types/index.ts +0 -4
- package/src/server/utils.ts +0 -17
- /package/{lib → dist}/client/AddButton.d.ts +0 -0
- /package/{lib → dist}/client/Branch.d.ts +0 -0
- /package/{lib → dist}/client/CanvasContent.d.ts +0 -0
- /package/{lib → dist}/client/ExecutionCanvas.d.ts +0 -0
- /package/{lib → dist}/client/ExecutionLink.d.ts +0 -0
- /package/{lib → dist}/client/ExecutionPage.d.ts +0 -0
- /package/{lib → dist}/client/ExecutionResourceProvider.d.ts +0 -0
- /package/{lib → dist}/client/FlowContext.d.ts +0 -0
- /package/{lib → dist}/client/WorkflowCanvas.d.ts +0 -0
- /package/{lib → dist}/client/WorkflowLink.d.ts +0 -0
- /package/{lib → dist}/client/WorkflowPage.d.ts +0 -0
- /package/{lib → dist}/client/WorkflowProvider.d.ts +0 -0
- /package/{lib → dist}/client/components/CollectionBlockInitializer.d.ts +0 -0
- /package/{lib → dist}/client/components/CollectionFieldset.d.ts +0 -0
- /package/{lib → dist}/client/components/Duration.d.ts +0 -0
- /package/{lib → dist}/client/components/DynamicExpression.d.ts +0 -0
- /package/{lib → dist}/client/components/FieldsSelect.d.ts +0 -0
- /package/{lib → dist}/client/components/FilterDynamicComponent.d.ts +0 -0
- /package/{lib → dist}/client/components/NodeDescription.d.ts +0 -0
- /package/{lib → dist}/client/components/NullRender.d.ts +0 -0
- /package/{lib → dist}/client/components/OpenDrawer.d.ts +0 -0
- /package/{lib → dist}/client/components/RadioWithTooltip.d.ts +0 -0
- /package/{lib → dist}/client/components/ValueBlock.d.ts +0 -0
- /package/{lib → dist}/client/components/renderEngineReference.d.ts +0 -0
- /package/{lib → dist}/client/constants.d.ts +0 -0
- /package/{lib → dist}/client/index.d.ts +0 -0
- /package/{lib → dist}/client/interfaces/expression.d.ts +0 -0
- /package/{lib → dist}/client/locale/index.d.ts +0 -0
- /package/{lib → dist}/client/nodes/calculation.d.ts +0 -0
- /package/{lib → dist}/client/nodes/condition.d.ts +0 -0
- /package/{lib → dist}/client/nodes/delay.d.ts +0 -0
- /package/{lib → dist}/client/nodes/index.d.ts +0 -0
- /package/{lib → dist}/client/nodes/loop.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/AssigneesSelect.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/DetailsBlockProvider.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/FormBlockInitializer.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/FormBlockProvider.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/ModeConfig.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/SchemaConfig.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/WorkflowTodo.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/WorkflowTodoBlockInitializer.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/forms/create.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/forms/custom.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/forms/update.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/index.d.ts +0 -0
- /package/{lib → dist}/client/nodes/manual/utils.d.ts +0 -0
- /package/{lib → dist}/client/nodes/parallel.d.ts +0 -0
- /package/{lib → dist}/client/nodes/sql.d.ts +0 -0
- /package/{lib → dist}/client/schemas/executions.d.ts +0 -0
- /package/{lib → dist}/client/schemas/workflows.d.ts +0 -0
- /package/{lib → dist}/client/style.d.ts +0 -0
- /package/{lib → dist}/client/triggers/index.d.ts +0 -0
- /package/{lib → dist}/client/triggers/schedule/EndsByField.d.ts +0 -0
- /package/{lib → dist}/client/triggers/schedule/OnField.d.ts +0 -0
- /package/{lib → dist}/client/triggers/schedule/RepeatField.d.ts +0 -0
- /package/{lib → dist}/client/triggers/schedule/ScheduleConfig.d.ts +0 -0
- /package/{lib → dist}/client/triggers/schedule/constants.d.ts +0 -0
- /package/{lib → dist}/client/triggers/schedule/index.d.ts +0 -0
- /package/{lib → dist}/client/triggers/schedule/locale/Cron.zh-CN.d.ts +0 -0
- /package/{lib → dist}/client/utils.d.ts +0 -0
- /package/{lib → dist}/client/variable.d.ts +0 -0
- /package/{lib → dist}/locale/en-US.d.ts +0 -0
- /package/{lib → dist}/locale/es-ES.d.ts +0 -0
- /package/{lib → dist}/locale/fr-FR.d.ts +0 -0
- /package/{lib → dist}/locale/ja-JP.d.ts +0 -0
- /package/{lib → dist}/locale/pt-BR.d.ts +0 -0
- /package/{lib → dist}/locale/ru-RU.d.ts +0 -0
- /package/{lib → dist}/locale/tr-TR.d.ts +0 -0
- /package/{lib → dist}/locale/zh-CN.d.ts +0 -0
- /package/{lib → dist}/server/Plugin.d.ts +0 -0
- /package/{lib → dist}/server/Processor.d.ts +0 -0
- /package/{lib → dist}/server/actions/index.d.ts +0 -0
- /package/{lib → dist}/server/actions/nodes.d.ts +0 -0
- /package/{lib → dist}/server/actions/workflows.d.ts +0 -0
- /package/{lib → dist}/server/collections/executions.d.ts +0 -0
- /package/{lib → dist}/server/collections/flow_nodes.d.ts +0 -0
- /package/{lib → dist}/server/collections/jobs.d.ts +0 -0
- /package/{lib → dist}/server/collections/workflows.d.ts +0 -0
- /package/{lib → dist}/server/constants.d.ts +0 -0
- /package/{lib → dist}/server/fields/expression-field.d.ts +0 -0
- /package/{lib → dist}/server/fields/index.d.ts +0 -0
- /package/{lib → dist}/server/functions/index.d.ts +0 -0
- /package/{lib → dist}/server/index.d.ts +0 -0
- /package/{lib → dist}/server/instructions/aggregate.d.ts +0 -0
- /package/{lib → dist}/server/instructions/calculation.d.ts +0 -0
- /package/{lib → dist}/server/instructions/condition.d.ts +0 -0
- /package/{lib → dist}/server/instructions/create.d.ts +0 -0
- /package/{lib → dist}/server/instructions/delay.d.ts +0 -0
- /package/{lib → dist}/server/instructions/destroy.d.ts +0 -0
- /package/{lib → dist}/server/instructions/index.d.ts +0 -0
- /package/{lib → dist}/server/instructions/loop.d.ts +0 -0
- /package/{lib → dist}/server/instructions/manual/actions.d.ts +0 -0
- /package/{lib → dist}/server/instructions/manual/collecions/jobs.d.ts +0 -0
- /package/{lib → dist}/server/instructions/manual/collecions/users.d.ts +0 -0
- /package/{lib → dist}/server/instructions/manual/collecions/users_jobs.d.ts +0 -0
- /package/{lib → dist}/server/instructions/manual/forms/create.d.ts +0 -0
- /package/{lib → dist}/server/instructions/manual/forms/index.d.ts +0 -0
- /package/{lib → dist}/server/instructions/manual/forms/update.d.ts +0 -0
- /package/{lib → dist}/server/instructions/manual/index.d.ts +0 -0
- /package/{lib → dist}/server/instructions/parallel.d.ts +0 -0
- /package/{lib → dist}/server/instructions/query.d.ts +0 -0
- /package/{lib → dist}/server/instructions/request.d.ts +0 -0
- /package/{lib → dist}/server/instructions/sql.d.ts +0 -0
- /package/{lib → dist}/server/instructions/update.d.ts +0 -0
- /package/{lib → dist}/server/migrations/20221129153547-calculation-variables.d.ts +0 -0
- /package/{lib → dist}/server/migrations/20230221032941-change-request-body-type.d.ts +0 -0
- /package/{lib → dist}/server/migrations/20230221071831-calculation-expression.d.ts +0 -0
- /package/{lib → dist}/server/migrations/20230221121203-condition-calculation.d.ts +0 -0
- /package/{lib → dist}/server/migrations/20230221162902-jsonb-to-json.d.ts +0 -0
- /package/{lib → dist}/server/migrations/20230411034722-manual-multi-form.d.ts +0 -0
- /package/{lib → dist}/server/migrations/20230612021134-manual-collection-block.d.ts +0 -0
- /package/{lib → dist}/server/migrations/20230710115902-manual-action-values.d.ts +0 -0
- /package/{lib → dist}/server/triggers/collection.d.ts +0 -0
- /package/{lib → dist}/server/triggers/index.d.ts +0 -0
- /package/{lib → dist}/server/triggers/schedule.d.ts +0 -0
- /package/{lib → dist}/server/types/Execution.d.ts +0 -0
- /package/{lib → dist}/server/types/FlowNode.d.ts +0 -0
- /package/{lib → dist}/server/types/Job.d.ts +0 -0
- /package/{lib → dist}/server/types/Workflow.d.ts +0 -0
- /package/{lib → dist}/server/types/index.d.ts +0 -0
- /package/{lib → dist}/server/utils.d.ts +0 -0
package/src/locale/fr-FR.ts
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
Workflow: 'Workflow',
|
|
3
|
-
'Execution history': "Historique d'exécution",
|
|
4
|
-
Executed: 'Exécuté',
|
|
5
|
-
'Trigger type': 'Type de déclencheur',
|
|
6
|
-
Status: 'Statut',
|
|
7
|
-
On: 'Activé',
|
|
8
|
-
Off: 'Désactivé',
|
|
9
|
-
Version: 'Version',
|
|
10
|
-
'Copy to new version': 'Copier vers une nouvelle version',
|
|
11
|
-
Duplicate: 'Dupliquer',
|
|
12
|
-
Loading: 'Chargement',
|
|
13
|
-
'Load failed': 'Échec du chargement',
|
|
14
|
-
Trigger: 'Déclencheur',
|
|
15
|
-
'Trigger variables': 'Variables de déclenchement',
|
|
16
|
-
'Trigger data': 'Données de déclenchement',
|
|
17
|
-
'Trigger time': 'Temps de déclenchement',
|
|
18
|
-
'Triggered at': 'Déclenché à',
|
|
19
|
-
'Collection event': 'Événement de collection',
|
|
20
|
-
'Trigger on': 'Déclencher sur',
|
|
21
|
-
'After record added': "Après l'ajout d'un enregistrement",
|
|
22
|
-
'After record updated': "Après la mise à jour d'un enregistrement",
|
|
23
|
-
'After record added or updated': "Après l'ajout ou la mise à jour d'un enregistrement",
|
|
24
|
-
'After record deleted': "Après la suppression d'un enregistrement",
|
|
25
|
-
'Changed fields': 'Champs modifiés',
|
|
26
|
-
'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.':
|
|
27
|
-
"Déclenché uniquement si l'un des champs sélectionnés change. S'il n'est pas sélectionné, cela signifie qu'il sera déclenché lorsque n'importe quel champ change. Lorsque l'enregistrement est ajouté ou supprimé, n'importe quel champ est considéré comme ayant été modifié.",
|
|
28
|
-
'Only triggers when match conditions': 'Déclenche uniquement lorsque les conditions correspondent',
|
|
29
|
-
'Schedule event': 'Événement planifié',
|
|
30
|
-
'Trigger mode': 'Mode de déclenchement',
|
|
31
|
-
'Based on certain date': 'Basé sur une date spécifique',
|
|
32
|
-
'Based on date field of collection': 'Basé sur le champ de date de la collection',
|
|
33
|
-
'Starts on': 'Commence le',
|
|
34
|
-
'Ends on': 'Se termine le',
|
|
35
|
-
'No end': 'Pas de fin',
|
|
36
|
-
'Exactly at': 'Exactement à',
|
|
37
|
-
'Repeat mode': 'Mode de répétition',
|
|
38
|
-
'Repeat limit': 'Limite de répétition',
|
|
39
|
-
'No limit': 'Pas de limite',
|
|
40
|
-
Seconds: 'Secondes',
|
|
41
|
-
Minutes: 'Minutes',
|
|
42
|
-
Hours: 'Heures',
|
|
43
|
-
Days: 'Jours',
|
|
44
|
-
Weeks: 'Semaines',
|
|
45
|
-
Months: 'Mois',
|
|
46
|
-
'No repeat': 'Pas de répétition',
|
|
47
|
-
Every: 'Chaque',
|
|
48
|
-
'By minute': 'Par minute',
|
|
49
|
-
'By hour': 'Par heure',
|
|
50
|
-
'By day': 'Par jour',
|
|
51
|
-
'By week': 'Par semaine',
|
|
52
|
-
'By month': 'Par mois',
|
|
53
|
-
'By field': 'Par champ',
|
|
54
|
-
'By custom date': 'Par date personnalisée',
|
|
55
|
-
Advanced: 'Avancé',
|
|
56
|
-
End: 'Fin',
|
|
57
|
-
'Node result': 'Résultat du nœud',
|
|
58
|
-
Constant: 'Constante',
|
|
59
|
-
Null: 'Null',
|
|
60
|
-
Boolean: 'Booléen',
|
|
61
|
-
String: 'Chaîne de caractères',
|
|
62
|
-
Calculator: 'Calculatrice',
|
|
63
|
-
'Arithmetic calculation': 'Calcul arithmétique',
|
|
64
|
-
'String operation': 'Opération sur les chaînes de caractères',
|
|
65
|
-
'Executed at': 'Exécuté à',
|
|
66
|
-
Queueing: 'En attente',
|
|
67
|
-
'On going': 'En cours',
|
|
68
|
-
Succeeded: 'Réussi',
|
|
69
|
-
Failed: 'Échoué',
|
|
70
|
-
Pending: 'En attente',
|
|
71
|
-
Canceled: 'Annulé',
|
|
72
|
-
'This node contains branches, deleting will also be preformed to them, are you sure?':
|
|
73
|
-
'Ce nœud contient des branches, leur suppression sera également effectuée, êtes-vous sûr(e) ?',
|
|
74
|
-
Control: 'Contrôle',
|
|
75
|
-
'Collection operations': 'Opérations sur la collection',
|
|
76
|
-
'Extended types': 'Types étendus',
|
|
77
|
-
'Node type': 'Type de nœud',
|
|
78
|
-
Calculation: 'Calcul',
|
|
79
|
-
'Configure calculation': 'Configurer le calcul',
|
|
80
|
-
'Calculation result': 'Résultat du calcul',
|
|
81
|
-
True: 'Vrai',
|
|
82
|
-
False: 'Faux',
|
|
83
|
-
concat: 'concat',
|
|
84
|
-
Condition: 'Condition',
|
|
85
|
-
Mode: 'Mode',
|
|
86
|
-
'Continue when "Yes"': 'Continuer quand "Oui"',
|
|
87
|
-
'Branch into "Yes" and "No"': 'Brancher sur "Oui" et "Non"',
|
|
88
|
-
Conditions: 'Conditions',
|
|
89
|
-
'Parallel branch': 'Branche parallèle',
|
|
90
|
-
'Add branch': 'Ajouter une branche',
|
|
91
|
-
'All succeeded': 'Tous réussis',
|
|
92
|
-
'Any succeeded': 'Un réussi',
|
|
93
|
-
'Any succeeded or failed': 'Un réussi ou un échoué',
|
|
94
|
-
'Continue after all branches succeeded': 'Continuer après la réussite de toutes les branches',
|
|
95
|
-
'Continue after any branch succeeded': "Continuer après la réussite d'une branche",
|
|
96
|
-
'Continue after any branch succeeded, or exit after any branch failed':
|
|
97
|
-
"Continuer après la réussite d'une branche, ou quitter après l'échec d'une branche",
|
|
98
|
-
Delay: 'Délai',
|
|
99
|
-
Duration: 'Durée',
|
|
100
|
-
'End Status': 'Statut de fin',
|
|
101
|
-
'Select status': 'Sélectionner un statut',
|
|
102
|
-
'Succeed and continue': 'Réussir et continuer',
|
|
103
|
-
'Fail and exit': 'Échouer et quitter',
|
|
104
|
-
'Create record': 'Créer un enregistrement',
|
|
105
|
-
'Update record': 'Mettre à jour un enregistrement',
|
|
106
|
-
'Query record': 'Interroger un enregistrement',
|
|
107
|
-
'Multiple records': 'Multiples enregistrements',
|
|
108
|
-
'Please select collection first': "Veuillez d'abord sélectionner une collection",
|
|
109
|
-
'Only update records matching conditions':
|
|
110
|
-
'Mettre à jour uniquement les enregistrements correspondant aux conditions',
|
|
111
|
-
'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.':
|
|
112
|
-
"Les champs qui ne reçoivent pas de valeur seront définis sur la valeur par défaut, et ceux qui n'ont pas de valeur par défaut seront définis sur null.",
|
|
113
|
-
'Trigger in executed workflow cannot be modified': 'Le déclencheur dans le workflow exécuté ne peut pas être modifié',
|
|
114
|
-
'Node in executed workflow cannot be modified': 'Le nœud dans le workflow exécuté ne peut pas être modifié',
|
|
115
|
-
'Can not delete': 'Impossible de supprimer',
|
|
116
|
-
'The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.':
|
|
117
|
-
"Le résultat de ce nœud a été référencé par d'autres nœuds ({{nodes}}), veuillez supprimer son utilisation avant de le supprimer.",
|
|
118
|
-
|
|
119
|
-
'HTTP request': 'Requête HTTP',
|
|
120
|
-
'HTTP method': 'Méthode HTTP',
|
|
121
|
-
URL: 'URL',
|
|
122
|
-
Headers: 'En-têtes',
|
|
123
|
-
'Add request header': 'Ajouter un en-tête de requête',
|
|
124
|
-
Parameters: 'Paramètres',
|
|
125
|
-
'Add parameter': 'Ajouter un paramètre',
|
|
126
|
-
Body: 'Corps',
|
|
127
|
-
'Use variable': 'Utiliser une variable',
|
|
128
|
-
Format: 'Format',
|
|
129
|
-
Insert: 'Insérer',
|
|
130
|
-
'Timeout config': "Configuration du délai d'expiration",
|
|
131
|
-
ms: 'ms',
|
|
132
|
-
'Input request data': 'Entrée des données de requête',
|
|
133
|
-
'Only support standard JSON data': 'Prend uniquement en charge les données JSON standard',
|
|
134
|
-
'"Content-Type" only support "application/json", and no need to specify':
|
|
135
|
-
'"Content-Type" prend uniquement en charge "application/json" et n\'a pas besoin d\'être spécifié',
|
|
136
|
-
'Ignore fail request and continue workflow': "Ignorer l'échec de la requête et continuer le workflow",
|
|
137
|
-
};
|
package/src/locale/ja-JP.ts
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
Workflow: 'ワークフロー',
|
|
3
|
-
'Execution history': '実行履歴',
|
|
4
|
-
'Trigger type': 'トリガータイプ',
|
|
5
|
-
Status: '状態',
|
|
6
|
-
On: '有効',
|
|
7
|
-
Off: '無効',
|
|
8
|
-
Version: 'バージョン',
|
|
9
|
-
'Copy to new version': '新しいバージョンにコピー',
|
|
10
|
-
'Load failed': '読み込みに失敗しました',
|
|
11
|
-
Trigger: 'トリガー',
|
|
12
|
-
'Collection event': 'コレクションイベント',
|
|
13
|
-
'Trigger on': 'トリガータイミング',
|
|
14
|
-
'After record added': 'レコードを追加した後',
|
|
15
|
-
'After record updated': 'レコードを更新した後',
|
|
16
|
-
'After record added or updated': 'レコードを追加もしくは更新した後',
|
|
17
|
-
'After record deleted': 'レコードを削除した後',
|
|
18
|
-
'Changed fields': 'フィールドが変更された時',
|
|
19
|
-
'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.':
|
|
20
|
-
'選択したフィールドの 1 つが変更された場合にのみトリガーされます。 選択されていない場合は、フィールドが変更されたときにトリガーされることを意味します。 レコードが追加または削除されると、すべてのフィールドが変更されたと見なされます。',
|
|
21
|
-
'Only triggers when match conditions': '以下の条件を満たすと発動',
|
|
22
|
-
'Schedule event': 'スケジュールイベント',
|
|
23
|
-
'Trigger mode': 'トリガーモード',
|
|
24
|
-
'Based on certain date': 'カスタム時間',
|
|
25
|
-
'Based on date field of collection': 'コレクションのフィールド時間に基づく',
|
|
26
|
-
'Starts on': '開始',
|
|
27
|
-
'Ends on': '終了',
|
|
28
|
-
'Exactly at': 'ちょうど',
|
|
29
|
-
'Repeat mode': '繰り返しパターン',
|
|
30
|
-
'Repeat limit': '繰り返し回数',
|
|
31
|
-
'No limit': '無制限',
|
|
32
|
-
Seconds: '秒',
|
|
33
|
-
Minutes: '分',
|
|
34
|
-
Hours: '時',
|
|
35
|
-
Days: '日',
|
|
36
|
-
Weeks: '週',
|
|
37
|
-
Months: '月',
|
|
38
|
-
'No repeat': '繰り返さない',
|
|
39
|
-
Every: '毎',
|
|
40
|
-
'By minute': '分ごと',
|
|
41
|
-
'By hour': '時間ごと',
|
|
42
|
-
'By day': '日ごと',
|
|
43
|
-
'By week': '週ごと',
|
|
44
|
-
'By month': '月ごと',
|
|
45
|
-
'By field': 'フィールドごと',
|
|
46
|
-
'By custom date': 'カスタム時間',
|
|
47
|
-
Advanced: 'アドバンスド',
|
|
48
|
-
End: '終了',
|
|
49
|
-
'Trigger variables': 'トリガーフィールド',
|
|
50
|
-
'Node result': 'ノードの結果',
|
|
51
|
-
Constant: '定数',
|
|
52
|
-
Boolean: '論理値',
|
|
53
|
-
String: '文字列',
|
|
54
|
-
'Arithmetic calculation': '算術演算',
|
|
55
|
-
'String operation': '文字列操作',
|
|
56
|
-
'On going': '処理中',
|
|
57
|
-
Succeeded: '成功',
|
|
58
|
-
Failed: '失敗',
|
|
59
|
-
Canceled: '取消',
|
|
60
|
-
'This node contains branches, deleting will also be preformed to them, are you sure?':
|
|
61
|
-
'ノードにはブランチが含まれており、そのすべてのブランチの下にあるすべての子ノードが同時に削除されます。続行してもよろしいですか?',
|
|
62
|
-
Control: 'プロセス制御',
|
|
63
|
-
'Collection operations': 'フィールド操作',
|
|
64
|
-
'Node type': 'ノードタイプ',
|
|
65
|
-
Calculation: '演算',
|
|
66
|
-
'Configure calculation': '演算設定',
|
|
67
|
-
'Calculation result': '演算結果',
|
|
68
|
-
True: '真',
|
|
69
|
-
False: '偽',
|
|
70
|
-
Condition: '条件',
|
|
71
|
-
Mode: 'モデル',
|
|
72
|
-
'Continue when "Yes"': '「はい」の場合に続行',
|
|
73
|
-
'Branch into "Yes" and "No"': '「はい」と「いいえ」で分岐して続行',
|
|
74
|
-
Conditions: '条件設定',
|
|
75
|
-
'Parallel branch': '分岐',
|
|
76
|
-
'All succeeded': 'すべて成功',
|
|
77
|
-
'Any succeeded': 'いずれかが成功',
|
|
78
|
-
'Continue after all branches succeeded': 'すべての分岐が成功した後に続行',
|
|
79
|
-
'Continue after any branch succeeded': 'いずれかの分岐が成功した後に続行',
|
|
80
|
-
'Create record': 'レコード追加',
|
|
81
|
-
'Update record': 'レコード更新',
|
|
82
|
-
'Query record': 'クエリ レコード',
|
|
83
|
-
'Multiple records': '複数レコード',
|
|
84
|
-
'Please select collection first': '先にコレクションを選択してください',
|
|
85
|
-
'Only update records matching conditions': '条件を満たすレコードのみ更新',
|
|
86
|
-
'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.':
|
|
87
|
-
'値が割り当てられていないフィールドはデフォルト値に設定され、デフォルト値がないフィールドは null に設定されます',
|
|
88
|
-
'Trigger in executed workflow cannot be modified': 'すでにワークフローを実行したトリガーは変更できません',
|
|
89
|
-
'Node in executed workflow cannot be modified': 'すでに実行されたワークフローのノードは変更できません',
|
|
90
|
-
};
|
package/src/locale/pt-BR.ts
DELETED
|
@@ -1,136 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
Workflow: 'Fluxo de trabalho',
|
|
3
|
-
'Execution history': 'Histórico de execução',
|
|
4
|
-
Executed: 'Executado',
|
|
5
|
-
'Trigger type': 'Tipo de acionador',
|
|
6
|
-
Status: 'Status',
|
|
7
|
-
On: 'Ligado',
|
|
8
|
-
Off: 'Desligado',
|
|
9
|
-
Version: 'Versão',
|
|
10
|
-
'Copy to new version': 'Copiar para nova versão',
|
|
11
|
-
Duplicate: 'Duplicar',
|
|
12
|
-
Loading: 'Carregando',
|
|
13
|
-
'Load failed': 'Falha ao carregar',
|
|
14
|
-
Trigger: 'Acionador',
|
|
15
|
-
'Trigger variables': 'Variáveis do acionador',
|
|
16
|
-
'Trigger data': 'Dados do acionador',
|
|
17
|
-
'Trigger time': 'Tempo do acionador',
|
|
18
|
-
'Triggered at': 'Acionado em',
|
|
19
|
-
'Collection event': 'Evento da coleção',
|
|
20
|
-
'Trigger on': 'Acionar em',
|
|
21
|
-
'After record added': 'Depois do registro ser adicionado',
|
|
22
|
-
'After record updated': 'Depois do registro ser atualizado',
|
|
23
|
-
'After record added or updated': 'Depois do registro ser adicionado ou atualizado',
|
|
24
|
-
'After record deleted': 'Depois do registro ser excluído',
|
|
25
|
-
'Changed fields': 'Campos alterados',
|
|
26
|
-
'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.':
|
|
27
|
-
'Acionado apenas se um dos campos selecionados for alterado. Se não estiver selecionado, será acionado quando qualquer campo for alterado. Quando um registro é adicionado ou excluído, qualquer campo é considerado como tendo sido alterado.',
|
|
28
|
-
'Only triggers when match conditions': 'Aciona somente quando as condições correspondem',
|
|
29
|
-
'Schedule event': 'Evento programado',
|
|
30
|
-
'Trigger mode': 'Modo de acionamento',
|
|
31
|
-
'Based on certain date': 'Com base em uma data específica',
|
|
32
|
-
'Based on date field of collection': 'Com base no campo de data da coleção',
|
|
33
|
-
'Starts on': 'Começa em',
|
|
34
|
-
'Ends on': 'Termina em',
|
|
35
|
-
'No end': 'Sem fim',
|
|
36
|
-
'Exactly at': 'Exatamente às',
|
|
37
|
-
'Repeat mode': 'Modo de repetição',
|
|
38
|
-
'Repeat limit': 'Limite de repetição',
|
|
39
|
-
'No limit': 'Sem limite',
|
|
40
|
-
Seconds: 'Segundos',
|
|
41
|
-
Minutes: 'Minutos',
|
|
42
|
-
Hours: 'Horas',
|
|
43
|
-
Days: 'Dias',
|
|
44
|
-
Weeks: 'Semanas',
|
|
45
|
-
Months: 'Meses',
|
|
46
|
-
'No repeat': 'Sem repetição',
|
|
47
|
-
Every: 'Cada',
|
|
48
|
-
'By minute': 'Por minuto',
|
|
49
|
-
'By hour': 'Por hora',
|
|
50
|
-
'By day': 'Por dia',
|
|
51
|
-
'By week': 'Por semana',
|
|
52
|
-
'By month': 'Por mês',
|
|
53
|
-
'By field': 'Por campo',
|
|
54
|
-
'By custom date': 'Por data personalizada',
|
|
55
|
-
Advanced: 'Avançado',
|
|
56
|
-
End: 'Fim',
|
|
57
|
-
'Node result': 'Resultado do nó',
|
|
58
|
-
Constant: 'Constante',
|
|
59
|
-
Null: 'Nulo',
|
|
60
|
-
Boolean: 'Booleano',
|
|
61
|
-
String: 'String',
|
|
62
|
-
Calculator: 'Calculadora',
|
|
63
|
-
'Arithmetic calculation': 'Cálculo aritmético',
|
|
64
|
-
'String operation': 'Operação de string',
|
|
65
|
-
'Executed at': 'Executado em',
|
|
66
|
-
Queueing: 'Em fila',
|
|
67
|
-
'On going': 'Em andamento',
|
|
68
|
-
Succeeded: 'Sucesso',
|
|
69
|
-
Failed: 'Falhou',
|
|
70
|
-
Pending: 'Pendente',
|
|
71
|
-
Canceled: 'Cancelado',
|
|
72
|
-
'This node contains branches, deleting will also be preformed to them, are you sure?':
|
|
73
|
-
'Este nó contém ramos, a exclusão também será realizada neles, você tem certeza?',
|
|
74
|
-
Control: 'Controle',
|
|
75
|
-
'Collection operations': 'Operações de coleção',
|
|
76
|
-
'Extended types': 'Tipos estendidos',
|
|
77
|
-
'Node type': 'Tipo de nó',
|
|
78
|
-
Calculation: 'Cálculo',
|
|
79
|
-
'Configure calculation': 'Configurar cálculo',
|
|
80
|
-
'Calculation result': 'Resultado do cálculo',
|
|
81
|
-
True: 'Verdadeiro',
|
|
82
|
-
False: 'Falso',
|
|
83
|
-
concat: 'concatenar',
|
|
84
|
-
Condition: 'Condição',
|
|
85
|
-
Mode: 'Modo',
|
|
86
|
-
'Continue when "Yes"': 'Continuar quando "Sim"',
|
|
87
|
-
'Branch into "Yes" and "No"': 'Ramo em "Sim" e "Não"',
|
|
88
|
-
Conditions: 'Condições',
|
|
89
|
-
'Parallel branch': 'Ramo paralelo',
|
|
90
|
-
'Add branch': 'Adicionar ramo',
|
|
91
|
-
'All succeeded': 'Todos com sucesso',
|
|
92
|
-
'Any succeeded': 'Qualquer um com sucesso',
|
|
93
|
-
'Any succeeded or failed': 'Qualquer um com sucesso ou falha',
|
|
94
|
-
'Continue after all branches succeeded': 'Continuar após todos os ramos com sucesso',
|
|
95
|
-
'Continue after any branch succeeded': 'Continuar após qualquer ramo com sucesso',
|
|
96
|
-
'Continue after any branch succeeded, or exit after any branch failed':
|
|
97
|
-
'Continuar após qualquer ramo com sucesso ou sair após qualquer ramo falhar',
|
|
98
|
-
Delay: 'Atraso',
|
|
99
|
-
Duration: 'Duração',
|
|
100
|
-
'End Status': 'Status final',
|
|
101
|
-
'Select status': 'Selecionar status',
|
|
102
|
-
'Succeed and continue': 'Ter sucesso e continuar',
|
|
103
|
-
'Fail and exit': 'Falhar e sair',
|
|
104
|
-
'Create record': 'Criar registro',
|
|
105
|
-
'Update record': 'Atualizar registro',
|
|
106
|
-
'Query record': 'Consultar registro',
|
|
107
|
-
'Multiple records': 'Múltiplos registros',
|
|
108
|
-
'Please select collection first': 'Por favor, selecione uma coleção primeiro',
|
|
109
|
-
'Only update records matching conditions': 'Atualizar somente registros que atendem às condições',
|
|
110
|
-
'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.':
|
|
111
|
-
'Campos que não recebem valor serão definidos como valor padrão e aqueles sem valor padrão serão definidos como nulo.',
|
|
112
|
-
'Trigger in executed workflow cannot be modified':
|
|
113
|
-
'O acionador em fluxo de trabalho executado não pode ser modificado',
|
|
114
|
-
'Node in executed workflow cannot be modified': 'O nó em fluxo de trabalho executado não pode ser modificado',
|
|
115
|
-
'Can not delete': 'Não é possível excluir',
|
|
116
|
-
'The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.':
|
|
117
|
-
'O resultado deste nó foi referenciado por outros nós ({{nodes}}), por favor, remova a referência antes de excluir.',
|
|
118
|
-
'HTTP request': 'Requisição HTTP',
|
|
119
|
-
'HTTP method': 'Método HTTP',
|
|
120
|
-
URL: 'URL',
|
|
121
|
-
Headers: 'Cabeçalhos',
|
|
122
|
-
'Add request header': 'Adicionar cabeçalho de requisição',
|
|
123
|
-
Parameters: 'Parâmetros',
|
|
124
|
-
'Add parameter': 'Adicionar parâmetro',
|
|
125
|
-
Body: 'Corpo',
|
|
126
|
-
'Use variable': 'Usar variável',
|
|
127
|
-
Format: 'Formato',
|
|
128
|
-
Insert: 'Inserir',
|
|
129
|
-
'Timeout config': 'Configuração de tempo limite',
|
|
130
|
-
ms: 'ms',
|
|
131
|
-
'Input request data': 'Dados de entrada da requisição',
|
|
132
|
-
'Only support standard JSON data': 'Suporta somente dados JSON padrão',
|
|
133
|
-
'"Content-Type" only support "application/json", and no need to specify':
|
|
134
|
-
'"Content-Type" somente suporta "application/json" e não precisa ser especificado',
|
|
135
|
-
'Ignore fail request and continue workflow': 'Ignorar falhas na requisição e continuar o fluxo de trabalho',
|
|
136
|
-
};
|
package/src/locale/ru-RU.ts
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
Workflow: 'Рабочий процесс',
|
|
3
|
-
'Execution history': 'История запусков',
|
|
4
|
-
'Trigger type': 'Тип триггера',
|
|
5
|
-
Status: 'Статус',
|
|
6
|
-
On: 'Вкл.',
|
|
7
|
-
Off: 'Выкл.',
|
|
8
|
-
Version: 'Версия',
|
|
9
|
-
'Copy to new version': 'Скопировать в новую версию',
|
|
10
|
-
'Load failed': 'Загрузка не удалась',
|
|
11
|
-
Trigger: 'Триггер',
|
|
12
|
-
'Collection event': 'Событие коллекции',
|
|
13
|
-
'Trigger on': 'Триггер на',
|
|
14
|
-
'After record added': 'После добавления записи',
|
|
15
|
-
'After record updated': 'После обновления записи',
|
|
16
|
-
'After record added or updated': 'После добавления или обновления записи',
|
|
17
|
-
'After record deleted': 'После удаления записи',
|
|
18
|
-
'Changed fields': 'Измененные поля',
|
|
19
|
-
'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.':
|
|
20
|
-
'Запускается только при изменении одного из выбранных полей. Если флажок не установлен, это означает, что он будет срабатывать при изменении любого поля. При добавлении или удалении записи любое поле считается измененным.',
|
|
21
|
-
'Only triggers when match conditions': 'Срабатывает только при совпадении условий',
|
|
22
|
-
'Schedule event': 'Событие по расписанию',
|
|
23
|
-
'Trigger mode': 'Режим триггера',
|
|
24
|
-
'Based on certain date': 'На основе определенной даты',
|
|
25
|
-
'Based on date field of collection': 'На базе поля с датой в коллекции',
|
|
26
|
-
'Starts on': 'Стартует с',
|
|
27
|
-
'Ends on': 'Оканчивается в',
|
|
28
|
-
'Exactly at': 'Ровно в',
|
|
29
|
-
'Repeat mode': 'Режим повтора',
|
|
30
|
-
'Repeat limit': 'Ограничение на повторы',
|
|
31
|
-
'No limit': 'Нет ограничений',
|
|
32
|
-
Seconds: 'Секунды',
|
|
33
|
-
Minutes: 'Минуты',
|
|
34
|
-
Hours: 'Часы',
|
|
35
|
-
Days: 'Дни',
|
|
36
|
-
Weeks: 'Недели',
|
|
37
|
-
Months: 'Месяцы',
|
|
38
|
-
'No repeat': 'Не повторять',
|
|
39
|
-
Every: 'Каждые',
|
|
40
|
-
'By minute': 'По минутам',
|
|
41
|
-
'By hour': 'По часам',
|
|
42
|
-
'By day': 'По дням',
|
|
43
|
-
'By week': 'По неделям',
|
|
44
|
-
'By month': 'По месяцам',
|
|
45
|
-
'By field': 'По полю',
|
|
46
|
-
'By custom date': 'По пользовательской дате',
|
|
47
|
-
Advanced: 'Продвинутый',
|
|
48
|
-
End: 'Окончание',
|
|
49
|
-
'Trigger variables': 'Контекст триггера',
|
|
50
|
-
'Node result': 'Результат Узла',
|
|
51
|
-
Constant: 'Константа',
|
|
52
|
-
Boolean: 'Логический',
|
|
53
|
-
String: 'Строка',
|
|
54
|
-
'Arithmetic calculation': 'Арифметическое вычисление',
|
|
55
|
-
'String operation': 'Операция со строкой',
|
|
56
|
-
'On going': 'Непрерывный',
|
|
57
|
-
Succeeded: 'Успешный',
|
|
58
|
-
Failed: 'Неудачный',
|
|
59
|
-
Canceled: 'Прерванный',
|
|
60
|
-
'This node contains branches, deleting will also be preformed to them, are you sure?':
|
|
61
|
-
'Этот узел содержит ветки, к ним тоже будет произведено удаление, вы уверены?',
|
|
62
|
-
Control: 'Управление',
|
|
63
|
-
'Collection operations': 'Операции с Коллекцией',
|
|
64
|
-
'Node type': 'Тип Узла',
|
|
65
|
-
Calculation: 'Вычисление',
|
|
66
|
-
'Configure calculation': 'Настроить вычисление',
|
|
67
|
-
'Calculation result': 'Результат вычисления',
|
|
68
|
-
True: 'Истина',
|
|
69
|
-
False: 'Ложь',
|
|
70
|
-
Condition: 'Условие',
|
|
71
|
-
Mode: 'Режим',
|
|
72
|
-
'Continue when "Yes"': 'Продолжить когда "Да"',
|
|
73
|
-
'Branch into "Yes" and "No"': 'Разветвление на "Да" and "Нет"',
|
|
74
|
-
Conditions: 'Условия',
|
|
75
|
-
'Parallel branch': 'Параллельная ветвь',
|
|
76
|
-
'All succeeded': 'Всё успешно',
|
|
77
|
-
'Any succeeded': 'Что-то успешно',
|
|
78
|
-
'Continue after all branches succeeded': 'Продолжать после успеха на всех ветвях',
|
|
79
|
-
'Continue after any branch succeeded': 'Продолжать после успеха на любой из ветвей',
|
|
80
|
-
'Create record': 'Создать запись',
|
|
81
|
-
'Update record': 'Обновить запись',
|
|
82
|
-
'Query record': 'Запрос записи',
|
|
83
|
-
'Multiple records': 'Множество записей',
|
|
84
|
-
'Please select collection first': 'Выберите сначала Коллекцию, пожалуйста',
|
|
85
|
-
'Only update records matching conditions': 'Обновлять только записи, соответствующие условиям',
|
|
86
|
-
'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.':
|
|
87
|
-
'Поля, которым не присвоено значение, будут установлены на значение по умолчанию, а поля, не имеющие значения по умолчанию, будут установлены на null.',
|
|
88
|
-
'Trigger in executed workflow cannot be modified': 'Триггер в выполняемом рабочем процессе не может быть изменен',
|
|
89
|
-
'Node in executed workflow cannot be modified': 'Узел в выполняемом рабочем процессе не может быть изменен',
|
|
90
|
-
};
|
package/src/locale/tr-TR.ts
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
export default {
|
|
2
|
-
Workflow: 'İş Akışı',
|
|
3
|
-
'Execution history': 'Yürütme Geçmişi',
|
|
4
|
-
'Trigger type': 'Tetikleme türü',
|
|
5
|
-
Status: 'Durum',
|
|
6
|
-
On: 'Aç',
|
|
7
|
-
Off: 'Kapa',
|
|
8
|
-
Version: 'Sürüm',
|
|
9
|
-
'Copy to new version': 'Yeni sürüme kopyala',
|
|
10
|
-
'Load failed': 'Yükleme başarısız',
|
|
11
|
-
Trigger: 'Tetikle',
|
|
12
|
-
'Collection event': 'Koleksiyon etkinliği',
|
|
13
|
-
'Trigger on': 'Tetikleme açık',
|
|
14
|
-
'After record added': 'Kayıt eklendikten sonra',
|
|
15
|
-
'After record updated': 'Kayıt güncellendikten sonra',
|
|
16
|
-
'After record added or updated': 'Kayıt eklendikten veya güncellendikten sonra',
|
|
17
|
-
'After record deleted': 'Kayıt silindikten sonra',
|
|
18
|
-
'Changed fields': 'Değiştirilen alanlar',
|
|
19
|
-
'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.':
|
|
20
|
-
'Yalnızca seçilen alanlardan biri değiştiğinde tetiklenir. Seçili değilse, herhangi bir alan değiştiğinde tetikleneceği anlamına gelir. Kayıt eklendiğinde veya silindiğinde, herhangi bir alan değiştirilmiş olarak kabul edilir.',
|
|
21
|
-
'Only triggers when match conditions': 'Yalnızca eşleşme koşulları olduğunda tetiklenir',
|
|
22
|
-
'Schedule event': 'Etkinlik planla',
|
|
23
|
-
'Trigger mode': 'Tetikleme modu',
|
|
24
|
-
'Based on certain date': 'Belirli bir tarihe göre',
|
|
25
|
-
'Based on date field of collection': 'Koleksiyonun tarih alanına göre',
|
|
26
|
-
'Starts on': 'Başlangıç',
|
|
27
|
-
'Ends on': 'Bitiş',
|
|
28
|
-
'Exactly at': 'Tam zamanı',
|
|
29
|
-
'Repeat mode': 'Tekrarlama modu',
|
|
30
|
-
'Repeat limit': 'Tekrarlama limiti',
|
|
31
|
-
'No limit': 'Limit yok',
|
|
32
|
-
Seconds: 'Saniye',
|
|
33
|
-
Minutes: 'Dakika',
|
|
34
|
-
Hours: 'Saat',
|
|
35
|
-
Days: 'Gün',
|
|
36
|
-
Weeks: 'Hafta',
|
|
37
|
-
Months: 'Ay',
|
|
38
|
-
'No repeat': 'Tekrar yok',
|
|
39
|
-
Every: 'Her',
|
|
40
|
-
'By minute': 'Dakikada',
|
|
41
|
-
'By hour': 'Saatte',
|
|
42
|
-
'By day': 'Günde',
|
|
43
|
-
'By week': 'Haftada',
|
|
44
|
-
'By month': 'Ayda',
|
|
45
|
-
'By field': 'Alanda',
|
|
46
|
-
'By custom date': 'Özel tarihe göre',
|
|
47
|
-
Advanced: 'Gelişmiş',
|
|
48
|
-
End: 'Son',
|
|
49
|
-
'Trigger variables': 'Tetikleyici bağlamı',
|
|
50
|
-
'Node result': 'Düğüm sonucu',
|
|
51
|
-
Constant: 'Devamlı',
|
|
52
|
-
Boolean: 'Boolean',
|
|
53
|
-
String: 'String',
|
|
54
|
-
'Arithmetic calculation': 'Aritmetik hesaplama',
|
|
55
|
-
'String operation': 'String operation',
|
|
56
|
-
'On going': 'Devam eden',
|
|
57
|
-
Succeeded: 'Başarılı',
|
|
58
|
-
Failed: 'Başarısız',
|
|
59
|
-
Canceled: 'İptal edilen',
|
|
60
|
-
'This node contains branches, deleting will also be preformed to them, are you sure?':
|
|
61
|
-
'Bu düğüm başka içeriklerle bağlantı içeriyor, silme işlemini onaylarsanız o bağlantılarda silinecek, emin misiniz?',
|
|
62
|
-
Control: 'Kontrol',
|
|
63
|
-
'Collection operations': 'Koleksiyon operasyonları',
|
|
64
|
-
'Node type': 'Düğüm türü',
|
|
65
|
-
Calculation: 'Hesaplama',
|
|
66
|
-
'Configure calculation': 'Hesaplamayı yapılandır',
|
|
67
|
-
'Calculation result': 'Hesaplama sonucu',
|
|
68
|
-
True: 'Doğru',
|
|
69
|
-
False: 'Yanlış',
|
|
70
|
-
Condition: 'Koşul',
|
|
71
|
-
Mode: 'Tür',
|
|
72
|
-
'Continue when "Yes"': '"Evet" durumunda devam',
|
|
73
|
-
'Branch into "Yes" and "No"': '"Evet" ve "Hayır" olarak dallandırın',
|
|
74
|
-
Conditions: 'Koşullar',
|
|
75
|
-
'Parallel branch': 'Paralel dal',
|
|
76
|
-
'All succeeded': 'Hepsi başarılı',
|
|
77
|
-
'Any succeeded': 'Herhangi biri başarılı',
|
|
78
|
-
'Continue after all branches succeeded': 'Tüm dallar başarılı olduktan sonra devam et',
|
|
79
|
-
'Continue after any branch succeeded': 'Herhangi bir dal başarılı olduktan sonra devam et',
|
|
80
|
-
'Create record': 'Kayıt oluştur',
|
|
81
|
-
'Update record': 'Kayıt güncelle',
|
|
82
|
-
'Query record': 'Sorgu kaydı',
|
|
83
|
-
'Multiple records': 'Birden çok kayıt',
|
|
84
|
-
'Please select collection first': 'Lütfen önce koleksiyonu seçin',
|
|
85
|
-
'Only update records matching conditions': 'Yalnızca koşullarla eşleşen kayıtları güncelleyin',
|
|
86
|
-
'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.':
|
|
87
|
-
'Değer atanmamış alanlar varsayılan değere, varsayılan değeri olmayan alanlar ise null olarak ayarlanır.',
|
|
88
|
-
'Trigger in executed workflow cannot be modified': 'Yürütülen iş akışındaki tetikleyici değiştirilemez',
|
|
89
|
-
'Node in executed workflow cannot be modified': 'Yürütülen iş akışındaki düğüm değiştirilemez',
|
|
90
|
-
};
|