@truedat/audit 7.5.9 → 7.5.10

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.
Files changed (65) hide show
  1. package/package.json +45 -71
  2. package/src/components/ContentFilters.js +3 -1
  3. package/src/components/NotificationEvent.js +2 -2
  4. package/src/components/NotificationsMenu.js +2 -10
  5. package/src/components/ShareLinkForm.js +33 -32
  6. package/src/components/ShareLinkPopup.js +1 -1
  7. package/src/components/Subscription.js +0 -1
  8. package/src/components/SubscriptionActions.js +1 -2
  9. package/src/components/SubscriptionCrumbs.js +2 -3
  10. package/src/components/SubscriptionEdit.js +0 -1
  11. package/src/components/SubscriptionForm.js +305 -310
  12. package/src/components/SubscriptionLoader.js +2 -2
  13. package/src/components/SubscriptionNew.js +0 -1
  14. package/src/components/SubscriptionRoutes.js +58 -56
  15. package/src/components/SubscriptionWatchForm.js +0 -1
  16. package/src/components/Subscriptions.js +4 -7
  17. package/src/components/SubscriptionsLoader.js +1 -1
  18. package/src/components/__tests__/NotificationEvent.spec.js +1 -4
  19. package/src/components/__tests__/NotificationsMenu.spec.js +0 -1
  20. package/src/components/__tests__/ShareLinkForm.spec.js +23 -17
  21. package/src/components/__tests__/ShareLinkPopup.spec.js +0 -1
  22. package/src/components/__tests__/Subscription.spec.js +0 -1
  23. package/src/components/__tests__/SubscriptionActions.spec.js +0 -1
  24. package/src/components/__tests__/SubscriptionCrumbs.spec.js +5 -5
  25. package/src/components/__tests__/SubscriptionEdit.spec.js +9 -8
  26. package/src/components/__tests__/SubscriptionForm.spec.js +141 -125
  27. package/src/components/__tests__/SubscriptionLoader.spec.js +0 -1
  28. package/src/components/__tests__/SubscriptionNew.spec.js +5 -5
  29. package/src/components/__tests__/SubscriptionRoutes.spec.js +44 -6
  30. package/src/components/__tests__/SubscriptionWatchForm.spec.js +37 -34
  31. package/src/components/__tests__/Subscriptions.spec.js +0 -1
  32. package/src/components/__tests__/SubscriptionsLoader.spec.js +0 -1
  33. package/src/components/__tests__/__snapshots__/NotificationEvent.spec.js.snap +6 -6
  34. package/src/components/__tests__/__snapshots__/NotificationsMenu.spec.js.snap +7 -7
  35. package/src/components/__tests__/__snapshots__/ShareLinkForm.spec.js.snap +6 -6
  36. package/src/components/__tests__/__snapshots__/Subscription.spec.js.snap +4 -5
  37. package/src/components/__tests__/__snapshots__/SubscriptionActions.spec.js.snap +0 -1
  38. package/src/components/__tests__/__snapshots__/SubscriptionCrumbs.spec.js.snap +20 -30
  39. package/src/components/__tests__/__snapshots__/SubscriptionEdit.spec.js.snap +75 -25
  40. package/src/components/__tests__/__snapshots__/SubscriptionForm.spec.js.snap +23 -23
  41. package/src/components/__tests__/__snapshots__/SubscriptionNew.spec.js.snap +64 -25
  42. package/src/components/__tests__/__snapshots__/SubscriptionRoutes.spec.js.snap +710 -23
  43. package/src/components/__tests__/__snapshots__/SubscriptionWatchForm.spec.js.snap +83 -80
  44. package/src/components/__tests__/__snapshots__/Subscriptions.spec.js.snap +28 -37
  45. package/src/index.js +1 -2
  46. package/src/reducers/__tests__/auditMessage.spec.js +3 -3
  47. package/src/reducers/__tests__/auditRedirect.spec.js +2 -2
  48. package/src/reducers/__tests__/events.spec.js +1 -1
  49. package/src/reducers/__tests__/searchSubscription.spec.js +5 -5
  50. package/src/reducers/__tests__/subscription.spec.js +1 -1
  51. package/src/reducers/__tests__/subscriptionUpdating.spec.js +6 -6
  52. package/src/reducers/__tests__/subscriptions.spec.js +1 -1
  53. package/src/reducers/auditMessage.js +1 -1
  54. package/src/reducers/events.js +1 -1
  55. package/src/sagas/__tests__/deleteSubscription.spec.js +7 -7
  56. package/src/sagas/__tests__/fetchSubscription.spec.js +2 -2
  57. package/src/sagas/__tests__/readNotification.spec.js +2 -2
  58. package/src/sagas/__tests__/updateSubscription.spec.js +8 -8
  59. package/src/sagas/createSubscription.js +3 -3
  60. package/src/sagas/deleteSubscription.js +1 -1
  61. package/src/sagas/readNotification.js +1 -1
  62. package/src/sagas/updateSubscription.js +4 -4
  63. package/src/selectors/__tests__/getRecipients.spec.js +0 -32
  64. package/src/selectors/getRecipients.js +0 -34
  65. package/src/selectors/index.js +0 -1
@@ -24,7 +24,7 @@ exports[`<ShareLinkForm /> matches the latest snapshot 1`] = `
24
24
  class="field"
25
25
  >
26
26
  <label>
27
- Share link
27
+ share.link.label
28
28
  </label>
29
29
  <div
30
30
  class="ui action input"
@@ -52,7 +52,7 @@ exports[`<ShareLinkForm /> matches the latest snapshot 1`] = `
52
52
  class="field"
53
53
  >
54
54
  <label>
55
- Add recipients
55
+ share.add_recipients.label
56
56
  </label>
57
57
  <div
58
58
  aria-expanded="false"
@@ -77,7 +77,7 @@ exports[`<ShareLinkForm /> matches the latest snapshot 1`] = `
77
77
  class="divider default text"
78
78
  role="alert"
79
79
  >
80
- User or group
80
+ share.add_recipients.placeholder
81
81
  </div>
82
82
  <i
83
83
  aria-hidden="true"
@@ -133,11 +133,11 @@ exports[`<ShareLinkForm /> matches the latest snapshot 1`] = `
133
133
  class="field"
134
134
  >
135
135
  <label>
136
- Include message
136
+ share.message.label
137
137
  </label>
138
138
  <textarea
139
139
  name="shareTextarea"
140
- placeholder="Take a look at this page"
140
+ placeholder="share.message.placeholder"
141
141
  rows="3"
142
142
  />
143
143
  </div>
@@ -150,7 +150,7 @@ exports[`<ShareLinkForm /> matches the latest snapshot 1`] = `
150
150
  tabindex="-1"
151
151
  type="submit"
152
152
  >
153
- Share
153
+ actions.share
154
154
  </button>
155
155
  </div>
156
156
  </form>
@@ -7,9 +7,10 @@ exports[`<Subscription /> matches the latest snapshot 1`] = `
7
7
  >
8
8
  <a
9
9
  class="section"
10
+ data-discover="true"
10
11
  href="/subscriptions"
11
12
  >
12
- Subscriptions
13
+ subscriptions.header
13
14
  </a>
14
15
  <i
15
16
  aria-hidden="true"
@@ -50,7 +51,6 @@ exports[`<Subscription /> matches the latest snapshot 1`] = `
50
51
  class="right aligned four wide column"
51
52
  >
52
53
  <div
53
- aria-disabled="false"
54
54
  aria-expanded="false"
55
55
  class="ui floating dropdown button icon group-actions"
56
56
  role="listbox"
@@ -77,7 +77,7 @@ exports[`<Subscription /> matches the latest snapshot 1`] = `
77
77
  <div
78
78
  class="header"
79
79
  >
80
- Events
80
+ subscriptions.events
81
81
  </div>
82
82
  <div
83
83
  class="description"
@@ -96,7 +96,7 @@ exports[`<Subscription /> matches the latest snapshot 1`] = `
96
96
  <div
97
97
  class="header"
98
98
  >
99
- Notify results
99
+ subscriptions.status
100
100
  </div>
101
101
  <div
102
102
  class="description"
@@ -141,7 +141,6 @@ exports[`<SubscriptionHeader /> matches the latest snapshot 1`] = `
141
141
  class="right aligned four wide column"
142
142
  >
143
143
  <div
144
- aria-disabled="false"
145
144
  aria-expanded="false"
146
145
  class="ui floating dropdown button icon group-actions"
147
146
  role="listbox"
@@ -17,7 +17,6 @@ exports[`<ModalDelete /> matches the latest snapshot 1`] = `
17
17
  exports[`<SubscriptionActions /> matches the latest snapshot 1`] = `
18
18
  <div>
19
19
  <div
20
- aria-disabled="false"
21
20
  aria-expanded="false"
22
21
  class="ui floating dropdown button icon group-actions"
23
22
  role="listbox"
@@ -1,36 +1,26 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`<SubscriptionCrumbs /> matches the latest snapshot 1`] = `
4
- <Breadcrumb>
5
- <BreadcrumbSection
6
- active={false}
7
- as={
8
- {
9
- "$$typeof": Symbol(react.forward_ref),
10
- "displayName": "Link",
11
- "propTypes": {
12
- "innerRef": [Function],
13
- "onClick": [Function],
14
- "replace": [Function],
15
- "target": [Function],
16
- "to": [Function],
17
- },
18
- "render": [Function],
19
- }
20
- }
21
- to="/subscriptions"
4
+ <div>
5
+ <div
6
+ class="ui breadcrumb"
22
7
  >
23
- <MemoizedFormattedMessage
24
- id="subscriptions.header"
8
+ <a
9
+ class="section"
10
+ data-discover="true"
11
+ href="/subscriptions"
12
+ >
13
+ subscriptions.header
14
+ </a>
15
+ <i
16
+ aria-hidden="true"
17
+ class="right angle icon divider"
25
18
  />
26
- </BreadcrumbSection>
27
- <BreadcrumbDivider
28
- icon="right angle"
29
- />
30
- <BreadcrumbSection
31
- active={true}
32
- >
33
- CrumbTitle
34
- </BreadcrumbSection>
35
- </Breadcrumb>
19
+ <div
20
+ class="active section"
21
+ >
22
+ CrumbTitle
23
+ </div>
24
+ </div>
25
+ </div>
36
26
  `;
@@ -7,9 +7,10 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
7
7
  >
8
8
  <a
9
9
  class="section"
10
+ data-discover="true"
10
11
  href="/subscriptions"
11
12
  >
12
- Subscriptions
13
+ subscriptions.header
13
14
  </a>
14
15
  <i
15
16
  aria-hidden="true"
@@ -18,7 +19,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
18
19
  <div
19
20
  class="active section"
20
21
  >
21
- undefined - undefined
22
+ John Doe - foo
22
23
  </div>
23
24
  </div>
24
25
  <div
@@ -34,18 +35,17 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
34
35
  <div
35
36
  class="content"
36
37
  >
37
- Edit Subscription
38
+ subscriptions.actions.edit
38
39
  </div>
39
40
  </h2>
40
41
  <form
41
42
  class="ui form"
42
- style="display: none;"
43
43
  >
44
44
  <div
45
45
  class="required field subscription-form-radio-group"
46
46
  >
47
47
  <label>
48
- Subscriber
48
+ subscriptions.subscriber
49
49
  </label>
50
50
  <div
51
51
  class="ui radio checkbox"
@@ -64,7 +64,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
64
64
  aria-hidden="true"
65
65
  class="student icon"
66
66
  />
67
- Role
67
+ role
68
68
  </label>
69
69
  </div>
70
70
  <div
@@ -84,7 +84,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
84
84
  aria-hidden="true"
85
85
  class="student icon"
86
86
  />
87
- Role in taxonomy
87
+ taxonomy_role
88
88
  </label>
89
89
  </div>
90
90
  <div
@@ -104,7 +104,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
104
104
  aria-hidden="true"
105
105
  class="envelope icon"
106
106
  />
107
- Email
107
+ email
108
108
  </label>
109
109
  </div>
110
110
  <div
@@ -125,15 +125,64 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
125
125
  aria-hidden="true"
126
126
  class="user icon"
127
127
  />
128
- User
128
+ user
129
129
  </label>
130
130
  </div>
131
131
  </div>
132
+ <div
133
+ class="field"
134
+ >
135
+ <div
136
+ aria-disabled="false"
137
+ aria-expanded="false"
138
+ class="ui search selection dropdown"
139
+ role="combobox"
140
+ >
141
+ <input
142
+ aria-autocomplete="list"
143
+ autocomplete="off"
144
+ class="search"
145
+ tabindex="0"
146
+ type="text"
147
+ value=""
148
+ />
149
+ <div
150
+ aria-atomic="true"
151
+ aria-live="polite"
152
+ class="divider text"
153
+ role="alert"
154
+ >
155
+ John Doe
156
+ </div>
157
+ <i
158
+ aria-hidden="true"
159
+ class="dropdown icon"
160
+ />
161
+ <div
162
+ class="menu transition"
163
+ role="listbox"
164
+ >
165
+ <div
166
+ aria-checked="true"
167
+ aria-selected="true"
168
+ class="active selected item"
169
+ role="option"
170
+ style="pointer-events: all;"
171
+ >
172
+ <span
173
+ class="text"
174
+ >
175
+ John Doe
176
+ </span>
177
+ </div>
178
+ </div>
179
+ </div>
180
+ </div>
132
181
  <div
133
182
  class="required field subscription-form-radio-group"
134
183
  >
135
184
  <label>
136
- Resource
185
+ subscriptions.resource
137
186
  </label>
138
187
  <div
139
188
  class="ui radio checkbox"
@@ -151,7 +200,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
151
200
  aria-hidden="true"
152
201
  class="sitemap icon"
153
202
  />
154
- Domain
203
+ domain
155
204
  </label>
156
205
  </div>
157
206
  <div
@@ -170,7 +219,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
170
219
  aria-hidden="true"
171
220
  class="sitemap icon"
172
221
  />
173
- Domain and children
222
+ domains
174
223
  </label>
175
224
  </div>
176
225
  <div
@@ -189,7 +238,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
189
238
  aria-hidden="true"
190
239
  class="book icon"
191
240
  />
192
- Concept
241
+ concept
193
242
  </label>
194
243
  </div>
195
244
  <div
@@ -208,7 +257,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
208
257
  aria-hidden="true"
209
258
  class="block layout icon"
210
259
  />
211
- Structure
260
+ data_structure
212
261
  </label>
213
262
  </div>
214
263
  <div
@@ -227,7 +276,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
227
276
  aria-hidden="true"
228
277
  class="plug icon"
229
278
  />
230
- Source
279
+ source
231
280
  </label>
232
281
  </div>
233
282
  <div
@@ -247,7 +296,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
247
296
  aria-hidden="true"
248
297
  class="clipboard check icon"
249
298
  />
250
- Quality Rule
299
+ rule
251
300
  </label>
252
301
  </div>
253
302
  </div>
@@ -255,7 +304,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
255
304
  class="required field"
256
305
  >
257
306
  <label>
258
- Notifications periodicity
307
+ subscriptions.periodicity
259
308
  </label>
260
309
  <div
261
310
  aria-expanded="false"
@@ -270,7 +319,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
270
319
  class="divider default text"
271
320
  role="alert"
272
321
  >
273
- Notifications periodicity
322
+ subscriptions.periodicity
274
323
  </div>
275
324
  <i
276
325
  aria-hidden="true"
@@ -289,7 +338,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
289
338
  <span
290
339
  class="text"
291
340
  >
292
- Daily
341
+ daily
293
342
  </span>
294
343
  </div>
295
344
  <div
@@ -302,7 +351,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
302
351
  <span
303
352
  class="text"
304
353
  >
305
- Immediately
354
+ minutely
306
355
  </span>
307
356
  </div>
308
357
  <div
@@ -315,7 +364,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
315
364
  <span
316
365
  class="text"
317
366
  >
318
- Hourly
367
+ hourly
319
368
  </span>
320
369
  </div>
321
370
  </div>
@@ -325,7 +374,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
325
374
  class="disabled required field"
326
375
  >
327
376
  <label>
328
- Events
377
+ subscriptions.events
329
378
  </label>
330
379
  <div
331
380
  aria-disabled="true"
@@ -342,7 +391,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
342
391
  class="divider default text"
343
392
  role="alert"
344
393
  >
345
- Events
394
+ subscriptions.events
346
395
  </div>
347
396
  <i
348
397
  aria-hidden="true"
@@ -358,10 +407,11 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
358
407
  >
359
408
  <a
360
409
  class="ui secondary button"
410
+ data-discover="true"
361
411
  href="/"
362
412
  role="button"
363
413
  >
364
- Cancel
414
+ actions.cancel
365
415
  </a>
366
416
  <button
367
417
  class="ui primary disabled button"
@@ -369,7 +419,7 @@ exports[`<SubscriptionEdit /> matches the latest snapshot 1`] = `
369
419
  tabindex="-1"
370
420
  type="submit"
371
421
  >
372
- Save
422
+ actions.save
373
423
  </button>
374
424
  </div>
375
425
  </form>
@@ -4,13 +4,12 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
4
4
  <div>
5
5
  <form
6
6
  class="ui form"
7
- style=""
8
7
  >
9
8
  <div
10
9
  class="required field subscription-form-radio-group"
11
10
  >
12
11
  <label>
13
- Subscriber
12
+ subscriptions.subscriber
14
13
  </label>
15
14
  <div
16
15
  class="ui checked radio checkbox"
@@ -30,7 +29,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
30
29
  aria-hidden="true"
31
30
  class="student icon"
32
31
  />
33
- Role
32
+ role
34
33
  </label>
35
34
  </div>
36
35
  <div
@@ -50,7 +49,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
50
49
  aria-hidden="true"
51
50
  class="student icon"
52
51
  />
53
- Role in taxonomy
52
+ taxonomy_role
54
53
  </label>
55
54
  </div>
56
55
  <div
@@ -70,7 +69,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
70
69
  aria-hidden="true"
71
70
  class="envelope icon"
72
71
  />
73
- Email
72
+ email
74
73
  </label>
75
74
  </div>
76
75
  <div
@@ -90,7 +89,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
90
89
  aria-hidden="true"
91
90
  class="user icon"
92
91
  />
93
- User
92
+ user
94
93
  </label>
95
94
  </div>
96
95
  </div>
@@ -114,7 +113,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
114
113
  class="divider default text"
115
114
  role="alert"
116
115
  >
117
- Search Roles...
116
+ role.search.placeholder
118
117
  </div>
119
118
  <i
120
119
  aria-hidden="true"
@@ -157,7 +156,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
157
156
  class="required field subscription-form-radio-group"
158
157
  >
159
158
  <label>
160
- Resource
159
+ subscriptions.resource
161
160
  </label>
162
161
  <div
163
162
  class="ui radio checkbox"
@@ -175,7 +174,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
175
174
  aria-hidden="true"
176
175
  class="sitemap icon"
177
176
  />
178
- Domain
177
+ domain
179
178
  </label>
180
179
  </div>
181
180
  <div
@@ -194,7 +193,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
194
193
  aria-hidden="true"
195
194
  class="sitemap icon"
196
195
  />
197
- Domain and children
196
+ domains
198
197
  </label>
199
198
  </div>
200
199
  <div
@@ -213,7 +212,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
213
212
  aria-hidden="true"
214
213
  class="book icon"
215
214
  />
216
- Concept
215
+ concept
217
216
  </label>
218
217
  </div>
219
218
  <div
@@ -232,7 +231,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
232
231
  aria-hidden="true"
233
232
  class="block layout icon"
234
233
  />
235
- Structure
234
+ data_structure
236
235
  </label>
237
236
  </div>
238
237
  <div
@@ -252,7 +251,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
252
251
  aria-hidden="true"
253
252
  class="plug icon"
254
253
  />
255
- Source
254
+ source
256
255
  </label>
257
256
  </div>
258
257
  <div
@@ -272,7 +271,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
272
271
  aria-hidden="true"
273
272
  class="clipboard check icon"
274
273
  />
275
- Quality Rule
274
+ rule
276
275
  </label>
277
276
  </div>
278
277
  </div>
@@ -280,7 +279,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
280
279
  class="required field"
281
280
  >
282
281
  <label>
283
- Notifications periodicity
282
+ subscriptions.periodicity
284
283
  </label>
285
284
  <div
286
285
  aria-expanded="false"
@@ -295,7 +294,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
295
294
  class="divider default text"
296
295
  role="alert"
297
296
  >
298
- Notifications periodicity
297
+ subscriptions.periodicity
299
298
  </div>
300
299
  <i
301
300
  aria-hidden="true"
@@ -314,7 +313,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
314
313
  <span
315
314
  class="text"
316
315
  >
317
- Daily
316
+ daily
318
317
  </span>
319
318
  </div>
320
319
  <div
@@ -327,7 +326,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
327
326
  <span
328
327
  class="text"
329
328
  >
330
- Immediately
329
+ minutely
331
330
  </span>
332
331
  </div>
333
332
  <div
@@ -340,7 +339,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
340
339
  <span
341
340
  class="text"
342
341
  >
343
- Hourly
342
+ hourly
344
343
  </span>
345
344
  </div>
346
345
  </div>
@@ -350,7 +349,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
350
349
  class="disabled required field"
351
350
  >
352
351
  <label>
353
- Events
352
+ subscriptions.events
354
353
  </label>
355
354
  <div
356
355
  aria-disabled="true"
@@ -367,7 +366,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
367
366
  class="divider default text"
368
367
  role="alert"
369
368
  >
370
- Events
369
+ subscriptions.events
371
370
  </div>
372
371
  <i
373
372
  aria-hidden="true"
@@ -383,10 +382,11 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
383
382
  >
384
383
  <a
385
384
  class="ui secondary button"
385
+ data-discover="true"
386
386
  href="/"
387
387
  role="button"
388
388
  >
389
- Cancel
389
+ actions.cancel
390
390
  </a>
391
391
  <button
392
392
  class="ui primary disabled button"
@@ -394,7 +394,7 @@ exports[`<SubscriptionForm /> matches the latest snapshot 1`] = `
394
394
  tabindex="-1"
395
395
  type="submit"
396
396
  >
397
- Save
397
+ actions.save
398
398
  </button>
399
399
  </div>
400
400
  </form>