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