foreman_webhooks 3.1.0 → 3.2.0
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.
- checksums.yaml +4 -4
- data/app/assets/javascripts/foreman_webhooks/locale/ca/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/cs_CZ/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/de/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/en/foreman_webhooks.js +262 -0
- data/app/assets/javascripts/foreman_webhooks/locale/en_GB/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/es/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/fr/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/it/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/ja/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/ka/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/ko/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/pl/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/pt_BR/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/ru/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/zh_CN/foreman_webhooks.js +238 -0
- data/app/assets/javascripts/foreman_webhooks/locale/zh_TW/foreman_webhooks.js +238 -0
- data/app/controllers/api/v2/webhooks_controller.rb +24 -1
- data/app/graphql/foreman_webhooks/types/webhook.rb +25 -0
- data/app/graphql/foreman_webhooks/types/webhook_template.rb +25 -0
- data/app/models/webhook.rb +18 -0
- data/app/models/webhook_template.rb +2 -0
- data/app/services/foreman_webhooks/webhook_service.rb +1 -1
- data/config/routes.rb +3 -0
- data/lib/foreman_webhooks/engine.rb +9 -2
- data/lib/foreman_webhooks/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/ca/foreman_webhooks.po +237 -0
- data/locale/cs_CZ/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/cs_CZ/foreman_webhooks.po +240 -0
- data/locale/de/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/de/foreman_webhooks.po +244 -0
- data/locale/en/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/en/foreman_webhooks.po +258 -0
- data/locale/en_GB/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/en_GB/foreman_webhooks.po +239 -0
- data/locale/es/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/es/foreman_webhooks.po +241 -0
- data/locale/fr/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/fr/foreman_webhooks.po +241 -0
- data/locale/it/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/it/foreman_webhooks.po +240 -0
- data/locale/ja/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/ja/foreman_webhooks.po +240 -0
- data/locale/ka/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/ka/foreman_webhooks.po +237 -0
- data/locale/ko/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/ko/foreman_webhooks.po +238 -0
- data/locale/pl/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/pl/foreman_webhooks.po +240 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/pt_BR/foreman_webhooks.po +241 -0
- data/locale/ru/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/ru/foreman_webhooks.po +241 -0
- data/locale/zh_CN/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/zh_CN/foreman_webhooks.po +240 -0
- data/locale/zh_TW/LC_MESSAGES/foreman_webhooks.mo +0 -0
- data/locale/zh_TW/foreman_webhooks.po +239 -0
- data/package.json +0 -3
- data/test/factories/webhook_template.rb +10 -0
- data/test/graphql/foreman_webhooks/queries/webhook_query_test.rb +59 -0
- data/test/graphql/foreman_webhooks/queries/webhook_template_query_test.rb +64 -0
- data/test/graphql/foreman_webhooks/queries/webhook_templates_query_test.rb +47 -0
- data/test/graphql/foreman_webhooks/queries/webhooks_query_test.rb +47 -0
- data/webpack/ForemanWebhooks/Routes/Webhooks/Components/WebhookForm/Components/WebhookFormTabs.js +19 -4
- data/webpack/ForemanWebhooks/Routes/Webhooks/Components/WebhookForm/WebhookFormSelectors.js +4 -5
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhookTestModal.js +100 -0
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/Components/ActionButtons/ActionButton.js +40 -0
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/Components/Formatters/actionCellFormatter.js +20 -0
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/Components/Formatters/index.js +1 -0
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/WebhooksTable.js +7 -3
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/WebhooksTableSchema.js +3 -4
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/__tests__/WebhooksTable.test.js +2 -0
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/__tests__/__snapshots__/WebhooksTable.test.js.snap +32 -0
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/index.js +23 -2
- data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/WebhooksIndexPage.js +3 -0
- data/webpack/ForemanWebhooks/Routes/Webhooks/constants.js +1 -0
- data/webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js +3 -0
- metadata +64 -4
- data/test/factories/webhook_target.rb +0 -9
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
locales['foreman_webhooks'] = locales['foreman_webhooks'] || {}; locales['foreman_webhooks']['it'] = {
|
|
2
|
+
"domain": "foreman_webhooks",
|
|
3
|
+
"locale_data": {
|
|
4
|
+
"foreman_webhooks": {
|
|
5
|
+
"": {
|
|
6
|
+
"Project-Id-Version": "foreman_webhooks 3.2.0",
|
|
7
|
+
"Report-Msgid-Bugs-To": "",
|
|
8
|
+
"PO-Revision-Date": "2023-06-05 12:44+0000",
|
|
9
|
+
"Last-Translator": "0868a4d1af5275b3f70b0a6dac4c99a4, 2023",
|
|
10
|
+
"Language-Team": "Italian (https://app.transifex.com/foreman/teams/114/it/)",
|
|
11
|
+
"MIME-Version": "1.0",
|
|
12
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
|
13
|
+
"Content-Transfer-Encoding": "8bit",
|
|
14
|
+
"Language": "it",
|
|
15
|
+
"Plural-Forms": "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;",
|
|
16
|
+
"lang": "it",
|
|
17
|
+
"domain": "foreman_webhooks",
|
|
18
|
+
"plural_forms": "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
|
|
19
|
+
},
|
|
20
|
+
"Actions": [
|
|
21
|
+
"Azioni"
|
|
22
|
+
],
|
|
23
|
+
"Additional": [
|
|
24
|
+
""
|
|
25
|
+
],
|
|
26
|
+
"Authentication credentials": [
|
|
27
|
+
""
|
|
28
|
+
],
|
|
29
|
+
"Authorize with Foreman client certificate and validate smart-proxy CA from Settings": [
|
|
30
|
+
""
|
|
31
|
+
],
|
|
32
|
+
"Change the password": [
|
|
33
|
+
""
|
|
34
|
+
],
|
|
35
|
+
"Clone a template": [
|
|
36
|
+
""
|
|
37
|
+
],
|
|
38
|
+
"Confirm Webhook Deletion": [
|
|
39
|
+
""
|
|
40
|
+
],
|
|
41
|
+
"Create Template": [
|
|
42
|
+
""
|
|
43
|
+
],
|
|
44
|
+
"Create Webhook": [
|
|
45
|
+
""
|
|
46
|
+
],
|
|
47
|
+
"Create a Webhook": [
|
|
48
|
+
""
|
|
49
|
+
],
|
|
50
|
+
"Create a webhook template": [
|
|
51
|
+
""
|
|
52
|
+
],
|
|
53
|
+
"Credentials": [
|
|
54
|
+
""
|
|
55
|
+
],
|
|
56
|
+
"Delete": [
|
|
57
|
+
"Cancella"
|
|
58
|
+
],
|
|
59
|
+
"Delete a Webhook": [
|
|
60
|
+
""
|
|
61
|
+
],
|
|
62
|
+
"Delete a webhook template": [
|
|
63
|
+
""
|
|
64
|
+
],
|
|
65
|
+
"Deliver webhook": [
|
|
66
|
+
""
|
|
67
|
+
],
|
|
68
|
+
"Deliver webhook %s": [
|
|
69
|
+
""
|
|
70
|
+
],
|
|
71
|
+
"Edit": [
|
|
72
|
+
"Modifica"
|
|
73
|
+
],
|
|
74
|
+
"Edit %s": [
|
|
75
|
+
""
|
|
76
|
+
],
|
|
77
|
+
"Enabled": [
|
|
78
|
+
""
|
|
79
|
+
],
|
|
80
|
+
"Error": [
|
|
81
|
+
""
|
|
82
|
+
],
|
|
83
|
+
"Example: %s": [
|
|
84
|
+
""
|
|
85
|
+
],
|
|
86
|
+
"Export a webhook template to ERB": [
|
|
87
|
+
""
|
|
88
|
+
],
|
|
89
|
+
"General": [
|
|
90
|
+
"Generale"
|
|
91
|
+
],
|
|
92
|
+
"HTTP Content Type": [
|
|
93
|
+
""
|
|
94
|
+
],
|
|
95
|
+
"HTTP Headers": [
|
|
96
|
+
""
|
|
97
|
+
],
|
|
98
|
+
"HTTP Method": [
|
|
99
|
+
""
|
|
100
|
+
],
|
|
101
|
+
"If unchecked, the webhook will be inactive": [
|
|
102
|
+
""
|
|
103
|
+
],
|
|
104
|
+
"Import a webhook template": [
|
|
105
|
+
""
|
|
106
|
+
],
|
|
107
|
+
"List Webhooks": [
|
|
108
|
+
""
|
|
109
|
+
],
|
|
110
|
+
"List available events for subscription": [
|
|
111
|
+
""
|
|
112
|
+
],
|
|
113
|
+
"List webhook templates": [
|
|
114
|
+
""
|
|
115
|
+
],
|
|
116
|
+
"Name": [
|
|
117
|
+
"Nome"
|
|
118
|
+
],
|
|
119
|
+
"No Results": [
|
|
120
|
+
""
|
|
121
|
+
],
|
|
122
|
+
"Optional CAs in PEM format concatenated to verify the receiver's SSL certificate": [
|
|
123
|
+
""
|
|
124
|
+
],
|
|
125
|
+
"Optional. Must be a JSON object (ERB allowed)": [
|
|
126
|
+
""
|
|
127
|
+
],
|
|
128
|
+
"Password": [
|
|
129
|
+
""
|
|
130
|
+
],
|
|
131
|
+
"Proxy Authorization": [
|
|
132
|
+
""
|
|
133
|
+
],
|
|
134
|
+
"Show Webhook details": [
|
|
135
|
+
""
|
|
136
|
+
],
|
|
137
|
+
"Show webhook template details": [
|
|
138
|
+
""
|
|
139
|
+
],
|
|
140
|
+
"Snippet": [
|
|
141
|
+
""
|
|
142
|
+
],
|
|
143
|
+
"Start typing to search": [
|
|
144
|
+
""
|
|
145
|
+
],
|
|
146
|
+
"Subscribe to": [
|
|
147
|
+
""
|
|
148
|
+
],
|
|
149
|
+
"Target URL": [
|
|
150
|
+
""
|
|
151
|
+
],
|
|
152
|
+
"Target URL that should be called by Foreman (ERB allowed).": [
|
|
153
|
+
""
|
|
154
|
+
],
|
|
155
|
+
"Template": [
|
|
156
|
+
""
|
|
157
|
+
],
|
|
158
|
+
"Template contents including metadata": [
|
|
159
|
+
""
|
|
160
|
+
],
|
|
161
|
+
"Template name": [
|
|
162
|
+
""
|
|
163
|
+
],
|
|
164
|
+
"This template is locked for editing.": [
|
|
165
|
+
""
|
|
166
|
+
],
|
|
167
|
+
"Try to create a new webhook": [
|
|
168
|
+
""
|
|
169
|
+
],
|
|
170
|
+
"Type": [
|
|
171
|
+
"Tipo"
|
|
172
|
+
],
|
|
173
|
+
"URL must be valid and schema must be one of: %s": [
|
|
174
|
+
""
|
|
175
|
+
],
|
|
176
|
+
"Uncheck this option to disable validation of the receiver's SSL certificate": [
|
|
177
|
+
""
|
|
178
|
+
],
|
|
179
|
+
"Update a Webhook": [
|
|
180
|
+
""
|
|
181
|
+
],
|
|
182
|
+
"Update a webhook template": [
|
|
183
|
+
""
|
|
184
|
+
],
|
|
185
|
+
"User": [
|
|
186
|
+
"Utente"
|
|
187
|
+
],
|
|
188
|
+
"Verify SSL": [
|
|
189
|
+
"Verifica SSL"
|
|
190
|
+
],
|
|
191
|
+
"Webhook": [
|
|
192
|
+
""
|
|
193
|
+
],
|
|
194
|
+
"Webhook %s was successfully deleted": [
|
|
195
|
+
""
|
|
196
|
+
],
|
|
197
|
+
"Webhook Templates": [
|
|
198
|
+
""
|
|
199
|
+
],
|
|
200
|
+
"Webhook was successfully created.": [
|
|
201
|
+
""
|
|
202
|
+
],
|
|
203
|
+
"Webhook was successfully updated.": [
|
|
204
|
+
""
|
|
205
|
+
],
|
|
206
|
+
"WebhookTemplate|Locked": [
|
|
207
|
+
""
|
|
208
|
+
],
|
|
209
|
+
"WebhookTemplate|Name": [
|
|
210
|
+
""
|
|
211
|
+
],
|
|
212
|
+
"WebhookTemplate|Snippet": [
|
|
213
|
+
""
|
|
214
|
+
],
|
|
215
|
+
"Webhooks": [
|
|
216
|
+
""
|
|
217
|
+
],
|
|
218
|
+
"Whether or not the template is added automatically to new organizations and locations": [
|
|
219
|
+
""
|
|
220
|
+
],
|
|
221
|
+
"Whether or not the template is locked for editing": [
|
|
222
|
+
""
|
|
223
|
+
],
|
|
224
|
+
"X509 Certification Authorities": [
|
|
225
|
+
""
|
|
226
|
+
],
|
|
227
|
+
"X509 Certification Authorities concatenated in PEM format": [
|
|
228
|
+
""
|
|
229
|
+
],
|
|
230
|
+
"You are about to delete %s. Are you sure?": [
|
|
231
|
+
""
|
|
232
|
+
],
|
|
233
|
+
"is required": [
|
|
234
|
+
""
|
|
235
|
+
]
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
};
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
locales['foreman_webhooks'] = locales['foreman_webhooks'] || {}; locales['foreman_webhooks']['ja'] = {
|
|
2
|
+
"domain": "foreman_webhooks",
|
|
3
|
+
"locale_data": {
|
|
4
|
+
"foreman_webhooks": {
|
|
5
|
+
"": {
|
|
6
|
+
"Project-Id-Version": "foreman_webhooks 3.2.0",
|
|
7
|
+
"Report-Msgid-Bugs-To": "",
|
|
8
|
+
"PO-Revision-Date": "2023-06-05 12:44+0000",
|
|
9
|
+
"Last-Translator": "Transifex Bot <>, 2023",
|
|
10
|
+
"Language-Team": "Japanese (https://app.transifex.com/foreman/teams/114/ja/)",
|
|
11
|
+
"MIME-Version": "1.0",
|
|
12
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
|
13
|
+
"Content-Transfer-Encoding": "8bit",
|
|
14
|
+
"Language": "ja",
|
|
15
|
+
"Plural-Forms": "nplurals=1; plural=0;",
|
|
16
|
+
"lang": "ja",
|
|
17
|
+
"domain": "foreman_webhooks",
|
|
18
|
+
"plural_forms": "nplurals=1; plural=0;"
|
|
19
|
+
},
|
|
20
|
+
"Actions": [
|
|
21
|
+
"アクション"
|
|
22
|
+
],
|
|
23
|
+
"Additional": [
|
|
24
|
+
"追加"
|
|
25
|
+
],
|
|
26
|
+
"Authentication credentials": [
|
|
27
|
+
""
|
|
28
|
+
],
|
|
29
|
+
"Authorize with Foreman client certificate and validate smart-proxy CA from Settings": [
|
|
30
|
+
""
|
|
31
|
+
],
|
|
32
|
+
"Change the password": [
|
|
33
|
+
""
|
|
34
|
+
],
|
|
35
|
+
"Clone a template": [
|
|
36
|
+
""
|
|
37
|
+
],
|
|
38
|
+
"Confirm Webhook Deletion": [
|
|
39
|
+
""
|
|
40
|
+
],
|
|
41
|
+
"Create Template": [
|
|
42
|
+
""
|
|
43
|
+
],
|
|
44
|
+
"Create Webhook": [
|
|
45
|
+
""
|
|
46
|
+
],
|
|
47
|
+
"Create a Webhook": [
|
|
48
|
+
""
|
|
49
|
+
],
|
|
50
|
+
"Create a webhook template": [
|
|
51
|
+
""
|
|
52
|
+
],
|
|
53
|
+
"Credentials": [
|
|
54
|
+
"認証情報"
|
|
55
|
+
],
|
|
56
|
+
"Delete": [
|
|
57
|
+
"削除"
|
|
58
|
+
],
|
|
59
|
+
"Delete a Webhook": [
|
|
60
|
+
""
|
|
61
|
+
],
|
|
62
|
+
"Delete a webhook template": [
|
|
63
|
+
""
|
|
64
|
+
],
|
|
65
|
+
"Deliver webhook": [
|
|
66
|
+
""
|
|
67
|
+
],
|
|
68
|
+
"Deliver webhook %s": [
|
|
69
|
+
""
|
|
70
|
+
],
|
|
71
|
+
"Edit": [
|
|
72
|
+
"編集"
|
|
73
|
+
],
|
|
74
|
+
"Edit %s": [
|
|
75
|
+
""
|
|
76
|
+
],
|
|
77
|
+
"Enabled": [
|
|
78
|
+
"有効化済み"
|
|
79
|
+
],
|
|
80
|
+
"Error": [
|
|
81
|
+
""
|
|
82
|
+
],
|
|
83
|
+
"Example: %s": [
|
|
84
|
+
""
|
|
85
|
+
],
|
|
86
|
+
"Export a webhook template to ERB": [
|
|
87
|
+
""
|
|
88
|
+
],
|
|
89
|
+
"General": [
|
|
90
|
+
"全般"
|
|
91
|
+
],
|
|
92
|
+
"HTTP Content Type": [
|
|
93
|
+
""
|
|
94
|
+
],
|
|
95
|
+
"HTTP Headers": [
|
|
96
|
+
""
|
|
97
|
+
],
|
|
98
|
+
"HTTP Method": [
|
|
99
|
+
""
|
|
100
|
+
],
|
|
101
|
+
"If unchecked, the webhook will be inactive": [
|
|
102
|
+
""
|
|
103
|
+
],
|
|
104
|
+
"Import a webhook template": [
|
|
105
|
+
""
|
|
106
|
+
],
|
|
107
|
+
"List Webhooks": [
|
|
108
|
+
""
|
|
109
|
+
],
|
|
110
|
+
"List available events for subscription": [
|
|
111
|
+
""
|
|
112
|
+
],
|
|
113
|
+
"List webhook templates": [
|
|
114
|
+
""
|
|
115
|
+
],
|
|
116
|
+
"Name": [
|
|
117
|
+
"名前"
|
|
118
|
+
],
|
|
119
|
+
"No Results": [
|
|
120
|
+
""
|
|
121
|
+
],
|
|
122
|
+
"Optional CAs in PEM format concatenated to verify the receiver's SSL certificate": [
|
|
123
|
+
""
|
|
124
|
+
],
|
|
125
|
+
"Optional. Must be a JSON object (ERB allowed)": [
|
|
126
|
+
""
|
|
127
|
+
],
|
|
128
|
+
"Password": [
|
|
129
|
+
""
|
|
130
|
+
],
|
|
131
|
+
"Proxy Authorization": [
|
|
132
|
+
""
|
|
133
|
+
],
|
|
134
|
+
"Show Webhook details": [
|
|
135
|
+
""
|
|
136
|
+
],
|
|
137
|
+
"Show webhook template details": [
|
|
138
|
+
""
|
|
139
|
+
],
|
|
140
|
+
"Snippet": [
|
|
141
|
+
""
|
|
142
|
+
],
|
|
143
|
+
"Start typing to search": [
|
|
144
|
+
""
|
|
145
|
+
],
|
|
146
|
+
"Subscribe to": [
|
|
147
|
+
""
|
|
148
|
+
],
|
|
149
|
+
"Target URL": [
|
|
150
|
+
""
|
|
151
|
+
],
|
|
152
|
+
"Target URL that should be called by Foreman (ERB allowed).": [
|
|
153
|
+
""
|
|
154
|
+
],
|
|
155
|
+
"Template": [
|
|
156
|
+
""
|
|
157
|
+
],
|
|
158
|
+
"Template contents including metadata": [
|
|
159
|
+
""
|
|
160
|
+
],
|
|
161
|
+
"Template name": [
|
|
162
|
+
""
|
|
163
|
+
],
|
|
164
|
+
"This template is locked for editing.": [
|
|
165
|
+
""
|
|
166
|
+
],
|
|
167
|
+
"Try to create a new webhook": [
|
|
168
|
+
""
|
|
169
|
+
],
|
|
170
|
+
"Type": [
|
|
171
|
+
"タイプ"
|
|
172
|
+
],
|
|
173
|
+
"URL must be valid and schema must be one of: %s": [
|
|
174
|
+
""
|
|
175
|
+
],
|
|
176
|
+
"Uncheck this option to disable validation of the receiver's SSL certificate": [
|
|
177
|
+
""
|
|
178
|
+
],
|
|
179
|
+
"Update a Webhook": [
|
|
180
|
+
""
|
|
181
|
+
],
|
|
182
|
+
"Update a webhook template": [
|
|
183
|
+
""
|
|
184
|
+
],
|
|
185
|
+
"User": [
|
|
186
|
+
"ユーザー"
|
|
187
|
+
],
|
|
188
|
+
"Verify SSL": [
|
|
189
|
+
"SSL の確認"
|
|
190
|
+
],
|
|
191
|
+
"Webhook": [
|
|
192
|
+
""
|
|
193
|
+
],
|
|
194
|
+
"Webhook %s was successfully deleted": [
|
|
195
|
+
""
|
|
196
|
+
],
|
|
197
|
+
"Webhook Templates": [
|
|
198
|
+
""
|
|
199
|
+
],
|
|
200
|
+
"Webhook was successfully created.": [
|
|
201
|
+
""
|
|
202
|
+
],
|
|
203
|
+
"Webhook was successfully updated.": [
|
|
204
|
+
""
|
|
205
|
+
],
|
|
206
|
+
"WebhookTemplate|Locked": [
|
|
207
|
+
""
|
|
208
|
+
],
|
|
209
|
+
"WebhookTemplate|Name": [
|
|
210
|
+
""
|
|
211
|
+
],
|
|
212
|
+
"WebhookTemplate|Snippet": [
|
|
213
|
+
""
|
|
214
|
+
],
|
|
215
|
+
"Webhooks": [
|
|
216
|
+
""
|
|
217
|
+
],
|
|
218
|
+
"Whether or not the template is added automatically to new organizations and locations": [
|
|
219
|
+
""
|
|
220
|
+
],
|
|
221
|
+
"Whether or not the template is locked for editing": [
|
|
222
|
+
""
|
|
223
|
+
],
|
|
224
|
+
"X509 Certification Authorities": [
|
|
225
|
+
""
|
|
226
|
+
],
|
|
227
|
+
"X509 Certification Authorities concatenated in PEM format": [
|
|
228
|
+
""
|
|
229
|
+
],
|
|
230
|
+
"You are about to delete %s. Are you sure?": [
|
|
231
|
+
""
|
|
232
|
+
],
|
|
233
|
+
"is required": [
|
|
234
|
+
"は必須です"
|
|
235
|
+
]
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
};
|
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
locales['foreman_webhooks'] = locales['foreman_webhooks'] || {}; locales['foreman_webhooks']['ka'] = {
|
|
2
|
+
"domain": "foreman_webhooks",
|
|
3
|
+
"locale_data": {
|
|
4
|
+
"foreman_webhooks": {
|
|
5
|
+
"": {
|
|
6
|
+
"Project-Id-Version": "foreman_webhooks 3.2.0",
|
|
7
|
+
"Report-Msgid-Bugs-To": "",
|
|
8
|
+
"PO-Revision-Date": "2023-06-05 12:44+0000",
|
|
9
|
+
"Last-Translator": "Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2023",
|
|
10
|
+
"Language-Team": "Georgian (https://app.transifex.com/foreman/teams/114/ka/)",
|
|
11
|
+
"MIME-Version": "1.0",
|
|
12
|
+
"Content-Type": "text/plain; charset=UTF-8",
|
|
13
|
+
"Content-Transfer-Encoding": "8bit",
|
|
14
|
+
"Language": "ka",
|
|
15
|
+
"Plural-Forms": "nplurals=2; plural=(n!=1);",
|
|
16
|
+
"lang": "ka",
|
|
17
|
+
"domain": "foreman_webhooks",
|
|
18
|
+
"plural_forms": "nplurals=2; plural=(n!=1);"
|
|
19
|
+
},
|
|
20
|
+
"Actions": [
|
|
21
|
+
"ქმედებები"
|
|
22
|
+
],
|
|
23
|
+
"Additional": [
|
|
24
|
+
"დამატებით"
|
|
25
|
+
],
|
|
26
|
+
"Authentication credentials": [
|
|
27
|
+
"ავთენტიკაციის დეტალები"
|
|
28
|
+
],
|
|
29
|
+
"Authorize with Foreman client certificate and validate smart-proxy CA from Settings": [
|
|
30
|
+
"Foreman-ის კლიენტის სერტიფიკატით ავტორიზაცია და ჭკვიანი პროქსის CA-ის გადამოწმება პარამეტრებიდან"
|
|
31
|
+
],
|
|
32
|
+
"Change the password": [
|
|
33
|
+
"პაროლის შეცვლა"
|
|
34
|
+
],
|
|
35
|
+
"Clone a template": [
|
|
36
|
+
"შაბლონის კლონირება"
|
|
37
|
+
],
|
|
38
|
+
"Confirm Webhook Deletion": [
|
|
39
|
+
"დაადასტურეთ ვებჰუკის წაშლა"
|
|
40
|
+
],
|
|
41
|
+
"Create Template": [
|
|
42
|
+
"შაბლონის შექმნა"
|
|
43
|
+
],
|
|
44
|
+
"Create Webhook": [
|
|
45
|
+
"ვებჰუკის შექმნა"
|
|
46
|
+
],
|
|
47
|
+
"Create a Webhook": [
|
|
48
|
+
"ვებჰუკის შექმნა"
|
|
49
|
+
],
|
|
50
|
+
"Create a webhook template": [
|
|
51
|
+
"ვებჰუკის ნიმუშის შექმნა"
|
|
52
|
+
],
|
|
53
|
+
"Credentials": [
|
|
54
|
+
"მომხმ/პაროლი"
|
|
55
|
+
],
|
|
56
|
+
"Delete": [
|
|
57
|
+
"წაშლა"
|
|
58
|
+
],
|
|
59
|
+
"Delete a Webhook": [
|
|
60
|
+
"ვებჰუკის წაშლა"
|
|
61
|
+
],
|
|
62
|
+
"Delete a webhook template": [
|
|
63
|
+
"Delete a webhook წაშლა"
|
|
64
|
+
],
|
|
65
|
+
"Deliver webhook": [
|
|
66
|
+
"ვებჰუკის მიწოდება"
|
|
67
|
+
],
|
|
68
|
+
"Deliver webhook %s": [
|
|
69
|
+
"ვებჰუკის %s მიწოდება"
|
|
70
|
+
],
|
|
71
|
+
"Edit": [
|
|
72
|
+
"ჩასწორება"
|
|
73
|
+
],
|
|
74
|
+
"Edit %s": [
|
|
75
|
+
"%s-ის ჩასწორება"
|
|
76
|
+
],
|
|
77
|
+
"Enabled": [
|
|
78
|
+
"ჩაირთო"
|
|
79
|
+
],
|
|
80
|
+
"Error": [
|
|
81
|
+
"შეცდომა"
|
|
82
|
+
],
|
|
83
|
+
"Example: %s": [
|
|
84
|
+
"მაგალითი: %s"
|
|
85
|
+
],
|
|
86
|
+
"Export a webhook template to ERB": [
|
|
87
|
+
"ვებჰუკის ნიმუშის ERB_ზე გატანა"
|
|
88
|
+
],
|
|
89
|
+
"General": [
|
|
90
|
+
"მთავარი"
|
|
91
|
+
],
|
|
92
|
+
"HTTP Content Type": [
|
|
93
|
+
"HTTP შემცველობის ტიპი"
|
|
94
|
+
],
|
|
95
|
+
"HTTP Headers": [
|
|
96
|
+
"HTTP თავსართები"
|
|
97
|
+
],
|
|
98
|
+
"HTTP Method": [
|
|
99
|
+
"HTTP მეთოდი"
|
|
100
|
+
],
|
|
101
|
+
"If unchecked, the webhook will be inactive": [
|
|
102
|
+
"თუ გამორთულია, ვებჰუკი აქტიური არ იქნება"
|
|
103
|
+
],
|
|
104
|
+
"Import a webhook template": [
|
|
105
|
+
"ვებჰუკის ნიმუშის შემოტანა"
|
|
106
|
+
],
|
|
107
|
+
"List Webhooks": [
|
|
108
|
+
"ვებჰუკები სია"
|
|
109
|
+
],
|
|
110
|
+
"List available events for subscription": [
|
|
111
|
+
"გამოწერადი ხელმისაწვდომი მოვლენების სია"
|
|
112
|
+
],
|
|
113
|
+
"List webhook templates": [
|
|
114
|
+
"ვებჰუკის ნიმუშების სია"
|
|
115
|
+
],
|
|
116
|
+
"Name": [
|
|
117
|
+
"სახელი"
|
|
118
|
+
],
|
|
119
|
+
"No Results": [
|
|
120
|
+
"შედეგების გარეშე"
|
|
121
|
+
],
|
|
122
|
+
"Optional CAs in PEM format concatenated to verify the receiver's SSL certificate": [
|
|
123
|
+
"არასავალდებული CA-ები PEM ფორმატში, ერთ ფალში, მიმღების SSL სერტიფიკატის შესამოწმებლად"
|
|
124
|
+
],
|
|
125
|
+
"Optional. Must be a JSON object (ERB allowed)": [
|
|
126
|
+
"არასავალდებულოა. უნდა წარმოადგენდეს JSON ობიექტს (ERB დაშვებულია)"
|
|
127
|
+
],
|
|
128
|
+
"Password": [
|
|
129
|
+
"პაროლი"
|
|
130
|
+
],
|
|
131
|
+
"Proxy Authorization": [
|
|
132
|
+
"პროქსის ავტორიზაცია"
|
|
133
|
+
],
|
|
134
|
+
"Show Webhook details": [
|
|
135
|
+
"ვებჰუკის დეტალების ჩვენება"
|
|
136
|
+
],
|
|
137
|
+
"Show webhook template details": [
|
|
138
|
+
"ვებჰუკის ნიმუშის დეტალების ჩვენება"
|
|
139
|
+
],
|
|
140
|
+
"Snippet": [
|
|
141
|
+
"ნაწყვეტი"
|
|
142
|
+
],
|
|
143
|
+
"Start typing to search": [
|
|
144
|
+
"მოსაძებნად კრეფა დაიწყეთ"
|
|
145
|
+
],
|
|
146
|
+
"Subscribe to": [
|
|
147
|
+
"გამოწერა"
|
|
148
|
+
],
|
|
149
|
+
"Target URL": [
|
|
150
|
+
"სამიზნე URL"
|
|
151
|
+
],
|
|
152
|
+
"Target URL that should be called by Foreman (ERB allowed).": [
|
|
153
|
+
"სამიზნე URL, რომელიც Foreman-მა უნდა გამოიძახოს (ERB დაშვებულია)."
|
|
154
|
+
],
|
|
155
|
+
"Template": [
|
|
156
|
+
"ნიმუში"
|
|
157
|
+
],
|
|
158
|
+
"Template contents including metadata": [
|
|
159
|
+
"შაბლოკის შემცველობა, მეტამონაცემების ჩათვლით"
|
|
160
|
+
],
|
|
161
|
+
"Template name": [
|
|
162
|
+
"შაბლონის სახელი"
|
|
163
|
+
],
|
|
164
|
+
"This template is locked for editing.": [
|
|
165
|
+
"შაბლონი დაბლოკილია."
|
|
166
|
+
],
|
|
167
|
+
"Try to create a new webhook": [
|
|
168
|
+
"ახალი ვებჰუკის შექმნის მცდელობა"
|
|
169
|
+
],
|
|
170
|
+
"Type": [
|
|
171
|
+
"ტიპი"
|
|
172
|
+
],
|
|
173
|
+
"URL must be valid and schema must be one of: %s": [
|
|
174
|
+
"URL სწორი უნდა იყოს და სქემა უნდა იყოს ერთერთი სიიდან: %s"
|
|
175
|
+
],
|
|
176
|
+
"Uncheck this option to disable validation of the receiver's SSL certificate": [
|
|
177
|
+
"გამორთეთ ეს პარამეტრი მიმღების SSL სერტიფიკატის გადამოწმების გამოსართავად"
|
|
178
|
+
],
|
|
179
|
+
"Update a Webhook": [
|
|
180
|
+
"ვებჰუკის განახლება"
|
|
181
|
+
],
|
|
182
|
+
"Update a webhook template": [
|
|
183
|
+
"ვებჰუკის ნიმუშის განახლება"
|
|
184
|
+
],
|
|
185
|
+
"User": [
|
|
186
|
+
"მომხმარებელი"
|
|
187
|
+
],
|
|
188
|
+
"Verify SSL": [
|
|
189
|
+
"SSL-ის შემოწმება"
|
|
190
|
+
],
|
|
191
|
+
"Webhook": [
|
|
192
|
+
"ვებჰუკი"
|
|
193
|
+
],
|
|
194
|
+
"Webhook %s was successfully deleted": [
|
|
195
|
+
"ვებჰუკი %s წარმატებით წაიშალა"
|
|
196
|
+
],
|
|
197
|
+
"Webhook Templates": [
|
|
198
|
+
"ვებჰუკის ნიმუშები"
|
|
199
|
+
],
|
|
200
|
+
"Webhook was successfully created.": [
|
|
201
|
+
"ვებჰუკი წარმატებით შეიქმნა."
|
|
202
|
+
],
|
|
203
|
+
"Webhook was successfully updated.": [
|
|
204
|
+
"ვებჰუკი წარმატებით განახლდა."
|
|
205
|
+
],
|
|
206
|
+
"WebhookTemplate|Locked": [
|
|
207
|
+
"დაბლოკილია"
|
|
208
|
+
],
|
|
209
|
+
"WebhookTemplate|Name": [
|
|
210
|
+
"სახელი"
|
|
211
|
+
],
|
|
212
|
+
"WebhookTemplate|Snippet": [
|
|
213
|
+
"ნაწყვეტი"
|
|
214
|
+
],
|
|
215
|
+
"Webhooks": [
|
|
216
|
+
"ვებჰუკები"
|
|
217
|
+
],
|
|
218
|
+
"Whether or not the template is added automatically to new organizations and locations": [
|
|
219
|
+
"ნაგულისხმები შაბლონები ახალ ორგანიზაციებსა და მდებარეობებს ავტომატურად ემატება, თუ არა"
|
|
220
|
+
],
|
|
221
|
+
"Whether or not the template is locked for editing": [
|
|
222
|
+
"დაიბლოკება თუ არა შაბლონი მისი ჩასწორებისას"
|
|
223
|
+
],
|
|
224
|
+
"X509 Certification Authorities": [
|
|
225
|
+
"X509 CA"
|
|
226
|
+
],
|
|
227
|
+
"X509 Certification Authorities concatenated in PEM format": [
|
|
228
|
+
"X509 სერტიფიკაციის ორგანოები, PEM ფორმატში გაერთიანებული"
|
|
229
|
+
],
|
|
230
|
+
"You are about to delete %s. Are you sure?": [
|
|
231
|
+
"აპირებთ წაშალოთ %s. დარწმუნებული ბრძანდებით?"
|
|
232
|
+
],
|
|
233
|
+
"is required": [
|
|
234
|
+
"აუცილებელია"
|
|
235
|
+
]
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
};
|