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