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