hammer_cli_foreman 0.1.3 → 0.1.4

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.

Potentially problematic release.


This version of hammer_cli_foreman might be problematic. Click here for more details.

Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/doc/release_notes.md +18 -0
  3. data/lib/hammer_cli_foreman.rb +4 -0
  4. data/lib/hammer_cli_foreman/auth_source.rb +10 -0
  5. data/lib/hammer_cli_foreman/auth_source_ldap.rb +70 -0
  6. data/lib/hammer_cli_foreman/commands.rb +47 -3
  7. data/lib/hammer_cli_foreman/credentials.rb +35 -4
  8. data/lib/hammer_cli_foreman/exceptions.rb +10 -1
  9. data/lib/hammer_cli_foreman/external_usergroup.rb +83 -0
  10. data/lib/hammer_cli_foreman/host.rb +26 -22
  11. data/lib/hammer_cli_foreman/hostgroup.rb +12 -5
  12. data/lib/hammer_cli_foreman/i18n.rb +4 -0
  13. data/lib/hammer_cli_foreman/id_resolver.rb +81 -13
  14. data/lib/hammer_cli_foreman/operating_system.rb +5 -44
  15. data/lib/hammer_cli_foreman/option_builders.rb +64 -5
  16. data/lib/hammer_cli_foreman/organization.rb +3 -3
  17. data/lib/hammer_cli_foreman/param_filters.rb +18 -2
  18. data/lib/hammer_cli_foreman/references.rb +9 -1
  19. data/lib/hammer_cli_foreman/role.rb +2 -5
  20. data/lib/hammer_cli_foreman/usergroup.rb +4 -0
  21. data/lib/hammer_cli_foreman/version.rb +1 -1
  22. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  23. data/locale/de/hammer-cli-foreman.po +2169 -0
  24. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  25. data/locale/en/hammer-cli-foreman.po +1 -1
  26. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  27. data/locale/en_GB/hammer-cli-foreman.po +254 -81
  28. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  29. data/locale/es/hammer-cli-foreman.po +268 -94
  30. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  31. data/locale/fr/hammer-cli-foreman.po +258 -84
  32. data/locale/hammer-cli-foreman.pot +428 -321
  33. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  34. data/locale/it/hammer-cli-foreman.po +2168 -0
  35. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  36. data/locale/ja/hammer-cli-foreman.po +2167 -0
  37. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  38. data/locale/ko/hammer-cli-foreman.po +2167 -0
  39. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  40. data/locale/pt_BR/hammer-cli-foreman.po +2167 -0
  41. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  42. data/locale/ru/hammer-cli-foreman.po +2166 -0
  43. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  44. data/locale/zh_CN/hammer-cli-foreman.po +2166 -0
  45. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  46. data/locale/zh_TW/hammer-cli-foreman.po +2166 -0
  47. data/test/unit/auth_source_ldap_test.rb +95 -0
  48. data/test/unit/credentials_test.rb +20 -7
  49. data/test/unit/data/1.6/foreman_api.json +1 -1
  50. data/test/unit/data/1.6/foreman_api_back.json +1 -0
  51. data/test/unit/data/1.6/whatever.json +1 -0
  52. data/test/unit/external_usergroup_test.rb +103 -0
  53. data/test/unit/helpers/command.rb +5 -1
  54. data/test/unit/host_test.rb +4 -4
  55. data/test/unit/hostgroup_test.rb +5 -5
  56. data/test/unit/media_test.rb +2 -2
  57. data/test/unit/operating_system_test.rb +7 -1
  58. data/test/unit/param_filters_test.rb +65 -0
  59. data/test/unit/smart_class_parameter_test.rb +1 -1
  60. metadata +335 -309
  61. data/lib/hammer_cli_foreman/smart_variables.rb +0 -111
@@ -21,7 +21,7 @@ module HammerCLIForeman
21
21
  class InfoCommand < HammerCLIForeman::InfoCommand
22
22
  include HammerCLIForeman::ResourceSupportedTest
23
23
 
24
- option "--id", "ID", " "
24
+ option "--id", "ID", " ", :referenced_resource => 'organization'
25
25
 
26
26
  output ListCommand.output_definition do
27
27
  HammerCLIForeman::References.users(self)
@@ -60,7 +60,7 @@ module HammerCLIForeman
60
60
  class UpdateCommand < HammerCLIForeman::UpdateCommand
61
61
  include HammerCLIForeman::ResourceSupportedTest
62
62
 
63
- option "--id", "ID", " "
63
+ option "--id", "ID", " ", :referenced_resource => 'organization'
64
64
 
65
65
  success_message _("Organization updated")
66
66
  failure_message _("Could not update the organization")
@@ -72,7 +72,7 @@ module HammerCLIForeman
72
72
  class DeleteCommand < HammerCLIForeman::DeleteCommand
73
73
  include HammerCLIForeman::ResourceSupportedTest
74
74
 
75
- option "--id", "ID", " "
75
+ option "--id", "ID", " ", :referenced_resource => 'organization'
76
76
 
77
77
  success_message _("Organization deleted")
78
78
  failure_message _("Could not delete the organization")
@@ -38,8 +38,24 @@ module HammerCLIForeman
38
38
 
39
39
  def filter(params)
40
40
  params = ParamsFlattener.new.filter(params)
41
- params = params.reject{ |p| !(p.name.end_with?("_id")) }
42
- params = params.reject{ |p| !(p.required?) } if @required
41
+ params = params.select{ |p| p.name.end_with?("_id") }
42
+ params = params.select{ |p| p.required? } if @required
43
+ params
44
+ end
45
+
46
+ end
47
+
48
+
49
+ class IdArrayParamsFilter < AbstractParamsFilter
50
+
51
+ def initialize(options={})
52
+ @required = !(options[:only_required] == false)
53
+ end
54
+
55
+ def filter(params)
56
+ params = ParamsFlattener.new.filter(params)
57
+ params = params.select{ |p| p.name.end_with?("_ids") }
58
+ params = params.select{ |p| p.required? } if @required
43
59
  params
44
60
  end
45
61
 
@@ -121,7 +121,7 @@ module HammerCLIForeman
121
121
  def self.operating_systems(dsl)
122
122
  dsl.build do
123
123
  collection :operatingsystems, _("Operating systems"), :numbered => false do
124
- custom_field Fields::Reference, :name_key => :fullname
124
+ custom_field Fields::Reference, :name_key => :title
125
125
  end
126
126
  end
127
127
  end
@@ -134,5 +134,13 @@ module HammerCLIForeman
134
134
  end
135
135
  end
136
136
 
137
+ def self.external_usergroups(dsl)
138
+ dsl.build do
139
+ collection :external_usergroups, _("External user groups"), :numbered => false do
140
+ custom_field Fields::Reference
141
+ end
142
+ end
143
+ end
144
+
137
145
  end
138
146
  end
@@ -20,16 +20,13 @@ module HammerCLIForeman
20
20
  command_name "filters"
21
21
  resource :filters, :index
22
22
 
23
- option "--id", "ID", _("User role id")
23
+ option "--id", "ID", _("User role id"), :referenced_resource => 'role'
24
24
 
25
25
  output HammerCLIForeman::Filter::ListCommand.output_definition
26
26
 
27
27
  def request_params
28
28
  role_id = get_resource_id(HammerCLIForeman.foreman_resource(:roles))
29
-
30
- params = super
31
- params[:search] = "role_id = \"#{role_id}\""
32
- params
29
+ { :search => "role_id = \"#{role_id}\"" }
33
30
  end
34
31
 
35
32
  def extend_data(filter)
@@ -1,3 +1,5 @@
1
+ require 'hammer_cli_foreman/external_usergroup'
2
+
1
3
  module HammerCLIForeman
2
4
 
3
5
  class Usergroup < HammerCLIForeman::Command
@@ -17,6 +19,7 @@ module HammerCLIForeman
17
19
  output ListCommand.output_definition do
18
20
  HammerCLIForeman::References.users(self)
19
21
  HammerCLIForeman::References.usergroups(self)
22
+ HammerCLIForeman::References.external_usergroups(self)
20
23
  HammerCLIForeman::References.roles(self)
21
24
  HammerCLIForeman::References.timestamps(self)
22
25
  end
@@ -50,6 +53,7 @@ module HammerCLIForeman
50
53
  HammerCLIForeman::AssociatingCommands::Usergroup.extend_command(self)
51
54
 
52
55
  autoload_subcommands
56
+ subcommand 'external', HammerCLIForeman::ExternalUsergroup.desc, HammerCLIForeman::ExternalUsergroup
53
57
  end
54
58
 
55
59
  end
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForeman
2
2
  def self.version
3
- @version ||= Gem::Version.new '0.1.3'
3
+ @version ||= Gem::Version.new '0.1.4'
4
4
  end
5
5
  end
@@ -0,0 +1,2169 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman package.
4
+ #
5
+ # Translators:
6
+ # Ettore Atalan <atalanttore@googlemail.com>, 2014
7
+ # simon11 <simon.stieger.98@live.de>, 2014
8
+ # simon11 <simon.stieger.98@live.de>, 2014
9
+ msgid ""
10
+ msgstr ""
11
+ "Project-Id-Version: hammer-cli-foreman 0.1.4\n"
12
+ "Report-Msgid-Bugs-To: \n"
13
+ "POT-Creation-Date: 2014-09-19 13:34+0200\n"
14
+ "PO-Revision-Date: 2014-10-11 10:31+0000\n"
15
+ "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
16
+ "Language-Team: German (http://www.transifex.com/projects/p/foreman/language/de/)\n"
17
+ "MIME-Version: 1.0\n"
18
+ "Content-Type: text/plain; charset=UTF-8\n"
19
+ "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: de\n"
21
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
22
+
23
+ #: lib/hammer_cli_foreman/report.rb:10 lib/hammer_cli_foreman/report.rb:30
24
+ #: lib/hammer_cli_foreman/external_usergroup.rb:10
25
+ #: lib/hammer_cli_foreman/organization.rb:13
26
+ #: lib/hammer_cli_foreman/subnet.rb:10 lib/hammer_cli_foreman/model.rb:10
27
+ #: lib/hammer_cli_foreman/role.rb:11 lib/hammer_cli_foreman/media.rb:9
28
+ #: lib/hammer_cli_foreman/override_value.rb:28
29
+ #: lib/hammer_cli_foreman/compute_resource.rb:11
30
+ #: lib/hammer_cli_foreman/smart_variables.rb:7
31
+ #: lib/hammer_cli_foreman/smart_variables.rb:65
32
+ #: lib/hammer_cli_foreman/hostgroup.rb:39
33
+ #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:124
34
+ #: lib/hammer_cli_foreman/host.rb:195 lib/hammer_cli_foreman/host.rb:208
35
+ #: lib/hammer_cli_foreman/operating_system.rb:10
36
+ #: lib/hammer_cli_foreman/smart_proxy.rb:11
37
+ #: lib/hammer_cli_foreman/environment.rb:14
38
+ #: lib/hammer_cli_foreman/puppet_class.rb:12
39
+ #: lib/hammer_cli_foreman/domain.rb:10
40
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:8
41
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:66
42
+ #: lib/hammer_cli_foreman/usergroup.rb:11 lib/hammer_cli_foreman/image.rb:29
43
+ #: lib/hammer_cli_foreman/partition_table.rb:10
44
+ #: lib/hammer_cli_foreman/user.rb:10 lib/hammer_cli_foreman/filter.rb:9
45
+ #: lib/hammer_cli_foreman/filter.rb:72 lib/hammer_cli_foreman/location.rb:13
46
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:13
47
+ #: lib/hammer_cli_foreman/architecture.rb:10
48
+ msgid "Id"
49
+ msgstr "Kennung"
50
+
51
+ #: lib/hammer_cli_foreman/report.rb:11 lib/hammer_cli_foreman/report.rb:31
52
+ #: lib/hammer_cli_foreman/fact.rb:12
53
+ msgid "Host"
54
+ msgstr "Host"
55
+
56
+ #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:177
57
+ msgid "Last report"
58
+ msgstr "letzter Report"
59
+
60
+ #: lib/hammer_cli_foreman/report.rb:14 lib/hammer_cli_foreman/report.rb:35
61
+ msgid "Applied"
62
+ msgstr "Angewendet"
63
+
64
+ #: lib/hammer_cli_foreman/report.rb:15 lib/hammer_cli_foreman/report.rb:36
65
+ msgid "Restarted"
66
+ msgstr "neu gestartet"
67
+
68
+ #: lib/hammer_cli_foreman/report.rb:16 lib/hammer_cli_foreman/report.rb:37
69
+ msgid "Failed"
70
+ msgstr "fehlgeschlagen"
71
+
72
+ #: lib/hammer_cli_foreman/report.rb:17 lib/hammer_cli_foreman/report.rb:38
73
+ msgid "Restart Failures"
74
+ msgstr "Neustarts - Fehler"
75
+
76
+ #: lib/hammer_cli_foreman/report.rb:18 lib/hammer_cli_foreman/report.rb:39
77
+ msgid "Skipped"
78
+ msgstr "Übersprungen"
79
+
80
+ #: lib/hammer_cli_foreman/report.rb:19 lib/hammer_cli_foreman/report.rb:40
81
+ msgid "Pending"
82
+ msgstr "ausstehende"
83
+
84
+ #: lib/hammer_cli_foreman/report.rb:32
85
+ msgid "Reported at"
86
+ msgstr "Berichtet am"
87
+
88
+ #: lib/hammer_cli_foreman/report.rb:33
89
+ msgid "Report status"
90
+ msgstr "Berichtsstatus"
91
+
92
+ #: lib/hammer_cli_foreman/report.rb:43
93
+ msgid "Report metrics"
94
+ msgstr "Berichtsmetrik"
95
+
96
+ #: lib/hammer_cli_foreman/report.rb:46
97
+ msgid "config_retrieval"
98
+ msgstr "config_retrieval"
99
+
100
+ #: lib/hammer_cli_foreman/report.rb:47
101
+ msgid "exec"
102
+ msgstr "exec"
103
+
104
+ #: lib/hammer_cli_foreman/report.rb:48
105
+ msgid "file"
106
+ msgstr "Datei"
107
+
108
+ #: lib/hammer_cli_foreman/report.rb:49
109
+ msgid "package"
110
+ msgstr "Paket"
111
+
112
+ #: lib/hammer_cli_foreman/report.rb:50
113
+ msgid "service"
114
+ msgstr "Dienst"
115
+
116
+ #: lib/hammer_cli_foreman/report.rb:51
117
+ msgid "user"
118
+ msgstr "Benutzer"
119
+
120
+ #: lib/hammer_cli_foreman/report.rb:52
121
+ msgid "yumrepo"
122
+ msgstr "yumrepo"
123
+
124
+ #: lib/hammer_cli_foreman/report.rb:53
125
+ msgid "filebucket"
126
+ msgstr "filebucket"
127
+
128
+ #: lib/hammer_cli_foreman/report.rb:54
129
+ msgid "cron"
130
+ msgstr "cron"
131
+
132
+ #: lib/hammer_cli_foreman/report.rb:55
133
+ msgid "total"
134
+ msgstr "insgesamt"
135
+
136
+ #: lib/hammer_cli_foreman/report.rb:59
137
+ msgid "Logs"
138
+ msgstr "Protokolle"
139
+
140
+ #: lib/hammer_cli_foreman/report.rb:62 lib/hammer_cli_foreman/filter.rb:74
141
+ msgid "Resource"
142
+ msgstr "Ressource"
143
+
144
+ #: lib/hammer_cli_foreman/report.rb:65
145
+ msgid "Message"
146
+ msgstr "Nachricht"
147
+
148
+ #: lib/hammer_cli_foreman/report.rb:76
149
+ msgid "Report has been deleted"
150
+ msgstr "Bericht wurde gelöscht"
151
+
152
+ #: lib/hammer_cli_foreman/report.rb:77
153
+ msgid "Could not delete the report"
154
+ msgstr "Bericht konnte nicht gelöscht werden"
155
+
156
+ #: lib/hammer_cli_foreman/external_usergroup.rb:6
157
+ msgid "View and manage user group's external user groups"
158
+ msgstr ""
159
+
160
+ #: lib/hammer_cli_foreman/external_usergroup.rb:11
161
+ #: lib/hammer_cli_foreman/external_usergroup.rb:42
162
+ #: lib/hammer_cli_foreman/organization.rb:14
163
+ #: lib/hammer_cli_foreman/common_parameter.rb:12
164
+ #: lib/hammer_cli_foreman/subnet.rb:11 lib/hammer_cli_foreman/model.rb:11
165
+ #: lib/hammer_cli_foreman/role.rb:12 lib/hammer_cli_foreman/media.rb:10
166
+ #: lib/hammer_cli_foreman/override_value.rb:29
167
+ #: lib/hammer_cli_foreman/compute_resource.rb:12
168
+ #: lib/hammer_cli_foreman/hostgroup.rb:40
169
+ #: lib/hammer_cli_foreman/template.rb:26 lib/hammer_cli_foreman/template.rb:74
170
+ #: lib/hammer_cli_foreman/host.rb:125 lib/hammer_cli_foreman/host.rb:196
171
+ #: lib/hammer_cli_foreman/host.rb:209
172
+ #: lib/hammer_cli_foreman/operating_system.rb:22
173
+ #: lib/hammer_cli_foreman/smart_proxy.rb:12
174
+ #: lib/hammer_cli_foreman/environment.rb:15
175
+ #: lib/hammer_cli_foreman/puppet_class.rb:13
176
+ #: lib/hammer_cli_foreman/domain.rb:11 lib/hammer_cli_foreman/usergroup.rb:12
177
+ #: lib/hammer_cli_foreman/image.rb:30 lib/hammer_cli_foreman/image.rb:70
178
+ #: lib/hammer_cli_foreman/partition_table.rb:11
179
+ #: lib/hammer_cli_foreman/user.rb:12 lib/hammer_cli_foreman/filter.rb:73
180
+ #: lib/hammer_cli_foreman/filter.rb:90 lib/hammer_cli_foreman/location.rb:14
181
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:14
182
+ #: lib/hammer_cli_foreman/architecture.rb:11
183
+ msgid "Name"
184
+ msgstr "Name"
185
+
186
+ #: lib/hammer_cli_foreman/external_usergroup.rb:12
187
+ #: lib/hammer_cli_foreman/external_usergroup.rb:43
188
+ msgid "Auth source"
189
+ msgstr "Authentifizierungsquelle"
190
+
191
+ #: lib/hammer_cli_foreman/external_usergroup.rb:39
192
+ msgid "Refresh external user group"
193
+ msgstr "Externe Benutzergruppe aktualisieren"
194
+
195
+ #: lib/hammer_cli_foreman/external_usergroup.rb:57
196
+ msgid "External user group created"
197
+ msgstr "Externe Benutzergruppe erstellt"
198
+
199
+ #: lib/hammer_cli_foreman/external_usergroup.rb:58
200
+ msgid "Could not create external user group"
201
+ msgstr "Externe Benutzergruppe konnte nicht erstellt werden"
202
+
203
+ #: lib/hammer_cli_foreman/external_usergroup.rb:65
204
+ msgid "External user group updated"
205
+ msgstr "Externe Benutzergruppe aktualisiert"
206
+
207
+ #: lib/hammer_cli_foreman/external_usergroup.rb:66
208
+ msgid "Could not update external user group"
209
+ msgstr "Externe Benutzergruppe konnte nicht aktualisiert werden"
210
+
211
+ #: lib/hammer_cli_foreman/external_usergroup.rb:73
212
+ msgid "External user group deleted"
213
+ msgstr "Externe Benutzergruppe gelöscht"
214
+
215
+ #: lib/hammer_cli_foreman/external_usergroup.rb:74
216
+ msgid "Could not delete the external user group"
217
+ msgstr "Externe Benutzergruppe konnte nicht gelöscht werden"
218
+
219
+ #: lib/hammer_cli_foreman/organization.rb:37
220
+ #: lib/hammer_cli_foreman/references.rb:15
221
+ msgid "Locations"
222
+ msgstr "Orte"
223
+
224
+ #: lib/hammer_cli_foreman/organization.rb:53
225
+ msgid "Organization created"
226
+ msgstr "Organisation erstellt"
227
+
228
+ #: lib/hammer_cli_foreman/organization.rb:54
229
+ msgid "Could not create the organization"
230
+ msgstr "Organisation konnte nicht erstellt werden"
231
+
232
+ #: lib/hammer_cli_foreman/organization.rb:65
233
+ msgid "Organization updated"
234
+ msgstr "Organisation aktualisiert"
235
+
236
+ #: lib/hammer_cli_foreman/organization.rb:66
237
+ msgid "Could not update the organization"
238
+ msgstr "Organisation konnte nicht aktualisiert werden"
239
+
240
+ #: lib/hammer_cli_foreman/organization.rb:77
241
+ msgid "Organization deleted"
242
+ msgstr "Organisation entfernt"
243
+
244
+ #: lib/hammer_cli_foreman/organization.rb:78
245
+ msgid "Could not delete the organization"
246
+ msgstr "Organisation konnte nicht entfernt werden"
247
+
248
+ #: lib/hammer_cli_foreman/common_parameter.rb:13
249
+ #: lib/hammer_cli_foreman/fact.rb:14
250
+ #: lib/hammer_cli_foreman/smart_variables.rb:64
251
+ #: lib/hammer_cli_foreman/smart_variables.rb:67
252
+ #: lib/hammer_cli_foreman/host.rb:282
253
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:65
254
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:68
255
+ msgid "Value"
256
+ msgstr "Wert"
257
+
258
+ #: lib/hammer_cli_foreman/common_parameter.rb:22
259
+ msgid "Set a global parameter."
260
+ msgstr "Einen globalen Parameter festlegen."
261
+
262
+ #: lib/hammer_cli_foreman/common_parameter.rb:24
263
+ msgid "Created parameter [%{name}] with value [%{value}]."
264
+ msgstr "Parameter [%{name}] mit Wert [%{value}] erstellt."
265
+
266
+ #: lib/hammer_cli_foreman/common_parameter.rb:25
267
+ msgid "Parameter [%{name}] updated to [%{value}]."
268
+ msgstr "Parameter [%{name}] aktualisiert auf [%{value}]."
269
+
270
+ #: lib/hammer_cli_foreman/common_parameter.rb:27
271
+ #: lib/hammer_cli_foreman/parameter.rb:49
272
+ #: lib/hammer_cli_foreman/parameter.rb:96
273
+ msgid "parameter name"
274
+ msgstr "Parametername"
275
+
276
+ #: lib/hammer_cli_foreman/common_parameter.rb:28
277
+ #: lib/hammer_cli_foreman/parameter.rb:50
278
+ msgid "parameter value"
279
+ msgstr "Parameterwert"
280
+
281
+ #: lib/hammer_cli_foreman/common_parameter.rb:53
282
+ msgid "Global parameter [%{name}] deleted."
283
+ msgstr "Globaler Parameter [%{name}] gelöscht."
284
+
285
+ #: lib/hammer_cli_foreman/common_parameter.rb:54
286
+ msgid "Could not delete the global parameter [%{name}]"
287
+ msgstr "Globaler Parameter [%{name}] konnte nicht gelöscht werden"
288
+
289
+ #: lib/hammer_cli_foreman/common_parameter.rb:67
290
+ msgid "Manipulate global parameters."
291
+ msgstr "Globale Parameter bearbeiten."
292
+
293
+ #: lib/hammer_cli_foreman/subnet.rb:12
294
+ msgid "Network"
295
+ msgstr "Netzwerk"
296
+
297
+ #: lib/hammer_cli_foreman/subnet.rb:13
298
+ msgid "Mask"
299
+ msgstr "Maske"
300
+
301
+ #: lib/hammer_cli_foreman/subnet.rb:23
302
+ msgid "Priority"
303
+ msgstr "Priorität"
304
+
305
+ #: lib/hammer_cli_foreman/subnet.rb:24
306
+ msgid "DNS"
307
+ msgstr "DNS"
308
+
309
+ #: lib/hammer_cli_foreman/subnet.rb:25
310
+ msgid "Primary DNS"
311
+ msgstr "Primärer DNS"
312
+
313
+ #: lib/hammer_cli_foreman/subnet.rb:26
314
+ msgid "Secondary DNS"
315
+ msgstr "Sekundärer DNS"
316
+
317
+ #: lib/hammer_cli_foreman/subnet.rb:27
318
+ msgid "TFTP"
319
+ msgstr "TFTP"
320
+
321
+ #: lib/hammer_cli_foreman/subnet.rb:28
322
+ msgid "DHCP"
323
+ msgstr "DHCP"
324
+
325
+ #: lib/hammer_cli_foreman/subnet.rb:30
326
+ msgid "VLAN ID"
327
+ msgstr "VLAN-Kennung"
328
+
329
+ #: lib/hammer_cli_foreman/subnet.rb:31
330
+ msgid "Gateway"
331
+ msgstr "Gateway"
332
+
333
+ #: lib/hammer_cli_foreman/subnet.rb:32
334
+ msgid "From"
335
+ msgstr "Von"
336
+
337
+ #: lib/hammer_cli_foreman/subnet.rb:33
338
+ msgid "To"
339
+ msgstr "An"
340
+
341
+ #: lib/hammer_cli_foreman/subnet.rb:44
342
+ msgid "Subnet created"
343
+ msgstr "Subnetz erstellt"
344
+
345
+ #: lib/hammer_cli_foreman/subnet.rb:45
346
+ msgid "Could not create the subnet"
347
+ msgstr "Subnetz konnte nicht erstellt werden"
348
+
349
+ #: lib/hammer_cli_foreman/subnet.rb:53
350
+ msgid "Subnet updated"
351
+ msgstr "Subnetz aktualisiert"
352
+
353
+ #: lib/hammer_cli_foreman/subnet.rb:54
354
+ msgid "Could not update the subnet"
355
+ msgstr "Subnetz konnte nicht aktualisiert werden"
356
+
357
+ #: lib/hammer_cli_foreman/subnet.rb:62
358
+ msgid "Subnet deleted"
359
+ msgstr "Subnetz gelöscht"
360
+
361
+ #: lib/hammer_cli_foreman/subnet.rb:63
362
+ msgid "Could not delete the subnet"
363
+ msgstr "Subnetz konnte nicht gelöscht werden"
364
+
365
+ #: lib/hammer_cli_foreman/model.rb:12
366
+ msgid "Vendor class"
367
+ msgstr "Herstellerklassen"
368
+
369
+ #: lib/hammer_cli_foreman/model.rb:13
370
+ msgid "HW model"
371
+ msgstr "HW-Modell"
372
+
373
+ #: lib/hammer_cli_foreman/model.rb:22
374
+ msgid "Info"
375
+ msgstr "Info"
376
+
377
+ #: lib/hammer_cli_foreman/model.rb:31
378
+ msgid "Hardware model created"
379
+ msgstr "Hardwaremodell erstellt"
380
+
381
+ #: lib/hammer_cli_foreman/model.rb:32
382
+ msgid "Could not create the hardware model"
383
+ msgstr "Hardwaremodell konnte nicht erstellt werden"
384
+
385
+ #: lib/hammer_cli_foreman/model.rb:38
386
+ msgid "Hardware model deleted"
387
+ msgstr "Hardwaremodell gelöscht"
388
+
389
+ #: lib/hammer_cli_foreman/model.rb:39
390
+ msgid "Could not delete the hardware model"
391
+ msgstr "Hardwaremodell konnte nicht gelöscht werden"
392
+
393
+ #: lib/hammer_cli_foreman/model.rb:46
394
+ msgid "Hardware model updated"
395
+ msgstr "Hardwaremodell aktualisiert"
396
+
397
+ #: lib/hammer_cli_foreman/model.rb:47
398
+ msgid "Could not update the hardware model"
399
+ msgstr "Hardwaremodell konnte nicht aktualisiert werden"
400
+
401
+ #: lib/hammer_cli_foreman/role.rb:23
402
+ msgid "User role id"
403
+ msgstr "Benutzerrollen-ID"
404
+
405
+ #: lib/hammer_cli_foreman/role.rb:36 lib/hammer_cli_foreman/filter.rb:18
406
+ #: lib/hammer_cli_foreman/filter.rb:34 lib/hammer_cli_foreman/filter.rb:78
407
+ msgid "(Miscellaneous)"
408
+ msgstr "(Verschiedenes)"
409
+
410
+ #: lib/hammer_cli_foreman/role.rb:37 lib/hammer_cli_foreman/filter.rb:19
411
+ #: lib/hammer_cli_foreman/filter.rb:35
412
+ msgid "none"
413
+ msgstr "keine"
414
+
415
+ #: lib/hammer_cli_foreman/role.rb:50
416
+ msgid "User role [%<name>s] created"
417
+ msgstr "Benutzerrolle [%<name>s] erstellt"
418
+
419
+ #: lib/hammer_cli_foreman/role.rb:51
420
+ msgid "Could not create the user role"
421
+ msgstr "Benutzerrolle konnte nicht erstellt werden"
422
+
423
+ #: lib/hammer_cli_foreman/role.rb:58
424
+ msgid "User role [%<name>s] updated"
425
+ msgstr "Benutzerrolle [%<name>s] aktualisiert"
426
+
427
+ #: lib/hammer_cli_foreman/role.rb:59
428
+ msgid "Could not update the user role"
429
+ msgstr "Benutzerrolle konnte nicht aktualisiert werden"
430
+
431
+ #: lib/hammer_cli_foreman/role.rb:66
432
+ msgid "User role [%<name>s] deleted"
433
+ msgstr "Benutzerrolle [%<name>s] gelöscht"
434
+
435
+ #: lib/hammer_cli_foreman/role.rb:67
436
+ msgid "Could not delete the user roles"
437
+ msgstr "Benutzerrollen konnten nicht gelöscht werden"
438
+
439
+ #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:281
440
+ msgid "Fact"
441
+ msgstr "Fakt"
442
+
443
+ #: lib/hammer_cli_foreman/media.rb:11
444
+ msgid "Path"
445
+ msgstr "Pfad"
446
+
447
+ #: lib/hammer_cli_foreman/media.rb:20
448
+ #: lib/hammer_cli_foreman/partition_table.rb:12
449
+ msgid "OS Family"
450
+ msgstr "Betriebssystemfamilie"
451
+
452
+ #: lib/hammer_cli_foreman/media.rb:32
453
+ msgid "Installation medium created"
454
+ msgstr "Installationsmedium erstellt"
455
+
456
+ #: lib/hammer_cli_foreman/media.rb:33
457
+ msgid "Could not create the installation medium"
458
+ msgstr "Installationsmedium konnte nicht erstellt werden"
459
+
460
+ #: lib/hammer_cli_foreman/media.rb:41
461
+ msgid "Installation medium updated"
462
+ msgstr "Installationsmedium aktualisiert"
463
+
464
+ #: lib/hammer_cli_foreman/media.rb:42
465
+ msgid "Could not update the installation media"
466
+ msgstr "Installationsmedium konnte nicht aktualisiert werden"
467
+
468
+ #: lib/hammer_cli_foreman/media.rb:50
469
+ msgid "Installation medium deleted"
470
+ msgstr "Installationsmedium entfernt"
471
+
472
+ #: lib/hammer_cli_foreman/media.rb:51
473
+ msgid "Could not delete the installation media"
474
+ msgstr "Installationsmedium konnte nicht entfernt werden"
475
+
476
+ #: lib/hammer_cli_foreman/override_value.rb:7
477
+ msgid "View and manage override values"
478
+ msgstr ""
479
+
480
+ #: lib/hammer_cli_foreman/override_value.rb:30
481
+ #: lib/hammer_cli_foreman/hostgroup.rb:42 lib/hammer_cli_foreman/host.rb:126
482
+ #: lib/hammer_cli_foreman/image.rb:31
483
+ msgid "Operating System"
484
+ msgstr "Betriebssystem"
485
+
486
+ #: lib/hammer_cli_foreman/override_value.rb:31
487
+ #: lib/hammer_cli_foreman/image.rb:32
488
+ msgid "Username"
489
+ msgstr "Benutzername"
490
+
491
+ #: lib/hammer_cli_foreman/override_value.rb:32
492
+ #: lib/hammer_cli_foreman/compute_resource.rb:23
493
+ #: lib/hammer_cli_foreman/compute_resource.rb:29
494
+ #: lib/hammer_cli_foreman/host.rb:157 lib/hammer_cli_foreman/image.rb:33
495
+ #: lib/hammer_cli_foreman/image.rb:71
496
+ msgid "UUID"
497
+ msgstr "UUID"
498
+
499
+ #: lib/hammer_cli_foreman/override_value.rb:44
500
+ #: lib/hammer_cli_foreman/hostgroup.rb:58 lib/hammer_cli_foreman/host.rb:188
501
+ #: lib/hammer_cli_foreman/image.rb:45
502
+ msgid "Architecture"
503
+ msgstr "Architektur"
504
+
505
+ #: lib/hammer_cli_foreman/override_value.rb:45
506
+ #: lib/hammer_cli_foreman/image.rb:46
507
+ msgid "IAM role"
508
+ msgstr "IAM-Rolle"
509
+
510
+ #: lib/hammer_cli_foreman/override_value.rb:55
511
+ msgid "OverrideValue created"
512
+ msgstr ""
513
+
514
+ #: lib/hammer_cli_foreman/override_value.rb:56
515
+ msgid "Could not create the override_value"
516
+ msgstr ""
517
+
518
+ #: lib/hammer_cli_foreman/override_value.rb:64
519
+ msgid "OverrideValue updated"
520
+ msgstr ""
521
+
522
+ #: lib/hammer_cli_foreman/override_value.rb:65
523
+ msgid "Could not update the override_value"
524
+ msgstr ""
525
+
526
+ #: lib/hammer_cli_foreman/override_value.rb:73
527
+ msgid "OverrideValue deleted"
528
+ msgstr ""
529
+
530
+ #: lib/hammer_cli_foreman/override_value.rb:74
531
+ msgid "Could not delete the override_value"
532
+ msgstr ""
533
+
534
+ #: lib/hammer_cli_foreman/exception_handler.rb:41
535
+ msgid "Forbidden - server refused to process the request"
536
+ msgstr "Abgelehnt - Server verweigert die Verarbeitung der Anfrage"
537
+
538
+ #: lib/hammer_cli_foreman/exception_handler.rb:75
539
+ msgid "Could not load the API description from the server"
540
+ msgstr "Die API-Beschreibung konnte nicht vom Server geladen werden"
541
+
542
+ #: lib/hammer_cli_foreman/exception_handler.rb:76
543
+ msgid "is the server down?"
544
+ msgstr "ist der Server nicht verfügbar?"
545
+
546
+ #: lib/hammer_cli_foreman/exception_handler.rb:77
547
+ msgid ""
548
+ "was '%s' run on the server when using apipie cache? (typical production "
549
+ "settings)"
550
+ msgstr ""
551
+
552
+ #: lib/hammer_cli_foreman/compute_resource.rb:13
553
+ msgid "Provider"
554
+ msgstr "Anbieter"
555
+
556
+ #: lib/hammer_cli_foreman/compute_resource.rb:26
557
+ #: lib/hammer_cli_foreman/compute_resource.rb:36
558
+ msgid "Region"
559
+ msgstr "Region"
560
+
561
+ #: lib/hammer_cli_foreman/compute_resource.rb:30
562
+ msgid "Server"
563
+ msgstr "Server"
564
+
565
+ #: lib/hammer_cli_foreman/compute_resource.rb:33
566
+ msgid "Tenant"
567
+ msgstr "Mieter"
568
+
569
+ #: lib/hammer_cli_foreman/compute_resource.rb:43
570
+ msgid "Url"
571
+ msgstr "URL"
572
+
573
+ #: lib/hammer_cli_foreman/compute_resource.rb:44
574
+ #: lib/hammer_cli_foreman/smart_variables.rb:52
575
+ #: lib/hammer_cli_foreman/domain.rb:21
576
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
577
+ msgid "Description"
578
+ msgstr "Beschreibung"
579
+
580
+ #: lib/hammer_cli_foreman/compute_resource.rb:45
581
+ msgid "User"
582
+ msgstr "Benutzer"
583
+
584
+ #: lib/hammer_cli_foreman/compute_resource.rb:62
585
+ msgid "Compute resource created"
586
+ msgstr "Rechnerressource erstellt"
587
+
588
+ #: lib/hammer_cli_foreman/compute_resource.rb:63
589
+ msgid "Could not create the compute resource"
590
+ msgstr "Rechnerressource konnte nicht erstellt werden"
591
+
592
+ #: lib/hammer_cli_foreman/compute_resource.rb:74
593
+ msgid "Compute resource updated"
594
+ msgstr "Rechnerressource aktualisiert"
595
+
596
+ #: lib/hammer_cli_foreman/compute_resource.rb:75
597
+ msgid "Could not update the compute resource"
598
+ msgstr "Rechnerressource konnte nicht aktualisiert werden"
599
+
600
+ #: lib/hammer_cli_foreman/compute_resource.rb:82
601
+ msgid "Compute resource deleted"
602
+ msgstr "Rechnerressource gelöscht"
603
+
604
+ #: lib/hammer_cli_foreman/compute_resource.rb:83
605
+ msgid "Could not delete the compute resource"
606
+ msgstr "Rechnerressource konnte nicht gelöscht werden"
607
+
608
+ #: lib/hammer_cli_foreman/associating_commands.rb:41
609
+ msgid "Associate a hostgroup"
610
+ msgstr "Hostgruppe zuweisen"
611
+
612
+ #: lib/hammer_cli_foreman/associating_commands.rb:46
613
+ msgid "Disassociate a hostgroup"
614
+ msgstr "Hostgruppe lösen"
615
+
616
+ #: lib/hammer_cli_foreman/associating_commands.rb:55
617
+ msgid "Associate an environment"
618
+ msgstr "Umgebung zuweisen"
619
+
620
+ #: lib/hammer_cli_foreman/associating_commands.rb:60
621
+ msgid "Disassociate an environment"
622
+ msgstr "Umgebung lösen"
623
+
624
+ #: lib/hammer_cli_foreman/associating_commands.rb:69
625
+ msgid "Associate a domain"
626
+ msgstr "Domain zuweisen"
627
+
628
+ #: lib/hammer_cli_foreman/associating_commands.rb:74
629
+ msgid "Disassociate a domain"
630
+ msgstr "Domain lösen"
631
+
632
+ #: lib/hammer_cli_foreman/associating_commands.rb:83
633
+ msgid "Associate a medium"
634
+ msgstr "Medium zuweisen"
635
+
636
+ #: lib/hammer_cli_foreman/associating_commands.rb:88
637
+ msgid "Disassociate a medium"
638
+ msgstr "Medium lösen"
639
+
640
+ #: lib/hammer_cli_foreman/associating_commands.rb:97
641
+ msgid "Associate a subnet"
642
+ msgstr "Subnetz zuweisen"
643
+
644
+ #: lib/hammer_cli_foreman/associating_commands.rb:102
645
+ msgid "Disassociate a subnet"
646
+ msgstr "Subnetz lösen"
647
+
648
+ #: lib/hammer_cli_foreman/associating_commands.rb:111
649
+ msgid "Associate a compute resource"
650
+ msgstr "Rechnerressource zuweisen"
651
+
652
+ #: lib/hammer_cli_foreman/associating_commands.rb:116
653
+ msgid "Disassociate a compute resource"
654
+ msgstr "Rechnerressource lösen"
655
+
656
+ #: lib/hammer_cli_foreman/associating_commands.rb:125
657
+ msgid "Associate a smart proxy"
658
+ msgstr "Smart-Proxy zuweisen"
659
+
660
+ #: lib/hammer_cli_foreman/associating_commands.rb:134
661
+ msgid "Disassociate a smart proxy"
662
+ msgstr "Smart-Proxy lösen"
663
+
664
+ #: lib/hammer_cli_foreman/associating_commands.rb:147
665
+ msgid "Associate an user"
666
+ msgstr "Benutzer zuweisen"
667
+
668
+ #: lib/hammer_cli_foreman/associating_commands.rb:155
669
+ msgid "Disassociate an user"
670
+ msgstr "Benutzer lösen"
671
+
672
+ #: lib/hammer_cli_foreman/associating_commands.rb:167
673
+ msgid "Associate an user group"
674
+ msgstr "Benutzergruppe zuweisen"
675
+
676
+ #: lib/hammer_cli_foreman/associating_commands.rb:177
677
+ msgid "Disassociate an user group"
678
+ msgstr "Benutzergruppe lösen"
679
+
680
+ #: lib/hammer_cli_foreman/associating_commands.rb:191
681
+ msgid "Associate a configuration template"
682
+ msgstr "Konfigurationsvorlage zuweisen"
683
+
684
+ #: lib/hammer_cli_foreman/associating_commands.rb:196
685
+ msgid "Disassociate a configuration template"
686
+ msgstr "Konfigurationsvorlage lösen"
687
+
688
+ #: lib/hammer_cli_foreman/associating_commands.rb:205
689
+ msgid "Associate an organization"
690
+ msgstr "Organisation zuweisen"
691
+
692
+ #: lib/hammer_cli_foreman/associating_commands.rb:210
693
+ msgid "Disassociate an organization"
694
+ msgstr "Organisation lösen"
695
+
696
+ #: lib/hammer_cli_foreman/associating_commands.rb:219
697
+ msgid "Associate an operating system"
698
+ msgstr "Betriebssystem zuweisen"
699
+
700
+ #: lib/hammer_cli_foreman/associating_commands.rb:221
701
+ msgid "Operating system has been associated"
702
+ msgstr "Betriebssystem wurde zugewiesen"
703
+
704
+ #: lib/hammer_cli_foreman/associating_commands.rb:222
705
+ msgid "Could not associate the operating system"
706
+ msgstr "Betriebssystem konnte nicht zugewiesen werden"
707
+
708
+ #: lib/hammer_cli_foreman/associating_commands.rb:228
709
+ msgid "Disassociate an operating system"
710
+ msgstr "Betriebssystem lösen"
711
+
712
+ #: lib/hammer_cli_foreman/associating_commands.rb:230
713
+ msgid "Operating system has been disassociated"
714
+ msgstr "Betriebssystem wurde gelöst"
715
+
716
+ #: lib/hammer_cli_foreman/associating_commands.rb:231
717
+ msgid "Could not disassociate the operating system"
718
+ msgstr "Betriebssystem konnte nicht gelöst werden"
719
+
720
+ #: lib/hammer_cli_foreman/associating_commands.rb:240
721
+ msgid "Associate an architecture"
722
+ msgstr "Architektur zuweisen"
723
+
724
+ #: lib/hammer_cli_foreman/associating_commands.rb:242
725
+ msgid "Architecture has been associated"
726
+ msgstr "Architektur wurde zugewiesen"
727
+
728
+ #: lib/hammer_cli_foreman/associating_commands.rb:243
729
+ msgid "Could not associate the architecture"
730
+ msgstr "Architektur konnte nicht zugewiesen werden"
731
+
732
+ #: lib/hammer_cli_foreman/associating_commands.rb:249
733
+ msgid "Disassociate an architecture"
734
+ msgstr "Architektur lösen"
735
+
736
+ #: lib/hammer_cli_foreman/associating_commands.rb:251
737
+ msgid "Architecture has been disassociated"
738
+ msgstr "Architektur wurde gelöst"
739
+
740
+ #: lib/hammer_cli_foreman/associating_commands.rb:252
741
+ msgid "Could not disassociate the architecture"
742
+ msgstr "Architektur konnte nicht gelöst werden"
743
+
744
+ #: lib/hammer_cli_foreman/associating_commands.rb:261
745
+ msgid "Associate a partition table"
746
+ msgstr "Partitionstabelle zuweisen"
747
+
748
+ #: lib/hammer_cli_foreman/associating_commands.rb:263
749
+ msgid "Partition table has been associated"
750
+ msgstr "Partitionstabelle wurde zugewiesen"
751
+
752
+ #: lib/hammer_cli_foreman/associating_commands.rb:264
753
+ msgid "Could not associate the partition table"
754
+ msgstr "Partitionstabelle konnte nicht zugewiesen werden"
755
+
756
+ #: lib/hammer_cli_foreman/associating_commands.rb:270
757
+ msgid "Disassociate a partition table"
758
+ msgstr "Partitionstabelle lösen"
759
+
760
+ #: lib/hammer_cli_foreman/associating_commands.rb:272
761
+ msgid "Partition table has been disassociated"
762
+ msgstr "Partitionstabelle wurde gelöst"
763
+
764
+ #: lib/hammer_cli_foreman/associating_commands.rb:273
765
+ msgid "Could not disassociate the partition table"
766
+ msgstr "Partitionstabelle konnte nicht gelöst werden"
767
+
768
+ #: lib/hammer_cli_foreman/associating_commands.rb:282
769
+ msgid "Assign a user role"
770
+ msgstr "Benutzerrolle zuweisen"
771
+
772
+ #: lib/hammer_cli_foreman/associating_commands.rb:284
773
+ msgid "User role has been assigned"
774
+ msgstr "Benutzerrolle wurde zugewiesen"
775
+
776
+ #: lib/hammer_cli_foreman/associating_commands.rb:285
777
+ msgid "Could not assign the user role"
778
+ msgstr "Benutzerrolle konnte nicht zugewiesen werden"
779
+
780
+ #: lib/hammer_cli_foreman/associating_commands.rb:291
781
+ msgid "Remove a user role"
782
+ msgstr "Benutzerrolle entfernen"
783
+
784
+ #: lib/hammer_cli_foreman/associating_commands.rb:293
785
+ msgid "User role has been removed"
786
+ msgstr "Benutzerrolle wurde entfernt"
787
+
788
+ #: lib/hammer_cli_foreman/associating_commands.rb:294
789
+ msgid "Could not remove the user role"
790
+ msgstr "Benutzerrolle konnte nicht entfernt werden"
791
+
792
+ #: lib/hammer_cli_foreman/smart_variables.rb:9
793
+ #: lib/hammer_cli_foreman/puppet_class.rb:34
794
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
795
+ msgid "Parameter"
796
+ msgstr "Parameter"
797
+
798
+ #: lib/hammer_cli_foreman/smart_variables.rb:10
799
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
800
+ msgid "Default Value"
801
+ msgstr "Standardwert"
802
+
803
+ #: lib/hammer_cli_foreman/smart_variables.rb:11
804
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
805
+ msgid "Override"
806
+ msgstr "Übergehen"
807
+
808
+ #: lib/hammer_cli_foreman/smart_variables.rb:32
809
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
810
+ msgid "Puppet class"
811
+ msgstr "Puppet Klasse"
812
+
813
+ #: lib/hammer_cli_foreman/smart_variables.rb:33
814
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
815
+ msgid "Class Id"
816
+ msgstr "Klassenkennung"
817
+
818
+ #: lib/hammer_cli_foreman/smart_variables.rb:53
819
+ #: lib/hammer_cli_foreman/smart_variables.rb:57
820
+ #: lib/hammer_cli_foreman/template.rb:27
821
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
822
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
823
+ msgid "Type"
824
+ msgstr "Typ"
825
+
826
+ #: lib/hammer_cli_foreman/smart_variables.rb:54
827
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
828
+ msgid "Required"
829
+ msgstr "Benötigt"
830
+
831
+ #: lib/hammer_cli_foreman/smart_variables.rb:56
832
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
833
+ msgid "Validator"
834
+ msgstr "Validator"
835
+
836
+ #: lib/hammer_cli_foreman/smart_variables.rb:58
837
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
838
+ msgid "Rule"
839
+ msgstr "Regel"
840
+
841
+ #: lib/hammer_cli_foreman/smart_variables.rb:60
842
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
843
+ msgid "Override values"
844
+ msgstr "Werte übergehen"
845
+
846
+ #: lib/hammer_cli_foreman/smart_variables.rb:61
847
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
848
+ msgid "Order"
849
+ msgstr "Reihenfolge"
850
+
851
+ #: lib/hammer_cli_foreman/smart_variables.rb:62
852
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
853
+ msgid "Count"
854
+ msgstr "Zähler"
855
+
856
+ #: lib/hammer_cli_foreman/smart_variables.rb:66
857
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
858
+ msgid "Match"
859
+ msgstr "Übereinstimmung"
860
+
861
+ #: lib/hammer_cli_foreman/smart_variables.rb:85
862
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
863
+ msgid "Parameter updated"
864
+ msgstr "Parameter aktualisiert"
865
+
866
+ #: lib/hammer_cli_foreman/smart_variables.rb:86
867
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
868
+ msgid "Could not update the parameter"
869
+ msgstr "Parameter konnte nicht aktualisiert werden"
870
+
871
+ #: lib/hammer_cli_foreman/smart_variables.rb:90
872
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
873
+ msgid "Override this parameter."
874
+ msgstr "Diesen Parameter übergehen."
875
+
876
+ #: lib/hammer_cli_foreman/smart_variables.rb:92
877
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
878
+ msgid "This parameter is required."
879
+ msgstr "Dieser Parameter wird benötigt."
880
+
881
+ #: lib/hammer_cli_foreman/smart_variables.rb:94
882
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
883
+ msgid "Type of the parameter."
884
+ msgstr "Typ des Parameters"
885
+
886
+ #: lib/hammer_cli_foreman/smart_variables.rb:97
887
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
888
+ msgid "Type of the validator."
889
+ msgstr "Typ des Validators."
890
+
891
+ #: lib/hammer_cli_foreman/smart_variables.rb:109
892
+ msgid "Manipulate smart variables."
893
+ msgstr ""
894
+
895
+ #: lib/hammer_cli_foreman/hostgroup.rb:9
896
+ msgid "List of puppetclass ids"
897
+ msgstr ""
898
+
899
+ #: lib/hammer_cli_foreman/hostgroup.rb:11
900
+ msgid "Name of puppet CA proxy"
901
+ msgstr ""
902
+
903
+ #: lib/hammer_cli_foreman/hostgroup.rb:12
904
+ msgid "Name of puppet proxy"
905
+ msgstr ""
906
+
907
+ #: lib/hammer_cli_foreman/hostgroup.rb:41
908
+ msgid "Label"
909
+ msgstr "Label"
910
+
911
+ #: lib/hammer_cli_foreman/hostgroup.rb:43 lib/hammer_cli_foreman/host.rb:160
912
+ msgid "Environment"
913
+ msgstr "Umgebung"
914
+
915
+ #: lib/hammer_cli_foreman/hostgroup.rb:44 lib/hammer_cli_foreman/host.rb:181
916
+ msgid "Model"
917
+ msgstr "Modell"
918
+
919
+ #: lib/hammer_cli_foreman/hostgroup.rb:45
920
+ msgid "Ancestry"
921
+ msgstr "Abstammung"
922
+
923
+ #: lib/hammer_cli_foreman/hostgroup.rb:55 lib/hammer_cli_foreman/host.rb:183
924
+ msgid "Subnet"
925
+ msgstr "Subnetz"
926
+
927
+ #: lib/hammer_cli_foreman/hostgroup.rb:57 lib/hammer_cli_foreman/host.rb:184
928
+ msgid "Domain"
929
+ msgstr "Domäne"
930
+
931
+ #: lib/hammer_cli_foreman/hostgroup.rb:59 lib/hammer_cli_foreman/host.rb:187
932
+ msgid "Partition Table"
933
+ msgstr "Partitionstabelle"
934
+
935
+ #: lib/hammer_cli_foreman/hostgroup.rb:60 lib/hammer_cli_foreman/host.rb:180
936
+ msgid "Medium"
937
+ msgstr "Medium"
938
+
939
+ #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:179
940
+ msgid "Puppet CA Proxy Id"
941
+ msgstr "Puppet CA Proxy-Kennung"
942
+
943
+ #: lib/hammer_cli_foreman/hostgroup.rb:62
944
+ msgid "Puppet Master Proxy Id"
945
+ msgstr "Puppet Master Proxy-Kennung"
946
+
947
+ #: lib/hammer_cli_foreman/hostgroup.rb:63
948
+ msgid "ComputeProfile"
949
+ msgstr "Rechnerprofil"
950
+
951
+ #: lib/hammer_cli_foreman/hostgroup.rb:76
952
+ msgid "Hostgroup created"
953
+ msgstr "Hostgruppe erstellt"
954
+
955
+ #: lib/hammer_cli_foreman/hostgroup.rb:77
956
+ msgid "Could not create the hostgroup"
957
+ msgstr "Hostgruppe konnte nicht erstellt werden"
958
+
959
+ #: lib/hammer_cli_foreman/hostgroup.rb:86
960
+ msgid "Hostgroup updated"
961
+ msgstr "Hostgruppe aktualisiert"
962
+
963
+ #: lib/hammer_cli_foreman/hostgroup.rb:87
964
+ msgid "Could not update the hostgroup"
965
+ msgstr "Hostgruppe konnte nicht aktualisiert werden"
966
+
967
+ #: lib/hammer_cli_foreman/hostgroup.rb:94
968
+ msgid "Hostgroup deleted"
969
+ msgstr "Hostgruppe entfernt"
970
+
971
+ #: lib/hammer_cli_foreman/hostgroup.rb:95
972
+ msgid "Could not delete the hostgroup"
973
+ msgstr "Hostgruppe konnte nicht entfernt werden"
974
+
975
+ #: lib/hammer_cli_foreman/hostgroup.rb:122
976
+ msgid "Create or update parameter for a hostgroup."
977
+ msgstr "Parameter für Hostgruppe erstellen oder aktualisieren."
978
+
979
+ #: lib/hammer_cli_foreman/hostgroup.rb:124
980
+ msgid "Hostgroup parameter updated"
981
+ msgstr "Hostgruppen-Parameter aktualisiert"
982
+
983
+ #: lib/hammer_cli_foreman/hostgroup.rb:125
984
+ msgid "New hostgroup parameter created"
985
+ msgstr "Neuer Hostgruppen-Parameter erstellt"
986
+
987
+ #: lib/hammer_cli_foreman/hostgroup.rb:126
988
+ msgid "Could not set hostgroup parameter"
989
+ msgstr "Hostgruppen-Parameter konnte nicht gesetzt werden"
990
+
991
+ #: lib/hammer_cli_foreman/hostgroup.rb:133
992
+ msgid "Delete parameter for a hostgroup."
993
+ msgstr "Parameter für Hostgruppe löschen."
994
+
995
+ #: lib/hammer_cli_foreman/hostgroup.rb:135
996
+ msgid "Hostgroup parameter deleted"
997
+ msgstr "Hostgruppen-Parameter entfernt"
998
+
999
+ #: lib/hammer_cli_foreman/template.rb:71
1000
+ msgid "List available config template kinds."
1001
+ msgstr "Verfügbare Konfigurationsvorlagenarten anzeigen."
1002
+
1003
+ #: lib/hammer_cli_foreman/template.rb:90
1004
+ msgid "View config template content."
1005
+ msgstr "Konfigurationsvorlageninhalte anzeigen."
1006
+
1007
+ #: lib/hammer_cli_foreman/template.rb:102
1008
+ #: lib/hammer_cli_foreman/template.rb:120
1009
+ msgid "Path to a file that contains the template"
1010
+ msgstr "Pfad zur Datei, dass die Vorlage enthält"
1011
+
1012
+ #: lib/hammer_cli_foreman/template.rb:104
1013
+ #: lib/hammer_cli_foreman/template.rb:122
1014
+ msgid "Template type. Eg. snippet, script, provision"
1015
+ msgstr "Vorlagentyp, z. B. Snippet, Skript, Bereitstellung"
1016
+
1017
+ #: lib/hammer_cli_foreman/template.rb:106
1018
+ msgid "Config template created"
1019
+ msgstr "Konfigurationsvorlage erstellt"
1020
+
1021
+ #: lib/hammer_cli_foreman/template.rb:107
1022
+ msgid "Could not create the config template"
1023
+ msgstr "Konfigurationsvorlage konnte nicht erstellt werden"
1024
+
1025
+ #: lib/hammer_cli_foreman/template.rb:124
1026
+ msgid "Config template updated"
1027
+ msgstr "Konfigurationsvorlage aktualisiert"
1028
+
1029
+ #: lib/hammer_cli_foreman/template.rb:125
1030
+ msgid "Could not update the config template"
1031
+ msgstr "Konfigurationsvorlage konnte nicht aktualisiert werden"
1032
+
1033
+ #: lib/hammer_cli_foreman/template.rb:138
1034
+ msgid "Config template deleted"
1035
+ msgstr "Konfigurationsvorlage gelöscht"
1036
+
1037
+ #: lib/hammer_cli_foreman/template.rb:139
1038
+ msgid "Could not delete the config template"
1039
+ msgstr "Konfigurationsvorlage konnte nicht gelöscht werden"
1040
+
1041
+ #: lib/hammer_cli_foreman/host.rb:36
1042
+ msgid "Host parameters."
1043
+ msgstr "Hostparameter."
1044
+
1045
+ #: lib/hammer_cli_foreman/host.rb:38
1046
+ msgid "Compute resource attributes."
1047
+ msgstr "Rechnerressourcenattribute."
1048
+
1049
+ #: lib/hammer_cli_foreman/host.rb:40
1050
+ msgid "Volume parameters"
1051
+ msgstr "Datenträgerparameter"
1052
+
1053
+ #: lib/hammer_cli_foreman/host.rb:42
1054
+ msgid "Interface parameters."
1055
+ msgstr "Schnittstellenparameter."
1056
+
1057
+ #: lib/hammer_cli_foreman/host.rb:127
1058
+ msgid "Host Group"
1059
+ msgstr "Hostgruppe"
1060
+
1061
+ #: lib/hammer_cli_foreman/host.rb:128 lib/hammer_cli_foreman/host.rb:197
1062
+ #: lib/hammer_cli_foreman/host.rb:210
1063
+ msgid "IP"
1064
+ msgstr "IP"
1065
+
1066
+ #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:198
1067
+ #: lib/hammer_cli_foreman/host.rb:211
1068
+ msgid "MAC"
1069
+ msgstr "MAC"
1070
+
1071
+ #: lib/hammer_cli_foreman/host.rb:158
1072
+ msgid "Cert name"
1073
+ msgstr "Zertifikatsname"
1074
+
1075
+ #: lib/hammer_cli_foreman/host.rb:162
1076
+ msgid "Managed"
1077
+ msgstr "Verwaltet"
1078
+
1079
+ #: lib/hammer_cli_foreman/host.rb:163
1080
+ msgid "Enabled"
1081
+ msgstr "Aktiviert"
1082
+
1083
+ #: lib/hammer_cli_foreman/host.rb:164
1084
+ msgid "Build"
1085
+ msgstr "Erstelle"
1086
+
1087
+ #: lib/hammer_cli_foreman/host.rb:166
1088
+ msgid "Use image"
1089
+ msgstr "Abbild verwenden"
1090
+
1091
+ #: lib/hammer_cli_foreman/host.rb:167
1092
+ msgid "Disk"
1093
+ msgstr "Festplatte"
1094
+
1095
+ #: lib/hammer_cli_foreman/host.rb:168
1096
+ msgid "Image file"
1097
+ msgstr "Abbilddatei"
1098
+
1099
+ #: lib/hammer_cli_foreman/host.rb:170
1100
+ msgid "SP Name"
1101
+ msgstr "SP-Name"
1102
+
1103
+ #: lib/hammer_cli_foreman/host.rb:171
1104
+ msgid "SP IP"
1105
+ msgstr "SP-Kennung"
1106
+
1107
+ #: lib/hammer_cli_foreman/host.rb:172
1108
+ msgid "SP MAC"
1109
+ msgstr "SP MAC"
1110
+
1111
+ #: lib/hammer_cli_foreman/host.rb:174
1112
+ msgid "SP Subnet"
1113
+ msgstr "SP-Subnetz"
1114
+
1115
+ #: lib/hammer_cli_foreman/host.rb:176
1116
+ msgid "Installed at"
1117
+ msgstr "Installiert um"
1118
+
1119
+ #: lib/hammer_cli_foreman/host.rb:182
1120
+ msgid "Owner Id"
1121
+ msgstr "Eigentümerkennung"
1122
+
1123
+ #: lib/hammer_cli_foreman/host.rb:185
1124
+ msgid "Puppet Proxy Id"
1125
+ msgstr "Puppet-Proxy-ID"
1126
+
1127
+ #: lib/hammer_cli_foreman/host.rb:186
1128
+ msgid "Owner Type"
1129
+ msgstr "Eigentümertyp"
1130
+
1131
+ #: lib/hammer_cli_foreman/host.rb:189
1132
+ msgid "Image"
1133
+ msgstr "Abbild"
1134
+
1135
+ #: lib/hammer_cli_foreman/host.rb:190
1136
+ msgid "Compute Resource"
1137
+ msgstr "Rechnerresource"
1138
+
1139
+ #: lib/hammer_cli_foreman/host.rb:192
1140
+ msgid "Comment"
1141
+ msgstr "Kommentar"
1142
+
1143
+ #: lib/hammer_cli_foreman/host.rb:194
1144
+ msgid "BMC Network Interfaces"
1145
+ msgstr "BMC-Netzwerkschnittstellen"
1146
+
1147
+ #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
1148
+ msgid "Domain Id"
1149
+ msgstr "Domain-Kennung"
1150
+
1151
+ #: lib/hammer_cli_foreman/host.rb:200 lib/hammer_cli_foreman/host.rb:213
1152
+ msgid "Domain Name"
1153
+ msgstr "Domainname"
1154
+
1155
+ #: lib/hammer_cli_foreman/host.rb:201 lib/hammer_cli_foreman/host.rb:214
1156
+ msgid "Subnet Id"
1157
+ msgstr "Subnetzkennung"
1158
+
1159
+ #: lib/hammer_cli_foreman/host.rb:202 lib/hammer_cli_foreman/host.rb:215
1160
+ msgid "Subnet Name"
1161
+ msgstr "Subnetzname"
1162
+
1163
+ #: lib/hammer_cli_foreman/host.rb:203
1164
+ msgid "BMC Username"
1165
+ msgstr "BMC-Benutzername"
1166
+
1167
+ #: lib/hammer_cli_foreman/host.rb:204
1168
+ msgid "BMC Password"
1169
+ msgstr "BMC-Passwort"
1170
+
1171
+ #: lib/hammer_cli_foreman/host.rb:207
1172
+ msgid "Managed Network Interfaces"
1173
+ msgstr "Verwaltete Netzwerkschnittstellen"
1174
+
1175
+ #: lib/hammer_cli_foreman/host.rb:231
1176
+ msgid "Status"
1177
+ msgstr "Status"
1178
+
1179
+ #: lib/hammer_cli_foreman/host.rb:232
1180
+ msgid "Power"
1181
+ msgstr "Strom"
1182
+
1183
+ #: lib/hammer_cli_foreman/host.rb:268
1184
+ msgid "Puppet run triggered"
1185
+ msgstr "Puppet-Durchlauf ausgelöst"
1186
+
1187
+ #: lib/hammer_cli_foreman/host.rb:319
1188
+ msgid "Host created"
1189
+ msgstr "Host erstellt"
1190
+
1191
+ #: lib/hammer_cli_foreman/host.rb:320
1192
+ msgid "Could not create the host"
1193
+ msgstr "Host konnte nicht erstellt werden"
1194
+
1195
+ #: lib/hammer_cli_foreman/host.rb:341
1196
+ msgid "Host updated"
1197
+ msgstr "Host aktualisiert"
1198
+
1199
+ #: lib/hammer_cli_foreman/host.rb:342
1200
+ msgid "Could not update the host"
1201
+ msgstr "Host konnte nicht aktualisiert werden"
1202
+
1203
+ #: lib/hammer_cli_foreman/host.rb:349
1204
+ msgid "Host deleted"
1205
+ msgstr "Host gelöscht"
1206
+
1207
+ #: lib/hammer_cli_foreman/host.rb:350
1208
+ msgid "Could not delete the host"
1209
+ msgstr "Host konnte nicht gelöscht werden"
1210
+
1211
+ #: lib/hammer_cli_foreman/host.rb:357
1212
+ msgid "Create or update parameter for a host."
1213
+ msgstr "Parameter für einen Host erstellen oder aktualisieren."
1214
+
1215
+ #: lib/hammer_cli_foreman/host.rb:359
1216
+ msgid "Host parameter updated"
1217
+ msgstr "Hostparameter aktualisiert"
1218
+
1219
+ #: lib/hammer_cli_foreman/host.rb:360
1220
+ msgid "New host parameter created"
1221
+ msgstr "Neuer Hostparameter erstellt"
1222
+
1223
+ #: lib/hammer_cli_foreman/host.rb:361
1224
+ msgid "Could not set host parameter"
1225
+ msgstr "Hostparameter konnte nicht festgelegt werden"
1226
+
1227
+ #: lib/hammer_cli_foreman/host.rb:373
1228
+ msgid "Delete parameter for a host."
1229
+ msgstr "Parameter für einen Host löschen."
1230
+
1231
+ #: lib/hammer_cli_foreman/host.rb:375
1232
+ msgid "Host parameter deleted"
1233
+ msgstr "Hostparameter gelöscht"
1234
+
1235
+ #: lib/hammer_cli_foreman/host.rb:390
1236
+ msgid "Power a host on"
1237
+ msgstr "Host anschalten"
1238
+
1239
+ #: lib/hammer_cli_foreman/host.rb:391
1240
+ msgid "The host is starting."
1241
+ msgstr "Host wird gestartet."
1242
+
1243
+ #: lib/hammer_cli_foreman/host.rb:408
1244
+ msgid "Force turning off a host"
1245
+ msgstr "Abschalten von Host erzwingen"
1246
+
1247
+ #: lib/hammer_cli_foreman/host.rb:413
1248
+ msgid "Power a host off"
1249
+ msgstr "Host ausschalten"
1250
+
1251
+ #: lib/hammer_cli_foreman/host.rb:425
1252
+ msgid "Power off forced."
1253
+ msgstr "Abschalten erzwingen."
1254
+
1255
+ #: lib/hammer_cli_foreman/host.rb:427
1256
+ msgid "Powering the host off."
1257
+ msgstr "Host wird abgeschaltet."
1258
+
1259
+ #: lib/hammer_cli_foreman/host.rb:444
1260
+ msgid "Reboot a host"
1261
+ msgstr "Host neustarten"
1262
+
1263
+ #: lib/hammer_cli_foreman/host.rb:445
1264
+ msgid "Host reboot started."
1265
+ msgstr "Host wird neu gestartet."
1266
+
1267
+ #: lib/hammer_cli_foreman/commands.rb:77
1268
+ msgid "Received data of unknown format"
1269
+ msgstr "Daten in unbekanntem Format erhalten"
1270
+
1271
+ #: lib/hammer_cli_foreman/commands.rb:244
1272
+ msgid "List next page? (%s): "
1273
+ msgstr "Nächste Seite auflisten? (%s): "
1274
+
1275
+ #: lib/hammer_cli_foreman/commands.rb:448
1276
+ msgid "Associate a resource"
1277
+ msgstr "Ressource zuweisen"
1278
+
1279
+ #: lib/hammer_cli_foreman/commands.rb:470
1280
+ msgid "Disassociate a resource"
1281
+ msgstr "Ressource lösen"
1282
+
1283
+ #: lib/hammer_cli_foreman/references.rb:8
1284
+ msgid "Created at"
1285
+ msgstr "Erstellt um"
1286
+
1287
+ #: lib/hammer_cli_foreman/references.rb:9
1288
+ msgid "Updated at"
1289
+ msgstr "Aktualisiert um"
1290
+
1291
+ #: lib/hammer_cli_foreman/references.rb:18
1292
+ #: lib/hammer_cli_foreman/location.rb:37
1293
+ msgid "Organizations"
1294
+ msgstr "Organisationen"
1295
+
1296
+ #: lib/hammer_cli_foreman/references.rb:26
1297
+ msgid "Users"
1298
+ msgstr "Benutzer"
1299
+
1300
+ #: lib/hammer_cli_foreman/references.rb:34
1301
+ msgid "User groups"
1302
+ msgstr "Benutzergruppen"
1303
+
1304
+ #: lib/hammer_cli_foreman/references.rb:42
1305
+ msgid "Smart proxies"
1306
+ msgstr "Smart Proxys"
1307
+
1308
+ #: lib/hammer_cli_foreman/references.rb:50
1309
+ msgid "Compute resources"
1310
+ msgstr "Rechnerresourcen"
1311
+
1312
+ #: lib/hammer_cli_foreman/references.rb:58
1313
+ msgid "Installation media"
1314
+ msgstr "Installationsmedien"
1315
+
1316
+ #: lib/hammer_cli_foreman/references.rb:66
1317
+ msgid "Templates"
1318
+ msgstr "Vorlagen"
1319
+
1320
+ #: lib/hammer_cli_foreman/references.rb:74
1321
+ msgid "Domains"
1322
+ msgstr "Domänen"
1323
+
1324
+ #: lib/hammer_cli_foreman/references.rb:82
1325
+ msgid "Environments"
1326
+ msgstr "Umgebungen"
1327
+
1328
+ #: lib/hammer_cli_foreman/references.rb:90
1329
+ msgid "Hostgroups"
1330
+ msgstr "Hostgruppen"
1331
+
1332
+ #: lib/hammer_cli_foreman/references.rb:98
1333
+ msgid "Subnets"
1334
+ msgstr "Subnetze"
1335
+
1336
+ #: lib/hammer_cli_foreman/references.rb:107
1337
+ msgid "Parameters"
1338
+ msgstr "Parameter"
1339
+
1340
+ #: lib/hammer_cli_foreman/references.rb:115
1341
+ msgid "Puppetclasses"
1342
+ msgstr "Puppet-Klassen"
1343
+
1344
+ #: lib/hammer_cli_foreman/references.rb:123
1345
+ msgid "Operating systems"
1346
+ msgstr "Betriebssysteme"
1347
+
1348
+ #: lib/hammer_cli_foreman/references.rb:131
1349
+ msgid "Roles"
1350
+ msgstr "Rollen"
1351
+
1352
+ #: lib/hammer_cli_foreman/references.rb:139
1353
+ msgid "External user groups"
1354
+ msgstr "Externe Benutzergruppen"
1355
+
1356
+ #: lib/hammer_cli_foreman/resource_supported_test.rb:11
1357
+ msgid "The server does not support such operation."
1358
+ msgstr "Diese Operation wird vom Server nicht unterstützt."
1359
+
1360
+ #: lib/hammer_cli_foreman/operating_system.rb:11
1361
+ msgid "Full name"
1362
+ msgstr "Vollständiger Name"
1363
+
1364
+ #: lib/hammer_cli_foreman/operating_system.rb:12
1365
+ msgid "Release name"
1366
+ msgstr "Release-Name"
1367
+
1368
+ #: lib/hammer_cli_foreman/operating_system.rb:13
1369
+ msgid "Family"
1370
+ msgstr "Familie"
1371
+
1372
+ #: lib/hammer_cli_foreman/operating_system.rb:23
1373
+ msgid "Major version"
1374
+ msgstr "Hauptversion"
1375
+
1376
+ #: lib/hammer_cli_foreman/operating_system.rb:24
1377
+ msgid "Minor version"
1378
+ msgstr "Nebenrelease"
1379
+
1380
+ #: lib/hammer_cli_foreman/operating_system.rb:25
1381
+ msgid "Partition tables"
1382
+ msgstr "Partitionstabellen"
1383
+
1384
+ #: lib/hammer_cli_foreman/operating_system.rb:28
1385
+ msgid "Default templates"
1386
+ msgstr "Standardvorlagen"
1387
+
1388
+ #: lib/hammer_cli_foreman/operating_system.rb:31
1389
+ msgid "Architectures"
1390
+ msgstr "Architekturen"
1391
+
1392
+ #: lib/hammer_cli_foreman/operating_system.rb:46
1393
+ #: lib/hammer_cli_foreman/operating_system.rb:73
1394
+ msgid "set associated architectures"
1395
+ msgstr "Zugehörige Architekturen festlegen"
1396
+
1397
+ #: lib/hammer_cli_foreman/operating_system.rb:48
1398
+ #: lib/hammer_cli_foreman/operating_system.rb:75
1399
+ msgid "set associated templates"
1400
+ msgstr "Zugehörige Vorlagen festlegen"
1401
+
1402
+ #: lib/hammer_cli_foreman/operating_system.rb:50
1403
+ #: lib/hammer_cli_foreman/operating_system.rb:77
1404
+ msgid "set associated installation media"
1405
+ msgstr "Zugehörige Installationsmedien festlegen"
1406
+
1407
+ #: lib/hammer_cli_foreman/operating_system.rb:52
1408
+ #: lib/hammer_cli_foreman/operating_system.rb:79
1409
+ msgid "set associated partition tables"
1410
+ msgstr "Zugehörige Partitionstabellen festlegen"
1411
+
1412
+ #: lib/hammer_cli_foreman/operating_system.rb:55
1413
+ msgid "Operating system created"
1414
+ msgstr "Betriebssystem erstellt"
1415
+
1416
+ #: lib/hammer_cli_foreman/operating_system.rb:56
1417
+ msgid "Could not create the operating system"
1418
+ msgstr "Betriebssystem konnte nicht erstellt werden"
1419
+
1420
+ #: lib/hammer_cli_foreman/operating_system.rb:82
1421
+ msgid "Operating system updated"
1422
+ msgstr "Betriebssystem aktualisiert"
1423
+
1424
+ #: lib/hammer_cli_foreman/operating_system.rb:83
1425
+ msgid "Could not update the operating system"
1426
+ msgstr "Betriebssystem konnte nicht aktualisiert werden"
1427
+
1428
+ #: lib/hammer_cli_foreman/operating_system.rb:99
1429
+ msgid "Operating system deleted"
1430
+ msgstr "Betriebssystem entfernt"
1431
+
1432
+ #: lib/hammer_cli_foreman/operating_system.rb:100
1433
+ msgid "Could not delete the operating system"
1434
+ msgstr "Betriebssystem konnte nicht gelöscht werden"
1435
+
1436
+ #: lib/hammer_cli_foreman/operating_system.rb:107
1437
+ msgid "Create or update parameter for an operating system."
1438
+ msgstr "Parameter für ein Betriebssystem konnten nicht erstellt oder aktualisiert werden."
1439
+
1440
+ #: lib/hammer_cli_foreman/operating_system.rb:109
1441
+ msgid "Operating system parameter updated"
1442
+ msgstr "Betriebssystemparameter aktualisiert"
1443
+
1444
+ #: lib/hammer_cli_foreman/operating_system.rb:110
1445
+ msgid "New operating system parameter created"
1446
+ msgstr "Neuer Betriebssystemparameter erstellt"
1447
+
1448
+ #: lib/hammer_cli_foreman/operating_system.rb:111
1449
+ msgid "Could not set operating system parameter"
1450
+ msgstr "Betriebssystemparameter konnte nicht festgelegt werden"
1451
+
1452
+ #: lib/hammer_cli_foreman/operating_system.rb:123
1453
+ msgid "Delete parameter for an operating system."
1454
+ msgstr "Parameter für ein Betriebssystem löschen."
1455
+
1456
+ #: lib/hammer_cli_foreman/operating_system.rb:125
1457
+ msgid "operating system parameter deleted"
1458
+ msgstr "Betriebssystemparameter gelöscht"
1459
+
1460
+ #: lib/hammer_cli_foreman/operating_system.rb:140
1461
+ #: lib/hammer_cli_foreman/operating_system.rb:206
1462
+ msgid "operatingsystem id"
1463
+ msgstr "Betriebssystemkennung"
1464
+
1465
+ #: lib/hammer_cli_foreman/operating_system.rb:141
1466
+ msgid "config template id to be set"
1467
+ msgstr "ID der festzulegenden Konfigurationsvorlage"
1468
+
1469
+ #: lib/hammer_cli_foreman/operating_system.rb:144
1470
+ msgid ""
1471
+ "[%{config_template_name}] was set as default %{template_kind_name} template"
1472
+ msgstr "[%{config_template_name}] wurde als standardmäßige %{template_kind_name} Vorlage festgelegt"
1473
+
1474
+ #: lib/hammer_cli_foreman/operating_system.rb:145
1475
+ msgid "Could not set the os default template"
1476
+ msgstr "Betriebssystem-Standardvorlage konnte nicht festgelegt werden"
1477
+
1478
+ #: lib/hammer_cli_foreman/operating_system.rb:207
1479
+ msgid "Type of the config template"
1480
+ msgstr "Typ der Konfigurationsvorlage"
1481
+
1482
+ #: lib/hammer_cli_foreman/operating_system.rb:209
1483
+ msgid "Default template deleted"
1484
+ msgstr "Standardvorlage gelöscht"
1485
+
1486
+ #: lib/hammer_cli_foreman/operating_system.rb:210
1487
+ msgid "Could not delete the default template"
1488
+ msgstr "Standardvorlage konnte nicht gelöscht werden"
1489
+
1490
+ #: lib/hammer_cli_foreman/operating_system.rb:217
1491
+ msgid "Default template of type %s not found"
1492
+ msgstr "Standardvorlage von Typ %s nicht gefunden"
1493
+
1494
+ #: lib/hammer_cli_foreman/smart_proxy.rb:13
1495
+ msgid "URL"
1496
+ msgstr "URL"
1497
+
1498
+ #: lib/hammer_cli_foreman/smart_proxy.rb:14
1499
+ #: lib/hammer_cli_foreman/smart_proxy.rb:29
1500
+ msgid "Features"
1501
+ msgstr "Eigenschaften"
1502
+
1503
+ #: lib/hammer_cli_foreman/smart_proxy.rb:41
1504
+ msgid "Smart proxy created"
1505
+ msgstr "Smart Proxy erstellt"
1506
+
1507
+ #: lib/hammer_cli_foreman/smart_proxy.rb:42
1508
+ msgid "Could not create the proxy"
1509
+ msgstr "Smart Proxy konnte nicht erstellt werden"
1510
+
1511
+ #: lib/hammer_cli_foreman/smart_proxy.rb:49
1512
+ msgid "Smart proxy updated"
1513
+ msgstr "Smart Proxy aktualisiert"
1514
+
1515
+ #: lib/hammer_cli_foreman/smart_proxy.rb:50
1516
+ msgid "Could not update the proxy"
1517
+ msgstr "Proxy konnte nicht aktualisiert werden"
1518
+
1519
+ #: lib/hammer_cli_foreman/smart_proxy.rb:57
1520
+ msgid "Smart proxy deleted"
1521
+ msgstr "Smart Proxy entfernt"
1522
+
1523
+ #: lib/hammer_cli_foreman/smart_proxy.rb:58
1524
+ msgid "Could not delete the proxy"
1525
+ msgstr "Smart Proxy konnte nicht entfernt werden"
1526
+
1527
+ #: lib/hammer_cli_foreman/smart_proxy.rb:69
1528
+ msgid "Puppet classes were imported"
1529
+ msgstr "Puppet-Klassen wurden importiert"
1530
+
1531
+ #: lib/hammer_cli_foreman/smart_proxy.rb:70
1532
+ msgid "Import of puppet classes failed"
1533
+ msgstr "Import der Puppet-Klassen fehlgeschlagen"
1534
+
1535
+ #: lib/hammer_cli_foreman/smart_proxy.rb:72
1536
+ msgid "Do not run the import"
1537
+ msgstr "Import nicht ausführen"
1538
+
1539
+ #: lib/hammer_cli_foreman/smart_proxy.rb:92
1540
+ msgid "Smart proxy features were refreshed"
1541
+ msgstr "Smart-Proxy-Funktionen wurden aktualisiert"
1542
+
1543
+ #: lib/hammer_cli_foreman/smart_proxy.rb:93
1544
+ msgid "Refresh of smart proxy features failed"
1545
+ msgstr "Fehler beim Aktualisieren von Smart-Proxy-Funktionen"
1546
+
1547
+ #: lib/hammer_cli_foreman/environment.rb:34
1548
+ msgid "Environment created"
1549
+ msgstr "Umgebung erstellt"
1550
+
1551
+ #: lib/hammer_cli_foreman/environment.rb:35
1552
+ msgid "Could not create the environment"
1553
+ msgstr "Umgebung konnte nicht erstellt werden"
1554
+
1555
+ #: lib/hammer_cli_foreman/environment.rb:42
1556
+ msgid "Environment updated"
1557
+ msgstr "Umgebung aktualisiert"
1558
+
1559
+ #: lib/hammer_cli_foreman/environment.rb:43
1560
+ msgid "Could not update the environment"
1561
+ msgstr "Umgebung konnte nicht aktualisiert werden"
1562
+
1563
+ #: lib/hammer_cli_foreman/environment.rb:50
1564
+ msgid "Environment deleted"
1565
+ msgstr "Umgebung gelöscht"
1566
+
1567
+ #: lib/hammer_cli_foreman/environment.rb:51
1568
+ msgid "Could not delete the environment"
1569
+ msgstr "Umgebung konnte nicht gelöscht werden"
1570
+
1571
+ #: lib/hammer_cli_foreman/puppet_class.rb:33
1572
+ msgid "Smart variables"
1573
+ msgstr "Smart variables"
1574
+
1575
+ #: lib/hammer_cli_foreman/puppet_class.rb:35
1576
+ msgid "Default value"
1577
+ msgstr "Standardwert"
1578
+
1579
+ #: lib/hammer_cli_foreman/puppet_class.rb:37
1580
+ msgid "Smart class parameters"
1581
+ msgstr "Smart-Klassenparameter"
1582
+
1583
+ #: lib/hammer_cli_foreman/domain.rb:22
1584
+ msgid "DNS Id"
1585
+ msgstr "DNS-Kennung"
1586
+
1587
+ #: lib/hammer_cli_foreman/domain.rb:35
1588
+ msgid "Domain [%{name}] created"
1589
+ msgstr "Domain [%{name}] erstellt"
1590
+
1591
+ #: lib/hammer_cli_foreman/domain.rb:36
1592
+ msgid "Could not create the domain"
1593
+ msgstr "Domain konnte nicht erstellt werden"
1594
+
1595
+ #: lib/hammer_cli_foreman/domain.rb:38 lib/hammer_cli_foreman/domain.rb:48
1596
+ msgid "Full name describing the domain"
1597
+ msgstr "Voller Name der die Domäne beschreibet"
1598
+
1599
+ #: lib/hammer_cli_foreman/domain.rb:45
1600
+ msgid "Domain [%{name}] updated"
1601
+ msgstr "Domain [%{name}] aktualisiert"
1602
+
1603
+ #: lib/hammer_cli_foreman/domain.rb:46
1604
+ msgid "Could not update the domain"
1605
+ msgstr "Domain konnte nicht aktualisiert werden"
1606
+
1607
+ #: lib/hammer_cli_foreman/domain.rb:55
1608
+ msgid "Domain [%{name}] deleted"
1609
+ msgstr "Domain [%{name}] gelöscht"
1610
+
1611
+ #: lib/hammer_cli_foreman/domain.rb:56
1612
+ msgid "Could not delete the domain"
1613
+ msgstr "Domain konnte nicht gelöscht werden"
1614
+
1615
+ #: lib/hammer_cli_foreman/domain.rb:63
1616
+ msgid "Create or update parameter for a domain."
1617
+ msgstr "Parameter für eine Domain erstellen oder aktualisieren."
1618
+
1619
+ #: lib/hammer_cli_foreman/domain.rb:65
1620
+ msgid "Domain parameter updated"
1621
+ msgstr "Domainparameter aktualisiert"
1622
+
1623
+ #: lib/hammer_cli_foreman/domain.rb:66
1624
+ msgid "New domain parameter created"
1625
+ msgstr "Neuer Domainparameter erstellt"
1626
+
1627
+ #: lib/hammer_cli_foreman/domain.rb:67
1628
+ msgid "Could not set domain parameter"
1629
+ msgstr "Domainparameter konnte nicht festgelegt werden"
1630
+
1631
+ #: lib/hammer_cli_foreman/domain.rb:79
1632
+ msgid "Delete parameter for a domain."
1633
+ msgstr "Parameter für eine Domain löschen."
1634
+
1635
+ #: lib/hammer_cli_foreman/domain.rb:81
1636
+ msgid "Domain parameter deleted"
1637
+ msgstr "Domainparameter gelöscht"
1638
+
1639
+ #: lib/hammer_cli_foreman/auth.rb:7
1640
+ msgid "Set credentials"
1641
+ msgstr "Anmeldedaten festlegen"
1642
+
1643
+ #: lib/hammer_cli_foreman/auth.rb:20
1644
+ msgid "Wipe your credentials"
1645
+ msgstr "Berechtigungsnachweise löschen"
1646
+
1647
+ #: lib/hammer_cli_foreman/auth.rb:26
1648
+ msgid "Credentials deleted."
1649
+ msgstr "Anmeldedaten gelöscht."
1650
+
1651
+ #: lib/hammer_cli_foreman/auth.rb:33
1652
+ msgid "Information about current connections"
1653
+ msgstr "Informationen über aktuelle Verbindungen"
1654
+
1655
+ #: lib/hammer_cli_foreman/auth.rb:37
1656
+ msgid "You are logged in as '%s'"
1657
+ msgstr "Sie sind als '%s' angemeldet"
1658
+
1659
+ #: lib/hammer_cli_foreman/auth.rb:39
1660
+ msgid ""
1661
+ "You are currently not logged in to any service.\\nUse the service to set "
1662
+ "credentials."
1663
+ msgstr "Sie sind derzeit bei keinem Service angemeldet.\\nVerwenden Sie den Service, um Berechtigungsnachweise festzulegen."
1664
+
1665
+ #: lib/hammer_cli_foreman/usergroup.rb:31
1666
+ msgid "User group [%<name>s] created"
1667
+ msgstr "Benutzergruppe [%<name>s] erstellt"
1668
+
1669
+ #: lib/hammer_cli_foreman/usergroup.rb:32
1670
+ msgid "Could not create the user group"
1671
+ msgstr "Benutzergruppe konnte nicht erstellt werden"
1672
+
1673
+ #: lib/hammer_cli_foreman/usergroup.rb:38
1674
+ msgid "User group [%<name>s] updated"
1675
+ msgstr "Benutzergruppe [%<name>s] aktualisiert"
1676
+
1677
+ #: lib/hammer_cli_foreman/usergroup.rb:39
1678
+ msgid "Could not update the user group"
1679
+ msgstr "Benutzergruppe konnte nicht aktualisiert werden"
1680
+
1681
+ #: lib/hammer_cli_foreman/usergroup.rb:45
1682
+ msgid "User group [%<name>s] deleted"
1683
+ msgstr "Benutzergruppe [%<name>s] gelöscht"
1684
+
1685
+ #: lib/hammer_cli_foreman/usergroup.rb:46
1686
+ msgid "Could not delete the user group"
1687
+ msgstr "Benutzergruppe konnte nicht gelöscht werden"
1688
+
1689
+ #: lib/hammer_cli_foreman/image.rb:8
1690
+ msgid "View and manage compute resource's images"
1691
+ msgstr "Images der Rechnerressource anzeigen und verwalten"
1692
+
1693
+ #: lib/hammer_cli_foreman/image.rb:56
1694
+ msgid "Show images available for addition"
1695
+ msgstr "Verfügbare Images anzeigen"
1696
+
1697
+ #: lib/hammer_cli_foreman/image.rb:81
1698
+ msgid "Image created"
1699
+ msgstr "Abbild erstellt"
1700
+
1701
+ #: lib/hammer_cli_foreman/image.rb:82
1702
+ msgid "Could not create the image"
1703
+ msgstr "Image konnte nicht erstellt werden"
1704
+
1705
+ #: lib/hammer_cli_foreman/image.rb:90
1706
+ msgid "Image updated"
1707
+ msgstr "Abbild aktualisiert"
1708
+
1709
+ #: lib/hammer_cli_foreman/image.rb:91
1710
+ msgid "Could not update the image"
1711
+ msgstr "Image konnte nicht aktualisiert werden"
1712
+
1713
+ #: lib/hammer_cli_foreman/image.rb:99
1714
+ msgid "Image deleted"
1715
+ msgstr "Abbild gelöscht"
1716
+
1717
+ #: lib/hammer_cli_foreman/image.rb:100
1718
+ msgid "Could not delete the image"
1719
+ msgstr "Image konnte nicht gelöscht werden"
1720
+
1721
+ #: lib/hammer_cli_foreman/partition_table.rb:31
1722
+ msgid "View partition table content."
1723
+ msgstr "Inhalte der Partitionstabelle anzeigen."
1724
+
1725
+ #: lib/hammer_cli_foreman/partition_table.rb:43
1726
+ #: lib/hammer_cli_foreman/partition_table.rb:54
1727
+ msgid "Path to a file that contains the partition layout"
1728
+ msgstr "Pfad zur Datei, die das Partitionslayout enthält"
1729
+
1730
+ #: lib/hammer_cli_foreman/partition_table.rb:46
1731
+ msgid "Partition table created"
1732
+ msgstr "Partitionstabelle erstellt"
1733
+
1734
+ #: lib/hammer_cli_foreman/partition_table.rb:47
1735
+ msgid "Could not create the partition table"
1736
+ msgstr "Partitionstabelle konnte nicht erstellt werden"
1737
+
1738
+ #: lib/hammer_cli_foreman/partition_table.rb:57
1739
+ msgid "Partition table updated"
1740
+ msgstr "Partitionstabelle aktualisiert"
1741
+
1742
+ #: lib/hammer_cli_foreman/partition_table.rb:58
1743
+ msgid "Could not update the partition table"
1744
+ msgstr "Partitionstabelle konnte nicht aktualisiert werden"
1745
+
1746
+ #: lib/hammer_cli_foreman/partition_table.rb:65
1747
+ msgid "Partition table deleted"
1748
+ msgstr "Partitionstabelle gelöscht"
1749
+
1750
+ #: lib/hammer_cli_foreman/partition_table.rb:66
1751
+ msgid "Could not delete the partition table"
1752
+ msgstr "Partitionstabelle konnte nicht gelöscht werden"
1753
+
1754
+ #: lib/hammer_cli_foreman/credentials.rb:10
1755
+ msgid "[Foreman] username: "
1756
+ msgstr "[Foreman]-Benutzername: "
1757
+
1758
+ #: lib/hammer_cli_foreman/credentials.rb:15
1759
+ msgid "[Foreman] password for %s: "
1760
+ msgstr "[Foreman]-Passwort für %s: "
1761
+
1762
+ #: lib/hammer_cli_foreman/id_resolver.rb:32
1763
+ msgid "Architecture name"
1764
+ msgstr "Architekturname"
1765
+
1766
+ #: lib/hammer_cli_foreman/id_resolver.rb:33
1767
+ msgid "Compute resource name"
1768
+ msgstr "Rechnerressourcenname"
1769
+
1770
+ #: lib/hammer_cli_foreman/id_resolver.rb:34
1771
+ msgid "Domain name"
1772
+ msgstr "Domainname"
1773
+
1774
+ #: lib/hammer_cli_foreman/id_resolver.rb:35
1775
+ msgid "Environment name"
1776
+ msgstr "Umgebungsname"
1777
+
1778
+ #: lib/hammer_cli_foreman/id_resolver.rb:38
1779
+ msgid "Host name"
1780
+ msgstr "Host name"
1781
+
1782
+ #: lib/hammer_cli_foreman/id_resolver.rb:39
1783
+ msgid "Hostgroup name"
1784
+ msgstr "Hostgruppenname"
1785
+
1786
+ #: lib/hammer_cli_foreman/id_resolver.rb:41
1787
+ msgid "Location name"
1788
+ msgstr "Standortname"
1789
+
1790
+ #: lib/hammer_cli_foreman/id_resolver.rb:42
1791
+ msgid "Medium name"
1792
+ msgstr "Mediumname"
1793
+
1794
+ #: lib/hammer_cli_foreman/id_resolver.rb:43
1795
+ msgid "Model name"
1796
+ msgstr "Modellname"
1797
+
1798
+ #: lib/hammer_cli_foreman/id_resolver.rb:44
1799
+ msgid "Organization name"
1800
+ msgstr "Organisationsname"
1801
+
1802
+ #: lib/hammer_cli_foreman/id_resolver.rb:46
1803
+ msgid "Partition table name"
1804
+ msgstr "Partitionstabellenname"
1805
+
1806
+ #: lib/hammer_cli_foreman/id_resolver.rb:47
1807
+ msgid "Proxy name"
1808
+ msgstr "Proxyname"
1809
+
1810
+ #: lib/hammer_cli_foreman/id_resolver.rb:48
1811
+ msgid "Puppet class name"
1812
+ msgstr "Puppet-Klassenname"
1813
+
1814
+ #: lib/hammer_cli_foreman/id_resolver.rb:49
1815
+ msgid "Report name"
1816
+ msgstr "Berichtsname"
1817
+
1818
+ #: lib/hammer_cli_foreman/id_resolver.rb:50
1819
+ msgid "User role name"
1820
+ msgstr "Benutzerrollenname"
1821
+
1822
+ #: lib/hammer_cli_foreman/id_resolver.rb:51
1823
+ msgid "Subnet name"
1824
+ msgstr "Subnetzname"
1825
+
1826
+ #: lib/hammer_cli_foreman/id_resolver.rb:53
1827
+ msgid "User's login to search by"
1828
+ msgstr "Zu suchender Benutzername"
1829
+
1830
+ #: lib/hammer_cli_foreman/id_resolver.rb:54
1831
+ msgid "Common parameter name"
1832
+ msgstr "Allgemeiner Parametername"
1833
+
1834
+ #: lib/hammer_cli_foreman/id_resolver.rb:55
1835
+ msgid "Smart class parameter name"
1836
+ msgstr "Smart-Class-Parametername"
1837
+
1838
+ #: lib/hammer_cli_foreman/id_resolver.rb:57
1839
+ msgid "Name to search by"
1840
+ msgstr "Zu suchender Name"
1841
+
1842
+ #: lib/hammer_cli_foreman/id_resolver.rb:140
1843
+ msgid "%s not found"
1844
+ msgstr "%s nicht gefunden"
1845
+
1846
+ #: lib/hammer_cli_foreman/id_resolver.rb:141
1847
+ msgid "%s found more than once"
1848
+ msgstr "%s mehr als einmal gefunden"
1849
+
1850
+ #: lib/hammer_cli_foreman/id_resolver.rb:152
1851
+ msgid "Missing options to search %s"
1852
+ msgstr "Fehlende Optionen zum Suchen von %s"
1853
+
1854
+ #: lib/hammer_cli_foreman/user.rb:11
1855
+ msgid "Login"
1856
+ msgstr "Anmeldung"
1857
+
1858
+ #: lib/hammer_cli_foreman/user.rb:13
1859
+ msgid "Email"
1860
+ msgstr "E-Mail"
1861
+
1862
+ #: lib/hammer_cli_foreman/user.rb:28
1863
+ msgid "Admin"
1864
+ msgstr "Administrator"
1865
+
1866
+ #: lib/hammer_cli_foreman/user.rb:29
1867
+ msgid "Authorized by"
1868
+ msgstr "Autorisiert durch"
1869
+
1870
+ #: lib/hammer_cli_foreman/user.rb:30
1871
+ msgid "Last login"
1872
+ msgstr "Letzte Anmeldung"
1873
+
1874
+ #: lib/hammer_cli_foreman/user.rb:47
1875
+ msgid "User created"
1876
+ msgstr "Benutzer erstellt"
1877
+
1878
+ #: lib/hammer_cli_foreman/user.rb:48
1879
+ msgid "Could not create the user"
1880
+ msgstr "Der Benutzer konnte nicht erstellt werden"
1881
+
1882
+ #: lib/hammer_cli_foreman/user.rb:55
1883
+ msgid "User updated"
1884
+ msgstr "Benutzer aktualisiert"
1885
+
1886
+ #: lib/hammer_cli_foreman/user.rb:56
1887
+ msgid "Could not update the user"
1888
+ msgstr "Der Benutzer konnte nicht aktualisiert werden"
1889
+
1890
+ #: lib/hammer_cli_foreman/user.rb:63
1891
+ msgid "User deleted"
1892
+ msgstr "Benutzer gelöscht"
1893
+
1894
+ #: lib/hammer_cli_foreman/user.rb:64
1895
+ msgid "Could not delete the user"
1896
+ msgstr "Benutzer konnte nicht gelöscht werden"
1897
+
1898
+ #: lib/hammer_cli_foreman/filter.rb:10
1899
+ msgid "Resource type"
1900
+ msgstr "Ressourcentyp"
1901
+
1902
+ #: lib/hammer_cli_foreman/filter.rb:11
1903
+ msgid "Search"
1904
+ msgstr "Suche"
1905
+
1906
+ #: lib/hammer_cli_foreman/filter.rb:12
1907
+ msgid "Unlimited?"
1908
+ msgstr "Unbegrenzt?"
1909
+
1910
+ #: lib/hammer_cli_foreman/filter.rb:13
1911
+ msgid "Role"
1912
+ msgstr "Rolle"
1913
+
1914
+ #: lib/hammer_cli_foreman/filter.rb:14
1915
+ msgid "Permissions"
1916
+ msgstr "Zugriffsrechte"
1917
+
1918
+ #: lib/hammer_cli_foreman/filter.rb:44
1919
+ msgid "Permission filter for [%<resource_type>s] created"
1920
+ msgstr "Berechtigungsfilter für [%<resource_type>s] erstellt"
1921
+
1922
+ #: lib/hammer_cli_foreman/filter.rb:45
1923
+ msgid "Could not create the permission filter"
1924
+ msgstr "Berechtigungsfilter konnte nicht erstellt werden"
1925
+
1926
+ #: lib/hammer_cli_foreman/filter.rb:52
1927
+ msgid "Permission filter for [%<resource_type>s] updated"
1928
+ msgstr "Berechtigungsfilter für [%<resource_type>s] aktualisiert"
1929
+
1930
+ #: lib/hammer_cli_foreman/filter.rb:53
1931
+ msgid "Could not update the permission filter"
1932
+ msgstr "Berechtigungsfilter konnte nicht aktualisiert werden"
1933
+
1934
+ #: lib/hammer_cli_foreman/filter.rb:60
1935
+ msgid "Permission filter deleted"
1936
+ msgstr "Berechtigungsfilter gelöscht"
1937
+
1938
+ #: lib/hammer_cli_foreman/filter.rb:61
1939
+ msgid "Could not delete the permission filter"
1940
+ msgstr "Berechtigungsfilter konnte nicht gelöscht werden"
1941
+
1942
+ #: lib/hammer_cli_foreman/location.rb:24 lib/hammer_cli_foreman/location.rb:62
1943
+ #: lib/hammer_cli_foreman/location.rb:74
1944
+ msgid "Location numeric id to search by"
1945
+ msgstr "Zu suchende numerische Standort-ID"
1946
+
1947
+ #: lib/hammer_cli_foreman/location.rb:52
1948
+ msgid "Location created"
1949
+ msgstr "Ort erstellt"
1950
+
1951
+ #: lib/hammer_cli_foreman/location.rb:53
1952
+ msgid "Could not create the location"
1953
+ msgstr "Ort konnte nicht erstellt werden"
1954
+
1955
+ #: lib/hammer_cli_foreman/location.rb:64
1956
+ msgid "Location updated"
1957
+ msgstr "Ort aktualisiert"
1958
+
1959
+ #: lib/hammer_cli_foreman/location.rb:65
1960
+ msgid "Could not update the location"
1961
+ msgstr "Ort konnte nicht aktualisiert werden"
1962
+
1963
+ #: lib/hammer_cli_foreman/location.rb:76
1964
+ msgid "Location deleted"
1965
+ msgstr "Ort entfernt"
1966
+
1967
+ #: lib/hammer_cli_foreman/location.rb:77
1968
+ msgid "Could not delete the location"
1969
+ msgstr "Ort konnte nicht entfernt werden"
1970
+
1971
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:7
1972
+ msgid "Manage LDAP auth sources."
1973
+ msgstr ""
1974
+
1975
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:15
1976
+ msgid "LDAPS?"
1977
+ msgstr "LDAPS?"
1978
+
1979
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:16
1980
+ msgid "Port"
1981
+ msgstr "Port"
1982
+
1983
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:17
1984
+ msgid "Server Type"
1985
+ msgstr "Servertyp"
1986
+
1987
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:27
1988
+ msgid "Account Username"
1989
+ msgstr "Konto-Benutzername"
1990
+
1991
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:28
1992
+ msgid "Base DN"
1993
+ msgstr "Base DN"
1994
+
1995
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:29
1996
+ msgid "LDAP filter"
1997
+ msgstr "LDAP Filter"
1998
+
1999
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:30
2000
+ msgid "Automatically Create Accounts?"
2001
+ msgstr "Konten automatisch erstellen?"
2002
+
2003
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:31
2004
+ msgid "Login Name Attribute"
2005
+ msgstr "Anmeldenamen-Attribut"
2006
+
2007
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:32
2008
+ msgid "First Name Attribute"
2009
+ msgstr "Vornamen-Attribut"
2010
+
2011
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:33
2012
+ msgid "Last Name Attribute"
2013
+ msgstr "Nachnamen-Attribut"
2014
+
2015
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:34
2016
+ msgid "Email Address Attribute"
2017
+ msgstr "E-Mail-Adressen-Attribut"
2018
+
2019
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:35
2020
+ msgid "Photo Attribute"
2021
+ msgstr "Fotoattribut"
2022
+
2023
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:43
2024
+ msgid "Auth source created"
2025
+ msgstr ""
2026
+
2027
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:44
2028
+ msgid "Could not create the Auth Source"
2029
+ msgstr ""
2030
+
2031
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:51
2032
+ msgid "Auth source deleted"
2033
+ msgstr ""
2034
+
2035
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:52
2036
+ msgid "Could not delete the Auth Source"
2037
+ msgstr ""
2038
+
2039
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:59
2040
+ msgid "Auth source updated"
2041
+ msgstr ""
2042
+
2043
+ #: lib/hammer_cli_foreman/auth_source_ldap.rb:60
2044
+ msgid "Could not update the Auth Source"
2045
+ msgstr ""
2046
+
2047
+ #: lib/hammer_cli_foreman/architecture.rb:31
2048
+ msgid "Architecture created"
2049
+ msgstr "Architektur erstellt"
2050
+
2051
+ #: lib/hammer_cli_foreman/architecture.rb:32
2052
+ msgid "Could not create the architecture"
2053
+ msgstr "Architektur konnte nicht erstellt werden"
2054
+
2055
+ #: lib/hammer_cli_foreman/architecture.rb:39
2056
+ msgid "Architecture deleted"
2057
+ msgstr "Architektur gelöscht"
2058
+
2059
+ #: lib/hammer_cli_foreman/architecture.rb:40
2060
+ msgid "Could not delete the architecture"
2061
+ msgstr "Architektur konnte nicht gelöscht werden"
2062
+
2063
+ #: lib/hammer_cli_foreman/architecture.rb:47
2064
+ msgid "Architecture updated"
2065
+ msgstr "Architektur aktualisiert"
2066
+
2067
+ #: lib/hammer_cli_foreman/architecture.rb:48
2068
+ msgid "Could not update the architecture"
2069
+ msgstr "Architektur konnte nicht aktualisiert werden"
2070
+
2071
+ #: lib/hammer_cli_foreman.rb:30
2072
+ msgid "Foreman connection login/logout."
2073
+ msgstr "Anmeldung/Abmeldung für Foreman-Verbindung."
2074
+
2075
+ #: lib/hammer_cli_foreman.rb:34
2076
+ msgid "Manipulate architectures."
2077
+ msgstr "Architekturen bearbeiten."
2078
+
2079
+ #: lib/hammer_cli_foreman.rb:38
2080
+ msgid "Manipulate auth sources."
2081
+ msgstr ""
2082
+
2083
+ #: lib/hammer_cli_foreman.rb:42
2084
+ msgid "Manipulate compute resources."
2085
+ msgstr "Rechnerressourcen bearbeiten."
2086
+
2087
+ #: lib/hammer_cli_foreman.rb:46
2088
+ msgid "Manipulate domains."
2089
+ msgstr "Domains bearbeiten."
2090
+
2091
+ #: lib/hammer_cli_foreman.rb:50
2092
+ msgid "Manipulate environments."
2093
+ msgstr ""
2094
+
2095
+ #: lib/hammer_cli_foreman.rb:54
2096
+ msgid "Search facts."
2097
+ msgstr "Fakten durchsuchen."
2098
+
2099
+ #: lib/hammer_cli_foreman.rb:58
2100
+ msgid "Manage permission filters."
2101
+ msgstr "Berechtigungsfilter verwalten."
2102
+
2103
+ #: lib/hammer_cli_foreman.rb:62
2104
+ msgid "Manipulate hosts."
2105
+ msgstr ""
2106
+
2107
+ #: lib/hammer_cli_foreman.rb:66
2108
+ msgid "Manipulate hostgroups."
2109
+ msgstr "Hostgruppen verändern"
2110
+
2111
+ #: lib/hammer_cli_foreman.rb:70
2112
+ msgid "Manipulate locations."
2113
+ msgstr "Orte verändern."
2114
+
2115
+ #: lib/hammer_cli_foreman.rb:74
2116
+ msgid "Manipulate installation media."
2117
+ msgstr "Installationsmedium verändern"
2118
+
2119
+ #: lib/hammer_cli_foreman.rb:78
2120
+ msgid "Manipulate hardware models."
2121
+ msgstr "Hardwaremodelle bearbeiten."
2122
+
2123
+ #: lib/hammer_cli_foreman.rb:82
2124
+ msgid "Manipulate operating system."
2125
+ msgstr ""
2126
+
2127
+ #: lib/hammer_cli_foreman.rb:86
2128
+ msgid "Manipulate organizations."
2129
+ msgstr "Organisationen verändern"
2130
+
2131
+ #: lib/hammer_cli_foreman.rb:90
2132
+ msgid "Manipulate partition tables."
2133
+ msgstr "Partitionstabellen bearbeiten."
2134
+
2135
+ #: lib/hammer_cli_foreman.rb:94
2136
+ msgid "Search puppet modules."
2137
+ msgstr "Puppet-Module suchen."
2138
+
2139
+ #: lib/hammer_cli_foreman.rb:98
2140
+ msgid "Browse and read reports."
2141
+ msgstr "Berichte durchsuchen und lesen."
2142
+
2143
+ #: lib/hammer_cli_foreman.rb:102
2144
+ msgid "Manage user roles."
2145
+ msgstr "Benutzerrollen verwalten."
2146
+
2147
+ #: lib/hammer_cli_foreman.rb:106
2148
+ msgid "Manipulate smart class parameters."
2149
+ msgstr "Smart Class-Parameter verändern"
2150
+
2151
+ #: lib/hammer_cli_foreman.rb:110
2152
+ msgid "Manipulate smart proxies."
2153
+ msgstr "Smart Proxys verändern"
2154
+
2155
+ #: lib/hammer_cli_foreman.rb:114
2156
+ msgid "Manipulate subnets."
2157
+ msgstr "Subnetze bearbeiten."
2158
+
2159
+ #: lib/hammer_cli_foreman.rb:118
2160
+ msgid "Manipulate config templates."
2161
+ msgstr "Konfigurationsvorlagen bearbeiten."
2162
+
2163
+ #: lib/hammer_cli_foreman.rb:122
2164
+ msgid "Manipulate users."
2165
+ msgstr "Benutzer bearbeiten."
2166
+
2167
+ #: lib/hammer_cli_foreman.rb:126
2168
+ msgid "Manage user groups."
2169
+ msgstr "Benutzergruppen verwalten."