-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtext.json
More file actions
133 lines (133 loc) · 5.79 KB
/
text.json
File metadata and controls
133 lines (133 loc) · 5.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"hero": {
"title": "Welcome to the Workflows Sample App",
"paragraph": "Discover the power of the Docusign Maestro API (beta). Trigger and manage Maestro workflows in an interactive environment.",
"authentication": "Supports both Authorization Code Grant and JSON Web Token (JWT) authentication.",
"tryButton": "Try the App",
"GitHub": "Go to GitHub",
"footer": {
"title": "Docusign: Build the future of agreements",
"paragraph": "Powering the world's agreements with Docusign APIs",
"copyright": "© 2024 Docusign Inc.",
"createButton": "Create developer account",
"learnButton": "Learn more"
}
},
"login": {
"acg": "Authorization Code Grant",
"acgDescription": "This authentication type lets you trigger and manage workflows in your own account.",
"jwt": "JSON Web Token",
"jwtDescription": "This authentication type lets you trigger and manage workflows in our preconfigured account."
},
"triggerForm": {
"formTitle": "Fill in details",
"formTitleWithoutInputs": "Continue to trigger the workflow instance",
"formName": "Participant Information",
"fieldsI9": {
"field1": "Preparer name",
"field2": "Preparer email",
"field3": "Employee name",
"field4": "Employee email",
"field5": "HR Approver name",
"field6": "HR Approver email"
},
"fieldsOffer": {
"field1": "HR manager name",
"field2": "HR manager email",
"field3": "Company"
},
"fieldsNda": {
"field1": "HR manager name",
"field2": "HR manager email"
}
},
"home": {
"card1": {
"title": "Trigger a workflow",
"description": "Get a list of workflow definitions and trigger a workflow instance"
},
"card2": {
"title": "Manage workflows",
"description": "Get the status of existing workflow instances and cancel instances"
}
},
"loader": {
"title": "Waiting for log in"
},
"behindTheScenes": {
"titles": {
"main": "Scenario overview",
"code": "Code flow",
"step1": "Step 1",
"step2": "Step 2",
"step3": "Step 3"
},
"descriptions": {
"codeDescription": "See the source code: "
},
"triggerWorkflow": {
"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.",
"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.",
"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.",
"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."
},
"manageWorkflow": {
"mainDescription": "This scenario displays a list of workflow instances, the status of those instances, and the option to cancel them.",
"step1Description": "The WorkflowInstanceManagement: getWorkflowInstances endpoint is called to get a list of the workflow instances that have been triggered by the sample app.",
"step2Description": "To get the status of a given workflow instance, the WorkflowInstanceManagement: getWorkflowInstance method is called.",
"step3Description": "If a user chooses to cancel a workflow instance, the WorkflowInstanceManagement: cancelWorkflowInstance method is called."
}
},
"workflowList": {
"doNotHaveWorkflow": "You do not have any workflows in your account",
"pleaseCreateWorkflow": "Please <a href=''>manually create a workflow</a> in your account before using the sample app.",
"columns": {
"lastRunStatus": "Status of last run",
"workflowName": "Workflow name",
"workflowType": "Workflow type",
"workflowStatus": "Workflow status"
}
},
"instanceList": {
"cancelButton": "Cancel",
"columns": {
"instance": "Instance",
"progress": "Progress",
"startedBy": "Started by"
}
},
"pageTitles": {
"manageWorkflow": "Manage workflows",
"triggerWorkflow": "Trigger a workflow instance",
"completeWorkflow": "Complete the workflow"
},
"popups": {
"workflowTriggered": {
"title": "Incompatible workflow",
"descriptiona": "See and redirect the user back to the workflows page",
"description": "See <a href='https://developers.docusign.com/docs/maestro-api/maestro101/embed-workflow/#embedded-workflow-instance-recommendations-and-restrictions' target='_blank'>Embedded workflow instance recommendations and restrictions</a> and redirect the user back to the workflows page"
}
},
"buttons": {
"login": "Log in",
"logout": "Log out",
"behindTheScenes": "Behind the scenes",
"continue": "Continue",
"cancel": "Cancel",
"triggerWorkflow": "Trigger workflow",
"triggerNewWorkflow": "Trigger new workflow ->",
"getStarted": "Get started",
"moreInfo": "More info",
"backToWorkflows": "← Back to workflows",
"updateWorkflow": "Update workflow status",
"cancelWorkflow": "Cancel workflow",
"backHome": "← Back to home",
"pauseWorkflow": "Pause the creation of instances",
"resumeWorkflow": "Resume the creation of instances"
},
"links": {
"github": "https://github.com/docusign/sample-app-workflows-node",
"createsandbox": "https://go.docusign.com/o/sandbox/",
"learnmore": "https://developers.docusign.com/docs/maestro-api/"
}
}