foreman_webhooks 3.1.1 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/foreman_webhooks/locale/ca/foreman_webhooks.js +238 -0
  3. data/app/assets/javascripts/foreman_webhooks/locale/cs_CZ/foreman_webhooks.js +238 -0
  4. data/app/assets/javascripts/foreman_webhooks/locale/de/foreman_webhooks.js +238 -0
  5. data/app/assets/javascripts/foreman_webhooks/locale/en/foreman_webhooks.js +262 -0
  6. data/app/assets/javascripts/foreman_webhooks/locale/en_GB/foreman_webhooks.js +238 -0
  7. data/app/assets/javascripts/foreman_webhooks/locale/es/foreman_webhooks.js +238 -0
  8. data/app/assets/javascripts/foreman_webhooks/locale/fr/foreman_webhooks.js +238 -0
  9. data/app/assets/javascripts/foreman_webhooks/locale/it/foreman_webhooks.js +238 -0
  10. data/app/assets/javascripts/foreman_webhooks/locale/ja/foreman_webhooks.js +238 -0
  11. data/app/assets/javascripts/foreman_webhooks/locale/ka/foreman_webhooks.js +238 -0
  12. data/app/assets/javascripts/foreman_webhooks/locale/ko/foreman_webhooks.js +238 -0
  13. data/app/assets/javascripts/foreman_webhooks/locale/pl/foreman_webhooks.js +238 -0
  14. data/app/assets/javascripts/foreman_webhooks/locale/pt_BR/foreman_webhooks.js +238 -0
  15. data/app/assets/javascripts/foreman_webhooks/locale/ru/foreman_webhooks.js +238 -0
  16. data/app/assets/javascripts/foreman_webhooks/locale/zh_CN/foreman_webhooks.js +238 -0
  17. data/app/assets/javascripts/foreman_webhooks/locale/zh_TW/foreman_webhooks.js +238 -0
  18. data/app/controllers/api/v2/webhooks_controller.rb +24 -1
  19. data/app/graphql/foreman_webhooks/types/webhook.rb +25 -0
  20. data/app/graphql/foreman_webhooks/types/webhook_template.rb +25 -0
  21. data/app/models/webhook.rb +18 -0
  22. data/app/models/webhook_template.rb +2 -0
  23. data/app/services/foreman_webhooks/webhook_service.rb +1 -1
  24. data/app/views/foreman_webhooks/webhook_templates/katello_-_promote.erb +1 -0
  25. data/app/views/foreman_webhooks/webhook_templates/katello_-_publish.erb +1 -0
  26. data/app/views/foreman_webhooks/webhook_templates/katello_-_repo_sync.erb +1 -0
  27. data/app/views/foreman_webhooks/webhook_templates/remote_execution_-_host_job.erb +0 -1
  28. data/config/routes.rb +3 -0
  29. data/lib/foreman_webhooks/engine.rb +9 -2
  30. data/lib/foreman_webhooks/version.rb +1 -1
  31. data/locale/ca/LC_MESSAGES/foreman_webhooks.mo +0 -0
  32. data/locale/ca/foreman_webhooks.po +237 -0
  33. data/locale/cs_CZ/LC_MESSAGES/foreman_webhooks.mo +0 -0
  34. data/locale/cs_CZ/foreman_webhooks.po +240 -0
  35. data/locale/de/LC_MESSAGES/foreman_webhooks.mo +0 -0
  36. data/locale/de/foreman_webhooks.po +244 -0
  37. data/locale/en/LC_MESSAGES/foreman_webhooks.mo +0 -0
  38. data/locale/en/foreman_webhooks.po +258 -0
  39. data/locale/en_GB/LC_MESSAGES/foreman_webhooks.mo +0 -0
  40. data/locale/en_GB/foreman_webhooks.po +239 -0
  41. data/locale/es/LC_MESSAGES/foreman_webhooks.mo +0 -0
  42. data/locale/es/foreman_webhooks.po +241 -0
  43. data/locale/fr/LC_MESSAGES/foreman_webhooks.mo +0 -0
  44. data/locale/fr/foreman_webhooks.po +241 -0
  45. data/locale/it/LC_MESSAGES/foreman_webhooks.mo +0 -0
  46. data/locale/it/foreman_webhooks.po +240 -0
  47. data/locale/ja/LC_MESSAGES/foreman_webhooks.mo +0 -0
  48. data/locale/ja/foreman_webhooks.po +240 -0
  49. data/locale/ka/LC_MESSAGES/foreman_webhooks.mo +0 -0
  50. data/locale/ka/foreman_webhooks.po +237 -0
  51. data/locale/ko/LC_MESSAGES/foreman_webhooks.mo +0 -0
  52. data/locale/ko/foreman_webhooks.po +238 -0
  53. data/locale/pl/LC_MESSAGES/foreman_webhooks.mo +0 -0
  54. data/locale/pl/foreman_webhooks.po +240 -0
  55. data/locale/pt_BR/LC_MESSAGES/foreman_webhooks.mo +0 -0
  56. data/locale/pt_BR/foreman_webhooks.po +241 -0
  57. data/locale/ru/LC_MESSAGES/foreman_webhooks.mo +0 -0
  58. data/locale/ru/foreman_webhooks.po +241 -0
  59. data/locale/zh_CN/LC_MESSAGES/foreman_webhooks.mo +0 -0
  60. data/locale/zh_CN/foreman_webhooks.po +240 -0
  61. data/locale/zh_TW/LC_MESSAGES/foreman_webhooks.mo +0 -0
  62. data/locale/zh_TW/foreman_webhooks.po +239 -0
  63. data/package.json +0 -3
  64. data/test/factories/webhook_template.rb +10 -0
  65. data/test/graphql/foreman_webhooks/queries/webhook_query_test.rb +59 -0
  66. data/test/graphql/foreman_webhooks/queries/webhook_template_query_test.rb +64 -0
  67. data/test/graphql/foreman_webhooks/queries/webhook_templates_query_test.rb +47 -0
  68. data/test/graphql/foreman_webhooks/queries/webhooks_query_test.rb +47 -0
  69. data/webpack/ForemanWebhooks/Routes/Webhooks/Components/WebhookForm/Components/WebhookFormTabs.js +19 -4
  70. data/webpack/ForemanWebhooks/Routes/Webhooks/Components/WebhookForm/WebhookFormSelectors.js +4 -5
  71. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhookTestModal.js +100 -0
  72. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/Components/ActionButtons/ActionButton.js +40 -0
  73. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/Components/Formatters/actionCellFormatter.js +20 -0
  74. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/Components/Formatters/index.js +1 -0
  75. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/WebhooksTable.js +7 -3
  76. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/WebhooksTableSchema.js +3 -4
  77. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/__tests__/WebhooksTable.test.js +2 -0
  78. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/__tests__/__snapshots__/WebhooksTable.test.js.snap +32 -0
  79. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/Components/WebhooksTable/index.js +23 -2
  80. data/webpack/ForemanWebhooks/Routes/Webhooks/WebhooksIndexPage/WebhooksIndexPage.js +3 -0
  81. data/webpack/ForemanWebhooks/Routes/Webhooks/constants.js +1 -0
  82. data/webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js +3 -0
  83. metadata +64 -4
  84. data/test/factories/webhook_target.rb +0 -9
@@ -0,0 +1,241 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2023
8
+ # Amit Upadhye <aupadhye@redhat.com>, 2023
9
+ # Flamarion Jorge <jorge.flamarion@gmail.com>, 2023
10
+ #
11
+ #, fuzzy
12
+ msgid ""
13
+ msgstr ""
14
+ "Project-Id-Version: foreman_webhooks 3.2.0\n"
15
+ "Report-Msgid-Bugs-To: \n"
16
+ "PO-Revision-Date: 2023-06-05 12:44+0000\n"
17
+ "Last-Translator: Flamarion Jorge <jorge.flamarion@gmail.com>, 2023\n"
18
+ "Language-Team: Portuguese (Brazil) (https://app.transifex.com/foreman/teams/11"
19
+ "4/pt_BR/)\n"
20
+ "MIME-Version: 1.0\n"
21
+ "Content-Type: text/plain; charset=UTF-8\n"
22
+ "Content-Transfer-Encoding: 8bit\n"
23
+ "Language: pt_BR\n"
24
+ "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 100000"
25
+ "0 == 0 ? 1 : 2;\n"
26
+
27
+ msgid "Actions"
28
+ msgstr "Ações"
29
+
30
+ msgid "Additional"
31
+ msgstr "Adicional"
32
+
33
+ msgid "Authentication credentials"
34
+ msgstr ""
35
+
36
+ msgid "Authorize with Foreman client certificate and validate smart-proxy CA from Settings"
37
+ msgstr ""
38
+
39
+ msgid "Change the password"
40
+ msgstr ""
41
+
42
+ msgid "Clone a template"
43
+ msgstr ""
44
+
45
+ msgid "Confirm Webhook Deletion"
46
+ msgstr ""
47
+
48
+ msgid "Create Template"
49
+ msgstr ""
50
+
51
+ msgid "Create Webhook"
52
+ msgstr ""
53
+
54
+ msgid "Create a Webhook"
55
+ msgstr ""
56
+
57
+ msgid "Create a webhook template"
58
+ msgstr ""
59
+
60
+ msgid "Credentials"
61
+ msgstr ""
62
+
63
+ msgid "Delete"
64
+ msgstr "Excluir"
65
+
66
+ msgid "Delete a Webhook"
67
+ msgstr ""
68
+
69
+ msgid "Delete a webhook template"
70
+ msgstr ""
71
+
72
+ msgid "Deliver webhook"
73
+ msgstr ""
74
+
75
+ msgid "Deliver webhook %s"
76
+ msgstr ""
77
+
78
+ msgid "Edit"
79
+ msgstr "Editar"
80
+
81
+ msgid "Edit %s"
82
+ msgstr "Editar %s"
83
+
84
+ msgid "Enabled"
85
+ msgstr ""
86
+
87
+ msgid "Error"
88
+ msgstr ""
89
+
90
+ msgid "Example: %s"
91
+ msgstr ""
92
+
93
+ msgid "Export a webhook template to ERB"
94
+ msgstr ""
95
+
96
+ msgid "General"
97
+ msgstr "Geral"
98
+
99
+ msgid "HTTP Content Type"
100
+ msgstr ""
101
+
102
+ msgid "HTTP Headers"
103
+ msgstr ""
104
+
105
+ msgid "HTTP Method"
106
+ msgstr ""
107
+
108
+ msgid "If unchecked, the webhook will be inactive"
109
+ msgstr ""
110
+
111
+ msgid "Import a webhook template"
112
+ msgstr ""
113
+
114
+ msgid "List Webhooks"
115
+ msgstr ""
116
+
117
+ msgid "List available events for subscription"
118
+ msgstr ""
119
+
120
+ msgid "List webhook templates"
121
+ msgstr ""
122
+
123
+ msgid "Name"
124
+ msgstr "Nome"
125
+
126
+ msgid "No Results"
127
+ msgstr ""
128
+
129
+ msgid "Optional CAs in PEM format concatenated to verify the receiver's SSL certificate"
130
+ msgstr ""
131
+
132
+ msgid "Optional. Must be a JSON object (ERB allowed)"
133
+ msgstr ""
134
+
135
+ msgid "Password"
136
+ msgstr ""
137
+
138
+ msgid "Proxy Authorization"
139
+ msgstr ""
140
+
141
+ msgid "Show Webhook details"
142
+ msgstr ""
143
+
144
+ msgid "Show webhook template details"
145
+ msgstr ""
146
+
147
+ msgid "Snippet"
148
+ msgstr ""
149
+
150
+ msgid "Start typing to search"
151
+ msgstr ""
152
+
153
+ msgid "Subscribe to"
154
+ msgstr ""
155
+
156
+ msgid "Target URL"
157
+ msgstr ""
158
+
159
+ msgid "Target URL that should be called by Foreman (ERB allowed)."
160
+ msgstr ""
161
+
162
+ msgid "Template"
163
+ msgstr ""
164
+
165
+ msgid "Template contents including metadata"
166
+ msgstr ""
167
+
168
+ msgid "Template name"
169
+ msgstr ""
170
+
171
+ msgid "This template is locked for editing."
172
+ msgstr ""
173
+
174
+ msgid "Try to create a new webhook"
175
+ msgstr ""
176
+
177
+ msgid "Type"
178
+ msgstr "Tipo"
179
+
180
+ msgid "URL must be valid and schema must be one of: %s"
181
+ msgstr ""
182
+
183
+ msgid "Uncheck this option to disable validation of the receiver's SSL certificate"
184
+ msgstr ""
185
+
186
+ msgid "Update a Webhook"
187
+ msgstr ""
188
+
189
+ msgid "Update a webhook template"
190
+ msgstr ""
191
+
192
+ msgid "User"
193
+ msgstr "Usuário"
194
+
195
+ msgid "Verify SSL"
196
+ msgstr "Verifique o SSL"
197
+
198
+ msgid "Webhook"
199
+ msgstr ""
200
+
201
+ msgid "Webhook %s was successfully deleted"
202
+ msgstr ""
203
+
204
+ msgid "Webhook Templates"
205
+ msgstr ""
206
+
207
+ msgid "Webhook was successfully created."
208
+ msgstr ""
209
+
210
+ msgid "Webhook was successfully updated."
211
+ msgstr ""
212
+
213
+ msgid "WebhookTemplate|Locked"
214
+ msgstr ""
215
+
216
+ msgid "WebhookTemplate|Name"
217
+ msgstr ""
218
+
219
+ msgid "WebhookTemplate|Snippet"
220
+ msgstr ""
221
+
222
+ msgid "Webhooks"
223
+ msgstr ""
224
+
225
+ msgid "Whether or not the template is added automatically to new organizations and locations"
226
+ msgstr ""
227
+
228
+ msgid "Whether or not the template is locked for editing"
229
+ msgstr ""
230
+
231
+ msgid "X509 Certification Authorities"
232
+ msgstr ""
233
+
234
+ msgid "X509 Certification Authorities concatenated in PEM format"
235
+ msgstr ""
236
+
237
+ msgid "You are about to delete %s. Are you sure?"
238
+ msgstr ""
239
+
240
+ msgid "is required"
241
+ msgstr "é necessário"
@@ -0,0 +1,241 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2023
8
+ # Andrei Burd <burdandrei@gmail.com>, 2023
9
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2023
10
+ #
11
+ #, fuzzy
12
+ msgid ""
13
+ msgstr ""
14
+ "Project-Id-Version: foreman_webhooks 3.2.0\n"
15
+ "Report-Msgid-Bugs-To: \n"
16
+ "PO-Revision-Date: 2023-06-05 12:44+0000\n"
17
+ "Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2023\n"
18
+ "Language-Team: Russian (https://app.transifex.com/foreman/teams/114/ru/)\n"
19
+ "MIME-Version: 1.0\n"
20
+ "Content-Type: text/plain; charset=UTF-8\n"
21
+ "Content-Transfer-Encoding: 8bit\n"
22
+ "Language: ru\n"
23
+ "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
24
+ "4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=1"
25
+ "1 && n%100<=14)? 2 : 3);\n"
26
+
27
+ msgid "Actions"
28
+ msgstr "Действия"
29
+
30
+ msgid "Additional"
31
+ msgstr ""
32
+
33
+ msgid "Authentication credentials"
34
+ msgstr ""
35
+
36
+ msgid "Authorize with Foreman client certificate and validate smart-proxy CA from Settings"
37
+ msgstr ""
38
+
39
+ msgid "Change the password"
40
+ msgstr ""
41
+
42
+ msgid "Clone a template"
43
+ msgstr ""
44
+
45
+ msgid "Confirm Webhook Deletion"
46
+ msgstr ""
47
+
48
+ msgid "Create Template"
49
+ msgstr ""
50
+
51
+ msgid "Create Webhook"
52
+ msgstr ""
53
+
54
+ msgid "Create a Webhook"
55
+ msgstr ""
56
+
57
+ msgid "Create a webhook template"
58
+ msgstr ""
59
+
60
+ msgid "Credentials"
61
+ msgstr ""
62
+
63
+ msgid "Delete"
64
+ msgstr "Удалить"
65
+
66
+ msgid "Delete a Webhook"
67
+ msgstr ""
68
+
69
+ msgid "Delete a webhook template"
70
+ msgstr ""
71
+
72
+ msgid "Deliver webhook"
73
+ msgstr ""
74
+
75
+ msgid "Deliver webhook %s"
76
+ msgstr ""
77
+
78
+ msgid "Edit"
79
+ msgstr "Изменить"
80
+
81
+ msgid "Edit %s"
82
+ msgstr ""
83
+
84
+ msgid "Enabled"
85
+ msgstr ""
86
+
87
+ msgid "Error"
88
+ msgstr ""
89
+
90
+ msgid "Example: %s"
91
+ msgstr ""
92
+
93
+ msgid "Export a webhook template to ERB"
94
+ msgstr ""
95
+
96
+ msgid "General"
97
+ msgstr "Общие"
98
+
99
+ msgid "HTTP Content Type"
100
+ msgstr ""
101
+
102
+ msgid "HTTP Headers"
103
+ msgstr ""
104
+
105
+ msgid "HTTP Method"
106
+ msgstr ""
107
+
108
+ msgid "If unchecked, the webhook will be inactive"
109
+ msgstr ""
110
+
111
+ msgid "Import a webhook template"
112
+ msgstr ""
113
+
114
+ msgid "List Webhooks"
115
+ msgstr ""
116
+
117
+ msgid "List available events for subscription"
118
+ msgstr ""
119
+
120
+ msgid "List webhook templates"
121
+ msgstr ""
122
+
123
+ msgid "Name"
124
+ msgstr "Имя"
125
+
126
+ msgid "No Results"
127
+ msgstr ""
128
+
129
+ msgid "Optional CAs in PEM format concatenated to verify the receiver's SSL certificate"
130
+ msgstr ""
131
+
132
+ msgid "Optional. Must be a JSON object (ERB allowed)"
133
+ msgstr ""
134
+
135
+ msgid "Password"
136
+ msgstr ""
137
+
138
+ msgid "Proxy Authorization"
139
+ msgstr ""
140
+
141
+ msgid "Show Webhook details"
142
+ msgstr ""
143
+
144
+ msgid "Show webhook template details"
145
+ msgstr ""
146
+
147
+ msgid "Snippet"
148
+ msgstr ""
149
+
150
+ msgid "Start typing to search"
151
+ msgstr ""
152
+
153
+ msgid "Subscribe to"
154
+ msgstr ""
155
+
156
+ msgid "Target URL"
157
+ msgstr ""
158
+
159
+ msgid "Target URL that should be called by Foreman (ERB allowed)."
160
+ msgstr ""
161
+
162
+ msgid "Template"
163
+ msgstr ""
164
+
165
+ msgid "Template contents including metadata"
166
+ msgstr ""
167
+
168
+ msgid "Template name"
169
+ msgstr ""
170
+
171
+ msgid "This template is locked for editing."
172
+ msgstr ""
173
+
174
+ msgid "Try to create a new webhook"
175
+ msgstr ""
176
+
177
+ msgid "Type"
178
+ msgstr "Тип"
179
+
180
+ msgid "URL must be valid and schema must be one of: %s"
181
+ msgstr ""
182
+
183
+ msgid "Uncheck this option to disable validation of the receiver's SSL certificate"
184
+ msgstr ""
185
+
186
+ msgid "Update a Webhook"
187
+ msgstr ""
188
+
189
+ msgid "Update a webhook template"
190
+ msgstr ""
191
+
192
+ msgid "User"
193
+ msgstr "Пользователь"
194
+
195
+ msgid "Verify SSL"
196
+ msgstr "Проверить SSL"
197
+
198
+ msgid "Webhook"
199
+ msgstr ""
200
+
201
+ msgid "Webhook %s was successfully deleted"
202
+ msgstr ""
203
+
204
+ msgid "Webhook Templates"
205
+ msgstr ""
206
+
207
+ msgid "Webhook was successfully created."
208
+ msgstr ""
209
+
210
+ msgid "Webhook was successfully updated."
211
+ msgstr ""
212
+
213
+ msgid "WebhookTemplate|Locked"
214
+ msgstr ""
215
+
216
+ msgid "WebhookTemplate|Name"
217
+ msgstr ""
218
+
219
+ msgid "WebhookTemplate|Snippet"
220
+ msgstr ""
221
+
222
+ msgid "Webhooks"
223
+ msgstr ""
224
+
225
+ msgid "Whether or not the template is added automatically to new organizations and locations"
226
+ msgstr ""
227
+
228
+ msgid "Whether or not the template is locked for editing"
229
+ msgstr ""
230
+
231
+ msgid "X509 Certification Authorities"
232
+ msgstr ""
233
+
234
+ msgid "X509 Certification Authorities concatenated in PEM format"
235
+ msgstr ""
236
+
237
+ msgid "You are about to delete %s. Are you sure?"
238
+ msgstr ""
239
+
240
+ msgid "is required"
241
+ msgstr ""
@@ -0,0 +1,240 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_webhooks package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ # Translators:
7
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2023
8
+ # Amit Upadhye <aupadhye@redhat.com>, 2023
9
+ # tim123, 2023
10
+ #
11
+ #, fuzzy
12
+ msgid ""
13
+ msgstr ""
14
+ "Project-Id-Version: foreman_webhooks 3.2.0\n"
15
+ "Report-Msgid-Bugs-To: \n"
16
+ "PO-Revision-Date: 2023-06-05 12:44+0000\n"
17
+ "Last-Translator: tim123, 2023\n"
18
+ "Language-Team: Chinese (China) (https://app.transifex.com/foreman/teams/114/zh"
19
+ "_CN/)\n"
20
+ "MIME-Version: 1.0\n"
21
+ "Content-Type: text/plain; charset=UTF-8\n"
22
+ "Content-Transfer-Encoding: 8bit\n"
23
+ "Language: zh_CN\n"
24
+ "Plural-Forms: nplurals=1; plural=0;\n"
25
+
26
+ msgid "Actions"
27
+ msgstr "操作"
28
+
29
+ msgid "Additional"
30
+ msgstr "额外"
31
+
32
+ msgid "Authentication credentials"
33
+ msgstr ""
34
+
35
+ msgid "Authorize with Foreman client certificate and validate smart-proxy CA from Settings"
36
+ msgstr ""
37
+
38
+ msgid "Change the password"
39
+ msgstr ""
40
+
41
+ msgid "Clone a template"
42
+ msgstr ""
43
+
44
+ msgid "Confirm Webhook Deletion"
45
+ msgstr ""
46
+
47
+ msgid "Create Template"
48
+ msgstr ""
49
+
50
+ msgid "Create Webhook"
51
+ msgstr ""
52
+
53
+ msgid "Create a Webhook"
54
+ msgstr ""
55
+
56
+ msgid "Create a webhook template"
57
+ msgstr ""
58
+
59
+ msgid "Credentials"
60
+ msgstr "凭证"
61
+
62
+ msgid "Delete"
63
+ msgstr "刪除"
64
+
65
+ msgid "Delete a Webhook"
66
+ msgstr ""
67
+
68
+ msgid "Delete a webhook template"
69
+ msgstr ""
70
+
71
+ msgid "Deliver webhook"
72
+ msgstr ""
73
+
74
+ msgid "Deliver webhook %s"
75
+ msgstr ""
76
+
77
+ msgid "Edit"
78
+ msgstr "编辑"
79
+
80
+ msgid "Edit %s"
81
+ msgstr ""
82
+
83
+ msgid "Enabled"
84
+ msgstr "启用"
85
+
86
+ msgid "Error"
87
+ msgstr ""
88
+
89
+ msgid "Example: %s"
90
+ msgstr ""
91
+
92
+ msgid "Export a webhook template to ERB"
93
+ msgstr ""
94
+
95
+ msgid "General"
96
+ msgstr ""
97
+
98
+ msgid "HTTP Content Type"
99
+ msgstr ""
100
+
101
+ msgid "HTTP Headers"
102
+ msgstr ""
103
+
104
+ msgid "HTTP Method"
105
+ msgstr ""
106
+
107
+ msgid "If unchecked, the webhook will be inactive"
108
+ msgstr ""
109
+
110
+ msgid "Import a webhook template"
111
+ msgstr ""
112
+
113
+ msgid "List Webhooks"
114
+ msgstr ""
115
+
116
+ msgid "List available events for subscription"
117
+ msgstr ""
118
+
119
+ msgid "List webhook templates"
120
+ msgstr ""
121
+
122
+ msgid "Name"
123
+ msgstr ""
124
+
125
+ msgid "No Results"
126
+ msgstr ""
127
+
128
+ msgid "Optional CAs in PEM format concatenated to verify the receiver's SSL certificate"
129
+ msgstr ""
130
+
131
+ msgid "Optional. Must be a JSON object (ERB allowed)"
132
+ msgstr ""
133
+
134
+ msgid "Password"
135
+ msgstr ""
136
+
137
+ msgid "Proxy Authorization"
138
+ msgstr ""
139
+
140
+ msgid "Show Webhook details"
141
+ msgstr ""
142
+
143
+ msgid "Show webhook template details"
144
+ msgstr ""
145
+
146
+ msgid "Snippet"
147
+ msgstr ""
148
+
149
+ msgid "Start typing to search"
150
+ msgstr ""
151
+
152
+ msgid "Subscribe to"
153
+ msgstr ""
154
+
155
+ msgid "Target URL"
156
+ msgstr ""
157
+
158
+ msgid "Target URL that should be called by Foreman (ERB allowed)."
159
+ msgstr ""
160
+
161
+ msgid "Template"
162
+ msgstr ""
163
+
164
+ msgid "Template contents including metadata"
165
+ msgstr ""
166
+
167
+ msgid "Template name"
168
+ msgstr ""
169
+
170
+ msgid "This template is locked for editing."
171
+ msgstr ""
172
+
173
+ msgid "Try to create a new webhook"
174
+ msgstr ""
175
+
176
+ msgid "Type"
177
+ msgstr ""
178
+
179
+ msgid "URL must be valid and schema must be one of: %s"
180
+ msgstr ""
181
+
182
+ msgid "Uncheck this option to disable validation of the receiver's SSL certificate"
183
+ msgstr ""
184
+
185
+ msgid "Update a Webhook"
186
+ msgstr ""
187
+
188
+ msgid "Update a webhook template"
189
+ msgstr ""
190
+
191
+ msgid "User"
192
+ msgstr "用户"
193
+
194
+ msgid "Verify SSL"
195
+ msgstr "验证 SSL"
196
+
197
+ msgid "Webhook"
198
+ msgstr ""
199
+
200
+ msgid "Webhook %s was successfully deleted"
201
+ msgstr ""
202
+
203
+ msgid "Webhook Templates"
204
+ msgstr ""
205
+
206
+ msgid "Webhook was successfully created."
207
+ msgstr ""
208
+
209
+ msgid "Webhook was successfully updated."
210
+ msgstr ""
211
+
212
+ msgid "WebhookTemplate|Locked"
213
+ msgstr ""
214
+
215
+ msgid "WebhookTemplate|Name"
216
+ msgstr ""
217
+
218
+ msgid "WebhookTemplate|Snippet"
219
+ msgstr ""
220
+
221
+ msgid "Webhooks"
222
+ msgstr ""
223
+
224
+ msgid "Whether or not the template is added automatically to new organizations and locations"
225
+ msgstr ""
226
+
227
+ msgid "Whether or not the template is locked for editing"
228
+ msgstr ""
229
+
230
+ msgid "X509 Certification Authorities"
231
+ msgstr ""
232
+
233
+ msgid "X509 Certification Authorities concatenated in PEM format"
234
+ msgstr ""
235
+
236
+ msgid "You are about to delete %s. Are you sure?"
237
+ msgstr ""
238
+
239
+ msgid "is required"
240
+ msgstr "是必需的"