@@ -68,83 +68,83 @@ const templates = [
6868 },
6969 {
7070 id: ' seq' ,
71- label: ' Sequence(A, B) ' ,
71+ label: ' Sequence of two activities ' ,
7272 render: ' text' ,
7373 escapeForRegex: true , // make user input safe in a regex
7474 format: ' After "{{A}}" ends, immediately start "{{B}}".' ,
7575 fields: [
76- { key: ' A' , label: ' Activity A ' , type: ' activity' , required: true , placeholder: ' Activity name' },
77- { key: ' B' , label: ' Activity B ' , type: ' activity' , required: true , placeholder: ' Activity name' },
76+ { key: ' A' , label: ' Preceding activity ' , type: ' activity' , required: true , placeholder: ' Activity name' },
77+ { key: ' B' , label: ' Following activity ' , type: ' activity' , required: true , placeholder: ' Activity name' },
7878 ]
7979 },{
8080 id: ' eventually' ,
81- label: ' Eventual sequence(A, B) ' ,
81+ label: ' Long term sequence of two activities ' ,
8282 render: ' text' ,
8383 escapeForRegex: true , // make user input safe in a regex
8484 format: ' After "{{A}}" ends, eventually start "{{B}}".' ,
8585 fields: [
86- { key: ' A' , label: ' Activity A ' , type: ' activity' , required: true , placeholder: ' Activity name' },
87- { key: ' B' , label: ' Activity B ' , type: ' activity' , required: true , placeholder: ' Activity name' },
86+ { key: ' A' , label: ' Preceding activity ' , type: ' activity' , required: true , placeholder: ' Activity name' },
87+ { key: ' B' , label: ' Following activity ' , type: ' activity' , required: true , placeholder: ' Activity name' },
8888 ]
8989 },
9090 {
9191 id: ' parallel' ,
92- label: ' Parallel Split(A, B, C) ' ,
92+ label: ' Parallel split of activities ' ,
9393 render: ' text' ,
9494 escapeForRegex: true , // make user input safe in a regex
9595 format: ' After "{{A}}" ends, immediately start "{{B}}" and start "{{C}}".' ,
9696 fields: [
97- { key: ' A' , label: ' Activity A ' , type: ' activity' , required: true , placeholder: ' Activity name' },
98- { key: ' B' , label: ' Activity B ' , type: ' activity' , required: true , placeholder: ' Activity name' },
99- { key: ' C' , label: ' Activity C ' , type: ' activity' , required: true , placeholder: ' Activity name' },
97+ { key: ' A' , label: ' Activity before the split ' , type: ' activity' , required: true , placeholder: ' Activity name' },
98+ { key: ' B' , label: ' Activity in parallel 1 ' , type: ' activity' , required: true , placeholder: ' Activity name' },
99+ { key: ' C' , label: ' Activity in parallel 2 ' , type: ' activity' , required: true , placeholder: ' Activity name' },
100100 ]
101101 },
102102 {
103103 id: ' synch' ,
104- label: ' Synchronization(A, B, C) ' ,
104+ label: ' Merge of parallel activities ' ,
105105 render: ' text' ,
106106 escapeForRegex: true , // make user input safe in a regex
107107 format: ' After "{{A}}" ends and "{{B}}" ends, immediately start "{{C}}".' ,
108108 fields: [
109- { key: ' A' , label: ' Activity A ' , type: ' activity' , required: true , placeholder: ' Activity name' },
110- { key: ' B' , label: ' Activity B ' , type: ' activity' , required: true , placeholder: ' Activity name' },
111- { key: ' C' , label: ' Activity C ' , type: ' activity' , required: true , placeholder: ' Activity name' },
109+ { key: ' A' , label: ' Activity in parallel 1 ' , type: ' activity' , required: true , placeholder: ' Activity name' },
110+ { key: ' B' , label: ' Activity in parallel 2 ' , type: ' activity' , required: true , placeholder: ' Activity name' },
111+ { key: ' C' , label: ' Activity after the merge ' , type: ' activity' , required: true , placeholder: ' Activity name' },
112112 ]
113113 },
114114 {
115115 id: ' ex-choice' ,
116- label: ' Exclusive Choice(A, B, C) ' ,
116+ label: ' Choice between activities ' ,
117117 render: ' text' ,
118118 escapeForRegex: true , // make user input safe in a regex
119119 format: ' After "{{A}}" ends, immediately either start "{{B}}" or start "{{C}}".' ,
120120 fields: [
121- { key: ' A' , label: ' Activity A ' , type: ' activity' , required: true , placeholder: ' Activity name' },
122- { key: ' B' , label: ' Activity B ' , type: ' activity' , required: true , placeholder: ' Activity name' },
123- { key: ' C' , label: ' Activity C ' , type: ' activity' , required: true , placeholder: ' Activity name' },
121+ { key: ' A' , label: ' Activity before the split ' , type: ' activity' , required: true , placeholder: ' Activity name' },
122+ { key: ' B' , label: ' Activity option 1 ' , type: ' activity' , required: true , placeholder: ' Activity name' },
123+ { key: ' C' , label: ' Activity option 2 ' , type: ' activity' , required: true , placeholder: ' Activity name' },
124124 ]
125125 },
126126 {
127127 id: ' simple-merge' ,
128- label: ' Simple Merge(A, B, C) ' ,
128+ label: ' Merge of activities in choice ' ,
129129 render: ' text' ,
130130 escapeForRegex: true , // make user input safe in a regex
131131 format: ' After either "{{A}}" ends or "{{B}}" ends, immediately start "{{C}}".' ,
132132 fields: [
133- { key: ' A' , label: ' Activity A ' , type: ' activity' , required: true , placeholder: ' Activity name' },
134- { key: ' B' , label: ' Activity B ' , type: ' activity' , required: true , placeholder: ' Activity name' },
135- { key: ' C' , label: ' Activity C ' , type: ' activity' , required: true , placeholder: ' Activity name' },
133+ { key: ' A' , label: ' Activity option 1 ' , type: ' activity' , required: true , placeholder: ' Activity name' },
134+ { key: ' B' , label: ' Activity option 2 ' , type: ' activity' , required: true , placeholder: ' Activity name' },
135+ { key: ' C' , label: ' Activity after the merge ' , type: ' activity' , required: true , placeholder: ' Activity name' },
136136 ]
137137 },
138138 {
139139 id: ' repeat-since' ,
140- label: ' Repeat Since(A, B, C) ' ,
140+ label: ' Repetition of activities ' ,
141141 render: ' text' ,
142142 escapeForRegex: true , // make user input safe in a regex
143143 format: ' After "{{A}}" ends, immediately repeat since "{{B}}" or start "{{C}}".' ,
144144 fields: [
145- { key: ' A' , label: ' Activity A ' , type: ' activity' , required: true , placeholder: ' Activity name' },
146- { key: ' B' , label: ' Activity B ' , type: ' activity' , required: true , placeholder: ' Activity name' },
147- { key: ' C' , label: ' Activity C ' , type: ' activity' , required: true , placeholder: ' Activity name' },
145+ { key: ' A' , label: ' Activity after which the loop can start ' , type: ' activity' , required: true , placeholder: ' Activity name' },
146+ { key: ' B' , label: ' Entry point of the loop ' , type: ' activity' , required: true , placeholder: ' Activity name' },
147+ { key: ' C' , label: ' Activity after the loop ' , type: ' activity' , required: true , placeholder: ' Activity name' },
148148 ]
149149 },
150150];
0 commit comments