foreman_fog_proxmox 0.8.0 → 0.8.2

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