@bigbinary/neeto-webhooks-frontend 1.6.0 → 1.6.2
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/app/javascript/src/translations/en.json +81 -0
- package/app/javascript/src/translations/index.js +1 -0
- package/dist/index.cjs.js +111 -3042
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +63 -2994
- package/dist/index.js.map +1 -1
- package/package.json +10 -4
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
{
|
|
2
|
+
"neetoWebhooks": {
|
|
3
|
+
"common": {
|
|
4
|
+
"event_one": "Event",
|
|
5
|
+
"event_other": "Events",
|
|
6
|
+
"endpoint": "Endpoint",
|
|
7
|
+
"responseStatus": "Response status"
|
|
8
|
+
},
|
|
9
|
+
"entity": {
|
|
10
|
+
"webhook": "webhook",
|
|
11
|
+
"configure": "Configure"
|
|
12
|
+
},
|
|
13
|
+
"buttons": {
|
|
14
|
+
"saveChanges": "Save changes",
|
|
15
|
+
"cancel": "Cancel",
|
|
16
|
+
"delete": "Delete",
|
|
17
|
+
"edit": "Edit",
|
|
18
|
+
"viewDetails": "View details"
|
|
19
|
+
},
|
|
20
|
+
"errors": {
|
|
21
|
+
"webhook": {
|
|
22
|
+
"required": "Please enter your endpoint URL",
|
|
23
|
+
"invalidUrl": "Please enter a valid URL",
|
|
24
|
+
"invalidUrlProtocol": "Please enter a valid URL. URL must begin with http or https",
|
|
25
|
+
"urlNotUnique": "Endpoint URL must be unique",
|
|
26
|
+
"events": {
|
|
27
|
+
"required": "Please select atleast one webhook event"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"delivery": {
|
|
32
|
+
"title": "Deliveries",
|
|
33
|
+
"redeliver": "Redeliver",
|
|
34
|
+
"redelivery": "redelivery",
|
|
35
|
+
"request": "Request",
|
|
36
|
+
"response": "Response",
|
|
37
|
+
"header": "Header",
|
|
38
|
+
"body": "Body",
|
|
39
|
+
"payload": "Payload",
|
|
40
|
+
"identifier": "Identifier",
|
|
41
|
+
"empty": {
|
|
42
|
+
"title": "There are no deliveries to show.",
|
|
43
|
+
"description": "No events have been sent to this webhook"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"webhook": {
|
|
47
|
+
"title": "Webhooks",
|
|
48
|
+
"description": "All new action event details will be posted to the configured webhook URLs",
|
|
49
|
+
"empty": "There are no webhooks defined currently",
|
|
50
|
+
"add": "Add new webhook",
|
|
51
|
+
"endpoint": "Endpoint",
|
|
52
|
+
"event_one": "Event",
|
|
53
|
+
"event_other": "Events",
|
|
54
|
+
"endpointPlaceholder": "Enter endpoint URL",
|
|
55
|
+
"eventPlaceholder": "Select webhook events",
|
|
56
|
+
"secret": "Secret key (optional) <helpLink><info></helpLink>",
|
|
57
|
+
"secretPlaceholder": "Enter secret key",
|
|
58
|
+
"edit": "Edit Webhook",
|
|
59
|
+
"active": "Active",
|
|
60
|
+
"activeStatuses": {
|
|
61
|
+
"yes": "Yes",
|
|
62
|
+
"no": "No"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"operation": {
|
|
66
|
+
"edit": "Edit",
|
|
67
|
+
"delete": "Delete"
|
|
68
|
+
},
|
|
69
|
+
"alert": {
|
|
70
|
+
"delete": {
|
|
71
|
+
"title": "Delete {{entity}}?",
|
|
72
|
+
"message": "You are deleting the {{entity}}."
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"tableHeaders": {
|
|
76
|
+
"active": "Active",
|
|
77
|
+
"details": "Details",
|
|
78
|
+
"createdAt": "Created at"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as en } from "./en.json";
|