foreman-tasks 12.0.0 → 12.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 (166) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby_tests.yml +1 -0
  3. data/app/assets/javascripts/foreman-tasks/locale/de/foreman_tasks.js +58 -22
  4. data/app/assets/javascripts/foreman-tasks/locale/en/foreman_tasks.js +56 -20
  5. data/app/assets/javascripts/foreman-tasks/locale/es/foreman_tasks.js +59 -23
  6. data/app/assets/javascripts/foreman-tasks/locale/fr/foreman_tasks.js +61 -25
  7. data/app/assets/javascripts/foreman-tasks/locale/ja/foreman_tasks.js +61 -25
  8. data/app/assets/javascripts/foreman-tasks/locale/ka/foreman_tasks.js +60 -24
  9. data/app/assets/javascripts/foreman-tasks/locale/ko/foreman_tasks.js +61 -25
  10. data/app/assets/javascripts/foreman-tasks/locale/pt_BR/foreman_tasks.js +59 -23
  11. data/app/assets/javascripts/foreman-tasks/locale/ru/foreman_tasks.js +58 -22
  12. data/app/assets/javascripts/foreman-tasks/locale/zh_CN/foreman_tasks.js +61 -25
  13. data/app/assets/javascripts/foreman-tasks/locale/zh_TW/foreman_tasks.js +57 -21
  14. data/app/controllers/foreman_tasks/api/tasks_controller.rb +4 -19
  15. data/app/controllers/foreman_tasks/tasks_controller.rb +4 -5
  16. data/app/models/foreman_tasks/task.rb +1 -1
  17. data/app/views/foreman_tasks/api/tasks/dependency_summary.json.rabl +1 -3
  18. data/app/views/foreman_tasks/api/tasks/show.json.rabl +4 -1
  19. data/config/routes.rb +3 -3
  20. data/foreman-tasks.gemspec +3 -1
  21. data/lib/foreman_tasks/engine.rb +1 -1
  22. data/lib/foreman_tasks/tasks/export_tasks.rake +1 -1
  23. data/lib/foreman_tasks/version.rb +1 -1
  24. data/locale/de/LC_MESSAGES/foreman_tasks.mo +0 -0
  25. data/locale/de/foreman_tasks.po +59 -23
  26. data/locale/en/LC_MESSAGES/foreman_tasks.mo +0 -0
  27. data/locale/en/foreman_tasks.po +56 -20
  28. data/locale/es/LC_MESSAGES/foreman_tasks.mo +0 -0
  29. data/locale/es/foreman_tasks.po +59 -23
  30. data/locale/foreman_tasks.pot +173 -100
  31. data/locale/fr/LC_MESSAGES/foreman_tasks.mo +0 -0
  32. data/locale/fr/foreman_tasks.po +61 -25
  33. data/locale/ja/LC_MESSAGES/foreman_tasks.mo +0 -0
  34. data/locale/ja/foreman_tasks.po +61 -25
  35. data/locale/ka/LC_MESSAGES/foreman_tasks.mo +0 -0
  36. data/locale/ka/foreman_tasks.po +60 -24
  37. data/locale/ko/LC_MESSAGES/foreman_tasks.mo +0 -0
  38. data/locale/ko/foreman_tasks.po +61 -25
  39. data/locale/pt_BR/LC_MESSAGES/foreman_tasks.mo +0 -0
  40. data/locale/pt_BR/foreman_tasks.po +59 -23
  41. data/locale/ru/LC_MESSAGES/foreman_tasks.mo +0 -0
  42. data/locale/ru/foreman_tasks.po +58 -22
  43. data/locale/zh_CN/LC_MESSAGES/foreman_tasks.mo +0 -0
  44. data/locale/zh_CN/foreman_tasks.po +61 -25
  45. data/locale/zh_TW/LC_MESSAGES/foreman_tasks.mo +0 -0
  46. data/locale/zh_TW/foreman_tasks.po +57 -21
  47. data/test/controllers/api/tasks_controller_test.rb +29 -3
  48. data/test/controllers/tasks_controller_test.rb +46 -2
  49. data/webpack/ForemanTasks/Components/TaskActions/TaskAction.test.js +8 -0
  50. data/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js +8 -2
  51. data/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.test.js +25 -33
  52. data/webpack/ForemanTasks/Components/TaskActions/index.js +24 -3
  53. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/TaskInfo.test.js.snap +6 -6
  54. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetailsActions.test.js +9 -0
  55. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetailsActions.test.js.snap +16 -11
  56. data/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.js +2 -3
  57. data/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/__snapshots__/TasksTimeRow.test.js.snap +4 -8
  58. data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.js +2 -4
  59. data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.scss +0 -3
  60. data/webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboard.test.js.snap +2 -5
  61. data/webpack/ForemanTasks/Components/{common/ActionButtons/ActionButton.js → TasksTable/Components/CellActionButton.js} +36 -21
  62. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/index.test.js +32 -29
  63. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createBulkTaskModal.js +14 -18
  64. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createTaskModal.js +13 -15
  65. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js +7 -7
  66. data/webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js +16 -23
  67. data/webpack/ForemanTasks/Components/TasksTable/TasksColumns.js +56 -0
  68. data/webpack/ForemanTasks/Components/TasksTable/TasksIndexPage.js +277 -3
  69. data/webpack/ForemanTasks/Components/TasksTable/TasksModals.js +96 -0
  70. data/webpack/ForemanTasks/Components/TasksTable/TasksTableConstants.js +10 -18
  71. data/webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js +3 -3
  72. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksBulkActions.test.js +130 -63
  73. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksIndexPage.test.js +315 -8
  74. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.fixtures.js +214 -41
  75. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableHelpers.test.js +20 -12
  76. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksBulkActions.test.js.snap +18 -35
  77. data/webpack/ForemanTasks/ForemanTasksReducers.js +0 -4
  78. data/webpack/Routes/routes.js +22 -0
  79. data/webpack/Routes/routes.test.js +95 -0
  80. data/webpack/global_index.js +10 -0
  81. data/webpack/index.js +0 -18
  82. data/webpack/test_setup.js +1 -0
  83. metadata +15 -89
  84. data/app/controllers/foreman_tasks/react_controller.rb +0 -17
  85. data/app/views/foreman_tasks/layouts/react.html.erb +0 -13
  86. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalSelectors.js +0 -30
  87. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalSelectors.test.js +0 -66
  88. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModalSelectors.test.js.snap +0 -33
  89. data/webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js +0 -49
  90. data/webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionCell.js +0 -32
  91. data/webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionHeaderCell.js +0 -38
  92. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/SelectAllAlert.test.js +0 -29
  93. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionCell.test.js +0 -15
  94. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionHeaderCell.test.js +0 -15
  95. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/SelectAllAlert.test.js.snap +0 -81
  96. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionCell.test.js.snap +0 -14
  97. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionHeaderCell.test.js.snap +0 -15
  98. data/webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js +0 -40
  99. data/webpack/ForemanTasks/Components/TasksTable/TasksTable.js +0 -163
  100. data/webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js +0 -108
  101. data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js +0 -234
  102. data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.scss +0 -20
  103. data/webpack/ForemanTasks/Components/TasksTable/TasksTableReducer.js +0 -68
  104. data/webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js +0 -85
  105. data/webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js +0 -63
  106. data/webpack/ForemanTasks/Components/TasksTable/__tests__/SubTasksPage.test.js +0 -20
  107. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.test.js +0 -9
  108. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActions.test.js +0 -65
  109. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTablePage.test.js +0 -35
  110. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableReducer.test.js +0 -87
  111. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/SubTasksPage.test.js.snap +0 -48
  112. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksIndexPage.test.js.snap +0 -39
  113. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTable.test.js.snap +0 -52
  114. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableActions.test.js.snap +0 -40
  115. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTablePage.test.js.snap +0 -368
  116. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableReducer.test.js.snap +0 -116
  117. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionCellFormatter.test.js.snap +0 -15
  118. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionNameCellFormatter.test.js.snap +0 -10
  119. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/dateCellFormmatter.test.js.snap +0 -9
  120. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/durationCellFormmatter.test.js.snap +0 -18
  121. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionCellFormatter.test.js.snap +0 -12
  122. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionHeaderCellFormatter.test.js.snap +0 -11
  123. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionCellFormatter.test.js +0 -11
  124. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionNameCellFormatter.test.js +0 -8
  125. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/dateCellFormmatter.test.js +0 -7
  126. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/durationCellFormmatter.test.js +0 -12
  127. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionCellFormatter.test.js +0 -12
  128. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionHeaderCellFormatter.test.js +0 -12
  129. data/webpack/ForemanTasks/Components/TasksTable/formatters/actionCellFormatter.js +0 -19
  130. data/webpack/ForemanTasks/Components/TasksTable/formatters/actionNameCellFormatter.js +0 -9
  131. data/webpack/ForemanTasks/Components/TasksTable/formatters/dateCellFormmatter.js +0 -7
  132. data/webpack/ForemanTasks/Components/TasksTable/formatters/durationCellFormmatter.js +0 -7
  133. data/webpack/ForemanTasks/Components/TasksTable/formatters/index.js +0 -7
  134. data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js +0 -17
  135. data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionHeaderCellFormatter.js +0 -11
  136. data/webpack/ForemanTasks/Components/TasksTable/index.js +0 -42
  137. data/webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.test.js +0 -101
  138. data/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap +0 -95
  139. data/webpack/ForemanTasks/ForemanTasks.js +0 -11
  140. data/webpack/ForemanTasks/ForemanTasks.test.js +0 -10
  141. data/webpack/ForemanTasks/Routes/ForemanTasksRouter.js +0 -14
  142. data/webpack/ForemanTasks/Routes/ForemanTasksRouter.test.js +0 -26
  143. data/webpack/ForemanTasks/Routes/ForemanTasksRoutes.js +0 -23
  144. data/webpack/ForemanTasks/Routes/ForemanTasksRoutes.test.js +0 -16
  145. data/webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRouter.test.js.snap +0 -16
  146. data/webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRoutes.test.js.snap +0 -37
  147. data/webpack/ForemanTasks/__snapshots__/ForemanTasks.test.js.snap +0 -7
  148. data/webpack/ForemanTasks/index.js +0 -1
  149. data/webpack/__mocks__/foremanReact/common/I18n.js +0 -7
  150. data/webpack/__mocks__/foremanReact/common/helpers.js +0 -6
  151. data/webpack/__mocks__/foremanReact/common/urlHelpers.js +0 -1
  152. data/webpack/__mocks__/foremanReact/components/Layout/LayoutActions.js +0 -2
  153. data/webpack/__mocks__/foremanReact/components/Pagination/index.js +0 -2
  154. data/webpack/__mocks__/foremanReact/components/ToastsList/index.js +0 -8
  155. data/webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js +0 -3
  156. data/webpack/__mocks__/foremanReact/components/common/MessageBox.js +0 -4
  157. data/webpack/__mocks__/foremanReact/components/common/dates/LongDateTime.js +0 -5
  158. data/webpack/__mocks__/foremanReact/components/common/dates/RelativeDateTime.js +0 -3
  159. data/webpack/__mocks__/foremanReact/components/common/table/actionsHelpers/actionTypeCreator.js +0 -7
  160. data/webpack/__mocks__/foremanReact/components/common/table.js +0 -5
  161. data/webpack/__mocks__/foremanReact/constants.js +0 -24
  162. data/webpack/__mocks__/foremanReact/redux/API/APISelectors.js +0 -10
  163. data/webpack/__mocks__/foremanReact/redux/API/index.js +0 -10
  164. data/webpack/__mocks__/foremanReact/redux/middlewares/IntervalMiddleware.js +0 -5
  165. data/webpack/__mocks__/foremanReact/routes/common/PageLayout/PageLayout.js +0 -10
  166. data/webpack/__mocks__/foremanReact/routes/common/PageLayout/components/ExportButton/ExportButton.js +0 -5
@@ -3,13 +3,13 @@
3
3
  # This file is distributed under the same license as the foreman_tasks package.
4
4
  #
5
5
  # Translators:
6
- # Crited <Alexander.Stoll@netways.de>, 2019
6
+ # Alexander Stoll <Alexander.Stoll@netways.de>, 2019
7
7
  # Ettore Atalan <atalanttore@googlemail.com>, 2016-2017,2023
8
8
  # Nonof Yourbusiness <jonasschell@ocupe.org>, 2019
9
9
  # pdolinic, 2021
10
10
  msgid ""
11
11
  msgstr ""
12
- "Project-Id-Version: foreman-tasks 11.0.5\n"
12
+ "Project-Id-Version: foreman-tasks 12.0.0\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
14
  "PO-Revision-Date: 2016-02-12 14:04+0000\n"
15
15
  "Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2016-2017,2023\n"
@@ -26,9 +26,6 @@ msgstr "%(last)s Zuletzt %(time)s"
26
26
  msgid "%(older)s Older %(time)s"
27
27
  msgstr "%(older)s Older %(time)s"
28
28
 
29
- msgid "%s Selected Tasks"
30
- msgstr " %s ausgewählte Aufgaben"
31
-
32
29
  msgid "%s is not valid format of cron line"
33
30
  msgstr "%s ist ungültiges Cron-Zeilen-Format"
34
31
 
@@ -71,8 +68,8 @@ msgstr ""
71
68
  msgid "Active"
72
69
  msgstr "Aktiv"
73
70
 
74
- msgid "Active Filters:"
75
- msgstr "Aktive Filter:"
71
+ msgid "Active Filters"
72
+ msgstr ""
76
73
 
77
74
  msgid "Active or disabled recurring logic with purpose %s already exists"
78
75
  msgstr ""
@@ -102,6 +99,9 @@ msgstr "Zurück zu Aufgaben"
102
99
  msgid "Backtrace"
103
100
  msgstr "Ablaufverfolgung"
104
101
 
102
+ msgid "Blocks"
103
+ msgstr ""
104
+
105
105
  msgid "Bulk action"
106
106
  msgstr "Massenaktion"
107
107
 
@@ -111,6 +111,12 @@ msgstr "Abbrechen"
111
111
  msgid "Cancel Selected"
112
112
  msgstr "Ausgewählte abbrechen"
113
113
 
114
+ msgid "Cancel Selected Tasks"
115
+ msgstr ""
116
+
117
+ msgid "Cancel Task"
118
+ msgstr ""
119
+
114
120
  msgid "Cancel enforced: the task might be still running on the proxy"
115
121
  msgstr "Abbruch erzwungen: die Aufgabe läuft vielleicht noch auf dem Proxy"
116
122
 
@@ -120,9 +126,6 @@ msgstr "Wiederholungslogik abbrechen"
120
126
  msgid "Cancel selected cancellable tasks"
121
127
  msgstr "Ausgewählte stornierbare Aufgaben abbrechen"
122
128
 
123
- msgid "Cancel selected tasks"
124
- msgstr "Ausgewählte Aufgaben abbrechen"
125
-
126
129
  msgid "Cancel specific tasks by ID"
127
130
  msgstr "Abbrechen bestimmter Aufgaben nach ID"
128
131
 
@@ -156,9 +159,6 @@ msgstr "Anfrage-ID %{request_id} in gespeicherte ID %{saved_id} ändern"
156
159
  msgid "Check for long running tasks"
157
160
  msgstr ""
158
161
 
159
- msgid "Clear All Filters"
160
- msgstr "Alle Filter löschen"
161
-
162
162
  msgid "Clear Cancelled"
163
163
  msgstr "Clear abgebrochen "
164
164
 
@@ -201,6 +201,12 @@ msgstr "Wiederkehrende Logiken per Suchanfrage löschen"
201
201
  msgid "Deliver notifications about long running tasks"
202
202
  msgstr ""
203
203
 
204
+ msgid "Dependencies"
205
+ msgstr ""
206
+
207
+ msgid "Depends on"
208
+ msgstr ""
209
+
204
210
  msgid "Details"
205
211
  msgstr "Details"
206
212
 
@@ -279,12 +285,15 @@ msgstr "Abbrechen erzwingen"
279
285
  msgid "Force Cancel Selected"
280
286
  msgstr "Abbrechen Ausgewählt erzwingen"
281
287
 
282
- msgid "Force Cancel selected tasks"
283
- msgstr "Ausgewählte Aufgaben abbrechen erzwingen"
284
-
285
288
  msgid "Force Unlock"
286
289
  msgstr "Entsperren erzwingen"
287
290
 
291
+ msgid "Force Unlock Selected Tasks"
292
+ msgstr ""
293
+
294
+ msgid "Force Unlock Task"
295
+ msgstr ""
296
+
288
297
  msgid "Foreman Tasks"
289
298
  msgstr "Foreman-Aufgaben"
290
299
 
@@ -399,6 +408,9 @@ msgstr "Es konnte keine Aufgabe gestartet werden"
399
408
  msgid "No. of Tasks"
400
409
  msgstr "Nr. der Aufgaben"
401
410
 
411
+ msgid "None"
412
+ msgstr ""
413
+
402
414
  msgid "Not all the selected tasks can be cancelled"
403
415
  msgstr "Nicht alle ausgewählten Aufgaben können abgebrochen werden"
404
416
 
@@ -523,12 +535,15 @@ msgstr "Fortsetzen"
523
535
  msgid "Resume Selected"
524
536
  msgstr "Ausgewählte fortsetzen"
525
537
 
538
+ msgid "Resume Selected Tasks"
539
+ msgstr ""
540
+
541
+ msgid "Resume Task"
542
+ msgstr ""
543
+
526
544
  msgid "Resume all paused error tasks"
527
545
  msgstr "Alle angehaltenen Fehleraufgaben fortsetzen"
528
546
 
529
- msgid "Resume selected tasks"
530
- msgstr "Ausgewählte Aufgaben fortsetzen"
531
-
532
547
  msgid "Resume specific tasks by ID"
533
548
  msgstr "Bestimmte Aufgaben nach ID fortsetzen"
534
549
 
@@ -562,9 +577,6 @@ msgstr "Suchanfrage"
562
577
  msgid "See %{link} for more details on how to resolve the issue"
563
578
  msgstr "Weitere Informationen zur Behebung des Problems finden Sie unter %{link}."
564
579
 
565
- msgid "Select Action"
566
- msgstr "Aktion auswählen"
567
-
568
580
  msgid "Select all {count} tasks"
569
581
  msgstr ""
570
582
 
@@ -622,6 +634,9 @@ msgstr "Stoppen Sie Aufgaben, die mit der Suchzeichenfolge übereinstimmen"
622
634
  msgid "Stopped"
623
635
  msgstr "Gestoppt"
624
636
 
637
+ msgid "Stopped tasks by result"
638
+ msgstr ""
639
+
625
640
  msgid "Sub tasks"
626
641
  msgstr "Unteraufgabe"
627
642
 
@@ -655,6 +670,9 @@ msgstr "Aufgabe kann nicht abgebrochen werden"
655
670
  msgid "Task count"
656
671
  msgstr "Anzahl der Aufgaben"
657
672
 
673
+ msgid "Task dependencies"
674
+ msgstr ""
675
+
658
676
  msgid "Task group common"
659
677
  msgstr "Gemeinsame Aufgabengruppen"
660
678
 
@@ -708,7 +726,25 @@ msgstr[1] ""
708
726
  msgid "This action will delete all cancelled recurring logics. Please note that this action can't be reversed."
709
727
  msgstr "Diese Aktion löscht alle abgebrochenen wiederkehrenden Logiken. Beachten Sie, dass diese Aktion nicht rückgängig gemacht werden kann."
710
728
 
711
- msgid "This will %(action)s %(number)s task(s), putting them in the %(state)s state. Are you sure?"
729
+ msgid "This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships."
730
+ msgstr ""
731
+
732
+ msgid "This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?"
733
+ msgstr ""
734
+
735
+ msgid "This will cancel task \\\"%(taskName)s\\\", putting it in the stopped state. Are you sure?"
736
+ msgstr ""
737
+
738
+ msgid "This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?"
739
+ msgstr ""
740
+
741
+ msgid "This will force unlock task \\\"%(taskName)s\\\". This may cause harm and should be used with caution. Are you sure?"
742
+ msgstr ""
743
+
744
+ msgid "This will resume %(number)s task(s), putting them in the running state. Are you sure?"
745
+ msgstr ""
746
+
747
+ msgid "This will resume task \\\"%(taskName)s\\\", putting it in the running state. Are you sure?"
712
748
  msgstr ""
713
749
 
714
750
  msgid "This will unlock the resources that the task is running against. Please note that this might lead to inconsistent state and should be used with caution, after making sure that the task can't be resumed."
Binary file
@@ -5,9 +5,9 @@
5
5
  #
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman-tasks 11.0.5\n"
8
+ "Project-Id-Version: foreman-tasks 12.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2023-05-18 08:15+0000\n"
10
+ "PO-Revision-Date: 2026-03-09 13:09+0000\n"
11
11
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12
12
  "Language-Team: LANGUAGE <LL@li.org>\n"
13
13
  "Language: \n"
@@ -22,9 +22,6 @@ msgstr ""
22
22
  msgid "%(older)s Older %(time)s"
23
23
  msgstr ""
24
24
 
25
- msgid "%s Selected Tasks"
26
- msgstr ""
27
-
28
25
  msgid "%s is not valid format of cron line"
29
26
  msgstr ""
30
27
 
@@ -67,7 +64,7 @@ msgstr ""
67
64
  msgid "Active"
68
65
  msgstr ""
69
66
 
70
- msgid "Active Filters:"
67
+ msgid "Active Filters"
71
68
  msgstr ""
72
69
 
73
70
  msgid "Active or disabled recurring logic with purpose %s already exists"
@@ -98,6 +95,9 @@ msgstr ""
98
95
  msgid "Backtrace"
99
96
  msgstr ""
100
97
 
98
+ msgid "Blocks"
99
+ msgstr ""
100
+
101
101
  msgid "Bulk action"
102
102
  msgstr ""
103
103
 
@@ -107,6 +107,12 @@ msgstr ""
107
107
  msgid "Cancel Selected"
108
108
  msgstr ""
109
109
 
110
+ msgid "Cancel Selected Tasks"
111
+ msgstr ""
112
+
113
+ msgid "Cancel Task"
114
+ msgstr ""
115
+
110
116
  msgid "Cancel enforced: the task might be still running on the proxy"
111
117
  msgstr ""
112
118
 
@@ -116,9 +122,6 @@ msgstr ""
116
122
  msgid "Cancel selected cancellable tasks"
117
123
  msgstr ""
118
124
 
119
- msgid "Cancel selected tasks"
120
- msgstr ""
121
-
122
125
  msgid "Cancel specific tasks by ID"
123
126
  msgstr ""
124
127
 
@@ -152,9 +155,6 @@ msgstr ""
152
155
  msgid "Check for long running tasks"
153
156
  msgstr ""
154
157
 
155
- msgid "Clear All Filters"
156
- msgstr ""
157
-
158
158
  msgid "Clear Cancelled"
159
159
  msgstr ""
160
160
 
@@ -197,6 +197,12 @@ msgstr ""
197
197
  msgid "Deliver notifications about long running tasks"
198
198
  msgstr ""
199
199
 
200
+ msgid "Dependencies"
201
+ msgstr ""
202
+
203
+ msgid "Depends on"
204
+ msgstr ""
205
+
200
206
  msgid "Details"
201
207
  msgstr ""
202
208
 
@@ -275,10 +281,13 @@ msgstr ""
275
281
  msgid "Force Cancel Selected"
276
282
  msgstr ""
277
283
 
278
- msgid "Force Cancel selected tasks"
284
+ msgid "Force Unlock"
279
285
  msgstr ""
280
286
 
281
- msgid "Force Unlock"
287
+ msgid "Force Unlock Selected Tasks"
288
+ msgstr ""
289
+
290
+ msgid "Force Unlock Task"
282
291
  msgstr ""
283
292
 
284
293
  msgid "Foreman Tasks"
@@ -395,6 +404,9 @@ msgstr ""
395
404
  msgid "No. of Tasks"
396
405
  msgstr ""
397
406
 
407
+ msgid "None"
408
+ msgstr ""
409
+
398
410
  msgid "Not all the selected tasks can be cancelled"
399
411
  msgstr ""
400
412
 
@@ -519,10 +531,13 @@ msgstr ""
519
531
  msgid "Resume Selected"
520
532
  msgstr ""
521
533
 
522
- msgid "Resume all paused error tasks"
534
+ msgid "Resume Selected Tasks"
535
+ msgstr ""
536
+
537
+ msgid "Resume Task"
523
538
  msgstr ""
524
539
 
525
- msgid "Resume selected tasks"
540
+ msgid "Resume all paused error tasks"
526
541
  msgstr ""
527
542
 
528
543
  msgid "Resume specific tasks by ID"
@@ -558,9 +573,6 @@ msgstr ""
558
573
  msgid "See %{link} for more details on how to resolve the issue"
559
574
  msgstr ""
560
575
 
561
- msgid "Select Action"
562
- msgstr ""
563
-
564
576
  msgid "Select all {count} tasks"
565
577
  msgstr ""
566
578
 
@@ -618,6 +630,9 @@ msgstr ""
618
630
  msgid "Stopped"
619
631
  msgstr ""
620
632
 
633
+ msgid "Stopped tasks by result"
634
+ msgstr ""
635
+
621
636
  msgid "Sub tasks"
622
637
  msgstr ""
623
638
 
@@ -651,6 +666,9 @@ msgstr ""
651
666
  msgid "Task count"
652
667
  msgstr ""
653
668
 
669
+ msgid "Task dependencies"
670
+ msgstr ""
671
+
654
672
  msgid "Task group common"
655
673
  msgstr ""
656
674
 
@@ -704,7 +722,25 @@ msgstr[1] ""
704
722
  msgid "This action will delete all cancelled recurring logics. Please note that this action can't be reversed."
705
723
  msgstr ""
706
724
 
707
- msgid "This will %(action)s %(number)s task(s), putting them in the %(state)s state. Are you sure?"
725
+ msgid "This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships."
726
+ msgstr ""
727
+
728
+ msgid "This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?"
729
+ msgstr ""
730
+
731
+ msgid "This will cancel task \\\"%(taskName)s\\\", putting it in the stopped state. Are you sure?"
732
+ msgstr ""
733
+
734
+ msgid "This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?"
735
+ msgstr ""
736
+
737
+ msgid "This will force unlock task \\\"%(taskName)s\\\". This may cause harm and should be used with caution. Are you sure?"
738
+ msgstr ""
739
+
740
+ msgid "This will resume %(number)s task(s), putting them in the running state. Are you sure?"
741
+ msgstr ""
742
+
743
+ msgid "This will resume task \\\"%(taskName)s\\\", putting it in the running state. Are you sure?"
708
744
  msgstr ""
709
745
 
710
746
  msgid "This will unlock the resources that the task is running against. Please note that this might lead to inconsistent state and should be used with caution, after making sure that the task can't be resumed."
Binary file
@@ -7,7 +7,7 @@
7
7
  # francis <hackgo@gmail.com>, 2017
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman-tasks 11.0.5\n"
10
+ "Project-Id-Version: foreman-tasks 12.0.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
12
  "PO-Revision-Date: 2016-02-12 14:04+0000\n"
13
13
  "Last-Translator: francis <hackgo@gmail.com>, 2017\n"
@@ -26,9 +26,6 @@ msgstr "último"
26
26
  msgid "%(older)s Older %(time)s"
27
27
  msgstr "más antiguo"
28
28
 
29
- msgid "%s Selected Tasks"
30
- msgstr "%s Tareas seleccionadas"
31
-
32
29
  msgid "%s is not valid format of cron line"
33
30
  msgstr "%s no tiene formato válido de la línea Cron."
34
31
 
@@ -71,8 +68,8 @@ msgstr ""
71
68
  msgid "Active"
72
69
  msgstr "Activo"
73
70
 
74
- msgid "Active Filters:"
75
- msgstr "Filtros activos:"
71
+ msgid "Active Filters"
72
+ msgstr ""
76
73
 
77
74
  msgid "Active or disabled recurring logic with purpose %s already exists"
78
75
  msgstr "Lógica recurrente activa o desactivada con finalidad %s ya existe"
@@ -102,6 +99,9 @@ msgstr "Volver a las tareas"
102
99
  msgid "Backtrace"
103
100
  msgstr "Seguimiento hacia atrás"
104
101
 
102
+ msgid "Blocks"
103
+ msgstr ""
104
+
105
105
  msgid "Bulk action"
106
106
  msgstr "Acción masiva"
107
107
 
@@ -111,6 +111,12 @@ msgstr "Cancelar"
111
111
  msgid "Cancel Selected"
112
112
  msgstr "Cancelar lo seleccionado"
113
113
 
114
+ msgid "Cancel Selected Tasks"
115
+ msgstr ""
116
+
117
+ msgid "Cancel Task"
118
+ msgstr ""
119
+
114
120
  msgid "Cancel enforced: the task might be still running on the proxy"
115
121
  msgstr "Cancelación ejecutada: es posible que la tarea aún se esté ejecutando en el proxy."
116
122
 
@@ -120,9 +126,6 @@ msgstr "Cancelar lógica recurrente"
120
126
  msgid "Cancel selected cancellable tasks"
121
127
  msgstr "Cancelar las tareas cancelables seleccionadas"
122
128
 
123
- msgid "Cancel selected tasks"
124
- msgstr "Cancelar las tareas seleccionadas"
125
-
126
129
  msgid "Cancel specific tasks by ID"
127
130
  msgstr "Cancelar las tareas específicas por ID"
128
131
 
@@ -156,9 +159,6 @@ msgstr "Cambio del id de solicitud %{request_id} al id guardado %.{saved_id}"
156
159
  msgid "Check for long running tasks"
157
160
  msgstr ""
158
161
 
159
- msgid "Clear All Filters"
160
- msgstr "Borrar todos los filtros"
161
-
162
162
  msgid "Clear Cancelled"
163
163
  msgstr "Eliminar canceladas"
164
164
 
@@ -201,6 +201,12 @@ msgstr "Eliminar lógicas recurrentes mediante una consulta de búsqueda"
201
201
  msgid "Deliver notifications about long running tasks"
202
202
  msgstr ""
203
203
 
204
+ msgid "Dependencies"
205
+ msgstr ""
206
+
207
+ msgid "Depends on"
208
+ msgstr ""
209
+
204
210
  msgid "Details"
205
211
  msgstr "Detalles"
206
212
 
@@ -279,12 +285,15 @@ msgstr "Forzar cancelación"
279
285
  msgid "Force Cancel Selected"
280
286
  msgstr "Forzar cancelación de lo seleccionado"
281
287
 
282
- msgid "Force Cancel selected tasks"
283
- msgstr "Forzar cancelación de tareas seleccionadas"
284
-
285
288
  msgid "Force Unlock"
286
289
  msgstr "Forzar desbloqueo"
287
290
 
291
+ msgid "Force Unlock Selected Tasks"
292
+ msgstr ""
293
+
294
+ msgid "Force Unlock Task"
295
+ msgstr ""
296
+
288
297
  msgid "Foreman Tasks"
289
298
  msgstr "Tareas de Foreman"
290
299
 
@@ -399,6 +408,9 @@ msgstr "No se pudieron iniciar tareas"
399
408
  msgid "No. of Tasks"
400
409
  msgstr "Cantidad de tareas"
401
410
 
411
+ msgid "None"
412
+ msgstr ""
413
+
402
414
  msgid "Not all the selected tasks can be cancelled"
403
415
  msgstr "No todas las tareas seleccionadas se pueden cancelar"
404
416
 
@@ -523,12 +535,15 @@ msgstr "Reanudar"
523
535
  msgid "Resume Selected"
524
536
  msgstr "Reanudar lo seleccionado "
525
537
 
538
+ msgid "Resume Selected Tasks"
539
+ msgstr ""
540
+
541
+ msgid "Resume Task"
542
+ msgstr ""
543
+
526
544
  msgid "Resume all paused error tasks"
527
545
  msgstr "Reanudar las tareas de error en pausa"
528
546
 
529
- msgid "Resume selected tasks"
530
- msgstr "Reanudar las tareas seleccionadas"
531
-
532
547
  msgid "Resume specific tasks by ID"
533
548
  msgstr "Reanudar las tareas específicas por ID"
534
549
 
@@ -562,9 +577,6 @@ msgstr "Consulta de búsqueda"
562
577
  msgid "See %{link} for more details on how to resolve the issue"
563
578
  msgstr "Consulte %{link} para obtener más información sobre cómo resolver el problema."
564
579
 
565
- msgid "Select Action"
566
- msgstr "Seleccionar una acción"
567
-
568
580
  msgid "Select all {count} tasks"
569
581
  msgstr ""
570
582
 
@@ -622,6 +634,9 @@ msgstr "Detener las tareas que coincidan con la secuencia de búsqueda"
622
634
  msgid "Stopped"
623
635
  msgstr "Detenido"
624
636
 
637
+ msgid "Stopped tasks by result"
638
+ msgstr ""
639
+
625
640
  msgid "Sub tasks"
626
641
  msgstr "Subtareas"
627
642
 
@@ -655,6 +670,9 @@ msgstr "La tarea no se puede cancelar"
655
670
  msgid "Task count"
656
671
  msgstr "Conteo de tareas"
657
672
 
673
+ msgid "Task dependencies"
674
+ msgstr ""
675
+
658
676
  msgid "Task group common"
659
677
  msgstr "Grupo de tareas común"
660
678
 
@@ -709,8 +727,26 @@ msgstr[2] "Hay %{count} tareas en pausa en el sistema que necesitan atención"
709
727
  msgid "This action will delete all cancelled recurring logics. Please note that this action can't be reversed."
710
728
  msgstr "Esta acción eliminará todas las lógicas recurrentes canceladas. Tenga en cuenta que esta acción no puede revertirse."
711
729
 
712
- msgid "This will %(action)s %(number)s task(s), putting them in the %(state)s state. Are you sure?"
713
- msgstr "Esto %(action)s %(number)s tarea(s), poniéndolos en el estado %(state)s. ¿Está seguro?"
730
+ msgid "This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships."
731
+ msgstr ""
732
+
733
+ msgid "This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?"
734
+ msgstr ""
735
+
736
+ msgid "This will cancel task \\\"%(taskName)s\\\", putting it in the stopped state. Are you sure?"
737
+ msgstr ""
738
+
739
+ msgid "This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?"
740
+ msgstr ""
741
+
742
+ msgid "This will force unlock task \\\"%(taskName)s\\\". This may cause harm and should be used with caution. Are you sure?"
743
+ msgstr ""
744
+
745
+ msgid "This will resume %(number)s task(s), putting them in the running state. Are you sure?"
746
+ msgstr ""
747
+
748
+ msgid "This will resume task \\\"%(taskName)s\\\", putting it in the running state. Are you sure?"
749
+ msgstr ""
714
750
 
715
751
  msgid "This will unlock the resources that the task is running against. Please note that this might lead to inconsistent state and should be used with caution, after making sure that the task can't be resumed."
716
752
  msgstr "Esto desbloqueará los recursos contra los que se está ejecutando la tarea. Tenga en cuenta que esto puede provocar un estado inconsistente y se debe utilizar con precaución, después de asegurarse de que la tarea no se puede reanudar."