foreman_docker 3.0.0 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +22 -22
  3. data/app/assets/javascripts/foreman_docker/image_step.js +36 -6
  4. data/app/controllers/api/v2/containers_controller.rb +13 -11
  5. data/app/controllers/containers/steps_controller.rb +8 -2
  6. data/app/controllers/containers_controller.rb +4 -3
  7. data/app/controllers/image_search_controller.rb +36 -79
  8. data/app/helpers/container_steps_helper.rb +21 -0
  9. data/app/models/concerns/foreman_docker/parameter_validators.rb +27 -4
  10. data/app/models/container.rb +9 -10
  11. data/app/models/docker_container_wizard_state.rb +2 -0
  12. data/app/models/docker_container_wizard_states/dns.rb +2 -8
  13. data/app/models/docker_container_wizard_states/environment.rb +4 -14
  14. data/app/models/docker_container_wizard_states/environment_variable.rb +2 -2
  15. data/app/models/docker_container_wizard_states/exposed_port.rb +2 -8
  16. data/app/models/docker_container_wizard_states/image.rb +30 -0
  17. data/app/models/docker_container_wizard_states/preliminary.rb +1 -1
  18. data/app/models/docker_parameter.rb +20 -0
  19. data/app/models/docker_registry.rb +6 -4
  20. data/app/models/environment_variable.rb +3 -3
  21. data/app/models/exposed_port.rb +4 -10
  22. data/app/models/foreman_docker/compute_resource_extensions.rb +11 -0
  23. data/app/models/foreman_docker/dns.rb +3 -9
  24. data/app/models/foreman_docker/docker.rb +1 -5
  25. data/app/models/service/containers.rb +15 -11
  26. data/app/models/service/registry_api.rb +87 -15
  27. data/app/services/foreman_docker/image_search.rb +92 -0
  28. data/app/views/containers/index.html.erb +1 -3
  29. data/app/views/containers/show.html.erb +1 -1
  30. data/app/views/containers/steps/_image_hub_tab.html.erb +39 -29
  31. data/app/views/containers/steps/_title.html.erb +1 -1
  32. data/app/views/containers/steps/preliminary.html.erb +1 -1
  33. data/app/views/foreman_docker/common_parameters/_dns_entry.html.erb +1 -1
  34. data/app/views/foreman_docker/common_parameters/_environment_variable.html.erb +1 -1
  35. data/app/views/foreman_docker/common_parameters/_exposed_port.html.erb +1 -1
  36. data/app/views/image_search/_repository_search_results.html.erb +1 -1
  37. data/app/views/registries/index.html.erb +1 -3
  38. data/app/views/registries/new.html.erb +1 -1
  39. data/db/migrate/20160605133025_create_docker_parameters.rb +13 -0
  40. data/db/migrate/20160605134652_move_parameters_to_docker_parameters.rb +27 -0
  41. data/lib/foreman_docker/engine.rb +6 -7
  42. data/lib/foreman_docker/version.rb +1 -1
  43. data/lib/tasks/test.rake +35 -0
  44. data/test/functionals/api/v2/containers_controller_test.rb +21 -0
  45. data/test/functionals/api/v2/registries_controller_test.rb +4 -3
  46. data/test/functionals/containers_controller_test.rb +5 -0
  47. data/test/functionals/containers_steps_controller_test.rb +74 -36
  48. data/test/functionals/image_search_controller_test.rb +166 -12
  49. data/test/integration/container_test.rb +1 -1
  50. data/test/test_plugin_helper.rb +10 -0
  51. data/test/units/container_test.rb +1 -1
  52. data/test/units/containers_service_test.rb +31 -9
  53. data/test/units/docker_container_wizard_states/image_test.rb +84 -0
  54. data/test/units/docker_registry_test.rb +27 -10
  55. data/test/units/foreman_docker/compute_resource_extensions_test.rb +10 -0
  56. data/test/units/image_search_service_test.rb +188 -0
  57. data/test/units/registry_api_test.rb +206 -12
  58. metadata +55 -36
  59. data/lib/foreman_docker/tasks/test.rake +0 -45
  60. data/locale/de/foreman_docker.edit.po +0 -631
  61. data/locale/de/foreman_docker.po.time_stamp +0 -0
  62. data/locale/es/foreman_docker.edit.po +0 -631
  63. data/locale/es/foreman_docker.po.time_stamp +0 -0
  64. data/locale/fr/foreman_docker.edit.po +0 -632
  65. data/locale/fr/foreman_docker.po.time_stamp +0 -0
  66. data/locale/it/foreman_docker.edit.po +0 -630
  67. data/locale/it/foreman_docker.po.time_stamp +0 -0
  68. data/locale/ja/foreman_docker.edit.po +0 -634
  69. data/locale/ja/foreman_docker.po.time_stamp +0 -0
  70. data/locale/ko/foreman_docker.edit.po +0 -629
  71. data/locale/ko/foreman_docker.po.time_stamp +0 -0
  72. data/locale/pt_BR/foreman_docker.edit.po +0 -631
  73. data/locale/pt_BR/foreman_docker.po.time_stamp +0 -0
  74. data/locale/ru/foreman_docker.edit.po +0 -630
  75. data/locale/ru/foreman_docker.po.time_stamp +0 -0
  76. data/locale/zh_CN/foreman_docker.edit.po +0 -628
  77. data/locale/zh_CN/foreman_docker.po.time_stamp +0 -0
  78. data/locale/zh_TW/foreman_docker.edit.po +0 -628
  79. data/locale/zh_TW/foreman_docker.po.time_stamp +0 -0
File without changes
@@ -1,632 +0,0 @@
1
- # Corina Roe <croe@redhat.com>, 2015. #zanata
2
- # jcarbone <jcarbone@redhat.com>, 2015. #zanata
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: version 0.0.1\n"
6
- "Report-Msgid-Bugs-To: \n"
7
- "PO-Revision-Date: 2015-04-28 08:18+0000\n"
8
- "Last-Translator: jcarbone <jcarbone@redhat.com>\n"
9
- "Language-Team: French\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "Language: fr\n"
14
- "Plural-Forms: nplurals=2; plural=(n > 1)\n"
15
- "X-Generator: Zanata 3.6.0\n"
16
-
17
- #: ../app/controllers/api/v2/containers_controller.rb:13
18
- msgid "List all containers"
19
- msgstr "Répertorier tous les conteneurs"
20
-
21
- #: ../app/controllers/api/v2/containers_controller.rb:15
22
- msgid "List all containers on a compute resource"
23
- msgstr ""
24
-
25
- #: ../app/controllers/api/v2/containers_controller.rb:29
26
- msgid "Show a container"
27
- msgstr "Afficher un conteneur"
28
-
29
- #: ../app/controllers/api/v2/containers_controller.rb:31
30
- msgid "Show container on a compute resource"
31
- msgstr ""
32
-
33
- #: ../app/controllers/api/v2/containers_controller.rb:43
34
- msgid "Registry this container will have to use to get the image"
35
- msgstr ""
36
-
37
- #: ../app/controllers/api/v2/containers_controller.rb:46
38
- msgid "Name of the repository to use to create the container. e.g. centos"
39
- msgstr ""
40
-
41
- #: ../app/controllers/api/v2/containers_controller.rb:49
42
- msgid "Tag to use to create the container. e.g. latest"
43
- msgstr ""
44
-
45
- #: ../app/controllers/api/v2/containers_controller.rb:60
46
- msgid "The capsule this container will have to use to get the image. Relevant for images retrieved from katello registry."
47
- msgstr ""
48
-
49
- #: ../app/controllers/api/v2/containers_controller.rb:66
50
- msgid "Create a container"
51
- msgstr "Créer un conteneur"
52
-
53
- #: ../app/controllers/api/v2/containers_controller.rb:68
54
- msgid "Create container on a compute resource"
55
- msgstr ""
56
-
57
- #: ../app/controllers/api/v2/containers_controller.rb:84
58
- msgid "Wrong attributes: %s"
59
- msgstr "Mauvais attribut : %s"
60
-
61
- #: ../app/controllers/api/v2/containers_controller.rb:88
62
- msgid "Delete a container"
63
- msgstr "Supprimer un conteneur"
64
-
65
- #: ../app/controllers/api/v2/containers_controller.rb:90
66
- msgid "Delete container on a compute resource"
67
- msgstr ""
68
-
69
- #: ../app/controllers/api/v2/containers_controller.rb:98
70
- msgid "Show container logs"
71
- msgstr "Afficher les journaux de conteneur"
72
-
73
- #: ../app/controllers/api/v2/containers_controller.rb:100
74
- msgid "Show logs from a container on a compute resource"
75
- msgstr ""
76
-
77
- #: ../app/controllers/api/v2/containers_controller.rb:105
78
- msgid "Number of lines to tail. Default: 100"
79
- msgstr "Nombre de lignes à finaliser. Défaut : 100"
80
-
81
- #: ../app/controllers/api/v2/containers_controller.rb:114
82
- msgid "Run power operation on a container"
83
- msgstr "Effectuer une opération de gestion de l'alimentation sur un conteneur"
84
-
85
- #: ../app/controllers/api/v2/containers_controller.rb:116
86
- msgid "Run power operation on a container on a compute resource"
87
- msgstr ""
88
-
89
- #: ../app/controllers/api/v2/containers_controller.rb:121
90
- msgid "power action, valid actions are (start), (stop), (status)"
91
- msgstr "Action sur l'alimentation, les actions valides sont (start), (stop), (status)."
92
-
93
- #: ../app/controllers/api/v2/containers_controller.rb:134
94
- msgid "Unknown method: available power operations are %s"
95
- msgstr "Méthode inconnue : les opérations d'alimentation disponibles sont %s"
96
-
97
- #: ../app/controllers/api/v2/registries_controller.rb:22
98
- msgid "List all docker registries"
99
- msgstr ""
100
-
101
- #: ../app/controllers/api/v2/registries_controller.rb:29
102
- msgid "Show a docker registry"
103
- msgstr ""
104
-
105
- #: ../app/controllers/api/v2/registries_controller.rb:34
106
- msgid "Create a docker registry"
107
- msgstr ""
108
-
109
- #: ../app/controllers/api/v2/registries_controller.rb:41
110
- msgid "Update a docker registry"
111
- msgstr ""
112
-
113
- #: ../app/controllers/api/v2/registries_controller.rb:48
114
- msgid "Delete a docker registry"
115
- msgstr ""
116
-
117
- #: ../app/controllers/containers_controller.rb:25
118
- msgid "Container %s is being deleted."
119
- msgstr "Le Conteneur %s est en cours de suppression."
120
-
121
- #: ../app/controllers/containers_controller.rb:44
122
- msgid "%{container} commit was successful"
123
- msgstr ""
124
-
125
- #: ../app/controllers/containers_controller.rb:47
126
- msgid "Failed to commit %{container}: %{e}"
127
- msgstr "Échec de validation de %{container} : %{e}"
128
-
129
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
130
- #: ../app/controllers/containers_controller.rb:60
131
- msgid "%{vm} is now %{vm_state}"
132
- msgstr "%{vm} est maintenant %{vm_state}"
133
-
134
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
135
- #: ../app/controllers/containers_controller.rb:64
136
- msgid "failed to %{action} %{vm}"
137
- msgstr "échec de %{action} %{vm}"
138
-
139
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
140
- #: ../app/controllers/containers_controller.rb:69
141
- msgid "Error - %{message}"
142
- msgstr "Erreur - %{message}"
143
-
144
- #: ../app/controllers/image_search_controller.rb:62
145
- msgid "An error occured during repository search: '%s'"
146
- msgstr "Une erreur s'est produite lors de la recherche de référentiel : '%s'"
147
-
148
- #: ../app/helpers/container_steps_helper.rb:12 ../app/views/registries/_form.html.erb:4
149
- msgid "Registry"
150
- msgstr "Registre"
151
-
152
- #: ../app/helpers/container_steps_helper.rb:16
153
- msgid "Select a registry"
154
- msgstr "Sélectionner un registre"
155
-
156
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
157
- #: ../app/helpers/container_steps_helper.rb:22 ../app/views/compute_resources_vms/form/_docker.html.erb:6 ../app/views/compute_resources_vms/index/_docker.html.erb:5 ../app/views/containers/_list.html.erb:6
158
- msgid "Image"
159
- msgstr "Image"
160
-
161
- #: ../app/helpers/container_steps_helper.rb:22
162
- msgid "Environment"
163
- msgstr ""
164
-
165
- #: ../app/helpers/container_steps_helper.rb:22
166
- msgid "Configuration"
167
- msgstr ""
168
-
169
- #: ../app/helpers/container_steps_helper.rb:22
170
- msgid "Preliminary"
171
- msgstr ""
172
-
173
- # translation auto-copied from project PressGang CCMS topics, version 1, document 4283-155458
174
- #: ../app/helpers/containers_helper.rb:34
175
- msgid "Commit"
176
- msgstr "Valider"
177
-
178
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
179
- #: ../app/helpers/containers_helper.rb:43 ../app/views/containers/_list.html.erb:36 ../app/views/registries/index.html.erb:23
180
- msgid "Delete %s?"
181
- msgstr "Supprimer %s ?"
182
-
183
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman, author jcarbone
184
- #: ../app/helpers/containers_helper.rb:71
185
- msgid "Are you sure you want to power %{act} %{vm}?"
186
- msgstr "Êtes-vous sûr de vouloir %{act} %{vm} ?"
187
-
188
- #: ../app/models/concerns/fog_extensions/fogdocker/server.rb:39
189
- msgid "%{cores} cores and %{memory} memory"
190
- msgstr ""
191
-
192
- #: ../app/models/container.rb:61
193
- msgid "Docker/Container"
194
- msgstr "Docker/Conteneur"
195
-
196
- #: ../app/models/docker_registry.rb:39
197
- msgid "Docker/Registry"
198
- msgstr "Docker/Registre"
199
-
200
- #: ../app/models/docker_registry.rb:50
201
- msgid "Unable to log in to this Docker Registry - %s"
202
- msgstr ""
203
-
204
- #: ../app/models/foreman_docker/docker.rb:140
205
- msgid "Error creating communicating with Docker. Check the Foreman logs: %s"
206
- msgstr "Erreur pendant la communication avec Docker. Veuillez consulter les journaux Foreman : %s"
207
-
208
- #: ../app/models/service/containers.rb:101
209
- msgid "Could not start container"
210
- msgstr ""
211
-
212
- #: ../app/views/compute_resources/form/_docker.html.erb:1
213
- msgid "e.g. https://docker.example.com:4243 or unix:///var/run/docker.sock"
214
- msgstr "Par exemple https://docker.example.com:4243 ou unix:///var/run/docker.sock"
215
-
216
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
217
- #: ../app/views/compute_resources/form/_docker.html.erb:7
218
- msgid "Test Connection"
219
- msgstr "Tester la connexion"
220
-
221
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
222
- #: ../app/views/compute_resources/show/_docker.html.erb:2 ../app/views/registries/index.html.erb:9
223
- msgid "URL"
224
- msgstr "URL"
225
-
226
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
227
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:10
228
- msgid "Cores"
229
- msgstr "Cores"
230
-
231
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
232
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:11 ../app/views/compute_resources_vms/index/_docker.html.erb:7 ../app/views/compute_resources_vms/show/_docker.html.erb:22 ../app/views/containers/show.html.erb:39 ../app/views/containers/steps/configuration.html.erb:15
233
- msgid "Memory"
234
- msgstr "Mémoire"
235
-
236
- # translation auto-copied from project nautilus, version 3.8.2, document nautilus
237
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:13 ../app/views/compute_resources_vms/show/_docker.html.erb:26 ../app/views/containers/_list.html.erb:7 ../app/views/containers/show.html.erb:43
238
- msgid "Command"
239
- msgstr "Commande"
240
-
241
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
242
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:15
243
- msgid "Power ON this machine"
244
- msgstr "Démarrer cette machine"
245
-
246
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
247
- #: ../app/views/compute_resources_vms/form/_docker.html.erb:15
248
- msgid "Start"
249
- msgstr "Démarrer"
250
-
251
- # translation auto-copied from project Satellite6 Katello, version 6.1, document katello
252
- #: ../app/views/compute_resources_vms/index/_docker.html.erb:4 ../app/views/compute_resources_vms/show/_docker.html.erb:6 ../app/views/containers/_list.html.erb:4 ../app/views/containers/show.html.erb:11 ../app/views/registries/index.html.erb:8
253
- msgid "Name"
254
- msgstr "Nom"
255
-
256
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
257
- #: ../app/views/compute_resources_vms/index/_docker.html.erb:6
258
- msgid "CPUs"
259
- msgstr "CPU"
260
-
261
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
262
- #: ../app/views/compute_resources_vms/index/_docker.html.erb:8 ../app/views/containers/_list.html.erb:5
263
- msgid "Status"
264
- msgstr "Statut"
265
-
266
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
267
- #: ../app/views/compute_resources_vms/index/_docker.html.erb:9
268
- msgid "Power"
269
- msgstr "Alimentation"
270
-
271
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
272
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:4 ../app/views/containers/show.html.erb:9
273
- msgid "Properties"
274
- msgstr "Propriétés"
275
-
276
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
277
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:10 ../app/views/containers/show.html.erb:23
278
- msgid "IP Address"
279
- msgstr "Adresses IP"
280
-
281
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:14 ../app/views/containers/show.html.erb:27 ../app/views/containers/steps/configuration.html.erb:12
282
- msgid "CPU shares"
283
- msgstr "Partages de CPU"
284
-
285
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
286
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:18 ../app/views/containers/show.html.erb:35
287
- msgid "UUID"
288
- msgstr "UUID"
289
-
290
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:30 ../app/views/containers/show.html.erb:47
291
- msgid "Exposed ports"
292
- msgstr "Ports exposés"
293
-
294
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
295
- #: ../app/views/compute_resources_vms/show/_docker.html.erb:35 ../app/views/containers/_list.html.erb:9 ../app/views/containers/show.html.erb:89
296
- msgid "Running on"
297
- msgstr "Exécution sur"
298
-
299
- # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/database/StringResource
300
- #: ../app/views/containers/_list.html.erb:8
301
- msgid "Uptime"
302
- msgstr "Temps de fonctionnement"
303
-
304
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
305
- #: ../app/views/containers/_list.html.erb:10
306
- msgid "Managed"
307
- msgstr "Géré"
308
-
309
- #: ../app/views/containers/_list.html.erb:11
310
- msgid "Action"
311
- msgstr ""
312
-
313
- # translation auto-copied from project Customer Portal Translations, version RHJBossMiddlewareOperationsNetworkProduc, document RHJBossMiddlewareOperationsNetworkProductUpdate.html, author Corina Roe
314
- #: ../app/views/containers/_list.html.erb:27
315
- msgid "No"
316
- msgstr "Non"
317
-
318
- # translation auto-copied from project Customer Portal Translations, version RHJBossMiddlewareOperationsNetworkProduc, document RHJBossMiddlewareOperationsNetworkProductUpdate.html, author Corina Roe
319
- #: ../app/views/containers/_list.html.erb:27
320
- msgid "Yes"
321
- msgstr "Oui"
322
-
323
- #: ../app/views/containers/index.html.erb:1 ../lib/foreman_docker/engine.rb:47
324
- msgid "Containers"
325
- msgstr "Conteneurs"
326
-
327
- #: ../app/views/containers/index.html.erb:3 ../app/views/containers/steps/_title.html.erb:1 ../lib/foreman_docker/engine.rb:52
328
- msgid "New container"
329
- msgstr "Nouveau conteneur"
330
-
331
- #: ../app/views/containers/index.html.erb:27
332
- msgid "Error connecting with the compute resource: <strong> %s </strong>"
333
- msgstr "Une erreur s'est produite lors de la connexion à la ressource de calcul : <strong> %s </strong>"
334
-
335
- #: ../app/views/containers/show.html.erb:15
336
- msgid "Image Repository"
337
- msgstr "Référentiel image"
338
-
339
- #: ../app/views/containers/show.html.erb:19
340
- msgid "Image Tag"
341
- msgstr "Balise de l'image "
342
-
343
- #: ../app/views/containers/show.html.erb:31
344
- msgid "CPU set"
345
- msgstr ""
346
-
347
- #: ../app/views/containers/show.html.erb:61 ../app/views/containers/steps/environment.html.erb:16
348
- msgid "DNS"
349
- msgstr ""
350
-
351
- #: ../app/views/containers/show.html.erb:69
352
- msgid "Environment Variables"
353
- msgstr "Variables d'environnement"
354
-
355
- # translation auto-copied from project gnome-system-monitor, version 3.8.2.1, document gnome-system-monitor
356
- #: ../app/views/containers/show.html.erb:103
357
- msgid "Processes"
358
- msgstr "Processus"
359
-
360
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
361
- #: ../app/views/containers/show.html.erb:107
362
- msgid "Logs"
363
- msgstr "Logs"
364
-
365
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
366
- #: ../app/views/containers/show.html.erb:139
367
- msgid "Notice"
368
- msgstr "Note"
369
-
370
- #: ../app/views/containers/show.html.erb:141
371
- msgid "Your container is stopped."
372
- msgstr "Votre conteneur s'est arrêté"
373
-
374
- #: ../app/views/containers/show.html.erb:142
375
- msgid "Please turn on your container to see processes running, logs, and more."
376
- msgstr "Veuillez allumer votre conteneur pour voir les processus, journaux, etc."
377
-
378
- #: ../app/views/containers/show.html.erb:153
379
- msgid "Commit this container state"
380
- msgstr "Validez le statut de ce conteneur"
381
-
382
- #: ../app/views/containers/show.html.erb:160
383
- msgid "Repo"
384
- msgstr "Référentiel"
385
-
386
- #: ../app/views/containers/show.html.erb:162
387
- msgid "docker/my-committed-image"
388
- msgstr "docker/my-committed-image"
389
-
390
- # translation auto-copied from project shotwell-core, version 0.14.1, document shotwell-core
391
- #: ../app/views/containers/show.html.erb:165
392
- msgid "Tag"
393
- msgstr "Balise"
394
-
395
- #: ../app/views/containers/show.html.erb:167
396
- msgid "latest"
397
- msgstr "Dernière version"
398
-
399
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
400
- #: ../app/views/containers/show.html.erb:170
401
- msgid "Author"
402
- msgstr "Auteur"
403
-
404
- #: ../app/views/containers/show.html.erb:172
405
- msgid "Foreman user <foremaner@example.org>"
406
- msgstr ""
407
-
408
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
409
- #: ../app/views/containers/show.html.erb:175
410
- msgid "Comment"
411
- msgstr "Commentaire"
412
-
413
- #: ../app/views/containers/show.html.erb:177
414
- msgid "Description of the commit"
415
- msgstr "Description de la validation"
416
-
417
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
418
- #: ../app/views/containers/show.html.erb:180 ../app/views/containers/steps/_form_buttons.html.erb:4
419
- msgid "Cancel"
420
- msgstr "Annuler"
421
-
422
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
423
- #: ../app/views/containers/show.html.erb:182 ../app/views/containers/steps/_form_buttons.html.erb:14
424
- msgid "Submit"
425
- msgstr "Valider"
426
-
427
- # translation auto-copied from project Satellite6 Foreman Bootdisk, version 6.1, document foreman_bootdisk
428
- #: ../app/views/containers/steps/_form_buttons.html.erb:8
429
- msgid "Back"
430
- msgstr "Retour"
431
-
432
- # translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author Sam Friedmann
433
- #: ../app/views/containers/steps/_form_buttons.html.erb:16
434
- msgid "Next"
435
- msgstr "Suivant"
436
-
437
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
438
- #: ../app/views/containers/steps/_image_hub_tab.html.erb:15
439
- msgid "Search"
440
- msgstr "Rechercher"
441
-
442
- #: ../app/views/containers/steps/_image_hub_tab.html.erb:24
443
- msgid "Find your favorite container, e.g. centos"
444
- msgstr ""
445
-
446
- #: ../app/views/containers/steps/configuration.html.erb:3
447
- msgid "Basic options"
448
- msgstr "Options de base"
449
-
450
- #: ../app/views/containers/steps/configuration.html.erb:8
451
- msgid "Compute options"
452
- msgstr "Options de calcul"
453
-
454
- #: ../app/views/containers/steps/configuration.html.erb:9
455
- msgid "CPU sets"
456
- msgstr "Ensembles de CPU"
457
-
458
- #: ../app/views/containers/steps/configuration.html.erb:11
459
- msgid "learn more about CPU sets"
460
- msgstr "En savoir plus sur les ensembles de CPU"
461
-
462
- #: ../app/views/containers/steps/configuration.html.erb:14
463
- msgid "learn more about CPU shares"
464
- msgstr "En savoir plus sur les partages de CPU"
465
-
466
- # translation auto-copied from project RHEL Deployment Guide, version 6.2, document Managing_Users_and_Groups
467
- #: ../app/views/containers/steps/environment.html.erb:5
468
- msgid "Shell"
469
- msgstr "Shell"
470
-
471
- # translation auto-copied from project gnome-contacts, version 3.8.2, document gnome-contacts
472
- #: ../app/views/containers/steps/environment.html.erb:6
473
- msgid "TTY"
474
- msgstr "TTY"
475
-
476
- #: ../app/views/containers/steps/environment.html.erb:6
477
- msgid "Allocate a pseudo-tty"
478
- msgstr "Attribuez un pseudo-tty"
479
-
480
- #: ../app/views/containers/steps/environment.html.erb:7
481
- msgid "Attach STDIN"
482
- msgstr "Joindre STDIN"
483
-
484
- #: ../app/views/containers/steps/environment.html.erb:8
485
- msgid "Attach STDOUT"
486
- msgstr "Joindre STDOUT"
487
-
488
- #: ../app/views/containers/steps/environment.html.erb:9
489
- msgid "Attach STDERR"
490
- msgstr "Joindre STDERR"
491
-
492
- #: ../app/views/containers/steps/environment.html.erb:12
493
- msgid "Environment variables"
494
- msgstr "Variables d'environnement"
495
-
496
- #: ../app/views/containers/steps/environment.html.erb:14
497
- msgid "Exposed Ports"
498
- msgstr ""
499
-
500
- #: ../app/views/containers/steps/environment.html.erb:22
501
- msgid "Run?"
502
- msgstr ""
503
-
504
- #: ../app/views/containers/steps/environment.html.erb:23
505
- msgid "If selected, the container will start after it is created"
506
- msgstr ""
507
-
508
- #: ../app/views/containers/steps/image.html.erb:9
509
- msgid "Content View"
510
- msgstr ""
511
-
512
- #: ../app/views/containers/steps/image.html.erb:15
513
- msgid "Docker hub"
514
- msgstr "Docker hub"
515
-
516
- #: ../app/views/containers/steps/image.html.erb:19
517
- msgid "External registry"
518
- msgstr "Registre externe"
519
-
520
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
521
- #: ../app/views/containers/steps/preliminary.html.erb:6
522
- msgid "Compute resource"
523
- msgstr "Ressource de calcul"
524
-
525
- #: ../app/views/containers/steps/preliminary.html.erb:19
526
- msgid "Resource selection"
527
- msgstr "Sélection de ressource"
528
-
529
- #: ../app/views/containers/steps/preliminary.html.erb:20
530
- msgid "Where do you want to deploy your container?:"
531
- msgstr "Où souhaitez-vous déployer votre conteneur ?"
532
-
533
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
534
- #: ../app/views/containers/steps/preliminary.html.erb:22
535
- msgid "Deploy on"
536
- msgstr "Déployer sur"
537
-
538
- #: ../app/views/containers/steps/preliminary.html.erb:25
539
- msgid "You need a Docker compute resource in order to create containers. Please %s and try again."
540
- msgstr "Une ressource de calcul Docker est nécessaire pour créer des conteneurs. Veuillez %s et essayer à nouveau."
541
-
542
- #: ../app/views/foreman_docker/common_parameters/_dns.erb:8
543
- msgid "Add DNS"
544
- msgstr ""
545
-
546
- #: ../app/views/foreman_docker/common_parameters/_dns_entry.html.erb:3
547
- msgid "DNS e.g. 8.8.8.8"
548
- msgstr ""
549
-
550
- #: ../app/views/foreman_docker/common_parameters/_environment_variable.html.erb:3
551
- msgid "Name, e.g. PING_HOST"
552
- msgstr ""
553
-
554
- #: ../app/views/foreman_docker/common_parameters/_environment_variable.html.erb:5
555
- msgid "Value, e.g. example.org"
556
- msgstr ""
557
-
558
- #: ../app/views/foreman_docker/common_parameters/_environment_variables.html.erb:8
559
- msgid "Add environment variable"
560
- msgstr "Ajouter une variable d'environnement"
561
-
562
- #: ../app/views/foreman_docker/common_parameters/_exposed_port.html.erb:3
563
- msgid "Port number e.g. 22"
564
- msgstr ""
565
-
566
- #: ../app/views/foreman_docker/common_parameters/_exposed_ports.erb:8
567
- msgid "Add Exposed Port"
568
- msgstr ""
569
-
570
- #: ../app/views/images/form/_docker.html.erb:1
571
- msgid "The user that is used to ssh into the instance, normally docker-user, ubuntu, root etc"
572
- msgstr "L'utilisateur servant à se connecter en ssh à l'instance, généralement docker-user, ubuntu, root, etc"
573
-
574
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
575
- #: ../app/views/images/form/_docker.html.erb:2
576
- msgid "Password to authenticate with - used for SSH finish step."
577
- msgstr "Mot de passe pour l'authentification SSH lors de l'étape finale."
578
-
579
- #: ../app/views/images/form/_docker.html.erb:4
580
- msgid "Does this image support user data input?"
581
- msgstr "Cette image prend-t-elle en charge l'entrée de paramètres utilisateur ?"
582
-
583
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
584
- #: ../app/views/registries/_form.html.erb:6
585
- msgid "Locations"
586
- msgstr "Emplacements"
587
-
588
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
589
- #: ../app/views/registries/_form.html.erb:9
590
- msgid "Organizations"
591
- msgstr "Organisations"
592
-
593
- #: ../app/views/registries/_form.html.erb:17
594
- msgid "Description of the registry"
595
- msgstr ""
596
-
597
- #: ../app/views/registries/_form.html.erb:18
598
- msgid "Username used to access the registry"
599
- msgstr "Nom d'utilisateur utilisé pour accéder au registre"
600
-
601
- #: ../app/views/registries/_form.html.erb:19
602
- msgid "Password used for authentication to the registry"
603
- msgstr "Mot de passe utilisé pour une authentification au registre"
604
-
605
- #: ../app/views/registries/edit.html.erb:1
606
- msgid "Edit Registry"
607
- msgstr "Modifier le registre"
608
-
609
- #: ../app/views/registries/index.html.erb:1 ../lib/foreman_docker/engine.rb:55
610
- msgid "Registries"
611
- msgstr "Registres"
612
-
613
- #: ../app/views/registries/index.html.erb:3
614
- msgid "New registry"
615
- msgstr ""
616
-
617
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
618
- #: ../app/views/registries/index.html.erb:10
619
- msgid "Description"
620
- msgstr "Description"
621
-
622
- #: ../app/views/registries/index.html.erb:11
623
- msgid "Actions"
624
- msgstr ""
625
-
626
- #: ../app/views/registries/new.html.erb:1
627
- msgid "New Registry"
628
- msgstr "Nouveau registre"
629
-
630
- #: ../lib/foreman_docker/engine.rb:49
631
- msgid "All containers"
632
- msgstr "Tous les conteneurs"