hammer_cli_foreman 0.1.1 → 0.1.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.

Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -3
  3. data/doc/developer_docs.md +13 -0
  4. data/doc/name_id_resolution.md +50 -0
  5. data/doc/option_builder.md +48 -0
  6. data/doc/release_notes.md +64 -0
  7. data/lib/hammer_cli_foreman.rb +100 -23
  8. data/lib/hammer_cli_foreman/architecture.rb +0 -1
  9. data/lib/hammer_cli_foreman/associating_commands.rb +71 -0
  10. data/lib/hammer_cli_foreman/auth.rb +0 -1
  11. data/lib/hammer_cli_foreman/commands.rb +112 -80
  12. data/lib/hammer_cli_foreman/common_parameter.rb +5 -3
  13. data/lib/hammer_cli_foreman/compute_resource.rb +0 -2
  14. data/lib/hammer_cli_foreman/dependency_resolver.rb +32 -0
  15. data/lib/hammer_cli_foreman/domain.rb +0 -1
  16. data/lib/hammer_cli_foreman/environment.rb +0 -2
  17. data/lib/hammer_cli_foreman/exception_handler.rb +3 -3
  18. data/lib/hammer_cli_foreman/fact.rb +1 -1
  19. data/lib/hammer_cli_foreman/filter.rb +102 -0
  20. data/lib/hammer_cli_foreman/host.rb +5 -7
  21. data/lib/hammer_cli_foreman/hostgroup.rb +4 -3
  22. data/lib/hammer_cli_foreman/id_resolver.rb +60 -51
  23. data/lib/hammer_cli_foreman/image.rb +0 -1
  24. data/lib/hammer_cli_foreman/location.rb +7 -3
  25. data/lib/hammer_cli_foreman/media.rb +1 -1
  26. data/lib/hammer_cli_foreman/model.rb +1 -1
  27. data/lib/hammer_cli_foreman/operating_system.rb +4 -6
  28. data/lib/hammer_cli_foreman/option_builders.rb +285 -0
  29. data/lib/hammer_cli_foreman/organization.rb +7 -3
  30. data/lib/hammer_cli_foreman/param_filters.rb +61 -0
  31. data/lib/hammer_cli_foreman/parameter.rb +5 -3
  32. data/lib/hammer_cli_foreman/partition_table.rb +1 -1
  33. data/lib/hammer_cli_foreman/puppet_class.rb +1 -1
  34. data/lib/hammer_cli_foreman/references.rb +16 -0
  35. data/lib/hammer_cli_foreman/report.rb +1 -1
  36. data/lib/hammer_cli_foreman/role.rb +78 -0
  37. data/lib/hammer_cli_foreman/smart_class_parameter.rb +1 -1
  38. data/lib/hammer_cli_foreman/smart_proxy.rb +17 -2
  39. data/lib/hammer_cli_foreman/smart_variables.rb +111 -0
  40. data/lib/hammer_cli_foreman/subnet.rb +1 -1
  41. data/lib/hammer_cli_foreman/template.rb +10 -4
  42. data/lib/hammer_cli_foreman/user.rb +5 -1
  43. data/lib/hammer_cli_foreman/usergroup.rb +58 -0
  44. data/lib/hammer_cli_foreman/version.rb +1 -1
  45. data/locale/Makefile +12 -11
  46. data/locale/README.md +18 -0
  47. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  48. data/locale/en/hammer-cli-foreman.po +1584 -0
  49. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  50. data/locale/en_GB/hammer-cli-foreman.po +1975 -0
  51. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  52. data/locale/es/hammer-cli-foreman.po +1976 -0
  53. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  54. data/locale/fr/hammer-cli-foreman.po +1976 -0
  55. data/locale/hammer-cli-foreman.pot +1197 -787
  56. data/test/unit/api_test.rb +25 -0
  57. data/test/unit/architecture_test.rb +1 -0
  58. data/test/unit/commands_test.rb +18 -0
  59. data/test/unit/common_parameter_test.rb +1 -0
  60. data/test/unit/compute_resource_test.rb +1 -0
  61. data/test/unit/data/1.6/foreman_api.json +1 -0
  62. data/test/unit/dependency_resolver_test.rb +42 -0
  63. data/test/unit/domain_test.rb +1 -0
  64. data/test/unit/environment_test.rb +1 -0
  65. data/test/unit/fact_test.rb +1 -0
  66. data/test/unit/filter_test.rb +133 -0
  67. data/test/unit/helpers/command.rb +0 -13
  68. data/test/unit/host_test.rb +3 -0
  69. data/test/unit/hostgroup_test.rb +1 -0
  70. data/test/unit/id_resolver_test.rb +21 -68
  71. data/test/unit/image_test.rb +1 -1
  72. data/test/unit/location_test.rb +2 -0
  73. data/test/unit/media_test.rb +2 -0
  74. data/test/unit/model_test.rb +1 -0
  75. data/test/unit/operating_system_test.rb +1 -0
  76. data/test/unit/option_builders_test.rb +543 -0
  77. data/test/unit/organization_test.rb +1 -0
  78. data/test/unit/param_filters_test.rb +143 -0
  79. data/test/unit/partition_table_test.rb +1 -0
  80. data/test/unit/puppet_class_test.rb +1 -0
  81. data/test/unit/report_test.rb +1 -0
  82. data/test/unit/role_test.rb +94 -0
  83. data/test/unit/smart_class_parameter_test.rb +1 -0
  84. data/test/unit/smart_proxy_test.rb +14 -1
  85. data/test/unit/subnet_test.rb +1 -0
  86. data/test/unit/template_test.rb +1 -0
  87. data/test/unit/test_helper.rb +1 -1
  88. data/test/unit/user_test.rb +1 -0
  89. data/test/unit/usergroup_test.rb +80 -0
  90. metadata +50 -7
  91. data/lib/hammer_cli_foreman/searchables_option_builder.rb +0 -99
  92. data/test/unit/searchables_option_builder_test.rb +0 -172
@@ -0,0 +1,1975 @@
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
+ # Dominic Cleal <dcleal@redhat.com>, 2014
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer-cli-foreman 0.1.2\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2014-08-01 16:57+0200\n"
12
+ "PO-Revision-Date: 2014-08-04 08:40+0000\n"
13
+ "Last-Translator: Dominic Cleal <dcleal@redhat.com>\n"
14
+ "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/foreman/language/en_GB/)\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Language: en_GB\n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+
21
+ #: lib/hammer_cli_foreman/report.rb:10 lib/hammer_cli_foreman/report.rb:30
22
+ #: lib/hammer_cli_foreman/organization.rb:13
23
+ #: lib/hammer_cli_foreman/subnet.rb:10 lib/hammer_cli_foreman/model.rb:10
24
+ #: lib/hammer_cli_foreman/role.rb:9 lib/hammer_cli_foreman/media.rb:9
25
+ #: lib/hammer_cli_foreman/compute_resource.rb:11
26
+ #: lib/hammer_cli_foreman/smart_variables.rb:7
27
+ #: lib/hammer_cli_foreman/smart_variables.rb:65
28
+ #: lib/hammer_cli_foreman/hostgroup.rb:22
29
+ #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:124
30
+ #: lib/hammer_cli_foreman/host.rb:195 lib/hammer_cli_foreman/host.rb:208
31
+ #: lib/hammer_cli_foreman/operating_system.rb:10
32
+ #: lib/hammer_cli_foreman/smart_proxy.rb:11
33
+ #: lib/hammer_cli_foreman/environment.rb:14
34
+ #: lib/hammer_cli_foreman/puppet_class.rb:12
35
+ #: lib/hammer_cli_foreman/domain.rb:10
36
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:8
37
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:66
38
+ #: lib/hammer_cli_foreman/usergroup.rb:9 lib/hammer_cli_foreman/image.rb:30
39
+ #: lib/hammer_cli_foreman/partition_table.rb:10
40
+ #: lib/hammer_cli_foreman/user.rb:10 lib/hammer_cli_foreman/filter.rb:9
41
+ #: lib/hammer_cli_foreman/filter.rb:72 lib/hammer_cli_foreman/location.rb:13
42
+ #: lib/hammer_cli_foreman/architecture.rb:10
43
+ msgid "Id"
44
+ msgstr ""
45
+
46
+ #: lib/hammer_cli_foreman/report.rb:11 lib/hammer_cli_foreman/report.rb:31
47
+ #: lib/hammer_cli_foreman/fact.rb:12
48
+ msgid "Host"
49
+ msgstr ""
50
+
51
+ #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:177
52
+ msgid "Last report"
53
+ msgstr ""
54
+
55
+ #: lib/hammer_cli_foreman/report.rb:14 lib/hammer_cli_foreman/report.rb:35
56
+ msgid "Applied"
57
+ msgstr ""
58
+
59
+ #: lib/hammer_cli_foreman/report.rb:15 lib/hammer_cli_foreman/report.rb:36
60
+ msgid "Restarted"
61
+ msgstr ""
62
+
63
+ #: lib/hammer_cli_foreman/report.rb:16 lib/hammer_cli_foreman/report.rb:37
64
+ msgid "Failed"
65
+ msgstr ""
66
+
67
+ #: lib/hammer_cli_foreman/report.rb:17 lib/hammer_cli_foreman/report.rb:38
68
+ msgid "Restart Failures"
69
+ msgstr ""
70
+
71
+ #: lib/hammer_cli_foreman/report.rb:18 lib/hammer_cli_foreman/report.rb:39
72
+ msgid "Skipped"
73
+ msgstr ""
74
+
75
+ #: lib/hammer_cli_foreman/report.rb:19 lib/hammer_cli_foreman/report.rb:40
76
+ msgid "Pending"
77
+ msgstr ""
78
+
79
+ #: lib/hammer_cli_foreman/report.rb:32
80
+ msgid "Reported at"
81
+ msgstr ""
82
+
83
+ #: lib/hammer_cli_foreman/report.rb:33
84
+ msgid "Report status"
85
+ msgstr ""
86
+
87
+ #: lib/hammer_cli_foreman/report.rb:43
88
+ msgid "Report metrics"
89
+ msgstr ""
90
+
91
+ #: lib/hammer_cli_foreman/report.rb:46
92
+ msgid "config_retrieval"
93
+ msgstr ""
94
+
95
+ #: lib/hammer_cli_foreman/report.rb:47
96
+ msgid "exec"
97
+ msgstr ""
98
+
99
+ #: lib/hammer_cli_foreman/report.rb:48
100
+ msgid "file"
101
+ msgstr ""
102
+
103
+ #: lib/hammer_cli_foreman/report.rb:49
104
+ msgid "package"
105
+ msgstr ""
106
+
107
+ #: lib/hammer_cli_foreman/report.rb:50
108
+ msgid "service"
109
+ msgstr ""
110
+
111
+ #: lib/hammer_cli_foreman/report.rb:51
112
+ msgid "user"
113
+ msgstr ""
114
+
115
+ #: lib/hammer_cli_foreman/report.rb:52
116
+ msgid "yumrepo"
117
+ msgstr ""
118
+
119
+ #: lib/hammer_cli_foreman/report.rb:53
120
+ msgid "filebucket"
121
+ msgstr ""
122
+
123
+ #: lib/hammer_cli_foreman/report.rb:54
124
+ msgid "cron"
125
+ msgstr ""
126
+
127
+ #: lib/hammer_cli_foreman/report.rb:55
128
+ msgid "total"
129
+ msgstr ""
130
+
131
+ #: lib/hammer_cli_foreman/report.rb:59
132
+ msgid "Logs"
133
+ msgstr ""
134
+
135
+ #: lib/hammer_cli_foreman/report.rb:62 lib/hammer_cli_foreman/filter.rb:74
136
+ msgid "Resource"
137
+ msgstr ""
138
+
139
+ #: lib/hammer_cli_foreman/report.rb:65
140
+ msgid "Message"
141
+ msgstr ""
142
+
143
+ #: lib/hammer_cli_foreman/report.rb:76
144
+ msgid "Report has been deleted"
145
+ msgstr ""
146
+
147
+ #: lib/hammer_cli_foreman/report.rb:77
148
+ msgid "Could not delete the report"
149
+ msgstr ""
150
+
151
+ #: lib/hammer_cli_foreman/report.rb:88
152
+ msgid "Browse and read reports."
153
+ msgstr ""
154
+
155
+ #: lib/hammer_cli_foreman/organization.rb:14
156
+ #: lib/hammer_cli_foreman/common_parameter.rb:12
157
+ #: lib/hammer_cli_foreman/subnet.rb:11 lib/hammer_cli_foreman/model.rb:11
158
+ #: lib/hammer_cli_foreman/role.rb:10 lib/hammer_cli_foreman/media.rb:10
159
+ #: lib/hammer_cli_foreman/compute_resource.rb:12
160
+ #: lib/hammer_cli_foreman/hostgroup.rb:23
161
+ #: lib/hammer_cli_foreman/template.rb:26 lib/hammer_cli_foreman/template.rb:74
162
+ #: lib/hammer_cli_foreman/host.rb:125 lib/hammer_cli_foreman/host.rb:196
163
+ #: lib/hammer_cli_foreman/host.rb:209
164
+ #: lib/hammer_cli_foreman/operating_system.rb:22
165
+ #: lib/hammer_cli_foreman/smart_proxy.rb:12
166
+ #: lib/hammer_cli_foreman/environment.rb:15
167
+ #: lib/hammer_cli_foreman/puppet_class.rb:13
168
+ #: lib/hammer_cli_foreman/domain.rb:11 lib/hammer_cli_foreman/usergroup.rb:10
169
+ #: lib/hammer_cli_foreman/image.rb:31 lib/hammer_cli_foreman/image.rb:71
170
+ #: lib/hammer_cli_foreman/partition_table.rb:11
171
+ #: lib/hammer_cli_foreman/user.rb:12 lib/hammer_cli_foreman/filter.rb:73
172
+ #: lib/hammer_cli_foreman/filter.rb:90 lib/hammer_cli_foreman/location.rb:14
173
+ #: lib/hammer_cli_foreman/architecture.rb:11
174
+ msgid "Name"
175
+ msgstr "Name"
176
+
177
+ #: lib/hammer_cli_foreman/organization.rb:37
178
+ #: lib/hammer_cli_foreman/references.rb:15
179
+ msgid "Locations"
180
+ msgstr ""
181
+
182
+ #: lib/hammer_cli_foreman/organization.rb:53
183
+ msgid "Organization created"
184
+ msgstr "Organisation created"
185
+
186
+ #: lib/hammer_cli_foreman/organization.rb:54
187
+ msgid "Could not create the organization"
188
+ msgstr "Could not create the organisation"
189
+
190
+ #: lib/hammer_cli_foreman/organization.rb:65
191
+ msgid "Organization updated"
192
+ msgstr "Organisation updated"
193
+
194
+ #: lib/hammer_cli_foreman/organization.rb:66
195
+ msgid "Could not update the organization"
196
+ msgstr "Could not update the organisation"
197
+
198
+ #: lib/hammer_cli_foreman/organization.rb:77
199
+ msgid "Organization deleted"
200
+ msgstr "Organisation deleted"
201
+
202
+ #: lib/hammer_cli_foreman/organization.rb:78
203
+ msgid "Could not delete the organization"
204
+ msgstr "Could not delete the organisation"
205
+
206
+ #: lib/hammer_cli_foreman/organization.rb:101
207
+ msgid "Manipulate organizations."
208
+ msgstr "Manipulate organisations."
209
+
210
+ #: lib/hammer_cli_foreman/common_parameter.rb:13
211
+ #: lib/hammer_cli_foreman/fact.rb:14
212
+ #: lib/hammer_cli_foreman/smart_variables.rb:64
213
+ #: lib/hammer_cli_foreman/smart_variables.rb:67
214
+ #: lib/hammer_cli_foreman/host.rb:282
215
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:65
216
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:68
217
+ msgid "Value"
218
+ msgstr "Value"
219
+
220
+ #: lib/hammer_cli_foreman/common_parameter.rb:22
221
+ msgid "Set a global parameter."
222
+ msgstr ""
223
+
224
+ #: lib/hammer_cli_foreman/common_parameter.rb:24
225
+ msgid "Created parameter [%{name}] with value [%{value}]."
226
+ msgstr ""
227
+
228
+ #: lib/hammer_cli_foreman/common_parameter.rb:25
229
+ msgid "Parameter [%{name}] updated to [%{value}]."
230
+ msgstr ""
231
+
232
+ #: lib/hammer_cli_foreman/common_parameter.rb:27
233
+ #: lib/hammer_cli_foreman/parameter.rb:49
234
+ #: lib/hammer_cli_foreman/parameter.rb:96
235
+ msgid "parameter name"
236
+ msgstr ""
237
+
238
+ #: lib/hammer_cli_foreman/common_parameter.rb:28
239
+ #: lib/hammer_cli_foreman/parameter.rb:50
240
+ msgid "parameter value"
241
+ msgstr ""
242
+
243
+ #: lib/hammer_cli_foreman/common_parameter.rb:53
244
+ msgid "Global parameter [%{name}] deleted."
245
+ msgstr ""
246
+
247
+ #: lib/hammer_cli_foreman/common_parameter.rb:54
248
+ msgid "Could not delete the global parameter [%{name}]"
249
+ msgstr ""
250
+
251
+ #: lib/hammer_cli_foreman/common_parameter.rb:67
252
+ msgid "Manipulate global parameters."
253
+ msgstr ""
254
+
255
+ #: lib/hammer_cli_foreman/subnet.rb:12
256
+ msgid "Network"
257
+ msgstr ""
258
+
259
+ #: lib/hammer_cli_foreman/subnet.rb:13
260
+ msgid "Mask"
261
+ msgstr ""
262
+
263
+ #: lib/hammer_cli_foreman/subnet.rb:23
264
+ msgid "Priority"
265
+ msgstr ""
266
+
267
+ #: lib/hammer_cli_foreman/subnet.rb:24
268
+ msgid "DNS"
269
+ msgstr ""
270
+
271
+ #: lib/hammer_cli_foreman/subnet.rb:25
272
+ msgid "Primary DNS"
273
+ msgstr ""
274
+
275
+ #: lib/hammer_cli_foreman/subnet.rb:26
276
+ msgid "Secondary DNS"
277
+ msgstr ""
278
+
279
+ #: lib/hammer_cli_foreman/subnet.rb:27
280
+ msgid "TFTP"
281
+ msgstr ""
282
+
283
+ #: lib/hammer_cli_foreman/subnet.rb:28
284
+ msgid "DHCP"
285
+ msgstr ""
286
+
287
+ #: lib/hammer_cli_foreman/subnet.rb:30
288
+ msgid "VLAN ID"
289
+ msgstr ""
290
+
291
+ #: lib/hammer_cli_foreman/subnet.rb:31
292
+ msgid "Gateway"
293
+ msgstr ""
294
+
295
+ #: lib/hammer_cli_foreman/subnet.rb:32
296
+ msgid "From"
297
+ msgstr ""
298
+
299
+ #: lib/hammer_cli_foreman/subnet.rb:33
300
+ msgid "To"
301
+ msgstr ""
302
+
303
+ #: lib/hammer_cli_foreman/subnet.rb:44
304
+ msgid "Subnet created"
305
+ msgstr ""
306
+
307
+ #: lib/hammer_cli_foreman/subnet.rb:45
308
+ msgid "Could not create the subnet"
309
+ msgstr ""
310
+
311
+ #: lib/hammer_cli_foreman/subnet.rb:53
312
+ msgid "Subnet updated"
313
+ msgstr ""
314
+
315
+ #: lib/hammer_cli_foreman/subnet.rb:54
316
+ msgid "Could not update the subnet"
317
+ msgstr ""
318
+
319
+ #: lib/hammer_cli_foreman/subnet.rb:62
320
+ msgid "Subnet deleted"
321
+ msgstr ""
322
+
323
+ #: lib/hammer_cli_foreman/subnet.rb:63
324
+ msgid "Could not delete the subnet"
325
+ msgstr ""
326
+
327
+ #: lib/hammer_cli_foreman/subnet.rb:73
328
+ msgid "Manipulate subnets."
329
+ msgstr ""
330
+
331
+ #: lib/hammer_cli_foreman/model.rb:12
332
+ msgid "Vendor class"
333
+ msgstr ""
334
+
335
+ #: lib/hammer_cli_foreman/model.rb:13
336
+ msgid "HW model"
337
+ msgstr ""
338
+
339
+ #: lib/hammer_cli_foreman/model.rb:22
340
+ msgid "Info"
341
+ msgstr ""
342
+
343
+ #: lib/hammer_cli_foreman/model.rb:31
344
+ msgid "Hardware model created"
345
+ msgstr ""
346
+
347
+ #: lib/hammer_cli_foreman/model.rb:32
348
+ msgid "Could not create the hardware model"
349
+ msgstr ""
350
+
351
+ #: lib/hammer_cli_foreman/model.rb:38
352
+ msgid "Hardware model deleted"
353
+ msgstr ""
354
+
355
+ #: lib/hammer_cli_foreman/model.rb:39
356
+ msgid "Could not delete the hardware model"
357
+ msgstr ""
358
+
359
+ #: lib/hammer_cli_foreman/model.rb:46
360
+ msgid "Hardware model updated"
361
+ msgstr ""
362
+
363
+ #: lib/hammer_cli_foreman/model.rb:47
364
+ msgid "Could not update the hardware model"
365
+ msgstr ""
366
+
367
+ #: lib/hammer_cli_foreman/model.rb:58
368
+ msgid "Manipulate hardware models."
369
+ msgstr ""
370
+
371
+ #: lib/hammer_cli_foreman/role.rb:21
372
+ msgid "User role id"
373
+ msgstr ""
374
+
375
+ #: lib/hammer_cli_foreman/role.rb:34 lib/hammer_cli_foreman/filter.rb:18
376
+ #: lib/hammer_cli_foreman/filter.rb:34 lib/hammer_cli_foreman/filter.rb:78
377
+ msgid "(Miscellaneous)"
378
+ msgstr ""
379
+
380
+ #: lib/hammer_cli_foreman/role.rb:35 lib/hammer_cli_foreman/filter.rb:19
381
+ #: lib/hammer_cli_foreman/filter.rb:35
382
+ msgid "none"
383
+ msgstr ""
384
+
385
+ #: lib/hammer_cli_foreman/role.rb:48
386
+ msgid "User role [%<name>s] created"
387
+ msgstr ""
388
+
389
+ #: lib/hammer_cli_foreman/role.rb:49
390
+ msgid "Could not create the user role"
391
+ msgstr ""
392
+
393
+ #: lib/hammer_cli_foreman/role.rb:56
394
+ msgid "User role [%<name>s] updated"
395
+ msgstr ""
396
+
397
+ #: lib/hammer_cli_foreman/role.rb:57
398
+ msgid "Could not update the user role"
399
+ msgstr ""
400
+
401
+ #: lib/hammer_cli_foreman/role.rb:64
402
+ msgid "User role [%<name>s] deleted"
403
+ msgstr ""
404
+
405
+ #: lib/hammer_cli_foreman/role.rb:65
406
+ msgid "Could not delete the user roles"
407
+ msgstr ""
408
+
409
+ #: lib/hammer_cli_foreman/role.rb:75
410
+ msgid "Manage user roles."
411
+ msgstr ""
412
+
413
+ #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:281
414
+ msgid "Fact"
415
+ msgstr "Fact"
416
+
417
+ #: lib/hammer_cli_foreman/fact.rb:36
418
+ msgid "Search facts."
419
+ msgstr ""
420
+
421
+ #: lib/hammer_cli_foreman/media.rb:11
422
+ msgid "Path"
423
+ msgstr ""
424
+
425
+ #: lib/hammer_cli_foreman/media.rb:20
426
+ #: lib/hammer_cli_foreman/partition_table.rb:12
427
+ msgid "OS Family"
428
+ msgstr ""
429
+
430
+ #: lib/hammer_cli_foreman/media.rb:32
431
+ msgid "Installation medium created"
432
+ msgstr ""
433
+
434
+ #: lib/hammer_cli_foreman/media.rb:33
435
+ msgid "Could not create the installation medium"
436
+ msgstr ""
437
+
438
+ #: lib/hammer_cli_foreman/media.rb:41
439
+ msgid "Installation medium updated"
440
+ msgstr ""
441
+
442
+ #: lib/hammer_cli_foreman/media.rb:42
443
+ msgid "Could not update the installation media"
444
+ msgstr ""
445
+
446
+ #: lib/hammer_cli_foreman/media.rb:50
447
+ msgid "Installation medium deleted"
448
+ msgstr ""
449
+
450
+ #: lib/hammer_cli_foreman/media.rb:51
451
+ msgid "Could not delete the installation media"
452
+ msgstr ""
453
+
454
+ #: lib/hammer_cli_foreman/media.rb:64
455
+ msgid "Manipulate installation media."
456
+ msgstr ""
457
+
458
+ #: lib/hammer_cli_foreman/exception_handler.rb:41
459
+ msgid "Forbidden - server refused to process the request"
460
+ msgstr ""
461
+
462
+ #: lib/hammer_cli_foreman/exception_handler.rb:75
463
+ msgid ""
464
+ "Could not load API description from the server\\n - is your server "
465
+ "down?\\n\\\\n \" - was \\\"#{rake_command}\\\" run on the server "
466
+ "when using apipie cache? (typical production settings))\\n\""
467
+ msgstr ""
468
+
469
+ #: lib/hammer_cli_foreman/compute_resource.rb:13
470
+ msgid "Provider"
471
+ msgstr ""
472
+
473
+ #: lib/hammer_cli_foreman/compute_resource.rb:23
474
+ #: lib/hammer_cli_foreman/compute_resource.rb:29
475
+ #: lib/hammer_cli_foreman/host.rb:157 lib/hammer_cli_foreman/image.rb:34
476
+ #: lib/hammer_cli_foreman/image.rb:72
477
+ msgid "UUID"
478
+ msgstr ""
479
+
480
+ #: lib/hammer_cli_foreman/compute_resource.rb:26
481
+ #: lib/hammer_cli_foreman/compute_resource.rb:36
482
+ msgid "Region"
483
+ msgstr ""
484
+
485
+ #: lib/hammer_cli_foreman/compute_resource.rb:30
486
+ msgid "Server"
487
+ msgstr ""
488
+
489
+ #: lib/hammer_cli_foreman/compute_resource.rb:33
490
+ msgid "Tenant"
491
+ msgstr ""
492
+
493
+ #: lib/hammer_cli_foreman/compute_resource.rb:43
494
+ msgid "Url"
495
+ msgstr ""
496
+
497
+ #: lib/hammer_cli_foreman/compute_resource.rb:44
498
+ #: lib/hammer_cli_foreman/smart_variables.rb:52
499
+ #: lib/hammer_cli_foreman/domain.rb:21
500
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
501
+ msgid "Description"
502
+ msgstr ""
503
+
504
+ #: lib/hammer_cli_foreman/compute_resource.rb:45
505
+ msgid "User"
506
+ msgstr ""
507
+
508
+ #: lib/hammer_cli_foreman/compute_resource.rb:62
509
+ msgid "Compute resource created"
510
+ msgstr ""
511
+
512
+ #: lib/hammer_cli_foreman/compute_resource.rb:63
513
+ msgid "Could not create the compute resource"
514
+ msgstr ""
515
+
516
+ #: lib/hammer_cli_foreman/compute_resource.rb:74
517
+ msgid "Compute resource updated"
518
+ msgstr ""
519
+
520
+ #: lib/hammer_cli_foreman/compute_resource.rb:75
521
+ msgid "Could not update the compute resource"
522
+ msgstr ""
523
+
524
+ #: lib/hammer_cli_foreman/compute_resource.rb:82
525
+ msgid "Compute resource deleted"
526
+ msgstr ""
527
+
528
+ #: lib/hammer_cli_foreman/compute_resource.rb:83
529
+ msgid "Could not delete the compute resource"
530
+ msgstr ""
531
+
532
+ #: lib/hammer_cli_foreman/compute_resource.rb:95
533
+ msgid "Manipulate compute resources."
534
+ msgstr ""
535
+
536
+ #: lib/hammer_cli_foreman/associating_commands.rb:41
537
+ msgid "Associate a hostgroup"
538
+ msgstr ""
539
+
540
+ #: lib/hammer_cli_foreman/associating_commands.rb:46
541
+ msgid "Disassociate a hostgroup"
542
+ msgstr ""
543
+
544
+ #: lib/hammer_cli_foreman/associating_commands.rb:55
545
+ msgid "Associate an environment"
546
+ msgstr ""
547
+
548
+ #: lib/hammer_cli_foreman/associating_commands.rb:60
549
+ msgid "Disassociate an environment"
550
+ msgstr ""
551
+
552
+ #: lib/hammer_cli_foreman/associating_commands.rb:69
553
+ msgid "Associate a domain"
554
+ msgstr ""
555
+
556
+ #: lib/hammer_cli_foreman/associating_commands.rb:74
557
+ msgid "Disassociate a domain"
558
+ msgstr ""
559
+
560
+ #: lib/hammer_cli_foreman/associating_commands.rb:83
561
+ msgid "Associate a medium"
562
+ msgstr ""
563
+
564
+ #: lib/hammer_cli_foreman/associating_commands.rb:88
565
+ msgid "Disassociate a medium"
566
+ msgstr ""
567
+
568
+ #: lib/hammer_cli_foreman/associating_commands.rb:97
569
+ msgid "Associate a subnet"
570
+ msgstr ""
571
+
572
+ #: lib/hammer_cli_foreman/associating_commands.rb:102
573
+ msgid "Disassociate a subnet"
574
+ msgstr ""
575
+
576
+ #: lib/hammer_cli_foreman/associating_commands.rb:111
577
+ msgid "Associate a compute resource"
578
+ msgstr ""
579
+
580
+ #: lib/hammer_cli_foreman/associating_commands.rb:116
581
+ msgid "Disassociate a compute resource"
582
+ msgstr ""
583
+
584
+ #: lib/hammer_cli_foreman/associating_commands.rb:125
585
+ msgid "Associate a smart proxy"
586
+ msgstr ""
587
+
588
+ #: lib/hammer_cli_foreman/associating_commands.rb:134
589
+ msgid "Disassociate a smart proxy"
590
+ msgstr ""
591
+
592
+ #: lib/hammer_cli_foreman/associating_commands.rb:147
593
+ msgid "Associate an user"
594
+ msgstr ""
595
+
596
+ #: lib/hammer_cli_foreman/associating_commands.rb:155
597
+ msgid "Disassociate an user"
598
+ msgstr ""
599
+
600
+ #: lib/hammer_cli_foreman/associating_commands.rb:167
601
+ msgid "Associate an user group"
602
+ msgstr ""
603
+
604
+ #: lib/hammer_cli_foreman/associating_commands.rb:177
605
+ msgid "Disassociate an user group"
606
+ msgstr ""
607
+
608
+ #: lib/hammer_cli_foreman/associating_commands.rb:191
609
+ msgid "Associate a configuration template"
610
+ msgstr ""
611
+
612
+ #: lib/hammer_cli_foreman/associating_commands.rb:196
613
+ msgid "Disassociate a configuration template"
614
+ msgstr ""
615
+
616
+ #: lib/hammer_cli_foreman/associating_commands.rb:205
617
+ msgid "Associate an organization"
618
+ msgstr "Associate an organisation"
619
+
620
+ #: lib/hammer_cli_foreman/associating_commands.rb:210
621
+ msgid "Disassociate an organization"
622
+ msgstr "Disassociate an organisation"
623
+
624
+ #: lib/hammer_cli_foreman/associating_commands.rb:219
625
+ msgid "Associate an operating system"
626
+ msgstr ""
627
+
628
+ #: lib/hammer_cli_foreman/associating_commands.rb:221
629
+ msgid "Operating system has been associated"
630
+ msgstr ""
631
+
632
+ #: lib/hammer_cli_foreman/associating_commands.rb:222
633
+ msgid "Could not associate the operating system"
634
+ msgstr ""
635
+
636
+ #: lib/hammer_cli_foreman/associating_commands.rb:228
637
+ msgid "Disassociate an operating system"
638
+ msgstr ""
639
+
640
+ #: lib/hammer_cli_foreman/associating_commands.rb:230
641
+ msgid "Operating system has been disassociated"
642
+ msgstr ""
643
+
644
+ #: lib/hammer_cli_foreman/associating_commands.rb:231
645
+ msgid "Could not disassociate the operating system"
646
+ msgstr ""
647
+
648
+ #: lib/hammer_cli_foreman/associating_commands.rb:240
649
+ msgid "Associate an architecture"
650
+ msgstr ""
651
+
652
+ #: lib/hammer_cli_foreman/associating_commands.rb:242
653
+ msgid "Architecture has been associated"
654
+ msgstr ""
655
+
656
+ #: lib/hammer_cli_foreman/associating_commands.rb:243
657
+ msgid "Could not associate the architecture"
658
+ msgstr ""
659
+
660
+ #: lib/hammer_cli_foreman/associating_commands.rb:249
661
+ msgid "Disassociate an architecture"
662
+ msgstr ""
663
+
664
+ #: lib/hammer_cli_foreman/associating_commands.rb:251
665
+ msgid "Architecture has been disassociated"
666
+ msgstr ""
667
+
668
+ #: lib/hammer_cli_foreman/associating_commands.rb:252
669
+ msgid "Could not disassociate the architecture"
670
+ msgstr ""
671
+
672
+ #: lib/hammer_cli_foreman/associating_commands.rb:261
673
+ msgid "Associate a partition table"
674
+ msgstr ""
675
+
676
+ #: lib/hammer_cli_foreman/associating_commands.rb:263
677
+ msgid "Partition table has been associated"
678
+ msgstr ""
679
+
680
+ #: lib/hammer_cli_foreman/associating_commands.rb:264
681
+ msgid "Could not associate the partition table"
682
+ msgstr ""
683
+
684
+ #: lib/hammer_cli_foreman/associating_commands.rb:270
685
+ msgid "Disassociate a partition table"
686
+ msgstr ""
687
+
688
+ #: lib/hammer_cli_foreman/associating_commands.rb:272
689
+ msgid "Partition table has been disassociated"
690
+ msgstr ""
691
+
692
+ #: lib/hammer_cli_foreman/associating_commands.rb:273
693
+ msgid "Could not disassociate the partition table"
694
+ msgstr ""
695
+
696
+ #: lib/hammer_cli_foreman/associating_commands.rb:282
697
+ msgid "Assign a user role"
698
+ msgstr ""
699
+
700
+ #: lib/hammer_cli_foreman/associating_commands.rb:284
701
+ msgid "User role has been assigned"
702
+ msgstr ""
703
+
704
+ #: lib/hammer_cli_foreman/associating_commands.rb:285
705
+ msgid "Could not assign the user role"
706
+ msgstr ""
707
+
708
+ #: lib/hammer_cli_foreman/associating_commands.rb:291
709
+ msgid "Remove a user role"
710
+ msgstr ""
711
+
712
+ #: lib/hammer_cli_foreman/associating_commands.rb:293
713
+ msgid "User role has been removed"
714
+ msgstr ""
715
+
716
+ #: lib/hammer_cli_foreman/associating_commands.rb:294
717
+ msgid "Could not remove the user role"
718
+ msgstr ""
719
+
720
+ #: lib/hammer_cli_foreman/smart_variables.rb:9
721
+ #: lib/hammer_cli_foreman/puppet_class.rb:34
722
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
723
+ msgid "Parameter"
724
+ msgstr ""
725
+
726
+ #: lib/hammer_cli_foreman/smart_variables.rb:10
727
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
728
+ msgid "Default Value"
729
+ msgstr ""
730
+
731
+ #: lib/hammer_cli_foreman/smart_variables.rb:11
732
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
733
+ msgid "Override"
734
+ msgstr ""
735
+
736
+ #: lib/hammer_cli_foreman/smart_variables.rb:32
737
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
738
+ msgid "Puppet class"
739
+ msgstr ""
740
+
741
+ #: lib/hammer_cli_foreman/smart_variables.rb:33
742
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
743
+ msgid "Class Id"
744
+ msgstr ""
745
+
746
+ #: lib/hammer_cli_foreman/smart_variables.rb:53
747
+ #: lib/hammer_cli_foreman/smart_variables.rb:57
748
+ #: lib/hammer_cli_foreman/template.rb:27
749
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
750
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
751
+ msgid "Type"
752
+ msgstr ""
753
+
754
+ #: lib/hammer_cli_foreman/smart_variables.rb:54
755
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
756
+ msgid "Required"
757
+ msgstr ""
758
+
759
+ #: lib/hammer_cli_foreman/smart_variables.rb:56
760
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
761
+ msgid "Validator"
762
+ msgstr ""
763
+
764
+ #: lib/hammer_cli_foreman/smart_variables.rb:58
765
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
766
+ msgid "Rule"
767
+ msgstr ""
768
+
769
+ #: lib/hammer_cli_foreman/smart_variables.rb:60
770
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
771
+ msgid "Override values"
772
+ msgstr ""
773
+
774
+ #: lib/hammer_cli_foreman/smart_variables.rb:61
775
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
776
+ msgid "Order"
777
+ msgstr ""
778
+
779
+ #: lib/hammer_cli_foreman/smart_variables.rb:62
780
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
781
+ msgid "Count"
782
+ msgstr ""
783
+
784
+ #: lib/hammer_cli_foreman/smart_variables.rb:66
785
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
786
+ msgid "Match"
787
+ msgstr ""
788
+
789
+ #: lib/hammer_cli_foreman/smart_variables.rb:85
790
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
791
+ msgid "Parameter updated"
792
+ msgstr ""
793
+
794
+ #: lib/hammer_cli_foreman/smart_variables.rb:86
795
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
796
+ msgid "Could not update the parameter"
797
+ msgstr ""
798
+
799
+ #: lib/hammer_cli_foreman/smart_variables.rb:90
800
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
801
+ msgid "Override this parameter."
802
+ msgstr ""
803
+
804
+ #: lib/hammer_cli_foreman/smart_variables.rb:92
805
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
806
+ msgid "This parameter is required."
807
+ msgstr ""
808
+
809
+ #: lib/hammer_cli_foreman/smart_variables.rb:94
810
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
811
+ msgid "Type of the parameter."
812
+ msgstr ""
813
+
814
+ #: lib/hammer_cli_foreman/smart_variables.rb:97
815
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
816
+ msgid "Type of the validator."
817
+ msgstr ""
818
+
819
+ #: lib/hammer_cli_foreman/smart_variables.rb:109
820
+ msgid "Manipulate smart variables."
821
+ msgstr ""
822
+
823
+ #: lib/hammer_cli_foreman/hostgroup.rb:24
824
+ msgid "Label"
825
+ msgstr ""
826
+
827
+ #: lib/hammer_cli_foreman/hostgroup.rb:25 lib/hammer_cli_foreman/host.rb:126
828
+ #: lib/hammer_cli_foreman/image.rb:32
829
+ msgid "Operating System"
830
+ msgstr ""
831
+
832
+ #: lib/hammer_cli_foreman/hostgroup.rb:26 lib/hammer_cli_foreman/host.rb:160
833
+ msgid "Environment"
834
+ msgstr ""
835
+
836
+ #: lib/hammer_cli_foreman/hostgroup.rb:27 lib/hammer_cli_foreman/host.rb:181
837
+ msgid "Model"
838
+ msgstr "Model"
839
+
840
+ #: lib/hammer_cli_foreman/hostgroup.rb:28
841
+ msgid "Ancestry"
842
+ msgstr ""
843
+
844
+ #: lib/hammer_cli_foreman/hostgroup.rb:38 lib/hammer_cli_foreman/host.rb:183
845
+ msgid "Subnet"
846
+ msgstr "Subnet"
847
+
848
+ #: lib/hammer_cli_foreman/hostgroup.rb:40 lib/hammer_cli_foreman/host.rb:184
849
+ msgid "Domain"
850
+ msgstr ""
851
+
852
+ #: lib/hammer_cli_foreman/hostgroup.rb:41 lib/hammer_cli_foreman/host.rb:188
853
+ #: lib/hammer_cli_foreman/image.rb:46
854
+ msgid "Architecture"
855
+ msgstr ""
856
+
857
+ #: lib/hammer_cli_foreman/hostgroup.rb:42 lib/hammer_cli_foreman/host.rb:187
858
+ msgid "Partition Table"
859
+ msgstr ""
860
+
861
+ #: lib/hammer_cli_foreman/hostgroup.rb:43 lib/hammer_cli_foreman/host.rb:180
862
+ msgid "Medium"
863
+ msgstr ""
864
+
865
+ #: lib/hammer_cli_foreman/hostgroup.rb:44 lib/hammer_cli_foreman/host.rb:179
866
+ msgid "Puppet CA Proxy Id"
867
+ msgstr ""
868
+
869
+ #: lib/hammer_cli_foreman/hostgroup.rb:45
870
+ msgid "Puppet Master Proxy Id"
871
+ msgstr ""
872
+
873
+ #: lib/hammer_cli_foreman/hostgroup.rb:46
874
+ msgid "ComputeProfile"
875
+ msgstr ""
876
+
877
+ #: lib/hammer_cli_foreman/hostgroup.rb:63
878
+ msgid "Hostgroup created"
879
+ msgstr ""
880
+
881
+ #: lib/hammer_cli_foreman/hostgroup.rb:64
882
+ msgid "Could not create the hostgroup"
883
+ msgstr ""
884
+
885
+ #: lib/hammer_cli_foreman/hostgroup.rb:76
886
+ msgid "Hostgroup updated"
887
+ msgstr ""
888
+
889
+ #: lib/hammer_cli_foreman/hostgroup.rb:77
890
+ msgid "Could not update the hostgroup"
891
+ msgstr ""
892
+
893
+ #: lib/hammer_cli_foreman/hostgroup.rb:84
894
+ msgid "Hostgroup deleted"
895
+ msgstr ""
896
+
897
+ #: lib/hammer_cli_foreman/hostgroup.rb:85
898
+ msgid "Could not delete the hostgroup"
899
+ msgstr ""
900
+
901
+ #: lib/hammer_cli_foreman/hostgroup.rb:112
902
+ msgid "Create or update parameter for a hostgroup."
903
+ msgstr ""
904
+
905
+ #: lib/hammer_cli_foreman/hostgroup.rb:114
906
+ msgid "Hostgroup parameter updated"
907
+ msgstr ""
908
+
909
+ #: lib/hammer_cli_foreman/hostgroup.rb:115
910
+ msgid "New hostgroup parameter created"
911
+ msgstr ""
912
+
913
+ #: lib/hammer_cli_foreman/hostgroup.rb:116
914
+ msgid "Could not set hostgroup parameter"
915
+ msgstr ""
916
+
917
+ #: lib/hammer_cli_foreman/hostgroup.rb:123
918
+ msgid "Delete parameter for a hostgroup."
919
+ msgstr ""
920
+
921
+ #: lib/hammer_cli_foreman/hostgroup.rb:125
922
+ msgid "Hostgroup parameter deleted"
923
+ msgstr ""
924
+
925
+ #: lib/hammer_cli_foreman/hostgroup.rb:141
926
+ msgid "Manipulate hostgroups."
927
+ msgstr ""
928
+
929
+ #: lib/hammer_cli_foreman/template.rb:71
930
+ msgid "List available config template kinds."
931
+ msgstr ""
932
+
933
+ #: lib/hammer_cli_foreman/template.rb:90
934
+ msgid "View config template content."
935
+ msgstr ""
936
+
937
+ #: lib/hammer_cli_foreman/template.rb:102
938
+ #: lib/hammer_cli_foreman/template.rb:120
939
+ msgid "Path to a file that contains the template"
940
+ msgstr ""
941
+
942
+ #: lib/hammer_cli_foreman/template.rb:104
943
+ #: lib/hammer_cli_foreman/template.rb:122
944
+ msgid "Template type. Eg. snippet, script, provision"
945
+ msgstr ""
946
+
947
+ #: lib/hammer_cli_foreman/template.rb:106
948
+ msgid "Config template created"
949
+ msgstr ""
950
+
951
+ #: lib/hammer_cli_foreman/template.rb:107
952
+ msgid "Could not create the config template"
953
+ msgstr ""
954
+
955
+ #: lib/hammer_cli_foreman/template.rb:124
956
+ msgid "Config template updated"
957
+ msgstr ""
958
+
959
+ #: lib/hammer_cli_foreman/template.rb:125
960
+ msgid "Could not update the config template"
961
+ msgstr ""
962
+
963
+ #: lib/hammer_cli_foreman/template.rb:138
964
+ msgid "Config template deleted"
965
+ msgstr ""
966
+
967
+ #: lib/hammer_cli_foreman/template.rb:139
968
+ msgid "Could not delete the config template"
969
+ msgstr ""
970
+
971
+ #: lib/hammer_cli_foreman/template.rb:154
972
+ msgid "Manipulate config templates."
973
+ msgstr ""
974
+
975
+ #: lib/hammer_cli_foreman/host.rb:36
976
+ msgid "Host parameters."
977
+ msgstr ""
978
+
979
+ #: lib/hammer_cli_foreman/host.rb:38
980
+ msgid "Compute resource attributes."
981
+ msgstr ""
982
+
983
+ #: lib/hammer_cli_foreman/host.rb:40
984
+ msgid "Volume parameters"
985
+ msgstr ""
986
+
987
+ #: lib/hammer_cli_foreman/host.rb:42
988
+ msgid "Interface parameters."
989
+ msgstr ""
990
+
991
+ #: lib/hammer_cli_foreman/host.rb:127
992
+ msgid "Host Group"
993
+ msgstr ""
994
+
995
+ #: lib/hammer_cli_foreman/host.rb:128 lib/hammer_cli_foreman/host.rb:197
996
+ #: lib/hammer_cli_foreman/host.rb:210
997
+ msgid "IP"
998
+ msgstr ""
999
+
1000
+ #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:198
1001
+ #: lib/hammer_cli_foreman/host.rb:211
1002
+ msgid "MAC"
1003
+ msgstr ""
1004
+
1005
+ #: lib/hammer_cli_foreman/host.rb:158
1006
+ msgid "Cert name"
1007
+ msgstr ""
1008
+
1009
+ #: lib/hammer_cli_foreman/host.rb:162
1010
+ msgid "Managed"
1011
+ msgstr ""
1012
+
1013
+ #: lib/hammer_cli_foreman/host.rb:163
1014
+ msgid "Enabled"
1015
+ msgstr ""
1016
+
1017
+ #: lib/hammer_cli_foreman/host.rb:164
1018
+ msgid "Build"
1019
+ msgstr ""
1020
+
1021
+ #: lib/hammer_cli_foreman/host.rb:166
1022
+ msgid "Use image"
1023
+ msgstr ""
1024
+
1025
+ #: lib/hammer_cli_foreman/host.rb:167
1026
+ msgid "Disk"
1027
+ msgstr ""
1028
+
1029
+ #: lib/hammer_cli_foreman/host.rb:168
1030
+ msgid "Image file"
1031
+ msgstr ""
1032
+
1033
+ #: lib/hammer_cli_foreman/host.rb:170
1034
+ msgid "SP Name"
1035
+ msgstr ""
1036
+
1037
+ #: lib/hammer_cli_foreman/host.rb:171
1038
+ msgid "SP IP"
1039
+ msgstr ""
1040
+
1041
+ #: lib/hammer_cli_foreman/host.rb:172
1042
+ msgid "SP MAC"
1043
+ msgstr ""
1044
+
1045
+ #: lib/hammer_cli_foreman/host.rb:174
1046
+ msgid "SP Subnet"
1047
+ msgstr ""
1048
+
1049
+ #: lib/hammer_cli_foreman/host.rb:176
1050
+ msgid "Installed at"
1051
+ msgstr ""
1052
+
1053
+ #: lib/hammer_cli_foreman/host.rb:182
1054
+ msgid "Owner Id"
1055
+ msgstr ""
1056
+
1057
+ #: lib/hammer_cli_foreman/host.rb:185
1058
+ msgid "Puppet Proxy Id"
1059
+ msgstr ""
1060
+
1061
+ #: lib/hammer_cli_foreman/host.rb:186
1062
+ msgid "Owner Type"
1063
+ msgstr ""
1064
+
1065
+ #: lib/hammer_cli_foreman/host.rb:189
1066
+ msgid "Image"
1067
+ msgstr ""
1068
+
1069
+ #: lib/hammer_cli_foreman/host.rb:190
1070
+ msgid "Compute Resource"
1071
+ msgstr ""
1072
+
1073
+ #: lib/hammer_cli_foreman/host.rb:192
1074
+ msgid "Comment"
1075
+ msgstr ""
1076
+
1077
+ #: lib/hammer_cli_foreman/host.rb:194
1078
+ msgid "BMC Network Interfaces"
1079
+ msgstr ""
1080
+
1081
+ #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
1082
+ msgid "Domain Id"
1083
+ msgstr ""
1084
+
1085
+ #: lib/hammer_cli_foreman/host.rb:200 lib/hammer_cli_foreman/host.rb:213
1086
+ msgid "Domain Name"
1087
+ msgstr ""
1088
+
1089
+ #: lib/hammer_cli_foreman/host.rb:201 lib/hammer_cli_foreman/host.rb:214
1090
+ msgid "Subnet Id"
1091
+ msgstr ""
1092
+
1093
+ #: lib/hammer_cli_foreman/host.rb:202 lib/hammer_cli_foreman/host.rb:215
1094
+ msgid "Subnet Name"
1095
+ msgstr ""
1096
+
1097
+ #: lib/hammer_cli_foreman/host.rb:203
1098
+ msgid "BMC Username"
1099
+ msgstr ""
1100
+
1101
+ #: lib/hammer_cli_foreman/host.rb:204
1102
+ msgid "BMC Password"
1103
+ msgstr ""
1104
+
1105
+ #: lib/hammer_cli_foreman/host.rb:207
1106
+ msgid "Managed Network Interfaces"
1107
+ msgstr ""
1108
+
1109
+ #: lib/hammer_cli_foreman/host.rb:231
1110
+ msgid "Status"
1111
+ msgstr ""
1112
+
1113
+ #: lib/hammer_cli_foreman/host.rb:232
1114
+ msgid "Power"
1115
+ msgstr ""
1116
+
1117
+ #: lib/hammer_cli_foreman/host.rb:268
1118
+ msgid "Puppet run triggered"
1119
+ msgstr ""
1120
+
1121
+ #: lib/hammer_cli_foreman/host.rb:319
1122
+ msgid "Host created"
1123
+ msgstr ""
1124
+
1125
+ #: lib/hammer_cli_foreman/host.rb:320
1126
+ msgid "Could not create the host"
1127
+ msgstr ""
1128
+
1129
+ #: lib/hammer_cli_foreman/host.rb:341
1130
+ msgid "Host updated"
1131
+ msgstr ""
1132
+
1133
+ #: lib/hammer_cli_foreman/host.rb:342
1134
+ msgid "Could not update the host"
1135
+ msgstr ""
1136
+
1137
+ #: lib/hammer_cli_foreman/host.rb:349
1138
+ msgid "Host deleted"
1139
+ msgstr ""
1140
+
1141
+ #: lib/hammer_cli_foreman/host.rb:350
1142
+ msgid "Could not delete the host"
1143
+ msgstr ""
1144
+
1145
+ #: lib/hammer_cli_foreman/host.rb:357
1146
+ msgid "Create or update parameter for a host."
1147
+ msgstr ""
1148
+
1149
+ #: lib/hammer_cli_foreman/host.rb:359
1150
+ msgid "Host parameter updated"
1151
+ msgstr ""
1152
+
1153
+ #: lib/hammer_cli_foreman/host.rb:360
1154
+ msgid "New host parameter created"
1155
+ msgstr ""
1156
+
1157
+ #: lib/hammer_cli_foreman/host.rb:361
1158
+ msgid "Could not set host parameter"
1159
+ msgstr ""
1160
+
1161
+ #: lib/hammer_cli_foreman/host.rb:373
1162
+ msgid "Delete parameter for a host."
1163
+ msgstr ""
1164
+
1165
+ #: lib/hammer_cli_foreman/host.rb:375
1166
+ msgid "Host parameter deleted"
1167
+ msgstr ""
1168
+
1169
+ #: lib/hammer_cli_foreman/host.rb:390
1170
+ msgid "Power a host on"
1171
+ msgstr ""
1172
+
1173
+ #: lib/hammer_cli_foreman/host.rb:391
1174
+ msgid "The host is starting."
1175
+ msgstr ""
1176
+
1177
+ #: lib/hammer_cli_foreman/host.rb:408
1178
+ msgid "Force turning off a host"
1179
+ msgstr ""
1180
+
1181
+ #: lib/hammer_cli_foreman/host.rb:413
1182
+ msgid "Power a host off"
1183
+ msgstr ""
1184
+
1185
+ #: lib/hammer_cli_foreman/host.rb:425
1186
+ msgid "Power off forced."
1187
+ msgstr ""
1188
+
1189
+ #: lib/hammer_cli_foreman/host.rb:427
1190
+ msgid "Powering the host off."
1191
+ msgstr ""
1192
+
1193
+ #: lib/hammer_cli_foreman/host.rb:444
1194
+ msgid "Reboot a host"
1195
+ msgstr ""
1196
+
1197
+ #: lib/hammer_cli_foreman/host.rb:445
1198
+ msgid "Host reboot started."
1199
+ msgstr ""
1200
+
1201
+ #: lib/hammer_cli_foreman/commands.rb:77
1202
+ msgid "Received data of unknown format"
1203
+ msgstr ""
1204
+
1205
+ #: lib/hammer_cli_foreman/commands.rb:244
1206
+ msgid "List next page? (%s): "
1207
+ msgstr ""
1208
+
1209
+ #: lib/hammer_cli_foreman/commands.rb:448
1210
+ msgid "Associate a resource"
1211
+ msgstr ""
1212
+
1213
+ #: lib/hammer_cli_foreman/commands.rb:470
1214
+ msgid "Disassociate a resource"
1215
+ msgstr ""
1216
+
1217
+ #: lib/hammer_cli_foreman/references.rb:8
1218
+ msgid "Created at"
1219
+ msgstr ""
1220
+
1221
+ #: lib/hammer_cli_foreman/references.rb:9
1222
+ msgid "Updated at"
1223
+ msgstr ""
1224
+
1225
+ #: lib/hammer_cli_foreman/references.rb:18
1226
+ #: lib/hammer_cli_foreman/location.rb:37
1227
+ msgid "Organizations"
1228
+ msgstr "Organisations"
1229
+
1230
+ #: lib/hammer_cli_foreman/references.rb:26
1231
+ msgid "Users"
1232
+ msgstr ""
1233
+
1234
+ #: lib/hammer_cli_foreman/references.rb:34
1235
+ msgid "User groups"
1236
+ msgstr ""
1237
+
1238
+ #: lib/hammer_cli_foreman/references.rb:42
1239
+ msgid "Smart proxies"
1240
+ msgstr ""
1241
+
1242
+ #: lib/hammer_cli_foreman/references.rb:50
1243
+ msgid "Compute resources"
1244
+ msgstr ""
1245
+
1246
+ #: lib/hammer_cli_foreman/references.rb:58
1247
+ msgid "Installation media"
1248
+ msgstr ""
1249
+
1250
+ #: lib/hammer_cli_foreman/references.rb:66
1251
+ msgid "Templates"
1252
+ msgstr ""
1253
+
1254
+ #: lib/hammer_cli_foreman/references.rb:74
1255
+ msgid "Domains"
1256
+ msgstr ""
1257
+
1258
+ #: lib/hammer_cli_foreman/references.rb:82
1259
+ msgid "Environments"
1260
+ msgstr ""
1261
+
1262
+ #: lib/hammer_cli_foreman/references.rb:90
1263
+ msgid "Hostgroups"
1264
+ msgstr ""
1265
+
1266
+ #: lib/hammer_cli_foreman/references.rb:98
1267
+ msgid "Subnets"
1268
+ msgstr ""
1269
+
1270
+ #: lib/hammer_cli_foreman/references.rb:107
1271
+ msgid "Parameters"
1272
+ msgstr ""
1273
+
1274
+ #: lib/hammer_cli_foreman/references.rb:115
1275
+ msgid "Puppetclasses"
1276
+ msgstr ""
1277
+
1278
+ #: lib/hammer_cli_foreman/references.rb:123
1279
+ msgid "Operating systems"
1280
+ msgstr ""
1281
+
1282
+ #: lib/hammer_cli_foreman/references.rb:131
1283
+ msgid "Roles"
1284
+ msgstr ""
1285
+
1286
+ #: lib/hammer_cli_foreman/resource_supported_test.rb:11
1287
+ msgid "The server does not support such operation."
1288
+ msgstr ""
1289
+
1290
+ #: lib/hammer_cli_foreman/operating_system.rb:11
1291
+ msgid "Full name"
1292
+ msgstr ""
1293
+
1294
+ #: lib/hammer_cli_foreman/operating_system.rb:12
1295
+ msgid "Release name"
1296
+ msgstr ""
1297
+
1298
+ #: lib/hammer_cli_foreman/operating_system.rb:13
1299
+ msgid "Family"
1300
+ msgstr ""
1301
+
1302
+ #: lib/hammer_cli_foreman/operating_system.rb:23
1303
+ msgid "Major version"
1304
+ msgstr ""
1305
+
1306
+ #: lib/hammer_cli_foreman/operating_system.rb:24
1307
+ msgid "Minor version"
1308
+ msgstr ""
1309
+
1310
+ #: lib/hammer_cli_foreman/operating_system.rb:25
1311
+ msgid "Partition tables"
1312
+ msgstr ""
1313
+
1314
+ #: lib/hammer_cli_foreman/operating_system.rb:28
1315
+ msgid "Default templates"
1316
+ msgstr ""
1317
+
1318
+ #: lib/hammer_cli_foreman/operating_system.rb:31
1319
+ msgid "Architectures"
1320
+ msgstr ""
1321
+
1322
+ #: lib/hammer_cli_foreman/operating_system.rb:46
1323
+ #: lib/hammer_cli_foreman/operating_system.rb:73
1324
+ msgid "set associated architectures"
1325
+ msgstr ""
1326
+
1327
+ #: lib/hammer_cli_foreman/operating_system.rb:48
1328
+ #: lib/hammer_cli_foreman/operating_system.rb:75
1329
+ msgid "set associated templates"
1330
+ msgstr ""
1331
+
1332
+ #: lib/hammer_cli_foreman/operating_system.rb:50
1333
+ #: lib/hammer_cli_foreman/operating_system.rb:77
1334
+ msgid "set associated installation media"
1335
+ msgstr ""
1336
+
1337
+ #: lib/hammer_cli_foreman/operating_system.rb:52
1338
+ #: lib/hammer_cli_foreman/operating_system.rb:79
1339
+ msgid "set associated partition tables"
1340
+ msgstr ""
1341
+
1342
+ #: lib/hammer_cli_foreman/operating_system.rb:55
1343
+ msgid "Operating system created"
1344
+ msgstr ""
1345
+
1346
+ #: lib/hammer_cli_foreman/operating_system.rb:56
1347
+ msgid "Could not create the operating system"
1348
+ msgstr ""
1349
+
1350
+ #: lib/hammer_cli_foreman/operating_system.rb:82
1351
+ msgid "Operating system updated"
1352
+ msgstr ""
1353
+
1354
+ #: lib/hammer_cli_foreman/operating_system.rb:83
1355
+ msgid "Could not update the operating system"
1356
+ msgstr ""
1357
+
1358
+ #: lib/hammer_cli_foreman/operating_system.rb:99
1359
+ msgid "Operating system deleted"
1360
+ msgstr ""
1361
+
1362
+ #: lib/hammer_cli_foreman/operating_system.rb:100
1363
+ msgid "Could not delete the operating system"
1364
+ msgstr ""
1365
+
1366
+ #: lib/hammer_cli_foreman/operating_system.rb:107
1367
+ msgid "Create or update parameter for an operating system."
1368
+ msgstr ""
1369
+
1370
+ #: lib/hammer_cli_foreman/operating_system.rb:109
1371
+ msgid "Operating system parameter updated"
1372
+ msgstr ""
1373
+
1374
+ #: lib/hammer_cli_foreman/operating_system.rb:110
1375
+ msgid "New operating system parameter created"
1376
+ msgstr ""
1377
+
1378
+ #: lib/hammer_cli_foreman/operating_system.rb:111
1379
+ msgid "Could not set operating system parameter"
1380
+ msgstr ""
1381
+
1382
+ #: lib/hammer_cli_foreman/operating_system.rb:123
1383
+ msgid "Delete parameter for an operating system."
1384
+ msgstr ""
1385
+
1386
+ #: lib/hammer_cli_foreman/operating_system.rb:125
1387
+ msgid "operating system parameter deleted"
1388
+ msgstr ""
1389
+
1390
+ #: lib/hammer_cli_foreman/operating_system.rb:140
1391
+ #: lib/hammer_cli_foreman/operating_system.rb:206
1392
+ msgid "operatingsystem id"
1393
+ msgstr ""
1394
+
1395
+ #: lib/hammer_cli_foreman/operating_system.rb:141
1396
+ msgid "config template id to be set"
1397
+ msgstr ""
1398
+
1399
+ #: lib/hammer_cli_foreman/operating_system.rb:144
1400
+ msgid ""
1401
+ "[%{config_template_name}] was set as default %{template_kind_name} template"
1402
+ msgstr ""
1403
+
1404
+ #: lib/hammer_cli_foreman/operating_system.rb:145
1405
+ msgid "Could not set the os default template"
1406
+ msgstr ""
1407
+
1408
+ #: lib/hammer_cli_foreman/operating_system.rb:207
1409
+ msgid "Type of the config template"
1410
+ msgstr ""
1411
+
1412
+ #: lib/hammer_cli_foreman/operating_system.rb:209
1413
+ msgid "Default template deleted"
1414
+ msgstr ""
1415
+
1416
+ #: lib/hammer_cli_foreman/operating_system.rb:210
1417
+ msgid "Could not delete the default template"
1418
+ msgstr ""
1419
+
1420
+ #: lib/hammer_cli_foreman/operating_system.rb:217
1421
+ msgid "\"Default template of type #{option_type} not found\""
1422
+ msgstr ""
1423
+
1424
+ #: lib/hammer_cli_foreman/smart_proxy.rb:13
1425
+ msgid "URL"
1426
+ msgstr ""
1427
+
1428
+ #: lib/hammer_cli_foreman/smart_proxy.rb:14
1429
+ #: lib/hammer_cli_foreman/smart_proxy.rb:29
1430
+ msgid "Features"
1431
+ msgstr ""
1432
+
1433
+ #: lib/hammer_cli_foreman/smart_proxy.rb:41
1434
+ msgid "Smart proxy created"
1435
+ msgstr ""
1436
+
1437
+ #: lib/hammer_cli_foreman/smart_proxy.rb:42
1438
+ msgid "Could not create the proxy"
1439
+ msgstr ""
1440
+
1441
+ #: lib/hammer_cli_foreman/smart_proxy.rb:49
1442
+ msgid "Smart proxy updated"
1443
+ msgstr ""
1444
+
1445
+ #: lib/hammer_cli_foreman/smart_proxy.rb:50
1446
+ msgid "Could not update the proxy"
1447
+ msgstr ""
1448
+
1449
+ #: lib/hammer_cli_foreman/smart_proxy.rb:57
1450
+ msgid "Smart proxy deleted"
1451
+ msgstr ""
1452
+
1453
+ #: lib/hammer_cli_foreman/smart_proxy.rb:58
1454
+ msgid "Could not delete the proxy"
1455
+ msgstr ""
1456
+
1457
+ #: lib/hammer_cli_foreman/smart_proxy.rb:69
1458
+ msgid "Puppet classes were imported"
1459
+ msgstr ""
1460
+
1461
+ #: lib/hammer_cli_foreman/smart_proxy.rb:70
1462
+ msgid "Import of puppet classes failed"
1463
+ msgstr ""
1464
+
1465
+ #: lib/hammer_cli_foreman/smart_proxy.rb:72
1466
+ msgid "Do not run the import"
1467
+ msgstr ""
1468
+
1469
+ #: lib/hammer_cli_foreman/smart_proxy.rb:92
1470
+ msgid "Smart proxy features were refreshed"
1471
+ msgstr ""
1472
+
1473
+ #: lib/hammer_cli_foreman/smart_proxy.rb:93
1474
+ msgid "Refresh of smart proxy features failed"
1475
+ msgstr ""
1476
+
1477
+ #: lib/hammer_cli_foreman/smart_proxy.rb:103
1478
+ msgid "Manipulate smart proxies."
1479
+ msgstr ""
1480
+
1481
+ #: lib/hammer_cli_foreman/environment.rb:34
1482
+ msgid "Environment created"
1483
+ msgstr ""
1484
+
1485
+ #: lib/hammer_cli_foreman/environment.rb:35
1486
+ msgid "Could not create the environment"
1487
+ msgstr ""
1488
+
1489
+ #: lib/hammer_cli_foreman/environment.rb:42
1490
+ msgid "Environment updated"
1491
+ msgstr ""
1492
+
1493
+ #: lib/hammer_cli_foreman/environment.rb:43
1494
+ msgid "Could not update the environment"
1495
+ msgstr ""
1496
+
1497
+ #: lib/hammer_cli_foreman/environment.rb:50
1498
+ msgid "Environment deleted"
1499
+ msgstr ""
1500
+
1501
+ #: lib/hammer_cli_foreman/environment.rb:51
1502
+ msgid "Could not delete the environment"
1503
+ msgstr ""
1504
+
1505
+ #: lib/hammer_cli_foreman/puppet_class.rb:33
1506
+ msgid "Smart variables"
1507
+ msgstr ""
1508
+
1509
+ #: lib/hammer_cli_foreman/puppet_class.rb:35
1510
+ msgid "Default value"
1511
+ msgstr ""
1512
+
1513
+ #: lib/hammer_cli_foreman/puppet_class.rb:37
1514
+ msgid "Smart class parameters"
1515
+ msgstr ""
1516
+
1517
+ #: lib/hammer_cli_foreman/puppet_class.rb:60
1518
+ msgid "Search puppet modules."
1519
+ msgstr ""
1520
+
1521
+ #: lib/hammer_cli_foreman/domain.rb:22
1522
+ msgid "DNS Id"
1523
+ msgstr ""
1524
+
1525
+ #: lib/hammer_cli_foreman/domain.rb:35
1526
+ msgid "Domain [%{name}] created"
1527
+ msgstr ""
1528
+
1529
+ #: lib/hammer_cli_foreman/domain.rb:36
1530
+ msgid "Could not create the domain"
1531
+ msgstr ""
1532
+
1533
+ #: lib/hammer_cli_foreman/domain.rb:38 lib/hammer_cli_foreman/domain.rb:48
1534
+ msgid "Full name describing the domain"
1535
+ msgstr ""
1536
+
1537
+ #: lib/hammer_cli_foreman/domain.rb:45
1538
+ msgid "Domain [%{name}] updated"
1539
+ msgstr ""
1540
+
1541
+ #: lib/hammer_cli_foreman/domain.rb:46
1542
+ msgid "Could not update the domain"
1543
+ msgstr ""
1544
+
1545
+ #: lib/hammer_cli_foreman/domain.rb:55
1546
+ msgid "Domain [%{name}] deleted"
1547
+ msgstr ""
1548
+
1549
+ #: lib/hammer_cli_foreman/domain.rb:56
1550
+ msgid "Could not delete the domain"
1551
+ msgstr ""
1552
+
1553
+ #: lib/hammer_cli_foreman/domain.rb:63
1554
+ msgid "Create or update parameter for a domain."
1555
+ msgstr ""
1556
+
1557
+ #: lib/hammer_cli_foreman/domain.rb:65
1558
+ msgid "Domain parameter updated"
1559
+ msgstr ""
1560
+
1561
+ #: lib/hammer_cli_foreman/domain.rb:66
1562
+ msgid "New domain parameter created"
1563
+ msgstr ""
1564
+
1565
+ #: lib/hammer_cli_foreman/domain.rb:67
1566
+ msgid "Could not set domain parameter"
1567
+ msgstr ""
1568
+
1569
+ #: lib/hammer_cli_foreman/domain.rb:79
1570
+ msgid "Delete parameter for a domain."
1571
+ msgstr ""
1572
+
1573
+ #: lib/hammer_cli_foreman/domain.rb:81
1574
+ msgid "Domain parameter deleted"
1575
+ msgstr ""
1576
+
1577
+ #: lib/hammer_cli_foreman/domain.rb:96
1578
+ msgid "Manipulate domains."
1579
+ msgstr ""
1580
+
1581
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:107
1582
+ msgid "Manipulate smart class parameters."
1583
+ msgstr ""
1584
+
1585
+ #: lib/hammer_cli_foreman/auth.rb:7
1586
+ msgid "Set credentials"
1587
+ msgstr ""
1588
+
1589
+ #: lib/hammer_cli_foreman/auth.rb:20
1590
+ msgid "Wipe your credentials"
1591
+ msgstr ""
1592
+
1593
+ #: lib/hammer_cli_foreman/auth.rb:26
1594
+ msgid "Credentials deleted."
1595
+ msgstr ""
1596
+
1597
+ #: lib/hammer_cli_foreman/auth.rb:33
1598
+ msgid "Information about current connections"
1599
+ msgstr ""
1600
+
1601
+ #: lib/hammer_cli_foreman/auth.rb:37
1602
+ msgid "You are logged in as '%s'"
1603
+ msgstr ""
1604
+
1605
+ #: lib/hammer_cli_foreman/auth.rb:39
1606
+ msgid ""
1607
+ "You are currently not logged in to any service.\\nUse the service to set "
1608
+ "credentials."
1609
+ msgstr ""
1610
+
1611
+ #: lib/hammer_cli_foreman/auth.rb:48
1612
+ msgid "Foreman connection login/logout."
1613
+ msgstr ""
1614
+
1615
+ #: lib/hammer_cli_foreman/usergroup.rb:28
1616
+ msgid "User group [%<name>s] created"
1617
+ msgstr ""
1618
+
1619
+ #: lib/hammer_cli_foreman/usergroup.rb:29
1620
+ msgid "Could not create the user group"
1621
+ msgstr ""
1622
+
1623
+ #: lib/hammer_cli_foreman/usergroup.rb:35
1624
+ msgid "User group [%<name>s] updated"
1625
+ msgstr ""
1626
+
1627
+ #: lib/hammer_cli_foreman/usergroup.rb:36
1628
+ msgid "Could not update the user group"
1629
+ msgstr ""
1630
+
1631
+ #: lib/hammer_cli_foreman/usergroup.rb:42
1632
+ msgid "User group [%<name>s] deleted"
1633
+ msgstr ""
1634
+
1635
+ #: lib/hammer_cli_foreman/usergroup.rb:43
1636
+ msgid "Could not delete the user group"
1637
+ msgstr ""
1638
+
1639
+ #: lib/hammer_cli_foreman/usergroup.rb:57
1640
+ msgid "Manage user groups."
1641
+ msgstr ""
1642
+
1643
+ #: lib/hammer_cli_foreman/image.rb:9
1644
+ msgid "View and manage compute resource's images"
1645
+ msgstr ""
1646
+
1647
+ #: lib/hammer_cli_foreman/image.rb:33
1648
+ msgid "Username"
1649
+ msgstr ""
1650
+
1651
+ #: lib/hammer_cli_foreman/image.rb:47
1652
+ msgid "IAM role"
1653
+ msgstr ""
1654
+
1655
+ #: lib/hammer_cli_foreman/image.rb:57
1656
+ msgid "Show images available for addition"
1657
+ msgstr ""
1658
+
1659
+ #: lib/hammer_cli_foreman/image.rb:82
1660
+ msgid "Image created"
1661
+ msgstr ""
1662
+
1663
+ #: lib/hammer_cli_foreman/image.rb:83
1664
+ msgid "Could not create the image"
1665
+ msgstr ""
1666
+
1667
+ #: lib/hammer_cli_foreman/image.rb:91
1668
+ msgid "Image updated"
1669
+ msgstr ""
1670
+
1671
+ #: lib/hammer_cli_foreman/image.rb:92
1672
+ msgid "Could not update the image"
1673
+ msgstr ""
1674
+
1675
+ #: lib/hammer_cli_foreman/image.rb:100
1676
+ msgid "Image deleted"
1677
+ msgstr ""
1678
+
1679
+ #: lib/hammer_cli_foreman/image.rb:101
1680
+ msgid "Could not delete the image"
1681
+ msgstr ""
1682
+
1683
+ #: lib/hammer_cli_foreman/partition_table.rb:31
1684
+ msgid "View partition table content."
1685
+ msgstr ""
1686
+
1687
+ #: lib/hammer_cli_foreman/partition_table.rb:43
1688
+ #: lib/hammer_cli_foreman/partition_table.rb:54
1689
+ msgid "Path to a file that contains the partition layout"
1690
+ msgstr ""
1691
+
1692
+ #: lib/hammer_cli_foreman/partition_table.rb:46
1693
+ msgid "Partition table created"
1694
+ msgstr ""
1695
+
1696
+ #: lib/hammer_cli_foreman/partition_table.rb:47
1697
+ msgid "Could not create the partition table"
1698
+ msgstr ""
1699
+
1700
+ #: lib/hammer_cli_foreman/partition_table.rb:57
1701
+ msgid "Partition table updated"
1702
+ msgstr ""
1703
+
1704
+ #: lib/hammer_cli_foreman/partition_table.rb:58
1705
+ msgid "Could not update the partition table"
1706
+ msgstr ""
1707
+
1708
+ #: lib/hammer_cli_foreman/partition_table.rb:65
1709
+ msgid "Partition table deleted"
1710
+ msgstr ""
1711
+
1712
+ #: lib/hammer_cli_foreman/partition_table.rb:66
1713
+ msgid "Could not delete the partition table"
1714
+ msgstr ""
1715
+
1716
+ #: lib/hammer_cli_foreman/partition_table.rb:80
1717
+ msgid "Manipulate partition tables."
1718
+ msgstr ""
1719
+
1720
+ #: lib/hammer_cli_foreman/credentials.rb:10
1721
+ msgid "[Foreman] username: "
1722
+ msgstr ""
1723
+
1724
+ #: lib/hammer_cli_foreman/credentials.rb:15
1725
+ msgid "[Foreman] password for %s: "
1726
+ msgstr ""
1727
+
1728
+ #: lib/hammer_cli_foreman/id_resolver.rb:32
1729
+ msgid "Architecture name"
1730
+ msgstr ""
1731
+
1732
+ #: lib/hammer_cli_foreman/id_resolver.rb:33
1733
+ msgid "Compute resource name"
1734
+ msgstr ""
1735
+
1736
+ #: lib/hammer_cli_foreman/id_resolver.rb:34
1737
+ msgid "Domain name"
1738
+ msgstr ""
1739
+
1740
+ #: lib/hammer_cli_foreman/id_resolver.rb:35
1741
+ msgid "Environment name"
1742
+ msgstr ""
1743
+
1744
+ #: lib/hammer_cli_foreman/id_resolver.rb:38
1745
+ msgid "Host name"
1746
+ msgstr ""
1747
+
1748
+ #: lib/hammer_cli_foreman/id_resolver.rb:39
1749
+ msgid "Hostgroup name"
1750
+ msgstr ""
1751
+
1752
+ #: lib/hammer_cli_foreman/id_resolver.rb:41
1753
+ msgid "Location name"
1754
+ msgstr ""
1755
+
1756
+ #: lib/hammer_cli_foreman/id_resolver.rb:42
1757
+ msgid "Medium name"
1758
+ msgstr ""
1759
+
1760
+ #: lib/hammer_cli_foreman/id_resolver.rb:43
1761
+ msgid "Model name"
1762
+ msgstr ""
1763
+
1764
+ #: lib/hammer_cli_foreman/id_resolver.rb:44
1765
+ msgid "Organization name"
1766
+ msgstr "Organisation name"
1767
+
1768
+ #: lib/hammer_cli_foreman/id_resolver.rb:46
1769
+ msgid "Partition table name"
1770
+ msgstr ""
1771
+
1772
+ #: lib/hammer_cli_foreman/id_resolver.rb:47
1773
+ msgid "Proxy name"
1774
+ msgstr ""
1775
+
1776
+ #: lib/hammer_cli_foreman/id_resolver.rb:48
1777
+ msgid "Puppet class name"
1778
+ msgstr ""
1779
+
1780
+ #: lib/hammer_cli_foreman/id_resolver.rb:49
1781
+ msgid "Report name"
1782
+ msgstr ""
1783
+
1784
+ #: lib/hammer_cli_foreman/id_resolver.rb:50
1785
+ msgid "User role name"
1786
+ msgstr ""
1787
+
1788
+ #: lib/hammer_cli_foreman/id_resolver.rb:51
1789
+ msgid "Subnet name"
1790
+ msgstr ""
1791
+
1792
+ #: lib/hammer_cli_foreman/id_resolver.rb:53
1793
+ msgid "User's login to search by"
1794
+ msgstr ""
1795
+
1796
+ #: lib/hammer_cli_foreman/id_resolver.rb:54
1797
+ msgid "Common parameter name"
1798
+ msgstr ""
1799
+
1800
+ #: lib/hammer_cli_foreman/id_resolver.rb:55
1801
+ msgid "Smart class parameter name"
1802
+ msgstr ""
1803
+
1804
+ #: lib/hammer_cli_foreman/id_resolver.rb:57
1805
+ msgid "Name to search by"
1806
+ msgstr ""
1807
+
1808
+ #: lib/hammer_cli_foreman/id_resolver.rb:140
1809
+ msgid "%s not found"
1810
+ msgstr ""
1811
+
1812
+ #: lib/hammer_cli_foreman/id_resolver.rb:141
1813
+ msgid "%s found more than once"
1814
+ msgstr ""
1815
+
1816
+ #: lib/hammer_cli_foreman/id_resolver.rb:152
1817
+ msgid "Missing options to search %s"
1818
+ msgstr ""
1819
+
1820
+ #: lib/hammer_cli_foreman/user.rb:11
1821
+ msgid "Login"
1822
+ msgstr ""
1823
+
1824
+ #: lib/hammer_cli_foreman/user.rb:13
1825
+ msgid "Email"
1826
+ msgstr ""
1827
+
1828
+ #: lib/hammer_cli_foreman/user.rb:28
1829
+ msgid "Admin"
1830
+ msgstr ""
1831
+
1832
+ #: lib/hammer_cli_foreman/user.rb:29
1833
+ msgid "Authorized by"
1834
+ msgstr "Authorised by"
1835
+
1836
+ #: lib/hammer_cli_foreman/user.rb:30
1837
+ msgid "Last login"
1838
+ msgstr ""
1839
+
1840
+ #: lib/hammer_cli_foreman/user.rb:47
1841
+ msgid "User created"
1842
+ msgstr ""
1843
+
1844
+ #: lib/hammer_cli_foreman/user.rb:48
1845
+ msgid "Could not create the user"
1846
+ msgstr ""
1847
+
1848
+ #: lib/hammer_cli_foreman/user.rb:55
1849
+ msgid "User updated"
1850
+ msgstr ""
1851
+
1852
+ #: lib/hammer_cli_foreman/user.rb:56
1853
+ msgid "Could not update the user"
1854
+ msgstr ""
1855
+
1856
+ #: lib/hammer_cli_foreman/user.rb:63
1857
+ msgid "User deleted"
1858
+ msgstr ""
1859
+
1860
+ #: lib/hammer_cli_foreman/user.rb:64
1861
+ msgid "Could not delete the user"
1862
+ msgstr ""
1863
+
1864
+ #: lib/hammer_cli_foreman/user.rb:76
1865
+ msgid "Manipulate users."
1866
+ msgstr ""
1867
+
1868
+ #: lib/hammer_cli_foreman/filter.rb:10
1869
+ msgid "Resource type"
1870
+ msgstr ""
1871
+
1872
+ #: lib/hammer_cli_foreman/filter.rb:11
1873
+ msgid "Search"
1874
+ msgstr ""
1875
+
1876
+ #: lib/hammer_cli_foreman/filter.rb:12
1877
+ msgid "Unlimited?"
1878
+ msgstr ""
1879
+
1880
+ #: lib/hammer_cli_foreman/filter.rb:13
1881
+ msgid "Role"
1882
+ msgstr ""
1883
+
1884
+ #: lib/hammer_cli_foreman/filter.rb:14
1885
+ msgid "Permissions"
1886
+ msgstr ""
1887
+
1888
+ #: lib/hammer_cli_foreman/filter.rb:44
1889
+ msgid "Permission filter for [%<resource_type>s] created"
1890
+ msgstr ""
1891
+
1892
+ #: lib/hammer_cli_foreman/filter.rb:45
1893
+ msgid "Could not create the permission filter"
1894
+ msgstr ""
1895
+
1896
+ #: lib/hammer_cli_foreman/filter.rb:52
1897
+ msgid "Permission filter for [%<resource_type>s] updated"
1898
+ msgstr ""
1899
+
1900
+ #: lib/hammer_cli_foreman/filter.rb:53
1901
+ msgid "Could not update the permission filter"
1902
+ msgstr ""
1903
+
1904
+ #: lib/hammer_cli_foreman/filter.rb:60
1905
+ msgid "Permission filter deleted"
1906
+ msgstr ""
1907
+
1908
+ #: lib/hammer_cli_foreman/filter.rb:61
1909
+ msgid "Could not delete the permission filter"
1910
+ msgstr ""
1911
+
1912
+ #: lib/hammer_cli_foreman/filter.rb:101
1913
+ msgid "Manage permission filters."
1914
+ msgstr ""
1915
+
1916
+ #: lib/hammer_cli_foreman/location.rb:24 lib/hammer_cli_foreman/location.rb:62
1917
+ #: lib/hammer_cli_foreman/location.rb:74
1918
+ msgid "Location numeric id to search by"
1919
+ msgstr ""
1920
+
1921
+ #: lib/hammer_cli_foreman/location.rb:52
1922
+ msgid "Location created"
1923
+ msgstr ""
1924
+
1925
+ #: lib/hammer_cli_foreman/location.rb:53
1926
+ msgid "Could not create the location"
1927
+ msgstr ""
1928
+
1929
+ #: lib/hammer_cli_foreman/location.rb:64
1930
+ msgid "Location updated"
1931
+ msgstr ""
1932
+
1933
+ #: lib/hammer_cli_foreman/location.rb:65
1934
+ msgid "Could not update the location"
1935
+ msgstr ""
1936
+
1937
+ #: lib/hammer_cli_foreman/location.rb:76
1938
+ msgid "Location deleted"
1939
+ msgstr ""
1940
+
1941
+ #: lib/hammer_cli_foreman/location.rb:77
1942
+ msgid "Could not delete the location"
1943
+ msgstr ""
1944
+
1945
+ #: lib/hammer_cli_foreman/location.rb:100
1946
+ msgid "Manipulate locations."
1947
+ msgstr ""
1948
+
1949
+ #: lib/hammer_cli_foreman/architecture.rb:31
1950
+ msgid "Architecture created"
1951
+ msgstr ""
1952
+
1953
+ #: lib/hammer_cli_foreman/architecture.rb:32
1954
+ msgid "Could not create the architecture"
1955
+ msgstr ""
1956
+
1957
+ #: lib/hammer_cli_foreman/architecture.rb:39
1958
+ msgid "Architecture deleted"
1959
+ msgstr ""
1960
+
1961
+ #: lib/hammer_cli_foreman/architecture.rb:40
1962
+ msgid "Could not delete the architecture"
1963
+ msgstr ""
1964
+
1965
+ #: lib/hammer_cli_foreman/architecture.rb:47
1966
+ msgid "Architecture updated"
1967
+ msgstr ""
1968
+
1969
+ #: lib/hammer_cli_foreman/architecture.rb:48
1970
+ msgid "Could not update the architecture"
1971
+ msgstr ""
1972
+
1973
+ #: lib/hammer_cli_foreman/architecture.rb:60
1974
+ msgid "Manipulate architectures."
1975
+ msgstr ""