@tachybase/module-workflow 0.23.8
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/.turbo/turbo-build.log +12 -0
- package/README.md +9 -0
- package/README.zh-CN.md +9 -0
- package/client.d.ts +2 -0
- package/client.js +1 -0
- package/dist/client/Branch.d.ts +9 -0
- package/dist/client/CanvasContent.d.ts +4 -0
- package/dist/client/CanvasContentWrapper.d.ts +4 -0
- package/dist/client/ExecutionCanvas.d.ts +2 -0
- package/dist/client/ExecutionContextProvider.d.ts +7 -0
- package/dist/client/ExecutionLink.d.ts +2 -0
- package/dist/client/ExecutionPage.d.ts +2 -0
- package/dist/client/ExecutionResourceProvider.d.ts +6 -0
- package/dist/client/FlowContext.d.ts +3 -0
- package/dist/client/Plugin.d.ts +39 -0
- package/dist/client/WorkflowCanvas.d.ts +2 -0
- package/dist/client/WorkflowLink.d.ts +2 -0
- package/dist/client/WorkflowPage.d.ts +2 -0
- package/dist/client/WorkflowPane.d.ts +2 -0
- package/dist/client/components/AddNotifiedPerson.d.ts +3 -0
- package/dist/client/components/AutoResizeInput.d.ts +4 -0
- package/dist/client/components/CheckboxGroupWithTooltip.d.ts +7 -0
- package/dist/client/components/CollectionBlockInitializer.d.ts +2 -0
- package/dist/client/components/CollectionFieldset.d.ts +3 -0
- package/dist/client/components/ColumnShowCollection.d.ts +2 -0
- package/dist/client/components/ColumnShowTitle.d.ts +2 -0
- package/dist/client/components/ConfigButtonMessage.d.ts +2 -0
- package/dist/client/components/DetailsBlockProvider.d.ts +6 -0
- package/dist/client/components/DrawerDescription.d.ts +5 -0
- package/dist/client/components/DrawerForm.d.ts +5 -0
- package/dist/client/components/ExecutionStatus.d.ts +5 -0
- package/dist/client/components/ExecutionTime.d.ts +3 -0
- package/dist/client/components/FieldsSelect.d.ts +2 -0
- package/dist/client/components/FilterDynamicComponent.d.ts +6 -0
- package/dist/client/components/GoBackButton.d.ts +2 -0
- package/dist/client/components/OpenDrawer.d.ts +7 -0
- package/dist/client/components/RadioWithTooltip.d.ts +7 -0
- package/dist/client/components/SelectNotifiedPerson.d.ts +2 -0
- package/dist/client/components/ShowNodeTypesInWorkflow.d.ts +2 -0
- package/dist/client/components/SimpleDesigner.d.ts +2 -0
- package/dist/client/components/StatusButton.d.ts +2 -0
- package/dist/client/components/ValueBlock.d.ts +5 -0
- package/dist/client/components/WorkflowLink.d.ts +2 -0
- package/dist/client/components/index.d.ts +15 -0
- package/dist/client/components/renderEngineReference.d.ts +2 -0
- package/dist/client/constants.d.ts +37 -0
- package/dist/client/features/aggregate/AggregateInstruction.d.ts +217 -0
- package/dist/client/features/aggregate/index.d.ts +4 -0
- package/dist/client/features/common/constants.d.ts +3 -0
- package/dist/client/features/delay/DelayInstruction.d.ts +48 -0
- package/dist/client/features/delay/index.d.ts +4 -0
- package/dist/client/features/dynamic-calculation/DynamicCalculation.d.ts +76 -0
- package/dist/client/features/dynamic-calculation/DynamicExpression.d.ts +6 -0
- package/dist/client/features/dynamic-calculation/expression.d.ts +35 -0
- package/dist/client/features/dynamic-calculation/index.d.ts +4 -0
- package/dist/client/features/interceptor/WorkflowTriggerInterceptor.d.ts +100 -0
- package/dist/client/features/interceptor/index.d.ts +4 -0
- package/dist/client/features/js-parse/JSParse.instruction.d.ts +123 -0
- package/dist/client/features/js-parse/index.d.ts +5 -0
- package/dist/client/features/json-parse/JSONParse.instruction.d.ts +119 -0
- package/dist/client/features/json-parse/index.d.ts +5 -0
- package/dist/client/features/loop/LoopInstruction.d.ts +33 -0
- package/dist/client/features/loop/index.d.ts +4 -0
- package/dist/client/features/manual/WorkflowTodo.d.ts +5 -0
- package/dist/client/features/manual/WorkflowTodoBlockInitializer.d.ts +2 -0
- package/dist/client/features/manual/index.d.ts +5 -0
- package/dist/client/features/manual/instruction/AssigneesSelect.d.ts +6 -0
- package/dist/client/features/manual/instruction/FormBlockInitializer.d.ts +2 -0
- package/dist/client/features/manual/instruction/FormBlockProvider.d.ts +2 -0
- package/dist/client/features/manual/instruction/ModeConfig.d.ts +5 -0
- package/dist/client/features/manual/instruction/SchemaConfig.d.ts +50 -0
- package/dist/client/features/manual/instruction/createManualFormBlockUISchema.d.ts +57 -0
- package/dist/client/features/manual/instruction/forms/create.d.ts +3 -0
- package/dist/client/features/manual/instruction/forms/custom.d.ts +5 -0
- package/dist/client/features/manual/instruction/forms/update.d.ts +3 -0
- package/dist/client/features/manual/instruction/index.d.ts +91 -0
- package/dist/client/features/manual/instruction/utils.d.ts +1 -0
- package/dist/client/features/notice/common/flowNodes.collection.d.ts +38 -0
- package/dist/client/features/notice/common/notice.collection.d.ts +127 -0
- package/dist/client/features/notice/common/workflow.collection.d.ts +30 -0
- package/dist/client/features/notice/configuration/Notice.instruction.d.ts +76 -0
- package/dist/client/features/notice/configuration/config-items/AddNotifiedPerson.view.d.ts +2 -0
- package/dist/client/features/notice/configuration/config-items/ConfigButtonNotice.view.d.ts +2 -0
- package/dist/client/features/notice/configuration/config-items/SelectNotifiedPerson.view.d.ts +2 -0
- package/dist/client/features/notice/configuration/kit.d.ts +5 -0
- package/dist/client/features/notice/configuration/show-interface/NoticeDetail.block.d.ts +2 -0
- package/dist/client/features/notice/configuration/show-interface/NoticeDetail.initializer.d.ts +2 -0
- package/dist/client/features/notice/configuration/show-interface/NoticeDetail.schema.d.ts +6 -0
- package/dist/client/features/notice/configuration/show-interface/NoticeDetailContainer.schema.d.ts +2 -0
- package/dist/client/features/notice/configuration/show-interface/style.d.ts +3 -0
- package/dist/client/features/notice/configuration/style.d.ts +5 -0
- package/dist/client/features/notice/index.d.ts +5 -0
- package/dist/client/features/notice/locale.d.ts +7 -0
- package/dist/client/features/notice/usage/NoticeBlock.initializer.d.ts +6 -0
- package/dist/client/features/notice/usage/NoticeBlock.provider.d.ts +5 -0
- package/dist/client/features/notice/usage/NoticeCenter.schema.d.ts +2 -0
- package/dist/client/features/notice/usage/column/column.action.d.ts +2 -0
- package/dist/client/features/notice/usage/column/column.node.d.ts +1 -0
- package/dist/client/features/notice/usage/column/column.status.d.ts +8 -0
- package/dist/client/features/notice/usage/column/column.user.d.ts +1 -0
- package/dist/client/features/notice/usage/column/column.workflow.d.ts +2 -0
- package/dist/client/features/notice/usage/kit.d.ts +5 -0
- package/dist/client/features/notice/usage/show-detail/NoticeDetail.provider.d.ts +5 -0
- package/dist/client/features/notice/usage/show-detail/NoticeDetail.schema.d.ts +2 -0
- package/dist/client/features/notice/usage/show-detail/contexts/MyComponent.context.d.ts +9 -0
- package/dist/client/features/notice/usage/show-detail/contexts/WorkflowNotice.context.d.ts +4 -0
- package/dist/client/features/notice/usage/show-detail/hooks/usePropsNoticeDetail.d.ts +3 -0
- package/dist/client/features/omni-trigger/OmniActionTrigger.d.ts +84 -0
- package/dist/client/features/omni-trigger/index.d.ts +5 -0
- package/dist/client/features/omni-trigger/usage/APIRegular.schema.d.ts +2 -0
- package/dist/client/features/omni-trigger/usage/APIRegular.setting.d.ts +2 -0
- package/dist/client/features/omni-trigger/usage/hooks.d.ts +3 -0
- package/dist/client/features/omni-trigger/usage/kit.d.ts +4 -0
- package/dist/client/features/omni-trigger/useFormWorkflowCustomActionProps.d.ts +3 -0
- package/dist/client/features/omni-trigger/useRecordWorkflowCustomTriggerActionProps.d.ts +3 -0
- package/dist/client/features/parallel/ParallelInstruction.d.ts +34 -0
- package/dist/client/features/parallel/index.d.ts +4 -0
- package/dist/client/features/request/RequestInstruction.d.ts +220 -0
- package/dist/client/features/request/index.d.ts +4 -0
- package/dist/client/features/response/index.d.ts +4 -0
- package/dist/client/features/script/Script.instruction.d.ts +198 -0
- package/dist/client/features/script/index.d.ts +5 -0
- package/dist/client/features/sql/SQLInstruction.d.ts +54 -0
- package/dist/client/features/sql/index.d.ts +4 -0
- package/dist/client/features/trigger-instruction/TriggerInstruction.d.ts +93 -0
- package/dist/client/features/trigger-instruction/index.d.ts +0 -0
- package/dist/client/features/trigger-instruction/plugin.d.ts +4 -0
- package/dist/client/features/variables/VariableTargetSelect.d.ts +5 -0
- package/dist/client/features/variables/VariablesInstruction.d.ts +54 -0
- package/dist/client/features/variables/index.d.ts +4 -0
- package/dist/client/features/variables/useStyles.d.ts +3 -0
- package/dist/client/hooks/index.d.ts +3 -0
- package/dist/client/hooks/useGetAriaLabelOfAddButton.d.ts +6 -0
- package/dist/client/hooks/useTriggerWorkflowActionProps.d.ts +6 -0
- package/dist/client/hooks/useWorkflowExecuted.d.ts +2 -0
- package/dist/client/index.d.ts +19 -0
- package/dist/client/index.js +876 -0
- package/dist/client/locale/index.d.ts +4 -0
- package/dist/client/nodes/calculation.d.ts +88 -0
- package/dist/client/nodes/condition.d.ts +108 -0
- package/dist/client/nodes/create.d.ts +68 -0
- package/dist/client/nodes/default-node/Node.context.d.ts +3 -0
- package/dist/client/nodes/default-node/Node.d.ts +4 -0
- package/dist/client/nodes/default-node/Node.style.d.ts +4 -0
- package/dist/client/nodes/default-node/buttons/ArrowDownButton.d.ts +2 -0
- package/dist/client/nodes/default-node/buttons/ArrowUpButton.d.ts +2 -0
- package/dist/client/nodes/default-node/buttons/DragButton.d.ts +2 -0
- package/dist/client/nodes/default-node/buttons/JobButton.d.ts +2 -0
- package/dist/client/nodes/default-node/buttons/JobButton.style.d.ts +5 -0
- package/dist/client/nodes/default-node/buttons/RemoveButton.d.ts +2 -0
- package/dist/client/nodes/default-node/components/AddButton.d.ts +11 -0
- package/dist/client/nodes/default-node/components/AddButton.props.d.ts +11 -0
- package/dist/client/nodes/default-node/components/AddButton.style.d.ts +6 -0
- package/dist/client/nodes/default-node/components/NodeConfig.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeConfig.provider.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeConfig.schema.d.ts +15 -0
- package/dist/client/nodes/default-node/components/NodeConfig.view.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeConfigTitle.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeDefaultView.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodeDefaultView.style.d.ts +5 -0
- package/dist/client/nodes/default-node/components/NodePoint.d.ts +2 -0
- package/dist/client/nodes/default-node/components/NodePoint.style.d.ts +4 -0
- package/dist/client/nodes/default-node/hooks/useAvailableUpstreams.d.ts +1 -0
- package/dist/client/nodes/default-node/hooks/useFormProviderProps.d.ts +3 -0
- package/dist/client/nodes/default-node/hooks/useUpdateAction.d.ts +3 -0
- package/dist/client/nodes/default-node/hooks/useUpstreamScopes.d.ts +1 -0
- package/dist/client/nodes/default-node/index.d.ts +4 -0
- package/dist/client/nodes/default-node/interface.d.ts +49 -0
- package/dist/client/nodes/destroy.d.ts +46 -0
- package/dist/client/nodes/end.d.ts +25 -0
- package/dist/client/nodes/query.d.ts +221 -0
- package/dist/client/nodes/update.d.ts +82 -0
- package/dist/client/schemas/collection.d.ts +162 -0
- package/dist/client/schemas/executions.d.ts +380 -0
- package/dist/client/schemas/workflows.d.ts +47 -0
- package/dist/client/settings/customizeSubmitToWorkflowActionSettings.d.ts +2 -0
- package/dist/client/style.d.ts +19 -0
- package/dist/client/triggers/collection.d.ts +133 -0
- package/dist/client/triggers/index.d.ts +25 -0
- package/dist/client/triggers/schedule/EndsByField.d.ts +5 -0
- package/dist/client/triggers/schedule/OnField.d.ts +5 -0
- package/dist/client/triggers/schedule/RepeatField.d.ts +5 -0
- package/dist/client/triggers/schedule/ScheduleConfig.d.ts +2 -0
- package/dist/client/triggers/schedule/constants.d.ts +4 -0
- package/dist/client/triggers/schedule/index.d.ts +22 -0
- package/dist/client/triggers/schedule/locale/Cron.zh-CN.d.ts +34 -0
- package/dist/client/utils.d.ts +5 -0
- package/dist/client/variable.d.ts +97 -0
- package/dist/common/constants.d.ts +5 -0
- package/dist/common/constants.js +39 -0
- package/dist/externalVersion.js +25 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +39 -0
- package/dist/locale/en-US.json +319 -0
- package/dist/locale/es-ES.json +129 -0
- package/dist/locale/fr-FR.json +129 -0
- package/dist/locale/ja-JP.json +87 -0
- package/dist/locale/ko_KR.json +246 -0
- package/dist/locale/pt-BR.json +129 -0
- package/dist/locale/ru-RU.json +87 -0
- package/dist/locale/tr-TR.json +87 -0
- package/dist/locale/zh-CN.json +399 -0
- package/dist/node_modules/@babel/core/LICENSE +22 -0
- package/dist/node_modules/@babel/core/cjs-proxy.cjs +68 -0
- package/dist/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
- package/dist/node_modules/@babel/core/lib/config/caching.js +261 -0
- package/dist/node_modules/@babel/core/lib/config/config-chain.js +469 -0
- package/dist/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
- package/dist/node_modules/@babel/core/lib/config/files/configuration.js +287 -0
- package/dist/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
- package/dist/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
- package/dist/node_modules/@babel/core/lib/config/files/index.js +78 -0
- package/dist/node_modules/@babel/core/lib/config/files/module-types.js +195 -0
- package/dist/node_modules/@babel/core/lib/config/files/package.js +61 -0
- package/dist/node_modules/@babel/core/lib/config/files/plugins.js +229 -0
- package/dist/node_modules/@babel/core/lib/config/files/types.js +3 -0
- package/dist/node_modules/@babel/core/lib/config/files/utils.js +36 -0
- package/dist/node_modules/@babel/core/lib/config/full.js +312 -0
- package/dist/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
- package/dist/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
- package/dist/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
- package/dist/node_modules/@babel/core/lib/config/index.js +93 -0
- package/dist/node_modules/@babel/core/lib/config/item.js +67 -0
- package/dist/node_modules/@babel/core/lib/config/partial.js +158 -0
- package/dist/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
- package/dist/node_modules/@babel/core/lib/config/plugin.js +33 -0
- package/dist/node_modules/@babel/core/lib/config/printer.js +113 -0
- package/dist/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
- package/dist/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
- package/dist/node_modules/@babel/core/lib/config/util.js +31 -0
- package/dist/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
- package/dist/node_modules/@babel/core/lib/config/validation/options.js +189 -0
- package/dist/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
- package/dist/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
- package/dist/node_modules/@babel/core/lib/errors/config-error.js +18 -0
- package/dist/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
- package/dist/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
- package/dist/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
- package/dist/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
- package/dist/node_modules/@babel/core/lib/index.js +227 -0
- package/dist/node_modules/@babel/core/lib/parse.js +47 -0
- package/dist/node_modules/@babel/core/lib/parser/index.js +79 -0
- package/dist/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +339 -0
- package/dist/node_modules/@babel/core/lib/tools/build-external-helpers.js +144 -0
- package/dist/node_modules/@babel/core/lib/transform-ast.js +50 -0
- package/dist/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
- package/dist/node_modules/@babel/core/lib/transform-file.js +40 -0
- package/dist/node_modules/@babel/core/lib/transform.js +49 -0
- package/dist/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
- package/dist/node_modules/@babel/core/lib/transformation/file/babel-7-helpers.cjs +4 -0
- package/dist/node_modules/@babel/core/lib/transformation/file/file.js +214 -0
- package/dist/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
- package/dist/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
- package/dist/node_modules/@babel/core/lib/transformation/index.js +92 -0
- package/dist/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
- package/dist/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
- package/dist/node_modules/@babel/core/lib/transformation/plugin-pass.js +50 -0
- package/dist/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
- package/dist/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1043 -0
- package/dist/node_modules/@babel/core/node_modules/.bin/json5 +17 -0
- package/dist/node_modules/@babel/core/node_modules/.bin/parser +17 -0
- package/dist/node_modules/@babel/core/node_modules/.bin/semver +17 -0
- package/dist/node_modules/@babel/core/package.json +1 -0
- package/dist/node_modules/@babel/core/src/config/files/index-browser.ts +113 -0
- package/dist/node_modules/@babel/core/src/config/files/index.ts +29 -0
- package/dist/node_modules/@babel/core/src/config/resolve-targets-browser.ts +40 -0
- package/dist/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
- package/dist/node_modules/@babel/core/src/transform-file-browser.ts +31 -0
- package/dist/node_modules/@babel/core/src/transform-file.ts +55 -0
- package/dist/node_modules/cron-parser/LICENSE +21 -0
- package/dist/node_modules/cron-parser/lib/date.js +252 -0
- package/dist/node_modules/cron-parser/lib/expression.js +1002 -0
- package/dist/node_modules/cron-parser/lib/field_compactor.js +70 -0
- package/dist/node_modules/cron-parser/lib/field_stringify.js +58 -0
- package/dist/node_modules/cron-parser/lib/parser.js +1 -0
- package/dist/node_modules/cron-parser/package.json +1 -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/form-data/License +19 -0
- package/dist/node_modules/form-data/index.d.ts +62 -0
- package/dist/node_modules/form-data/lib/browser.js +2 -0
- package/dist/node_modules/form-data/lib/form_data.js +14 -0
- package/dist/node_modules/form-data/lib/populate.js +10 -0
- package/dist/node_modules/form-data/package.json +1 -0
- package/dist/node_modules/jsonata/LICENSE +19 -0
- package/dist/node_modules/jsonata/jsonata-es5.js +9875 -0
- package/dist/node_modules/jsonata/jsonata-es5.min.js +1 -0
- package/dist/node_modules/jsonata/jsonata.d.ts +72 -0
- package/dist/node_modules/jsonata/jsonata.js +1 -0
- package/dist/node_modules/jsonata/jsonata.min.js +1 -0
- package/dist/node_modules/jsonata/package.json +1 -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/node_modules/mime-types/LICENSE +23 -0
- package/dist/node_modules/mime-types/index.js +14 -0
- package/dist/node_modules/mime-types/package.json +1 -0
- package/dist/node_modules/qrcode/bin/qrcode +159 -0
- package/dist/node_modules/qrcode/helper/to-sjis-browser.js +2 -0
- package/dist/node_modules/qrcode/helper/to-sjis.js +105 -0
- package/dist/node_modules/qrcode/lib/browser.js +76 -0
- package/dist/node_modules/qrcode/lib/can-promise.js +7 -0
- package/dist/node_modules/qrcode/lib/core/alignment-pattern.js +83 -0
- package/dist/node_modules/qrcode/lib/core/alphanumeric-data.js +59 -0
- package/dist/node_modules/qrcode/lib/core/bit-buffer.js +37 -0
- package/dist/node_modules/qrcode/lib/core/bit-matrix.js +65 -0
- package/dist/node_modules/qrcode/lib/core/byte-data.js +30 -0
- package/dist/node_modules/qrcode/lib/core/error-correction-code.js +135 -0
- package/dist/node_modules/qrcode/lib/core/error-correction-level.js +50 -0
- package/dist/node_modules/qrcode/lib/core/finder-pattern.js +22 -0
- package/dist/node_modules/qrcode/lib/core/format-info.js +29 -0
- package/dist/node_modules/qrcode/lib/core/galois-field.js +69 -0
- package/dist/node_modules/qrcode/lib/core/kanji-data.js +54 -0
- package/dist/node_modules/qrcode/lib/core/mask-pattern.js +234 -0
- package/dist/node_modules/qrcode/lib/core/mode.js +167 -0
- package/dist/node_modules/qrcode/lib/core/numeric-data.js +43 -0
- package/dist/node_modules/qrcode/lib/core/polynomial.js +62 -0
- package/dist/node_modules/qrcode/lib/core/qrcode.js +495 -0
- package/dist/node_modules/qrcode/lib/core/reed-solomon-encoder.js +56 -0
- package/dist/node_modules/qrcode/lib/core/regex.js +31 -0
- package/dist/node_modules/qrcode/lib/core/segments.js +330 -0
- package/dist/node_modules/qrcode/lib/core/utils.js +63 -0
- package/dist/node_modules/qrcode/lib/core/version-check.js +9 -0
- package/dist/node_modules/qrcode/lib/core/version.js +163 -0
- package/dist/node_modules/qrcode/lib/index.js +1 -0
- package/dist/node_modules/qrcode/lib/renderer/canvas.js +63 -0
- package/dist/node_modules/qrcode/lib/renderer/png.js +78 -0
- package/dist/node_modules/qrcode/lib/renderer/svg-tag.js +81 -0
- package/dist/node_modules/qrcode/lib/renderer/svg.js +19 -0
- package/dist/node_modules/qrcode/lib/renderer/terminal/terminal-small.js +85 -0
- package/dist/node_modules/qrcode/lib/renderer/terminal/terminal.js +49 -0
- package/dist/node_modules/qrcode/lib/renderer/terminal.js +9 -0
- package/dist/node_modules/qrcode/lib/renderer/utf8.js +71 -0
- package/dist/node_modules/qrcode/lib/renderer/utils.js +99 -0
- package/dist/node_modules/qrcode/lib/server.js +138 -0
- package/dist/node_modules/qrcode/license +10 -0
- package/dist/node_modules/qrcode/package.json +1 -0
- package/dist/server/Plugin.d.ts +50 -0
- package/dist/server/Plugin.js +498 -0
- package/dist/server/Processor.d.ts +59 -0
- package/dist/server/Processor.js +306 -0
- package/dist/server/actions/executions.d.ts +3 -0
- package/dist/server/actions/executions.js +87 -0
- package/dist/server/actions/index.d.ts +3 -0
- package/dist/server/actions/index.js +59 -0
- package/dist/server/actions/nodes.d.ts +6 -0
- package/dist/server/actions/nodes.js +322 -0
- package/dist/server/actions/workflows.d.ts +10 -0
- package/dist/server/actions/workflows.js +347 -0
- package/dist/server/collections/1-users_jobs.d.ts +2 -0
- package/dist/server/collections/1-users_jobs.js +73 -0
- package/dist/server/collections/2-jobs.d.ts +2 -0
- package/dist/server/collections/2-jobs.js +40 -0
- package/dist/server/collections/3-users.d.ts +2 -0
- package/dist/server/collections/3-users.js +38 -0
- package/dist/server/collections/executions.d.ts +3 -0
- package/dist/server/collections/executions.js +64 -0
- package/dist/server/collections/flow_nodes.d.ts +3 -0
- package/dist/server/collections/flow_nodes.js +78 -0
- package/dist/server/collections/jobs.d.ts +3 -0
- package/dist/server/collections/jobs.js +61 -0
- package/dist/server/collections/workflows.d.ts +2 -0
- package/dist/server/collections/workflows.js +130 -0
- package/dist/server/constants.d.ts +22 -0
- package/dist/server/constants.js +52 -0
- package/dist/server/features/_deprecated-js-parse/JSParse.instruction.d.ts +10 -0
- package/dist/server/features/_deprecated-js-parse/JSParse.instruction.js +100 -0
- package/dist/server/features/_deprecated-js-parse/index.d.ts +1 -0
- package/dist/server/features/_deprecated-js-parse/index.js +33 -0
- package/dist/server/features/_deprecated-js-parse/plugin.d.ts +5 -0
- package/dist/server/features/_deprecated-js-parse/plugin.js +48 -0
- package/dist/server/features/_deprecated-json-parse/JSONParse.instruction.d.ts +11 -0
- package/dist/server/features/_deprecated-json-parse/JSONParse.instruction.js +81 -0
- package/dist/server/features/_deprecated-json-parse/index.d.ts +1 -0
- package/dist/server/features/_deprecated-json-parse/index.js +33 -0
- package/dist/server/features/_deprecated-json-parse/plugin.d.ts +5 -0
- package/dist/server/features/_deprecated-json-parse/plugin.js +48 -0
- package/dist/server/features/aggregate/AggregateInstruction.d.ts +7 -0
- package/dist/server/features/aggregate/AggregateInstruction.js +56 -0
- package/dist/server/features/aggregate/Plugin.d.ts +4 -0
- package/dist/server/features/aggregate/Plugin.js +45 -0
- package/dist/server/features/common/constants.d.ts +4 -0
- package/dist/server/features/common/constants.js +36 -0
- package/dist/server/features/delay/DelayInstruction.d.ts +12 -0
- package/dist/server/features/delay/DelayInstruction.js +106 -0
- package/dist/server/features/delay/Plugin.d.ts +4 -0
- package/dist/server/features/delay/Plugin.js +45 -0
- package/dist/server/features/dynamic-calculation/DynamicCalculation.d.ts +10 -0
- package/dist/server/features/dynamic-calculation/DynamicCalculation.js +62 -0
- package/dist/server/features/dynamic-calculation/Plugin.d.ts +4 -0
- package/dist/server/features/dynamic-calculation/Plugin.js +49 -0
- package/dist/server/features/dynamic-calculation/expression-field.d.ts +7 -0
- package/dist/server/features/dynamic-calculation/expression-field.js +32 -0
- package/dist/server/features/interception/RequestInterceptionTrigger.d.ts +11 -0
- package/dist/server/features/interception/RequestInterceptionTrigger.js +146 -0
- package/dist/server/features/interception/index.d.ts +4 -0
- package/dist/server/features/interception/index.js +35 -0
- package/dist/server/features/loop/LoopInstruction.d.ts +13 -0
- package/dist/server/features/loop/LoopInstruction.js +100 -0
- package/dist/server/features/loop/Plugin.d.ts +4 -0
- package/dist/server/features/loop/Plugin.js +45 -0
- package/dist/server/features/manual/ManualInstruction.d.ts +28 -0
- package/dist/server/features/manual/ManualInstruction.js +152 -0
- package/dist/server/features/manual/Plugin.d.ts +4 -0
- package/dist/server/features/manual/Plugin.js +70 -0
- package/dist/server/features/manual/actions.d.ts +2 -0
- package/dist/server/features/manual/actions.js +104 -0
- package/dist/server/features/manual/forms/create.d.ts +6 -0
- package/dist/server/features/manual/forms/create.js +41 -0
- package/dist/server/features/manual/forms/index.d.ts +6 -0
- package/dist/server/features/manual/forms/index.js +38 -0
- package/dist/server/features/manual/forms/update.d.ts +7 -0
- package/dist/server/features/manual/forms/update.js +41 -0
- package/dist/server/features/notice/NoticeInstruction.d.ts +9 -0
- package/dist/server/features/notice/NoticeInstruction.js +172 -0
- package/dist/server/features/notice/actions.d.ts +3 -0
- package/dist/server/features/notice/actions.js +124 -0
- package/dist/server/features/notice/collections/workflowNotice.d.ts +3 -0
- package/dist/server/features/notice/collections/workflowNotice.js +90 -0
- package/dist/server/features/notice/constants.d.ts +16 -0
- package/dist/server/features/notice/constants.js +44 -0
- package/dist/server/features/notice/index.d.ts +1 -0
- package/dist/server/features/notice/index.js +33 -0
- package/dist/server/features/notice/plugin.d.ts +12 -0
- package/dist/server/features/notice/plugin.js +83 -0
- package/dist/server/features/notice/tools.d.ts +17 -0
- package/dist/server/features/notice/tools.js +163 -0
- package/dist/server/features/omni-trigger/CustomActionTrigger.d.ts +11 -0
- package/dist/server/features/omni-trigger/CustomActionTrigger.js +270 -0
- package/dist/server/features/omni-trigger/Plugin.d.ts +4 -0
- package/dist/server/features/omni-trigger/Plugin.js +45 -0
- package/dist/server/features/omni-trigger/index.d.ts +1 -0
- package/dist/server/features/omni-trigger/index.js +21 -0
- package/dist/server/features/parallel/ParallelInstruction.d.ts +11 -0
- package/dist/server/features/parallel/ParallelInstruction.js +137 -0
- package/dist/server/features/parallel/Plugin.d.ts +4 -0
- package/dist/server/features/parallel/Plugin.js +45 -0
- package/dist/server/features/request/Plugin.d.ts +4 -0
- package/dist/server/features/request/Plugin.js +45 -0
- package/dist/server/features/request/RequestInstruction.d.ts +14 -0
- package/dist/server/features/request/RequestInstruction.js +183 -0
- package/dist/server/features/response/Plugin.d.ts +4 -0
- package/dist/server/features/response/Plugin.js +45 -0
- package/dist/server/features/response/ResponseMessageInstruction.d.ts +7 -0
- package/dist/server/features/response/ResponseMessageInstruction.js +57 -0
- package/dist/server/features/response/index.d.ts +1 -0
- package/dist/server/features/response/index.js +21 -0
- package/dist/server/features/script/index.d.ts +1 -0
- package/dist/server/features/script/index.js +33 -0
- package/dist/server/features/script/plugin.d.ts +5 -0
- package/dist/server/features/script/plugin.js +48 -0
- package/dist/server/features/script/script.instruction.d.ts +10 -0
- package/dist/server/features/script/script.instruction.js +212 -0
- package/dist/server/features/sql/Plugin.d.ts +4 -0
- package/dist/server/features/sql/Plugin.js +45 -0
- package/dist/server/features/sql/SQLInstruction.d.ts +10 -0
- package/dist/server/features/sql/SQLInstruction.js +48 -0
- package/dist/server/features/trigger-instruction/TriggerInstruction.d.ts +15 -0
- package/dist/server/features/trigger-instruction/TriggerInstruction.js +71 -0
- package/dist/server/features/trigger-instruction/flownode-check.d.ts +2 -0
- package/dist/server/features/trigger-instruction/flownode-check.js +114 -0
- package/dist/server/features/trigger-instruction/index.d.ts +0 -0
- package/dist/server/features/trigger-instruction/index.js +0 -0
- package/dist/server/features/trigger-instruction/plugin.d.ts +4 -0
- package/dist/server/features/trigger-instruction/plugin.js +37 -0
- package/dist/server/features/variables/Plugin.d.ts +4 -0
- package/dist/server/features/variables/Plugin.js +45 -0
- package/dist/server/features/variables/VariableInstruction.d.ts +7 -0
- package/dist/server/features/variables/VariableInstruction.js +61 -0
- package/dist/server/features/variables/index.d.ts +1 -0
- package/dist/server/features/variables/index.js +27 -0
- package/dist/server/features/webhook/Plugin.d.ts +4 -0
- package/dist/server/features/webhook/Plugin.js +109 -0
- package/dist/server/features/webhook/index.d.ts +1 -0
- package/dist/server/features/webhook/index.js +27 -0
- package/dist/server/features/webhook/webhooks.d.ts +9 -0
- package/dist/server/features/webhook/webhooks.js +286 -0
- package/dist/server/functions/index.d.ts +9 -0
- package/dist/server/functions/index.js +31 -0
- package/dist/server/index.d.ts +8 -0
- package/dist/server/index.js +54 -0
- package/dist/server/instructions/CalculationInstruction.d.ts +17 -0
- package/dist/server/instructions/CalculationInstruction.js +59 -0
- package/dist/server/instructions/ConditionInstruction.d.ts +29 -0
- package/dist/server/instructions/ConditionInstruction.js +160 -0
- package/dist/server/instructions/CreateInstruction.d.ts +10 -0
- package/dist/server/instructions/CreateInstruction.js +175 -0
- package/dist/server/instructions/DestroyInstruction.d.ts +10 -0
- package/dist/server/instructions/DestroyInstruction.js +50 -0
- package/dist/server/instructions/EndInstruction.d.ts +6 -0
- package/dist/server/instructions/EndInstruction.js +47 -0
- package/dist/server/instructions/QueryInstruction.d.ts +13 -0
- package/dist/server/instructions/QueryInstruction.js +78 -0
- package/dist/server/instructions/UpdateInstruction.d.ts +10 -0
- package/dist/server/instructions/UpdateInstruction.js +159 -0
- package/dist/server/instructions/index.d.ts +23 -0
- package/dist/server/instructions/index.js +33 -0
- package/dist/server/migrations/20241118104303-add-initAt.d.ts +6 -0
- package/dist/server/migrations/20241118104303-add-initAt.js +47 -0
- package/dist/server/migrations/20241206122842-add-createdBy.d.ts +6 -0
- package/dist/server/migrations/20241206122842-add-createdBy.js +46 -0
- package/dist/server/migrations/20241220001154-bigInt.d.ts +6 -0
- package/dist/server/migrations/20241220001154-bigInt.js +39 -0
- package/dist/server/triggers/CollectionTrigger.d.ts +14 -0
- package/dist/server/triggers/CollectionTrigger.js +188 -0
- package/dist/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.d.ts +31 -0
- package/dist/server/triggers/ScheduleTrigger/DateFieldScheduleTrigger.js +342 -0
- package/dist/server/triggers/ScheduleTrigger/StaticScheduleTrigger.d.ts +15 -0
- package/dist/server/triggers/ScheduleTrigger/StaticScheduleTrigger.js +143 -0
- package/dist/server/triggers/ScheduleTrigger/index.d.ts +13 -0
- package/dist/server/triggers/ScheduleTrigger/index.js +74 -0
- package/dist/server/triggers/ScheduleTrigger/utils.d.ts +5 -0
- package/dist/server/triggers/ScheduleTrigger/utils.js +35 -0
- package/dist/server/triggers/index.d.ts +13 -0
- package/dist/server/triggers/index.js +37 -0
- package/dist/server/types/Execution.d.ts +17 -0
- package/dist/server/types/Execution.js +25 -0
- package/dist/server/types/FlowNode.d.ts +16 -0
- package/dist/server/types/FlowNode.js +25 -0
- package/dist/server/types/Job.d.ts +14 -0
- package/dist/server/types/Job.js +25 -0
- package/dist/server/types/Workflow.d.ts +27 -0
- package/dist/server/types/Workflow.js +25 -0
- package/dist/server/types/index.d.ts +4 -0
- package/dist/server/types/index.js +15 -0
- package/dist/server/utils.d.ts +1 -0
- package/dist/server/utils.js +42 -0
- package/dist/swagger/index.d.ts +754 -0
- package/dist/swagger/index.js +798 -0
- package/package.json +63 -0
- package/server.d.ts +2 -0
- package/server.js +1 -0
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" sólo admite \"application/json\", y no es necesario especificar",
|
|
3
|
+
"Add branch": "Añadir rama",
|
|
4
|
+
"Add parameter": "Añadir parámetro",
|
|
5
|
+
"Add request header": "Añadir encabezado de petición",
|
|
6
|
+
"Advanced": "Avanzada",
|
|
7
|
+
"After record added": "Después de añadir el registro",
|
|
8
|
+
"After record added or updated": "Después de añadir o actualizar el registro",
|
|
9
|
+
"After record deleted": "Después de eliminar el registro",
|
|
10
|
+
"After record updated": "Después de actualizar el registro",
|
|
11
|
+
"All succeeded": "Todo correcto",
|
|
12
|
+
"Any succeeded": "Cualquiera con éxito",
|
|
13
|
+
"Any succeeded or failed": "Cualquiera tuvo éxito o falló",
|
|
14
|
+
"Arithmetic calculation": "Cálculo aritmético",
|
|
15
|
+
"Based on certain date": "Basado en fecha determinada",
|
|
16
|
+
"Based on date field of collection": "Basado en el campo de fecha de la colección",
|
|
17
|
+
"Body": "Cuerpo",
|
|
18
|
+
"Boolean": "Booleano",
|
|
19
|
+
"Branch into \"Yes\" and \"No\"": "Ramificarse en \"Sí\" y \"No\"",
|
|
20
|
+
"By custom date": "Por fecha personalizada",
|
|
21
|
+
"By day": "Por día",
|
|
22
|
+
"By field": "Por campo",
|
|
23
|
+
"By hour": "Por hora",
|
|
24
|
+
"By minute": "Por minuto",
|
|
25
|
+
"By month": "Por mes",
|
|
26
|
+
"By week": "Por semana",
|
|
27
|
+
"Calculation": "Cálculo",
|
|
28
|
+
"Calculation result": "Resultado del cálculo",
|
|
29
|
+
"Can not delete": "No se puede eliminar",
|
|
30
|
+
"Canceled": "Cancelado",
|
|
31
|
+
"Changed fields": "Campos modificados",
|
|
32
|
+
"Collection event": "Evento de recogida",
|
|
33
|
+
"Collection operations": "Operaciones de recogida",
|
|
34
|
+
"Condition": "Condición",
|
|
35
|
+
"Conditions": "Condiciones",
|
|
36
|
+
"Configure calculation": "Configurar cálculo",
|
|
37
|
+
"Constant": "Constante",
|
|
38
|
+
"Continue after all branches succeeded": "Continuar después que todas las ramas han tenido éxito",
|
|
39
|
+
"Continue after any branch succeeded": "Continuar después que cualquier rama tenga éxito",
|
|
40
|
+
"Continue after any branch succeeded, or exit after any branch failed": "Continuar después de que cualquier rama tenga éxito, o salir después de que cualquier rama falle",
|
|
41
|
+
"Continue when \"Yes\"": "Continuar cuando \"Sí\"",
|
|
42
|
+
"Control": "Control",
|
|
43
|
+
"Copy to new version": "Copiar a nueva versión",
|
|
44
|
+
"Create record": "Crear registro",
|
|
45
|
+
"Days": "Días",
|
|
46
|
+
"Delay": "Retraso",
|
|
47
|
+
"Duplicate": "Duplicar",
|
|
48
|
+
"Duration": "Duración",
|
|
49
|
+
"End": "Fin",
|
|
50
|
+
"End status": "Estado final",
|
|
51
|
+
"Ends on": "Finaliza el",
|
|
52
|
+
"Every": "Cada",
|
|
53
|
+
"Exactly at": "Exactamente en",
|
|
54
|
+
"Executed": "Ejecutado",
|
|
55
|
+
"Executed at": "Ejecutado en",
|
|
56
|
+
"Execution history": "Historial de ejecución",
|
|
57
|
+
"Extended types": "Tipos ampliados",
|
|
58
|
+
"Fail and exit": "Falla y sale",
|
|
59
|
+
"Failed": "Fallido",
|
|
60
|
+
"False": "Falso",
|
|
61
|
+
"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.": "Los campos a los que no se les asigne un valor se establecerán en el valor predeterminado, y los que no tengan un valor predeterminado se establecerán en nulo.",
|
|
62
|
+
"Format": "Formato",
|
|
63
|
+
"HTTP method": "Método HTTP",
|
|
64
|
+
"HTTP request": "Petición HTTP",
|
|
65
|
+
"Headers": "Encabezados",
|
|
66
|
+
"Hours": "Horas",
|
|
67
|
+
"Ignore fail request and continue workflow": "Ignorar solicitud fallida y continuar flujo de trabajo",
|
|
68
|
+
"Input request data": "Datos de solicitud de entrada",
|
|
69
|
+
"Insert": "Insertar",
|
|
70
|
+
"Load failed": "Carga fallida",
|
|
71
|
+
"Loading": "Cargando",
|
|
72
|
+
"Minutes": "Minutos",
|
|
73
|
+
"Mode": "Modo",
|
|
74
|
+
"Months": "Meses",
|
|
75
|
+
"Multiple records": "Múltiples registros",
|
|
76
|
+
"No end": "Sin fin",
|
|
77
|
+
"No limit": "Sin límite",
|
|
78
|
+
"No repeat": "No repetir",
|
|
79
|
+
"Node in executed workflow cannot be modified": "Nodo en flujo de trabajo ejecutado no puede ser modificado",
|
|
80
|
+
"Node result": "Resultado nodo",
|
|
81
|
+
"Node type": "Tipo de nodo",
|
|
82
|
+
"Null": "Null",
|
|
83
|
+
"Off": "Apagado",
|
|
84
|
+
"On": "Activado",
|
|
85
|
+
"On going": "En curso",
|
|
86
|
+
"Only support standard JSON data": "Sólo admite datos JSON estándar",
|
|
87
|
+
"Only triggers when match conditions": "Sólo se dispara cuando coinciden las condiciones",
|
|
88
|
+
"Only update records matching conditions": "Actualizar sólo los registros que cumplan las condiciones",
|
|
89
|
+
"Operator": "Calculadora",
|
|
90
|
+
"Parallel branch": "Rama paralela",
|
|
91
|
+
"Parameters": "Parámetros",
|
|
92
|
+
"Pending": "Pendiente",
|
|
93
|
+
"Please select collection first": "Por favor, seleccione primero la colección",
|
|
94
|
+
"Query record": "Consultar registro",
|
|
95
|
+
"Queueing": "Puesta en cola",
|
|
96
|
+
"Repeat limit": "Límite de repetición",
|
|
97
|
+
"Repeat mode": "Modo repetición",
|
|
98
|
+
"Schedule event": "Programar evento",
|
|
99
|
+
"Seconds": "Segundos",
|
|
100
|
+
"Select status": "Seleccionar estado",
|
|
101
|
+
"Starts on": "Comienza el",
|
|
102
|
+
"Status": "Estado",
|
|
103
|
+
"String": "Cadena",
|
|
104
|
+
"String operation": "Operación de Cadena",
|
|
105
|
+
"Succeed and continue": "Éxito y continuar",
|
|
106
|
+
"Succeeded": "Logrado",
|
|
107
|
+
"The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "El resultado de este nodo ha sido referenciado por otros nodos ({{nodes}}",
|
|
108
|
+
"This node contains branches, deleting will also be preformed to them, are you sure?": "Este nodo contiene ramas, el borrado también se preformará a ellas, ¿estás seguro?",
|
|
109
|
+
"Timeout config": "Tiempo de espera config",
|
|
110
|
+
"Trigger": "Disparador",
|
|
111
|
+
"Trigger data": "Datos de activación",
|
|
112
|
+
"Trigger in executed workflow cannot be modified": "No se puede modificar el desencadenante en el flujo de trabajo ejecutado",
|
|
113
|
+
"Trigger mode": "Modo de activación",
|
|
114
|
+
"Trigger on": "Activado en",
|
|
115
|
+
"Trigger time": "Tiempo de activación",
|
|
116
|
+
"Trigger type": "Tipo de activador",
|
|
117
|
+
"Trigger variables": "Variables de activación",
|
|
118
|
+
"Triggered at": "Disparado a las",
|
|
119
|
+
"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.": "Se activa sólo si cambia uno de los campos seleccionados. Si no se selecciona, significa que se activará cuando cambie cualquier campo. Cuando se añade o elimina un registro, se considera que se ha modificado cualquier campo.",
|
|
120
|
+
"True": "Verdadero",
|
|
121
|
+
"URL": "URL",
|
|
122
|
+
"Update record": "Actualizar registro",
|
|
123
|
+
"Use variable": "Utilizar variable",
|
|
124
|
+
"Version": "Versión",
|
|
125
|
+
"Weeks": "Semanas",
|
|
126
|
+
"Workflow": "Flujo de trabajo",
|
|
127
|
+
"concat": "concat",
|
|
128
|
+
"ms": "ms"
|
|
129
|
+
}
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
{
|
|
2
|
+
"\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" prend uniquement en charge \"application/json\" et n'a pas besoin d'être spécifié",
|
|
3
|
+
"Add branch": "Ajouter une branche",
|
|
4
|
+
"Add parameter": "Ajouter un paramètre",
|
|
5
|
+
"Add request header": "Ajouter un en-tête de requête",
|
|
6
|
+
"Advanced": "Avancé",
|
|
7
|
+
"After record added": "Après l'ajout d'un enregistrement",
|
|
8
|
+
"After record added or updated": "Après l'ajout ou la mise à jour d'un enregistrement",
|
|
9
|
+
"After record deleted": "Après la suppression d'un enregistrement",
|
|
10
|
+
"After record updated": "Après la mise à jour d'un enregistrement",
|
|
11
|
+
"All succeeded": "Tous réussis",
|
|
12
|
+
"Any succeeded": "Un réussi",
|
|
13
|
+
"Any succeeded or failed": "Un réussi ou un échoué",
|
|
14
|
+
"Arithmetic calculation": "Calcul arithmétique",
|
|
15
|
+
"Based on certain date": "Basé sur une date spécifique",
|
|
16
|
+
"Based on date field of collection": "Basé sur le champ de date de la collection",
|
|
17
|
+
"Body": "Corps",
|
|
18
|
+
"Boolean": "Booléen",
|
|
19
|
+
"Branch into \"Yes\" and \"No\"": "Brancher sur \"Oui\" et \"Non\"",
|
|
20
|
+
"By custom date": "Par date personnalisée",
|
|
21
|
+
"By day": "Par jour",
|
|
22
|
+
"By field": "Par champ",
|
|
23
|
+
"By hour": "Par heure",
|
|
24
|
+
"By minute": "Par minute",
|
|
25
|
+
"By month": "Par mois",
|
|
26
|
+
"By week": "Par semaine",
|
|
27
|
+
"Calculation": "Calcul",
|
|
28
|
+
"Calculation result": "Résultat du calcul",
|
|
29
|
+
"Can not delete": "Impossible de supprimer",
|
|
30
|
+
"Canceled": "Annulé",
|
|
31
|
+
"Changed fields": "Champs modifiés",
|
|
32
|
+
"Collection event": "Événement de collection",
|
|
33
|
+
"Collection operations": "Opérations sur la collection",
|
|
34
|
+
"Condition": "Condition",
|
|
35
|
+
"Conditions": "Conditions",
|
|
36
|
+
"Configure calculation": "Configurer le calcul",
|
|
37
|
+
"Constant": "Constante",
|
|
38
|
+
"Continue after all branches succeeded": "Continuer après la réussite de toutes les branches",
|
|
39
|
+
"Continue after any branch succeeded": "Continuer après la réussite d'une branche",
|
|
40
|
+
"Continue after any branch succeeded, or exit after any branch failed": "Continuer après la réussite d'une branche, ou quitter après l'échec d'une branche",
|
|
41
|
+
"Continue when \"Yes\"": "Continuer quand \"Oui\"",
|
|
42
|
+
"Control": "Contrôle",
|
|
43
|
+
"Copy to new version": "Copier vers une nouvelle version",
|
|
44
|
+
"Create record": "Créer un enregistrement",
|
|
45
|
+
"Days": "Jours",
|
|
46
|
+
"Delay": "Délai",
|
|
47
|
+
"Duplicate": "Dupliquer",
|
|
48
|
+
"Duration": "Durée",
|
|
49
|
+
"End": "Fin",
|
|
50
|
+
"End status": "Statut de fin",
|
|
51
|
+
"Ends on": "Se termine le",
|
|
52
|
+
"Every": "Chaque",
|
|
53
|
+
"Exactly at": "Exactement à",
|
|
54
|
+
"Executed": "Exécuté",
|
|
55
|
+
"Executed at": "Exécuté à",
|
|
56
|
+
"Execution history": "Historique d'exécution",
|
|
57
|
+
"Extended types": "Types étendus",
|
|
58
|
+
"Fail and exit": "Échouer et quitter",
|
|
59
|
+
"Failed": "Échoué",
|
|
60
|
+
"False": "Faux",
|
|
61
|
+
"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.": "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.",
|
|
62
|
+
"Format": "Format",
|
|
63
|
+
"HTTP method": "Méthode HTTP",
|
|
64
|
+
"HTTP request": "Requête HTTP",
|
|
65
|
+
"Headers": "En-têtes",
|
|
66
|
+
"Hours": "Heures",
|
|
67
|
+
"Ignore fail request and continue workflow": "Ignorer l'échec de la requête et continuer le workflow",
|
|
68
|
+
"Input request data": "Entrée des données de requête",
|
|
69
|
+
"Insert": "Insérer",
|
|
70
|
+
"Load failed": "Échec du chargement",
|
|
71
|
+
"Loading": "Chargement",
|
|
72
|
+
"Minutes": "Minutes",
|
|
73
|
+
"Mode": "Mode",
|
|
74
|
+
"Months": "Mois",
|
|
75
|
+
"Multiple records": "Multiples enregistrements",
|
|
76
|
+
"No end": "Pas de fin",
|
|
77
|
+
"No limit": "Pas de limite",
|
|
78
|
+
"No repeat": "Pas de répétition",
|
|
79
|
+
"Node in executed workflow cannot be modified": "Le nœud dans le workflow exécuté ne peut pas être modifié",
|
|
80
|
+
"Node result": "Résultat du nœud",
|
|
81
|
+
"Node type": "Type de nœud",
|
|
82
|
+
"Null": "Null",
|
|
83
|
+
"Off": "Désactivé",
|
|
84
|
+
"On": "Activé",
|
|
85
|
+
"On going": "En cours",
|
|
86
|
+
"Only support standard JSON data": "Prend uniquement en charge les données JSON standard",
|
|
87
|
+
"Only triggers when match conditions": "Déclenche uniquement lorsque les conditions correspondent",
|
|
88
|
+
"Only update records matching conditions": "Mettre à jour uniquement les enregistrements correspondant aux conditions",
|
|
89
|
+
"Operator": "Calculatrice",
|
|
90
|
+
"Parallel branch": "Branche parallèle",
|
|
91
|
+
"Parameters": "Paramètres",
|
|
92
|
+
"Pending": "En attente",
|
|
93
|
+
"Please select collection first": "Veuillez d'abord sélectionner une collection",
|
|
94
|
+
"Query record": "Interroger un enregistrement",
|
|
95
|
+
"Queueing": "En attente",
|
|
96
|
+
"Repeat limit": "Limite de répétition",
|
|
97
|
+
"Repeat mode": "Mode de répétition",
|
|
98
|
+
"Schedule event": "Événement planifié",
|
|
99
|
+
"Seconds": "Secondes",
|
|
100
|
+
"Select status": "Sélectionner un statut",
|
|
101
|
+
"Starts on": "Commence le",
|
|
102
|
+
"Status": "Statut",
|
|
103
|
+
"String": "Chaîne de caractères",
|
|
104
|
+
"String operation": "Opération sur les chaînes de caractères",
|
|
105
|
+
"Succeed and continue": "Réussir et continuer",
|
|
106
|
+
"Succeeded": "Réussi",
|
|
107
|
+
"The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "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.",
|
|
108
|
+
"This node contains branches, deleting will also be preformed to them, are you sure?": "Ce nœud contient des branches, leur suppression sera également effectuée, êtes-vous sûr(e) ?",
|
|
109
|
+
"Timeout config": "Configuration du délai d'expiration",
|
|
110
|
+
"Trigger": "Déclencheur",
|
|
111
|
+
"Trigger data": "Données de déclenchement",
|
|
112
|
+
"Trigger in executed workflow cannot be modified": "Le déclencheur dans le workflow exécuté ne peut pas être modifié",
|
|
113
|
+
"Trigger mode": "Mode de déclenchement",
|
|
114
|
+
"Trigger on": "Déclencher sur",
|
|
115
|
+
"Trigger time": "Temps de déclenchement",
|
|
116
|
+
"Trigger type": "Type de déclencheur",
|
|
117
|
+
"Trigger variables": "Variables de déclenchement",
|
|
118
|
+
"Triggered at": "Déclenché à",
|
|
119
|
+
"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.": "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é.",
|
|
120
|
+
"True": "Vrai",
|
|
121
|
+
"URL": "URL",
|
|
122
|
+
"Update record": "Mettre à jour un enregistrement",
|
|
123
|
+
"Use variable": "Utiliser une variable",
|
|
124
|
+
"Version": "Version",
|
|
125
|
+
"Weeks": "Semaines",
|
|
126
|
+
"Workflow": "Workflow",
|
|
127
|
+
"concat": "concat",
|
|
128
|
+
"ms": "ms"
|
|
129
|
+
}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Advanced": "アドバンスド",
|
|
3
|
+
"After record added": "レコードを追加した後",
|
|
4
|
+
"After record added or updated": "レコードを追加もしくは更新した後",
|
|
5
|
+
"After record deleted": "レコードを削除した後",
|
|
6
|
+
"After record updated": "レコードを更新した後",
|
|
7
|
+
"All succeeded": "すべて成功",
|
|
8
|
+
"Any succeeded": "いずれかが成功",
|
|
9
|
+
"Arithmetic calculation": "算術演算",
|
|
10
|
+
"Based on certain date": "カスタム時間",
|
|
11
|
+
"Based on date field of collection": "コレクションのフィールド時間に基づく",
|
|
12
|
+
"Boolean": "論理値",
|
|
13
|
+
"Branch into \"Yes\" and \"No\"": "「はい」と「いいえ」で分岐して続行",
|
|
14
|
+
"By custom date": "カスタム時間",
|
|
15
|
+
"By day": "日ごと",
|
|
16
|
+
"By field": "フィールドごと",
|
|
17
|
+
"By hour": "時間ごと",
|
|
18
|
+
"By minute": "分ごと",
|
|
19
|
+
"By month": "月ごと",
|
|
20
|
+
"By week": "週ごと",
|
|
21
|
+
"Calculation": "演算",
|
|
22
|
+
"Calculation result": "演算結果",
|
|
23
|
+
"Canceled": "取消",
|
|
24
|
+
"Changed fields": "フィールドが変更された時",
|
|
25
|
+
"Collection event": "コレクションイベント",
|
|
26
|
+
"Collection operations": "フィールド操作",
|
|
27
|
+
"Condition": "条件",
|
|
28
|
+
"Conditions": "条件設定",
|
|
29
|
+
"Configure calculation": "演算設定",
|
|
30
|
+
"Constant": "定数",
|
|
31
|
+
"Continue after all branches succeeded": "すべての分岐が成功した後に続行",
|
|
32
|
+
"Continue after any branch succeeded": "いずれかの分岐が成功した後に続行",
|
|
33
|
+
"Continue when \"Yes\"": "「はい」の場合に続行",
|
|
34
|
+
"Control": "プロセス制御",
|
|
35
|
+
"Copy to new version": "新しいバージョンにコピー",
|
|
36
|
+
"Create record": "レコード追加",
|
|
37
|
+
"Days": "日",
|
|
38
|
+
"End": "終了",
|
|
39
|
+
"Ends on": "終了",
|
|
40
|
+
"Every": "毎",
|
|
41
|
+
"Exactly at": "ちょうど",
|
|
42
|
+
"Execution history": "実行履歴",
|
|
43
|
+
"Failed": "失敗",
|
|
44
|
+
"False": "偽",
|
|
45
|
+
"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.": "値が割り当てられていないフィールドはデフォルト値に設定され、デフォルト値がないフィールドは null に設定されます",
|
|
46
|
+
"Hours": "時",
|
|
47
|
+
"Load failed": "読み込みに失敗しました",
|
|
48
|
+
"Minutes": "分",
|
|
49
|
+
"Mode": "モデル",
|
|
50
|
+
"Months": "月",
|
|
51
|
+
"Multiple records": "複数レコード",
|
|
52
|
+
"No limit": "無制限",
|
|
53
|
+
"No repeat": "繰り返さない",
|
|
54
|
+
"Node in executed workflow cannot be modified": "すでに実行されたワークフローのノードは変更できません",
|
|
55
|
+
"Node result": "ノードの結果",
|
|
56
|
+
"Node type": "ノードタイプ",
|
|
57
|
+
"Off": "無効",
|
|
58
|
+
"On": "有効",
|
|
59
|
+
"On going": "処理中",
|
|
60
|
+
"Only triggers when match conditions": "以下の条件を満たすと発動",
|
|
61
|
+
"Only update records matching conditions": "条件を満たすレコードのみ更新",
|
|
62
|
+
"Parallel branch": "分岐",
|
|
63
|
+
"Please select collection first": "先にコレクションを選択してください",
|
|
64
|
+
"Query record": "クエリ レコード",
|
|
65
|
+
"Repeat limit": "繰り返し回数",
|
|
66
|
+
"Repeat mode": "繰り返しパターン",
|
|
67
|
+
"Schedule event": "スケジュールイベント",
|
|
68
|
+
"Seconds": "秒",
|
|
69
|
+
"Starts on": "開始",
|
|
70
|
+
"Status": "状態",
|
|
71
|
+
"String": "文字列",
|
|
72
|
+
"String operation": "文字列操作",
|
|
73
|
+
"Succeeded": "成功",
|
|
74
|
+
"This node contains branches, deleting will also be preformed to them, are you sure?": "ノードにはブランチが含まれており、そのすべてのブランチの下にあるすべての子ノードが同時に削除されます。続行してもよろしいですか?",
|
|
75
|
+
"Trigger": "トリガー",
|
|
76
|
+
"Trigger in executed workflow cannot be modified": "すでにワークフローを実行したトリガーは変更できません",
|
|
77
|
+
"Trigger mode": "トリガーモード",
|
|
78
|
+
"Trigger on": "トリガータイミング",
|
|
79
|
+
"Trigger type": "トリガータイプ",
|
|
80
|
+
"Trigger variables": "トリガーフィールド",
|
|
81
|
+
"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.": "選択したフィールドの 1 つが変更された場合にのみトリガーされます。 選択されていない場合は、フィールドが変更されたときにトリガーされることを意味します。 レコードが追加または削除されると、すべてのフィールドが変更されたと見なされます。",
|
|
82
|
+
"True": "真",
|
|
83
|
+
"Update record": "レコード更新",
|
|
84
|
+
"Version": "バージョン",
|
|
85
|
+
"Weeks": "週",
|
|
86
|
+
"Workflow": "ワークフロー"
|
|
87
|
+
}
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
{
|
|
2
|
+
"\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" 헤더는 \"application/json\"만 지원하며 지정할 필요가 없습니다",
|
|
3
|
+
"A single number will be treated as a loop count, a single string will be treated as an array of characters, and other non-array values will be converted to arrays. The loop node ends when the loop count is reached, or when the array loop is completed. You can also add condition nodes to the loop to terminate it.": "단일 숫자는 루프 카운트로 처리되고, 단일 문자열은 문자 배열로 처리되며, 다른 배열이 아닌 값은 배열로 변환됩니다. 루프 노드는 루프 카운트에 도달하거나 배열 루프가 완료되었을 때 종료됩니다. 루프를 종료하려면 루프에 조건 노드를 추가할 수도 있습니다.",
|
|
4
|
+
"Aborted": "중단됨",
|
|
5
|
+
"Add a new record to a collection. You can use variables from upstream nodes to assign values to fields.": "컬렉션에 새로운 레코드를 추가합니다. 상류 노드의 변수를 사용하여 필드에 값을 할당할 수 있습니다.",
|
|
6
|
+
"Add branch": "분기 추가",
|
|
7
|
+
"Add parameter": "매개변수 추가",
|
|
8
|
+
"Add request header": "요청 헤더 추가",
|
|
9
|
+
"Add workflow": "워크플로우 추가",
|
|
10
|
+
"Advanced": "고급",
|
|
11
|
+
"After record added": "레코드 추가 후",
|
|
12
|
+
"After record added or updated": "레코드 추가 또는 업데이트 후",
|
|
13
|
+
"After record deleted": "레코드 삭제 후",
|
|
14
|
+
"After record updated": "레코드 업데이트 후",
|
|
15
|
+
"Aggregate": "집계 조회",
|
|
16
|
+
"Aggregator function": "집계 함수",
|
|
17
|
+
"All pass": "모두 통과",
|
|
18
|
+
"All succeeded": "모두 성공",
|
|
19
|
+
"Allow multiple records as a result": "다중 레코드 결과 허용",
|
|
20
|
+
"An expression for calculation in each rows": "각 행의 계산을 위한 식",
|
|
21
|
+
"Any pass": "어떤 통과",
|
|
22
|
+
"Any succeeded": "어떤 것이든 성공",
|
|
23
|
+
"Any succeeded or failed": "어떤 것이든 성공 또는 실패",
|
|
24
|
+
"Anyone pass": "누구든 통과하면 됩니다.",
|
|
25
|
+
"Assignee": "담당자",
|
|
26
|
+
"Assignees": "담당자",
|
|
27
|
+
"Associations to use": "사용할 관련 데이터",
|
|
28
|
+
"Auto delete history when execution is on end status": "실행이 종료 상태일 때 자동으로 이력 삭제",
|
|
29
|
+
"Based on certain date": "특정 날짜를 기준으로",
|
|
30
|
+
"Based on date field of collection": "컬렉션의 날짜 필드를 기반으로",
|
|
31
|
+
"Based on the boolean result of the calculation to determine whether to \"continue\" or \"exit\" the process, or continue on different branches of \"yes\" and \"no\".": "계산 결과의 참/거짓을 기반으로 프로세스를 '계속' 또는 '종료'하거나 '예' 및 '아니오'의 다른 분기에서 계속합니다.",
|
|
32
|
+
"Basic": "기본",
|
|
33
|
+
"Bind workflows": "워크플로우 바인딩",
|
|
34
|
+
"Body": "본문",
|
|
35
|
+
"Branch into \"Yes\" and \"No\"": "\"예\" 및 \"아니오\"로 분기",
|
|
36
|
+
"By custom date": "사용자 정의 날짜별",
|
|
37
|
+
"By day": "매일",
|
|
38
|
+
"By field": "필드별",
|
|
39
|
+
"By hour": "시간당",
|
|
40
|
+
"By minute": "분당",
|
|
41
|
+
"By month": "매월",
|
|
42
|
+
"By using a loop node, you can perform the same operation on multiple sets of data. The source of these sets can be either multiple records from a query node or multiple associated records of a single record. Loop node can also be used for iterating a certain number of times or for looping through each character in a string. However, excessive looping may cause performance issues, so use with caution.": "루프 노드를 사용하면 여러 데이터 세트에 동일한 작업을 수행할 수 있습니다. 이러한 세트의 소스는 쿼리 노드에서 가져온 여러 레코드이거나 단일 레코드의 여러 관련 레코드일 수 있습니다. 루프 노드는 특정 횟수만큼 반복하거나 문자열의 각 문자를 반복하는 데에도 사용할 수 있습니다. 그러나 과도한 루핑은 성능 문제를 일으킬 수 있으므로 주의해서 사용하십시오.",
|
|
43
|
+
"By week": "매주",
|
|
44
|
+
"Calculate an expression based on a calculation engine and obtain a value as the result. Variables in the upstream nodes can be used in the expression. The expression can be a static or dynamic one from an expression collections.": "계산 엔진을 기반으로 식을 계산하고 결과값을 얻습니다. 상류 노드의 변수를 식에서 사용할 수 있습니다. 식은 표현식 컬렉션에서 정적 또는 동적일 수 있습니다.",
|
|
45
|
+
"Calculate an expression based on a calculation engine and obtain a value as the result. Variables in the upstream nodes can be used in the expression. The expression is dynamic one from an expression collections.": "계산 엔진을 기반으로 한 식을 계산하고 결과값을 얻습니다. 상류 노드의 변수를 식에 사용할 수 있습니다. 식은 표현식 컬렉션에서 동적으로 가져온 것입니다.",
|
|
46
|
+
"Calculation": "계산",
|
|
47
|
+
"Calculation engine": "계산 엔진",
|
|
48
|
+
"Calculation expression": "계산식",
|
|
49
|
+
"Calculation result": "계산 결과",
|
|
50
|
+
"Canceled": "취소됨",
|
|
51
|
+
"Cannot delete": "삭제할 수 없음",
|
|
52
|
+
"Changed fields": "변경된 필드",
|
|
53
|
+
"Clear all executions": "모든 실행 기록 지우기",
|
|
54
|
+
"Clear executions will not reset executed count, and started executions will not be deleted, are you sure you want to delete them all?": "지우기 작업은 실행 횟수를 재설정하지 않으며 시작된 실행이 삭제되지 않습니다. 모두 삭제하시겠습니까?",
|
|
55
|
+
"Collaboratively": "협력하여",
|
|
56
|
+
"Collection event": "데이터 테이블 이벤트",
|
|
57
|
+
"Collection operations": "데이터 테이블 조작",
|
|
58
|
+
"Condition": "조건",
|
|
59
|
+
"Condition expression": "조건식",
|
|
60
|
+
"Configure user interface": "사용자 인터페이스 구성",
|
|
61
|
+
"Continue after all branches succeeded": "모든 분기가 성공한 후 계속",
|
|
62
|
+
"Continue after any branch succeeded": "어떤 분기가든 성공한 후 계속",
|
|
63
|
+
"Continue after any branch succeeded, or exit after any branch failed.": "어떤 분기든 성공하면 계속 진행하거나 어떤 분기든 실패하면 종료합니다.",
|
|
64
|
+
"Continue the process": "프로세스 계속 진행",
|
|
65
|
+
"Continue when \"Yes\"": "\"예\"일 때 계속",
|
|
66
|
+
"Control": "프로세스 제어",
|
|
67
|
+
"Copy to new version": "새 버전으로 복사",
|
|
68
|
+
"Could be used for manually submitting data, and determine whether to continue or exit. Workflow will generate a todo item for assigned user when it reaches a manual node, and continue processing after user submits the form.": "수동으로 데이터를 제출하고 계속 진행할지 종료할지를 결정하는 데 사용될 수 있습니다. 워크플로우가 수동 노드에 도달하면 지정된 사용자에 대해 할 일 항목을 생성하고 사용자가 양식을 제출한 후 처리를 계속합니다.",
|
|
69
|
+
"Counting, summing, finding maximum, minimum, and average values for multiple records of a collection or associated data of a record.": "데이터 테이블의 여러 레코드 또는 레코드의 관련 데이터에 대한 카운트, 합계, 최대값, 최소값, 평균값을 찾습니다.",
|
|
70
|
+
"Create record": "레코드 생성",
|
|
71
|
+
"Create record form": "레코드 생성 양식",
|
|
72
|
+
"Custom form": "사용자 정의 양식",
|
|
73
|
+
"Data of associated collection": "관련 데이터 테이블 데이터",
|
|
74
|
+
"Data of collection": "데이터 테이블 데이터",
|
|
75
|
+
"Data operation nodes in the workflow will run in the same transaction until any interruption. Any failure will cause data rollback, and will also rollback the history of the execution.": "워크플로우의 데이터 작업 노드는 어떠한 방해가 발생할 때까지 동일한 트랜잭션에서 실행됩니다. 어떠한 실패도 데이터 롤백을 유발하며 실행 이력도 롤백됩니다.",
|
|
76
|
+
"Data record": "데이터 레코드",
|
|
77
|
+
"Date variables": "날짜 변수",
|
|
78
|
+
"Days": "일",
|
|
79
|
+
"Delay": "지연",
|
|
80
|
+
"Delay a period of time and then continue or exit the process. Can be used to set wait or timeout times in parallel branches.": "일정 시간 동안 지연한 다음 프로세스를 계속하거나 종료합니다. 병렬 분기에서 대기 또는 타임아웃 시간을 설정하는 데 사용할 수 있습니다.",
|
|
81
|
+
"Delete a main version will cause all other revisions to be deleted too.": "주 버전을 삭제하면 모든 다른 수정 사항도 삭제됩니다.",
|
|
82
|
+
"Delete record": "데이터 삭제",
|
|
83
|
+
"Delete records of a collection. Could use variables in the workflow context as a filter. All records matching the filter will be deleted.": "데이터 테이블의 레코드를 삭제합니다. 워크플로 컨텍스트의 변수를 필터로 사용할 수 있습니다. 필터와 일치하는 모든 레코드가 삭제됩니다.",
|
|
84
|
+
"Distinct": "중복 제거",
|
|
85
|
+
"Duplicate": "복제",
|
|
86
|
+
"Duplicate to new workflow": "새로운 워크플로우로 복제",
|
|
87
|
+
"Duration": "기간",
|
|
88
|
+
"Dynamic Calculation": "동적 표현식 계산",
|
|
89
|
+
"Dynamic expression": "동적 표현식",
|
|
90
|
+
"Each user has own task": "각 사용자는 고유한 작업을 갖습니다.",
|
|
91
|
+
"End": "종료",
|
|
92
|
+
"End Status": "종료 상태",
|
|
93
|
+
"Ends on": "종료 날짜",
|
|
94
|
+
"Error": "오류",
|
|
95
|
+
"Event triggers when submitted a workflow bound form action.": "작업 흐름에 바인딩된 폼 작업이 제출될 때 이벤트가 트리거됩니다.",
|
|
96
|
+
"Event will be scheduled and triggered based on time conditions.": "이벤트는 시간 조건을 기반으로 예약되고 트리거됩니다.",
|
|
97
|
+
"Event will be triggered on collection data row created, updated or deleted.": "데이터 테이블의 데이터 행이 생성, 업데이트 또는 삭제될 때 이벤트가 트리거됩니다.",
|
|
98
|
+
"Every": "매",
|
|
99
|
+
"Everyone shares one task": "모두가 하나의 작업을 공유합니다.",
|
|
100
|
+
"Everyone should pass": "모든 사람이 통과해야 합니다.",
|
|
101
|
+
"Exactly at": "정확한 시각",
|
|
102
|
+
"Execute a SQL statement in database": "데이터베이스에서 SQL 문을 실행합니다",
|
|
103
|
+
"Executed": "실행됨",
|
|
104
|
+
"Executed at": "실행된 시각",
|
|
105
|
+
"Executed workflow cannot be modified": "이미 실행된 워크플로는 수정할 수 없습니다.",
|
|
106
|
+
"Execution history": "실행 기록",
|
|
107
|
+
"Exit when the query result is null": "쿼리 결과가 null인 경우 종료",
|
|
108
|
+
"Expression syntax error": "식 문법 오류",
|
|
109
|
+
"Extended types": "확장된 유형",
|
|
110
|
+
"Fail and exit": "실패하고 종료",
|
|
111
|
+
"Failed": "실패",
|
|
112
|
+
"Failed to satisfy node configurations.": "노드 구성을 충족하지 못했습니다.",
|
|
113
|
+
"False": "거짓",
|
|
114
|
+
"Field name existed in form": "양식에 이미 존재하는 필드 이름",
|
|
115
|
+
"Field to aggregate": "집계할 필드",
|
|
116
|
+
"Filter settings": "필터 설정",
|
|
117
|
+
"Form data model": "폼 데이터 모델",
|
|
118
|
+
"Form event": "폼 이벤트",
|
|
119
|
+
"Format": "형식",
|
|
120
|
+
"Full form data": "전체 폼 데이터",
|
|
121
|
+
"General failed but should do another try.": "일반적인 실패이지만 다시 시도해야 합니다.",
|
|
122
|
+
"HTTP method": "HTTP 메서드",
|
|
123
|
+
"HTTP request": "HTTP 요청",
|
|
124
|
+
"Headers": "헤더",
|
|
125
|
+
"Hours": "시간",
|
|
126
|
+
"If checked, when there are multiple records in the query result, an array will be returned as the result, which can be operated on one by one using a loop node. Otherwise, only one record will be returned.": "선택한 경우, 쿼리 결과에 여러 레코드가 있는 경우 결과로 배열이 반환되어 루프 노드를 사용하여 하나씩 조작할 수 있습니다. 그렇지 않으면 하나의 레코드만 반환됩니다.",
|
|
127
|
+
"Ignore failed request and continue workflow": "실패한 요청을 무시하고 워크플로를 계속합니다",
|
|
128
|
+
"Input request data": "요청 데이터 입력",
|
|
129
|
+
"Insert": "삽입",
|
|
130
|
+
"Load failed": "로드 실패",
|
|
131
|
+
"Loading": "로딩 중",
|
|
132
|
+
"Loop": "루프",
|
|
133
|
+
"Loop index": "현재 인덱스",
|
|
134
|
+
"Loop length": "루프 길이",
|
|
135
|
+
"Loop target": "루프 대상",
|
|
136
|
+
"Manual": "수동",
|
|
137
|
+
"Manually canceled the whole execution when waiting.": "대기 중에 수동으로 전체 실행이 취소되었습니다.",
|
|
138
|
+
"Minutes": "분",
|
|
139
|
+
"Mode": "모드",
|
|
140
|
+
"Months": "월",
|
|
141
|
+
"Negotiation": "협상",
|
|
142
|
+
"No end": "종료 없음",
|
|
143
|
+
"No limit": "제한 없음",
|
|
144
|
+
"No repeat": "반복 없음",
|
|
145
|
+
"Node result": "노드 결과",
|
|
146
|
+
"Node type": "노드 유형",
|
|
147
|
+
"Off": "비활성",
|
|
148
|
+
"On": "활성",
|
|
149
|
+
"On going": "진행 중",
|
|
150
|
+
"Only support standard JSON data": "표준 JSON 데이터만 지원합니다",
|
|
151
|
+
"Only triggers when match conditions": "일치하는 조건이 충족될 때만 트리거됩니다",
|
|
152
|
+
"Only update records matching conditions": "조건과 일치하는 레코드만 업데이트",
|
|
153
|
+
"Operations": "작업",
|
|
154
|
+
"Operator": "연산자",
|
|
155
|
+
"Parallel branch": "병렬 분기",
|
|
156
|
+
"Parameters": "매개변수",
|
|
157
|
+
"Pending": "보류 중",
|
|
158
|
+
"Please add at least one condition": "최소한 하나의 조건을 추가하세요.",
|
|
159
|
+
"Please select the associated fields that need to be accessed in subsequent nodes. With more than two levels of to-many associations may cause performance issue, please use with caution.": "후속 노드에서 액세스해야 하는 연관 필드를 선택하십시오. 두 개 이상의 수많은 연관 레벨은 성능 문제를 발생시킬 수 있으므로 주의해서 사용하십시오.",
|
|
160
|
+
"Please select the collection first": "먼저 데이터 테이블을 선택하세요.",
|
|
161
|
+
"Preload associations": "연결 데이터를 미리 로드합니다",
|
|
162
|
+
"Query record": "데이터 조회",
|
|
163
|
+
"Query records from a collection. You can use variables from upstream nodes as query conditions.": "데이터 테이블에서 레코드를 조회합니다. 상류 노드의 변수를 쿼리 조건으로 사용할 수 있습니다.",
|
|
164
|
+
"Query result": "쿼리 결과",
|
|
165
|
+
"Queueing": "대기 중",
|
|
166
|
+
"Rejected": "거부됨",
|
|
167
|
+
"Rejected from a manual node.": "수동 노드에서 거부되었습니다.",
|
|
168
|
+
"Repeat limit": "반복 제한",
|
|
169
|
+
"Repeat mode": "반복 모드",
|
|
170
|
+
"Resolved": "해결됨",
|
|
171
|
+
"Retry needed": "재시도 필요",
|
|
172
|
+
"Role of user submitted form": "사용자 제출 폼의 역할",
|
|
173
|
+
"Run multiple branch processes in parallel.": "여러 분기 프로세스를 병렬로 실행합니다.",
|
|
174
|
+
"Running of some node was aborted by program flow.": "프로그램 플로우에 의해 일부 노드의 실행이 중단되었습니다.",
|
|
175
|
+
"SQL action": "SQL 작업",
|
|
176
|
+
"Save temporarily": "임시로 저장",
|
|
177
|
+
"Schedule event": "일정 이벤트",
|
|
178
|
+
"Scope variables": "범위 변수",
|
|
179
|
+
"Seconds": "초",
|
|
180
|
+
"Select context": "컨텍스트 선택",
|
|
181
|
+
"Select dynamic expression": "동적 표현식 선택",
|
|
182
|
+
"Select status": "상태 선택",
|
|
183
|
+
"Select the dynamic expression queried from the upstream node. You need to query it from an expression collection.": "상류 노드에서 조회한 동적 표현식을 선택하세요. 표현식 컬렉션에서 조회해야 합니다.",
|
|
184
|
+
"Select workflow": "워크플로우 선택",
|
|
185
|
+
"Send HTTP request to a URL. You can use the variables in the upstream nodes as request headers, parameters and request body.": "URL에 HTTP 요청을 보냅니다. 상류 노드의 변수를 요청 헤더, 매개변수 및 요청 본문으로 사용할 수 있습니다.",
|
|
186
|
+
"Separately": "별도로",
|
|
187
|
+
"Some node meets error.": "일부 노드에서 오류가 발생했습니다.",
|
|
188
|
+
"Started and executing, maybe waiting for an async callback (manual, delay, etc.).": "시작되어 실행 중이며, 비동기 콜백을 기다리는 중일 수 있습니다(수동, 지연 등).",
|
|
189
|
+
"Starts on": "시작 날짜",
|
|
190
|
+
"Status": "상태",
|
|
191
|
+
"String operation": "문자열 연산",
|
|
192
|
+
"Succeed and continue": "성공하고 계속",
|
|
193
|
+
"Successfully finished.": "성공적으로 완료됨",
|
|
194
|
+
"Sync enabled status of all workflows from the database": "데이터베이스에서 모든 워크플로우의 활성 상태 동기화",
|
|
195
|
+
"Syntax references: ": "문법 참조:",
|
|
196
|
+
"System time": "시스템 시간",
|
|
197
|
+
"System variables": "시스템 변수",
|
|
198
|
+
"Target type": "대상 유형",
|
|
199
|
+
"Task node": "작업 노드",
|
|
200
|
+
"Terminate the process": "프로세스 종료",
|
|
201
|
+
"The result of this node has been referenced by other nodes ({{nodes}}), please remove the usage before deleting.": "이 노드의 결과가 다른 노드에서 참조되었습니다({{nodes}}). 삭제 전에 참조를 제거하세요.",
|
|
202
|
+
"The updated data can trigger other workflows, and the audit log will also be recorded. But it is usually only applicable to several or dozens of pieces of data, otherwise there will be performance problems.": "업데이트된 데이터는 다른 워크플로를 트리거하고 감사 로그도 기록할 수 있습니다. 그러나 일반적으로 몇 개 또는 몇 십 개의 데이터에만 적용되며, 그렇지 않으면 성능 문제가 발생할 수 있습니다.",
|
|
203
|
+
"This node contains branches, deleting will also be performed on them, are you sure?": "이 노드에는 분기가 포함되어 있습니다. 삭제하면 그들에게도 적용됩니다. 계속하시겠습니까?",
|
|
204
|
+
"Timeout config": "시간 초과 설정",
|
|
205
|
+
"Trigger": "트리거",
|
|
206
|
+
"Trigger data": "트리거 데이터",
|
|
207
|
+
"Trigger data context": "트리거 데이터 컨텍스트",
|
|
208
|
+
"Trigger mode": "트리거 모드",
|
|
209
|
+
"Trigger on": "트리거 조건",
|
|
210
|
+
"Trigger time": "트리거 시간",
|
|
211
|
+
"Trigger type": "트리거 유형",
|
|
212
|
+
"Trigger variables": "트리거 변수",
|
|
213
|
+
"Triggered at": "트리거 시간",
|
|
214
|
+
"Triggered but still waiting in the queue to execute.": "트리거되었지만 아직 대기열에서 실행 대기 중입니다.",
|
|
215
|
+
"Triggered only if one of the selected fields changes. If unselected, it means that it will be triggered when any field changes. When the record is added or deleted, any field is considered to have been changed.": "선택한 필드 중 하나라도 변경되면 트리거됩니다. 선택하지 않으면 어떤 필드가 변경되더라도 트리거됩니다. 레코드가 추가되거나 삭제될 때는 어떤 필드든지 변경된 것으로 간주됩니다.",
|
|
216
|
+
"True": "참",
|
|
217
|
+
"URL": "주소",
|
|
218
|
+
"Unassigned fields will be set to default values, and those without default values will be set to null.": "미할당된 필드는 기본값으로 설정되며 기본값이 없는 필드는 null로 설정됩니다.",
|
|
219
|
+
"Unconfigured": "구성되지 않음",
|
|
220
|
+
"Update all eligible data at one time, which has better performance when the amount of data is large. But the updated data will not trigger other workflows, and will not record audit logs.": "일괄로 모든 해당 데이터를 한 번에 업데이트하며, 데이터 양이 많을 때 성능이 더 좋습니다. 그러나 업데이트된 데이터는 다른 워크플로를 트리거하지 않으며 감사 로그를 기록하지 않습니다.",
|
|
221
|
+
"Update in a batch": "일괄 업데이트",
|
|
222
|
+
"Update mode": "업데이트 모드",
|
|
223
|
+
"Update one by one": "개별 업데이트",
|
|
224
|
+
"Update record": "레코드 업데이트",
|
|
225
|
+
"Update record form": "레코드 업데이트 양식",
|
|
226
|
+
"Update records of a collection. You can use variables from upstream nodes as query conditions and field values.": "데이터 테이블의 레코드를 업데이트합니다. 상류 노드의 변수를 쿼리 조건 및 필드 값으로 사용할 수 있습니다.",
|
|
227
|
+
"Usage of SQL query result is not supported yet.": "아직 SQL 쿼리 결과의 사용은 지원되지 않습니다.",
|
|
228
|
+
"Use a collection to match form data.": "폼 데이터를 일치시키기 위해 데이터 테이블을 사용합니다.",
|
|
229
|
+
"Use transaction": "트랜잭션 사용",
|
|
230
|
+
"Use variable": "변수 사용",
|
|
231
|
+
"User interface": "사용자 인터페이스",
|
|
232
|
+
"User submitted form": "사용자가 제출한 폼",
|
|
233
|
+
"Values preset in this form will override user submitted ones when continue or reject.": "이 양식에 사전 설정된 값은 계속 또는 거부될 때 사용자가 제출한 값이 덮어씁니다.",
|
|
234
|
+
"Variable datasource": "변수 데이터 소스",
|
|
235
|
+
"Variable key of node": "노드 변수 키",
|
|
236
|
+
"Version": "버전",
|
|
237
|
+
"View user interface": "사용자 인터페이스 보기",
|
|
238
|
+
"Weeks": "주",
|
|
239
|
+
"Workflow": "워크플로우",
|
|
240
|
+
"Workflow todos": "워크플로우 할 일",
|
|
241
|
+
"Workflow will be triggered after saving succeeded.": "저장 성공 후 워크플로우가 트리거됩니다.",
|
|
242
|
+
"Workflow will be triggered after submitting succeeded.": "제출 성공 후 워크플로우가 트리거됩니다.",
|
|
243
|
+
"Workflow will be triggered directly once the button is clicked, without data saving.": "버튼을 클릭하면 데이터 저장 없이 워크플로우가 직접 트리거됩니다.",
|
|
244
|
+
"concat": "연결",
|
|
245
|
+
"ms": "밀리초"
|
|
246
|
+
}
|