foreman_fog_proxmox 0.5.1 → 0.5.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.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: a113c8eac6532d413340a2c98dd00bb895737e19
4
- data.tar.gz: 6a7bd6ef921fce9a8c8e4479fb4a72a5170c38c9
2
+ SHA256:
3
+ metadata.gz: 2f41380ca48818adb7aeff9b8d59eccf6bc371687abbc93983bba2d4c261cbfe
4
+ data.tar.gz: 8ed09647f083281199e8245e1660e11f92642e0ae91432e3a2cd1d37d32a9e8f
5
5
  SHA512:
6
- metadata.gz: 8a8e948bbb480efd6c8d3c6c570e709bc9b9d9c9c88aac85b4862bf7a4080f34e0474f6ad7e8a56ee25e045ff93fed267bff61699758d8fbdbff4ac30ed96a57
7
- data.tar.gz: 87419d8fa22e223082f86d4879dbd29af78db610584f95e2c01de58879e9136c3c5924b1a652f68206f0836f16ac76790a9bf8b896bc95fc77daba477b44c7e6
6
+ metadata.gz: 7197010a2fc99a9ce5e8fae7688220e21cba65dd144b2335bb19867ba4eb9da2bec2312bc6d58c637cf696c04b0c2ba35b3badbd5a137ecb49dc77787cfad303
7
+ data.tar.gz: e75a5f8eab3219fb8d3de3a4ad5040a0f404ed39ffe3956a481d9525ca81d3bb1ee173ac2a2de630a3006ad4e6319c76d19b0df1aeea57d03a12e3ca8443695b
data/README.md CHANGED
@@ -17,7 +17,7 @@ If you like it and need more features you can [support](SUPPORT.md) it.
17
17
  Tested with:
18
18
 
19
19
  * Foreman >= 1.17 and < 1.20
20
- * Fog-proxmox >= 0.5.1
20
+ * Fog-proxmox >= 0.5.2
21
21
  * Proxmox >= 5.1
22
22
  * Ruby >= 2.3
23
23
 
@@ -108,3 +108,25 @@ function computeControllerMaxDevice(controller){
108
108
  break;
109
109
  }
110
110
  }
111
+
112
+ function balloonSelected(item){
113
+ var ballooned = $(item).is(':checked');
114
+ var memory_f = $("input[name$='[config_attributes][memory]']:hidden");
115
+ var min_memory_f = $("input[id$='config_attributes_min_memory']");
116
+ var min_memory_hidden_f = $("input[name$='[config_attributes][min_memory]']:hidden");
117
+ var shares_f = $("input[id$='config_attributes_shares']");
118
+ var shares_hidden_f = $("input[name$='[config_attributes][shares]']:hidden");
119
+ if (ballooned) {
120
+ min_memory_f.removeAttr('disabled');
121
+ shares_f.removeAttr('disabled');
122
+ var max = memory_f.val();
123
+ console.log("max="+max);
124
+ min_memory_f.attr('data-soft-max',max);
125
+ } else {
126
+ min_memory_f.attr('disabled','disabled');
127
+ min_memory_hidden_f.attr('value','');
128
+ shares_f.attr('disabled','disabled');
129
+ shares_hidden_f.attr('value','');
130
+ }
131
+ tfm.numFields.initAll();
132
+ }
@@ -39,7 +39,7 @@ module ProxmoxServerHelper
39
39
  cdrom = parse_server_cdrom(config.select { |key,_value| cdrom_a.include? key })
40
40
  vols = args['volumes_attributes']
41
41
  volumes = parse_server_volumes(vols)
42
- cpu_a = %w[cpu_type spectre pcid vcpus cpulimit cpuunits cores sockets numa]
42
+ cpu_a = %w[cpu_type spectre pcid]
43
43
  cpu = parse_server_cpu(config.select { |key,_value| cpu_a.include? key })
44
44
  memory_a = %w[memory min_memory balloon shares]
45
45
  memory = parse_server_memory(config.select { |key,_value| memory_a.include? key })
@@ -68,10 +68,9 @@ module ProxmoxServerHelper
68
68
  ballooned = args['balloon'].to_i == 1
69
69
  if ballooned
70
70
  memory.store(:shares,args['shares'].to_i) if args['shares']
71
- memory.store(:balloon,args['min_memory'].to_i) if args['min_memory']
72
- else
73
- memory.store(:balloon,args['balloon'].to_i) if args['balloon']
71
+ memory.store(:min_memory,args['min_memory'].to_i) if args['min_memory']
74
72
  end
73
+ memory.store(:balloon,args['balloon'].to_i) if args['balloon']
75
74
  logger.debug("parse_server_memory(): #{memory}")
76
75
  memory
77
76
  end
@@ -150,12 +149,12 @@ module ProxmoxServerHelper
150
149
  nic
151
150
  else
152
151
  nic.store(:id, id)
153
- nic.store(:tag, args['vlan'].to_i) if args['vlan']
152
+ nic.store(:tag, args['tag'].to_i) if args['tag']
154
153
  nic.store(:model, args['model'].to_s)
155
154
  nic.store(:bridge, args['bridge'].to_s) if args['bridge']
156
155
  nic.store(:firewall, args['firewall'].to_i) if args['firewall']
157
156
  nic.store(:rate, args['rate'].to_i) if args['rate']
158
- nic.store(:link_down, args['disconnect'].to_i) if args['disconnect']
157
+ nic.store(:link_down, args['link_down'].to_i) if args['link_down']
159
158
  nic.store(:queues, args['queues'].to_i) if args['queues']
160
159
  logger.debug("parse_server_interface(): add nic=#{nic}")
161
160
  Fog::Proxmox::NicHelper.flatten(nic)
@@ -16,6 +16,7 @@ You should have received a copy of the GNU General Public License
16
16
  along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. %>
17
17
 
18
18
  <%= javascript_include_tag 'foreman_fog_proxmox/proxmox_vm', "data-turbolinks-track" => true %>
19
+ <%= javascript_tag("$(document).on('ContentLoad', tfm.numFields.initAll)"); %>
19
20
 
20
21
  <%= select_f f, :type, proxmox_types_map, :id, :name, { }, :label => _('Type'), :label_size => "col-md-2", :onchange => "vmTypeSelected()", :disabled => !new_vm %>
21
22
 
@@ -20,7 +20,7 @@ along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. %>
20
20
 
21
21
  <%= field_set_tag n_("Main option", "Main options", 2), :id => "server_config_options", :class => 'hide', :disabled => !server do %>
22
22
  <%= textarea_f f, :description, :label => _('Description'), :label_size => "col-md-2" %>
23
- <%= text_f f, :boot, :label => _('Start/Shutdown order'), :label_size => "col-md-2" %>
23
+ <%= text_f f, :boot, :label => _('Boot device order'), :label_size => "col-md-2", :label_help => _('Floppy disk (a), hard disk (c), cdrom (d), network (n). Default cdn') %>
24
24
  <%= checkbox_f f, :onboot, :label => _('Start at boot') %>
25
25
  <%= checkbox_f f, :agent, :label => _('Qemu Agent') %>
26
26
  <%= checkbox_f f, :kvm, :label => _('KVM'), :label_help => _('Enable/disable KVM hardware virtualization') %>
@@ -39,10 +39,11 @@ along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. %>
39
39
  <%= checkbox_f f, :spectre, :label => _('Spectre-CTRL') %>
40
40
  <% end %>
41
41
  <%= field_set_tag _("Memory"), :id => "server_config_memory", :class => 'hide', :disabled => !server do %>
42
+ <% ballooned = f.object.balloon == 1 %>
42
43
  <%= byte_size_f f, :memory, :class => "input-mini", :label => _('Memory'), :label_size => "col-md-2" %>
43
- <%= byte_size_f f, :min_memory, :class => "input-mini", :label => _('Minimum memory'), :label_size => "col-md-2" %>
44
- <%= counter_f f, :shares, :class => "input-mini", :label => _('Shares'), :label_size => "col-md-2" %>
45
- <%= checkbox_f f, :balloon, :label => _('Ballooning Device') %>
44
+ <%= byte_size_f f, :min_memory, :class => "input-mini", :label => _('Minimum memory'), :label_size => "col-md-2", :disabled => !ballooned %>
45
+ <%= counter_f f, :shares, :class => "input-mini", :label => _('Shares'), :label_size => "col-md-2", :disabled => !ballooned %>
46
+ <%= checkbox_f f, :balloon, :label => _('Ballooning Device'), :onchange => 'balloonSelected(this)' %>
46
47
  <% end %>
47
48
  <%= field_set_tag _("CD-ROM"), :id => "server_config_cdrom", :class => 'hide', :disabled => !server do %>
48
49
  <%= radio_button_f f, :cdrom, :value => 'none', :text => _('None'), :onclick => 'cdromSelected(this)' %>
@@ -18,5 +18,5 @@
18
18
  # along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>.
19
19
 
20
20
  module ForemanFogProxmox
21
- VERSION = '0.5.1'.freeze
21
+ VERSION = '0.5.2'.freeze
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_fog_proxmox
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tristan Robert
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-10 00:00:00.000000000 Z
11
+ date: 2018-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fog-proxmox
@@ -148,13 +148,9 @@ files:
148
148
  - lib/foreman_fog_proxmox/version.rb
149
149
  - lib/tasks/foreman_fog_proxmox_tasks.rake
150
150
  - locale/Makefile
151
- - locale/en/foreman_fog_proxmox.edit.po
152
151
  - locale/en/foreman_fog_proxmox.po
153
- - locale/en/foreman_fog_proxmox.po.time_stamp
154
152
  - locale/foreman_fog_proxmox.pot
155
- - locale/fr/foreman_fog_proxmox.edit.po
156
153
  - locale/fr/foreman_fog_proxmox.po
157
- - locale/fr/foreman_fog_proxmox.po.time_stamp
158
154
  - locale/gemspec.rb
159
155
  - test/factories/proxmox_factory.rb
160
156
  - test/functional/compute_resources_controller_test.rb
@@ -184,16 +180,16 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
180
  version: '0'
185
181
  requirements: []
186
182
  rubyforge_project:
187
- rubygems_version: 2.5.2.3
183
+ rubygems_version: 2.7.6
188
184
  signing_key:
189
185
  specification_version: 4
190
186
  summary: Foreman plugin that adds Proxmox VE compute resource using fog-proxmox
191
187
  test_files:
192
- - test/test_plugin_helper.rb
193
- - test/factories/proxmox_factory.rb
194
188
  - test/functional/compute_resources_controller_test.rb
195
- - test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb
196
- - test/unit/foreman_fog_proxmox/helpers/proxmox_vm_helper_test.rb
197
- - test/unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb
189
+ - test/factories/proxmox_factory.rb
198
190
  - test/unit/foreman_fog_proxmox/proxmox_test_helpers.rb
199
191
  - test/unit/foreman_fog_proxmox/proxmox_test.rb
192
+ - test/unit/foreman_fog_proxmox/helpers/proxmox_container_helper_test.rb
193
+ - test/unit/foreman_fog_proxmox/helpers/proxmox_server_helper_test.rb
194
+ - test/unit/foreman_fog_proxmox/helpers/proxmox_vm_helper_test.rb
195
+ - test/test_plugin_helper.rb
@@ -1,440 +0,0 @@
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.
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: English\n"
13
- "Language: en\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 ""
23
-
24
- #: ../app/helpers/node_dashboard_helper.rb:34
25
- msgid "Average load (x100)"
26
- msgstr ""
27
-
28
- #: ../app/helpers/proxmox_form_helper.rb:34
29
- msgid "Caps lock ON"
30
- msgstr ""
31
-
32
- #: ../app/helpers/proxmox_form_helper.rb:37
33
- msgid "Change the password"
34
- msgstr ""
35
-
36
- #: ../app/helpers/proxmox_vm_helper.rb:79
37
- msgid "Invalid uuid=[%{uuid}]."
38
- msgstr ""
39
-
40
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:116
41
- msgid "Operating system family %{type} is not consistent with %{ostype}"
42
- msgstr ""
43
-
44
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:123
45
- msgid "Identifier interface[%{index}] required."
46
- msgstr ""
47
-
48
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:124
49
- msgid "Invalid identifier interface[%{index}]. Must be net[n] with n integer >= 0"
50
- msgstr ""
51
-
52
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:201
53
- msgid "new_vm() vm.config=%{config}"
54
- msgstr ""
55
-
56
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:207
57
- msgid "new_container_vm() vm.config=%{config}"
58
- msgstr ""
59
-
60
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:213
61
- msgid "new_server_vm() vm.config=%{config}"
62
- msgstr ""
63
-
64
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:220
65
- msgid "invalid vmid=%{vmid}"
66
- msgstr ""
67
-
68
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:223
69
- msgid "create_vm(): clone %{image_id} in %{vmid}"
70
- msgstr ""
71
-
72
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:229
73
- msgid "create_vm(): %{args}"
74
- msgstr ""
75
-
76
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:243
77
- msgid "failed to create vm: %{e}"
78
- msgstr ""
79
-
80
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:257
81
- msgid "Failed retrieving proxmox vm by vmid=%{vmid} and type=%{type}"
82
- msgstr ""
83
-
84
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:297
85
- msgid "save_vm(): %{attr}"
86
- msgstr ""
87
-
88
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:343
89
- msgid "Unable to store X509 certificates"
90
- msgstr ""
91
-
92
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:371
93
- msgid "%s console is not supported at this time"
94
- msgstr ""
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 ""
99
-
100
- #: ../app/views/compute_resources/form/_proxmox.html.erb:6
101
- msgid "Test failed"
102
- msgstr ""
103
-
104
- #: ../app/views/compute_resources/form/_proxmox.html.erb:7
105
- msgid "e.g. root@pam"
106
- msgstr ""
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 ""
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 ""
119
-
120
- #: ../app/views/compute_resources/form/_proxmox.html.erb:12 ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:8
121
- msgid "Node"
122
- msgstr ""
123
-
124
- #: ../app/views/compute_resources/show/_proxmox.html.erb:4
125
- msgid "URL"
126
- msgstr ""
127
-
128
- #: ../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
129
- msgid "remove network interface"
130
- msgstr ""
131
-
132
- #: ../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
133
- msgid "remove storage volume"
134
- msgstr ""
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 Volume"
138
- msgstr ""
139
-
140
- #: ../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
141
- msgid "add new storage volume"
142
- msgstr ""
143
-
144
- #: ../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
145
- msgid "Type"
146
- msgstr ""
147
-
148
- #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:5
149
- msgid "General"
150
- msgstr ""
151
-
152
- #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:6
153
- msgid "Create image?"
154
- msgstr ""
155
-
156
- #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:7
157
- msgid "VM ID"
158
- msgstr ""
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 ""
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] ""
172
- msgstr[1] ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
237
-
238
- #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:5
239
- msgid "Extended"
240
- msgstr ""
241
-
242
- #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:7
243
- msgid "Template storage"
244
- msgstr ""
245
-
246
- #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:8
247
- msgid "OS Template"
248
- msgstr ""
249
-
250
- #: ../app/views/compute_resources_vms/form/proxmox/container/_extended.html.erb:10
251
- msgid "Root password"
252
- msgstr ""
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 ""
261
-
262
- #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:7 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:9
263
- msgid "VLAN tag"
264
- msgstr ""
265
-
266
- #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:10
267
- msgid "Rate limit"
268
- msgstr ""
269
-
270
- #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:9 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:8
271
- msgid "Bridge"
272
- msgstr ""
273
-
274
- #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:5
275
- msgid "Mount point"
276
- msgstr ""
277
-
278
- #: ../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
279
- msgid "Storage"
280
- msgstr ""
281
-
282
- #: ../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
283
- msgid "Device"
284
- msgstr ""
285
-
286
- #: ../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
287
- msgid "Size"
288
- msgstr ""
289
-
290
- #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:5
291
- msgid "Rootfs"
292
- msgstr ""
293
-
294
- #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:12
295
- msgid "CDROM"
296
- msgstr ""
297
-
298
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:8
299
- msgid "Start/Shutdown order"
300
- msgstr ""
301
-
302
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:10
303
- msgid "Qemu Agent"
304
- msgstr ""
305
-
306
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
307
- msgid "KVM"
308
- msgstr ""
309
-
310
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
311
- msgid "Enable/disable KVM hardware virtualization"
312
- msgstr ""
313
-
314
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
315
- msgid "Keyboard"
316
- msgstr ""
317
-
318
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:13
319
- msgid "VGA"
320
- msgstr ""
321
-
322
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:17
323
- msgid "Sockets"
324
- msgstr ""
325
-
326
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:19
327
- msgid "VCPUs"
328
- msgstr ""
329
-
330
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:22
331
- msgid "Enable NUMA"
332
- msgstr ""
333
-
334
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:23
335
- msgid "PCID"
336
- msgstr ""
337
-
338
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:24
339
- msgid "Spectre-CTRL"
340
- msgstr ""
341
-
342
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:28
343
- msgid "Minimum memory"
344
- msgstr ""
345
-
346
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:29
347
- msgid "Shares"
348
- msgstr ""
349
-
350
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:30
351
- msgid "Ballooning Device"
352
- msgstr ""
353
-
354
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:32
355
- msgid "CD-ROM"
356
- msgstr ""
357
-
358
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:33
359
- msgid "None"
360
- msgstr ""
361
-
362
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:34
363
- msgid "Physical"
364
- msgstr ""
365
-
366
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:38
367
- msgid "Image ISO"
368
- msgstr ""
369
-
370
- #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:7
371
- msgid "Card"
372
- msgstr ""
373
-
374
- #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:11
375
- msgid "Multiqueue"
376
- msgstr ""
377
-
378
- #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:12
379
- msgid "Firewall"
380
- msgstr ""
381
-
382
- #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:13
383
- msgid "Disconnect"
384
- msgstr ""
385
-
386
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:5
387
- msgid "Disk"
388
- msgstr ""
389
-
390
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:8
391
- msgid "Controller"
392
- msgstr ""
393
-
394
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:10
395
- msgid "Cache"
396
- msgstr ""
397
-
398
- #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:8
399
- msgid "CPUs"
400
- msgstr ""
401
-
402
- #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:10
403
- msgid "Power"
404
- msgstr ""
405
-
406
- #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:11
407
- msgid "Uptime"
408
- msgstr ""
409
-
410
- #: ../app/views/dashboard/_foreman_fog_proxmox_widget.erb:5
411
- msgid "Proxmox Node Statistics: %s"
412
- msgstr ""
413
-
414
- #: ../app/views/images/form/_proxmox.html.erb:3
415
- msgid "The user that is used to ssh into the instance, normally cloud-user, ubuntu, root etc"
416
- msgstr ""
417
-
418
- #: ../app/views/images/form/_proxmox.html.erb:4
419
- msgid "Password to authenticate with - used for SSH finish step."
420
- msgstr ""
421
-
422
- #: ../app/views/images/form/_proxmox.html.erb:5
423
- msgid "Does this image support user data input (e.g. via cloud-init)?"
424
- msgstr ""
425
-
426
- #: ../app/views/images/form/_proxmox.html.erb:6
427
- msgid "Image VMID"
428
- msgstr ""
429
-
430
- #: ../app/views/images/form/_proxmox.html.erb:6
431
- msgid "vmid of template vm."
432
- msgstr ""
433
-
434
- #: ../lib/foreman_fog_proxmox/engine.rb:46
435
- msgid "Foreman Fog Proxmox widget"
436
- msgstr ""
437
-
438
- #: gemspec.rb:2
439
- msgid "ForemanFogProxmox plugin adds Proxmox VE compute resource to Foreman using fog-proxmox gem."
440
- msgstr ""
@@ -1,440 +0,0 @@
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:79
37
- msgid "Invalid uuid=[%{uuid}]."
38
- msgstr ""
39
-
40
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:116
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:123
45
- msgid "Identifier interface[%{index}] required."
46
- msgstr "L'identifiant de interface[%{index}] est obligatoire."
47
-
48
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:124
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:201
53
- msgid "new_vm() vm.config=%{config}"
54
- msgstr ""
55
-
56
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:207
57
- msgid "new_container_vm() vm.config=%{config}"
58
- msgstr ""
59
-
60
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:213
61
- msgid "new_server_vm() vm.config=%{config}"
62
- msgstr ""
63
-
64
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:220
65
- msgid "invalid vmid=%{vmid}"
66
- msgstr "vmid=%{vmid} incorrect"
67
-
68
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:223
69
- msgid "create_vm(): clone %{image_id} in %{vmid}"
70
- msgstr ""
71
-
72
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:229
73
- msgid "create_vm(): %{args}"
74
- msgstr ""
75
-
76
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:243
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:257
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:297
85
- msgid "save_vm(): %{attr}"
86
- msgstr ""
87
-
88
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:343
89
- msgid "Unable to store X509 certificates"
90
- msgstr "Impossible d'enregistrer les certificats X509"
91
-
92
- #: ../app/models/foreman_fog_proxmox/proxmox.rb:371
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/form/_proxmox.html.erb:12 ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:8
121
- msgid "Node"
122
- msgstr "Noeud"
123
-
124
- #: ../app/views/compute_resources/show/_proxmox.html.erb:4
125
- msgid "URL"
126
- msgstr ""
127
-
128
- #: ../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
129
- msgid "remove network interface"
130
- msgstr "retirer l'interface réseau"
131
-
132
- #: ../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
133
- msgid "remove storage volume"
134
- msgstr "retirer le stockage de 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 Volume"
138
- msgstr "Ajouter un volume"
139
-
140
- #: ../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
141
- msgid "add new storage volume"
142
- msgstr "ajouter un nouveau volume de stockage"
143
-
144
- #: ../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
145
- msgid "Type"
146
- msgstr ""
147
-
148
- #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:5
149
- msgid "General"
150
- msgstr "Général"
151
-
152
- #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:6
153
- msgid "Create image?"
154
- msgstr "Créer image?"
155
-
156
- #: ../app/views/compute_resources_vms/form/proxmox/_general.html.erb:7
157
- msgid "VM ID"
158
- msgstr ""
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 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:9
263
- msgid "VLAN tag"
264
- msgstr "Etiquette VLAN"
265
-
266
- #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:8 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:10
267
- msgid "Rate limit"
268
- msgstr "Taux limite"
269
-
270
- #: ../app/views/compute_resources_vms/form/proxmox/container/_network.html.erb:9 ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:8
271
- msgid "Bridge"
272
- msgstr "Pont"
273
-
274
- #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_mp.html.erb:5
275
- msgid "Mount point"
276
- msgstr "Point de montage"
277
-
278
- #: ../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
279
- msgid "Storage"
280
- msgstr "Stockage"
281
-
282
- #: ../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
283
- msgid "Device"
284
- msgstr "Périphérque"
285
-
286
- #: ../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
287
- msgid "Size"
288
- msgstr "Taille"
289
-
290
- #: ../app/views/compute_resources_vms/form/proxmox/container/_volume_rootfs.html.erb:5
291
- msgid "Rootfs"
292
- msgstr ""
293
-
294
- #: ../app/views/compute_resources_vms/form/proxmox/server/_advanced.html.erb:12
295
- msgid "CDROM"
296
- msgstr ""
297
-
298
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:8
299
- msgid "Start/Shutdown order"
300
- msgstr "Ordre au démarrage/arrêt"
301
-
302
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:10
303
- msgid "Qemu Agent"
304
- msgstr "Agent Qemu"
305
-
306
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
307
- msgid "KVM"
308
- msgstr ""
309
-
310
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:11
311
- msgid "Enable/disable KVM hardware virtualization"
312
- msgstr "Activer/désactiver la virtualisation matérielle de KVM"
313
-
314
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:12
315
- msgid "Keyboard"
316
- msgstr "Clavier"
317
-
318
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:13
319
- msgid "VGA"
320
- msgstr ""
321
-
322
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:17
323
- msgid "Sockets"
324
- msgstr ""
325
-
326
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:19
327
- msgid "VCPUs"
328
- msgstr ""
329
-
330
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:22
331
- msgid "Enable NUMA"
332
- msgstr "Activer NUMA"
333
-
334
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:23
335
- msgid "PCID"
336
- msgstr ""
337
-
338
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:24
339
- msgid "Spectre-CTRL"
340
- msgstr ""
341
-
342
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:28
343
- msgid "Minimum memory"
344
- msgstr "Mémoire minimale"
345
-
346
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:29
347
- msgid "Shares"
348
- msgstr "Partages"
349
-
350
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:30
351
- msgid "Ballooning Device"
352
- msgstr "Périphérique à gonflement"
353
-
354
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:32
355
- msgid "CD-ROM"
356
- msgstr ""
357
-
358
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:33
359
- msgid "None"
360
- msgstr "Aucun"
361
-
362
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:34
363
- msgid "Physical"
364
- msgstr "Physique"
365
-
366
- #: ../app/views/compute_resources_vms/form/proxmox/server/_config.html.erb:38
367
- msgid "Image ISO"
368
- msgstr ""
369
-
370
- #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:7
371
- msgid "Card"
372
- msgstr "Carte"
373
-
374
- #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:11
375
- msgid "Multiqueue"
376
- msgstr ""
377
-
378
- #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:12
379
- msgid "Firewall"
380
- msgstr "Pare-feu"
381
-
382
- #: ../app/views/compute_resources_vms/form/proxmox/server/_network.html.erb:13
383
- msgid "Disconnect"
384
- msgstr "Se déconnecter"
385
-
386
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:5
387
- msgid "Disk"
388
- msgstr "Disque"
389
-
390
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:8
391
- msgid "Controller"
392
- msgstr "Contrôleur"
393
-
394
- #: ../app/views/compute_resources_vms/form/proxmox/server/_volume.html.erb:10
395
- msgid "Cache"
396
- msgstr ""
397
-
398
- #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:8
399
- msgid "CPUs"
400
- msgstr ""
401
-
402
- #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:10
403
- msgid "Power"
404
- msgstr "Alimentation"
405
-
406
- #: ../app/views/compute_resources_vms/index/_proxmox.html.erb:11
407
- msgid "Uptime"
408
- msgstr "En marche depuis (s)"
409
-
410
- #: ../app/views/dashboard/_foreman_fog_proxmox_widget.erb:5
411
- msgid "Proxmox Node Statistics: %s"
412
- msgstr "Statistiques du noeud Proxmox: %s"
413
-
414
- #: ../app/views/images/form/_proxmox.html.erb:3
415
- msgid "The user that is used to ssh into the instance, normally cloud-user, ubuntu, root etc"
416
- msgstr "Le compte utilisé pour SSH, en général compte cloud, ubuntu ou root, etc"
417
-
418
- #: ../app/views/images/form/_proxmox.html.erb:4
419
- msgid "Password to authenticate with - used for SSH finish step."
420
- msgstr "Mot de passe d'authentification - utilisé dans la dernière phase avec SSH."
421
-
422
- #: ../app/views/images/form/_proxmox.html.erb:5
423
- msgid "Does this image support user data input (e.g. via cloud-init)?"
424
- msgstr "Cette immage gère-t-elle les données utilisateurs (par exemple via cloud-init)?"
425
-
426
- #: ../app/views/images/form/_proxmox.html.erb:6
427
- msgid "Image VMID"
428
- msgstr ""
429
-
430
- #: ../app/views/images/form/_proxmox.html.erb:6
431
- msgid "vmid of template vm."
432
- msgstr "vmid de la VM modèle."
433
-
434
- #: ../lib/foreman_fog_proxmox/engine.rb:46
435
- msgid "Foreman Fog Proxmox widget"
436
- msgstr ""
437
-
438
- #: gemspec.rb:2
439
- msgid "ForemanFogProxmox plugin adds Proxmox VE compute resource to Foreman using fog-proxmox gem."
440
- msgstr "Le plugin ForemanFogProxmox ajoute la ressource de calcul Proxmox VE à foreman en utilisant le gem fog-proxmox"