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
@@ -8,8 +8,8 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: foreman_tasks 1.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2025-10-22 11:24-0400\n"
12
- "PO-Revision-Date: 2025-10-22 11:24-0400\n"
11
+ "POT-Creation-Date: 2026-03-10 14:09+0100\n"
12
+ "PO-Revision-Date: 2026-03-10 14:09+0100\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -150,9 +150,9 @@ msgstr ""
150
150
  #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:46
151
151
  #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:30
152
152
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:29
153
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:93
153
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:94
154
154
  #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:30
155
- #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:56
155
+ #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:47
156
156
  msgid "Cancel"
157
157
  msgstr ""
158
158
 
@@ -163,14 +163,14 @@ msgstr ""
163
163
  #: ../db/seeds.d/30-notification_blueprints.rb:40
164
164
  #: ../db/seeds.d/30-notification_blueprints.rb:47
165
165
  #: ../db/seeds.d/30-notification_blueprints.rb:54
166
- #: ../lib/foreman_tasks/engine.rb:25 ../lib/foreman_tasks/engine.rb:54
166
+ #: ../lib/foreman_tasks/engine.rb:27 ../lib/foreman_tasks/engine.rb:56
167
167
  #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:10
168
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:151
168
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:226
169
169
  msgid "Tasks"
170
170
  msgstr ""
171
171
 
172
172
  #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:119
173
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:110
173
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:117
174
174
  #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:15
175
175
  #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:19
176
176
  msgid "Sub tasks"
@@ -621,6 +621,7 @@ msgstr ""
621
621
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:12
622
622
  #: ../app/views/tasks_mailer/long_tasks.html.erb:12
623
623
  #: ../app/views/tasks_mailer/long_tasks.text.erb:10
624
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Dependencies.js:26
624
625
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:18
625
626
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:35
626
627
  #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js:56
@@ -658,6 +659,7 @@ msgstr ""
658
659
  #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:4
659
660
  #: ../app/views/tasks_mailer/long_tasks.html.erb:14
660
661
  #: ../app/views/tasks_mailer/long_tasks.text.erb:12
662
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Dependencies.js:27
661
663
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:40
662
664
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:130
663
665
  #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js:61
@@ -679,7 +681,7 @@ msgstr ""
679
681
 
680
682
  #:
681
683
  #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:1
682
- #: ../lib/foreman_tasks/engine.rb:124
684
+ #: ../lib/foreman_tasks/engine.rb:126
683
685
  msgid "Latest Warning/Error Tasks"
684
686
  msgstr ""
685
687
 
@@ -691,6 +693,9 @@ msgstr ""
691
693
  #:
692
694
  #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:6
693
695
  #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:5
696
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Dependencies.js:28
697
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.js:57
698
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.js:111
694
699
  #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js:64
695
700
  msgid "Result"
696
701
  msgstr ""
@@ -701,7 +706,7 @@ msgid "Started"
701
706
  msgstr ""
702
707
 
703
708
  #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:1
704
- #: ../lib/foreman_tasks/engine.rb:123
709
+ #: ../lib/foreman_tasks/engine.rb:125
705
710
  msgid "Task Status"
706
711
  msgstr ""
707
712
 
@@ -761,96 +766,96 @@ msgstr ""
761
766
  msgid "Back to tasks"
762
767
  msgstr ""
763
768
 
764
- #: ../lib/foreman_tasks/engine.rb:22
769
+ #: ../lib/foreman_tasks/engine.rb:24
765
770
  msgid "Foreman Tasks"
766
771
  msgstr ""
767
772
 
768
- #: ../lib/foreman_tasks/engine.rb:31
773
+ #: ../lib/foreman_tasks/engine.rb:33
769
774
  msgid "Recurring Logics"
770
775
  msgstr ""
771
776
 
772
- #: ../lib/foreman_tasks/engine.rb:57
777
+ #: ../lib/foreman_tasks/engine.rb:59
773
778
  msgid "Number of seconds to wait for synchronous task to finish."
774
779
  msgstr ""
775
780
 
776
- #: ../lib/foreman_tasks/engine.rb:59
781
+ #: ../lib/foreman_tasks/engine.rb:61
777
782
  msgid "Sync task timeout"
778
783
  msgstr ""
779
784
 
780
- #: ../lib/foreman_tasks/engine.rb:62
785
+ #: ../lib/foreman_tasks/engine.rb:64
781
786
  msgid "Enable the dynflow console (/foreman_tasks/dynflow) for debugging"
782
787
  msgstr ""
783
788
 
784
- #: ../lib/foreman_tasks/engine.rb:64
789
+ #: ../lib/foreman_tasks/engine.rb:66
785
790
  msgid "Enable dynflow console"
786
791
  msgstr ""
787
792
 
788
- #: ../lib/foreman_tasks/engine.rb:67
793
+ #: ../lib/foreman_tasks/engine.rb:69
789
794
  msgid ""
790
795
  "Require user to be authenticated as user with admin rights when accessing dynf"
791
796
  "low console"
792
797
  msgstr ""
793
798
 
794
- #: ../lib/foreman_tasks/engine.rb:69
799
+ #: ../lib/foreman_tasks/engine.rb:71
795
800
  msgid "Require auth for dynflow console"
796
801
  msgstr ""
797
802
 
798
- #: ../lib/foreman_tasks/engine.rb:72
803
+ #: ../lib/foreman_tasks/engine.rb:74
799
804
  msgid "Number of attempts to start a task on the smart proxy before failing"
800
805
  msgstr ""
801
806
 
802
- #: ../lib/foreman_tasks/engine.rb:74
807
+ #: ../lib/foreman_tasks/engine.rb:76
803
808
  msgid "Proxy action retry count"
804
809
  msgstr ""
805
810
 
806
- #: ../lib/foreman_tasks/engine.rb:77
811
+ #: ../lib/foreman_tasks/engine.rb:79
807
812
  msgid "Time in seconds between retries"
808
813
  msgstr ""
809
814
 
810
- #: ../lib/foreman_tasks/engine.rb:79
815
+ #: ../lib/foreman_tasks/engine.rb:81
811
816
  msgid "Proxy action retry interval"
812
817
  msgstr ""
813
818
 
814
- #: ../lib/foreman_tasks/engine.rb:82
819
+ #: ../lib/foreman_tasks/engine.rb:84
815
820
  msgid "Allow triggering tasks on the smart proxy in batches"
816
821
  msgstr ""
817
822
 
818
- #: ../lib/foreman_tasks/engine.rb:84
823
+ #: ../lib/foreman_tasks/engine.rb:86
819
824
  msgid "Allow proxy batch tasks"
820
825
  msgstr ""
821
826
 
822
- #: ../lib/foreman_tasks/engine.rb:87
827
+ #: ../lib/foreman_tasks/engine.rb:89
823
828
  msgid ""
824
829
  "Number of tasks which should be sent to the smart proxy in one request, if for"
825
830
  "eman_tasks_proxy_batch_trigger is enabled"
826
831
  msgstr ""
827
832
 
828
- #: ../lib/foreman_tasks/engine.rb:89
833
+ #: ../lib/foreman_tasks/engine.rb:91
829
834
  msgid "Proxy tasks batch size"
830
835
  msgstr ""
831
836
 
832
- #: ../lib/foreman_tasks/engine.rb:92
837
+ #: ../lib/foreman_tasks/engine.rb:94
833
838
  msgid ""
834
839
  "Url pointing to the task troubleshooting documentation. It should contain %{la"
835
840
  "bel} placeholder, that will be replaced with normalized task label (restricted"
836
841
  " to only alphanumeric characters)). %{version} placeholder is also available."
837
842
  msgstr ""
838
843
 
839
- #: ../lib/foreman_tasks/engine.rb:96
844
+ #: ../lib/foreman_tasks/engine.rb:98
840
845
  msgid "Tasks troubleshooting URL"
841
846
  msgstr ""
842
847
 
843
- #: ../lib/foreman_tasks/engine.rb:100
848
+ #: ../lib/foreman_tasks/engine.rb:102
844
849
  msgid ""
845
850
  "Polling multiplier which is used to multiply the default polling intervals. Th"
846
851
  "is can be used to prevent polling too frequently for long running tasks."
847
852
  msgstr ""
848
853
 
849
- #: ../lib/foreman_tasks/engine.rb:103
854
+ #: ../lib/foreman_tasks/engine.rb:105
850
855
  msgid "Polling intervals multiplier"
851
856
  msgstr ""
852
857
 
853
- #: ../lib/foreman_tasks/engine.rb:221
858
+ #: ../lib/foreman_tasks/engine.rb:226
854
859
  msgid "Invalid URL"
855
860
  msgstr ""
856
861
 
@@ -890,36 +895,27 @@ msgstr ""
890
895
  msgid "resources cannot be unlocked at the moment."
891
896
  msgstr ""
892
897
 
893
- #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:7
894
- msgid ""
895
- "I understand that this may cause harm and have working database backups of all"
896
- " backend services."
898
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Dependencies.js:21
899
+ msgid "None"
897
900
  msgstr ""
898
901
 
899
- #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:14
900
- #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:19
901
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:121
902
- msgid "Unlock"
902
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Dependencies.js:64
903
+ msgid "Task dependencies"
903
904
  msgstr ""
904
905
 
905
- #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:15
906
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Dependencies.js:67
906
907
  msgid ""
907
- "This will unlock the resources that the task is running against. Please note t"
908
- "hat this might lead to inconsistent state and should be used with caution, aft"
909
- "er making sure that the task can't be resumed."
908
+ "This task may have dependencies on other tasks or may be blocking other tasks "
909
+ "from executing. Dependencies are established through task chaining relationshi"
910
+ "ps."
910
911
  msgstr ""
911
912
 
912
- #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:28
913
- #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:36
914
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:131
915
- msgid "Force Unlock"
913
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Dependencies.js:74
914
+ msgid "Depends on"
916
915
  msgstr ""
917
916
 
918
- #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:30
919
- msgid ""
920
- "Resources for %s task(s) will be unlocked and will not prevent other tasks fro"
921
- "m being run. As the task(s) might be still running, it should be avoided to us"
922
- "e this unless you are really sure the task(s) got stuck."
917
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Dependencies.js:77
918
+ msgid "Blocks"
923
919
  msgstr ""
924
920
 
925
921
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:10
@@ -982,36 +978,48 @@ msgstr ""
982
978
  msgid "No running steps"
983
979
  msgstr ""
984
980
 
985
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:36
981
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:28
986
982
  #: ../webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js:12
987
983
  msgid "You do not have permission"
988
984
  msgstr ""
989
985
 
990
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:39
986
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:31
991
987
  msgid "Setting is off"
992
988
  msgstr ""
993
989
 
994
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:51
990
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:45
995
991
  msgid "Stop auto-reloading"
996
992
  msgstr ""
997
993
 
998
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:51
994
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:45
999
995
  msgid "Start auto-reloading"
1000
996
  msgstr ""
1001
997
 
1002
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:62
998
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:59
1003
999
  msgid "Dynflow console"
1004
1000
  msgstr ""
1005
1001
 
1006
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:78
1002
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:77
1007
1003
  #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:19
1008
1004
  msgid "Resume"
1009
1005
  msgstr ""
1010
1006
 
1011
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:101
1007
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:105
1012
1008
  msgid "Parent task"
1013
1009
  msgstr ""
1014
1010
 
1011
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:132
1012
+ #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:109
1013
+ #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:114
1014
+ msgid "Unlock"
1015
+ msgstr ""
1016
+
1017
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:144
1018
+ #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:131
1019
+ #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:139
1020
+ msgid "Force Unlock"
1021
+ msgstr ""
1022
+
1015
1023
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskHelper.js:19
1016
1024
  msgid "seconds"
1017
1025
  msgstr ""
@@ -1032,28 +1040,32 @@ msgstr ""
1032
1040
  msgid "Errors:"
1033
1041
  msgstr ""
1034
1042
 
1035
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:52
1036
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTable.js:71
1043
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:55
1044
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTable.js:74
1037
1045
  msgid "Could not receive data: %s"
1038
1046
  msgstr ""
1039
1047
 
1040
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:61
1048
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:64
1041
1049
  msgid "Task"
1042
1050
  msgstr ""
1043
1051
 
1044
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:78
1052
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:81
1045
1053
  msgid "Running Steps"
1046
1054
  msgstr ""
1047
1055
 
1048
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:87
1056
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:90
1049
1057
  msgid "Errors"
1050
1058
  msgstr ""
1051
1059
 
1052
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:90
1060
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:93
1053
1061
  msgid "Locks"
1054
1062
  msgstr ""
1055
1063
 
1056
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:93
1064
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:96
1065
+ msgid "Dependencies"
1066
+ msgstr ""
1067
+
1068
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:99
1057
1069
  msgid "Raw"
1058
1070
  msgstr ""
1059
1071
 
@@ -1086,7 +1098,8 @@ msgstr ""
1086
1098
 
1087
1099
  #:
1088
1100
  #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.js:40
1089
- #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.js:77
1101
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.js:61
1102
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.js:112
1090
1103
  #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.js:73
1091
1104
  msgid "Total"
1092
1105
  msgstr ""
@@ -1097,7 +1110,7 @@ msgid "Other includes all stopped tasks that are cancelled or pending"
1097
1110
  msgstr ""
1098
1111
 
1099
1112
  #:
1100
- #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/OtherInfo.js:29
1113
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/OtherInfo.js:31
1101
1114
  msgid "Other:"
1102
1115
  msgstr ""
1103
1116
 
@@ -1106,6 +1119,11 @@ msgstr ""
1106
1119
  msgid "Stopped"
1107
1120
  msgstr ""
1108
1121
 
1122
+ #:
1123
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.js:107
1124
+ msgid "Stopped tasks by result"
1125
+ msgstr ""
1126
+
1109
1127
  #:
1110
1128
  #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.js:48
1111
1129
  msgid "%(last)s Last %(time)s"
@@ -1117,13 +1135,8 @@ msgid "%(older)s Older %(time)s"
1117
1135
  msgstr ""
1118
1136
 
1119
1137
  #:
1120
- #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.js:28
1121
- msgid "Active Filters:"
1122
- msgstr ""
1123
-
1124
- #:
1125
- #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.js:40
1126
- msgid "Clear All Filters"
1138
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.js:29
1139
+ msgid "Active Filters"
1127
1140
  msgstr ""
1128
1141
 
1129
1142
  #:
@@ -1217,60 +1230,100 @@ msgid "week"
1217
1230
  msgstr ""
1218
1231
 
1219
1232
  #:
1220
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:13
1221
- msgid "Select Action"
1233
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:15
1234
+ msgid "Cancel Selected"
1222
1235
  msgstr ""
1223
1236
 
1224
1237
  #:
1225
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:18
1226
- msgid "Cancel selected tasks"
1238
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:20
1239
+ msgid "Resume Selected"
1227
1240
  msgstr ""
1228
1241
 
1229
1242
  #:
1230
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:22
1231
- msgid "Cancel Selected"
1243
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:25
1244
+ msgid "Force Cancel Selected"
1232
1245
  msgstr ""
1233
1246
 
1234
1247
  #:
1235
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:25
1236
- msgid "Resume selected tasks"
1248
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/GenericConfirmModal.js:41
1249
+ msgid "Yes"
1237
1250
  msgstr ""
1238
1251
 
1239
1252
  #:
1240
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:29
1241
- msgid "Resume Selected"
1253
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/GenericConfirmModal.js:49
1254
+ msgid "No"
1242
1255
  msgstr ""
1243
1256
 
1244
1257
  #:
1245
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:32
1246
- msgid "Force Cancel selected tasks"
1258
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:20
1259
+ msgid "Cancel Task"
1247
1260
  msgstr ""
1248
1261
 
1249
1262
  #:
1250
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:36
1251
- msgid "Force Cancel Selected"
1263
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:21
1264
+ msgid ""
1265
+ "This will cancel task \\\"%(taskName)s\\\", putting it in the stopped state. Are y"
1266
+ "ou sure?"
1252
1267
  msgstr ""
1253
1268
 
1254
1269
  #:
1255
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModal.js:37
1256
- msgid "%s Selected Tasks"
1270
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:31
1271
+ msgid "Cancel Selected Tasks"
1257
1272
  msgstr ""
1258
1273
 
1259
1274
  #:
1260
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModal.js:41
1275
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:32
1261
1276
  msgid ""
1262
- "This will %(action)s %(number)s task(s), putting them in the %(state)s state. "
1263
- "Are you sure?"
1277
+ "This will cancel %(number)s task(s), putting them in the stopped state. Are yo"
1278
+ "u sure?"
1264
1279
  msgstr ""
1265
1280
 
1266
1281
  #:
1267
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModal.js:47
1268
- msgid "No"
1282
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:41
1283
+ msgid "Force Unlock Task"
1269
1284
  msgstr ""
1270
1285
 
1271
1286
  #:
1272
- #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModal.js:56
1273
- msgid "Yes"
1287
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:42
1288
+ msgid ""
1289
+ "This will force unlock task \\\"%(taskName)s\\\". This may cause harm and should b"
1290
+ "e used with caution. Are you sure?"
1291
+ msgstr ""
1292
+
1293
+ #:
1294
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:52
1295
+ msgid "Force Unlock Selected Tasks"
1296
+ msgstr ""
1297
+
1298
+ #:
1299
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:53
1300
+ msgid ""
1301
+ "This will force unlock %(number)s task(s). This may cause harm and should be u"
1302
+ "sed with caution. Are you sure?"
1303
+ msgstr ""
1304
+
1305
+ #:
1306
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:62
1307
+ msgid "Resume Task"
1308
+ msgstr ""
1309
+
1310
+ #:
1311
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:63
1312
+ msgid ""
1313
+ "This will resume task \\\"%(taskName)s\\\", putting it in the running state. Are y"
1314
+ "ou sure?"
1315
+ msgstr ""
1316
+
1317
+ #:
1318
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:73
1319
+ msgid "Resume Selected Tasks"
1320
+ msgstr ""
1321
+
1322
+ #:
1323
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js:74
1324
+ msgid ""
1325
+ "This will resume %(number)s task(s), putting them in the running state. Are yo"
1326
+ "u sure?"
1274
1327
  msgstr ""
1275
1328
 
1276
1329
  #:
@@ -1329,7 +1382,7 @@ msgstr ""
1329
1382
  msgid "Canceling with force selected tasks, this might take a while"
1330
1383
  msgstr ""
1331
1384
 
1332
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTable.js:81
1385
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTable.js:84
1333
1386
  msgid "No Tasks"
1334
1387
  msgstr ""
1335
1388
 
@@ -1349,11 +1402,11 @@ msgstr ""
1349
1402
  msgid "Less than a second"
1350
1403
  msgstr ""
1351
1404
 
1352
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:76
1405
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:138
1353
1406
  msgid "Refresh Data"
1354
1407
  msgstr ""
1355
1408
 
1356
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:81
1409
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:153
1357
1410
  msgid "Export All"
1358
1411
  msgstr ""
1359
1412
 
@@ -1373,6 +1426,26 @@ msgstr ""
1373
1426
  msgid "Force Cancel"
1374
1427
  msgstr ""
1375
1428
 
1429
+ #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:97
1430
+ msgid ""
1431
+ "I understand that this may cause harm and have working database backups of all"
1432
+ " backend services."
1433
+ msgstr ""
1434
+
1435
+ #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:110
1436
+ msgid ""
1437
+ "This will unlock the resources that the task is running against. Please note t"
1438
+ "hat this might lead to inconsistent state and should be used with caution, aft"
1439
+ "er making sure that the task can't be resumed."
1440
+ msgstr ""
1441
+
1442
+ #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:133
1443
+ msgid ""
1444
+ "Resources for %s task(s) will be unlocked and will not prevent other tasks fro"
1445
+ "m being run. As the task(s) might be still running, it should be avoided to us"
1446
+ "e this unless you are really sure the task(s) got stuck."
1447
+ msgstr ""
1448
+
1376
1449
  #: action_names.rb:2
1377
1450
  msgid "Action with sub plans"
1378
1451
  msgstr ""
Binary file