You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: client/src/assets/text.json
+4-44Lines changed: 4 additions & 44 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,7 @@
20
20
},
21
21
"triggerForm": {
22
22
"formTitle": "Fill in details",
23
+
"formTitleWithoutInputs": "Continue to trigger the workflow instance",
23
24
"formName": "Participant Information",
24
25
"fieldsI9": {
25
26
"field1": "Preparer name",
@@ -39,20 +40,6 @@
39
40
"field2": "HR manager email"
40
41
}
41
42
},
42
-
"home": {
43
-
"card1": {
44
-
"title": "Create a workflow",
45
-
"description": "Create a new workflow definition"
46
-
},
47
-
"card2": {
48
-
"title": "Trigger a workflow",
49
-
"description": "Get a list of workflow definitions and trigger a workflow instance"
50
-
},
51
-
"card3": {
52
-
"title": "Manage workflows",
53
-
"description": "Get the status of existing workflow instances and cancel instances"
54
-
}
55
-
},
56
43
"loader": {
57
44
"title": "Waiting for log in"
58
45
},
@@ -67,26 +54,16 @@
67
54
"descriptions": {
68
55
"codeDescription": "See the source code: "
69
56
},
70
-
"createWorkflow": {
71
-
"mainDescription": "This scenario creates a new workflow definition in the user's account. These workflows depend on eSignature templates that need to exist in the user's account before the workflows can be created. If the necessary templates do not exist in the user's account, the sample app will prompt them to download the relevant template definitions and create them in their account.",
72
-
"step1Description": "The WorkflowManagement: createWorkflowDefinition method is used to create a new workflow definition in the user's account. The steps for this workflow are defined in the sample app's source code.",
73
-
"step2Description": "After the new workflow definition has been created it needs to be published using the WorkflowManagement: publishOrUnPublishWorkflow method. Once the workflow has been published, new instances of that workflow can be triggered through the Trigger a workflow scenario."
74
-
},
75
57
"triggerWorkflow": {
76
58
"mainDescription": "This scenario gets a list of published workflow definitions, gets the status of the last workflow instance triggered from each workflow definition, and triggers a new workflow instance.",
77
59
"step1Description": "Display all of the workflow definitions in the user's account by calling the WorkflowManagment: getWorkflowDefinitions endpoint. Each row on this page represents a workflow definition.",
78
60
"step2Description": "After the user chooses a workflow to trigger, the next step is to get the workflow definition by calling the WorkflowMangement: getWorkflowDefinition endpoint. The response for this API call includes a triggerURL property that will be used in the next step.",
79
-
"step3Description": "Finally, call the WorkflowTrigger: triggerWorkflow endpoint to trigger the workflow instance. The response of this call includes the workflowInstanceUrl where the workflow participant can complete the workflow steps."
80
-
},
81
-
"manageWorkflow": {
82
-
"mainDescription": "This scenario displays a list of workflow instances, the status of those instances, and the option to cancel them.",
83
-
"step1Description": "The WorkflowInstanceManagement: getWorkflowInstances endpoint is called to get a list of the workflow instances that have been triggered by the sample app.",
84
-
"step2Description": "To get the status of a given workflow instance, the WorkflowInstanceManagement: getWorkflowInstance method is called.",
85
-
"step3Description": "If a user chooses to cancel a workflow instance, the WorkflowInstanceManagement: cancelWorkflowInstance method is called."
61
+
"step3Description": "Finally, call the WorkflowTrigger: triggerWorkflow endpoint to trigger the workflow instance. The response of this call includes the workflowInstanceUrl where the workflow participant can complete the workflow steps."
86
62
}
87
63
},
88
64
"workflowList": {
89
65
"doNotHaveWorkflow": "You do not have any workflows in your account",
66
+
"pleaseCreateWorkflow": "Please <a href=''>manually create a workflow</a> in your account before using the sample app.",
90
67
"columns": {
91
68
"lastRunStatus": "Status of last run",
92
69
"workflowName": "Workflow name",
@@ -101,20 +78,6 @@
101
78
"workflowTriggered": {
102
79
"title": "Workflow triggered",
103
80
"description": "To complete the workflow steps, select Continue"
104
-
},
105
-
"workflowDefinitionCreated": {
106
-
"publish": {
107
-
"description": "To publish the workflow, proceed with the Publish button",
0 commit comments