hammer_cli_foreman 0.1.4 → 0.2.0

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