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
@@ -0,0 +1,456 @@
1
+ # French 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.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: foreman_fog_proxmox 1.0.0\n"
9
+ "Report-Msgid-Bugs-To: \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: French\n"
13
+ "Language: fr\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
18
+ "\n"
19
+
20
+ #: ../app/helpers/node_dashboard_helper.rb:34
21
+ msgid "Time"
22
+ msgstr "Temps"
23
+
24
+ #: ../app/helpers/node_dashboard_helper.rb:34
25
+ msgid "Average load (x100)"
26
+ msgstr "Charge moyenne du serveur (x100)"
27
+
28
+ #: ../app/helpers/proxmox_form_helper.rb:34
29
+ msgid "Caps lock ON"
30
+ msgstr "Touches verrouillées"
31
+
32
+ #: ../app/helpers/proxmox_form_helper.rb:37
33
+ msgid "Change the password"
34
+ msgstr "Changer le mot de passe"
35
+
36
+ #: ../app/helpers/proxmox_vm_helper.rb:78
37
+ msgid "Invalid uuid=[%{uuid}]."
38
+ msgstr ""
39
+
40
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:114
41
+ msgid "Operating system family %{type} is not consistent with %{ostype}"
42
+ msgstr "La famille %{type} du système d'exploitation n'est pas cohérente avec %{ostype}"
43
+
44
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:121
45
+ msgid "Identifier interface[%{index}] required."
46
+ msgstr "L'identifiant de interface[%{index}] est obligatoire."
47
+
48
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:122
49
+ msgid "Invalid identifier interface[%{index}]. Must be net[n] with n integer >= 0"
50
+ msgstr "L'identifiant de interface[%{index}] est incorrect. La syntaxe correcte est net[n] avec n un entier naturel positif"
51
+
52
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:198
53
+ msgid "new_vm() vm.config=%{config}"
54
+ msgstr ""
55
+
56
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:204
57
+ msgid "new_container_vm() vm.config=%{config}"
58
+ msgstr ""
59
+
60
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:210
61
+ msgid "new_server_vm() vm.config=%{config}"
62
+ msgstr ""
63
+
64
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:217
65
+ msgid "invalid vmid=%{vmid}"
66
+ msgstr "vmid=%{vmid} incorrect"
67
+
68
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:221
69
+ msgid "create_vm(): clone %{image_id} in %{vmid}"
70
+ msgstr ""
71
+
72
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:225
73
+ msgid "create_vm(): %{args}"
74
+ msgstr ""
75
+
76
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:239
77
+ msgid "failed to create vm: %{e}"
78
+ msgstr "échec à la création de la VM: %{e}"
79
+
80
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:253
81
+ msgid "Failed retrieving proxmox vm by vmid=%{vmid} and type=%{type}"
82
+ msgstr "Echec de récupération de la vm proxmox avec vmid=%{vmid} et type=%{type}"
83
+
84
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:291
85
+ msgid "save_vm(): %{attr}"
86
+ msgstr ""
87
+
88
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:329
89
+ msgid "Unable to store X509 certificates"
90
+ msgstr "Impossible d'enregistrer les certificats X509"
91
+
92
+ #: ../app/models/foreman_fog_proxmox/proxmox.rb:353
93
+ msgid "%s console is not supported at this time"
94
+ msgstr "%s console pas encore supportée"
95
+
96
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:6
97
+ msgid "e.g. https://127.0.0.1:8006/api2/json"
98
+ msgstr "par exemple https://127.0.0.1:8006/api2/json"
99
+
100
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:6
101
+ msgid "Test failed"
102
+ msgstr "Le test a échoué"
103
+
104
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:7
105
+ msgid "e.g. root@pam"
106
+ msgstr "par exemple root@pam"
107
+
108
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:9
109
+ msgid "SSL verify peer"
110
+ msgstr ""
111
+
112
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:10
113
+ msgid "X509 Certification Authorities"
114
+ msgstr "Autorités de certification X509"
115
+
116
+ #: ../app/views/compute_resources/form/_proxmox.html.erb:11
117
+ msgid "Optionally provide a CA, or a correctly ordered CA chain. If left blank, disable ssl_verify_peer."
118
+ msgstr "Vous pouvez éventuellement fournir un certificat ou une chaîne de certificats. Si non renseigné, alors désactivez ssl_verify_peer."
119
+
120
+ #: ../app/views/compute_resources/show/_proxmox.html.erb:4
121
+ msgid "URL"
122
+ msgstr ""
123
+
124
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_form.html.erb:6 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_networks_new_childs_form.html.erb:8
125
+ msgid "remove network interface"
126
+ msgstr "retirer l'interface réseau"
127
+
128
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:11 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:16 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:23 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:30 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:37 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:39 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:47
129
+ msgid "remove storage volume"
130
+ msgstr "retirer le stockage de volume"
131
+
132
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:51 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:54
133
+ msgid "Add Volume"
134
+ msgstr "Ajouter un volume"
135
+
136
+ #: ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:51 ../app/views/compute_resources_vms/form/proxmox/_add_vm_type_to_volumes_edit.html.erb:54
137
+ msgid "add new storage volume"
138
+ msgstr "ajouter un nouveau volume de stockage"
139
+
140
+ #: ../app/views/compute_resources_vms/form/proxmox/_base.html.erb:5 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:16 ../app/views/compute_resources_vms/index/_proxmox.html.erb:7
141
+ msgid "Type"
142
+ msgstr ""
143
+
144
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:5
145
+ msgid "General"
146
+ msgstr "Général"
147
+
148
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:6
149
+ msgid "Create image?"
150
+ msgstr "Créer image?"
151
+
152
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:7
153
+ msgid "VM ID"
154
+ msgstr ""
155
+
156
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:8
157
+ msgid "Node"
158
+ msgstr "Noeud"
159
+
160
+ #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:18 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:35
161
+ msgid "Image"
162
+ msgstr ""
163
+
164
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:5 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:5
165
+ msgid "Advanced"
166
+ msgstr "Avancé"
167
+
168
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:6 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:5 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:6 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:6
169
+ msgid "Main option"
170
+ msgid_plural "Main options"
171
+ msgstr[0] "Option principale"
172
+ msgstr[1] "Options principales"
173
+
174
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:9 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:15
175
+ msgid "CPU"
176
+ msgstr ""
177
+
178
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:10 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:15 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:16 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:10 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:26 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:27 ../app/views/compute_resources_vms/index/_proxmox.html.erb:9
179
+ msgid "Memory"
180
+ msgstr "Mémoire"
181
+
182
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:12 ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:19
183
+ msgid "DNS"
184
+ msgstr ""
185
+
186
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_advanced.html.erb:14 ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:14
187
+ msgid "OS"
188
+ msgstr "Système d'exploitation"
189
+
190
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:6 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:7
191
+ msgid "Description"
192
+ msgstr ""
193
+
194
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:7 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:9
195
+ msgid "Start at boot"
196
+ msgstr "Démarrer au boot"
197
+
198
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:10
199
+ msgid "Architecture"
200
+ msgstr ""
201
+
202
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:11 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:18
203
+ msgid "Cores"
204
+ msgstr "Coeurs"
205
+
206
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:12 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:20
207
+ msgid "CPU limit"
208
+ msgstr "Limite CPU"
209
+
210
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:13 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:21
211
+ msgid "CPU units"
212
+ msgstr "Unités CPU"
213
+
214
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:17
215
+ msgid "Swap"
216
+ msgstr ""
217
+
218
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:20
219
+ msgid "Hostname"
220
+ msgstr "Nom d'hôte"
221
+
222
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:21
223
+ msgid "DNS server"
224
+ msgstr ""
225
+
226
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:22
227
+ msgid "Search domain"
228
+ msgstr "Domaine de recherche"
229
+
230
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:24 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:41
231
+ msgid "Operating System"
232
+ msgstr "Système d'exploitation"
233
+
234
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_config.html.erb:25 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:42
235
+ msgid "OS type"
236
+ msgstr "Type de système d'exploitation"
237
+
238
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:5
239
+ msgid "Extended"
240
+ msgstr "Etendu"
241
+
242
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:7
243
+ msgid "Template storage"
244
+ msgstr "Modèle de stockage"
245
+
246
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:8
247
+ msgid "OS Template"
248
+ msgstr "Modèle d'OS"
249
+
250
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:10
251
+ msgid "Root password"
252
+ msgstr "Mot de passe root"
253
+
254
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:5 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:6
255
+ msgid "Nic"
256
+ msgstr ""
257
+
258
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:6 ../app/views/compute_resources_vms/index/_proxmox.html.erb:6
259
+ msgid "Name"
260
+ msgstr "Nom"
261
+
262
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:7
263
+ msgid "IPv4"
264
+ msgstr ""
265
+
266
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:7
267
+ msgid "e.g. dhcp or IPv4/CIDR format or manual"
268
+ msgstr "par exemple dhcp ou le format IPv4/CIDR ou manuel"
269
+
270
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:8
271
+ msgid "IPv6"
272
+ msgstr ""
273
+
274
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:8
275
+ msgid "e.g. dhcp or IPv6/CIDR format or manual"
276
+ msgstr "par exemple dhcp ou le format IPv6/CIDR ou manuel"
277
+
278
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:9 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:9
279
+ msgid "VLAN tag"
280
+ msgstr "Etiquette VLAN"
281
+
282
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:10 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:10
283
+ msgid "Rate limit"
284
+ msgstr "Taux limite"
285
+
286
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:11 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:8
287
+ msgid "Bridge"
288
+ msgstr "Pont"
289
+
290
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:5
291
+ msgid "Mount point"
292
+ msgstr "Point de montage"
293
+
294
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:7 ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:7 ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:37 ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:7
295
+ msgid "Storage"
296
+ msgstr "Stockage"
297
+
298
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:9
299
+ msgid "Device"
300
+ msgstr "Périphérque"
301
+
302
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:9 ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:11
303
+ msgid "Size"
304
+ msgstr "Taille"
305
+
306
+ #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:5
307
+ msgid "Rootfs"
308
+ msgstr ""
309
+
310
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:12
311
+ msgid "CDROM"
312
+ msgstr ""
313
+
314
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:8
315
+ msgid "Start/Shutdown order"
316
+ msgstr "Ordre au démarrage/arrêt"
317
+
318
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:10
319
+ msgid "Qemu Agent"
320
+ msgstr "Agent Qemu"
321
+
322
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
323
+ msgid "KVM"
324
+ msgstr ""
325
+
326
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
327
+ msgid "Enable/disable KVM hardware virtualization"
328
+ msgstr "Activer/désactiver la virtualisation matérielle de KVM"
329
+
330
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
331
+ msgid "Keyboard"
332
+ msgstr "Clavier"
333
+
334
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:13
335
+ msgid "VGA"
336
+ msgstr ""
337
+
338
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:17
339
+ msgid "Sockets"
340
+ msgstr ""
341
+
342
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:19
343
+ msgid "VCPUs"
344
+ msgstr ""
345
+
346
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:22
347
+ msgid "Enable NUMA"
348
+ msgstr "Activer NUMA"
349
+
350
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:23
351
+ msgid "PCID"
352
+ msgstr ""
353
+
354
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:24
355
+ msgid "Spectre-CTRL"
356
+ msgstr ""
357
+
358
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:28
359
+ msgid "Minimum memory"
360
+ msgstr "Mémoire minimale"
361
+
362
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:29
363
+ msgid "Shares"
364
+ msgstr "Partages"
365
+
366
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:30
367
+ msgid "Ballooning Device"
368
+ msgstr "Périphérique à gonflement"
369
+
370
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:32
371
+ msgid "CD-ROM"
372
+ msgstr ""
373
+
374
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:33
375
+ msgid "None"
376
+ msgstr "Aucun"
377
+
378
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:34
379
+ msgid "Physical"
380
+ msgstr "Physique"
381
+
382
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:38
383
+ msgid "Image ISO"
384
+ msgstr ""
385
+
386
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:7
387
+ msgid "Card"
388
+ msgstr "Carte"
389
+
390
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:11
391
+ msgid "Multiqueue"
392
+ msgstr ""
393
+
394
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:12
395
+ msgid "Firewall"
396
+ msgstr "Pare-feu"
397
+
398
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:13
399
+ msgid "Disconnect"
400
+ msgstr "Se déconnecter"
401
+
402
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:5
403
+ msgid "Disk"
404
+ msgstr "Disque"
405
+
406
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:8
407
+ msgid "Controller"
408
+ msgstr "Contrôleur"
409
+
410
+ #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:10
411
+ msgid "Cache"
412
+ msgstr ""
413
+
414
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:8
415
+ msgid "CPUs"
416
+ msgstr ""
417
+
418
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:10
419
+ msgid "Power"
420
+ msgstr "Alimentation"
421
+
422
+ #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:11
423
+ msgid "Uptime"
424
+ msgstr "En marche depuis (s)"
425
+
426
+ #: ../app/views/dashboard/_foreman_fog_proxmox_widget.erb:5
427
+ msgid "Proxmox Node Statistics: %s"
428
+ msgstr "Statistiques du noeud Proxmox: %s"
429
+
430
+ #: ../app/views/images/form/_proxmox.html.erb:3
431
+ msgid "The user that is used to ssh into the instance, normally cloud-user, ubuntu, root etc"
432
+ msgstr "Le compte utilisé pour SSH, en général compte cloud, ubuntu ou root, etc"
433
+
434
+ #: ../app/views/images/form/_proxmox.html.erb:4
435
+ msgid "Password to authenticate with - used for SSH finish step."
436
+ msgstr "Mot de passe d'authentification - utilisé dans la dernière phase avec SSH."
437
+
438
+ #: ../app/views/images/form/_proxmox.html.erb:5
439
+ msgid "Does this image support user data input (e.g. via cloud-init)?"
440
+ msgstr "Cette immage gère-t-elle les données utilisateurs (par exemple via cloud-init)?"
441
+
442
+ #: ../app/views/images/form/_proxmox.html.erb:6
443
+ msgid "Image VMID"
444
+ msgstr ""
445
+
446
+ #: ../app/views/images/form/_proxmox.html.erb:6
447
+ msgid "vmid of template vm."
448
+ msgstr "vmid de la VM modèle."
449
+
450
+ #: ../lib/foreman_fog_proxmox/engine.rb:46
451
+ msgid "Foreman Fog Proxmox widget"
452
+ msgstr ""
453
+
454
+ #: gemspec.rb:2
455
+ msgid "ForemanFogProxmox plugin adds Proxmox VE compute resource to Foreman using fog-proxmox gem."
456
+ msgstr "Le plugin ForemanFogProxmox ajoute la ressource de calcul Proxmox VE à foreman en utilisant le gem fog-proxmox"