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,237 @@
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
+ # Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2023
8
+ #
9
+ #, fuzzy
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: foreman_webhooks 3.2.0\n"
13
+ "Report-Msgid-Bugs-To: \n"
14
+ "PO-Revision-Date: 2023-06-05 12:44+0000\n"
15
+ "Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2023\n"
16
+ "Language-Team: Georgian (https://app.transifex.com/foreman/teams/114/ka/)\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: ka\n"
21
+ "Plural-Forms: nplurals=2; plural=(n!=1);\n"
22
+
23
+ msgid "Actions"
24
+ msgstr "ქმედებები"
25
+
26
+ msgid "Additional"
27
+ msgstr "დამატებით"
28
+
29
+ msgid "Authentication credentials"
30
+ msgstr "ავთენტიკაციის დეტალები"
31
+
32
+ msgid "Authorize with Foreman client certificate and validate smart-proxy CA from Settings"
33
+ msgstr "Foreman-ის კლიენტის სერტიფიკატით ავტორიზაცია და ჭკვიანი პროქსის CA-ის გადამოწმება პარამეტრებიდან"
34
+
35
+ msgid "Change the password"
36
+ msgstr "პაროლის შეცვლა"
37
+
38
+ msgid "Clone a template"
39
+ msgstr "შაბლონის კლონირება"
40
+
41
+ msgid "Confirm Webhook Deletion"
42
+ msgstr "დაადასტურეთ ვებჰუკის წაშლა"
43
+
44
+ msgid "Create Template"
45
+ msgstr "შაბლონის შექმნა"
46
+
47
+ msgid "Create Webhook"
48
+ msgstr "ვებჰუკის შექმნა"
49
+
50
+ msgid "Create a Webhook"
51
+ msgstr "ვებჰუკის შექმნა"
52
+
53
+ msgid "Create a webhook template"
54
+ msgstr "ვებჰუკის ნიმუშის შექმნა"
55
+
56
+ msgid "Credentials"
57
+ msgstr "მომხმ/პაროლი"
58
+
59
+ msgid "Delete"
60
+ msgstr "წაშლა"
61
+
62
+ msgid "Delete a Webhook"
63
+ msgstr "ვებჰუკის წაშლა"
64
+
65
+ msgid "Delete a webhook template"
66
+ msgstr "Delete a webhook წაშლა"
67
+
68
+ msgid "Deliver webhook"
69
+ msgstr "ვებჰუკის მიწოდება"
70
+
71
+ msgid "Deliver webhook %s"
72
+ msgstr "ვებჰუკის %s მიწოდება"
73
+
74
+ msgid "Edit"
75
+ msgstr "ჩასწორება"
76
+
77
+ msgid "Edit %s"
78
+ msgstr "%s-ის ჩასწორება"
79
+
80
+ msgid "Enabled"
81
+ msgstr "ჩაირთო"
82
+
83
+ msgid "Error"
84
+ msgstr "შეცდომა"
85
+
86
+ msgid "Example: %s"
87
+ msgstr "მაგალითი: %s"
88
+
89
+ msgid "Export a webhook template to ERB"
90
+ msgstr "ვებჰუკის ნიმუშის ERB_ზე გატანა"
91
+
92
+ msgid "General"
93
+ msgstr "მთავარი"
94
+
95
+ msgid "HTTP Content Type"
96
+ msgstr "HTTP შემცველობის ტიპი"
97
+
98
+ msgid "HTTP Headers"
99
+ msgstr "HTTP თავსართები"
100
+
101
+ msgid "HTTP Method"
102
+ msgstr "HTTP მეთოდი"
103
+
104
+ msgid "If unchecked, the webhook will be inactive"
105
+ msgstr "თუ გამორთულია, ვებჰუკი აქტიური არ იქნება"
106
+
107
+ msgid "Import a webhook template"
108
+ msgstr "ვებჰუკის ნიმუშის შემოტანა"
109
+
110
+ msgid "List Webhooks"
111
+ msgstr "ვებჰუკები სია"
112
+
113
+ msgid "List available events for subscription"
114
+ msgstr "გამოწერადი ხელმისაწვდომი მოვლენების სია"
115
+
116
+ msgid "List webhook templates"
117
+ msgstr "ვებჰუკის ნიმუშების სია"
118
+
119
+ msgid "Name"
120
+ msgstr "სახელი"
121
+
122
+ msgid "No Results"
123
+ msgstr "შედეგების გარეშე"
124
+
125
+ msgid "Optional CAs in PEM format concatenated to verify the receiver's SSL certificate"
126
+ msgstr "არასავალდებული CA-ები PEM ფორმატში, ერთ ფალში, მიმღების SSL სერტიფიკატის შესამოწმებლად"
127
+
128
+ msgid "Optional. Must be a JSON object (ERB allowed)"
129
+ msgstr "არასავალდებულოა. უნდა წარმოადგენდეს JSON ობიექტს (ERB დაშვებულია)"
130
+
131
+ msgid "Password"
132
+ msgstr "პაროლი"
133
+
134
+ msgid "Proxy Authorization"
135
+ msgstr "პროქსის ავტორიზაცია"
136
+
137
+ msgid "Show Webhook details"
138
+ msgstr "ვებჰუკის დეტალების ჩვენება"
139
+
140
+ msgid "Show webhook template details"
141
+ msgstr "ვებჰუკის ნიმუშის დეტალების ჩვენება"
142
+
143
+ msgid "Snippet"
144
+ msgstr "ნაწყვეტი"
145
+
146
+ msgid "Start typing to search"
147
+ msgstr "მოსაძებნად კრეფა დაიწყეთ"
148
+
149
+ msgid "Subscribe to"
150
+ msgstr "გამოწერა"
151
+
152
+ msgid "Target URL"
153
+ msgstr "სამიზნე URL"
154
+
155
+ msgid "Target URL that should be called by Foreman (ERB allowed)."
156
+ msgstr "სამიზნე URL, რომელიც Foreman-მა უნდა გამოიძახოს (ERB დაშვებულია)."
157
+
158
+ msgid "Template"
159
+ msgstr "ნიმუში"
160
+
161
+ msgid "Template contents including metadata"
162
+ msgstr "შაბლოკის შემცველობა, მეტამონაცემების ჩათვლით"
163
+
164
+ msgid "Template name"
165
+ msgstr "შაბლონის სახელი"
166
+
167
+ msgid "This template is locked for editing."
168
+ msgstr "შაბლონი დაბლოკილია."
169
+
170
+ msgid "Try to create a new webhook"
171
+ msgstr "ახალი ვებჰუკის შექმნის მცდელობა"
172
+
173
+ msgid "Type"
174
+ msgstr "ტიპი"
175
+
176
+ msgid "URL must be valid and schema must be one of: %s"
177
+ msgstr "URL სწორი უნდა იყოს და სქემა უნდა იყოს ერთერთი სიიდან: %s"
178
+
179
+ msgid "Uncheck this option to disable validation of the receiver's SSL certificate"
180
+ msgstr "გამორთეთ ეს პარამეტრი მიმღების SSL სერტიფიკატის გადამოწმების გამოსართავად"
181
+
182
+ msgid "Update a Webhook"
183
+ msgstr "ვებჰუკის განახლება"
184
+
185
+ msgid "Update a webhook template"
186
+ msgstr "ვებჰუკის ნიმუშის განახლება"
187
+
188
+ msgid "User"
189
+ msgstr "მომხმარებელი"
190
+
191
+ msgid "Verify SSL"
192
+ msgstr "SSL-ის შემოწმება"
193
+
194
+ msgid "Webhook"
195
+ msgstr "ვებჰუკი"
196
+
197
+ msgid "Webhook %s was successfully deleted"
198
+ msgstr "ვებჰუკი %s წარმატებით წაიშალა"
199
+
200
+ msgid "Webhook Templates"
201
+ msgstr "ვებჰუკის ნიმუშები"
202
+
203
+ msgid "Webhook was successfully created."
204
+ msgstr "ვებჰუკი წარმატებით შეიქმნა."
205
+
206
+ msgid "Webhook was successfully updated."
207
+ msgstr "ვებჰუკი წარმატებით განახლდა."
208
+
209
+ msgid "WebhookTemplate|Locked"
210
+ msgstr "დაბლოკილია"
211
+
212
+ msgid "WebhookTemplate|Name"
213
+ msgstr "სახელი"
214
+
215
+ msgid "WebhookTemplate|Snippet"
216
+ msgstr "ნაწყვეტი"
217
+
218
+ msgid "Webhooks"
219
+ msgstr "ვებჰუკები"
220
+
221
+ msgid "Whether or not the template is added automatically to new organizations and locations"
222
+ msgstr "ნაგულისხმები შაბლონები ახალ ორგანიზაციებსა და მდებარეობებს ავტომატურად ემატება, თუ არა"
223
+
224
+ msgid "Whether or not the template is locked for editing"
225
+ msgstr "დაიბლოკება თუ არა შაბლონი მისი ჩასწორებისას"
226
+
227
+ msgid "X509 Certification Authorities"
228
+ msgstr "X509 CA"
229
+
230
+ msgid "X509 Certification Authorities concatenated in PEM format"
231
+ msgstr "X509 სერტიფიკაციის ორგანოები, PEM ფორმატში გაერთიანებული"
232
+
233
+ msgid "You are about to delete %s. Are you sure?"
234
+ msgstr "აპირებთ წაშალოთ %s. დარწმუნებული ბრძანდებით?"
235
+
236
+ msgid "is required"
237
+ msgstr "აუცილებელია"
@@ -0,0 +1,238 @@
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
+ # Ewoud Kohl van Wijngaarden <ewoud+transifex@kohlvanwijngaarden.nl>, 2023
8
+ # Bryan Kearney <bryan.kearney@gmail.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: Bryan Kearney <bryan.kearney@gmail.com>, 2023\n"
17
+ "Language-Team: Korean (https://app.transifex.com/foreman/teams/114/ko/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: ko\n"
22
+ "Plural-Forms: nplurals=1; plural=0;\n"
23
+
24
+ msgid "Actions"
25
+ msgstr "동작 "
26
+
27
+ msgid "Additional"
28
+ msgstr ""
29
+
30
+ msgid "Authentication credentials"
31
+ msgstr ""
32
+
33
+ msgid "Authorize with Foreman client certificate and validate smart-proxy CA from Settings"
34
+ msgstr ""
35
+
36
+ msgid "Change the password"
37
+ msgstr ""
38
+
39
+ msgid "Clone a template"
40
+ msgstr ""
41
+
42
+ msgid "Confirm Webhook Deletion"
43
+ msgstr ""
44
+
45
+ msgid "Create Template"
46
+ msgstr ""
47
+
48
+ msgid "Create Webhook"
49
+ msgstr ""
50
+
51
+ msgid "Create a Webhook"
52
+ msgstr ""
53
+
54
+ msgid "Create a webhook template"
55
+ msgstr ""
56
+
57
+ msgid "Credentials"
58
+ msgstr ""
59
+
60
+ msgid "Delete"
61
+ msgstr "삭제 "
62
+
63
+ msgid "Delete a Webhook"
64
+ msgstr ""
65
+
66
+ msgid "Delete a webhook template"
67
+ msgstr ""
68
+
69
+ msgid "Deliver webhook"
70
+ msgstr ""
71
+
72
+ msgid "Deliver webhook %s"
73
+ msgstr ""
74
+
75
+ msgid "Edit"
76
+ msgstr "수정"
77
+
78
+ msgid "Edit %s"
79
+ msgstr ""
80
+
81
+ msgid "Enabled"
82
+ msgstr ""
83
+
84
+ msgid "Error"
85
+ msgstr "오류"
86
+
87
+ msgid "Example: %s"
88
+ msgstr ""
89
+
90
+ msgid "Export a webhook template to ERB"
91
+ msgstr ""
92
+
93
+ msgid "General"
94
+ msgstr "일반"
95
+
96
+ msgid "HTTP Content Type"
97
+ msgstr ""
98
+
99
+ msgid "HTTP Headers"
100
+ msgstr ""
101
+
102
+ msgid "HTTP Method"
103
+ msgstr ""
104
+
105
+ msgid "If unchecked, the webhook will be inactive"
106
+ msgstr ""
107
+
108
+ msgid "Import a webhook template"
109
+ msgstr ""
110
+
111
+ msgid "List Webhooks"
112
+ msgstr ""
113
+
114
+ msgid "List available events for subscription"
115
+ msgstr ""
116
+
117
+ msgid "List webhook templates"
118
+ msgstr ""
119
+
120
+ msgid "Name"
121
+ msgstr "이름"
122
+
123
+ msgid "No Results"
124
+ msgstr ""
125
+
126
+ msgid "Optional CAs in PEM format concatenated to verify the receiver's SSL certificate"
127
+ msgstr ""
128
+
129
+ msgid "Optional. Must be a JSON object (ERB allowed)"
130
+ msgstr ""
131
+
132
+ msgid "Password"
133
+ msgstr ""
134
+
135
+ msgid "Proxy Authorization"
136
+ msgstr ""
137
+
138
+ msgid "Show Webhook details"
139
+ msgstr ""
140
+
141
+ msgid "Show webhook template details"
142
+ msgstr ""
143
+
144
+ msgid "Snippet"
145
+ msgstr ""
146
+
147
+ msgid "Start typing to search"
148
+ msgstr ""
149
+
150
+ msgid "Subscribe to"
151
+ msgstr ""
152
+
153
+ msgid "Target URL"
154
+ msgstr ""
155
+
156
+ msgid "Target URL that should be called by Foreman (ERB allowed)."
157
+ msgstr ""
158
+
159
+ msgid "Template"
160
+ msgstr ""
161
+
162
+ msgid "Template contents including metadata"
163
+ msgstr ""
164
+
165
+ msgid "Template name"
166
+ msgstr ""
167
+
168
+ msgid "This template is locked for editing."
169
+ msgstr ""
170
+
171
+ msgid "Try to create a new webhook"
172
+ msgstr ""
173
+
174
+ msgid "Type"
175
+ msgstr ""
176
+
177
+ msgid "URL must be valid and schema must be one of: %s"
178
+ msgstr ""
179
+
180
+ msgid "Uncheck this option to disable validation of the receiver's SSL certificate"
181
+ msgstr ""
182
+
183
+ msgid "Update a Webhook"
184
+ msgstr ""
185
+
186
+ msgid "Update a webhook template"
187
+ msgstr ""
188
+
189
+ msgid "User"
190
+ msgstr "사용자 "
191
+
192
+ msgid "Verify SSL"
193
+ msgstr "SSL 확인 "
194
+
195
+ msgid "Webhook"
196
+ msgstr ""
197
+
198
+ msgid "Webhook %s was successfully deleted"
199
+ msgstr ""
200
+
201
+ msgid "Webhook Templates"
202
+ msgstr ""
203
+
204
+ msgid "Webhook was successfully created."
205
+ msgstr ""
206
+
207
+ msgid "Webhook was successfully updated."
208
+ msgstr ""
209
+
210
+ msgid "WebhookTemplate|Locked"
211
+ msgstr ""
212
+
213
+ msgid "WebhookTemplate|Name"
214
+ msgstr ""
215
+
216
+ msgid "WebhookTemplate|Snippet"
217
+ msgstr ""
218
+
219
+ msgid "Webhooks"
220
+ msgstr ""
221
+
222
+ msgid "Whether or not the template is added automatically to new organizations and locations"
223
+ msgstr ""
224
+
225
+ msgid "Whether or not the template is locked for editing"
226
+ msgstr ""
227
+
228
+ msgid "X509 Certification Authorities"
229
+ msgstr ""
230
+
231
+ msgid "X509 Certification Authorities concatenated in PEM format"
232
+ msgstr ""
233
+
234
+ msgid "You are about to delete %s. Are you sure?"
235
+ msgstr ""
236
+
237
+ msgid "is required"
238
+ 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
+ # sziolkow <sziolkow@gmail.com>, 2023
8
+ # Michał Foryt <michal.foryt@gmail.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: Michał Foryt <michal.foryt@gmail.com>, 2023\n"
17
+ "Language-Team: Polish (https://app.transifex.com/foreman/teams/114/pl/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Language: pl\n"
22
+ "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12"
23
+ " || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n"
24
+ "%100>=12 && n%100<=14) ? 2 : 3);\n"
25
+
26
+ msgid "Actions"
27
+ msgstr "Akcja"
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 "Usuń"
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 "Edytuj"
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 "Generalnie"
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 "Nazwa"
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 "Typ"
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 "Użytkownik"
193
+
194
+ msgid "Verify SSL"
195
+ msgstr ""
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 ""