hammer_cli_foreman_openscap 0.1.13 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/hammer_cli_foreman_openscap/commands.rb +9 -0
- data/lib/hammer_cli_foreman_openscap/options/normalizers.rb +6 -0
- data/lib/hammer_cli_foreman_openscap/scap_content.rb +15 -2
- data/lib/hammer_cli_foreman_openscap/version.rb +1 -1
- data/locale/Makefile +2 -61
- data/locale/cs/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/cs/hammer_cli_foreman_openscap.po +19 -1
- data/locale/de/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/de/hammer_cli_foreman_openscap.po +101 -77
- data/locale/en/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/en/hammer_cli_foreman_openscap.po +27 -9
- data/locale/es/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/es/hammer_cli_foreman_openscap.po +101 -79
- data/locale/fr/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/fr/hammer_cli_foreman_openscap.po +103 -84
- data/locale/hammer_cli_foreman_openscap.pot +46 -20
- data/locale/it/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/it/hammer_cli_foreman_openscap.po +38 -19
- data/locale/ja/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/ja/hammer_cli_foreman_openscap.po +99 -79
- data/locale/ka/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/ka/hammer_cli_foreman_openscap.po +277 -0
- data/locale/ko/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/ko/hammer_cli_foreman_openscap.po +36 -18
- data/locale/pt_BR/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/pt_BR/hammer_cli_foreman_openscap.po +281 -0
- data/locale/zh_CN/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/zh_CN/hammer_cli_foreman_openscap.po +103 -86
- data/locale/zh_TW/LC_MESSAGES/hammer_cli_foreman_openscap.mo +0 -0
- data/locale/zh_TW/hammer_cli_foreman_openscap.po +36 -19
- data/test/compliance_resource_mock.rb +0 -1
- data/test/data/2.4/foreman_api.json +1 -0
- data/test/test_helper.rb +1 -1
- metadata +20 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fea3af3aae27d7256cfd8680552a5ffa609b3444383e26962ac3833d73e53221
|
4
|
+
data.tar.gz: a8896f088e33c09c3608de05f845da0ea38bc55f5a1735bc29ac2db909fe9610
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7633b36819515914138b2a128558301a12a69473676c43c08a8784ffcbf4fd046c5f9ca3fb0b92a45f0c6805e910d645264de21d67661949c64f8468b56d1567
|
7
|
+
data.tar.gz: 0640610fbdd496b420871e04e7451dd25612c6e85572421563d9a26776f27ba9beb065c55082d5621a07b59dd29421b68900896840a34deae1296142e60f328b
|
@@ -27,6 +27,15 @@ module HammerCLIForemanOpenscap
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
+
class AssignCommand < HammerCLIForeman::Command
|
31
|
+
include HammerCLIForemanOpenscap::ResolverCommons
|
32
|
+
|
33
|
+
def print_data(data, opts = {})
|
34
|
+
self.class.success_message(data) if data.is_a? String
|
35
|
+
super data, opts
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
30
39
|
class UpdateCommand < HammerCLIForeman::UpdateCommand
|
31
40
|
include HammerCLIForemanOpenscap::ResolverCommons
|
32
41
|
end
|
@@ -28,9 +28,22 @@ module HammerCLIForemanOpenscap
|
|
28
28
|
success_message _('Scap Contents uploaded.')
|
29
29
|
failure_message _('Could not upload Scap Contents')
|
30
30
|
|
31
|
+
def execute
|
32
|
+
d = send_request
|
33
|
+
any_errors = d['errors'].any?
|
34
|
+
if d['results'].any? || any_errors
|
35
|
+
d.delete('errors') unless any_errors
|
36
|
+
print_data(d)
|
37
|
+
return HammerCLI::EX_SOFTWARE if any_errors
|
38
|
+
else
|
39
|
+
print_success_message(d)
|
40
|
+
end
|
41
|
+
HammerCLI::EX_OK
|
42
|
+
end
|
43
|
+
|
31
44
|
output do
|
32
|
-
field :errors, _('Errors'), Fields::List, :on_new_line => true, :separator => "\n"
|
33
|
-
collection :results, _('Uploaded Scap Contents') do
|
45
|
+
field :errors, _('Errors'), Fields::List, :on_new_line => true, :separator => "\n", :hide_blank => true
|
46
|
+
collection :results, _('Uploaded Scap Contents'), :hide_blank => true do
|
34
47
|
field :id, _("Id")
|
35
48
|
field :title, _("Title")
|
36
49
|
field :original_filename, _("Original Filename")
|
data/locale/Makefile
CHANGED
@@ -1,65 +1,6 @@
|
|
1
1
|
#
|
2
2
|
# Makefile for PO merging and MO generation. More info in the README.
|
3
3
|
#
|
4
|
-
# make
|
5
|
-
# make check - check translations using translate-tool
|
6
|
-
# make tx-update - download and merge translations from Transifex
|
7
|
-
# make clean - clean everything
|
4
|
+
# Run make help to list available targets
|
8
5
|
#
|
9
|
-
|
10
|
-
VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load("../hammer_cli_foreman_openscap.gemspec");puts spec.version')
|
11
|
-
POTFILE = $(DOMAIN).pot
|
12
|
-
MOFILE = $(DOMAIN).mo
|
13
|
-
POFILES = $(shell find . -name '*.po')
|
14
|
-
MOFILES = $(patsubst %.po,%.mo,$(POFILES))
|
15
|
-
POXFILES = $(patsubst %.po,%.pox,$(POFILES))
|
16
|
-
|
17
|
-
%.mo: %.po
|
18
|
-
mkdir -p $(shell dirname $@)/LC_MESSAGES
|
19
|
-
msgfmt -o $(shell dirname $@)/LC_MESSAGES/$(MOFILE) $<
|
20
|
-
|
21
|
-
# Generate MO files from PO files
|
22
|
-
all-mo: $(MOFILES)
|
23
|
-
|
24
|
-
# Check for malformed strings
|
25
|
-
%.pox: %.po
|
26
|
-
msgfmt -c $<
|
27
|
-
pofilter --nofuzzy -t variables -t blank -t urls -t emails -t long -t newlines \
|
28
|
-
-t endwhitespace -t endpunc -t puncspacing -t options -t printf -t validchars --gnome $< > $@
|
29
|
-
cat $@
|
30
|
-
! grep -q msgid $@
|
31
|
-
|
32
|
-
check: $(POXFILES)
|
33
|
-
msgfmt -c ${POTFILE}
|
34
|
-
|
35
|
-
# Merge PO files
|
36
|
-
update-po:
|
37
|
-
for f in $(shell find ./ -name "*.po") ; do \
|
38
|
-
msgmerge -N --backup=none -U $$f ${POTFILE} ; \
|
39
|
-
done
|
40
|
-
|
41
|
-
# Unify duplicate translations
|
42
|
-
uniq-po:
|
43
|
-
for f in $(shell find ./ -name "*.po") ; do \
|
44
|
-
msguniq $$f -o $$f ; \
|
45
|
-
done
|
46
|
-
|
47
|
-
tx-pull:
|
48
|
-
tx pull -f
|
49
|
-
for f in $(POFILES) ; do \
|
50
|
-
sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
|
51
|
-
done
|
52
|
-
-git commit -a -m "i18n - extracting new, pulling from tx"
|
53
|
-
|
54
|
-
extract-strings:
|
55
|
-
bundle exec rake gettext:find
|
56
|
-
|
57
|
-
reset-po:
|
58
|
-
# merging po files is unnecessary when using transifex.com
|
59
|
-
git checkout -- ../locale/*/*po
|
60
|
-
|
61
|
-
tx-update: tx-pull extract-strings reset-po $(MOFILES)
|
62
|
-
# amend mo files
|
63
|
-
git add ../locale/*/LC_MESSAGES
|
64
|
-
git commit -a --amend -m "i18n - extracting new, pulling from tx"
|
65
|
-
-echo Changes commited!
|
6
|
+
include $(shell bundle exec ruby -e 'require "hammer_cli"; puts HammerCLI::I18n.main_makefile')
|
Binary file
|
@@ -5,7 +5,7 @@
|
|
5
5
|
#
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: hammer_cli_foreman_openscap 0.
|
8
|
+
"Project-Id-Version: hammer_cli_foreman_openscap 0.2.0\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
10
|
"PO-Revision-Date: 2017-09-08 16:19-0400\n"
|
11
11
|
"Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2017\n"
|
@@ -176,6 +176,9 @@ msgstr ""
|
|
176
176
|
msgid "Title"
|
177
177
|
msgstr ""
|
178
178
|
|
179
|
+
msgid "Digest"
|
180
|
+
msgstr ""
|
181
|
+
|
179
182
|
msgid "SCAP content successfully created"
|
180
183
|
msgstr ""
|
181
184
|
|
@@ -185,6 +188,21 @@ msgstr ""
|
|
185
188
|
msgid "SCAP content file"
|
186
189
|
msgstr ""
|
187
190
|
|
191
|
+
msgid "Scap Contents uploaded."
|
192
|
+
msgstr ""
|
193
|
+
|
194
|
+
msgid "Could not upload Scap Contents"
|
195
|
+
msgstr ""
|
196
|
+
|
197
|
+
msgid "Errors"
|
198
|
+
msgstr ""
|
199
|
+
|
200
|
+
msgid "Uploaded Scap Contents"
|
201
|
+
msgstr ""
|
202
|
+
|
203
|
+
msgid "Original Filename"
|
204
|
+
msgstr ""
|
205
|
+
|
188
206
|
msgid "SCAP content deleted"
|
189
207
|
msgstr ""
|
190
208
|
|
Binary file
|
@@ -3,13 +3,25 @@
|
|
3
3
|
# This file is distributed under the same license as the hammer_cli_foreman_openscap package.
|
4
4
|
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
5
|
#
|
6
|
+
# Translators:
|
7
|
+
# Wiederoder <stefanwiederoder@googlemail.com>, 2017
|
8
|
+
# Ettore Atalan <atalanttore@googlemail.com>, 2017
|
9
|
+
# simon11 <transifex@stieger.co>, 2017
|
10
|
+
# Bryan Kearney <bryan.kearney@gmail.com>, 2017
|
11
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2017
|
12
|
+
# mbacovsky <martin.bacovsky@gmail.com>, 2020
|
13
|
+
# Crited <Alexander.Stoll@netways.de>, 2020
|
14
|
+
# pdolinic, 2023
|
15
|
+
#
|
16
|
+
#, fuzzy
|
6
17
|
msgid ""
|
7
18
|
msgstr ""
|
8
|
-
"Project-Id-Version: hammer_cli_foreman_openscap 0.
|
19
|
+
"Project-Id-Version: hammer_cli_foreman_openscap 0.2.0\n"
|
9
20
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"
|
11
|
-
"
|
12
|
-
"
|
21
|
+
"POT-Creation-Date: 2023-11-08 01:17+0000\n"
|
22
|
+
"PO-Revision-Date: 2017-12-01 20:56+0000\n"
|
23
|
+
"Last-Translator: pdolinic, 2023\n"
|
24
|
+
"Language-Team: German (https://app.transifex.com/foreman/teams/114/de/)\n"
|
13
25
|
"MIME-Version: 1.0\n"
|
14
26
|
"Content-Type: text/plain; charset=UTF-8\n"
|
15
27
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -17,22 +29,22 @@ msgstr ""
|
|
17
29
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18
30
|
|
19
31
|
msgid "Manipulate compliance reports"
|
20
|
-
msgstr ""
|
32
|
+
msgstr "Compliance-Berichte bearbeiten"
|
21
33
|
|
22
34
|
msgid "Manipulate policies"
|
23
|
-
msgstr ""
|
35
|
+
msgstr "Richtlinie bearbeiten"
|
24
36
|
|
25
37
|
msgid "Manipulate SCAP contents"
|
26
|
-
msgstr ""
|
38
|
+
msgstr "SCAP-Inhalt bearbeiten"
|
27
39
|
|
28
40
|
msgid "Manipulate Tailoring files"
|
29
|
-
msgstr ""
|
41
|
+
msgstr "Bearbeiten von Tailoring-Files"
|
30
42
|
|
31
43
|
msgid "Manipulate Scap Content Profiles"
|
32
|
-
msgstr ""
|
44
|
+
msgstr "Scap-Inhaltsprofile manipulieren"
|
33
45
|
|
34
46
|
msgid "View policies ENC for host"
|
35
|
-
msgstr ""
|
47
|
+
msgstr "Richtlinien ENC für Host anzeigen"
|
36
48
|
|
37
49
|
msgid "Id"
|
38
50
|
msgstr "ID"
|
@@ -40,12 +52,11 @@ msgstr "ID"
|
|
40
52
|
msgid "Reported at"
|
41
53
|
msgstr "Berichtet am"
|
42
54
|
|
43
|
-
#, fuzzy
|
44
55
|
msgid "Host name"
|
45
|
-
msgstr "
|
56
|
+
msgstr "Hostname"
|
46
57
|
|
47
58
|
msgid "OpenSCAP proxy name"
|
48
|
-
msgstr ""
|
59
|
+
msgstr "OpenSCAP-Proxy Name"
|
49
60
|
|
50
61
|
msgid "Policy name"
|
51
62
|
msgstr "Name der Richtlinie"
|
@@ -60,69 +71,68 @@ msgid "Othered"
|
|
60
71
|
msgstr "Anderweitiges Ergebnis"
|
61
72
|
|
62
73
|
msgid "Host Id"
|
63
|
-
msgstr ""
|
74
|
+
msgstr "Host-Kennung"
|
64
75
|
|
65
76
|
msgid "OpenSCAP proxy Id"
|
66
|
-
msgstr ""
|
77
|
+
msgstr "OpenSCAP-Proxy Kennung"
|
67
78
|
|
68
|
-
#, fuzzy
|
69
79
|
msgid "Policy Id"
|
70
|
-
msgstr "
|
80
|
+
msgstr "Richtlinien-ID"
|
71
81
|
|
72
82
|
msgid "ARF report deleted"
|
73
|
-
msgstr ""
|
83
|
+
msgstr "ARF-Bericht löschen"
|
74
84
|
|
75
85
|
msgid "Could not delete the ARF report"
|
76
|
-
msgstr ""
|
86
|
+
msgstr "ARF-Bericht konnte nicht gelöscht werden"
|
77
87
|
|
78
88
|
msgid "ARF report downloaded, saved to: "
|
79
|
-
msgstr ""
|
89
|
+
msgstr "ARF-Bericht heruntergeladen, gespeichert unter:"
|
80
90
|
|
81
91
|
msgid "Could not download the ARF report"
|
82
|
-
msgstr ""
|
92
|
+
msgstr "ARF-Bericht konnte nicht heruntergeladen werden"
|
83
93
|
|
84
94
|
msgid "ARF report in HTML downloaded, saved to: "
|
85
|
-
msgstr ""
|
95
|
+
msgstr "ARF-Bericht in HTML heruntergeladen, gespeichert unter:"
|
86
96
|
|
87
97
|
msgid "Could not download the ARF report in HTML"
|
88
|
-
msgstr ""
|
98
|
+
msgstr "ARF-Bericht in HTML konnte nicht heruntergeladen werden"
|
89
99
|
|
90
100
|
msgid "Path to directory where downloaded file will be saved"
|
91
101
|
msgstr ""
|
102
|
+
"Pfad zum Verzeichnis, in dem die heruntergeladene Datei gespeichert wird"
|
92
103
|
|
93
|
-
#, fuzzy
|
94
104
|
msgid "Profile Id"
|
95
|
-
msgstr "ID"
|
105
|
+
msgstr "Profil ID"
|
96
106
|
|
97
107
|
msgid "Content path"
|
98
|
-
msgstr ""
|
108
|
+
msgstr "Inhaltspfad"
|
99
109
|
|
100
110
|
msgid "Content download path"
|
101
|
-
msgstr ""
|
111
|
+
msgstr "Pfad zum Herunterladen von Inhalten"
|
102
112
|
|
103
113
|
msgid "Tailoring path"
|
104
|
-
msgstr ""
|
114
|
+
msgstr "Tailoring-Pfad"
|
105
115
|
|
106
116
|
msgid "Tailoring download path"
|
107
|
-
msgstr ""
|
117
|
+
msgstr "Anpassen des Downloadpfads"
|
108
118
|
|
109
119
|
msgid "Day of month"
|
110
|
-
msgstr ""
|
120
|
+
msgstr "Monatstag"
|
111
121
|
|
112
122
|
msgid "Hour"
|
113
|
-
msgstr ""
|
123
|
+
msgstr "Stunde"
|
114
124
|
|
115
125
|
msgid "Month"
|
116
|
-
msgstr ""
|
126
|
+
msgstr "Monat"
|
117
127
|
|
118
128
|
msgid "Week"
|
119
|
-
msgstr ""
|
129
|
+
msgstr "Woche"
|
120
130
|
|
121
131
|
msgid "OpenSCAP Proxy"
|
122
|
-
msgstr ""
|
132
|
+
msgstr "OpenSCAP-Proxy"
|
123
133
|
|
124
134
|
msgid "SCAP content title"
|
125
|
-
msgstr ""
|
135
|
+
msgstr "SCAP-Inhalt Titel"
|
126
136
|
|
127
137
|
msgid "Name to search by"
|
128
138
|
msgstr "Zu suchender Name"
|
@@ -134,128 +144,142 @@ msgid "Created at"
|
|
134
144
|
msgstr "Erstellt um"
|
135
145
|
|
136
146
|
msgid "Period"
|
137
|
-
msgstr ""
|
147
|
+
msgstr "Zeitraum"
|
138
148
|
|
139
149
|
msgid "Weekday"
|
140
|
-
msgstr ""
|
150
|
+
msgstr "Wochentag"
|
141
151
|
|
142
152
|
msgid "Cron line"
|
143
153
|
msgstr "Cron-Zeile"
|
144
154
|
|
145
155
|
msgid "SCAP content Id"
|
146
|
-
msgstr ""
|
156
|
+
msgstr "SCAP-Inhaltskennung"
|
147
157
|
|
148
158
|
msgid "SCAP Content profile Id"
|
149
|
-
msgstr ""
|
159
|
+
msgstr "SCAP-Inhaltsprofil-ID"
|
150
160
|
|
151
161
|
msgid "Tailoring file Id"
|
152
|
-
msgstr ""
|
162
|
+
msgstr "Tailoring-Datei-ID"
|
153
163
|
|
154
164
|
msgid "Tailoring file profile Id"
|
155
|
-
msgstr ""
|
165
|
+
msgstr "Anpassen der Tailoring-Profil-ID"
|
156
166
|
|
157
167
|
msgid "Deployment option"
|
158
|
-
msgstr ""
|
168
|
+
msgstr "Bereitstellungsoption"
|
159
169
|
|
160
170
|
msgid "Policy has been deleted"
|
161
|
-
msgstr ""
|
171
|
+
msgstr "Richtlinie wurde gelöscht"
|
162
172
|
|
163
173
|
msgid "Could not delete the policy"
|
164
|
-
msgstr ""
|
174
|
+
msgstr "Richtlinie konnte nicht gelöscht werden"
|
165
175
|
|
166
176
|
msgid "Policy created"
|
167
|
-
msgstr ""
|
177
|
+
msgstr "Richtlinie erstellt"
|
168
178
|
|
169
179
|
msgid "Could not create the policy"
|
170
|
-
msgstr ""
|
180
|
+
msgstr "Richtlinie konnte nicht erstellt werden"
|
171
181
|
|
172
182
|
msgid "Policy updated"
|
173
|
-
msgstr ""
|
183
|
+
msgstr "Richtlinie aktualisiert"
|
174
184
|
|
175
185
|
msgid "Could not update the policy"
|
176
|
-
msgstr ""
|
186
|
+
msgstr "Richtlinie konnte nicht aktualisiert werden"
|
177
187
|
|
178
188
|
msgid "Title"
|
179
189
|
msgstr "Titel"
|
180
190
|
|
191
|
+
msgid "Digest"
|
192
|
+
msgstr "Digest"
|
193
|
+
|
181
194
|
msgid "SCAP content successfully created"
|
182
|
-
msgstr ""
|
195
|
+
msgstr "SCAP-Inhalt erfolgreich erstellt"
|
183
196
|
|
184
197
|
msgid "Failed to create SCAP content"
|
185
|
-
msgstr ""
|
198
|
+
msgstr "Fehler beim Erstellen von SCAP-Inhalten"
|
186
199
|
|
187
200
|
msgid "SCAP content file"
|
201
|
+
msgstr "SCAP-Inhaltsdatei"
|
202
|
+
|
203
|
+
msgid "Scap Contents uploaded."
|
188
204
|
msgstr ""
|
189
205
|
|
190
|
-
msgid "
|
206
|
+
msgid "Could not upload Scap Contents"
|
191
207
|
msgstr ""
|
192
208
|
|
193
|
-
msgid "
|
209
|
+
msgid "Errors"
|
194
210
|
msgstr ""
|
195
211
|
|
196
|
-
msgid "
|
212
|
+
msgid "Uploaded Scap Contents"
|
197
213
|
msgstr ""
|
198
214
|
|
199
|
-
msgid "
|
215
|
+
msgid "Original Filename"
|
200
216
|
msgstr ""
|
201
217
|
|
218
|
+
msgid "SCAP content deleted"
|
219
|
+
msgstr "SCAP-Inhalt gelöscht"
|
220
|
+
|
221
|
+
msgid "Could not delete SCAP content"
|
222
|
+
msgstr "SCAP-Inhalt konnte nicht gelöscht werden"
|
223
|
+
|
224
|
+
msgid "Original filename"
|
225
|
+
msgstr "Ursprünglicher Dateiname"
|
226
|
+
|
227
|
+
msgid "SCAP content profiles"
|
228
|
+
msgstr "SCAP-Inhaltsprofile"
|
229
|
+
|
202
230
|
msgid "Profile id"
|
203
|
-
msgstr ""
|
231
|
+
msgstr "Profil-Kennung"
|
204
232
|
|
205
233
|
msgid "SCAP content updated"
|
206
|
-
msgstr ""
|
234
|
+
msgstr "SCAP-Inhalte aktualisiert"
|
207
235
|
|
208
236
|
msgid "Could not update SCAP content"
|
209
|
-
msgstr ""
|
237
|
+
msgstr "SCAP-Inhalt konnte nicht aktualisiert werden"
|
210
238
|
|
211
239
|
msgid "SCAP content file downloaded, saved to: "
|
212
|
-
msgstr ""
|
240
|
+
msgstr "SCAP-Inhaltsdatei heruntergeladen, gespeichert unter:"
|
213
241
|
|
214
242
|
msgid "Could not download the SCAP content file"
|
215
|
-
msgstr ""
|
243
|
+
msgstr "Die SCAP-Inhaltsdatei konnte nicht heruntergeladen werden"
|
216
244
|
|
217
|
-
#, fuzzy
|
218
245
|
msgid "Scap Content Id"
|
219
|
-
msgstr "ID"
|
246
|
+
msgstr "Scap-Inhalts-ID"
|
220
247
|
|
221
|
-
#, fuzzy
|
222
248
|
msgid "Scap Content Title"
|
223
|
-
msgstr "
|
249
|
+
msgstr "Inhaltstitel ausblenden"
|
224
250
|
|
225
|
-
#, fuzzy
|
226
251
|
msgid "Tailoring File Id"
|
227
|
-
msgstr "ID"
|
252
|
+
msgstr "Tailoring-Datei-ID"
|
228
253
|
|
229
|
-
#, fuzzy
|
230
254
|
msgid "Tailoring File Name"
|
231
|
-
msgstr "Name"
|
255
|
+
msgstr "Tailoring Datei Name"
|
232
256
|
|
233
257
|
msgid "Tailoring file successfully created"
|
234
|
-
msgstr ""
|
258
|
+
msgstr "Tailoring-Datei erfolgreich erstellt"
|
235
259
|
|
236
260
|
msgid "Failed to create Tailoring file"
|
237
|
-
msgstr ""
|
261
|
+
msgstr "Fehler beim Erstellen der Tailoring-Datei"
|
238
262
|
|
239
263
|
msgid "Tailoring file content"
|
240
|
-
msgstr ""
|
264
|
+
msgstr "Tailoring-Datei Inhalt"
|
241
265
|
|
242
266
|
msgid "Tailoring file deleted"
|
243
|
-
msgstr ""
|
267
|
+
msgstr "Tailoring-Datei gelöscht"
|
244
268
|
|
245
269
|
msgid "Could not delete Tailoring file"
|
246
|
-
msgstr ""
|
270
|
+
msgstr "Tailoring-Datei konnte nicht gelöscht werden"
|
247
271
|
|
248
272
|
msgid "Tailoring file profiles"
|
249
|
-
msgstr ""
|
273
|
+
msgstr "Anpassen von Tailoring-Datei Profilen"
|
250
274
|
|
251
275
|
msgid "Tailoring file updated"
|
252
|
-
msgstr ""
|
276
|
+
msgstr "Tailoring-Datei aktualisiert"
|
253
277
|
|
254
278
|
msgid "Could not update Tailoring file"
|
255
|
-
msgstr ""
|
279
|
+
msgstr "Tailoring-Datei konnte nicht aktualisiert werden"
|
256
280
|
|
257
281
|
msgid "Tailoring file downloaded, saved to: "
|
258
|
-
msgstr ""
|
282
|
+
msgstr "Tailoring-Datei heruntergeladen, gespeichert unter:"
|
259
283
|
|
260
284
|
msgid "Could not download the Tailoring file"
|
261
|
-
msgstr ""
|
285
|
+
msgstr "Die Tailoring-Datei konnte nicht heruntergeladen werden"
|
Binary file
|
@@ -1,21 +1,21 @@
|
|
1
|
-
#
|
2
|
-
# Copyright (C)
|
1
|
+
# SOME DESCRIPTIVE TITLE.
|
2
|
+
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
3
|
# This file is distributed under the same license as the hammer_cli_foreman_openscap package.
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>,
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
5
5
|
#
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: hammer_cli_foreman_openscap 0.
|
8
|
+
"Project-Id-Version: hammer_cli_foreman_openscap 0.2.0\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"
|
10
|
+
"POT-Creation-Date: 2024-01-06 00:16+0000\n"
|
11
|
+
"PO-Revision-Date: 2023-11-08 01:17+0000\n"
|
11
12
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
-
"Language-Team:
|
13
|
-
"Language:
|
13
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14
|
+
"Language: \n"
|
14
15
|
"MIME-Version: 1.0\n"
|
15
16
|
"Content-Type: text/plain; charset=UTF-8\n"
|
16
17
|
"Content-Transfer-Encoding: 8bit\n"
|
17
|
-
"Plural-Forms: nplurals=
|
18
|
-
"\n"
|
18
|
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
19
19
|
|
20
20
|
msgid "Manipulate compliance reports"
|
21
21
|
msgstr ""
|
@@ -176,6 +176,9 @@ msgstr ""
|
|
176
176
|
msgid "Title"
|
177
177
|
msgstr ""
|
178
178
|
|
179
|
+
msgid "Digest"
|
180
|
+
msgstr ""
|
181
|
+
|
179
182
|
msgid "SCAP content successfully created"
|
180
183
|
msgstr ""
|
181
184
|
|
@@ -185,6 +188,21 @@ msgstr ""
|
|
185
188
|
msgid "SCAP content file"
|
186
189
|
msgstr ""
|
187
190
|
|
191
|
+
msgid "Scap Contents uploaded."
|
192
|
+
msgstr ""
|
193
|
+
|
194
|
+
msgid "Could not upload Scap Contents"
|
195
|
+
msgstr ""
|
196
|
+
|
197
|
+
msgid "Errors"
|
198
|
+
msgstr ""
|
199
|
+
|
200
|
+
msgid "Uploaded Scap Contents"
|
201
|
+
msgstr ""
|
202
|
+
|
203
|
+
msgid "Original Filename"
|
204
|
+
msgstr ""
|
205
|
+
|
188
206
|
msgid "SCAP content deleted"
|
189
207
|
msgstr ""
|
190
208
|
|
Binary file
|