foreman-tasks 1.1.3 → 2.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +2 -0
  3. data/README.md +2 -0
  4. data/app/controllers/foreman_tasks/api/tasks_controller.rb +33 -1
  5. data/app/controllers/foreman_tasks/tasks_controller.rb +9 -14
  6. data/app/lib/actions/proxy_action.rb +1 -1
  7. data/app/models/foreman_tasks/recurring_logic.rb +3 -3
  8. data/app/models/foreman_tasks/task.rb +4 -0
  9. data/app/models/foreman_tasks/task/dynflow_task.rb +3 -1
  10. data/app/models/setting/foreman_tasks.rb +1 -1
  11. data/app/services/ui_notifications/tasks/task_bulk_stop.rb +36 -0
  12. data/app/views/foreman_tasks/api/tasks/details.json.rabl +0 -1
  13. data/app/views/foreman_tasks/api/tasks/show.json.rabl +2 -0
  14. data/config/routes.rb +1 -0
  15. data/db/migrate/20200517215015_rename_bookmarks_controller.rb +35 -0
  16. data/db/migrate/20200519093217_drop_dynflow_allow_dangerous_actions_setting.foreman_tasks.rb +5 -0
  17. data/db/migrate/20200611090846_add_task_lock_index_on_resource_type_and_task_id.rb +1 -1
  18. data/db/seeds.d/30-notification_blueprints.rb +7 -0
  19. data/lib/foreman_tasks/engine.rb +2 -7
  20. data/lib/foreman_tasks/version.rb +1 -1
  21. data/locale/action_names.rb +1 -1
  22. data/locale/en/LC_MESSAGES/foreman_tasks.mo +0 -0
  23. data/locale/en/foreman_tasks.po +270 -54
  24. data/locale/foreman_tasks.pot +630 -292
  25. data/locale/fr/LC_MESSAGES/foreman_tasks.mo +0 -0
  26. data/locale/fr/foreman_tasks.po +817 -0
  27. data/locale/ja/LC_MESSAGES/foreman_tasks.mo +0 -0
  28. data/locale/ja/foreman_tasks.po +817 -0
  29. data/locale/zh_CN/LC_MESSAGES/foreman_tasks.mo +0 -0
  30. data/locale/zh_CN/foreman_tasks.po +816 -0
  31. data/package.json +1 -0
  32. data/script/npm_link_foreman_js.sh +26 -0
  33. data/test/unit/recurring_logic_test.rb +6 -0
  34. data/webpack/ForemanTasks/Components/TaskActions/TaskAction.test.js +60 -0
  35. data/webpack/ForemanTasks/Components/{TasksTable/TasksTableActionHelpers.js → TaskActions/TaskActionHelpers.js} +21 -6
  36. data/webpack/ForemanTasks/Components/{TasksTable/__tests__/TasksTableActionHelpers.test.js → TaskActions/TaskActionHelpers.test.js} +2 -2
  37. data/webpack/ForemanTasks/Components/TaskActions/TaskActionsConstants.js +16 -0
  38. data/webpack/ForemanTasks/Components/TaskActions/UnlockModals.js +60 -0
  39. data/webpack/ForemanTasks/Components/TaskActions/UnlockModals.test.js +14 -0
  40. data/webpack/ForemanTasks/Components/TaskActions/__snapshots__/TaskAction.test.js.snap +233 -0
  41. data/webpack/ForemanTasks/Components/TaskActions/__snapshots__/UnlockModals.test.js.snap +25 -0
  42. data/webpack/ForemanTasks/Components/TaskActions/index.js +115 -0
  43. data/webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js +17 -3
  44. data/webpack/ForemanTasks/Components/TaskDetails/Components/Task.js +149 -167
  45. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/RunningSteps.test.js +8 -1
  46. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Task.test.js +68 -3
  47. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/TaskInfo.test.js +0 -1
  48. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/RunningSteps.test.js.snap +1 -1
  49. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Task.test.js.snap +124 -76
  50. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js +35 -5
  51. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetails.scss +3 -14
  52. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js +40 -16
  53. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsConstants.js +3 -4
  54. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsReducer.js +0 -6
  55. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsSelectors.js +4 -10
  56. data/webpack/ForemanTasks/Components/TaskDetails/TasksDetailsHelper.js +6 -1
  57. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetails.fixtures.js +8 -0
  58. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetails.test.js +7 -1
  59. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetailsActions.test.js +18 -2
  60. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetails.test.js.snap +30 -13
  61. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetailsActions.test.js.snap +91 -0
  62. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/integration.test.js +13 -4
  63. data/webpack/ForemanTasks/Components/TaskDetails/index.js +6 -8
  64. data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardActions.js +1 -1
  65. data/webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardActions.test.js +2 -2
  66. data/webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js +14 -1
  67. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModal.js +83 -0
  68. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalActions.js +106 -0
  69. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalReducer.js +38 -0
  70. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalSelectors.js +46 -0
  71. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModal.test.js +36 -0
  72. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalActions.test.js +205 -0
  73. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalReducer.test.js +27 -0
  74. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalSelectors.test.js +55 -0
  75. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModal.test.js.snap +41 -0
  76. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModalReducer.test.js.snap +19 -0
  77. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModalSelectors.test.js.snap +32 -0
  78. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js +29 -0
  79. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/ActionSelectButton.test.js +1 -0
  80. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ActionSelectButton.test.js.snap +11 -0
  81. data/webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js +135 -35
  82. data/webpack/ForemanTasks/Components/TasksTable/TasksTable.js +13 -9
  83. data/webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js +26 -66
  84. data/webpack/ForemanTasks/Components/TasksTable/TasksTableConstants.js +10 -12
  85. data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js +30 -96
  86. data/webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js +2 -2
  87. data/webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js +8 -4
  88. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksBulkActions.test.js +50 -2
  89. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.fixtures.js +3 -12
  90. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActions.test.js +22 -26
  91. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTablePage.test.js +2 -1
  92. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/SubTasksPage.test.js.snap +3 -14
  93. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksBulkActions.test.js.snap +155 -0
  94. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksIndexPage.test.js.snap +3 -14
  95. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableActions.test.js.snap +17 -124
  96. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTablePage.test.js.snap +63 -133
  97. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionCellFormatter.test.js.snap +1 -0
  98. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionCellFormatter.test.js.snap +2 -0
  99. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionCellFormatter.test.js +1 -1
  100. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionCellFormatter.test.js +1 -1
  101. data/webpack/ForemanTasks/Components/TasksTable/formatters/actionCellFormatter.js +10 -7
  102. data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js +7 -0
  103. data/webpack/ForemanTasks/Components/TasksTable/index.js +2 -2
  104. data/webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js +55 -19
  105. data/webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.test.js +75 -19
  106. data/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap +88 -21
  107. data/webpack/ForemanTasks/Components/common/ClickConfirmation/ClickConfirmation.scss +9 -0
  108. data/webpack/ForemanTasks/Components/common/ClickConfirmation/ClickConfirmation.test.js +44 -0
  109. data/webpack/ForemanTasks/Components/common/ClickConfirmation/__snapshots__/ClickConfirmation.test.js.snap +52 -0
  110. data/webpack/ForemanTasks/Components/common/ClickConfirmation/index.js +59 -66
  111. data/webpack/ForemanTasks/Components/common/{ToastTypesConstants.js → ToastsHelpers/ToastTypesConstants.js} +0 -0
  112. data/webpack/ForemanTasks/Components/common/ToastsHelpers/index.js +15 -0
  113. data/webpack/ForemanTasks/ForemanTasksReducers.js +2 -0
  114. data/webpack/ForemanTasks/Routes/ForemanTasksRoutes.test.js +2 -1
  115. data/webpack/__mocks__/foremanReact/components/ForemanModal/ForemanModalHooks.js +2 -2
  116. data/webpack/__mocks__/foremanReact/components/ForemanModal/index.js +17 -3
  117. data/webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js +3 -0
  118. data/webpack/__mocks__/foremanReact/{API.js → redux/API.js} +1 -1
  119. metadata +45 -25
  120. data/webpack/ForemanTasks/Components/TasksTable/Components/CancelConfirm.js +0 -53
  121. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmationModals.js +0 -56
  122. data/webpack/ForemanTasks/Components/TasksTable/Components/ResumeConfirm.js +0 -52
  123. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/CancelConfirm.test.js +0 -26
  124. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/ConfirmationModals.test.js +0 -24
  125. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/ResumeConfirm.test.js +0 -26
  126. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/CancelConfirm.test.js.snap +0 -65
  127. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ConfirmationModals.test.js.snap +0 -30
  128. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ResumeConfirm.test.js.snap +0 -63
  129. data/webpack/ForemanTasks/Components/common/ActionButtons/CancelButton.js +0 -23
  130. data/webpack/ForemanTasks/Components/common/ActionButtons/CancelButton.test.js +0 -26
  131. data/webpack/ForemanTasks/Components/common/ActionButtons/ResumeButton.js +0 -23
  132. data/webpack/ForemanTasks/Components/common/ActionButtons/ResumeButton.test.js +0 -27
  133. data/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/CancelButton.test.js.snap +0 -15
  134. data/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ResumeButton.test.js.snap +0 -15
@@ -0,0 +1,817 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_tasks package.
4
+ #
5
+ # Translators:
6
+ # Baptiste Agasse <baptiste.agasse@gmail.com>, 2018-2019
7
+ # Claer <transiblu@claer.hammock.fr>, 2016
8
+ msgid ""
9
+ msgstr ""
10
+ "Project-Id-Version: foreman_tasks 0.3.4\n"
11
+ "Report-Msgid-Bugs-To: \n"
12
+ "PO-Revision-Date: 2020-06-22 15:15+0000\n"
13
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
14
+ "Language-Team: French (http://www.transifex.com/foreman/foreman/language/fr/)\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Language: fr\n"
19
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
20
+
21
+ msgid "${taskReload ? 'Stop' : 'Start'} auto-reloading"
22
+ msgstr "${taskReload ? 'Stop' : 'Start'} auto-rechargement"
23
+
24
+ msgid "%(last)s Last %(time)s"
25
+ msgstr "%(last)s Derniers %(time)"
26
+
27
+ msgid "%(older)s Older %(time)s"
28
+ msgstr "%(older)s Plus anciens %(time)s"
29
+
30
+ msgid "%s Selected Tasks"
31
+ msgstr ""
32
+
33
+ msgid "%s is not valid format of cron line"
34
+ msgstr "%s n'est pas un format valide de ligne cron"
35
+
36
+ msgid "%{total} task(s), %{success} success, %{failed} fail"
37
+ msgstr "%{total} tâche(s), %{success} succès, %{failed} échec"
38
+
39
+ msgid "%{value} is not allowed input type"
40
+ msgstr "%{value} n'a pas droit au type d'entrée"
41
+
42
+ msgid "%{value} is not allowed triggering mode"
43
+ msgstr "%{value} n'a pas droit au mode de déclenchement"
44
+
45
+ msgid "%{value} is wrong format"
46
+ msgstr "%{value} est au mauvais format"
47
+
48
+ msgid "12h"
49
+ msgstr "12h"
50
+
51
+ msgid "24h"
52
+ msgstr "24h"
53
+
54
+ msgid ":after setting in tasks cleanup section is deprecated, use :after in :rules section to set the value. to cleanup rules"
55
+ msgstr "Le paramètre :after dans la section de nettoyage des tâches est obsolète. Utilisez :after dans la section :rules afin de définir la valeur pour nettoyer les règles"
56
+
57
+ msgid "A paused task represents a process that has not finished properly. Any task in paused state can lead to potential inconsistency and needs to be resolved."
58
+ msgstr "Une tâche en pause représente un processus qui ne s'est pas terminé correctement. Toute tâche en état de pause peut entraîner une incohérence potentielle et doit être résolue."
59
+
60
+ msgid "Action"
61
+ msgstr "Action"
62
+
63
+ msgid "Action with sub plans"
64
+ msgstr "Action avec sous-plans"
65
+
66
+ msgid "Active"
67
+ msgstr "Actif"
68
+
69
+ msgid "Active Filters:"
70
+ msgstr "Filtres actifs :"
71
+
72
+ msgid "All %s tasks are selected. "
73
+ msgstr "Toutes les tâches %s sont sélectionnées. "
74
+
75
+ msgid "All proxies with the required feature are unavailable at the moment"
76
+ msgstr "Les proxys possédant les fonctionnalités demandées ne sont pas disponibles actuellement"
77
+
78
+ msgid "Allow triggering tasks on the smart proxy in batches"
79
+ msgstr "Permettre le déclenchement de tâches sur le proxy smart par lots"
80
+
81
+ msgid "Associated resources"
82
+ msgstr "Ressources associées"
83
+
84
+ #. TRANSLATORS: Time widget for when a task should start
85
+ msgid "At"
86
+ msgstr "À"
87
+
88
+ msgid "Back to tasks"
89
+ msgstr "Retour aux tâches"
90
+
91
+ msgid "Backtrace"
92
+ msgstr "Backtrace"
93
+
94
+ msgid "Bulk action"
95
+ msgstr "Actions par lots"
96
+
97
+ msgid "Cancel"
98
+ msgstr "Annuler"
99
+
100
+ msgid "Cancel Selected"
101
+ msgstr "Annuler la sélection"
102
+
103
+ msgid "Cancel all cancellable tasks"
104
+ msgstr "Annuler toutes les tâches annulables"
105
+
106
+ msgid "Cancel enforced: the task might be still running on the proxy"
107
+ msgstr "Annulation forcée : la tâche peut-être en cours d'exécution sur le proxy"
108
+
109
+ msgid "Cancel recurring logic"
110
+ msgstr "Annuler la logique récurrente"
111
+
112
+ msgid "Cancel selected tasks"
113
+ msgstr "Annuler des tâches sélectionnées"
114
+
115
+ msgid "Cancel specific tasks by ID"
116
+ msgstr "Annuler les tâches spécifiques par ID"
117
+
118
+ msgid "Cancel tasks matching search string"
119
+ msgstr "Annuler toutes le tâches correspondant à a chaîne de recherche"
120
+
121
+ msgid "Canceling selected tasks, this might take a while"
122
+ msgstr "Annulation de certaines tâches. Cela peut prendre un certain temps"
123
+
124
+ msgid "Canceling with force selected tasks, this might take a while"
125
+ msgstr ""
126
+
127
+ msgid "Cancelled"
128
+ msgstr "Annulé"
129
+
130
+ msgid "Cannot cancel tasks at the moment"
131
+ msgstr "Ne peut pas annuler les tâches pour le moment"
132
+
133
+ msgid "Cannot force cancel tasks at the moment"
134
+ msgstr ""
135
+
136
+ msgid "Cannot resume tasks at the moment"
137
+ msgstr "Ne peut pas reprendre les tâches pour le moment"
138
+
139
+ msgid "Cannot update a cancelled Recurring Logic."
140
+ msgstr "Impossible de mettre à jour une logique récurrente annulée."
141
+
142
+ msgid "Changing request id %{request_id} to saved id %{saved_id}"
143
+ msgstr "Changement de l'id de la demande %{request_id} en id enregistré %{saved_id}"
144
+
145
+ msgid "Clear All Filters"
146
+ msgstr "Afficher tous les filtres"
147
+
148
+ msgid "Clear Cancelled"
149
+ msgstr "Suppression des Annulées"
150
+
151
+ msgid "Complete"
152
+ msgstr "Terminé"
153
+
154
+ msgid "Conflicts with tasks:"
155
+ msgstr "Conflits avec les tâches :"
156
+
157
+ msgid "Could not cancel step."
158
+ msgstr ""
159
+
160
+ msgid "Could not receive data: ${error && error.message}"
161
+ msgstr "Impossible de recevoir les données : ${error && error.message}"
162
+
163
+ msgid "Cron line"
164
+ msgstr "Ligne de cron"
165
+
166
+ msgid "Cron line format 'a b c d e', where: %s"
167
+ msgstr "Format de ligne cron 'a b c d' avec : %s"
168
+
169
+ msgid "Current iteration"
170
+ msgstr "Itération actuelle"
171
+
172
+ msgid "Data to be sent to the action"
173
+ msgstr "Données à envoyer à l'action"
174
+
175
+ msgid "Days"
176
+ msgstr "Jours"
177
+
178
+ msgid "Days of week"
179
+ msgstr "Jours de la semaine"
180
+
181
+ msgid "Delayed"
182
+ msgstr "Retardé"
183
+
184
+ msgid "Delete recurring logics by search query"
185
+ msgstr "Supprimer les logiques récurrentes par requête de recherche"
186
+
187
+ msgid "Details"
188
+ msgstr "Détails"
189
+
190
+ msgid "Details of %s task"
191
+ msgstr "Détails de la tâche %s"
192
+
193
+ msgid "Disable"
194
+ msgstr "Désactiver"
195
+
196
+ msgid "Disabled"
197
+ msgstr "Désactivé"
198
+
199
+ msgid "Duration"
200
+ msgstr "Durée"
201
+
202
+ msgid "Dynflow console"
203
+ msgstr "Console Dynflow"
204
+
205
+ msgid "Empty bulk action"
206
+ msgstr "Action par lot vide"
207
+
208
+ msgid "Enable"
209
+ msgstr "Activer"
210
+
211
+ msgid "Enable the dynflow console (/foreman_tasks/dynflow) for debugging"
212
+ msgstr "Active la console dynflow (/foreman_tasks/dynflow) pour le déboggage"
213
+
214
+ msgid "Ends"
215
+ msgstr "Se termine"
216
+
217
+ msgid "Ends at"
218
+ msgstr "Se termine à"
219
+
220
+ msgid "Errors"
221
+ msgstr "Erreurs"
222
+
223
+ msgid "Errors:"
224
+ msgstr "Erreurs :"
225
+
226
+ msgid "Event delivered by request %{request_id}"
227
+ msgstr "Événement livré sur demande %{request_id}"
228
+
229
+ msgid "Exception"
230
+ msgstr "Exception"
231
+
232
+ msgid "Execute now"
233
+ msgstr "Exécuter maintenant"
234
+
235
+ msgid "Execution plan data not available "
236
+ msgstr "Données du plan d'exécution non disponibles"
237
+
238
+ msgid "Export All"
239
+ msgstr "Tout Exporter"
240
+
241
+ msgid "External Id"
242
+ msgstr "Id Externe"
243
+
244
+ msgid "Failed to check on tasks on proxy at %{url}: %{exception}"
245
+ msgstr "N'a pu vérifier les tâches du proxy à %{url}: %{exception}"
246
+
247
+ msgid "Failed to initialize"
248
+ msgstr "L'initialisation a échoué"
249
+
250
+ msgid "Field to sort the results on"
251
+ msgstr "Champs dans lequel trier les résultats"
252
+
253
+ msgid "Finished"
254
+ msgstr "Terminé"
255
+
256
+ msgid "Force Cancel"
257
+ msgstr ""
258
+
259
+ msgid "Force Cancel Selected"
260
+ msgstr ""
261
+
262
+ msgid "Force Cancel selected tasks"
263
+ msgstr ""
264
+
265
+ msgid "Force Unlock"
266
+ msgstr "Forcer le déverrouillage"
267
+
268
+ msgid "Foreman Tasks"
269
+ msgstr "Tâches Foreman"
270
+
271
+ msgid "Fri"
272
+ msgstr "Ven."
273
+
274
+ msgid "Hash version of 'order' param"
275
+ msgstr "Version Hash des paramètres d'« ordre »"
276
+
277
+ msgid "How to order the sorted results (e.g. ASC for ascending)"
278
+ msgstr "Comment classer les résultats triés (ex : ASC for ascending ou CRO pour croissant)"
279
+
280
+ msgid "ID"
281
+ msgstr "ID"
282
+
283
+ msgid "Id"
284
+ msgstr "Id"
285
+
286
+ msgid "Immediate"
287
+ msgstr "Immédiat"
288
+
289
+ msgid "Import Puppet classes"
290
+ msgstr "Importer des classes Puppet"
291
+
292
+ msgid "Import facts"
293
+ msgstr "Importer des faits"
294
+
295
+ msgid "Indicates that the action should be cancelled if it cannot be started before this time."
296
+ msgstr "Indique si l'action doit être annulée si elle ne peut commencer à ce moment là."
297
+
298
+ msgid "Initialization error: %s"
299
+ msgstr "Érreur d'initialisation : %s"
300
+
301
+ msgid "Input"
302
+ msgstr "Entrée"
303
+
304
+ msgid "Iteration limit"
305
+ msgstr "Limite de l'itération"
306
+
307
+ msgid "Label"
308
+ msgstr "Étiquette"
309
+
310
+ msgid "Last occurrence"
311
+ msgstr "Dernière occurence"
312
+
313
+ msgid "Last start time"
314
+ msgstr "Heure du dernier démarrage"
315
+
316
+ msgid "Latest Warning/Error Tasks"
317
+ msgstr "Dernier avertissement / Erreur Tâche"
318
+
319
+ msgid "Less than a second"
320
+ msgstr "Moins d'une seconde"
321
+
322
+ msgid "List of tasks"
323
+ msgstr "Liste des tâches"
324
+
325
+ msgid "List recurring logics"
326
+ msgstr "Lister les logiques récurrentes"
327
+
328
+ msgid "List tasks"
329
+ msgstr "Lister les tâches"
330
+
331
+ msgid "Locks"
332
+ msgstr "Verrous"
333
+
334
+ msgid "Mon"
335
+ msgstr "Lun."
336
+
337
+ msgid "More than"
338
+ msgstr "Plus de"
339
+
340
+ msgid "N/A"
341
+ msgstr "Sans objet"
342
+
343
+ msgid "Name"
344
+ msgstr "Nom"
345
+
346
+ msgid "Never"
347
+ msgstr "Jamais"
348
+
349
+ msgid "Next occurrence"
350
+ msgstr "Prochaine occurence"
351
+
352
+ msgid "No"
353
+ msgstr "Non"
354
+
355
+ msgid "No Tasks"
356
+ msgstr "Aucune Tâche"
357
+
358
+ msgid "No errors"
359
+ msgstr "Aucune erreur"
360
+
361
+ msgid "No proxy defined for execution"
362
+ msgstr "Aucun proxy Puppet défini pour l'exécution"
363
+
364
+ msgid "No running steps"
365
+ msgstr "Aucune étape en cours"
366
+
367
+ msgid "No start or end dates"
368
+ msgstr "Pas de date de début ou de fin"
369
+
370
+ msgid "No task could be started"
371
+ msgstr "Aucune tâche n'a pu démarrer"
372
+
373
+ msgid "No. of Tasks"
374
+ msgstr "No. de tâches"
375
+
376
+ msgid "Not all the selected tasks can be cancelled"
377
+ msgstr "Toutes les tâches sélectionnées ne peuvent pas être annulées"
378
+
379
+ msgid "Not all the selected tasks can be resumed"
380
+ msgstr "Toutes les tâches sélectionnées ne peuvent pas être reprises"
381
+
382
+ msgid "Number of attempts to start a task on the smart proxy before failing"
383
+ msgstr "Nombre de tentatives de démarrage d'une tâche sur le smart proxy avant un échec"
384
+
385
+ msgid "Number of results per page to return"
386
+ msgstr "Nombre de résultats par page à renvoyer"
387
+
388
+ msgid "Number of seconds to wait for synchronous task to finish."
389
+ msgstr "Nombre de secondes à attendre avant qu'une tâche synchrone soit terminée."
390
+
391
+ msgid "Number of tasks which should be sent to the smart proxy in one request, if foreman_tasks_proxy_batch_trigger is enabled"
392
+ msgstr "Nombre de tâches qui doivent être envoyées au proxy smart en une seule requête, si le foreman_tasks_proxy_batch_trigger est activé"
393
+
394
+ #. TRANSLATORS: Button text for saying when a task should end
395
+ msgid "On"
396
+ msgstr "Activé"
397
+
398
+ msgid "Operation"
399
+ msgstr "Opération"
400
+
401
+ msgid "Output"
402
+ msgstr "Sortie"
403
+
404
+ msgid "Output:"
405
+ msgstr "Sortie :"
406
+
407
+ msgid "Page number, starting at 1"
408
+ msgstr "Numéro de la page, commençant par 1"
409
+
410
+ msgid "Parent task"
411
+ msgstr "Tâche parente"
412
+
413
+ msgid "Paused"
414
+ msgstr "Suspendue"
415
+
416
+ msgid "Please inspect their state, fix their errors and resume them."
417
+ msgstr "Veuillez inspecter leur état, corriger leurs erreurs et les reprendre."
418
+
419
+ msgid "Please provide a search parameter in the request"
420
+ msgstr "Veuillez indiquer un paramètre de recherche dans la demande"
421
+
422
+ msgid "Please provide at least one of search or task_ids parameters in the request"
423
+ msgstr "Veuillez fournir au moins un des paramètres de recherche ou de task_ids dans la demande"
424
+
425
+ msgid "Polling intervals multiplier"
426
+ msgstr "Multiplicateur des intervalles de sondage"
427
+
428
+ msgid "Polling multiplier which is used to multiply the default polling intervals. This can be used to prevent polling too frequently for long running tasks."
429
+ msgstr "Multiplicateur de sondage qui est utilisé pour multiplier les intervalles de sondage par défaut. Il peut être utilisé pour éviter que les sondages ne soient trop fréquents pour des tâches de longue durée."
430
+
431
+ msgid "Proxy task gone missing from the smart proxy"
432
+ msgstr "Tâches de proxy manquantes du smart proxy"
433
+
434
+ msgid "Raw"
435
+ msgstr "Brut"
436
+
437
+ msgid "Raw input"
438
+ msgstr "Entrée brut"
439
+
440
+ msgid "Raw output"
441
+ msgstr "Sortie brute"
442
+
443
+ msgid "Recurring Logics"
444
+ msgstr "Logiques récurrentes"
445
+
446
+ msgid "Recurring logic"
447
+ msgstr "Logique récurrente"
448
+
449
+ msgid "Recurring logics"
450
+ msgstr "Logiques périodiques"
451
+
452
+ msgid "Repeat N times"
453
+ msgstr "Répéter N fois"
454
+
455
+ msgid "Repeat until"
456
+ msgstr "Répéter jusqu'à"
457
+
458
+ msgid "Repeats"
459
+ msgstr "Répétitions"
460
+
461
+ msgid "Require user to be authenticated as user with admin rights when accessing dynflow console"
462
+ msgstr "Exige que l'utilisateur soir authentifié en tant qu'utilisateur avec un accès admin pour accéder à la concole dynflow"
463
+
464
+ msgid "Required lock is already taken by other running tasks."
465
+ msgstr "Le verrouillage requis est déjà utilisé par d'autres tâches en cours."
466
+
467
+ msgid "Required lock: %s"
468
+ msgstr "Verrouillage requis : %s"
469
+
470
+ msgid "Resource search_params requires resource_type and resource_id to be specified"
471
+ msgstr "Ressource search_params a besoin que resource_type et resource_id soient spécifiés"
472
+
473
+ msgid "Result"
474
+ msgstr "Résultat"
475
+
476
+ msgid "Resume"
477
+ msgstr "Continuez"
478
+
479
+ msgid "Resume Selected"
480
+ msgstr "Reprendre Sélectionné"
481
+
482
+ msgid "Resume all paused error tasks"
483
+ msgstr "Reprendre toutes les tâches en attente avec des erreurs"
484
+
485
+ msgid "Resume selected tasks"
486
+ msgstr "Reprendre les tâches sélectionnées"
487
+
488
+ msgid "Resume specific tasks by ID"
489
+ msgstr "Reprendre les tâches spécifiques par ID"
490
+
491
+ msgid "Resume tasks matching search string"
492
+ msgstr "Reprendre toutes le tâches correspondant au string de recherche"
493
+
494
+ msgid "Resuming selected tasks, this might take a while"
495
+ msgstr "Reprendre certaines tâches. Cela peut prendre un certain temps"
496
+
497
+ msgid "Running"
498
+ msgstr "Exécution en cours"
499
+
500
+ msgid "Running Steps"
501
+ msgstr "Étapes en cours"
502
+
503
+ msgid "Sat"
504
+ msgstr "Sam."
505
+
506
+ msgid "Schedule"
507
+ msgstr "Programmer"
508
+
509
+ msgid "Schedule future execution"
510
+ msgstr "Programmer une exécution prochaine"
511
+
512
+ msgid "Scheduled"
513
+ msgstr "Prévu"
514
+
515
+ msgid "Search query"
516
+ msgstr "Requête de recherche"
517
+
518
+ msgid "Search string"
519
+ msgstr "Rechercher une chaîne"
520
+
521
+ msgid "See %{link} for more details on how to resolve the issue"
522
+ msgstr "Voir %{link} pour plus de détails sur la manière de résoudre le problème"
523
+
524
+ msgid "Select Action"
525
+ msgstr "Choisir l'action"
526
+
527
+ msgid "Select All"
528
+ msgstr "Tout sélectionner"
529
+
530
+ msgid "Select row"
531
+ msgstr "Tout sélectionner"
532
+
533
+ msgid "Send data to the task from external executor (such as smart_proxy_dynflow)"
534
+ msgstr "Envoie les données à la tâche à partir d'un exécuteur exérieur (tel que smart_proxy_dynflow)"
535
+
536
+ msgid "Set up recurring execution"
537
+ msgstr "Mettre en place une exécution périodique"
538
+
539
+ msgid "Show recurring logic details"
540
+ msgstr "Afficher les détails des logiques récurrentes"
541
+
542
+ msgid "Sort field and order, e.g. 'name DESC'"
543
+ msgstr "Trier le champ et l'ordre, ex : 'name DESC'"
544
+
545
+ msgid "Start at"
546
+ msgstr "Démarre à"
547
+
548
+ msgid "Start before"
549
+ msgstr "Démarre avant"
550
+
551
+ msgid "Started"
552
+ msgstr "Démarré"
553
+
554
+ msgid "Started at"
555
+ msgstr "Démarré à"
556
+
557
+ msgid "State"
558
+ msgstr "État"
559
+
560
+ msgid "Step Canceled"
561
+ msgstr ""
562
+
563
+ msgid "Stop all stoppable tasks"
564
+ msgstr ""
565
+
566
+ msgid "Stop specific tasks by ID"
567
+ msgstr ""
568
+
569
+ msgid "Stop tasks matching search string"
570
+ msgstr ""
571
+
572
+ msgid "Stopped"
573
+ msgstr "Arrêté"
574
+
575
+ msgid "Sub tasks"
576
+ msgstr "Sous-tâches"
577
+
578
+ msgid "Sub tasks of %s"
579
+ msgstr "Sous-tâches de %s"
580
+
581
+ msgid "Sun"
582
+ msgstr "Dim."
583
+
584
+ msgid "Task"
585
+ msgstr "Tâche"
586
+
587
+ msgid "Task Details"
588
+ msgstr "Détails de la tâche"
589
+
590
+ msgid "Task Status"
591
+ msgstr "Statut de la tâche"
592
+
593
+ msgid "Task aborted: the task might be still running on the proxy"
594
+ msgstr "Tâche abandonnée : la tâche peut être encore en cours d'exécution sur le proxy"
595
+
596
+ msgid "Task cannot be canceled"
597
+ msgstr ""
598
+
599
+ msgid "Task count"
600
+ msgstr "Nombre de tâches"
601
+
602
+ msgid "Task group common"
603
+ msgstr "Ressources communes du groupe de tâches"
604
+
605
+ msgid "Task search_params requires task_id to be specified"
606
+ msgstr "Tâche search_params a besoin que task_id soit spécifiée"
607
+
608
+ msgid "Task was canceled"
609
+ msgstr "La tâche a été annulée"
610
+
611
+ msgid "Tasks"
612
+ msgstr "Tâches"
613
+
614
+ msgid "The ID of the step inside the execution plan to send the event to"
615
+ msgstr "L'ID de l'étape qui se trouve dans le plan d'exécution auquel envoyer l'événement"
616
+
617
+ msgid "The recommended approach is to investigate the error messages below and in 'errors' tab, address the primary cause of the issue and resume the task."
618
+ msgstr "L'approche recommandée consiste à examiner les messages d'erreur ci-dessous et dans l'onglet \"erreurs\", à s'attaquer à la cause première du problème et à reprendre la tâche."
619
+
620
+ msgid "The smart proxy task %s failed."
621
+ msgstr "La tâche de smart proxy %s a échoué."
622
+
623
+ msgid "The targets are of different types"
624
+ msgstr "Les cibles sont de types différents"
625
+
626
+ msgid "The task cannot be aborted at the moment."
627
+ msgstr "Impossible d'abandonner la tâche pour l'instant."
628
+
629
+ msgid "The task could not be started"
630
+ msgstr "La tâche n'a pas pu démarrer"
631
+
632
+ msgid "There is %{count} paused task in the system that need attention"
633
+ msgid_plural "There are %{count} paused tasks in the system that need attention"
634
+ msgstr[0] "Il y a %{compte} de tâches en pause dans le système qui nécessitent une attention"
635
+ msgstr[1] "Il y a %{compte} de tâches en pause dans le système qui nécessitent une attention"
636
+
637
+ msgid "This action will delete all cancelled recurring logics. Please note that this action can't be reversed."
638
+ msgstr "Cette action supprimera toutes les logiques récurrentes annulées. Veuillez noter que cette action ne peut pas être annulée."
639
+
640
+ msgid "Thu"
641
+ msgstr "Jeu."
642
+
643
+ msgid "Time in seconds between retries"
644
+ msgstr "Durée en secondes entre les tentatives"
645
+
646
+ msgid "Total"
647
+ msgstr "Total"
648
+
649
+ msgid "Troubleshooting"
650
+ msgstr "Résolution de problème"
651
+
652
+ msgid "Trying to abort the task"
653
+ msgstr "Tentative d'abandon de la tâche"
654
+
655
+ msgid "Trying to cancel step"
656
+ msgstr ""
657
+
658
+ msgid "Tue"
659
+ msgstr "Mar."
660
+
661
+ msgid "Type %s for search_params is not supported"
662
+ msgstr "Type %s n'est pas supporté pour search_params"
663
+
664
+ msgid "UUID of the task"
665
+ msgstr "UUID de la tâche"
666
+
667
+ msgid "Undo selection"
668
+ msgstr "Annuler la sélection"
669
+
670
+ msgid "Unlimited"
671
+ msgstr "Illimité"
672
+
673
+ msgid "Unlock"
674
+ msgstr "Déverrouillage"
675
+
676
+ msgid "Update recurring logic"
677
+ msgstr "Mettre à jour la logique récurrente"
678
+
679
+ msgid "Url pointing to the task troubleshooting documentation. It should contain %{label} placeholder, that will be replaced with normalized task label (restricted to only alphanumeric characters)). %{version} placeholder is also available."
680
+ msgstr "Url pointant vers la documentation qui sert à résoudre la tâche. Il doit contenir le caractère de remplacement %{label}, qui sera remplacé par le libellé de la tâche normalisée (limité aux seuls caractères alphanumériques)). Le caractère de remplacement %{version} est également disponible."
681
+
682
+ msgid "User search_params requires user_id to be specified"
683
+ msgstr "Utilisateur search_params a besoin que user_id soit spécifié"
684
+
685
+ msgid "Wed"
686
+ msgstr "Mer."
687
+
688
+ msgid "With focus on last"
689
+ msgstr "En se concentrant sur la dernière"
690
+
691
+ msgid "Yes"
692
+ msgstr "Oui"
693
+
694
+ msgid "activation key"
695
+ msgstr "clé d'activation"
696
+
697
+ msgid "cannot be cancelled with force at the moment."
698
+ msgstr ""
699
+
700
+ msgid "content view"
701
+ msgstr "affichage de contenu"
702
+
703
+ msgid "content view version"
704
+ msgstr "version d'affichage de contenu"
705
+
706
+ msgid "could not be resumed"
707
+ msgstr "n'a pas pu être reprise"
708
+
709
+ msgid "error"
710
+ msgstr "erreur"
711
+
712
+ #. TRANSLATORS: this translation is referring to an option which is a time interval
713
+ msgid "is day of month (range: 1-31)"
714
+ msgstr "est jour du mois (plage: 1-31)"
715
+
716
+ #. TRANSLATORS: this translation is referring to an option which is a time interval
717
+ msgid "is day of week (range: 0-6)"
718
+ msgstr "est jour de la semaine (plage: 0-6)"
719
+
720
+ #. TRANSLATORS: this translation is referring to an option which is a time interval
721
+ msgid "is hour (range: 0-23)"
722
+ msgstr "est heure (plage: 0-23)"
723
+
724
+ #. TRANSLATORS: this translation is referring to an option which is a time interval
725
+ msgid "is minute (range: 0-59)"
726
+ msgstr "est minute (plage: 0-59)"
727
+
728
+ #. TRANSLATORS: this translation is referring to an option which is a time interval
729
+ msgid "is month (range: 1-12)"
730
+ msgstr "est mois (Plage: 1-12)"
731
+
732
+ msgid "last"
733
+ msgstr "dernier"
734
+
735
+ msgid "mode"
736
+ msgstr "mode"
737
+
738
+ msgid "mode has to be one of %{allowed_modes}"
739
+ msgstr "mode doit être un parmi %{allowed_modes}"
740
+
741
+ msgid "older"
742
+ msgstr "plus ancien"
743
+
744
+ msgid "organization"
745
+ msgstr "organisation"
746
+
747
+ msgid "paused"
748
+ msgstr "suspendue"
749
+
750
+ msgid "product"
751
+ msgstr "produit"
752
+
753
+ msgid "repository"
754
+ msgstr "repository"
755
+
756
+ msgid "resources cannot be unlocked at the moment."
757
+ msgstr ""
758
+
759
+ msgid "resources were unlocked "
760
+ msgstr ""
761
+
762
+ msgid "resources were unlocked with force."
763
+ msgstr ""
764
+
765
+ msgid "result"
766
+ msgstr "résultat"
767
+
768
+ msgid "running"
769
+ msgstr "en cours"
770
+
771
+ msgid "scheduled"
772
+ msgstr "prévu"
773
+
774
+ msgid "seconds"
775
+ msgstr "secondes"
776
+
777
+ msgid "state"
778
+ msgstr "État "
779
+
780
+ msgid "stopped"
781
+ msgstr "arrêté"
782
+
783
+ msgid "success"
784
+ msgstr "réussi"
785
+
786
+ msgid "system"
787
+ msgstr "système"
788
+
789
+ msgid "task has to be cancellable"
790
+ msgstr "la tâche doit pouvoir être annulée"
791
+
792
+ msgid "task has to be resumable"
793
+ msgstr "la tâche doit pouvoir être reprise"
794
+
795
+ msgid "tasks."
796
+ msgstr "tâches."
797
+
798
+ msgid "time"
799
+ msgstr "heure"
800
+
801
+ msgid "troubleshooting documentation"
802
+ msgstr "documentation de dépannage"
803
+
804
+ msgid "user"
805
+ msgstr "utilisateur"
806
+
807
+ msgid "warning"
808
+ msgstr "avertissement"
809
+
810
+ msgid "was cancelled"
811
+ msgstr "a été annulée."
812
+
813
+ msgid "was resumed"
814
+ msgstr "a été reprise"
815
+
816
+ msgid "week"
817
+ msgstr "semaine"