foreman_openscap 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/compliance/arf_reports_controller.rb +5 -3
  3. data/lib/foreman_openscap/helper.rb +1 -1
  4. data/lib/foreman_openscap/version.rb +1 -1
  5. metadata +11 -38
  6. data/locale/de/foreman_openscap.edit.po +0 -1411
  7. data/locale/de/foreman_openscap.po.time_stamp +0 -0
  8. data/locale/en_GB/foreman_openscap.edit.po +0 -1240
  9. data/locale/en_GB/foreman_openscap.po.time_stamp +0 -0
  10. data/locale/es/foreman_openscap.edit.po +0 -1462
  11. data/locale/es/foreman_openscap.po.time_stamp +0 -0
  12. data/locale/fr/foreman_openscap.edit.po +0 -1468
  13. data/locale/fr/foreman_openscap.po.time_stamp +0 -0
  14. data/locale/gl/foreman_openscap.edit.po +0 -1240
  15. data/locale/gl/foreman_openscap.po.time_stamp +0 -0
  16. data/locale/it/foreman_openscap.edit.po +0 -1361
  17. data/locale/it/foreman_openscap.po.time_stamp +0 -0
  18. data/locale/ja/foreman_openscap.edit.po +0 -1462
  19. data/locale/ja/foreman_openscap.po.time_stamp +0 -0
  20. data/locale/ko/foreman_openscap.edit.po +0 -1408
  21. data/locale/ko/foreman_openscap.po.time_stamp +0 -0
  22. data/locale/pt_BR/foreman_openscap.edit.po +0 -1467
  23. data/locale/pt_BR/foreman_openscap.po.time_stamp +0 -0
  24. data/locale/ru/foreman_openscap.edit.po +0 -1412
  25. data/locale/ru/foreman_openscap.po.time_stamp +0 -0
  26. data/locale/sv_SE/foreman_openscap.edit.po +0 -1240
  27. data/locale/sv_SE/foreman_openscap.po.time_stamp +0 -0
  28. data/locale/zh_CN/foreman_openscap.edit.po +0 -1463
  29. data/locale/zh_CN/foreman_openscap.po.time_stamp +0 -0
  30. data/locale/zh_TW/foreman_openscap.edit.po +0 -1409
  31. data/locale/zh_TW/foreman_openscap.po.time_stamp +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d6e301b29945537277b6a85512f2f44b0f510e2c32ba9caa27f41e86baa36b4e
4
- data.tar.gz: bdbb2084e0f49402dc09d2361681ed8268b1df4bd1d4972b6c8dc47591885d98
3
+ metadata.gz: c9022cadb1e56bd7bf36523d096543e50bcadb360327e0f930d00a8308774203
4
+ data.tar.gz: a1cf2ae2a6bfd3dd77de305ea65312e07ca51ec61ceed96c625e48a170306183
5
5
  SHA512:
6
- metadata.gz: 40f777835363faccd5f7ec85200615f29b4278eb0b0c858dd18ce09321faf3665fffb78fba14002e697efb83b125b3a483725a3a6ca10e07954700e8fa83b19d
7
- data.tar.gz: 29337269bae75e609e62530b2ae94b92cde2b7e5f10c41ddd7b4ab2af4d14e8cdc3a60e250b0244c60dc6e2337e8620af822b8fd40bee18b2952e13fdc92281c
6
+ metadata.gz: 43d354207d9200b8d230312cd6259ff76b27ee75a87bcace113df7b323fad7bc4be4012ea15fd1aa1134fc91e9fff6aa93a2e07deeef2acd4f358e4cd031b63c
7
+ data.tar.gz: fda20c152e9bf85fc7a42d85e1d8472386ea8b1fa9fc516373f144019c39cd797db4b49f60312165b154e4c59f63cf948ae7cb364990c020687a28020434b12c
@@ -90,12 +90,14 @@ module Api
90
90
  end
91
91
 
92
92
  def find_resources_before_create
93
- unless ForemanOpenscap::Policy.where(:id => params[:policy_id]).any?
94
- upload_fail(_("Policy with id %s not found.") % params[:policy_id])
93
+ policy_id = params[:policy_id].to_i
94
+
95
+ unless ForemanOpenscap::Policy.where(:id => policy_id).any?
96
+ upload_fail(_("Policy with id %s not found.") % policy_id)
95
97
  return
96
98
  end
97
99
 
98
- @asset = ForemanOpenscap::Helper::get_asset(params[:cname], params[:policy_id])
100
+ @asset = ForemanOpenscap::Helper::get_asset(params[:cname], policy_id)
99
101
 
100
102
  unless @asset
101
103
  upload_fail(_('Could not find host identified by: %s') % params[:cname])
@@ -2,7 +2,7 @@ module ForemanOpenscap::Helper
2
2
  def self.get_asset(cname, policy_id)
3
3
  asset = find_host_by_name_or_uuid(cname)&.get_asset
4
4
  return unless asset
5
- asset.policy_ids += [policy_id]
5
+ asset.policy_ids += [policy_id] unless asset.policy_ids.include?(policy_id)
6
6
  asset
7
7
  end
8
8
 
@@ -1,3 +1,3 @@
1
1
  module ForemanOpenscap
2
- VERSION = "3.0.0".freeze
2
+ VERSION = "3.0.1".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_openscap
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - slukasik@redhat.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-02 00:00:00.000000000 Z
11
+ date: 2020-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -258,59 +258,33 @@ files:
258
258
  - locale/Makefile
259
259
  - locale/action_names.rb
260
260
  - locale/de/LC_MESSAGES/foreman_openscap.mo
261
- - locale/de/foreman_openscap.edit.po
262
261
  - locale/de/foreman_openscap.po
263
- - locale/de/foreman_openscap.po.time_stamp
264
262
  - locale/en_GB/LC_MESSAGES/foreman_openscap.mo
265
- - locale/en_GB/foreman_openscap.edit.po
266
263
  - locale/en_GB/foreman_openscap.po
267
- - locale/en_GB/foreman_openscap.po.time_stamp
268
264
  - locale/es/LC_MESSAGES/foreman_openscap.mo
269
- - locale/es/foreman_openscap.edit.po
270
265
  - locale/es/foreman_openscap.po
271
- - locale/es/foreman_openscap.po.time_stamp
272
266
  - locale/foreman_openscap.pot
273
267
  - locale/fr/LC_MESSAGES/foreman_openscap.mo
274
- - locale/fr/foreman_openscap.edit.po
275
268
  - locale/fr/foreman_openscap.po
276
- - locale/fr/foreman_openscap.po.time_stamp
277
269
  - locale/gl/LC_MESSAGES/foreman_openscap.mo
278
- - locale/gl/foreman_openscap.edit.po
279
270
  - locale/gl/foreman_openscap.po
280
- - locale/gl/foreman_openscap.po.time_stamp
281
271
  - locale/it/LC_MESSAGES/foreman_openscap.mo
282
- - locale/it/foreman_openscap.edit.po
283
272
  - locale/it/foreman_openscap.po
284
- - locale/it/foreman_openscap.po.time_stamp
285
273
  - locale/ja/LC_MESSAGES/foreman_openscap.mo
286
- - locale/ja/foreman_openscap.edit.po
287
274
  - locale/ja/foreman_openscap.po
288
- - locale/ja/foreman_openscap.po.time_stamp
289
275
  - locale/ko/LC_MESSAGES/foreman_openscap.mo
290
- - locale/ko/foreman_openscap.edit.po
291
276
  - locale/ko/foreman_openscap.po
292
- - locale/ko/foreman_openscap.po.time_stamp
293
277
  - locale/pt_BR/LC_MESSAGES/foreman_openscap.mo
294
- - locale/pt_BR/foreman_openscap.edit.po
295
278
  - locale/pt_BR/foreman_openscap.po
296
- - locale/pt_BR/foreman_openscap.po.time_stamp
297
279
  - locale/ru/LC_MESSAGES/foreman_openscap.mo
298
- - locale/ru/foreman_openscap.edit.po
299
280
  - locale/ru/foreman_openscap.po
300
- - locale/ru/foreman_openscap.po.time_stamp
301
281
  - locale/sv_SE/LC_MESSAGES/foreman_openscap.mo
302
- - locale/sv_SE/foreman_openscap.edit.po
303
282
  - locale/sv_SE/foreman_openscap.po
304
- - locale/sv_SE/foreman_openscap.po.time_stamp
305
283
  - locale/zanata.xml
306
284
  - locale/zh_CN/LC_MESSAGES/foreman_openscap.mo
307
- - locale/zh_CN/foreman_openscap.edit.po
308
285
  - locale/zh_CN/foreman_openscap.po
309
- - locale/zh_CN/foreman_openscap.po.time_stamp
310
286
  - locale/zh_TW/LC_MESSAGES/foreman_openscap.mo
311
- - locale/zh_TW/foreman_openscap.edit.po
312
287
  - locale/zh_TW/foreman_openscap.po
313
- - locale/zh_TW/foreman_openscap.po.time_stamp
314
288
  - test/factories/arf_report_factory.rb
315
289
  - test/factories/asset_factory.rb
316
290
  - test/factories/compliance_host_factory.rb
@@ -374,19 +348,18 @@ required_rubygems_version: !ruby/object:Gem::Requirement
374
348
  - !ruby/object:Gem::Version
375
349
  version: '0'
376
350
  requirements: []
377
- rubyforge_project:
378
- rubygems_version: 2.7.6.2
351
+ rubygems_version: 3.1.2
379
352
  signing_key:
380
353
  specification_version: 4
381
354
  summary: Foreman plug-in for displaying OpenSCAP audit reports
382
355
  test_files:
383
356
  - test/factories/arf_report_factory.rb
384
357
  - test/factories/asset_factory.rb
358
+ - test/factories/compliance_host_factory.rb
385
359
  - test/factories/compliance_log_factory.rb
386
360
  - test/factories/policy_arf_report_factory.rb
387
361
  - test/factories/policy_factory.rb
388
362
  - test/factories/scap_content_related.rb
389
- - test/factories/compliance_host_factory.rb
390
363
  - test/files/arf_report/arf_report.bz2
391
364
  - test/files/arf_report/arf_report.html
392
365
  - test/files/arf_report/arf_report.json
@@ -395,21 +368,25 @@ test_files:
395
368
  - test/files/scap_contents/ssg-fedora-ds.xml
396
369
  - test/files/tailoring_files/ssg-firefox-ds-tailoring-2.xml
397
370
  - test/files/tailoring_files/ssg-firefox-ds-tailoring.xml
371
+ - test/functional/api/v2/compliance/arf_reports_controller_test.rb
398
372
  - test/functional/api/v2/compliance/policies_controller_test.rb
373
+ - test/functional/api/v2/compliance/scap_content_profiles_controller_test.rb
399
374
  - test/functional/api/v2/compliance/scap_contents_controller_test.rb
400
375
  - test/functional/api/v2/compliance/tailoring_files_controller_test.rb
401
- - test/functional/api/v2/compliance/arf_reports_controller_test.rb
402
- - test/functional/api/v2/compliance/scap_content_profiles_controller_test.rb
403
376
  - test/functional/api/v2/hosts_controller_test.rb
404
377
  - test/functional/arf_reports_controller_test.rb
405
378
  - test/functional/openscap_proxies_controller_test.rb
406
379
  - test/functional/tailoring_files_controller_test.rb
380
+ - test/helpers/arf_report_dashboard_helper_test.rb
381
+ - test/helpers/policy_dashboard_helper_test.rb
407
382
  - test/lib/foreman_openscap/bulk_upload_test.rb
408
383
  - test/unit/arf_report_status_calculator_test.rb
384
+ - test/unit/arf_report_test.rb
409
385
  - test/unit/compliance_status_test.rb
410
- - test/unit/concerns/openscap_proxy_extenstions_test.rb
411
386
  - test/unit/concerns/host_extensions_test.rb
387
+ - test/unit/concerns/openscap_proxy_extenstions_test.rb
412
388
  - test/unit/message_cleaner_test.rb
389
+ - test/unit/openscap_host_test.rb
413
390
  - test/unit/policy_mailer_test.rb
414
391
  - test/unit/scap_content_test.rb
415
392
  - test/unit/services/config_name_service_test.rb
@@ -418,9 +395,5 @@ test_files:
418
395
  - test/unit/services/report_dashboard/data_test.rb
419
396
  - test/unit/services/tailoring_files_proxy_check_test.rb
420
397
  - test/unit/tailoring_file_test.rb
421
- - test/unit/arf_report_test.rb
422
- - test/unit/openscap_host_test.rb
423
398
  - test/unit/policy_test.rb
424
- - test/helpers/arf_report_dashboard_helper_test.rb
425
- - test/helpers/policy_dashboard_helper_test.rb
426
399
  - test/test_plugin_helper.rb
@@ -1,1411 +0,0 @@
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_openscap package.
4
- #
5
- # Translators:
6
- # Crited <Alexander.Stoll@netways.de>, 2019
7
- # Ettore Atalan <atalanttore@googlemail.com>, 2016-2017
8
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2016
9
- # Ludwig B <lbayerlein@lbayerlein.de>, 2020
10
- msgid ""
11
- msgstr ""
12
- "Project-Id-Version: Foreman\n"
13
- "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2020-03-02 13:32+0000\n"
15
- "PO-Revision-Date: 2020-02-11 07:20+0000\n"
16
- "Last-Translator: Ludwig B <lbayerlein@lbayerlein.de>\n"
17
- "Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
18
- "MIME-Version: 1.0\n"
19
- "Content-Type: text/plain; charset=UTF-8\n"
20
- "Content-Transfer-Encoding: 8bit\n"
21
- "Language: de\n"
22
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
-
24
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:25
25
- msgid "List ARF reports"
26
- msgstr "ARF-Berichte auflisten"
27
-
28
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:33
29
- msgid "Show an ARF report"
30
- msgstr "ARF-Bericht anzeigen"
31
-
32
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:39
33
- msgid "Delete an ARF Report"
34
- msgstr "ARF-Bericht löschen"
35
-
36
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:46
37
- msgid "Upload an ARF report"
38
- msgstr "Einen Arf-Bericht hochladen"
39
-
40
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:57
41
- msgid "Download bzipped ARF report"
42
- msgstr "bzipped ARF-Bericht herunterladen"
43
-
44
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:67
45
- msgid "Download ARF report in HTML"
46
- msgstr "ARF-Bericht in HTML herunterladen"
47
-
48
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:94
49
- msgid "Policy with id %s not found."
50
- msgstr "Richtlinie mit Kennung %s nicht gefunden."
51
-
52
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:101
53
- msgid "Could not find host identified by: %s"
54
- msgstr "Host identifiziert durch %s nicht gefunden"
55
-
56
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:106
57
- msgid "Failed to upload Arf Report, OpenSCAP proxy name or url not found in params when uploading for %s and host is missing openscap_proxy"
58
- msgstr "Der Upload des Arf Reports ist fehlgeschlagen, der OpenSCAP Proxyname oder die URL konnte beim Upload in den Parametern für %s nicht gefunden werden. Es fehlt der openscap_proxy für den Host."
59
-
60
- #: ../app/controllers/api/v2/compliance/arf_reports_controller.rb:118
61
- msgid "No proxy found for %{name} or %{url}"
62
- msgstr "Keine Proxy für %{name} oder %{url} gefunden"
63
-
64
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:18
65
- msgid "List Policies"
66
- msgstr "Richtlinien auflisten"
67
-
68
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:26
69
- msgid "Show a Policy"
70
- msgstr "Zeige Richtlinie"
71
-
72
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:34
73
- msgid "Policy name"
74
- msgstr "Name der Richtlinie"
75
-
76
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:35
77
- msgid "Policy description"
78
- msgstr "Beschreibung der Richtlinie"
79
-
80
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:36
81
- msgid "Policy SCAP content ID"
82
- msgstr ""
83
-
84
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:37
85
- msgid "Policy SCAP content profile ID"
86
- msgstr ""
87
-
88
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:38
89
- msgid "Policy schedule period (weekly, monthly, custom)"
90
- msgstr ""
91
-
92
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:39
93
- msgid "Policy schedule weekday (only if period == \"weekly\")"
94
- msgstr ""
95
-
96
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:40
97
- msgid "Policy schedule day of month (only if period == \"monthly\")"
98
- msgstr ""
99
-
100
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:41
101
- msgid "Policy schedule cron line (only if period == \"custom\")"
102
- msgstr ""
103
-
104
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:42
105
- msgid "Apply policy to host groups"
106
- msgstr "Richtlinie auf Hostgruppe anwenden"
107
-
108
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:43
109
- msgid "Apply policy to hosts"
110
- msgstr "Richtlinie auf Hosts anwenden"
111
-
112
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:44
113
- msgid "Tailoring file ID"
114
- msgstr ""
115
-
116
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:45
117
- msgid "Tailoring file profile ID"
118
- msgstr ""
119
-
120
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:46
121
- msgid "How the policy should be deployed"
122
- msgstr ""
123
-
124
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:51
125
- msgid "Create a Policy"
126
- msgstr "Richtlinie erstellen"
127
-
128
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:60
129
- msgid "Update a Policy"
130
- msgstr "Richtlinie aktualisieren "
131
-
132
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:68
133
- msgid "Delete a Policy"
134
- msgstr "Richtlinie löschen"
135
-
136
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:75
137
- msgid "Show a policy's SCAP content"
138
- msgstr "SCAP-Inhalt einer Richtlinie anzeigen"
139
-
140
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:85
141
- msgid "Show a policy's Tailoring file"
142
- msgstr ""
143
-
144
- #: ../app/controllers/api/v2/compliance/policies_controller.rb:95
145
- msgid "No Tailoring file assigned for policy with id %s"
146
- msgstr ""
147
-
148
- #: ../app/controllers/api/v2/compliance/scap_content_profiles_controller.rb:6
149
- msgid "List SCAP content profiles"
150
- msgstr ""
151
-
152
- #: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:10
153
- msgid "List SCAP contents"
154
- msgstr "SCAP-Inhalte auflisten"
155
-
156
- #: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:18
157
- msgid "Download an SCAP content as XML"
158
- msgstr "SCAP-Inhalt als XML herunterladen"
159
-
160
- #: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:27
161
- msgid "Show an SCAP content"
162
- msgstr "Einen SCAP-Inhalt anzeigen"
163
-
164
- #: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:34
165
- msgid "SCAP content name"
166
- msgstr "SCAP-Inhaltsname"
167
-
168
- #: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:35
169
- msgid "XML containing SCAP content"
170
- msgstr "XML, welches SCAP-Inhalte enthält"
171
-
172
- #: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:36 ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:37
173
- msgid "Original file name of the XML file"
174
- msgstr "Ursprünglicher Dateiname der XML-Datei"
175
-
176
- #: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:41
177
- msgid "Create SCAP content"
178
- msgstr "SCAP-Inhalt erstellen"
179
-
180
- #: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:49
181
- msgid "Update an SCAP content"
182
- msgstr "Einen SCAP-Inhalt aktualisieren "
183
-
184
- #: ../app/controllers/api/v2/compliance/scap_contents_controller.rb:57
185
- msgid "Deletes an SCAP content"
186
- msgstr "Einen SCAP-Inhalt löschen"
187
-
188
- #: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:11
189
- msgid "List Tailoring files"
190
- msgstr ""
191
-
192
- #: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:19
193
- msgid "Download a Tailoring file as XML"
194
- msgstr ""
195
-
196
- #: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:28
197
- msgid "Show a Tailoring file"
198
- msgstr ""
199
-
200
- #: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:35
201
- msgid "Tailoring file name"
202
- msgstr ""
203
-
204
- #: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:36
205
- msgid "XML containing tailoring file"
206
- msgstr ""
207
-
208
- #: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:42
209
- msgid "Create a Tailoring file"
210
- msgstr ""
211
-
212
- #: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:50
213
- msgid "Update a Tailoring file"
214
- msgstr ""
215
-
216
- #: ../app/controllers/api/v2/compliance/tailoring_files_controller.rb:58
217
- msgid "Deletes a Tailoring file"
218
- msgstr ""
219
-
220
- #: ../app/controllers/arf_reports_controller.rb:37
221
- msgid "Failed to downloaded ARF report as bzip: %s"
222
- msgstr "ARF als bzip report wurde nicht heruntergeladen: %s"
223
-
224
- #: ../app/controllers/arf_reports_controller.rb:48
225
- msgid "Failed to downloaded ARF report in HTML: %s"
226
- msgstr "ARF Bericht im HTML Format konnte nicht heruntergeladen werden: %s"
227
-
228
- #: ../app/controllers/arf_reports_controller.rb:55
229
- msgid "Successfully deleted ARF report."
230
- msgstr "ARF-Bericht erfolgreich gelöscht."
231
-
232
- #: ../app/controllers/arf_reports_controller.rb:57
233
- msgid "Failed to delete ARF Report for host %{host_name} reported at %{reported_at}"
234
- msgstr "ARF Bericht für den Host %{host_name} vom %{reported_at} konnte nicht gelöscht werden."
235
-
236
- #: ../app/controllers/arf_reports_controller.rb:67
237
- msgid "Failed to delete %s compliance reports"
238
- msgstr "Compliance-Berichte %s konnten nicht gelöscht werden"
239
-
240
- #: ../app/controllers/arf_reports_controller.rb:70
241
- msgid "Successfully deleted %s compliance reports"
242
- msgstr "Compliance-Berichte %s erfolgreich gelöscht"
243
-
244
- #: ../app/controllers/arf_reports_controller.rb:85
245
- msgid "No compliance reports were found."
246
- msgstr "Kein Compliance-Bericht gefunden."
247
-
248
- #: ../app/controllers/arf_reports_controller.rb:89
249
- msgid "No compliance reports selected"
250
- msgstr "Kein Compliance-Bericht ausgewählt."
251
-
252
- #: ../app/controllers/arf_reports_controller.rb:94
253
- msgid "Something went wrong while selecting compliance reports - %s"
254
- msgstr "Fehler bei der Auswahl der Compliance-Berichte - %s"
255
-
256
- #: ../app/controllers/concerns/foreman_openscap/api/v2/hosts_controller_extensions.rb:19
257
- msgid "Show config information for foreman_scap_client"
258
- msgstr ""
259
-
260
- #: ../app/controllers/concerns/foreman_openscap/api/v2/hosts_controller_extensions.rb:20
261
- msgid "The identifier of the host"
262
- msgstr ""
263
-
264
- #: ../app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb:26
265
- msgid "Updated hosts: Assigned with OpenSCAP Proxy: %s"
266
- msgstr "Host aktualisiert: Zugewiesen mit OpenSCAP Proxy: %s"
267
-
268
- #: ../app/controllers/concerns/foreman_openscap/hosts_controller_extensions.rb:29
269
- msgid "No OpenSCAP Proxy selected."
270
- msgstr "Kein OpenSCAP Proxy ausgewählt."
271
-
272
- #: ../app/controllers/policies_controller.rb:84
273
- msgid "Updated hosts: Assigned with compliance policy: %s"
274
- msgstr ""
275
-
276
- #: ../app/controllers/policies_controller.rb:91
277
- msgid "No compliance policy selected."
278
- msgstr "Keine Compliance-Richtlinie ausgewählt."
279
-
280
- #: ../app/controllers/policies_controller.rb:103
281
- msgid "Updated hosts: Unassigned from compliance policy '%s'"
282
- msgstr "Hosts aktualisiert: Zuweisung von Compliance-Richtlinie '%s' aufgehoben"
283
-
284
- #: ../app/controllers/policies_controller.rb:105
285
- msgid "No valid policy ID provided"
286
- msgstr "Keine gültige Richtlinienkennung geliefert"
287
-
288
- #: ../app/controllers/policies_controller.rb:125
289
- msgid "No hosts were found."
290
- msgstr "Keine Hosts gefunden."
291
-
292
- #: ../app/controllers/policies_controller.rb:129
293
- msgid "No hosts selected"
294
- msgstr "Keine Hosts ausgewählt"
295
-
296
- #: ../app/controllers/policies_controller.rb:134
297
- msgid "Something went wrong while selecting hosts - %s"
298
- msgstr "Fehler beim Auswählen der Hosts – %s"
299
-
300
- #: ../app/helpers/arf_report_dashboard_helper.rb:18 ../app/helpers/compliance_dashboard_helper.rb:8 ../app/helpers/compliance_hosts_helper.rb:15 ../app/views/arf_reports/_list.html.erb:11 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:11 ../app/views/policy_dashboard/_policy_reports.html.erb:10
301
- msgid "Failed"
302
- msgstr "Fehlgeschlagen"
303
-
304
- #: ../app/helpers/arf_report_dashboard_helper.rb:19 ../app/helpers/compliance_dashboard_helper.rb:6 ../app/helpers/compliance_hosts_helper.rb:14 ../app/views/arf_reports/_list.html.erb:10 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:9
305
- msgid "Passed"
306
- msgstr "Erfolgreich"
307
-
308
- #: ../app/helpers/arf_report_dashboard_helper.rb:20 ../app/views/arf_reports/_list.html.erb:12 ../app/views/foreman_openscap/policy_mailer/_hosts.erb:14 ../app/views/policy_dashboard/_policy_reports.html.erb:11
309
- msgid "Other"
310
- msgstr "Weitere"
311
-
312
- #: ../app/helpers/arf_report_dashboard_helper.rb:28
313
- msgid "Number of Events"
314
- msgstr "Anzahl der Ereignisse"
315
-
316
- #: ../app/helpers/arf_report_dashboard_helper.rb:29
317
- msgid "Rule Results"
318
- msgstr ""
319
-
320
- #: ../app/helpers/arf_reports_helper.rb:10
321
- msgid "Show log messages:"
322
- msgstr "Protokollnachrichten anzeigen:"
323
-
324
- #: ../app/helpers/arf_reports_helper.rb:11
325
- msgid "All messages"
326
- msgstr "Alle Meldungen"
327
-
328
- #: ../app/helpers/arf_reports_helper.rb:11
329
- msgid "Failed and Othered"
330
- msgstr "Fehlgeschlagene und anderweitige Ergebnisse"
331
-
332
- #: ../app/helpers/arf_reports_helper.rb:11
333
- msgid "Failed only"
334
- msgstr "Nur fehlgeschlagen"
335
-
336
- #: ../app/helpers/arf_reports_helper.rb:21 ../app/views/arf_reports/index.html.erb:1 ../app/views/arf_reports/welcome.html.erb:1 ../app/views/arf_reports/welcome.html.erb:7
337
- msgid "Compliance Reports"
338
- msgstr "Compliance-Berichte"
339
-
340
- #: ../app/helpers/arf_reports_helper.rb:57
341
- msgid "Delete reports"
342
- msgstr "Berichte löschen"
343
-
344
- #: ../app/helpers/arf_reports_helper.rb:62
345
- msgid "Select Action"
346
- msgstr "Aktion auswählen"
347
-
348
- #: ../app/helpers/arf_reports_helper.rb:65
349
- msgid "%s - The following compliance reports are about to be changed"
350
- msgstr "%s - Folgende Compliance-Berichte werden geändert "
351
-
352
- #: ../app/helpers/arf_reports_helper.rb:70
353
- msgid "No proxy found!"
354
- msgstr "Kein Proxy gefunden!"
355
-
356
- #: ../app/helpers/arf_reports_helper.rb:75
357
- msgid "Reported at %s"
358
- msgstr "Berichtet um %s"
359
-
360
- #: ../app/helpers/arf_reports_helper.rb:76
361
- msgid " for policy %s"
362
- msgstr "Für Richtlinie %s"
363
-
364
- #: ../app/helpers/arf_reports_helper.rb:78
365
- msgid " through %s"
366
- msgstr ""
367
-
368
- #: ../app/helpers/arf_reports_helper.rb:83
369
- msgid "Hosts failing this rule"
370
- msgstr "Regel schlägt auf Hosts fehl."
371
-
372
- #: ../app/helpers/arf_reports_helper.rb:84
373
- msgid "Hosts passing this rule"
374
- msgstr "Regel angewandt auf Hosts."
375
-
376
- #: ../app/helpers/arf_reports_helper.rb:85
377
- msgid "Hosts othering this rule"
378
- msgstr ""
379
-
380
- #: ../app/helpers/compliance_dashboard_helper.rb:3 ../app/views/arf_reports/delete_multiple.html.erb:7 ../app/views/policy_dashboard/_policy_reports.html.erb:6
381
- msgid "Host"
382
- msgstr "Rechner"
383
-
384
- #: ../app/helpers/compliance_dashboard_helper.rb:4 ../app/views/arf_reports/_list.html.erb:8
385
- msgid "Policy"
386
- msgstr "Richtlinie"
387
-
388
- #. TRANSLATORS: initial character of Passed
389
- #: ../app/helpers/compliance_dashboard_helper.rb:6
390
- msgid "Passed|P"
391
- msgstr "Erfolgreich|E"
392
-
393
- #. TRANSLATORS: initial character of Failed
394
- #: ../app/helpers/compliance_dashboard_helper.rb:8
395
- msgid "Failed|F"
396
- msgstr "Fehlgeschlagen|F "
397
-
398
- #. TRANSLATORS: initial character of Othered which is an SCAP term
399
- #: ../app/helpers/compliance_dashboard_helper.rb:10
400
- msgid "Othered|O"
401
- msgstr "Anderweitig|A"
402
-
403
- #: ../app/helpers/compliance_dashboard_helper.rb:10 ../app/helpers/compliance_hosts_helper.rb:16
404
- msgid "Othered"
405
- msgstr "Anderweitiges Ergebnis"
406
-
407
- #: ../app/helpers/compliance_hosts_helper.rb:24
408
- msgid "Assign Compliance Policy"
409
- msgstr "Compliance-Richtlinie zuweisen"
410
-
411
- #: ../app/helpers/compliance_hosts_helper.rb:25
412
- msgid "Unassign Compliance Policy"
413
- msgstr "Zuweisung der Compliance-Richtline aufheben"
414
-
415
- #: ../app/helpers/compliance_hosts_helper.rb:26
416
- msgid "Change OpenSCAP Proxy"
417
- msgstr "Ändere OpenSCAP-Proxy"
418
-
419
- #: ../app/helpers/compliance_hosts_helper.rb:35 ../app/models/foreman_openscap/compliance_status.rb:8 ../lib/foreman_openscap/engine.rb:138
420
- msgid "Compliance"
421
- msgstr "Konformität"
422
-
423
- #: ../app/helpers/compliance_hosts_helper.rb:37
424
- msgid "Host compliance details"
425
- msgstr "Compliance-Details des Hosts"
426
-
427
- #: ../app/helpers/concerns/foreman_openscap/hosts_helper_extensions.rb:4
428
- msgid "Host is deleted"
429
- msgstr "Host ist gelöscht"
430
-
431
- #: ../app/helpers/foreman_openscap_helper.rb:4
432
- msgid "documentation"
433
- msgstr "Dokumentation"
434
-
435
- #: ../app/helpers/policies_helper.rb:56
436
- msgid "Choose existing SCAP Content"
437
- msgstr "Vorhandenen SCAP-Inhalt auswählen"
438
-
439
- #: ../app/helpers/policies_helper.rb:57 ../app/helpers/policies_helper.rb:62 ../app/models/foreman_openscap/policy.rb:111 ../app/views/policies/_form.html.erb:10 ../app/views/scap_contents/welcome.html.erb:1 ../app/views/scap_contents/welcome.html.erb:6
440
- msgid "SCAP Content"
441
- msgstr "SCAP-Inhalt"
442
-
443
- #: ../app/helpers/policies_helper.rb:72 ../app/helpers/policies_helper.rb:79
444
- msgid "XCCDF Profile"
445
- msgstr "XCCDF-Profil"
446
-
447
- #: ../app/helpers/policies_helper.rb:78
448
- msgid "Default XCCDF profile"
449
- msgstr "Standardmäßiges XCCDF-Profil"
450
-
451
- #: ../app/helpers/policies_helper.rb:87
452
- msgid "Choose Tailoring File"
453
- msgstr ""
454
-
455
- #: ../app/helpers/policies_helper.rb:88 ../app/views/policies/_list.html.erb:6
456
- msgid "Tailoring File"
457
- msgstr ""
458
-
459
- #: ../app/helpers/policies_helper.rb:97
460
- msgid "XCCDF Profile in Tailoring File"
461
- msgstr ""
462
-
463
- #: ../app/helpers/policies_helper.rb:98
464
- msgid "This profile will be used to override the one from scap content"
465
- msgstr "Dieses Profil wird dafür genutzt um die Eins des SCAP-Inhalts zu überschreiben"
466
-
467
- #: ../app/helpers/policies_helper.rb:109 ../app/views/arf_reports/_list.html.erb:54
468
- msgid "Submit"
469
- msgstr "Absenden"
470
-
471
- #: ../app/helpers/policies_helper.rb:113 ../app/views/arf_reports/_list.html.erb:53
472
- msgid "Cancel"
473
- msgstr "Abbrechen"
474
-
475
- #: ../app/helpers/policies_helper.rb:145 ../lib/foreman_openscap/engine.rb:139
476
- msgid "Policies"
477
- msgstr "Richtlinien"
478
-
479
- #: ../app/helpers/policy_dashboard_helper.rb:11
480
- msgid "Compliant hosts"
481
- msgstr "Konforme Hosts"
482
-
483
- #: ../app/helpers/policy_dashboard_helper.rb:12
484
- msgid "Incompliant hosts"
485
- msgstr "Nicht konforme Hosts"
486
-
487
- #: ../app/helpers/policy_dashboard_helper.rb:13 ../app/models/foreman_openscap/compliance_status.rb:20
488
- msgid "Inconclusive"
489
- msgstr "Nicht eindeutig "
490
-
491
- #: ../app/helpers/policy_dashboard_helper.rb:14
492
- msgid "Not audited"
493
- msgstr "Nicht geprüft"
494
-
495
- #: ../app/helpers/policy_dashboard_helper.rb:41
496
- msgid "Host is assigned to policy"
497
- msgstr ""
498
-
499
- #: ../app/helpers/policy_dashboard_helper.rb:44
500
- msgid "Host is not assigned to policy but reports were found. You may want to delete the reports or assign the policy again."
501
- msgstr ""
502
-
503
- #: ../app/helpers/policy_dashboard_helper.rb:52
504
- msgid "Hosts no longer assigned: %s"
505
- msgstr ""
506
-
507
- #: ../app/helpers/policy_dashboard_helper.rb:56
508
- msgid "Total hosts with reports where policy is no longer assigned."
509
- msgstr ""
510
-
511
- #: ../app/lib/proxy_api/openscap.rb:21
512
- msgid "Request timed out. Please try increasing Settings -> proxy_request_timeout"
513
- msgstr ""
514
-
515
- #: ../app/lib/proxy_api/openscap.rb:24
516
- msgid "Could not validate %s. Please make sure you have appropriate proxy version to use this functionality"
517
- msgstr ""
518
-
519
- #: ../app/lib/proxy_api/openscap.rb:27
520
- msgid "Could not validate %{file_type}. Error %{error}"
521
- msgstr "Konnte nicht %{file_type} validieren. Fehler: %{error}"
522
-
523
- #: ../app/lib/proxy_api/openscap.rb:40
524
- msgid "Unable to get HTML version of requested report from Smart Proxy"
525
- msgstr "Bericht des Smart-Proxy in HTML konnte nicht abgerufen werden"
526
-
527
- #: ../app/lib/proxy_api/openscap.rb:49
528
- msgid "Unable to get XML version of requested report from Smart Proxy"
529
- msgstr "Bericht des Smart-Proxy in XML konnte nicht abgerufen werden."
530
-
531
- #: ../app/mailers/foreman_openscap/policy_mailer.rb:17
532
- msgid "SCAP policies summary"
533
- msgstr "SCAP-Richtlinienzusammenfassung"
534
-
535
- #: ../app/models/concerns/foreman_openscap/log_extensions.rb:17
536
- msgid "is not included in SCAP_RESULT"
537
- msgstr "ist nicht in SCAP_RESULT enthalten"
538
-
539
- #: ../app/models/concerns/foreman_openscap/openscap_proxy_core_extensions.rb:69
540
- msgid "must have Openscap feature"
541
- msgstr "Muss ein OpenSCAP Feature haben"
542
-
543
- #: ../app/models/concerns/foreman_openscap/openscap_proxy_extensions.rb:8
544
- msgid "No OpenSCAP proxy found for %{class} with id %{id}"
545
- msgstr "Kein OpenSCAP-Proxy für %{class} mit der Kennung %{id} gefunden"
546
-
547
- #: ../app/models/foreman_openscap/compliance_status.rb:18 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:13
548
- msgid "Compliant"
549
- msgstr "Konform"
550
-
551
- #: ../app/models/foreman_openscap/compliance_status.rb:22 ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:17
552
- msgid "Incompliant"
553
- msgstr "Nicht konform"
554
-
555
- #: ../app/models/foreman_openscap/compliance_status.rb:24
556
- msgid "Unknown Compliance status"
557
- msgstr "Compliance-Status unbekannt"
558
-
559
- #: ../app/models/foreman_openscap/policy.rb:31 ../app/models/foreman_openscap/policy.rb:273
560
- msgid "is not a valid value"
561
- msgstr "ist kein gültiger Wert"
562
-
563
- #: ../app/models/foreman_openscap/policy.rb:51
564
- msgid "Cannot generate HTML guide, scap content is missing."
565
- msgstr "HTML-Leitfaden konnte nicht generiert werden. SCAP-Inhalt fehlt."
566
-
567
- #: ../app/models/foreman_openscap/policy.rb:57
568
- msgid "Cannot generate HTML guide, no valid OpenSCAP proxy server found."
569
- msgstr "HTML-Leitfaden konnte nicht generiert werden. Kein gültiger OpenSCAP-Proxy-Server gefunden."
570
-
571
- #: ../app/models/foreman_openscap/policy.rb:111 ../app/views/policies/_form.html.erb:8
572
- msgid "Deployment Options"
573
- msgstr ""
574
-
575
- #: ../app/models/foreman_openscap/policy.rb:111
576
- msgid "Policy Attributes"
577
- msgstr "Richtlinien Eigenschaften"
578
-
579
- #: ../app/models/foreman_openscap/policy.rb:111 ../app/views/policies/_form.html.erb:11
580
- msgid "Schedule"
581
- msgstr "Plan"
582
-
583
- #: ../app/models/foreman_openscap/policy.rb:112 ../app/views/policies/_form.html.erb:13 ../app/views/scap_contents/_form.html.erb:11 ../app/views/tailoring_files/_form.html.erb:11
584
- msgid "Locations"
585
- msgstr "Standorte"
586
-
587
- #: ../app/models/foreman_openscap/policy.rb:113 ../app/views/policies/_form.html.erb:16 ../app/views/scap_contents/_form.html.erb:14 ../app/views/tailoring_files/_form.html.erb:14
588
- msgid "Organizations"
589
- msgstr "Organisationen"
590
-
591
- #: ../app/models/foreman_openscap/policy.rb:114
592
- msgid "Hostgroups"
593
- msgstr "Hostgruppen"
594
-
595
- #: ../app/models/foreman_openscap/policy.rb:267
596
- msgid "does not consist of 5 parts separated by space"
597
- msgstr "besteht nicht aus 5 Teilen, die durch Leerzeichen abgetrennt sind"
598
-
599
- #: ../app/models/foreman_openscap/policy.rb:279
600
- msgid "must be between 1 and 31"
601
- msgstr "muss zwischen 1 und 31 liegen"
602
-
603
- #: ../app/models/foreman_openscap/policy.rb:284
604
- msgid "must be present when tailoring file profile present"
605
- msgstr ""
606
-
607
- #: ../app/models/foreman_openscap/policy.rb:285
608
- msgid "must be present when tailoring file present"
609
- msgstr ""
610
-
611
- #: ../app/models/foreman_openscap/policy.rb:290
612
- msgid "does not come from selected tailoring file"
613
- msgstr ""
614
-
615
- #: ../app/models/foreman_openscap/policy.rb:296
616
- msgid "does not have the selected SCAP content profile"
617
- msgstr ""
618
-
619
- #: ../app/models/foreman_openscap/policy.rb:328
620
- msgid "cannot assign to %s, all assigned policies must be deployed in the same way, check 'deploy by' for each assigned policy"
621
- msgstr ""
622
-
623
- #: ../app/services/foreman_openscap/arf_report_status_calculator.rb:30
624
- msgid "invalid type %s"
625
- msgstr "ungültiger Typ %s"
626
-
627
- #: ../app/services/foreman_openscap/client_config/ansible.rb:32
628
- msgid "Ansible role"
629
- msgstr "Ansible Rolle"
630
-
631
- #: ../app/services/foreman_openscap/client_config/ansible.rb:33
632
- msgid "Ansible variables"
633
- msgstr "Ansible Variablen"
634
-
635
- #: ../app/services/foreman_openscap/client_config/puppet.rb:32
636
- msgid "Puppet class"
637
- msgstr "Puppet-Klasse"
638
-
639
- #: ../app/services/foreman_openscap/client_config/puppet.rb:33
640
- msgid "Smart Class Parameters"
641
- msgstr "Smart-Class-Parameter"
642
-
643
- #: ../app/services/foreman_openscap/lookup_key_overrider.rb:13
644
- msgid "%{type} was selected to deploy policy to clients, but %{type} is not available. Are you missing a plugin?"
645
- msgstr ""
646
-
647
- #: ../app/services/foreman_openscap/lookup_key_overrider.rb:27
648
- msgid "Required %{msg_name} %{class} was not found, please ensure it is imported first."
649
- msgstr ""
650
-
651
- #: ../app/services/foreman_openscap/lookup_key_overrider.rb:57
652
- msgid "The following %{key_name} were missing for %{item_name}: %{key_names}. Make sure they are imported before proceeding."
653
- msgstr ""
654
-
655
- #: ../app/services/foreman_openscap/lookup_key_overrider.rb:90
656
- msgid "Failed to save when overriding parameters for %{config_tool}, cause: %{errors}"
657
- msgstr ""
658
-
659
- #: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:39
660
- msgid "This feature is temporarily disabled. "
661
- msgstr "Dieses Feature ist temporär deaktiviert."
662
-
663
- #: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:40
664
- msgid "The following Smart Proxies need to be updated to unlock the feature: %s. "
665
- msgstr "Die folgenden Smart-Proxys müssen aktualisiert werden um das Feature freizuschalten: %s."
666
-
667
- #: ../app/services/foreman_openscap/openscap_proxy_version_check.rb:41
668
- msgid "The following proxies could not be reached: %s. Please make sure they are available so Foreman can check their versions."
669
- msgstr ""
670
-
671
- #: ../app/validators/foreman_openscap/data_stream_validator.rb:9
672
- msgid "No proxy with OpenSCAP feature was found."
673
- msgstr "Kein Proxy mit OpenSCAP Feature gefunden."
674
-
675
- #: ../app/validators/foreman_openscap/data_stream_validator.rb:14
676
- msgid "No proxy with OpenSCAP feature is running."
677
- msgstr "Kein Proxy mit OpenSCAP Feature läuft gerade."
678
-
679
- #: ../app/validators/foreman_openscap/data_stream_validator.rb:26
680
- msgid "No available proxy to validate. Returned with error: %s"
681
- msgstr "Kein Proxy zum Validieren verfügbar. Fehler: %s"
682
-
683
- #: ../app/validators/foreman_openscap/data_stream_validator.rb:33
684
- msgid "Changed file does not include existing SCAP content profiles"
685
- msgstr "Geänderte Datei enthält keine existierende SCAP-Inhaltsprofile"
686
-
687
- #: ../app/views/arf_reports/_detailed_message.html.erb:3
688
- msgid "More details"
689
- msgstr "Weitere Details"
690
-
691
- #: ../app/views/arf_reports/_detailed_message.html.erb:6
692
- msgid "Description"
693
- msgstr "Beschreibung"
694
-
695
- #: ../app/views/arf_reports/_detailed_message.html.erb:7
696
- msgid "Rationale"
697
- msgstr "Begründung"
698
-
699
- #: ../app/views/arf_reports/_detailed_message.html.erb:8
700
- msgid "References"
701
- msgstr "Verweise"
702
-
703
- #: ../app/views/arf_reports/_list.html.erb:5
704
- msgid "Select all items in this page"
705
- msgstr "Alle Elemente auf dieser Seite auswählen"
706
-
707
- #: ../app/views/arf_reports/_list.html.erb:5
708
- msgid "items selected. Uncheck to Clear"
709
- msgstr "Elemente ausgewählt. Zum Leeren abwählen"
710
-
711
- #: ../app/views/arf_reports/_list.html.erb:7 ../app/views/arf_reports/delete_multiple.html.erb:10
712
- msgid "Reported At"
713
- msgstr "Berichtet am"
714
-
715
- #: ../app/views/arf_reports/_list.html.erb:9
716
- msgid "Openscap Proxy"
717
- msgstr "OpenSCAP-Proxy"
718
-
719
- #: ../app/views/arf_reports/_list.html.erb:13 ../app/views/arf_reports/_output.html.erb:8 ../app/views/policies/_list.html.erb:8 ../app/views/policy_dashboard/_policy_reports.html.erb:12 ../app/views/scap_contents/_list.html.erb:6 ../app/views/tailoring_files/_list.html.erb:6
720
- msgid "Actions"
721
- msgstr "Aktionen"
722
-
723
- #: ../app/views/arf_reports/_list.html.erb:28
724
- msgid "Deleted policy"
725
- msgstr "Richtlinie löschen"
726
-
727
- #: ../app/views/arf_reports/_list.html.erb:34
728
- msgid "Full Report"
729
- msgstr "Ganzer Bericht"
730
-
731
- #: ../app/views/arf_reports/_list.html.erb:37
732
- msgid "Delete compliance report for %s?"
733
- msgstr "Compliance-Bericht von %s löschen?"
734
-
735
- #: ../app/views/arf_reports/_list.html.erb:48
736
- msgid "Please Confirm"
737
- msgstr "Bitte bestätigen"
738
-
739
- #: ../app/views/arf_reports/_metrics.html.erb:6
740
- msgid "Report Metrics"
741
- msgstr "Berichtsmetrik"
742
-
743
- #: ../app/views/arf_reports/_metrics.html.erb:13
744
- msgid "Report Status"
745
- msgstr "Berichtsstatus"
746
-
747
- #: ../app/views/arf_reports/_metrics.html.erb:34
748
- msgid "Total"
749
- msgstr "Gesamt"
750
-
751
- #: ../app/views/arf_reports/_output.html.erb:4
752
- msgid "Result"
753
- msgstr "Ergebnis"
754
-
755
- #: ../app/views/arf_reports/_output.html.erb:5
756
- msgid "Message"
757
- msgstr "Nachricht"
758
-
759
- #: ../app/views/arf_reports/_output.html.erb:6
760
- msgid "Resource"
761
- msgstr "Ressource"
762
-
763
- #: ../app/views/arf_reports/_output.html.erb:7
764
- msgid "Severity"
765
- msgstr "Schweregrad"
766
-
767
- #: ../app/views/arf_reports/_output.html.erb:25
768
- msgid "Nothing to show"
769
- msgstr "Nichts anzuzeigen"
770
-
771
- #: ../app/views/arf_reports/delete_multiple.html.erb:27
772
- msgid "Delete"
773
- msgstr "Löschen"
774
-
775
- #: ../app/views/arf_reports/delete_multiple.html.erb:28
776
- msgid "these Compliance reports"
777
- msgstr "diese Compliance-Berichte"
778
-
779
- #: ../app/views/arf_reports/show.html.erb:15
780
- msgid "Back"
781
- msgstr "Zurück"
782
-
783
- #: ../app/views/arf_reports/show.html.erb:17
784
- msgid "Host details"
785
- msgstr "Hostdetails"
786
-
787
- #: ../app/views/arf_reports/show.html.erb:18
788
- msgid "View full report"
789
- msgstr "Ganzen Bericht anzeigen"
790
-
791
- #: ../app/views/arf_reports/show.html.erb:19
792
- msgid "Download XML in bzip"
793
- msgstr "XML in bzip herunterladen"
794
-
795
- #: ../app/views/arf_reports/show.html.erb:20
796
- msgid "Download HTML"
797
- msgstr "HTML herunterladen"
798
-
799
- #: ../app/views/arf_reports/show_html.html.erb:9
800
- msgid "Loading..."
801
- msgstr "Ladevorgang …"
802
-
803
- #: ../app/views/arf_reports/welcome.html.erb:9
804
- msgid "You don't seem to have any ARF report. ARF report is a summary of a single scan occurrence on a particular host for a given Compliance Policy."
805
- msgstr ""
806
-
807
- #: ../app/views/arf_reports/welcome.html.erb:12
808
- msgid "Documentation"
809
- msgstr "Dokumentation"
810
-
811
- #: ../app/views/compliance_hosts/show.html.erb:9
812
- msgid "Compliance Hosts"
813
- msgstr "Compliance Hosts"
814
-
815
- #: ../app/views/compliance_hosts/show.html.erb:11
816
- msgid "%s compliance reports by policy"
817
- msgstr "%s Compliance-Berichte nach Richtlinie"
818
-
819
- #: ../app/views/compliance_hosts/show.html.erb:15
820
- msgid "%s compliance report by policy"
821
- msgid_plural "%s compliance reports by policy"
822
- msgstr[0] "%s Compliance-Berichte nach Richtlinie"
823
- msgstr[1] "%s Compliance-Berichte nach Richtlinie"
824
-
825
- #: ../app/views/compliance_hosts/show.html.erb:17
826
- msgid "Policy %s"
827
- msgstr "Richtlinie %s"
828
-
829
- #: ../app/views/compliance_hosts/show.html.erb:23
830
- msgid "%s latest report"
831
- msgstr "%s letzter Bericht"
832
-
833
- #: ../app/views/compliance_hosts/show.html.erb:35
834
- msgid "%s reports over time"
835
- msgstr "%s Berichte im Laufe der Zeit "
836
-
837
- #: ../app/views/compliance_hosts/show.html.erb:43
838
- msgid "No report for this policy"
839
- msgstr "Kein Bericht für diese Richtlinie"
840
-
841
- #: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:154
842
- msgid "Latest Compliance Reports"
843
- msgstr "Neuste Compliance-Berichte "
844
-
845
- #: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:4
846
- msgid "No reports available"
847
- msgstr "Keine Berichte verfügbar"
848
-
849
- #: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:12
850
- msgid "Host does not exist anymore"
851
- msgstr "Host existiert nicht mehr"
852
-
853
- #: ../app/views/dashboard/_compliance_host_reports_widget.html.erb:13
854
- msgid "Policy is missing"
855
- msgstr "Richtlinie fehlt"
856
-
857
- #: ../app/views/dashboard/_compliance_reports_breakdown_widget.html.erb:1 ../lib/foreman_openscap/engine.rb:156
858
- msgid "Compliance Reports Breakdown"
859
- msgstr ""
860
-
861
- #: ../app/views/foreman_openscap/policy_mailer/_dashboard.erb:9
862
- msgid "Changed"
863
- msgstr "Geändert "
864
-
865
- #: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:5
866
- msgid "Hostname"
867
- msgstr "Hostname"
868
-
869
- #: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:17
870
- msgid "Changed?"
871
- msgstr "Geändert?"
872
-
873
- #: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
874
- msgid "Yes"
875
- msgstr "Ja"
876
-
877
- #: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:36
878
- msgid "No"
879
- msgstr "Nein"
880
-
881
- #: ../app/views/foreman_openscap/policy_mailer/_hosts.erb:40
882
- msgid "No ARF reports for this policy"
883
- msgstr "Keine Arf-Berichte für diese Richtlinie"
884
-
885
- #: ../app/views/foreman_openscap/policy_mailer/_list.erb:8
886
- msgid "None!"
887
- msgstr "Keine!"
888
-
889
- #: ../app/views/foreman_openscap/policy_mailer/_policy.erb:7
890
- msgid "Total of one host"
891
- msgid_plural "Total of %{hosts} hosts"
892
- msgstr[0] ""
893
- msgstr[1] ""
894
-
895
- #: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:6
896
- msgid "Summary report for OpenScap from Foreman"
897
- msgstr "Zusammenfassungsbericht des OpenSCAP vom Foreman"
898
-
899
- #: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:9
900
- msgid "<b>Foreman</b> OpenSCAP summary"
901
- msgstr "<b>Foreman</b> OpenSCAP Zusammenfassung"
902
-
903
- #: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:10
904
- msgid "Summary from %{time} ago to now"
905
- msgstr "Zusammenfassung von %{time} bis jetzt"
906
-
907
- #: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:11
908
- msgid "Summary report from Foreman server at %{foreman_url}"
909
- msgstr "Zusammenfassungbericht vom Foreman-Server unter %{foreman_url}"
910
-
911
- #: ../app/views/foreman_openscap/policy_mailer/policy_summary.erb:16
912
- msgid "Policies with hosts:"
913
- msgstr "Richtlinien mit Hosts:"
914
-
915
- #: ../app/views/hosts/select_multiple_openscap_proxy.html.erb:5
916
- msgid "Select OpenSCAP Proxy"
917
- msgstr "Wähle OpenSCAP-Proxy"
918
-
919
- #: ../app/views/policies/_form.html.erb:9
920
- msgid "General"
921
- msgstr "Allgemein"
922
-
923
- #: ../app/views/policies/_form.html.erb:18
924
- msgid "Host Groups"
925
- msgstr "Hostgruppen"
926
-
927
- #: ../app/views/policies/_form.html.erb:45 ../app/views/policies/steps/_schedule_form.html.erb:6
928
- msgid "Choose period"
929
- msgstr "Zeitraum auswählen"
930
-
931
- #: ../app/views/policies/_form.html.erb:47 ../app/views/policies/steps/_schedule_form.html.erb:8
932
- msgid "Choose weekday"
933
- msgstr "Wochentag auswählen"
934
-
935
- #: ../app/views/policies/_form.html.erb:48 ../app/views/policies/steps/_schedule_form.html.erb:9
936
- msgid "Number of a day in month, note that not all months have same count of days"
937
- msgstr "Tag des Monats, beachten Sie, dass nicht alle Monate gleich viele Tage haben"
938
-
939
- #: ../app/views/policies/_form.html.erb:49 ../app/views/policies/steps/_schedule_form.html.erb:10
940
- msgid "You can specify custom cron line, e.g. \"0 3 * * *\", separate each of 5 values by space"
941
- msgstr "Sie können die Cron-Zeile anpassen, z.B. \"0 3 * * *\", wobei alle 5 Werte mit Leerzeichen getrennt werden"
942
-
943
- #: ../app/views/policies/_list.html.erb:7
944
- msgid "Effective Profile"
945
- msgstr "Effektives Profil"
946
-
947
- #: ../app/views/policies/_list.html.erb:28
948
- msgid "None"
949
- msgstr "Keine"
950
-
951
- #: ../app/views/policies/_list.html.erb:36
952
- msgid "Dashboard"
953
- msgstr "Übersichtsseite"
954
-
955
- #: ../app/views/policies/_list.html.erb:37
956
- msgid "Show Guide"
957
- msgstr "Handbuch anzeigen"
958
-
959
- #: ../app/views/policies/_list.html.erb:39
960
- msgid "Delete compliance policy %s with all of its reports?"
961
- msgstr "Compliance-Richtline %s löschen mit allen Berichten?"
962
-
963
- #: ../app/views/policies/create.html.erb:1 ../app/views/policies/index.html.erb:5 ../app/views/policies/new.html.erb:1
964
- msgid "New Compliance Policy"
965
- msgstr "Neue Compliance-Richtlinie"
966
-
967
- #: ../app/views/policies/disassociate_multiple_hosts.html.erb:4 ../app/views/policies/select_multiple_hosts.html.erb:5
968
- msgid "Select Compliance Policy"
969
- msgstr "Compliance-Richtlinie auswählen"
970
-
971
- #: ../app/views/policies/edit.html.erb:1
972
- msgid "Edit Compliance Policy"
973
- msgstr "Compliance-Richtlinie bearbeiten"
974
-
975
- #: ../app/views/policies/index.html.erb:2 ../app/views/policies/welcome.html.erb:1 ../app/views/policies/welcome.html.erb:6
976
- msgid "Compliance Policies"
977
- msgstr "Compliance-Richtlinien"
978
-
979
- #: ../app/views/policies/steps/_schedule_form.html.erb:9
980
- msgid "Choose day in month"
981
- msgstr "Wähle einen Tag im Monat"
982
-
983
- #: ../app/views/policies/steps/_step_form.html.erb:11
984
- msgid "Next"
985
- msgstr "Weiter"
986
-
987
- #: ../app/views/policies/welcome.html.erb:7
988
- msgid "In Foreman, a compliance policy checklist is defined via %s."
989
- msgstr "In Foreman wird eine Compliance-Richtlinien-Checkliste definiert via %s."
990
-
991
- #: ../app/views/policies/welcome.html.erb:7
992
- msgid "SCAP content"
993
- msgstr "SCAP-Inhalt"
994
-
995
- #: ../app/views/policies/welcome.html.erb:8
996
- msgid "Once SCAP content is present, you can create a policy, assign select host groups and schedule to run."
997
- msgstr ""
998
-
999
- #: ../app/views/policies/welcome.html.erb:12
1000
- msgid "New Policy"
1001
- msgstr "Neue Richtlinie"
1002
-
1003
- #: ../app/views/policy_dashboard/_policy_chart_widget.html.erb:4
1004
- msgid "Host Breakdown Chart"
1005
- msgstr "Diagramm zur Hostaufgliederung"
1006
-
1007
- #: ../app/views/policy_dashboard/_policy_reports.html.erb:7
1008
- msgid "Policy assigned"
1009
- msgstr ""
1010
-
1011
- #: ../app/views/policy_dashboard/_policy_reports.html.erb:8
1012
- msgid "Date"
1013
- msgstr "Datum"
1014
-
1015
- #: ../app/views/policy_dashboard/_policy_reports.html.erb:24
1016
- msgid "View Report"
1017
- msgstr "Bericht anzeigen"
1018
-
1019
- #: ../app/views/policy_dashboard/_policy_status_widget.html.erb:2
1020
- msgid "Hosts Breakdown"
1021
- msgstr "Aufgliederung der Hosts"
1022
-
1023
- #: ../app/views/policy_dashboard/_policy_status_widget.html.erb:4
1024
- msgid "Compliant with the policy"
1025
- msgstr "Konform mit der Richtlinie"
1026
-
1027
- #: ../app/views/policy_dashboard/_policy_status_widget.html.erb:5
1028
- msgid "Not compliant with the policy"
1029
- msgstr "Nicht konform mit der Richtlinie"
1030
-
1031
- #: ../app/views/policy_dashboard/_policy_status_widget.html.erb:6
1032
- msgid "Inconclusive results"
1033
- msgstr "Ergebnisse sind nicht eindeutig"
1034
-
1035
- #: ../app/views/policy_dashboard/_policy_status_widget.html.erb:7
1036
- msgid "Never audited"
1037
- msgstr "Nie geprüft"
1038
-
1039
- #: ../app/views/policy_dashboard/_policy_status_widget.html.erb:9
1040
- msgid "Total hosts with policy: %s"
1041
- msgstr ""
1042
-
1043
- #: ../app/views/policy_dashboard/index.html.erb:3
1044
- msgid "Compliance policy: %s"
1045
- msgstr "Compliance-Richtlinie: %s"
1046
-
1047
- #: ../app/views/policy_dashboard/index.html.erb:7
1048
- msgid "Status table"
1049
- msgstr "Statustabelle"
1050
-
1051
- #: ../app/views/policy_dashboard/index.html.erb:8
1052
- msgid "Status chart"
1053
- msgstr "Statusdiagramm"
1054
-
1055
- #: ../app/views/policy_dashboard/index.html.erb:20
1056
- msgid "Latest reports for policy: %s"
1057
- msgstr "Neuste Berichte für Richtlinie: %s"
1058
-
1059
- #: ../app/views/scap_contents/_form.html.erb:9 ../app/views/tailoring_files/_form.html.erb:9
1060
- msgid "File Upload"
1061
- msgstr "Datei hochladen"
1062
-
1063
- #: ../app/views/scap_contents/_form.html.erb:20
1064
- msgid "SCAP DataStream file"
1065
- msgstr "SCAP-DataStream Datei"
1066
-
1067
- #: ../app/views/scap_contents/_list.html.erb:17 ../app/views/tailoring_files/_list.html.erb:23
1068
- msgid "Download"
1069
- msgstr "Herunterladen"
1070
-
1071
- #: ../app/views/scap_contents/_list.html.erb:19
1072
- msgid "Delete scap content %s?"
1073
- msgstr ""
1074
-
1075
- #: ../app/views/scap_contents/edit.html.erb:1
1076
- msgid "Edit SCAP Content"
1077
- msgstr "SCAP-Inhalt bearbeiten"
1078
-
1079
- #: ../app/views/scap_contents/edit.html.erb:5
1080
- msgid "Scap Contents"
1081
- msgstr "SCAP-Inhalte"
1082
-
1083
- #: ../app/views/scap_contents/index.html.erb:1
1084
- msgid "SCAP Contents"
1085
- msgstr "SCAP-Inhalte"
1086
-
1087
- #: ../app/views/scap_contents/index.html.erb:3
1088
- msgid "Upload New SCAP Content"
1089
- msgstr "Neuen SCAP-Inhalt hochladen "
1090
-
1091
- #: ../app/views/scap_contents/new.html.erb:1
1092
- msgid "Upload new SCAP content file"
1093
- msgstr "Neue Datei für SCAP-Inhalt hochladen"
1094
-
1095
- #: ../app/views/scap_contents/welcome.html.erb:7
1096
- msgid ""
1097
- "The Security Content Automation Protocol (SCAP), combines a number of open standards that are used to enumerate software flaws and\n"
1098
- " configuration issues related to security. "
1099
- msgstr ""
1100
-
1101
- #: ../app/views/scap_contents/welcome.html.erb:9
1102
- msgid ""
1103
- "In Foreman, scap_contents represent the SCAP security guides on your hosts, and create SCAP profiles for you to assign to hosts / host groups\n"
1104
- " via %s"
1105
- msgstr ""
1106
-
1107
- #: ../app/views/scap_contents/welcome.html.erb:14
1108
- msgid "New SCAP Content"
1109
- msgstr "Neuer SCAP-Inhalt"
1110
-
1111
- #: ../app/views/smart_proxies/_openscap_spool.html.erb:4
1112
- msgid "%s spool errors detected, inspect the appropriate file directly on proxy"
1113
- msgstr ""
1114
-
1115
- #: ../app/views/smart_proxies/_openscap_spool.html.erb:8
1116
- msgid "Failed to fetch spool status from proxy"
1117
- msgstr ""
1118
-
1119
- #: ../app/views/smart_proxies/_openscap_spool.html.erb:11
1120
- msgid "None found"
1121
- msgstr "Keine gefunden"
1122
-
1123
- #: ../app/views/smart_proxies/plugins/_openscap.html.erb:7
1124
- msgid "Proxy failed to send a report from spool to Foreman. This indicates a corrupted report format. Report has been moved to directory for storing corrupted files on proxy for later inspection."
1125
- msgstr ""
1126
-
1127
- #: ../app/views/smart_proxies/plugins/_openscap.html.erb:8
1128
- msgid "Spool errors"
1129
- msgstr ""
1130
-
1131
- #: ../app/views/tailoring_files/_form.html.erb:20
1132
- msgid "DataStream Tailoring file"
1133
- msgstr ""
1134
-
1135
- #: ../app/views/tailoring_files/_list.html.erb:22
1136
- msgid "Delete tailoring file %s?"
1137
- msgstr ""
1138
-
1139
- #: ../app/views/tailoring_files/edit.html.erb:1
1140
- msgid "Edit Tailoring File"
1141
- msgstr ""
1142
-
1143
- #: ../app/views/tailoring_files/edit.html.erb:4 ../app/views/tailoring_files/index.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:1 ../app/views/tailoring_files/welcome.html.erb:6 ../lib/foreman_openscap/engine.rb:148
1144
- msgid "Tailoring Files"
1145
- msgstr ""
1146
-
1147
- #: ../app/views/tailoring_files/index.html.erb:2
1148
- msgid "Upload New Tailoring file"
1149
- msgstr ""
1150
-
1151
- #: ../app/views/tailoring_files/new.html.erb:1
1152
- msgid "Upload new Tailoring File"
1153
- msgstr ""
1154
-
1155
- #: ../app/views/tailoring_files/welcome.html.erb:7
1156
- msgid "It may sometimes be required to adjust the security policy to your specific needs. "
1157
- msgstr "Es könnte angebracht sein die Sicherheits-Richtlinien den eigenen Anforderungen anzupassen."
1158
-
1159
- #: ../app/views/tailoring_files/welcome.html.erb:8
1160
- msgid ""
1161
- "In Foreman, tailoring_files represent the custom modifications to default XCCDF profiles and they can be applied to hosts\n"
1162
- " via %s"
1163
- msgstr ""
1164
-
1165
- #: ../app/views/tailoring_files/welcome.html.erb:13
1166
- msgid "New Tailoring File"
1167
- msgstr ""
1168
-
1169
- #: ../db/seeds.d/openscap_policy_notification.rb:1
1170
- msgid "Compliance policy summary"
1171
- msgstr ""
1172
-
1173
- #: ../db/seeds.d/openscap_policy_notification.rb:5
1174
- msgid "A summary of reports for OpenSCAP policies"
1175
- msgstr "Eine Zusammenfassung der Berichte für OpenSCAP-Richtlinien"
1176
-
1177
- #: ../lib/foreman_openscap/engine.rb:142
1178
- msgid "SCAP contents"
1179
- msgstr "SCAP-Inhalte"
1180
-
1181
- #: ../lib/foreman_openscap/engine.rb:145
1182
- msgid "Reports"
1183
- msgstr "Berichte"
1184
-
1185
- #: ../lib/foreman_openscap/engine.rb:170
1186
- msgid "OpenSCAP Proxy to use for fetching SCAP content and uploading ARF reports. Leave blank and override appropriate parameters when using proxy load balancer."
1187
- msgstr ""
1188
-
1189
- #: ../lib/foreman_openscap/engine.rb:174 ../lib/foreman_openscap/engine.rb:179
1190
- msgid "OpenSCAP Proxy"
1191
- msgstr "OpenSCAP-Proxy"
1192
-
1193
- #: ../lib/foreman_openscap/engine.rb:176 ../lib/foreman_openscap/engine.rb:181
1194
- msgid "ID of OpenSCAP Proxy"
1195
- msgstr "Kennung des OpenSCAP-Proxys"
1196
-
1197
- #: ../lib/foreman_openscap/engine.rb:185 ../lib/foreman_openscap/engine.rb:193
1198
- msgid "Run OpenSCAP scan"
1199
- msgstr "Führe OpenSCAP Scan aus"
1200
-
1201
- #: action_names.rb:2
1202
- msgid "Import Puppet classes"
1203
- msgstr "Puppet-Klassen importieren"
1204
-
1205
- #: action_names.rb:3
1206
- msgid "Remote action:"
1207
- msgstr "Entfernte Aktion"
1208
-
1209
- #: action_names.rb:4
1210
- msgid "Action with sub plans"
1211
- msgstr "Aktion mit Unterplänen"
1212
-
1213
- #: action_names.rb:5
1214
- msgid "Import facts"
1215
- msgstr "Fakten importieren"
1216
-
1217
- #: action_names.rb:6
1218
- msgid "Delete host"
1219
- msgstr ""
1220
-
1221
- #: action_names.rb:7
1222
- msgid "Update host"
1223
- msgstr ""
1224
-
1225
- #: action_names.rb:8
1226
- msgid "Update node"
1227
- msgstr ""
1228
-
1229
- #: action_names.rb:9
1230
- msgid "Create client"
1231
- msgstr ""
1232
-
1233
- #: action_names.rb:10
1234
- msgid "Delete client"
1235
- msgstr ""
1236
-
1237
- #: action_names.rb:5
1238
- #~ msgid "Create"
1239
- #~ msgstr "Erstellen"
1240
-
1241
- #: action_names.rb:6
1242
- #~ msgid "Delete Activation Key"
1243
- #~ msgstr "Aktivierungsschlüssel löschen"
1244
-
1245
- #: action_names.rb:7
1246
- #~ msgid "Update"
1247
- #~ msgstr "Aktualisieren"
1248
-
1249
- #: action_names.rb:11
1250
- #~ msgid "Errata mail"
1251
- #~ msgstr "Errata-E-Mail"
1252
-
1253
- #: action_names.rb:13
1254
- #~ msgid "Promote"
1255
- #~ msgstr "Übertragen"
1256
-
1257
- #: action_names.rb:15
1258
- #~ msgid "Abstract async task"
1259
- #~ msgstr "Übersicht asynchrone Task"
1260
-
1261
- #: action_names.rb:16
1262
- #~ msgid "Hypervisors"
1263
- #~ msgstr "Hypervisoren"
1264
-
1265
- #: action_names.rb:17
1266
- #~ msgid "Hypervisors update"
1267
- #~ msgstr "Hypervisoren aktualisieren"
1268
-
1269
- #: action_names.rb:18
1270
- #~ msgid "Install package"
1271
- #~ msgstr "Paket installieren"
1272
-
1273
- #: action_names.rb:19
1274
- #~ msgid "Remove package"
1275
- #~ msgstr "Paket entfernen"
1276
-
1277
- #: action_names.rb:20
1278
- #~ msgid "Remove package group"
1279
- #~ msgstr "Paketgruppe entfernen"
1280
-
1281
- #: action_names.rb:21
1282
- #~ msgid "Update package"
1283
- #~ msgstr "Paket aktualisieren"
1284
-
1285
- #: action_names.rb:22
1286
- #~ msgid "Install package group"
1287
- #~ msgstr "Paketgruppe installieren"
1288
-
1289
- #: action_names.rb:23
1290
- #~ msgid "Remove subscriptions"
1291
- #~ msgstr "Subskriptionen entfernen"
1292
-
1293
- #: action_names.rb:24
1294
- #~ msgid "Update for host"
1295
- #~ msgstr "Update für Host"
1296
-
1297
- #: action_names.rb:27
1298
- #~ msgid "Package Profile Update"
1299
- #~ msgstr "Paketprofil-Update"
1300
-
1301
- #: action_names.rb:28
1302
- #~ msgid "Export"
1303
- #~ msgstr "Export"
1304
-
1305
- #: action_names.rb:29
1306
- #~ msgid "Incremental Update"
1307
- #~ msgstr "Inkrementelle Aktualisierung"
1308
-
1309
- #: action_names.rb:31
1310
- #~ msgid "Destroy"
1311
- #~ msgstr "Löschen"
1312
-
1313
- #: action_names.rb:32
1314
- #~ msgid "Publish"
1315
- #~ msgstr "Veröffentlichen"
1316
-
1317
- #: action_names.rb:33
1318
- #~ msgid "Remove Versions and Associations"
1319
- #~ msgstr "Versionen und Verknüpfungen entfernen"
1320
-
1321
- #: action_names.rb:34
1322
- #~ msgid "Remove from Environment"
1323
- #~ msgstr "Aus Umgebung entfernen"
1324
-
1325
- #: action_names.rb:35
1326
- #~ msgid "Remove Version"
1327
- #~ msgstr "Version entfernen"
1328
-
1329
- #: action_names.rb:36
1330
- #~ msgid "Auto-attach subscriptions"
1331
- #~ msgstr "Subskriptionen automatisch verknüpfen"
1332
-
1333
- #: action_names.rb:37
1334
- #~ msgid "Attach subscriptions"
1335
- #~ msgstr "Subskriptionen verknüpfen"
1336
-
1337
- #: action_names.rb:38
1338
- #~ msgid "Auto attach subscriptions"
1339
- #~ msgstr "Subskriptionen automatisch verknüpfen"
1340
-
1341
- #: action_names.rb:39
1342
- #~ msgid "Install Applicable Errata"
1343
- #~ msgstr "Relevante Errata installieren"
1344
-
1345
- #: action_names.rb:40
1346
- #~ msgid "Install erratum"
1347
- #~ msgstr "Erratum installieren"
1348
-
1349
- #: action_names.rb:41
1350
- #~ msgid "Destroy Content Host"
1351
- #~ msgstr "Inhaltshost löschen"
1352
-
1353
- #: action_names.rb:42
1354
- #~ msgid "Delete Lifecycle Environment"
1355
- #~ msgstr "Lebenszyklusumgebung löschen"
1356
-
1357
- #: action_names.rb:44
1358
- #~ msgid "Product Create"
1359
- #~ msgstr "Produkt erstellen"
1360
-
1361
- #: action_names.rb:45
1362
- #~ msgid "Delete Product"
1363
- #~ msgstr "Produkt löschen"
1364
-
1365
- #: action_names.rb:46
1366
- #~ msgid "Reindex subscriptions"
1367
- #~ msgstr "Subskriptionen neu indizieren"
1368
-
1369
- #: action_names.rb:50
1370
- #~ msgid "Discover"
1371
- #~ msgstr "Suchen"
1372
-
1373
- #: action_names.rb:52
1374
- #~ msgid "Filtered index content"
1375
- #~ msgstr "Indexinhalt gefiltert"
1376
-
1377
- #: action_names.rb:53
1378
- #~ msgid "Upload into"
1379
- #~ msgstr "Hochgeladen in"
1380
-
1381
- #: action_names.rb:54
1382
- #~ msgid "Index errata"
1383
- #~ msgstr "Errata indizieren"
1384
-
1385
- #: action_names.rb:56
1386
- #~ msgid "Index content"
1387
- #~ msgstr "Inhalt indizieren"
1388
-
1389
- #: action_names.rb:58
1390
- #~ msgid "Index package groups"
1391
- #~ msgstr "Paketgruppen indizieren"
1392
-
1393
- #: action_names.rb:59
1394
- #~ msgid "Remove Content"
1395
- #~ msgstr "Inhalt entfernen"
1396
-
1397
- #: action_names.rb:60
1398
- #~ msgid "Synchronize"
1399
- #~ msgstr "Synchronisieren"
1400
-
1401
- #: action_names.rb:63
1402
- #~ msgid "Upload errata into"
1403
- #~ msgstr "Errata hochladen in"
1404
-
1405
- #: action_names.rb:65
1406
- #~ msgid "Disable"
1407
- #~ msgstr "Deaktivieren"
1408
-
1409
- #: action_names.rb:66
1410
- #~ msgid "Enable"
1411
- #~ msgstr "Aktivieren"