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.
- 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/app/views/foreman_webhooks/webhook_templates/katello_-_promote.erb +1 -0
- data/app/views/foreman_webhooks/webhook_templates/katello_-_publish.erb +1 -0
- data/app/views/foreman_webhooks/webhook_templates/katello_-_repo_sync.erb +1 -0
- data/app/views/foreman_webhooks/webhook_templates/remote_execution_-_host_job.erb +0 -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,239 @@
|
|
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
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2023
|
8
|
+
# Andi Chandler <andi@gowling.com>, 2023
|
9
|
+
#
|
10
|
+
#, fuzzy
|
11
|
+
msgid ""
|
12
|
+
msgstr ""
|
13
|
+
"Project-Id-Version: foreman_webhooks 3.2.0\n"
|
14
|
+
"Report-Msgid-Bugs-To: \n"
|
15
|
+
"PO-Revision-Date: 2023-06-05 12:44+0000\n"
|
16
|
+
"Last-Translator: Andi Chandler <andi@gowling.com>, 2023\n"
|
17
|
+
"Language-Team: English (United Kingdom) (https://app.transifex.com/foreman/tea"
|
18
|
+
"ms/114/en_GB/)\n"
|
19
|
+
"MIME-Version: 1.0\n"
|
20
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
21
|
+
"Content-Transfer-Encoding: 8bit\n"
|
22
|
+
"Language: en_GB\n"
|
23
|
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
24
|
+
|
25
|
+
msgid "Actions"
|
26
|
+
msgstr "Actions"
|
27
|
+
|
28
|
+
msgid "Additional"
|
29
|
+
msgstr "Additional"
|
30
|
+
|
31
|
+
msgid "Authentication credentials"
|
32
|
+
msgstr ""
|
33
|
+
|
34
|
+
msgid "Authorize with Foreman client certificate and validate smart-proxy CA from Settings"
|
35
|
+
msgstr ""
|
36
|
+
|
37
|
+
msgid "Change the password"
|
38
|
+
msgstr ""
|
39
|
+
|
40
|
+
msgid "Clone a template"
|
41
|
+
msgstr ""
|
42
|
+
|
43
|
+
msgid "Confirm Webhook Deletion"
|
44
|
+
msgstr ""
|
45
|
+
|
46
|
+
msgid "Create Template"
|
47
|
+
msgstr ""
|
48
|
+
|
49
|
+
msgid "Create Webhook"
|
50
|
+
msgstr ""
|
51
|
+
|
52
|
+
msgid "Create a Webhook"
|
53
|
+
msgstr ""
|
54
|
+
|
55
|
+
msgid "Create a webhook template"
|
56
|
+
msgstr ""
|
57
|
+
|
58
|
+
msgid "Credentials"
|
59
|
+
msgstr ""
|
60
|
+
|
61
|
+
msgid "Delete"
|
62
|
+
msgstr "Delete"
|
63
|
+
|
64
|
+
msgid "Delete a Webhook"
|
65
|
+
msgstr ""
|
66
|
+
|
67
|
+
msgid "Delete a webhook template"
|
68
|
+
msgstr ""
|
69
|
+
|
70
|
+
msgid "Deliver webhook"
|
71
|
+
msgstr ""
|
72
|
+
|
73
|
+
msgid "Deliver webhook %s"
|
74
|
+
msgstr ""
|
75
|
+
|
76
|
+
msgid "Edit"
|
77
|
+
msgstr ""
|
78
|
+
|
79
|
+
msgid "Edit %s"
|
80
|
+
msgstr ""
|
81
|
+
|
82
|
+
msgid "Enabled"
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
msgid "Error"
|
86
|
+
msgstr ""
|
87
|
+
|
88
|
+
msgid "Example: %s"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
msgid "Export a webhook template to ERB"
|
92
|
+
msgstr ""
|
93
|
+
|
94
|
+
msgid "General"
|
95
|
+
msgstr ""
|
96
|
+
|
97
|
+
msgid "HTTP Content Type"
|
98
|
+
msgstr ""
|
99
|
+
|
100
|
+
msgid "HTTP Headers"
|
101
|
+
msgstr ""
|
102
|
+
|
103
|
+
msgid "HTTP Method"
|
104
|
+
msgstr ""
|
105
|
+
|
106
|
+
msgid "If unchecked, the webhook will be inactive"
|
107
|
+
msgstr ""
|
108
|
+
|
109
|
+
msgid "Import a webhook template"
|
110
|
+
msgstr ""
|
111
|
+
|
112
|
+
msgid "List Webhooks"
|
113
|
+
msgstr ""
|
114
|
+
|
115
|
+
msgid "List available events for subscription"
|
116
|
+
msgstr ""
|
117
|
+
|
118
|
+
msgid "List webhook templates"
|
119
|
+
msgstr ""
|
120
|
+
|
121
|
+
msgid "Name"
|
122
|
+
msgstr "Name"
|
123
|
+
|
124
|
+
msgid "No Results"
|
125
|
+
msgstr ""
|
126
|
+
|
127
|
+
msgid "Optional CAs in PEM format concatenated to verify the receiver's SSL certificate"
|
128
|
+
msgstr ""
|
129
|
+
|
130
|
+
msgid "Optional. Must be a JSON object (ERB allowed)"
|
131
|
+
msgstr ""
|
132
|
+
|
133
|
+
msgid "Password"
|
134
|
+
msgstr ""
|
135
|
+
|
136
|
+
msgid "Proxy Authorization"
|
137
|
+
msgstr ""
|
138
|
+
|
139
|
+
msgid "Show Webhook details"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
msgid "Show webhook template details"
|
143
|
+
msgstr ""
|
144
|
+
|
145
|
+
msgid "Snippet"
|
146
|
+
msgstr ""
|
147
|
+
|
148
|
+
msgid "Start typing to search"
|
149
|
+
msgstr ""
|
150
|
+
|
151
|
+
msgid "Subscribe to"
|
152
|
+
msgstr ""
|
153
|
+
|
154
|
+
msgid "Target URL"
|
155
|
+
msgstr ""
|
156
|
+
|
157
|
+
msgid "Target URL that should be called by Foreman (ERB allowed)."
|
158
|
+
msgstr ""
|
159
|
+
|
160
|
+
msgid "Template"
|
161
|
+
msgstr ""
|
162
|
+
|
163
|
+
msgid "Template contents including metadata"
|
164
|
+
msgstr ""
|
165
|
+
|
166
|
+
msgid "Template name"
|
167
|
+
msgstr ""
|
168
|
+
|
169
|
+
msgid "This template is locked for editing."
|
170
|
+
msgstr ""
|
171
|
+
|
172
|
+
msgid "Try to create a new webhook"
|
173
|
+
msgstr ""
|
174
|
+
|
175
|
+
msgid "Type"
|
176
|
+
msgstr "Type"
|
177
|
+
|
178
|
+
msgid "URL must be valid and schema must be one of: %s"
|
179
|
+
msgstr ""
|
180
|
+
|
181
|
+
msgid "Uncheck this option to disable validation of the receiver's SSL certificate"
|
182
|
+
msgstr ""
|
183
|
+
|
184
|
+
msgid "Update a Webhook"
|
185
|
+
msgstr ""
|
186
|
+
|
187
|
+
msgid "Update a webhook template"
|
188
|
+
msgstr ""
|
189
|
+
|
190
|
+
msgid "User"
|
191
|
+
msgstr ""
|
192
|
+
|
193
|
+
msgid "Verify SSL"
|
194
|
+
msgstr ""
|
195
|
+
|
196
|
+
msgid "Webhook"
|
197
|
+
msgstr ""
|
198
|
+
|
199
|
+
msgid "Webhook %s was successfully deleted"
|
200
|
+
msgstr ""
|
201
|
+
|
202
|
+
msgid "Webhook Templates"
|
203
|
+
msgstr ""
|
204
|
+
|
205
|
+
msgid "Webhook was successfully created."
|
206
|
+
msgstr ""
|
207
|
+
|
208
|
+
msgid "Webhook was successfully updated."
|
209
|
+
msgstr ""
|
210
|
+
|
211
|
+
msgid "WebhookTemplate|Locked"
|
212
|
+
msgstr ""
|
213
|
+
|
214
|
+
msgid "WebhookTemplate|Name"
|
215
|
+
msgstr ""
|
216
|
+
|
217
|
+
msgid "WebhookTemplate|Snippet"
|
218
|
+
msgstr ""
|
219
|
+
|
220
|
+
msgid "Webhooks"
|
221
|
+
msgstr ""
|
222
|
+
|
223
|
+
msgid "Whether or not the template is added automatically to new organizations and locations"
|
224
|
+
msgstr ""
|
225
|
+
|
226
|
+
msgid "Whether or not the template is locked for editing"
|
227
|
+
msgstr ""
|
228
|
+
|
229
|
+
msgid "X509 Certification Authorities"
|
230
|
+
msgstr "X509 Certification Authorities"
|
231
|
+
|
232
|
+
msgid "X509 Certification Authorities concatenated in PEM format"
|
233
|
+
msgstr ""
|
234
|
+
|
235
|
+
msgid "You are about to delete %s. Are you sure?"
|
236
|
+
msgstr ""
|
237
|
+
|
238
|
+
msgid "is required"
|
239
|
+
msgstr ""
|
Binary file
|
@@ -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
|
+
# Amit Upadhye <aupadhye@redhat.com>, 2023
|
8
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2023
|
9
|
+
# fe37ea014ea122db60df81cd86b163af_742ef71 <ba9f59c06b0be83ac3724b1834a4c14b_93939>, 2023
|
10
|
+
# Lukáš Zapletal, 2023
|
11
|
+
#
|
12
|
+
#, fuzzy
|
13
|
+
msgid ""
|
14
|
+
msgstr ""
|
15
|
+
"Project-Id-Version: foreman_webhooks 3.2.0\n"
|
16
|
+
"Report-Msgid-Bugs-To: \n"
|
17
|
+
"PO-Revision-Date: 2023-06-05 12:44+0000\n"
|
18
|
+
"Last-Translator: Lukáš Zapletal, 2023\n"
|
19
|
+
"Language-Team: Spanish (https://app.transifex.com/foreman/teams/114/es/)\n"
|
20
|
+
"MIME-Version: 1.0\n"
|
21
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
22
|
+
"Content-Transfer-Encoding: 8bit\n"
|
23
|
+
"Language: es\n"
|
24
|
+
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 :"
|
25
|
+
" 2;\n"
|
26
|
+
|
27
|
+
msgid "Actions"
|
28
|
+
msgstr "Acciones"
|
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 "Credenciales"
|
62
|
+
|
63
|
+
msgid "Delete"
|
64
|
+
msgstr "Borrar"
|
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 "General"
|
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 "Usuario"
|
194
|
+
|
195
|
+
msgid "Verify SSL"
|
196
|
+
msgstr "Verificar 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 "es necesario"
|
Binary file
|
@@ -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
|
+
# Amit Upadhye <aupadhye@redhat.com>, 2023
|
8
|
+
# Claer <transiblu@claer.hammock.fr>, 2023
|
9
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2023
|
10
|
+
# 21966816214bc546c1fc8a185e75ca1c, 2023
|
11
|
+
#
|
12
|
+
#, fuzzy
|
13
|
+
msgid ""
|
14
|
+
msgstr ""
|
15
|
+
"Project-Id-Version: foreman_webhooks 3.2.0\n"
|
16
|
+
"Report-Msgid-Bugs-To: \n"
|
17
|
+
"PO-Revision-Date: 2023-06-05 12:44+0000\n"
|
18
|
+
"Last-Translator: 21966816214bc546c1fc8a185e75ca1c, 2023\n"
|
19
|
+
"Language-Team: French (https://app.transifex.com/foreman/teams/114/fr/)\n"
|
20
|
+
"MIME-Version: 1.0\n"
|
21
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
22
|
+
"Content-Transfer-Encoding: 8bit\n"
|
23
|
+
"Language: fr\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 "Actions"
|
29
|
+
|
30
|
+
msgid "Additional"
|
31
|
+
msgstr "Informations complémentaires"
|
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 "Identifiants"
|
62
|
+
|
63
|
+
msgid "Delete"
|
64
|
+
msgstr "Supprimer"
|
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 "Modifier"
|
80
|
+
|
81
|
+
msgid "Edit %s"
|
82
|
+
msgstr "Modifier %s"
|
83
|
+
|
84
|
+
msgid "Enabled"
|
85
|
+
msgstr "Activé"
|
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 "Général"
|
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 "Nom"
|
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 "Type"
|
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 "Utilisateur"
|
194
|
+
|
195
|
+
msgid "Verify SSL"
|
196
|
+
msgstr "Vérifier 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 "est requis"
|
Binary file
|