foreman_fog_proxmox 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of foreman_fog_proxmox might be problematic. Click here for more details.

Files changed (67) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +24 -12
  3. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_compute_resource.js +26 -0
  4. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_vm.js +92 -0
  5. data/app/assets/javascripts/foreman_fog_proxmox/proxmox_vm_container.js +60 -0
  6. data/app/assets/javascripts/foreman_fog_proxmox/{proxmox.js → proxmox_vm_server.js} +10 -10
  7. data/app/controllers/concerns/foreman_fog_proxmox/controller/parameters/compute_resource.rb +1 -1
  8. data/app/controllers/foreman_fog_proxmox/compute_resources_controller.rb +9 -1
  9. data/app/helpers/node_dashboard_helper.rb +36 -0
  10. data/app/helpers/proxmox_compute_selectors_helper.rb +23 -0
  11. data/app/helpers/proxmox_container_helper.rb +157 -0
  12. data/app/helpers/proxmox_form_helper.rb +67 -0
  13. data/app/helpers/{proxmox_compute_helper.rb → proxmox_server_helper.rb} +49 -38
  14. data/app/helpers/proxmox_vm_helper.rb +86 -0
  15. data/app/models/concerns/fog_extensions/proxmox/container.rb +57 -0
  16. data/{test/factories/foreman_fog_proxmox_factories.rb → app/models/concerns/fog_extensions/proxmox/container_config.rb} +16 -13
  17. data/app/models/concerns/fog_extensions/proxmox/server.rb +8 -2
  18. data/app/models/foreman_fog_proxmox/proxmox.rb +160 -67
  19. data/app/overrides/compute_resources_vms/form/add_clone_to_new_vm_compute_detail.rb +24 -0
  20. data/app/overrides/compute_resources_vms/form/add_vm_type_to_networks_form.rb +32 -0
  21. data/app/overrides/compute_resources_vms/form/add_vm_type_to_nic_provider_specific_form.rb +25 -0
  22. data/app/overrides/compute_resources_vms/form/add_vm_type_to_volumes_edit.rb +24 -0
  23. data/app/overrides/compute_resources_vms/form/add_vm_type_to_volumes_new_volume.rb +24 -0
  24. data/app/services/foreman_fog_proxmox/node_dashboard/data.rb +37 -0
  25. data/app/views/compute_resources/form/_proxmox.html.erb +7 -4
  26. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb +23 -0
  27. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb +25 -0
  28. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_nic_provider_specific_form.html.erb +23 -0
  29. data/app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb +73 -0
  30. data/app/views/compute_resources_vms/form/proxmox/_base.html.erb +16 -23
  31. data/app/views/compute_resources_vms/form/proxmox/_general.html.erb +37 -0
  32. data/app/views/compute_resources_vms/form/proxmox/_network.html.erb +2 -7
  33. data/app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb +31 -0
  34. data/app/views/compute_resources_vms/form/proxmox/container/_config.html.erb +41 -0
  35. data/app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb +26 -0
  36. data/app/views/compute_resources_vms/form/proxmox/container/_network.html.erb +25 -0
  37. data/app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb +25 -0
  38. data/app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb +24 -0
  39. data/app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb +31 -0
  40. data/app/views/compute_resources_vms/form/proxmox/{_config.html.erb → server/_config.html.erb} +11 -8
  41. data/app/views/compute_resources_vms/form/proxmox/server/_network.html.erb +29 -0
  42. data/app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb +27 -0
  43. data/app/views/compute_resources_vms/index/_proxmox.html.erb +4 -2
  44. data/app/views/compute_resources_vms/show/_proxmox.html.erb +9 -2
  45. data/app/views/dashboard/_foreman_fog_proxmox_widget.erb +4 -2
  46. data/app/views/images/form/_proxmox.html.erb +17 -0
  47. data/config/routes.rb +1 -0
  48. data/lib/foreman_fog_proxmox/engine.rb +10 -3
  49. data/lib/foreman_fog_proxmox/value.rb +24 -0
  50. data/lib/foreman_fog_proxmox/version.rb +1 -1
  51. data/locale/en/foreman_fog_proxmox.edit.po +456 -0
  52. data/locale/en/foreman_fog_proxmox.po +327 -11
  53. data/locale/en/foreman_fog_proxmox.po.time_stamp +0 -0
  54. data/locale/foreman_fog_proxmox.pot +515 -8
  55. data/locale/fr/foreman_fog_proxmox.edit.po +456 -0
  56. data/locale/fr/foreman_fog_proxmox.po +327 -11
  57. data/locale/fr/foreman_fog_proxmox.po.time_stamp +0 -0
  58. data/test/factories/proxmox_factory.rb +72 -0
  59. data/test/functional/compute_resources_controller_test.rb +34 -0
  60. data/test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb +205 -0
  61. data/test/{helpers/proxmox_compute_helper_test.rb → unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb} +36 -28
  62. data/test/unit/foreman_fog_proxmox/helpers/proxmox_vm_helper_test.rb +240 -0
  63. data/test/unit/foreman_fog_proxmox/proxmox_test.rb +327 -0
  64. data/test/unit/foreman_fog_proxmox/proxmox_test_helpers.rb +251 -0
  65. metadata +83 -14
  66. data/app/views/compute_resources_vms/form/proxmox/_volume.html.erb +0 -23
  67. data/test/unit/foreman_fog_proxmox_test.rb +0 -11
@@ -1,19 +1,335 @@
1
- # foreman_fog_proxmox
1
+ # English translations for foreman_fog_proxmox package.
2
+ # Copyright (C) 2018 THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_fog_proxmox package.
4
+ # Tristan Robert <tristan.robert.44@gmail.com>, 2018.
2
5
  #
3
- # This file is distributed under the same license as foreman_fog_proxmox.
4
- #
5
- #, fuzzy
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: version 0.4.0\n"
8
+ "Project-Id-Version: foreman_fog_proxmox 1.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2014-08-20 08:46+0100\n"
11
- "PO-Revision-Date: 2018-07-13 08:23+0100\n"
12
- "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
13
- "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
14
- "Language: \n"
10
+ "PO-Revision-Date: 2018-07-17 15:16+0200\n"
11
+ "Last-Translator: Tristan Robert <tristan.robert.44@gmail.com>\n"
12
+ "Language-Team: English\n"
13
+ "Language: en\n"
15
14
  "MIME-Version: 1.0\n"
16
15
  "Content-Type: text/plain; charset=UTF-8\n"
17
16
  "Content-Transfer-Encoding: 8bit\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "\n"
19
+
20
+ msgid "%s console is not supported at this time"
21
+ msgstr ""
22
+
23
+ msgid "Add Volume"
24
+ msgstr ""
25
+
26
+ msgid "Advanced"
27
+ msgstr ""
28
+
29
+ msgid "Architecture"
30
+ msgstr ""
31
+
32
+ msgid "Average load (x100)"
33
+ msgstr ""
34
+
35
+ msgid "Ballooning Device"
36
+ msgstr ""
37
+
38
+ msgid "Bridge"
39
+ msgstr ""
40
+
41
+ msgid "CD-ROM"
42
+ msgstr ""
43
+
44
+ msgid "CDROM"
45
+ msgstr ""
46
+
47
+ msgid "CPU"
48
+ msgstr ""
49
+
50
+ msgid "CPU limit"
51
+ msgstr ""
52
+
53
+ msgid "CPU units"
54
+ msgstr ""
55
+
56
+ msgid "CPUs"
57
+ msgstr ""
58
+
59
+ msgid "Cache"
60
+ msgstr ""
61
+
62
+ msgid "Caps lock ON"
63
+ msgstr ""
64
+
65
+ msgid "Card"
66
+ msgstr ""
67
+
68
+ msgid "Change the password"
69
+ msgstr ""
70
+
71
+ msgid "Controller"
72
+ msgstr ""
73
+
74
+ msgid "Cores"
75
+ msgstr ""
76
+
77
+ msgid "Create image?"
78
+ msgstr ""
79
+
80
+ msgid "DNS"
81
+ msgstr ""
82
+
83
+ msgid "DNS server"
84
+ msgstr ""
85
+
86
+ msgid "Description"
87
+ msgstr ""
88
+
89
+ msgid "Device"
90
+ msgstr ""
91
+
92
+ msgid "Disconnect"
93
+ msgstr ""
94
+
95
+ msgid "Disk"
96
+ msgstr ""
19
97
 
98
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
99
+ msgstr ""
100
+
101
+ msgid "Enable NUMA"
102
+ msgstr ""
103
+
104
+ msgid "Enable/disable KVM hardware virtualization"
105
+ msgstr ""
106
+
107
+ msgid "Extended"
108
+ msgstr ""
109
+
110
+ msgid "Failed retrieving proxmox vm by vmid=%{vmid} and type=%{type}"
111
+ msgstr ""
112
+
113
+ msgid "Firewall"
114
+ msgstr ""
115
+
116
+ msgid "Foreman Fog Proxmox widget"
117
+ msgstr ""
118
+
119
+ msgid "ForemanFogProxmox plugin adds Proxmox VE compute resource to Foreman using fog-proxmox gem."
120
+ msgstr ""
121
+
122
+ msgid "General"
123
+ msgstr ""
124
+
125
+ msgid "Hostname"
126
+ msgstr ""
127
+
128
+ msgid "Identifier interface[%{index}] required."
129
+ msgstr ""
130
+
131
+ msgid "Image"
132
+ msgstr ""
133
+
134
+ msgid "Image ISO"
135
+ msgstr ""
136
+
137
+ msgid "Image VMID"
138
+ msgstr ""
139
+
140
+ msgid "Invalid identifier interface[%{index}]. Must be net[n] with n integer >= 0"
141
+ msgstr ""
142
+
143
+ msgid "Invalid uuid=[%{uuid}]."
144
+ msgstr ""
145
+
146
+ msgid "KVM"
147
+ msgstr ""
148
+
149
+ msgid "Keyboard"
150
+ msgstr ""
151
+
152
+ msgid "Main option"
153
+ msgid_plural "Main options"
154
+ msgstr[0] ""
155
+ msgstr[1] ""
156
+
157
+ msgid "Memory"
158
+ msgstr ""
159
+
160
+ msgid "Minimum memory"
161
+ msgstr ""
162
+
163
+ msgid "Mount point"
164
+ msgstr ""
165
+
166
+ msgid "Multiqueue"
167
+ msgstr ""
168
+
169
+ msgid "Name"
170
+ msgstr ""
171
+
172
+ msgid "Nic"
173
+ msgstr ""
174
+
175
+ msgid "Node"
176
+ msgstr ""
177
+
178
+ msgid "None"
179
+ msgstr ""
180
+
181
+ msgid "OS"
182
+ msgstr ""
183
+
184
+ msgid "OS Template"
185
+ msgstr ""
186
+
187
+ msgid "OS type"
188
+ msgstr ""
189
+
190
+ msgid "Operating System"
191
+ msgstr ""
192
+
193
+ msgid "Operating system family %{type} is not consistent with %{ostype}"
194
+ msgstr ""
195
+
196
+ msgid "Optionally provide a CA, or a correctly ordered CA chain. If left blank, disable ssl_verify_peer."
197
+ msgstr ""
198
+
199
+ msgid "PCID"
200
+ msgstr ""
201
+
202
+ msgid "Password to authenticate with - used for SSH finish step."
203
+ msgstr ""
204
+
205
+ msgid "Physical"
206
+ msgstr ""
207
+
208
+ msgid "Power"
209
+ msgstr ""
210
+
211
+ msgid "Proxmox Node Statistics: %s"
212
+ msgstr ""
213
+
214
+ msgid "Qemu Agent"
215
+ msgstr ""
216
+
217
+ msgid "Rate limit"
218
+ msgstr ""
219
+
220
+ msgid "Root password"
221
+ msgstr ""
222
+
223
+ msgid "Rootfs"
224
+ msgstr ""
225
+
226
+ msgid "SSL verify peer"
227
+ msgstr ""
228
+
229
+ msgid "Search domain"
230
+ msgstr ""
231
+
232
+ msgid "Shares"
233
+ msgstr ""
234
+
235
+ msgid "Size"
236
+ msgstr ""
237
+
238
+ msgid "Sockets"
239
+ msgstr ""
240
+
241
+ msgid "Spectre-CTRL"
242
+ msgstr ""
243
+
244
+ msgid "Start at boot"
245
+ msgstr ""
246
+
247
+ msgid "Start/Shutdown order"
248
+ msgstr ""
249
+
250
+ msgid "Storage"
251
+ msgstr ""
252
+
253
+ msgid "Swap"
254
+ msgstr ""
255
+
256
+ msgid "Template storage"
257
+ msgstr ""
258
+
259
+ msgid "Test failed"
260
+ msgstr ""
261
+
262
+ msgid "The user that is used to ssh into the instance, normally cloud-user, ubuntu, root etc"
263
+ msgstr ""
264
+
265
+ msgid "Time"
266
+ msgstr ""
267
+
268
+ msgid "Type"
269
+ msgstr ""
270
+
271
+ msgid "URL"
272
+ msgstr ""
273
+
274
+ msgid "Unable to store X509 certificates"
275
+ msgstr ""
276
+
277
+ msgid "Uptime"
278
+ msgstr ""
279
+
280
+ msgid "VCPUs"
281
+ msgstr ""
282
+
283
+ msgid "VGA"
284
+ msgstr ""
285
+
286
+ msgid "VLAN tag"
287
+ msgstr ""
288
+
289
+ msgid "VM ID"
290
+ msgstr ""
291
+
292
+ msgid "X509 Certification Authorities"
293
+ msgstr ""
294
+
295
+ msgid "add new storage volume"
296
+ msgstr ""
297
+
298
+ msgid "create_vm(): %{args}"
299
+ msgstr ""
300
+
301
+ msgid "create_vm(): clone %{image_id} in %{vmid}"
302
+ msgstr ""
303
+
304
+ msgid "e.g. https://127.0.0.1:8006/api2/json"
305
+ msgstr ""
306
+
307
+ msgid "e.g. root@pam"
308
+ msgstr ""
309
+
310
+ msgid "failed to create vm: %{e}"
311
+ msgstr ""
312
+
313
+ msgid "invalid vmid=%{vmid}"
314
+ msgstr ""
315
+
316
+ msgid "new_container_vm() vm.config=%{config}"
317
+ msgstr ""
318
+
319
+ msgid "new_server_vm() vm.config=%{config}"
320
+ msgstr ""
321
+
322
+ msgid "new_vm() vm.config=%{config}"
323
+ msgstr ""
324
+
325
+ msgid "remove network interface"
326
+ msgstr ""
327
+
328
+ msgid "remove storage volume"
329
+ msgstr ""
330
+
331
+ msgid "save_vm(): %{attr}"
332
+ msgstr ""
333
+
334
+ msgid "vmid of template vm."
335
+ msgstr ""
File without changes
@@ -1,19 +1,526 @@
1
- # foreman_fog_proxmox
2
- #
3
- # This file is distributed under the same license as foreman_fog_proxmox.
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_fog_proxmox package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4
5
  #
5
6
  #, fuzzy
6
7
  msgid ""
7
8
  msgstr ""
8
- "Project-Id-Version: version 0.3.5\n"
9
+ "Project-Id-Version: foreman_fog_proxmox 1.0.0\n"
9
10
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2014-08-20 08:46+0100\n"
11
- "PO-Revision-Date: 2018-07-12 08:46+0100\n"
12
- "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
13
- "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
11
+ "POT-Creation-Date: 2018-08-26 15:17+0200\n"
12
+ "PO-Revision-Date: 2018-08-26 15:17+0200\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
15
  "Language: \n"
15
16
  "MIME-Version: 1.0\n"
16
17
  "Content-Type: text/plain; charset=UTF-8\n"
17
18
  "Content-Transfer-Encoding: 8bit\n"
18
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
20
 
21
+ #: ../app/helpers/node_dashboard_helper.rb:34
22
+ msgid "Time"
23
+ msgstr ""
24
+
25
+ #: ../app/helpers/node_dashboard_helper.rb:34
26
+ msgid "Average load (x100)"
27
+ msgstr ""
28
+
29
+ #: ../app/helpers/proxmox_form_helper.rb:34
30
+ msgid "Caps lock ON"
31
+ msgstr ""
32
+
33
+ #: ../app/helpers/proxmox_form_helper.rb:37
34
+ msgid "Change the password"
35
+ msgstr ""
36
+
37
+ #: ../app/helpers/proxmox_vm_helper.rb:79
38
+ msgid "Invalid uuid=[%{uuid}]."
39
+ msgstr ""
40
+
41
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:114
42
+ msgid "Operating system family %{type} is not consistent with %{ostype}"
43
+ msgstr ""
44
+
45
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:121
46
+ msgid "Identifier interface[%{index}] required."
47
+ msgstr ""
48
+
49
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:122
50
+ msgid "Invalid identifier interface[%{index}]. Must be net[n] with n integer >= 0"
51
+ msgstr ""
52
+
53
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:199
54
+ msgid "new_vm() vm.config=%{config}"
55
+ msgstr ""
56
+
57
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:205
58
+ msgid "new_container_vm() vm.config=%{config}"
59
+ msgstr ""
60
+
61
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:211
62
+ msgid "new_server_vm() vm.config=%{config}"
63
+ msgstr ""
64
+
65
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:218
66
+ msgid "invalid vmid=%{vmid}"
67
+ msgstr ""
68
+
69
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:222
70
+ msgid "create_vm(): clone %{image_id} in %{vmid}"
71
+ msgstr ""
72
+
73
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:226
74
+ msgid "create_vm(): %{args}"
75
+ msgstr ""
76
+
77
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:240
78
+ msgid "failed to create vm: %{e}"
79
+ msgstr ""
80
+
81
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:254
82
+ msgid "Failed retrieving proxmox vm by vmid=%{vmid} and type=%{type}"
83
+ msgstr ""
84
+
85
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:292
86
+ msgid "save_vm(): %{attr}"
87
+ msgstr ""
88
+
89
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:330
90
+ msgid "Unable to store X509 certificates"
91
+ msgstr ""
92
+
93
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:354
94
+ msgid "%s console is not supported at this time"
95
+ msgstr ""
96
+
97
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:6
98
+ msgid "e.g. https://127.0.0.1:8006/api2/json"
99
+ msgstr ""
100
+
101
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:6
102
+ msgid "Test failed"
103
+ msgstr ""
104
+
105
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:7
106
+ msgid "e.g. root@pam"
107
+ msgstr ""
108
+
109
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:9
110
+ msgid "SSL verify peer"
111
+ msgstr ""
112
+
113
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:10
114
+ msgid "X509 Certification Authorities"
115
+ msgstr ""
116
+
117
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:11
118
+ msgid ""
119
+ "Optionally provide a CA, or a correctly ordered CA chain. If left blank, disab"
120
+ "le ssl_verify_peer."
121
+ msgstr ""
122
+
123
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:4
124
+ msgid "URL"
125
+ msgstr ""
126
+
127
+ #:
128
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb:6
129
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb:8
130
+ msgid "remove network interface"
131
+ msgstr ""
132
+
133
+ #:
134
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:11
135
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:16
136
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:23
137
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:30
138
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:37
139
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:39
140
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:47
141
+ msgid "remove storage volume"
142
+ msgstr ""
143
+
144
+ #:
145
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:51
146
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:54
147
+ msgid "Add Volume"
148
+ msgstr ""
149
+
150
+ #:
151
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:51
152
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:54
153
+ msgid "add new storage volume"
154
+ msgstr ""
155
+
156
+ #: ../app/views/compute_resources_vms/form/proxmox/_base.html.erb:5
157
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:16
158
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:7
159
+ msgid "Type"
160
+ msgstr ""
161
+
162
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:5
163
+ msgid "General"
164
+ msgstr ""
165
+
166
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:6
167
+ msgid "Create image?"
168
+ msgstr ""
169
+
170
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:7
171
+ msgid "VM ID"
172
+ msgstr ""
173
+
174
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:8
175
+ msgid "Node"
176
+ msgstr ""
177
+
178
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:18
179
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:35
180
+ msgid "Image"
181
+ msgstr ""
182
+
183
+ #:
184
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:5
185
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:5
186
+ msgid "Advanced"
187
+ msgstr ""
188
+
189
+ #:
190
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:6
191
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:5
192
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:6
193
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:6
194
+ msgid "Main option"
195
+ msgid_plural "Main options"
196
+ msgstr[0] ""
197
+ msgstr[1] ""
198
+
199
+ #:
200
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:8
201
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:9
202
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:8
203
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:15
204
+ msgid "CPU"
205
+ msgstr ""
206
+
207
+ #:
208
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:10
209
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:15
210
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:16
211
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:10
212
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:26
213
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:27
214
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:9
215
+ msgid "Memory"
216
+ msgstr ""
217
+
218
+ #:
219
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:12
220
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:19
221
+ msgid "DNS"
222
+ msgstr ""
223
+
224
+ #:
225
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:14
226
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:14
227
+ msgid "OS"
228
+ msgstr ""
229
+
230
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:6
231
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:7
232
+ msgid "Description"
233
+ msgstr ""
234
+
235
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:7
236
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:9
237
+ msgid "Start at boot"
238
+ msgstr ""
239
+
240
+ #:
241
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:10
242
+ msgid "Architecture"
243
+ msgstr ""
244
+
245
+ #:
246
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:11
247
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:18
248
+ msgid "Cores"
249
+ msgstr ""
250
+
251
+ #:
252
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:12
253
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:20
254
+ msgid "CPU limit"
255
+ msgstr ""
256
+
257
+ #:
258
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:13
259
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:21
260
+ msgid "CPU units"
261
+ msgstr ""
262
+
263
+ #:
264
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:17
265
+ msgid "Swap"
266
+ msgstr ""
267
+
268
+ #:
269
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:20
270
+ msgid "Hostname"
271
+ msgstr ""
272
+
273
+ #:
274
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:21
275
+ msgid "DNS server"
276
+ msgstr ""
277
+
278
+ #:
279
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:22
280
+ msgid "Search domain"
281
+ msgstr ""
282
+
283
+ #:
284
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:24
285
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:41
286
+ msgid "Operating System"
287
+ msgstr ""
288
+
289
+ #:
290
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:25
291
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:42
292
+ msgid "OS type"
293
+ msgstr ""
294
+
295
+ #:
296
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:5
297
+ msgid "Extended"
298
+ msgstr ""
299
+
300
+ #:
301
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:7
302
+ msgid "Template storage"
303
+ msgstr ""
304
+
305
+ #:
306
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:8
307
+ msgid "OS Template"
308
+ msgstr ""
309
+
310
+ #:
311
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:10
312
+ msgid "Root password"
313
+ msgstr ""
314
+
315
+ #:
316
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:5
317
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:6
318
+ msgid "Nic"
319
+ msgstr ""
320
+
321
+ #:
322
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:6
323
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:6
324
+ msgid "Name"
325
+ msgstr ""
326
+
327
+ #:
328
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:7
329
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:9
330
+ msgid "VLAN tag"
331
+ msgstr ""
332
+
333
+ #:
334
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:8
335
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:10
336
+ msgid "Rate limit"
337
+ msgstr ""
338
+
339
+ #:
340
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:9
341
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:8
342
+ msgid "Bridge"
343
+ msgstr ""
344
+
345
+ #:
346
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:5
347
+ msgid "Mount point"
348
+ msgstr ""
349
+
350
+ #:
351
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:7
352
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:7
353
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:37
354
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:7
355
+ msgid "Storage"
356
+ msgstr ""
357
+
358
+ #:
359
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:8
360
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:9
361
+ msgid "Device"
362
+ msgstr ""
363
+
364
+ #:
365
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:9
366
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:8
367
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:11
368
+ msgid "Size"
369
+ msgstr ""
370
+
371
+ #:
372
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:5
373
+ msgid "Rootfs"
374
+ msgstr ""
375
+
376
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:12
377
+ msgid "CDROM"
378
+ msgstr ""
379
+
380
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:8
381
+ msgid "Start/Shutdown order"
382
+ msgstr ""
383
+
384
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:10
385
+ msgid "Qemu Agent"
386
+ msgstr ""
387
+
388
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
389
+ msgid "KVM"
390
+ msgstr ""
391
+
392
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
393
+ msgid "Enable/disable KVM hardware virtualization"
394
+ msgstr ""
395
+
396
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
397
+ msgid "Keyboard"
398
+ msgstr ""
399
+
400
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:13
401
+ msgid "VGA"
402
+ msgstr ""
403
+
404
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:17
405
+ msgid "Sockets"
406
+ msgstr ""
407
+
408
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:19
409
+ msgid "VCPUs"
410
+ msgstr ""
411
+
412
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:22
413
+ msgid "Enable NUMA"
414
+ msgstr ""
415
+
416
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:23
417
+ msgid "PCID"
418
+ msgstr ""
419
+
420
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:24
421
+ msgid "Spectre-CTRL"
422
+ msgstr ""
423
+
424
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:28
425
+ msgid "Minimum memory"
426
+ msgstr ""
427
+
428
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:29
429
+ msgid "Shares"
430
+ msgstr ""
431
+
432
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:30
433
+ msgid "Ballooning Device"
434
+ msgstr ""
435
+
436
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:32
437
+ msgid "CD-ROM"
438
+ msgstr ""
439
+
440
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:33
441
+ msgid "None"
442
+ msgstr ""
443
+
444
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:34
445
+ msgid "Physical"
446
+ msgstr ""
447
+
448
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:38
449
+ msgid "Image ISO"
450
+ msgstr ""
451
+
452
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:7
453
+ msgid "Card"
454
+ msgstr ""
455
+
456
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:11
457
+ msgid "Multiqueue"
458
+ msgstr ""
459
+
460
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:12
461
+ msgid "Firewall"
462
+ msgstr ""
463
+
464
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:13
465
+ msgid "Disconnect"
466
+ msgstr ""
467
+
468
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:5
469
+ msgid "Disk"
470
+ msgstr ""
471
+
472
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:8
473
+ msgid "Controller"
474
+ msgstr ""
475
+
476
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:10
477
+ msgid "Cache"
478
+ msgstr ""
479
+
480
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:8
481
+ msgid "CPUs"
482
+ msgstr ""
483
+
484
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:10
485
+ msgid "Power"
486
+ msgstr ""
487
+
488
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:11
489
+ msgid "Uptime"
490
+ msgstr ""
491
+
492
+ #: ../app/views/dashboard/_foreman_fog_proxmox_widget.erb:5
493
+ msgid "Proxmox Node Statistics: %s"
494
+ msgstr ""
495
+
496
+ #: ../app/views/images/form/_proxmox.html.erb:3
497
+ msgid ""
498
+ "The user that is used to ssh into the instance, normally cloud-user, ubuntu, r"
499
+ "oot etc"
500
+ msgstr ""
501
+
502
+ #: ../app/views/images/form/_proxmox.html.erb:4
503
+ msgid "Password to authenticate with - used for SSH finish step."
504
+ msgstr ""
505
+
506
+ #: ../app/views/images/form/_proxmox.html.erb:5
507
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
508
+ msgstr ""
509
+
510
+ #: ../app/views/images/form/_proxmox.html.erb:6
511
+ msgid "Image VMID"
512
+ msgstr ""
513
+
514
+ #: ../app/views/images/form/_proxmox.html.erb:6
515
+ msgid "vmid of template vm."
516
+ msgstr ""
517
+
518
+ #: ../lib/foreman_fog_proxmox/engine.rb:46
519
+ msgid "Foreman Fog Proxmox widget"
520
+ msgstr ""
521
+
522
+ #: gemspec.rb:2
523
+ msgid ""
524
+ "ForemanFogProxmox plugin adds Proxmox VE compute resource to Foreman using fog"
525
+ "-proxmox gem."
526
+ msgstr ""