hammer_cli_katello 0.0.19 → 0.0.20

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7123a0103baa87b866772e66d76ddc247cd659c0
4
- data.tar.gz: a9a0d569eb59f55624cfb4b5e96e0dee515325d9
3
+ metadata.gz: 52e70cdfe9705efe7c645d5c95b7bd868480152a
4
+ data.tar.gz: e36b268db05c3c29a0beee9da45377a1ec0e5d5b
5
5
  SHA512:
6
- metadata.gz: 4a8266309a3aa8f130777e6fa3db6a9d445693e4b6a04f16a44b06f1068f08fcaa17041ac9ecd873060f731f99efb4d231fe90b1ce072443a999dfa7c7aa4a0a
7
- data.tar.gz: 325876dc84fd353574a2038311c60773785fc668ebc505658fb99d18d64b046a6c62b81549cb5bfc7968c4545a011cda1877bb7fc46b932d3908ef1bb11c1811
6
+ metadata.gz: ee5a6423610a125a4cb5f6342cd6ee1566fdd1079abc75eeeaa7b61bc4c06f1597687d9f737ec7da6ae7359e33666a56ee3ed3b8ed3ebcc71c2c333fe507d88f
7
+ data.tar.gz: 9308563e7d90a57bc6a34301fc6c10e230e90a480167fb7facd9c19358c9c076378e9d79067c5e93a5b69a24d8f149ee01ce9a41a89a1a6285baef40d3300cb0
@@ -117,4 +117,7 @@ module HammerCLIKatello
117
117
  'hammer_cli_katello/erratum'
118
118
  )
119
119
 
120
+ # subcommands to hammer_cli_foreman commands
121
+ require 'hammer_cli_katello/host'
122
+
120
123
  end
@@ -1,5 +1,3 @@
1
- require 'hammer_cli_katello/content_host_package'
2
- require 'hammer_cli_katello/content_host_package_group'
3
1
  require 'hammer_cli_katello/content_host_errata'
4
2
 
5
3
  module HammerCLIKatello
@@ -157,14 +155,6 @@ module HammerCLIKatello
157
155
 
158
156
  autoload_subcommands
159
157
 
160
- subcommand "package",
161
- HammerCLIKatello::ContentHostPackage.desc,
162
- HammerCLIKatello::ContentHostPackage
163
-
164
- subcommand "package-group",
165
- HammerCLIKatello::ContentHostPackageGroup.desc,
166
- HammerCLIKatello::ContentHostPackageGroup
167
-
168
158
  subcommand "errata",
169
159
  HammerCLIKatello::ContentHostErrata.desc,
170
160
  HammerCLIKatello::ContentHostErrata
@@ -151,7 +151,7 @@ module HammerCLIKatello
151
151
  params[:content_view_version_environments] = [
152
152
  {
153
153
  :environment_ids => option_environment_ids,
154
- :content_view_version_id => params['id']
154
+ :content_view_version_id => option_content_view_version_id
155
155
  }
156
156
  ]
157
157
 
@@ -35,6 +35,7 @@ module HammerCLIKatello
35
35
  field :errata_id, _("Errata ID"), Fields::Field, :hide_blank => true
36
36
  field :start_date, _("Start Date"), Fields::Field, :hide_blank => true
37
37
  field :end_date, _("End Date"), Fields::Field, :hide_blank => true
38
+ field :date_type, _("Date Type"), Fields::Field, :hide_blank => true
38
39
  field :types, _("Types"), Fields::List, :hide_blank => true
39
40
  field :created_at, _("Created"), Fields::Date
40
41
  field :updated_at, _("Updated"), Fields::Date
@@ -0,0 +1,15 @@
1
+ require 'hammer_cli_foreman/host'
2
+ require 'hammer_cli_katello/host_package'
3
+ require 'hammer_cli_katello/host_package_group'
4
+
5
+ module HammerCLIKatello
6
+
7
+ HammerCLIForeman::Host.subcommand "package",
8
+ HammerCLIKatello::HostPackage.desc,
9
+ HammerCLIKatello::HostPackage
10
+
11
+ HammerCLIForeman::Host.subcommand "package-group",
12
+ HammerCLIKatello::HostPackageGroup.desc,
13
+ HammerCLIKatello::HostPackageGroup
14
+
15
+ end
@@ -1,12 +1,22 @@
1
1
  module HammerCLIKatello
2
2
 
3
- class ContentHostPackage < HammerCLIKatello::Command
3
+ class HostPackage < HammerCLIKatello::Command
4
4
 
5
- desc "Manage packages on your content hosts"
5
+ desc "Manage packages on your hosts"
6
+
7
+ class ListCommand < HammerCLIKatello::ListCommand
8
+ resource :host_packages, :index
9
+
10
+ output do
11
+ field :nvra, _("NVRA")
12
+ end
13
+
14
+ build_options
15
+ end
6
16
 
7
17
  class InstallCommand < HammerCLIKatello::SingleResourceCommand
8
18
  include HammerCLIForemanTasks::Async
9
- resource :system_packages, :install
19
+ resource :host_packages, :install
10
20
  command_name "install"
11
21
  success_message "Packages install successfully"
12
22
  failure_message "Could not install packages"
@@ -20,7 +30,7 @@ module HammerCLIKatello
20
30
 
21
31
  class UpgradeCommand < HammerCLIKatello::SingleResourceCommand
22
32
  include HammerCLIForemanTasks::Async
23
- resource :system_packages, :upgrade
33
+ resource :host_packages, :upgrade
24
34
  command_name "upgrade"
25
35
  success_message "Packages upgraded successfully"
26
36
  failure_message "Could not upgrade packages"
@@ -30,7 +40,7 @@ module HammerCLIKatello
30
40
 
31
41
  class UpgradeAllCommand < HammerCLIKatello::SingleResourceCommand
32
42
  include HammerCLIForemanTasks::Async
33
- resource :system_packages, :upgrade_all
43
+ resource :host_packages, :upgrade_all
34
44
  command_name "upgrade-all"
35
45
  success_message "All packages upgraded successfully"
36
46
  failure_message "Could not upgrade all packages"
@@ -40,7 +50,7 @@ module HammerCLIKatello
40
50
 
41
51
  class RemoveCommand < HammerCLIKatello::SingleResourceCommand
42
52
  include HammerCLIForemanTasks::Async
43
- resource :system_packages, :remove
53
+ resource :host_packages, :remove
44
54
  command_name "remove"
45
55
  success_message "Packages removed successfully"
46
56
  failure_message "Could not remove packages"
@@ -1,12 +1,12 @@
1
1
  module HammerCLIKatello
2
2
 
3
- class ContentHostPackageGroup < HammerCLIKatello::Command
3
+ class HostPackageGroup < HammerCLIKatello::Command
4
4
 
5
- desc "Manage package-groups on your content hosts"
5
+ desc "Manage package-groups on your hosts"
6
6
 
7
7
  class InstallCommand < HammerCLIKatello::SingleResourceCommand
8
8
  include HammerCLIForemanTasks::Async
9
- resource :system_packages, :install
9
+ resource :host_packages, :install
10
10
  command_name "install"
11
11
  success_message "Package-groups installed successfully"
12
12
  failure_message "Could not install package-groups"
@@ -20,7 +20,7 @@ module HammerCLIKatello
20
20
 
21
21
  class RemoveCommand < HammerCLIKatello::SingleResourceCommand
22
22
  include HammerCLIForemanTasks::Async
23
- resource :system_packages, :remove
23
+ resource :host_packages, :remove
24
24
  command_name "remove"
25
25
  success_message "Package-groups removed successfully"
26
26
  failure_message "Could not remove package-groups"
@@ -1,5 +1,5 @@
1
1
  module HammerCLIKatello
2
2
  def self.version
3
- @version ||= Gem::Version.new('0.0.19')
3
+ @version ||= Gem::Version.new('0.0.20')
4
4
  end
5
5
  end
@@ -0,0 +1,1522 @@
1
+ # hpeters <hpeters@redhat.com>, 2015. #zanata
2
+ # jdimanos <jdimanos@redhat.com>, 2015. #zanata
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: hammer-cli-katello 0.0.7.6\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2014-08-04 13:31+0200\n"
8
+ "PO-Revision-Date: 2015-04-27 11:53+0000\n"
9
+ "Last-Translator: hpeters <hpeters@redhat.com>\n"
10
+ "Language-Team: German\n"
11
+ "Language: de\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1)\n"
16
+ "X-Generator: Zanata 3.6.0\n"
17
+
18
+ #: lib/hammer_cli_katello/host_collection.rb:10
19
+ msgid "Array of system ids to replace the content hosts in host collection"
20
+ msgstr ""
21
+
22
+ #: lib/hammer_cli_katello/host_collection.rb:26
23
+ #: lib/hammer_cli_katello/host_collection.rb:60
24
+ #: lib/hammer_cli_katello/repository_set.rb:9
25
+ #: lib/hammer_cli_katello/repository_set.rb:21
26
+ #: lib/hammer_cli_katello/repository_set.rb:29
27
+ #: lib/hammer_cli_katello/content_view.rb:25
28
+ #: lib/hammer_cli_katello/content_view.rb:36
29
+ #: lib/hammer_cli_katello/content_view.rb:42
30
+ #: lib/hammer_cli_katello/content_view.rb:51
31
+ #: lib/hammer_cli_katello/content_view.rb:56
32
+ #: lib/hammer_cli_katello/content_view.rb:62
33
+ #: lib/hammer_cli_katello/activation_key.rb:11
34
+ #: lib/hammer_cli_katello/activation_key.rb:49
35
+ #: lib/hammer_cli_katello/activation_key.rb:59
36
+ #: lib/hammer_cli_katello/activation_key.rb:100
37
+ #: lib/hammer_cli_katello/activation_key.rb:173
38
+ #: lib/hammer_cli_katello/sync_plan.rb:8
39
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:11
40
+ #: lib/hammer_cli_katello/gpg_key.rb:10 lib/hammer_cli_katello/gpg_key.rb:20
41
+ #: lib/hammer_cli_katello/gpg_key.rb:27
42
+ #: lib/hammer_cli_katello/subscription.rb:21
43
+ #: lib/hammer_cli_katello/content_host.rb:16
44
+ #: lib/hammer_cli_katello/content_host.rb:30
45
+ #: lib/hammer_cli_katello/puppet_module.rb:8
46
+ #: lib/hammer_cli_katello/puppet_module.rb:19
47
+ #: lib/hammer_cli_katello/repository.rb:24
48
+ #: lib/hammer_cli_katello/repository.rb:38
49
+ #: lib/hammer_cli_katello/repository.rb:45
50
+ #: lib/hammer_cli_katello/content_view_version.rb:10
51
+ #: lib/hammer_cli_katello/content_view_version.rb:26
52
+ #: lib/hammer_cli_katello/content_view_version.rb:37
53
+ #: lib/hammer_cli_katello/content_view_version.rb:43
54
+ #: lib/hammer_cli_katello/content_view_version.rb:49
55
+ #: lib/hammer_cli_katello/product.rb:8 lib/hammer_cli_katello/product.rb:37
56
+ #: lib/hammer_cli_katello/filter.rb:30 lib/hammer_cli_katello/filter.rb:36
57
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:21
58
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:52
59
+ #: lib/hammer_cli_katello/capsule.rb:44 lib/hammer_cli_katello/capsule.rb:60
60
+ msgid "ID"
61
+ msgstr "ID"
62
+
63
+ #: lib/hammer_cli_katello/host_collection.rb:27
64
+ #: lib/hammer_cli_katello/host_collection.rb:61
65
+ #: lib/hammer_cli_katello/repository_set.rb:11
66
+ #: lib/hammer_cli_katello/repository_set.rb:22
67
+ #: lib/hammer_cli_katello/repository_set.rb:30
68
+ #: lib/hammer_cli_katello/repository_set.rb:42
69
+ #: lib/hammer_cli_katello/filter_rule.rb:14
70
+ #: lib/hammer_cli_katello/filter_rule.rb:31
71
+ #: lib/hammer_cli_katello/content_view.rb:14
72
+ #: lib/hammer_cli_katello/content_view.rb:26
73
+ #: lib/hammer_cli_katello/content_view.rb:37
74
+ #: lib/hammer_cli_katello/content_view.rb:44
75
+ #: lib/hammer_cli_katello/content_view.rb:52
76
+ #: lib/hammer_cli_katello/content_view.rb:63
77
+ #: lib/hammer_cli_katello/activation_key.rb:12
78
+ #: lib/hammer_cli_katello/activation_key.rb:48
79
+ #: lib/hammer_cli_katello/activation_key.rb:60
80
+ #: lib/hammer_cli_katello/activation_key.rb:101
81
+ #: lib/hammer_cli_katello/activation_key.rb:174
82
+ #: lib/hammer_cli_katello/sync_plan.rb:9
83
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:13
84
+ #: lib/hammer_cli_katello/gpg_key.rb:11 lib/hammer_cli_katello/gpg_key.rb:21
85
+ #: lib/hammer_cli_katello/gpg_key.rb:28
86
+ #: lib/hammer_cli_katello/subscription.rb:14
87
+ #: lib/hammer_cli_katello/content_host.rb:17
88
+ #: lib/hammer_cli_katello/content_host.rb:29
89
+ #: lib/hammer_cli_katello/puppet_module.rb:9
90
+ #: lib/hammer_cli_katello/puppet_module.rb:20
91
+ #: lib/hammer_cli_katello/puppet_module.rb:41
92
+ #: lib/hammer_cli_katello/repository.rb:9
93
+ #: lib/hammer_cli_katello/repository.rb:25
94
+ #: lib/hammer_cli_katello/repository.rb:39
95
+ #: lib/hammer_cli_katello/repository.rb:46
96
+ #: lib/hammer_cli_katello/content_view_version.rb:11
97
+ #: lib/hammer_cli_katello/content_view_version.rb:27
98
+ #: lib/hammer_cli_katello/content_view_version.rb:38
99
+ #: lib/hammer_cli_katello/content_view_version.rb:44
100
+ #: lib/hammer_cli_katello/content_view_version.rb:50
101
+ #: lib/hammer_cli_katello/product.rb:9 lib/hammer_cli_katello/product.rb:38
102
+ #: lib/hammer_cli_katello/filter.rb:14 lib/hammer_cli_katello/filter.rb:25
103
+ #: lib/hammer_cli_katello/filter.rb:31 lib/hammer_cli_katello/filter.rb:37
104
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:22
105
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:53
106
+ #: lib/hammer_cli_katello/capsule.rb:10 lib/hammer_cli_katello/capsule.rb:45
107
+ #: lib/hammer_cli_katello/capsule.rb:61
108
+ msgid "Name"
109
+ msgstr "Name"
110
+
111
+ #: lib/hammer_cli_katello/host_collection.rb:28
112
+ msgid "Limit"
113
+ msgstr "Grenze"
114
+
115
+ #: lib/hammer_cli_katello/host_collection.rb:29
116
+ #: lib/hammer_cli_katello/organization.rb:11
117
+ #: lib/hammer_cli_katello/organization.rb:23
118
+ #: lib/hammer_cli_katello/content_view.rb:29
119
+ #: lib/hammer_cli_katello/activation_key.rb:50
120
+ #: lib/hammer_cli_katello/sync_plan.rb:20
121
+ #: lib/hammer_cli_katello/content_host.rb:31
122
+ #: lib/hammer_cli_katello/puppet_module.rb:25
123
+ #: lib/hammer_cli_katello/product.rb:10 lib/hammer_cli_katello/product.rb:40
124
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:55
125
+ msgid "Description"
126
+ msgstr "Beschreibung"
127
+
128
+ #: lib/hammer_cli_katello/host_collection.rb:39
129
+ #: lib/hammer_cli_katello/host_collection.rb:73
130
+ msgid "Host collection created"
131
+ msgstr "Hostsammlung erstellt"
132
+
133
+ #: lib/hammer_cli_katello/host_collection.rb:40
134
+ #: lib/hammer_cli_katello/host_collection.rb:74
135
+ msgid "Could not create the host collection"
136
+ msgstr "Hostsammlung konnte nicht erstellt werden"
137
+
138
+ #: lib/hammer_cli_katello/host_collection.rb:48
139
+ msgid "Total Content Hosts"
140
+ msgstr "Inhaltshosts insgesamt"
141
+
142
+ #: lib/hammer_cli_katello/host_collection.rb:49
143
+ msgid "Max Content Hosts"
144
+ msgstr "Inhaltshosts maximal"
145
+
146
+ #: lib/hammer_cli_katello/host_collection.rb:85
147
+ msgid "Host collection updated"
148
+ msgstr "Hostsammlung aktualisiert"
149
+
150
+ #: lib/hammer_cli_katello/host_collection.rb:86
151
+ msgid "Could not update the the host collection"
152
+ msgstr "Hostsammlung konnte nicht aktualisiert werden"
153
+
154
+ #: lib/hammer_cli_katello/host_collection.rb:94
155
+ msgid "Host collection deleted"
156
+ msgstr "Hostsammlung gelöscht"
157
+
158
+ #: lib/hammer_cli_katello/host_collection.rb:95
159
+ msgid "Could not delete the host collection"
160
+ msgstr "Hostsammlung konnte nicht gelöscht werden"
161
+
162
+ #: lib/hammer_cli_katello/host_collection.rb:104
163
+ msgid "The content host(s) has been added"
164
+ msgstr "Inhaltshosts wurden hinzugefügt"
165
+
166
+ #: lib/hammer_cli_katello/host_collection.rb:105
167
+ msgid "Could not add content host(s)"
168
+ msgstr "Inhaltshosts konnten nicht hinzugefügt werden"
169
+
170
+ #: lib/hammer_cli_katello/host_collection.rb:114
171
+ msgid "The content host(s) has been removed"
172
+ msgstr "Inhaltshosts wurden entfernt"
173
+
174
+ #: lib/hammer_cli_katello/host_collection.rb:115
175
+ msgid "Could not remove content host(s)"
176
+ msgstr "Inhaltshosts konnten nicht entfernt werden"
177
+
178
+ #: lib/hammer_cli_katello/host_collection.rb:124
179
+ msgid "Manipulate host collections"
180
+ msgstr "Hostsammlungen bearbeiten"
181
+
182
+ #: lib/hammer_cli_katello/organization.rb:10
183
+ #: lib/hammer_cli_katello/organization.rb:22
184
+ #: lib/hammer_cli_katello/repository_set.rb:26
185
+ #: lib/hammer_cli_katello/content_view.rb:15
186
+ #: lib/hammer_cli_katello/content_view.rb:27
187
+ #: lib/hammer_cli_katello/content_view.rb:38
188
+ #: lib/hammer_cli_katello/repository.rb:26
189
+ #: lib/hammer_cli_katello/content_view_version.rb:39
190
+ #: lib/hammer_cli_katello/content_view_version.rb:45
191
+ #: lib/hammer_cli_katello/product.rb:39 lib/hammer_cli_katello/filter.rb:32
192
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:54
193
+ msgid "Label"
194
+ msgstr "Kennung"
195
+
196
+ #: lib/hammer_cli_katello/organization.rb:24
197
+ msgid "Red Hat Repository URL"
198
+ msgstr "Red Hat Repository-URL"
199
+
200
+ #: lib/hammer_cli_katello/organization.rb:34
201
+ msgid "Organization updated"
202
+ msgstr "Organisation aktualisiert"
203
+
204
+ #: lib/hammer_cli_katello/organization.rb:35
205
+ msgid "Could not update the organization"
206
+ msgstr "Organisation konnte nicht aktualisiert werden"
207
+
208
+ #: lib/hammer_cli_katello/organization.rb:43
209
+ msgid "Organization created"
210
+ msgstr "Organisation erstellt"
211
+
212
+ #: lib/hammer_cli_katello/organization.rb:44
213
+ msgid "Could not create the organization"
214
+ msgstr "Organisation konnte nicht erstellt werden"
215
+
216
+ #: lib/hammer_cli_katello/organization.rb:54
217
+ msgid "Organization deleted"
218
+ msgstr "Organisation gelöscht"
219
+
220
+ #: lib/hammer_cli_katello/organization.rb:55
221
+ msgid "Could not delete the organization"
222
+ msgstr "Organisation konnte nicht gelöscht werden"
223
+
224
+ #: lib/hammer_cli_katello/organization.rb:65
225
+ msgid "Manipulate organizations"
226
+ msgstr "Organisationen bearbeiten"
227
+
228
+ #: lib/hammer_cli_katello/repository_set.rb:10
229
+ #: lib/hammer_cli_katello/repository_set.rb:23
230
+ #: lib/hammer_cli_katello/filter.rb:15 lib/hammer_cli_katello/filter.rb:26
231
+ msgid "Type"
232
+ msgstr "Typ"
233
+
234
+ #: lib/hammer_cli_katello/repository_set.rb:24
235
+ #: lib/hammer_cli_katello/repository.rb:14
236
+ #: lib/hammer_cli_katello/repository.rb:32
237
+ #: lib/hammer_cli_katello/product.rb:68 lib/hammer_cli_katello/capsule.rb:11
238
+ msgid "URL"
239
+ msgstr "URL"
240
+
241
+ #: lib/hammer_cli_katello/repository_set.rb:25
242
+ #: lib/hammer_cli_katello/repository.rb:43
243
+ #: lib/hammer_cli_katello/product.rb:51
244
+ msgid "GPG Key"
245
+ msgstr "GPG-Schlüssel"
246
+
247
+ #: lib/hammer_cli_katello/repository_set.rb:28
248
+ msgid "Enabled Repositories"
249
+ msgstr "Aktivierte Repositorys"
250
+
251
+ #: lib/hammer_cli_katello/repository_set.rb:44
252
+ msgid "Arch"
253
+ msgstr "Architektur"
254
+
255
+ #: lib/hammer_cli_katello/repository_set.rb:45
256
+ msgid "Release"
257
+ msgstr "Release"
258
+
259
+ #: lib/hammer_cli_katello/repository_set.rb:47
260
+ msgid "Enabled"
261
+ msgstr "Aktiviert"
262
+
263
+ #: lib/hammer_cli_katello/repository_set.rb:67
264
+ msgid "Repository enabled"
265
+ msgstr "Repository aktiviert"
266
+
267
+ #: lib/hammer_cli_katello/repository_set.rb:68
268
+ msgid "Could not enable repository"
269
+ msgstr "Repository konnte nicht aktiviert werden"
270
+
271
+ #: lib/hammer_cli_katello/repository_set.rb:77
272
+ msgid "Repository disabled"
273
+ msgstr "Repository deaktiviert"
274
+
275
+ #: lib/hammer_cli_katello/repository_set.rb:78
276
+ msgid "Could not disable repository"
277
+ msgstr "Repository konnte nicht deaktiviert werden"
278
+
279
+ #: lib/hammer_cli_katello/repository_set.rb:86
280
+ msgid "manipulate repository sets on the server"
281
+ msgstr ""
282
+
283
+ #: lib/hammer_cli_katello/filter_rule.rb:11
284
+ #: lib/hammer_cli_katello/filter_rule.rb:28
285
+ msgid "Rule ID"
286
+ msgstr "Regel-ID"
287
+
288
+ #: lib/hammer_cli_katello/filter_rule.rb:12
289
+ #: lib/hammer_cli_katello/filter_rule.rb:29
290
+ #: lib/hammer_cli_katello/filter.rb:13 lib/hammer_cli_katello/filter.rb:24
291
+ msgid "Filter ID"
292
+ msgstr "Filter-ID"
293
+
294
+ #: lib/hammer_cli_katello/filter_rule.rb:15
295
+ #: lib/hammer_cli_katello/filter_rule.rb:32
296
+ #: lib/hammer_cli_katello/content_view.rb:57
297
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:15
298
+ #: lib/hammer_cli_katello/puppet_module.rb:11
299
+ #: lib/hammer_cli_katello/puppet_module.rb:21
300
+ #: lib/hammer_cli_katello/content_view_version.rb:12
301
+ #: lib/hammer_cli_katello/content_view_version.rb:28
302
+ #: lib/hammer_cli_katello/content_view_version.rb:52
303
+ #: lib/hammer_cli_katello/filter.rb:38
304
+ msgid "Version"
305
+ msgstr "Version"
306
+
307
+ #: lib/hammer_cli_katello/filter_rule.rb:16
308
+ #: lib/hammer_cli_katello/filter_rule.rb:33
309
+ #: lib/hammer_cli_katello/filter.rb:39
310
+ msgid "Minimum Version"
311
+ msgstr "Minimumversion"
312
+
313
+ #: lib/hammer_cli_katello/filter_rule.rb:17
314
+ #: lib/hammer_cli_katello/filter_rule.rb:34
315
+ #: lib/hammer_cli_katello/filter.rb:40
316
+ msgid "Maximum Version"
317
+ msgstr "Maximalversion"
318
+
319
+ #: lib/hammer_cli_katello/filter_rule.rb:18
320
+ #: lib/hammer_cli_katello/filter_rule.rb:35
321
+ #: lib/hammer_cli_katello/filter.rb:41
322
+ msgid "Errata ID"
323
+ msgstr "Errata-ID"
324
+
325
+ #: lib/hammer_cli_katello/filter_rule.rb:19
326
+ #: lib/hammer_cli_katello/filter_rule.rb:36
327
+ #: lib/hammer_cli_katello/sync_plan.rb:10 lib/hammer_cli_katello/filter.rb:42
328
+ msgid "Start Date"
329
+ msgstr "Startdatum"
330
+
331
+ #: lib/hammer_cli_katello/filter_rule.rb:20
332
+ #: lib/hammer_cli_katello/filter_rule.rb:37
333
+ #: lib/hammer_cli_katello/subscription.rb:20
334
+ #: lib/hammer_cli_katello/filter.rb:43
335
+ msgid "End Date"
336
+ msgstr "Enddatum"
337
+
338
+ #: lib/hammer_cli_katello/filter_rule.rb:38
339
+ #: lib/hammer_cli_katello/filter.rb:44
340
+ msgid "Types"
341
+ msgstr "Typen"
342
+
343
+ #: lib/hammer_cli_katello/filter_rule.rb:39
344
+ #: lib/hammer_cli_katello/content_view.rb:46
345
+ #: lib/hammer_cli_katello/repository.rb:55 lib/hammer_cli_katello/filter.rb:45
346
+ msgid "Created"
347
+ msgstr "Erstellt"
348
+
349
+ #: lib/hammer_cli_katello/filter_rule.rb:40
350
+ #: lib/hammer_cli_katello/content_view.rb:47
351
+ #: lib/hammer_cli_katello/repository.rb:56 lib/hammer_cli_katello/filter.rb:46
352
+ msgid "Updated"
353
+ msgstr "Aktualisiert"
354
+
355
+ #: lib/hammer_cli_katello/filter_rule.rb:47
356
+ msgid "Filter rule created"
357
+ msgstr "Filterregel erstellt"
358
+
359
+ #: lib/hammer_cli_katello/filter_rule.rb:48
360
+ msgid "Could not create the filter rule"
361
+ msgstr "Filterregel konnte nicht erstellt werden"
362
+
363
+ #: lib/hammer_cli_katello/filter_rule.rb:54
364
+ msgid "Filter rule updated"
365
+ msgstr "Filterregel aktualisiert"
366
+
367
+ #: lib/hammer_cli_katello/filter_rule.rb:55
368
+ msgid "Could not update the filter rule"
369
+ msgstr "Filterregel konnte nicht aktualisiert werden"
370
+
371
+ #: lib/hammer_cli_katello/filter_rule.rb:61
372
+ msgid "Filter rule deleted"
373
+ msgstr "Filterregel gelöscht"
374
+
375
+ #: lib/hammer_cli_katello/filter_rule.rb:62
376
+ msgid "Could not delete the filter rule"
377
+ msgstr "Filterregel konnte nicht gelöscht werden"
378
+
379
+ #: lib/hammer_cli_katello/content_view.rb:13
380
+ #: lib/hammer_cli_katello/content_view_version.rb:15
381
+ #: lib/hammer_cli_katello/content_view_version.rb:31
382
+ msgid "Content View ID"
383
+ msgstr "Inhaltsansichts-ID"
384
+
385
+ #: lib/hammer_cli_katello/content_view.rb:16
386
+ #: lib/hammer_cli_katello/content_view.rb:28
387
+ msgid "Composite"
388
+ msgstr "Verbund"
389
+
390
+ #: lib/hammer_cli_katello/content_view.rb:17
391
+ msgid "Repository IDs"
392
+ msgstr "Repository-IDs"
393
+
394
+ #: lib/hammer_cli_katello/content_view.rb:32
395
+ #: lib/hammer_cli_katello/gpg_key.rb:23
396
+ #: lib/hammer_cli_katello/repository.rb:28
397
+ #: lib/hammer_cli_katello/product.rb:13 lib/hammer_cli_katello/product.rb:56
398
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:57
399
+ #: lib/hammer_cli_katello/capsule.rb:47 lib/hammer_cli_katello/capsule.rb:63
400
+ msgid "Organization"
401
+ msgstr "Organisation"
402
+
403
+ #: lib/hammer_cli_katello/content_view.rb:35
404
+ #: lib/hammer_cli_katello/puppet_module.rb:39
405
+ #: lib/hammer_cli_katello/content_view_version.rb:42
406
+ #: lib/hammer_cli_katello/product.rb:16 lib/hammer_cli_katello/filter.rb:29
407
+ msgid "Repositories"
408
+ msgstr "Repositorys"
409
+
410
+ #: lib/hammer_cli_katello/content_view.rb:41
411
+ #: lib/hammer_cli_katello/repository.rb:62
412
+ #: lib/hammer_cli_katello/content_view_version.rb:48
413
+ msgid "Puppet Modules"
414
+ msgstr "Puppet-Module"
415
+
416
+ #: lib/hammer_cli_katello/content_view.rb:43
417
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:12
418
+ msgid "UUID"
419
+ msgstr "UUID"
420
+
421
+ #: lib/hammer_cli_katello/content_view.rb:45
422
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:14
423
+ #: lib/hammer_cli_katello/puppet_module.rb:10
424
+ #: lib/hammer_cli_katello/puppet_module.rb:22
425
+ #: lib/hammer_cli_katello/content_view_version.rb:51
426
+ msgid "Author"
427
+ msgstr "Autor"
428
+
429
+ #: lib/hammer_cli_katello/content_view.rb:50
430
+ #: lib/hammer_cli_katello/content_view_version.rb:36
431
+ msgid "Environments"
432
+ msgstr "Umgebungen"
433
+
434
+ #: lib/hammer_cli_katello/content_view.rb:55
435
+ msgid "Versions"
436
+ msgstr "Versionen"
437
+
438
+ #: lib/hammer_cli_katello/content_view.rb:58
439
+ msgid "Published"
440
+ msgstr "Veröffentlicht"
441
+
442
+ #: lib/hammer_cli_katello/content_view.rb:61
443
+ msgid "Components"
444
+ msgstr "Komponenten"
445
+
446
+ #: lib/hammer_cli_katello/content_view.rb:71
447
+ msgid "Content view created"
448
+ msgstr "Inhaltsansicht erstellt"
449
+
450
+ #: lib/hammer_cli_katello/content_view.rb:72
451
+ msgid "Could not create the content view"
452
+ msgstr "Inhaltsansicht konnte nicht erstellt werden"
453
+
454
+ #: lib/hammer_cli_katello/content_view.rb:74
455
+ msgid "Create a composite content view"
456
+ msgstr "Verbundinhaltsansicht erstellen"
457
+
458
+ #: lib/hammer_cli_katello/content_view.rb:86
459
+ msgid "Content view updated"
460
+ msgstr "Inhaltsansicht aktualisiert"
461
+
462
+ #: lib/hammer_cli_katello/content_view.rb:87
463
+ msgid "Could not update the content view"
464
+ msgstr "Inhaltsansicht konnte nicht aktualisiert werden"
465
+
466
+ #: lib/hammer_cli_katello/content_view.rb:98
467
+ #: lib/hammer_cli_katello/content_view_version.rb:77
468
+ msgid "Content view is being deleted with task %{id}"
469
+ msgstr "Inhaltsansicht wird gelöscht durch Task %{id}"
470
+
471
+ #: lib/hammer_cli_katello/content_view.rb:99
472
+ #: lib/hammer_cli_katello/content_view_version.rb:78
473
+ msgid "Could not delete the content view"
474
+ msgstr "Inhaltsansicht konnte nicht gelöscht werden"
475
+
476
+ #: lib/hammer_cli_katello/content_view.rb:110
477
+ msgid "Content view is being published with task %{id}"
478
+ msgstr "Inhaltsansicht wird veröffentlicht durch Task %{id}"
479
+
480
+ #: lib/hammer_cli_katello/content_view.rb:111
481
+ msgid "Could not publish the content view"
482
+ msgstr "Inhaltsansicht konnte nicht veröffentlicht werden"
483
+
484
+ #: lib/hammer_cli_katello/content_view.rb:123
485
+ msgid "Content view is being removed from environment with task %{id}"
486
+ msgstr "Inhaltsansicht wird von Umgebung entfernt durch Task %{id}"
487
+
488
+ #: lib/hammer_cli_katello/content_view.rb:124
489
+ msgid "Could not remove the content view from environment"
490
+ msgstr "Inhaltsansicht konnte nicht aus Umgebung entfernt werden"
491
+
492
+ #: lib/hammer_cli_katello/content_view.rb:138
493
+ msgid "Comma separated list of version ids to remove"
494
+ msgstr "Kommagetrennte Liste der zu entfernenden Versions-IDs"
495
+
496
+ #: lib/hammer_cli_katello/content_view.rb:140
497
+ msgid "Comma separated list of environment ids to remove"
498
+ msgstr "Kommagetrennte Liste der zu entfernenden Umgebungs-IDs"
499
+
500
+ #: lib/hammer_cli_katello/content_view.rb:150
501
+ msgid "Content view objects are being removed task %{id}"
502
+ msgstr "Inhaltsansichtsobjekte werden entfernt durch Task %{id}"
503
+
504
+ #: lib/hammer_cli_katello/content_view.rb:151
505
+ msgid "Could not remove objects from content view"
506
+ msgstr "Objekte konnten nicht aus Inhaltsansicht entfernt werden"
507
+
508
+ #: lib/hammer_cli_katello/content_view.rb:166
509
+ msgid "The component version has been added"
510
+ msgstr "Komponentenversion wurde hinzugefügt"
511
+
512
+ #: lib/hammer_cli_katello/content_view.rb:167
513
+ msgid "Could not add version"
514
+ msgstr "Version konnte nicht hinzugefügt werden"
515
+
516
+ #: lib/hammer_cli_katello/content_view.rb:180
517
+ msgid "The component version has been removed"
518
+ msgstr "Komponentenversion wurde entfernt"
519
+
520
+ #: lib/hammer_cli_katello/content_view.rb:181
521
+ msgid "Could not remove version"
522
+ msgstr "Version konnte nicht entfernt werden"
523
+
524
+ #: lib/hammer_cli_katello/content_view.rb:202
525
+ msgid "Manipulate content views."
526
+ msgstr "Inhaltsansichten bearbeiten."
527
+
528
+ #: lib/hammer_cli_katello/activation_key.rb:13
529
+ #: lib/hammer_cli_katello/subscription.rb:19
530
+ msgid "Consumed"
531
+ msgstr "Verbraucht"
532
+
533
+ #: lib/hammer_cli_katello/activation_key.rb:15
534
+ #: lib/hammer_cli_katello/activation_key.rb:52
535
+ #: lib/hammer_cli_katello/content_host.rb:34
536
+ msgid "Lifecycle Environment"
537
+ msgstr "Lebenszyklusumgebung"
538
+
539
+ #: lib/hammer_cli_katello/activation_key.rb:18
540
+ #: lib/hammer_cli_katello/activation_key.rb:55
541
+ #: lib/hammer_cli_katello/content_host.rb:37
542
+ msgid "Content View"
543
+ msgstr "Inhaltsansicht"
544
+
545
+ #: lib/hammer_cli_katello/activation_key.rb:23
546
+ msgid "%{consumed} of %{limit}"
547
+ msgstr "%{consumed} von %{limit}"
548
+
549
+ #: lib/hammer_cli_katello/activation_key.rb:26
550
+ #: lib/hammer_cli_katello/subscription.rb:28
551
+ msgid "Unlimited"
552
+ msgstr "Unbegrenzt"
553
+
554
+ #: lib/hammer_cli_katello/activation_key.rb:58
555
+ msgid "Host Collections"
556
+ msgstr "Hostsammlungen"
557
+
558
+ #: lib/hammer_cli_katello/activation_key.rb:70
559
+ msgid "Activation key created"
560
+ msgstr "Aktivierungsschlüssel erstellt"
561
+
562
+ #: lib/hammer_cli_katello/activation_key.rb:71
563
+ msgid "Could not create the activation key"
564
+ msgstr "Aktivierungsschlüssel konnte nicht erstellt werden"
565
+
566
+ #: lib/hammer_cli_katello/activation_key.rb:79
567
+ msgid "Activation key updated"
568
+ msgstr "Aktivierungsschlüssel aktualisiert"
569
+
570
+ #: lib/hammer_cli_katello/activation_key.rb:80
571
+ msgid "Could not update the activation key"
572
+ msgstr "Aktivierungsschlüssel konnte nicht aktualisiert werden"
573
+
574
+ #: lib/hammer_cli_katello/activation_key.rb:88
575
+ msgid "Activation key deleted"
576
+ msgstr "Aktivierungsschlüssel gelöscht"
577
+
578
+ #: lib/hammer_cli_katello/activation_key.rb:89
579
+ msgid "Could not delete the activation key"
580
+ msgstr "Aktivierungsschlüssel konnte nicht gelöscht werden"
581
+
582
+ #: lib/hammer_cli_katello/activation_key.rb:96
583
+ msgid "List associated subscriptions"
584
+ msgstr "Verknüpfte Subskriptionen anzeigen"
585
+
586
+ #: lib/hammer_cli_katello/activation_key.rb:104
587
+ #: lib/hammer_cli_katello/activation_key.rb:123
588
+ #: lib/hammer_cli_katello/activation_key.rb:149
589
+ #: lib/hammer_cli_katello/activation_key.rb:177
590
+ msgid "resource ID"
591
+ msgstr ""
592
+
593
+ #: lib/hammer_cli_katello/activation_key.rb:124
594
+ #: lib/hammer_cli_katello/activation_key.rb:150
595
+ msgid "subscription ID"
596
+ msgstr ""
597
+
598
+ #: lib/hammer_cli_katello/activation_key.rb:125
599
+ msgid "subscription quantity"
600
+ msgstr ""
601
+
602
+ #: lib/hammer_cli_katello/activation_key.rb:139
603
+ msgid "Subscription added to activation key"
604
+ msgstr "Subskription zum Aktivierungsschlüssel hinzugefügt"
605
+
606
+ #: lib/hammer_cli_katello/activation_key.rb:140
607
+ msgid "Could not add subscription to activation key"
608
+ msgstr "Subskription konnte nicht zum Aktivierungsschlüssel hinzugefügt werden"
609
+
610
+ #: lib/hammer_cli_katello/activation_key.rb:146
611
+ msgid "Remove subscription"
612
+ msgstr "Subskription entfernen"
613
+
614
+ #: lib/hammer_cli_katello/activation_key.rb:162
615
+ msgid "Subscription removed from activation key"
616
+ msgstr "Subskription vom Aktivierungsschlüssel entfernt"
617
+
618
+ #: lib/hammer_cli_katello/activation_key.rb:163
619
+ msgid "Could not remove subscription from activation key"
620
+ msgstr "Subskription konnte nicht vom Aktivierungsschlüssel entfernt werden"
621
+
622
+ #: lib/hammer_cli_katello/activation_key.rb:169
623
+ msgid "List associated host collections"
624
+ msgstr "Verknüpfte Hostsammlungen anzeigen"
625
+
626
+ #: lib/hammer_cli_katello/activation_key.rb:197
627
+ msgid "Manipulate activation keys."
628
+ msgstr "Aktivierungsschlüssel bearbeiten."
629
+
630
+ #: lib/hammer_cli_katello/sync_plan.rb:11
631
+ msgid "Interval"
632
+ msgstr "Intervall"
633
+
634
+ #: lib/hammer_cli_katello/sync_plan.rb:21 lib/hammer_cli_katello/capsule.rb:23
635
+ msgid "Created at"
636
+ msgstr "Erstellt um"
637
+
638
+ #: lib/hammer_cli_katello/sync_plan.rb:22 lib/hammer_cli_katello/capsule.rb:24
639
+ msgid "Updated at"
640
+ msgstr "Aktualisiert um"
641
+
642
+ #: lib/hammer_cli_katello/sync_plan.rb:30
643
+ #: lib/hammer_cli_katello/sync_plan.rb:49
644
+ msgid "how often synchronization should run"
645
+ msgstr "Häufigkeit der Synchronisation"
646
+
647
+ #: lib/hammer_cli_katello/sync_plan.rb:37
648
+ msgid "start date and time of the synchronization defaults to now"
649
+ msgstr "Startdatum und -zeit der Synchronisation sind standardmäßig sofort"
650
+
651
+ #: lib/hammer_cli_katello/sync_plan.rb:41
652
+ msgid "Sync plan created"
653
+ msgstr "Synchronisationsplan erstellt"
654
+
655
+ #: lib/hammer_cli_katello/sync_plan.rb:42
656
+ msgid "Could not create the sync plan"
657
+ msgstr "Synchronisationsplan konnte nicht erstellt werden"
658
+
659
+ #: lib/hammer_cli_katello/sync_plan.rb:53
660
+ msgid "start date and time of the synchronization"
661
+ msgstr "Startdatum und -zeit der Synchronisation"
662
+
663
+ #: lib/hammer_cli_katello/sync_plan.rb:56
664
+ msgid "Sync plan updated"
665
+ msgstr "Synchronisationsplan aktualisiert"
666
+
667
+ #: lib/hammer_cli_katello/sync_plan.rb:57
668
+ msgid "Could not update the sync plan"
669
+ msgstr "Synchronisationsplan konnte nicht aktualisiert werden"
670
+
671
+ #: lib/hammer_cli_katello/sync_plan.rb:63
672
+ msgid "Sync plan destroyed"
673
+ msgstr "Synchronisationsplan gelöscht"
674
+
675
+ #: lib/hammer_cli_katello/sync_plan.rb:64
676
+ msgid "Could not destroy the sync plan"
677
+ msgstr "Synchronisationsplan konnte nicht gelöscht werden"
678
+
679
+ #: lib/hammer_cli_katello/sync_plan.rb:73
680
+ msgid "Manipulate sync plans"
681
+ msgstr "Synchronisationspläne bearbeiten"
682
+
683
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:22
684
+ msgid "Latest(Currently %s)"
685
+ msgstr "Letzter (derzeit %s)"
686
+
687
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:33
688
+ msgid "Puppet module added to content view"
689
+ msgstr "Puppet-Modul zur Inhaltsansicht hinzugefügt"
690
+
691
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:34
692
+ msgid "Could not add the puppet module"
693
+ msgstr "Puppet-Modul konnte nicht hinzugefügt werden"
694
+
695
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:42
696
+ msgid "Puppet module removed from content view"
697
+ msgstr "Puppet-Modul aus Inhaltsansicht entfernt"
698
+
699
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:43
700
+ msgid "Couldn't remove puppet module from the content view"
701
+ msgstr "Puppet-Modul konnte nicht aus Inhaltsansicht entfernt werden"
702
+
703
+ #: lib/hammer_cli_katello/associating_commands.rb:12
704
+ msgid "The repository has been associated"
705
+ msgstr "Repository wurde verknüpft"
706
+
707
+ #: lib/hammer_cli_katello/associating_commands.rb:13
708
+ msgid "Could not add repository"
709
+ msgstr "Repository konnte nicht hinzugefügt werden"
710
+
711
+ #: lib/hammer_cli_katello/associating_commands.rb:21
712
+ msgid "The repository has been removed"
713
+ msgstr "Repository wurde entfernt"
714
+
715
+ #: lib/hammer_cli_katello/associating_commands.rb:22
716
+ msgid "Could not remove repository"
717
+ msgstr "Repository konnte nicht entfernt werden"
718
+
719
+ #: lib/hammer_cli_katello/associating_commands.rb:34
720
+ msgid "The host collection has been associated"
721
+ msgstr "Hostsammlung wurde verknüpft"
722
+
723
+ #: lib/hammer_cli_katello/associating_commands.rb:35
724
+ msgid "Could not add host collection"
725
+ msgstr "Hostsammlung konnte nicht hinzugefügt werden"
726
+
727
+ #: lib/hammer_cli_katello/associating_commands.rb:42
728
+ msgid "The host collection has been removed"
729
+ msgstr "Hostsammlung wurde entfernt"
730
+
731
+ #: lib/hammer_cli_katello/associating_commands.rb:43
732
+ msgid "Could not remove host collection"
733
+ msgstr "Hostsammlung konnte nicht entfernt werden"
734
+
735
+ #: lib/hammer_cli_katello/associating_commands.rb:55
736
+ msgid "The content host has been added"
737
+ msgstr "Inhaltshost wurde hinzugefügt"
738
+
739
+ #: lib/hammer_cli_katello/associating_commands.rb:56
740
+ msgid "Could not add content host"
741
+ msgstr "Inhaltshost konnte nicht hinzugefügt werden"
742
+
743
+ #: lib/hammer_cli_katello/associating_commands.rb:63
744
+ msgid "The content host has been removed"
745
+ msgstr "Inhaltshost wurde entfernt"
746
+
747
+ #: lib/hammer_cli_katello/associating_commands.rb:64
748
+ msgid "Could not remove content host"
749
+ msgstr "Inhaltshost konnte nicht entfernt werden"
750
+
751
+ #: lib/hammer_cli_katello/gpg_key.rb:29
752
+ #: lib/hammer_cli_katello/repository.rb:13
753
+ #: lib/hammer_cli_katello/repository.rb:31
754
+ msgid "Content Type"
755
+ msgstr "Inhaltstyp"
756
+
757
+ #: lib/hammer_cli_katello/gpg_key.rb:31
758
+ #: lib/hammer_cli_katello/subscription.rb:22
759
+ #: lib/hammer_cli_katello/repository.rb:11
760
+ #: lib/hammer_cli_katello/repository.rb:36
761
+ msgid "Product"
762
+ msgstr "Produkt"
763
+
764
+ #: lib/hammer_cli_katello/gpg_key.rb:35 lib/hammer_cli_katello/product.rb:65
765
+ msgid "Content"
766
+ msgstr "Inhalt"
767
+
768
+ #: lib/hammer_cli_katello/gpg_key.rb:42
769
+ msgid "GPG Key created"
770
+ msgstr "GPG-Schlüssel erstellt"
771
+
772
+ #: lib/hammer_cli_katello/gpg_key.rb:43
773
+ msgid "Could not create GPG Key"
774
+ msgstr "GPG-Schlüssel konnte nicht erstellt werden"
775
+
776
+ #: lib/hammer_cli_katello/gpg_key.rb:46 lib/hammer_cli_katello/gpg_key.rb:57
777
+ msgid "GPG Key file"
778
+ msgstr "GPG-Schlüsseldatei"
779
+
780
+ #: lib/hammer_cli_katello/gpg_key.rb:53
781
+ msgid "GPG Key updated"
782
+ msgstr "GPG-Schlüssel aktualisiert"
783
+
784
+ #: lib/hammer_cli_katello/gpg_key.rb:54
785
+ msgid "Could not update GPG Key"
786
+ msgstr "GPG-Schlüssel konnte nicht aktualisiert werden"
787
+
788
+ #: lib/hammer_cli_katello/gpg_key.rb:63
789
+ msgid "GPG Key deleted"
790
+ msgstr "GPG-Schlüssel gelöscht"
791
+
792
+ #: lib/hammer_cli_katello/gpg_key.rb:64
793
+ msgid "Could not delete the GPG Key"
794
+ msgstr "GPG-Schlüssel konnte nicht gelöscht werden"
795
+
796
+ #: lib/hammer_cli_katello/gpg_key.rb:73
797
+ msgid "manipulate GPG Key actions on the server"
798
+ msgstr ""
799
+
800
+ #: lib/hammer_cli_katello/subscription.rb:15
801
+ msgid "Contract"
802
+ msgstr "Vertrag"
803
+
804
+ #: lib/hammer_cli_katello/subscription.rb:16
805
+ msgid "Account"
806
+ msgstr "Account"
807
+
808
+ #: lib/hammer_cli_katello/subscription.rb:17
809
+ msgid "Support"
810
+ msgstr "Support"
811
+
812
+ #: lib/hammer_cli_katello/subscription.rb:18
813
+ #: lib/hammer_cli_katello/subscription.rb:23
814
+ msgid "Quantity"
815
+ msgstr "Anzahl"
816
+
817
+ #: lib/hammer_cli_katello/subscription.rb:24
818
+ msgid "Attached"
819
+ msgstr "Verknüpft"
820
+
821
+ #: lib/hammer_cli_katello/subscription.rb:51
822
+ msgid "Manifest is being uploaded in task %{id}"
823
+ msgstr "Manifest wird hochgeladen durch Task %{id}"
824
+
825
+ #: lib/hammer_cli_katello/subscription.rb:52
826
+ msgid "Manifest upload failed"
827
+ msgstr "Hochladen von Manifest fehlgeschlagen"
828
+
829
+ #: lib/hammer_cli_katello/subscription.rb:55
830
+ msgid "Subscription manifest file"
831
+ msgstr "Subskriptions-Manifestdatei"
832
+
833
+ #: lib/hammer_cli_katello/subscription.rb:66
834
+ msgid "Manifest is being deleted in task %{id}"
835
+ msgstr "Manifest wird gelöscht durch Task %{id}"
836
+
837
+ #: lib/hammer_cli_katello/subscription.rb:67
838
+ msgid "Manifest deletion failed"
839
+ msgstr "Löschen von Manifest fehlgeschlagen"
840
+
841
+ #: lib/hammer_cli_katello/subscription.rb:80
842
+ msgid "Manifest is being refreshed in task %{id}"
843
+ msgstr "Manifest wird aktualisiert durch Task %{id}"
844
+
845
+ #: lib/hammer_cli_katello/subscription.rb:81
846
+ msgid "Manifest refresh failed"
847
+ msgstr "Aktualisieren von Manifest fehlgeschlagen"
848
+
849
+ #: lib/hammer_cli_katello/subscription.rb:91
850
+ #: lib/hammer_cli_katello/repository.rb:51 lib/hammer_cli_katello/ping.rb:12
851
+ #: lib/hammer_cli_katello/ping.rb:19 lib/hammer_cli_katello/ping.rb:26
852
+ #: lib/hammer_cli_katello/ping.rb:33 lib/hammer_cli_katello/ping.rb:40
853
+ #: lib/hammer_cli_katello/ping.rb:47
854
+ msgid "Status"
855
+ msgstr "Status"
856
+
857
+ #: lib/hammer_cli_katello/subscription.rb:92
858
+ msgid "Status Message"
859
+ msgstr "Statusmeldung"
860
+
861
+ #: lib/hammer_cli_katello/subscription.rb:93
862
+ msgid "Time"
863
+ msgstr "Zeit"
864
+
865
+ #: lib/hammer_cli_katello/subscription.rb:103
866
+ msgid "Manipulate subscriptions."
867
+ msgstr "Subskriptionen bearbeiten."
868
+
869
+ #: lib/hammer_cli_katello/output/formatters.rb:11
870
+ msgid "%s %s"
871
+ msgstr "%s %s"
872
+
873
+ #: lib/hammer_cli_katello/content_host.rb:7
874
+ msgid "ID of the content host"
875
+ msgstr "ID des Inhaltshosts"
876
+
877
+ #: lib/hammer_cli_katello/content_host.rb:32
878
+ msgid "Location"
879
+ msgstr "Standort"
880
+
881
+ #: lib/hammer_cli_katello/content_host.rb:39
882
+ msgid "Entitlement Status"
883
+ msgstr "Berechtigungsstatus"
884
+
885
+ #: lib/hammer_cli_katello/content_host.rb:40
886
+ msgid "Release Version"
887
+ msgstr "Release-Version"
888
+
889
+ #: lib/hammer_cli_katello/content_host.rb:41
890
+ msgid "Autoheal"
891
+ msgstr "Automatische Neusubskription"
892
+
893
+ #: lib/hammer_cli_katello/content_host.rb:53
894
+ msgid "Content host created"
895
+ msgstr "Inhaltshost erstellt"
896
+
897
+ #: lib/hammer_cli_katello/content_host.rb:54
898
+ msgid "Could not create content host"
899
+ msgstr "Inhaltshost konnte nicht erstellt werden"
900
+
901
+ #: lib/hammer_cli_katello/content_host.rb:77
902
+ msgid "Content host updated"
903
+ msgstr "Inhaltshost aktualisiert"
904
+
905
+ #: lib/hammer_cli_katello/content_host.rb:78
906
+ msgid "Could not update content host"
907
+ msgstr "Inhaltshost konnte nicht aktualisiert werden"
908
+
909
+ #: lib/hammer_cli_katello/content_host.rb:88
910
+ msgid "Content host deleted"
911
+ msgstr "Inhaltshost gelöscht"
912
+
913
+ #: lib/hammer_cli_katello/content_host.rb:89
914
+ msgid "Could not delete content host"
915
+ msgstr "Inhaltshost konnte nicht gelöscht werden"
916
+
917
+ #: lib/hammer_cli_katello/content_host.rb:107
918
+ msgid "manipulate content hosts on the server"
919
+ msgstr ""
920
+
921
+ #: lib/hammer_cli_katello/puppet_module.rb:24
922
+ msgid "Summary"
923
+ msgstr "Zusammenfassung"
924
+
925
+ #: lib/hammer_cli_katello/puppet_module.rb:26
926
+ msgid "License"
927
+ msgstr "Lizenz"
928
+
929
+ #: lib/hammer_cli_katello/puppet_module.rb:27
930
+ msgid "Project Page"
931
+ msgstr "Projektseite"
932
+
933
+ #: lib/hammer_cli_katello/puppet_module.rb:28
934
+ msgid "Source"
935
+ msgstr "Quelle"
936
+
937
+ #: lib/hammer_cli_katello/puppet_module.rb:30
938
+ msgid "Dependencies"
939
+ msgstr "Abhängigkeiten"
940
+
941
+ #: lib/hammer_cli_katello/puppet_module.rb:33
942
+ msgid "File checksums"
943
+ msgstr "Dateiprüfsummen"
944
+
945
+ #: lib/hammer_cli_katello/puppet_module.rb:37
946
+ msgid "Tag List"
947
+ msgstr "Tag-Liste"
948
+
949
+ #: lib/hammer_cli_katello/puppet_module.rb:40
950
+ #: lib/hammer_cli_katello/repository.rb:8 lib/hammer_cli_katello/capsule.rb:9
951
+ msgid "Id"
952
+ msgstr "ID"
953
+
954
+ #: lib/hammer_cli_katello/repository.rb:30
955
+ msgid "Red Hat Repository"
956
+ msgstr "Red Hat Repository"
957
+
958
+ #: lib/hammer_cli_katello/repository.rb:33
959
+ #: lib/hammer_cli_katello/repository.rb:131
960
+ #: lib/hammer_cli_katello/repository.rb:147
961
+ msgid "Publish Via HTTP"
962
+ msgstr "Über HTTP veröffentlichen"
963
+
964
+ #: lib/hammer_cli_katello/repository.rb:34
965
+ msgid "Published At"
966
+ msgstr "Veröffentlicht unter"
967
+
968
+ #: lib/hammer_cli_katello/repository.rb:50
969
+ msgid "Sync"
970
+ msgstr "Synchronisation"
971
+
972
+ #: lib/hammer_cli_katello/repository.rb:52
973
+ msgid "Last Sync Date"
974
+ msgstr "Letzte Synchronisation"
975
+
976
+ #: lib/hammer_cli_katello/repository.rb:58
977
+ msgid "Content Counts"
978
+ msgstr "Anzahl der Inhalte"
979
+
980
+ #: lib/hammer_cli_katello/repository.rb:59
981
+ msgid "Packages"
982
+ msgstr "Pakete"
983
+
984
+ #: lib/hammer_cli_katello/repository.rb:60
985
+ msgid "Package Groups"
986
+ msgstr "Paketgruppen"
987
+
988
+ #: lib/hammer_cli_katello/repository.rb:61
989
+ msgid "Errata"
990
+ msgstr "Errata"
991
+
992
+ #: lib/hammer_cli_katello/repository.rb:68
993
+ #: lib/hammer_cli_katello/repository.rb:69
994
+ msgid "yes"
995
+ msgstr "ja"
996
+
997
+ #: lib/hammer_cli_katello/repository.rb:68
998
+ #: lib/hammer_cli_katello/repository.rb:69
999
+ msgid "no"
1000
+ msgstr "nein"
1001
+
1002
+ #: lib/hammer_cli_katello/repository.rb:91
1003
+ msgid "Failed"
1004
+ msgstr "Fehlgeschlagen"
1005
+
1006
+ #: lib/hammer_cli_katello/repository.rb:92
1007
+ msgid "Success"
1008
+ msgstr "Erfolgreich"
1009
+
1010
+ #: lib/hammer_cli_katello/repository.rb:93
1011
+ msgid "Finished"
1012
+ msgstr "Abgeschlossen"
1013
+
1014
+ #: lib/hammer_cli_katello/repository.rb:94
1015
+ msgid "Error"
1016
+ msgstr "Fehler"
1017
+
1018
+ #: lib/hammer_cli_katello/repository.rb:95
1019
+ msgid "Running"
1020
+ msgstr "Läuft"
1021
+
1022
+ #: lib/hammer_cli_katello/repository.rb:96
1023
+ msgid "Waiting"
1024
+ msgstr "Wartet"
1025
+
1026
+ #: lib/hammer_cli_katello/repository.rb:97
1027
+ msgid "Canceled"
1028
+ msgstr "Abgebrochen"
1029
+
1030
+ #: lib/hammer_cli_katello/repository.rb:98
1031
+ msgid "Not Synced"
1032
+ msgstr "Nicht synchronisiert"
1033
+
1034
+ #: lib/hammer_cli_katello/repository.rb:119
1035
+ msgid "Repository is being synchronized in task %{id}"
1036
+ msgstr "Repository wird synchronisiert durch Task %{id}"
1037
+
1038
+ #: lib/hammer_cli_katello/repository.rb:120
1039
+ msgid "Could not synchronize the repository"
1040
+ msgstr "Repository konnte nicht synchronisiert werden"
1041
+
1042
+ #: lib/hammer_cli_katello/repository.rb:128
1043
+ msgid "Repository created"
1044
+ msgstr "Repository erstellt"
1045
+
1046
+ #: lib/hammer_cli_katello/repository.rb:129
1047
+ msgid "Could not create the repository"
1048
+ msgstr "Repository konnte nicht erstellt werden"
1049
+
1050
+ #: lib/hammer_cli_katello/repository.rb:141
1051
+ msgid "Repository updated"
1052
+ msgstr "Repository aktualisiert"
1053
+
1054
+ #: lib/hammer_cli_katello/repository.rb:142
1055
+ msgid "Could not update the repository"
1056
+ msgstr "Repository konnte nicht aktualisiert werden"
1057
+
1058
+ #: lib/hammer_cli_katello/repository.rb:155
1059
+ msgid "Repository deleted"
1060
+ msgstr "Repository gelöscht"
1061
+
1062
+ #: lib/hammer_cli_katello/repository.rb:156
1063
+ msgid "Could not delete the Repository"
1064
+ msgstr "Repository konnte nicht gelöscht werden"
1065
+
1066
+ #: lib/hammer_cli_katello/repository.rb:197
1067
+ msgid "Repository content uploaded"
1068
+ msgstr "Repository-Inhalte hochgeladen"
1069
+
1070
+ #: lib/hammer_cli_katello/repository.rb:198
1071
+ msgid "Could not upload the content"
1072
+ msgstr "Inhalte konnten nicht hochgeladen werden"
1073
+
1074
+ #: lib/hammer_cli_katello/repository.rb:203
1075
+ msgid "Upload file or directory of files as content for a repository"
1076
+ msgstr ""
1077
+ "Dateien oder Verzeichnis mit Dateien als Inhalte für ein Repository hochladen"
1078
+
1079
+ #: lib/hammer_cli_katello/repository.rb:227
1080
+ msgid "Successfully uploaded file '%s'."
1081
+ msgstr "Datei \"%s\" erfolgreich hochgeladen."
1082
+
1083
+ #: lib/hammer_cli_katello/repository.rb:230
1084
+ msgid ""
1085
+ "Failed to upload file '%s' to repository. Please check the file and try "
1086
+ "again."
1087
+ msgstr ""
1088
+ "Hochladen der Datei \"%s\" zum Repository ist fehlgeschlagen. Bitte prüfen "
1089
+ "Sie die Datei und versuchen Sie es erneut."
1090
+
1091
+ #: lib/hammer_cli_katello/repository.rb:254
1092
+ msgid "Manipulate repositories"
1093
+ msgstr "Repositorys bearbeiten"
1094
+
1095
+ #: lib/hammer_cli_katello/content_view_version.rb:16
1096
+ #: lib/hammer_cli_katello/content_view_version.rb:32
1097
+ msgid "Content View Name"
1098
+ msgstr "Inhaltsansichtsname"
1099
+
1100
+ #: lib/hammer_cli_katello/content_view_version.rb:17
1101
+ #: lib/hammer_cli_katello/content_view_version.rb:33
1102
+ msgid "Content View Label"
1103
+ msgstr "Inhaltsansichtskennung"
1104
+
1105
+ #: lib/hammer_cli_katello/content_view_version.rb:65
1106
+ msgid "Content view is being promoted with task %{id}"
1107
+ msgstr "Inhaltsansicht wird übertragen durch Task %{id}"
1108
+
1109
+ #: lib/hammer_cli_katello/content_view_version.rb:66
1110
+ msgid "Could not promote the content view"
1111
+ msgstr "Inhaltsansicht konnte nicht übertragen werden"
1112
+
1113
+ #: lib/hammer_cli_katello/product.rb:19 lib/hammer_cli_katello/product.rb:43
1114
+ msgid "Sync State"
1115
+ msgstr "Synchronisationsstatus"
1116
+
1117
+ #: lib/hammer_cli_katello/product.rb:28
1118
+ msgid "Product created"
1119
+ msgstr "Produkt erstellt"
1120
+
1121
+ #: lib/hammer_cli_katello/product.rb:29
1122
+ msgid "Could not create the product"
1123
+ msgstr "Produkt konnte nicht erstellt werden"
1124
+
1125
+ #: lib/hammer_cli_katello/product.rb:46
1126
+ msgid "Sync Plan ID"
1127
+ msgstr "Synchronisationsplan-ID"
1128
+
1129
+ #: lib/hammer_cli_katello/product.rb:48
1130
+ msgid "GPG"
1131
+ msgstr "GPG"
1132
+
1133
+ #: lib/hammer_cli_katello/product.rb:50
1134
+ msgid "GPG Key ID"
1135
+ msgstr "GPG-Schlüssel-ID"
1136
+
1137
+ #: lib/hammer_cli_katello/product.rb:59
1138
+ msgid "Readonly"
1139
+ msgstr "Schreibgeschützt"
1140
+
1141
+ #: lib/hammer_cli_katello/product.rb:62
1142
+ msgid "Deletable"
1143
+ msgstr "Löschbar"
1144
+
1145
+ #: lib/hammer_cli_katello/product.rb:67
1146
+ msgid "Repo Name"
1147
+ msgstr "Repository-Name"
1148
+
1149
+ #: lib/hammer_cli_katello/product.rb:77
1150
+ msgid "Product updated"
1151
+ msgstr "Produkt aktualisiert"
1152
+
1153
+ #: lib/hammer_cli_katello/product.rb:78
1154
+ msgid "Could not update the product"
1155
+ msgstr "Produkt konnte nicht aktualisiert werden"
1156
+
1157
+ #: lib/hammer_cli_katello/product.rb:84
1158
+ msgid "Product destroyed"
1159
+ msgstr "Produkt gelöscht"
1160
+
1161
+ #: lib/hammer_cli_katello/product.rb:85
1162
+ msgid "Could not destroy the product"
1163
+ msgstr "Produkt konnte nicht gelöscht werden"
1164
+
1165
+ #: lib/hammer_cli_katello/product.rb:91
1166
+ msgid "Assign sync plan to product."
1167
+ msgstr "Synchronisationsplan zu Produkt zuweisen."
1168
+
1169
+ #: lib/hammer_cli_katello/product.rb:94
1170
+ msgid "Synchronization plan assigned."
1171
+ msgstr "Synchronisationsplan zugewiesen."
1172
+
1173
+ #: lib/hammer_cli_katello/product.rb:95
1174
+ msgid "Could not assign synchronization plan."
1175
+ msgstr "Synchronisationsplan konnte nicht zugewiesen werden."
1176
+
1177
+ #: lib/hammer_cli_katello/product.rb:101 lib/hammer_cli_katello/product.rb:116
1178
+ msgid "plan numeric identifier"
1179
+ msgstr ""
1180
+
1181
+ #: lib/hammer_cli_katello/product.rb:106
1182
+ msgid "Delete assignment sync plan and product."
1183
+ msgstr "Zuweisung von Synchronisationsplan und Produkt löschen."
1184
+
1185
+ #: lib/hammer_cli_katello/product.rb:109
1186
+ msgid "Synchronization plan removed."
1187
+ msgstr "Synchronisationsplan entfernt."
1188
+
1189
+ #: lib/hammer_cli_katello/product.rb:110
1190
+ msgid "Could not remove synchronization plan."
1191
+ msgstr "Synchronisationsplan konnte nicht entfernt werden."
1192
+
1193
+ #: lib/hammer_cli_katello/product.rb:124
1194
+ msgid "Manipulate products."
1195
+ msgstr "Produkte bearbeiten."
1196
+
1197
+ #: lib/hammer_cli_katello/ping.rb:13 lib/hammer_cli_katello/ping.rb:20
1198
+ #: lib/hammer_cli_katello/ping.rb:27 lib/hammer_cli_katello/ping.rb:34
1199
+ #: lib/hammer_cli_katello/ping.rb:41 lib/hammer_cli_katello/ping.rb:48
1200
+ msgid "Server Response"
1201
+ msgstr "Serverantwort"
1202
+
1203
+ #: lib/hammer_cli_katello/ping.rb:58
1204
+ msgid "FAIL"
1205
+ msgstr "FEHLER"
1206
+
1207
+ #: lib/hammer_cli_katello/ping.rb:73
1208
+ msgid "Duration: %sms"
1209
+ msgstr "Dauer: %s ms"
1210
+
1211
+ #: lib/hammer_cli_katello/ping.rb:75
1212
+ msgid "Message: %s"
1213
+ msgstr "Meldung: %s"
1214
+
1215
+ #: lib/hammer_cli_katello/ping.rb:81
1216
+ msgid "get the status of the server"
1217
+ msgstr ""
1218
+
1219
+ #: lib/hammer_cli_katello/id_resolver.rb:6
1220
+ msgid "Activation key name to search by"
1221
+ msgstr "Name des zu suchenden Aktivierungsschlüssels"
1222
+
1223
+ #: lib/hammer_cli_katello/id_resolver.rb:7
1224
+ msgid "Capsule name to search by"
1225
+ msgstr "Name der zu suchenden Capsule"
1226
+
1227
+ #: lib/hammer_cli_katello/id_resolver.rb:8
1228
+ msgid "Content host name to search by"
1229
+ msgstr "Name des zu suchenden Inhaltshosts"
1230
+
1231
+ #: lib/hammer_cli_katello/id_resolver.rb:9
1232
+ msgid "Content view name to search by"
1233
+ msgstr "Name der zu suchenden Inhaltsansicht"
1234
+
1235
+ #: lib/hammer_cli_katello/id_resolver.rb:10
1236
+ msgid "Gpg key name to search by"
1237
+ msgstr "Name des zu suchenden GPG-Schlüssels"
1238
+
1239
+ #: lib/hammer_cli_katello/id_resolver.rb:11
1240
+ msgid "Host collection name to search by"
1241
+ msgstr "Name der zu suchenden Hostsammlung"
1242
+
1243
+ #: lib/hammer_cli_katello/id_resolver.rb:12
1244
+ msgid "Lifecycle environment name to search by"
1245
+ msgstr "Name der zu suchenden Lebenszyklusumgebung"
1246
+
1247
+ #: lib/hammer_cli_katello/id_resolver.rb:13
1248
+ msgid "Organization name to search by"
1249
+ msgstr "Name der zu suchenden Organisation"
1250
+
1251
+ #: lib/hammer_cli_katello/id_resolver.rb:14
1252
+ msgid "Organization label to search by"
1253
+ msgstr "Kennung der zu suchenden Organisation"
1254
+
1255
+ #: lib/hammer_cli_katello/id_resolver.rb:17
1256
+ msgid "Product name to search by"
1257
+ msgstr "Name des zu suchenden Produkts"
1258
+
1259
+ #: lib/hammer_cli_katello/id_resolver.rb:18
1260
+ msgid "Repository name to search by"
1261
+ msgstr "Name des zu suchenden Repositorys"
1262
+
1263
+ #: lib/hammer_cli_katello/id_resolver.rb:19
1264
+ msgid "Repository set name to search by"
1265
+ msgstr "Name der zu suchenden Repository-Gruppe"
1266
+
1267
+ #: lib/hammer_cli_katello/id_resolver.rb:20
1268
+ msgid "Subscription name to search by"
1269
+ msgstr "Name der zu suchenden Subskription"
1270
+
1271
+ #: lib/hammer_cli_katello/id_resolver.rb:21
1272
+ msgid "Sync plan name to search by"
1273
+ msgstr "Name des zu suchenden Synchronisationsplans"
1274
+
1275
+ #: lib/hammer_cli_katello/id_resolver.rb:22
1276
+ msgid "Task name to search by"
1277
+ msgstr "Name der zu suchenden Task"
1278
+
1279
+ #: lib/hammer_cli_katello/id_resolver.rb:23
1280
+ msgid "User name to search by"
1281
+ msgstr "Name des zu suchenden Benutzers"
1282
+
1283
+ #: lib/hammer_cli_katello/id_resolver.rb:25
1284
+ msgid "Puppet module name to search by"
1285
+ msgstr "Name des zu suchenden Puppet-Moduls"
1286
+
1287
+ #: lib/hammer_cli_katello/id_resolver.rb:26
1288
+ msgid "Puppet module's author to search by"
1289
+ msgstr "Name des zu suchenden Puppet-Modulautors"
1290
+
1291
+ #: lib/hammer_cli_katello/id_resolver.rb:27
1292
+ msgid "Puppet module's UUID to search by"
1293
+ msgstr "Name der zu suchenden Puppet-Modul-UUID"
1294
+
1295
+ #: lib/hammer_cli_katello/id_resolver.rb:31
1296
+ msgid "Name to search by"
1297
+ msgstr "Zu suchender Name"
1298
+
1299
+ #: lib/hammer_cli_katello/filter.rb:16 lib/hammer_cli_katello/filter.rb:27
1300
+ msgid "Inclusion"
1301
+ msgstr "Einbeziehung"
1302
+
1303
+ #: lib/hammer_cli_katello/filter.rb:35
1304
+ msgid "Rules"
1305
+ msgstr "Regeln"
1306
+
1307
+ #: lib/hammer_cli_katello/filter.rb:54
1308
+ msgid "Filter created"
1309
+ msgstr "Filter erstellt"
1310
+
1311
+ #: lib/hammer_cli_katello/filter.rb:55
1312
+ msgid "Could not create the filter"
1313
+ msgstr "Filter konnte nicht erstellt werden"
1314
+
1315
+ #: lib/hammer_cli_katello/filter.rb:61
1316
+ msgid "Filter updated"
1317
+ msgstr "Filter aktualisiert"
1318
+
1319
+ #: lib/hammer_cli_katello/filter.rb:62
1320
+ msgid "Could not update the filter"
1321
+ msgstr "Filter konnte nicht aktualisiert werden"
1322
+
1323
+ #: lib/hammer_cli_katello/filter.rb:68
1324
+ msgid "Filter deleted"
1325
+ msgstr "Filter gelöscht"
1326
+
1327
+ #: lib/hammer_cli_katello/filter.rb:69
1328
+ msgid "Could not delete the filter"
1329
+ msgstr "Filter konnte nicht gelöscht werden"
1330
+
1331
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:24
1332
+ msgid "Prior"
1333
+ msgstr "Vorherige"
1334
+
1335
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:36
1336
+ msgid "Lifecycle Path"
1337
+ msgstr "Lebenszykluspfad"
1338
+
1339
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:59
1340
+ msgid "Library"
1341
+ msgstr "Library"
1342
+
1343
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:61
1344
+ msgid "Prior Lifecycle Environment"
1345
+ msgstr "Vorherige Lebenszyklusumgebung"
1346
+
1347
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:71
1348
+ msgid "Environment created"
1349
+ msgstr "Umgebung erstellt"
1350
+
1351
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:72
1352
+ msgid "Could not create environment"
1353
+ msgstr "Umgebung konnte nicht erstellt werden"
1354
+
1355
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:80
1356
+ msgid "Environment updated"
1357
+ msgstr "Umgebung aktualisiert"
1358
+
1359
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:81
1360
+ msgid "Could not update environment"
1361
+ msgstr "Umgebung konnte nicht aktualisiert werden"
1362
+
1363
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:87
1364
+ msgid "Environment deleted"
1365
+ msgstr "Umgebung gelöscht"
1366
+
1367
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:88
1368
+ msgid "Could not delete environment"
1369
+ msgstr "Umgebung konnte nicht gelöscht werden"
1370
+
1371
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:97
1372
+ msgid "manipulate lifecycle_environments on the server"
1373
+ msgstr ""
1374
+
1375
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
1376
+ #: lib/hammer_cli_katello/capsule.rb:22
1377
+ msgid "Features"
1378
+ msgstr "Eigenschaften"
1379
+
1380
+ #: lib/hammer_cli_katello/capsule.rb:37
1381
+ msgid "Manage the capsule content"
1382
+ msgstr "Capsule-Inhalte verwalten"
1383
+
1384
+ #: lib/hammer_cli_katello/capsule.rb:75
1385
+ msgid "Lifecycle environment successfully added to the capsule"
1386
+ msgstr "Lebenszyklusumgebung erfolgreich zur Capsule hinzugefügt"
1387
+
1388
+ #: lib/hammer_cli_katello/capsule.rb:76
1389
+ msgid "Could not add the lifecycle environment to the capsule"
1390
+ msgstr "Lebenszyklusumgebung konnte nicht zur Capsule hinzugefügt werden"
1391
+
1392
+ #: lib/hammer_cli_katello/capsule.rb:85
1393
+ msgid "Lifecycle environment successfully removed from the capsule"
1394
+ msgstr "Lebenszyklusumgebung erfolgreich von Capsule entfernt"
1395
+
1396
+ #: lib/hammer_cli_katello/capsule.rb:86
1397
+ msgid "Could not remove the lifecycle environment from the capsule"
1398
+ msgstr "Lebenszyklusumgebung konnte nicht von Capsule entfernt werden"
1399
+
1400
+ #: lib/hammer_cli_katello/capsule.rb:95
1401
+ msgid "Capsule content is being synchronized in task %{id}"
1402
+ msgstr "Capsule-Inhalte werden synchronisiert in Task %{id}"
1403
+
1404
+ #: lib/hammer_cli_katello/capsule.rb:96
1405
+ msgid "Could not synchronize capsule content"
1406
+ msgstr "Capsule-Inhalte konnten nicht synchronisiert werden"
1407
+
1408
+ #: lib/hammer_cli_katello/capsule.rb:107
1409
+ msgid "Manipulate capsule"
1410
+ msgstr "Capsule bearbeiten"
1411
+
1412
+
1413
+
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+
1420
+
1421
+
1422
+
1423
+
1424
+
1425
+
1426
+
1427
+
1428
+
1429
+ # translation auto-copied from project Customer Portal Translations, version 012_June_RHEL, document downloads.html, author hpeters
1430
+
1431
+
1432
+
1433
+
1434
+
1435
+
1436
+
1437
+
1438
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
1439
+
1440
+ # translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello, author hpeters
1441
+
1442
+
1443
+ # translation auto-copied from project evolution, version 3.8.5, document evolution-3.8
1444
+
1445
+ # translation auto-copied from project RHEL Virtualization Deployment and Administration Guide, version 7.0, document App_Bridge_Device
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+
1452
+
1453
+
1454
+
1455
+
1456
+
1457
+
1458
+
1459
+
1460
+
1461
+
1462
+
1463
+
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+
1470
+
1471
+
1472
+
1473
+
1474
+
1475
+
1476
+ # translation auto-copied from project Red Hat Satellite User Guide, version 6.0, document chap-Configuring_Organizations_Locations_and_Lifecycle_Environments, author hpeters
1477
+
1478
+
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+
1486
+
1487
+
1488
+ # translation auto-copied from project Satellite6 Katello, version 6.1, document katello
1489
+
1490
+ # translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author jdimanos
1491
+
1492
+
1493
+
1494
+
1495
+ # translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello, author hpeters
1496
+
1497
+
1498
+
1499
+
1500
+
1501
+
1502
+
1503
+
1504
+
1505
+
1506
+
1507
+
1508
+
1509
+
1510
+
1511
+
1512
+
1513
+
1514
+ # translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author jdimanos
1515
+
1516
+ # translation auto-copied from project Satellite6 Katello, version 6.1, document katello
1517
+
1518
+ # translation auto-copied from project RHEL Deployment Guide, version 6.2, document Product_Subscriptions_and_Entitlements, author hpeters
1519
+
1520
+
1521
+ # translation auto-copied from project subscription-manager, version 1.10.10, document keys
1522
+