hammer_cli_foreman 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

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