foreman-tasks 1.1.2 → 2.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) 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/task.rb +4 -0
  8. data/app/models/foreman_tasks/task/dynflow_task.rb +3 -1
  9. data/app/models/setting/foreman_tasks.rb +1 -1
  10. data/app/services/ui_notifications/tasks/task_bulk_stop.rb +36 -0
  11. data/app/views/foreman_tasks/api/tasks/details.json.rabl +0 -1
  12. data/app/views/foreman_tasks/api/tasks/show.json.rabl +2 -0
  13. data/config/routes.rb +1 -0
  14. data/db/migrate/20200517215015_rename_bookmarks_controller.rb +35 -0
  15. data/db/migrate/20200519093217_drop_dynflow_allow_dangerous_actions_setting.foreman_tasks.rb +5 -0
  16. data/db/migrate/20200611090846_add_task_lock_index_on_resource_type_and_task_id.rb +3 -3
  17. data/db/seeds.d/30-notification_blueprints.rb +7 -0
  18. data/lib/foreman_tasks/engine.rb +2 -7
  19. data/lib/foreman_tasks/version.rb +1 -1
  20. data/locale/action_names.rb +1 -1
  21. data/locale/en/LC_MESSAGES/foreman_tasks.mo +0 -0
  22. data/locale/en/foreman_tasks.po +270 -54
  23. data/locale/foreman_tasks.pot +630 -292
  24. data/locale/fr/LC_MESSAGES/foreman_tasks.mo +0 -0
  25. data/locale/fr/foreman_tasks.po +817 -0
  26. data/locale/ja/LC_MESSAGES/foreman_tasks.mo +0 -0
  27. data/locale/ja/foreman_tasks.po +817 -0
  28. data/locale/zh_CN/LC_MESSAGES/foreman_tasks.mo +0 -0
  29. data/locale/zh_CN/foreman_tasks.po +816 -0
  30. data/package.json +1 -0
  31. data/script/npm_link_foreman_js.sh +26 -0
  32. data/webpack/ForemanTasks/Components/TaskActions/TaskAction.test.js +60 -0
  33. data/webpack/ForemanTasks/Components/{TasksTable/TasksTableActionHelpers.js → TaskActions/TaskActionHelpers.js} +21 -6
  34. data/webpack/ForemanTasks/Components/{TasksTable/__tests__/TasksTableActionHelpers.test.js → TaskActions/TaskActionHelpers.test.js} +2 -2
  35. data/webpack/ForemanTasks/Components/TaskActions/TaskActionsConstants.js +16 -0
  36. data/webpack/ForemanTasks/Components/TaskActions/UnlockModals.js +60 -0
  37. data/webpack/ForemanTasks/Components/TaskActions/UnlockModals.test.js +14 -0
  38. data/webpack/ForemanTasks/Components/TaskActions/__snapshots__/TaskAction.test.js.snap +233 -0
  39. data/webpack/ForemanTasks/Components/TaskActions/__snapshots__/UnlockModals.test.js.snap +25 -0
  40. data/webpack/ForemanTasks/Components/TaskActions/index.js +115 -0
  41. data/webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js +17 -3
  42. data/webpack/ForemanTasks/Components/TaskDetails/Components/Task.js +149 -167
  43. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/RunningSteps.test.js +8 -1
  44. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/Task.test.js +68 -3
  45. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/TaskInfo.test.js +0 -1
  46. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/RunningSteps.test.js.snap +1 -1
  47. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/Task.test.js.snap +124 -76
  48. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js +35 -5
  49. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetails.scss +3 -14
  50. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js +40 -16
  51. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsConstants.js +3 -4
  52. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsReducer.js +0 -6
  53. data/webpack/ForemanTasks/Components/TaskDetails/TaskDetailsSelectors.js +4 -10
  54. data/webpack/ForemanTasks/Components/TaskDetails/TasksDetailsHelper.js +6 -1
  55. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetails.fixtures.js +8 -0
  56. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetails.test.js +7 -1
  57. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetailsActions.test.js +18 -2
  58. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetails.test.js.snap +30 -13
  59. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetailsActions.test.js.snap +91 -0
  60. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/integration.test.js +13 -4
  61. data/webpack/ForemanTasks/Components/TaskDetails/index.js +6 -8
  62. data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardActions.js +1 -1
  63. data/webpack/ForemanTasks/Components/TasksDashboard/__tests__/TasksDashboardActions.test.js +2 -2
  64. data/webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js +14 -1
  65. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModal.js +83 -0
  66. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalActions.js +106 -0
  67. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalReducer.js +38 -0
  68. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalSelectors.js +46 -0
  69. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModal.test.js +36 -0
  70. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalActions.test.js +205 -0
  71. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalReducer.test.js +27 -0
  72. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalSelectors.test.js +55 -0
  73. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModal.test.js.snap +41 -0
  74. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModalReducer.test.js.snap +19 -0
  75. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModalSelectors.test.js.snap +32 -0
  76. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js +29 -0
  77. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/ActionSelectButton.test.js +1 -0
  78. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ActionSelectButton.test.js.snap +11 -0
  79. data/webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js +135 -35
  80. data/webpack/ForemanTasks/Components/TasksTable/TasksTable.js +13 -9
  81. data/webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js +26 -66
  82. data/webpack/ForemanTasks/Components/TasksTable/TasksTableConstants.js +10 -12
  83. data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js +30 -96
  84. data/webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js +2 -2
  85. data/webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js +8 -4
  86. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksBulkActions.test.js +50 -2
  87. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.fixtures.js +3 -12
  88. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActions.test.js +22 -26
  89. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTablePage.test.js +2 -1
  90. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/SubTasksPage.test.js.snap +3 -14
  91. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksBulkActions.test.js.snap +155 -0
  92. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksIndexPage.test.js.snap +3 -14
  93. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableActions.test.js.snap +17 -124
  94. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTablePage.test.js.snap +63 -133
  95. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionCellFormatter.test.js.snap +1 -0
  96. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionCellFormatter.test.js.snap +2 -0
  97. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionCellFormatter.test.js +1 -1
  98. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionCellFormatter.test.js +1 -1
  99. data/webpack/ForemanTasks/Components/TasksTable/formatters/actionCellFormatter.js +10 -7
  100. data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js +7 -0
  101. data/webpack/ForemanTasks/Components/TasksTable/index.js +2 -2
  102. data/webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js +55 -19
  103. data/webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.test.js +75 -19
  104. data/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap +88 -21
  105. data/webpack/ForemanTasks/Components/common/ClickConfirmation/ClickConfirmation.scss +9 -0
  106. data/webpack/ForemanTasks/Components/common/ClickConfirmation/ClickConfirmation.test.js +44 -0
  107. data/webpack/ForemanTasks/Components/common/ClickConfirmation/__snapshots__/ClickConfirmation.test.js.snap +52 -0
  108. data/webpack/ForemanTasks/Components/common/ClickConfirmation/index.js +59 -66
  109. data/webpack/ForemanTasks/Components/common/{ToastTypesConstants.js → ToastsHelpers/ToastTypesConstants.js} +0 -0
  110. data/webpack/ForemanTasks/Components/common/ToastsHelpers/index.js +15 -0
  111. data/webpack/ForemanTasks/ForemanTasksReducers.js +2 -0
  112. data/webpack/ForemanTasks/Routes/ForemanTasksRoutes.test.js +2 -1
  113. data/webpack/__mocks__/foremanReact/components/ForemanModal/ForemanModalHooks.js +2 -2
  114. data/webpack/__mocks__/foremanReact/components/ForemanModal/index.js +17 -3
  115. data/webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js +3 -0
  116. data/webpack/__mocks__/foremanReact/{API.js → redux/API.js} +1 -1
  117. metadata +41 -21
  118. data/webpack/ForemanTasks/Components/TasksTable/Components/CancelConfirm.js +0 -53
  119. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmationModals.js +0 -56
  120. data/webpack/ForemanTasks/Components/TasksTable/Components/ResumeConfirm.js +0 -52
  121. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/CancelConfirm.test.js +0 -26
  122. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/ConfirmationModals.test.js +0 -24
  123. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/ResumeConfirm.test.js +0 -26
  124. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/CancelConfirm.test.js.snap +0 -65
  125. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ConfirmationModals.test.js.snap +0 -30
  126. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/ResumeConfirm.test.js.snap +0 -63
  127. data/webpack/ForemanTasks/Components/common/ActionButtons/CancelButton.js +0 -23
  128. data/webpack/ForemanTasks/Components/common/ActionButtons/CancelButton.test.js +0 -26
  129. data/webpack/ForemanTasks/Components/common/ActionButtons/ResumeButton.js +0 -23
  130. data/webpack/ForemanTasks/Components/common/ActionButtons/ResumeButton.test.js +0 -27
  131. data/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/CancelButton.test.js.snap +0 -15
  132. data/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ResumeButton.test.js.snap +0 -15
@@ -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: 2019-07-04 10:08+0200\n"
12
- "PO-Revision-Date: 2019-07-04 10:08+0200\n"
11
+ "POT-Creation-Date: 2020-06-22 23:35+0530\n"
12
+ "PO-Revision-Date: 2020-06-22 23:35+0530\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -18,289 +18,297 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:15
21
+ #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:21
22
22
  msgid "List recurring logics"
23
23
  msgstr ""
24
24
 
25
- #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:21
25
+ #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:27
26
26
  msgid "Show recurring logic details"
27
27
  msgstr ""
28
28
 
29
- #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:25
29
+ #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:31
30
30
  msgid "Update recurring logic"
31
31
  msgstr ""
32
32
 
33
- #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:32
33
+ #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:38
34
34
  msgid "Cancel recurring logic"
35
35
  msgstr ""
36
36
 
37
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:73
37
+ #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:48
38
+ msgid "Delete recurring logics by search query"
39
+ msgstr ""
40
+
41
+ #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:49
42
+ msgid "Search query"
43
+ msgstr ""
44
+
45
+ #: ../app/controllers/foreman_tasks/api/recurring_logics_controller.rb:52
46
+ msgid "Please provide a search parameter in the request"
47
+ msgstr ""
48
+
49
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:88
38
50
  msgid "Resume all paused error tasks"
39
51
  msgstr ""
40
52
 
41
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:74
53
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:89
42
54
  msgid "Resume tasks matching search string"
43
55
  msgstr ""
44
56
 
45
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:75
57
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:90
46
58
  msgid "Resume specific tasks by ID"
47
59
  msgstr ""
48
60
 
49
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:110
61
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:93
62
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:128
63
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:149
64
+ msgid "Please provide at least one of search or task_ids parameters in the request"
65
+ msgstr ""
66
+
67
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:123
68
+ msgid "Cancel all cancellable tasks"
69
+ msgstr ""
70
+
71
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:124
72
+ msgid "Cancel tasks matching search string"
73
+ msgstr ""
74
+
75
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:125
76
+ msgid "Cancel specific tasks by ID"
77
+ msgstr ""
78
+
79
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:144
80
+ msgid "Stop all stoppable tasks"
81
+ msgstr ""
82
+
83
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:145
84
+ msgid "Stop tasks matching search string"
85
+ msgstr ""
86
+
87
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:146
88
+ msgid "Stop specific tasks by ID"
89
+ msgstr ""
90
+
91
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:172
50
92
  msgid "List tasks"
51
93
  msgstr ""
52
94
 
53
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:111
95
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:173
54
96
  msgid "Search string"
55
97
  msgstr ""
56
98
 
57
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:112
99
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:174
58
100
  msgid "Page number, starting at 1"
59
101
  msgstr ""
60
102
 
61
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:113
103
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:175
62
104
  msgid "Number of results per page to return"
63
105
  msgstr ""
64
106
 
65
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:114
107
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:176
66
108
  msgid "Sort field and order, e.g. 'name DESC'"
67
109
  msgstr ""
68
110
 
69
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:115
111
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:177
70
112
  msgid "Hash version of 'order' param"
71
113
  msgstr ""
72
114
 
73
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:116
115
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:178
74
116
  msgid "Field to sort the results on"
75
117
  msgstr ""
76
118
 
77
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:117
119
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:179
78
120
  msgid "How to order the sorted results (e.g. ASC for ascending)"
79
121
  msgstr ""
80
122
 
81
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:153
123
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:188
82
124
  msgid "UUID of the task"
83
125
  msgstr ""
84
126
 
85
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:154
127
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:189
86
128
  msgid "The ID of the step inside the execution plan to send the event to"
87
129
  msgstr ""
88
130
 
89
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:160
131
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:195
90
132
  msgid "Data to be sent to the action"
91
133
  msgstr ""
92
134
 
93
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:163
135
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:198
94
136
  msgid "Send data to the task from external executor (such as smart_proxy_dynflow)"
95
137
  msgstr ""
96
138
 
97
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:204
139
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:239
98
140
  msgid "User search_params requires user_id to be specified"
99
141
  msgstr ""
100
142
 
101
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:213
143
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:248
102
144
  msgid "Resource search_params requires resource_type and resource_id to be specified"
103
145
  msgstr ""
104
146
 
105
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:220
147
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:255
106
148
  msgid "Task search_params requires task_id to be specified"
107
149
  msgstr ""
108
150
 
109
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:224
151
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:259
110
152
  msgid "Type %s for search_params is not supported"
111
153
  msgstr ""
112
154
 
113
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:39
114
- msgid "Trying to cancel step %s"
115
- msgstr ""
116
-
117
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:47
118
- msgid "Trying to cancel the task"
119
- msgstr ""
120
-
121
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:49
122
- msgid "The task cannot be cancelled at the moment."
123
- msgstr ""
124
-
125
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:57
155
+ #: ../app/controllers/foreman_tasks/tasks_controller.rb:54
126
156
  msgid "Trying to abort the task"
127
157
  msgstr ""
128
158
 
129
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:59
159
+ #: ../app/controllers/foreman_tasks/tasks_controller.rb:56
130
160
  msgid "The task cannot be aborted at the moment."
131
161
  msgstr ""
132
162
 
133
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:68
134
- msgid "The execution was resumed."
135
- msgstr ""
136
-
137
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:70
138
- msgid "The execution has to be resumable."
139
- msgstr ""
140
-
141
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:80
142
- msgid "The task resources were unlocked."
143
- msgstr ""
144
-
145
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:82
146
- msgid "The execution has to be paused."
147
- msgstr ""
148
-
149
- #: ../app/controllers/foreman_tasks/tasks_controller.rb:91
150
- msgid "The task resources were unlocked with force."
151
- msgstr ""
152
-
153
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:47
154
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:56
155
- #: ../app/models/foreman_tasks/recurring_logic.rb:143
156
- #: ../app/models/foreman_tasks/task.rb:103
157
- #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:14
158
- #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:14
159
- msgid "N/A"
160
- msgstr ""
161
-
162
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:49
163
- msgid "in %s"
164
- msgstr ""
165
-
166
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:49
167
- msgid "%s ago"
163
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:44
164
+ msgid "Enable"
168
165
  msgstr ""
169
166
 
170
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:59
171
- msgid " seconds"
167
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:45
168
+ msgid "Disable"
172
169
  msgstr ""
173
170
 
174
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:66
175
- msgid "Enable"
171
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:46
172
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:30
173
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:29
174
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:103
175
+ #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:28
176
+ #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:56
177
+ msgid "Cancel"
176
178
  msgstr ""
177
179
 
178
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:67
179
- msgid "Disable"
180
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:110
181
+ #: ../db/seeds.d/30-notification_blueprints.rb:3
182
+ #: ../db/seeds.d/30-notification_blueprints.rb:18
183
+ #: ../db/seeds.d/30-notification_blueprints.rb:33
184
+ #: ../db/seeds.d/30-notification_blueprints.rb:40
185
+ #: ../db/seeds.d/30-notification_blueprints.rb:47
186
+ #: ../lib/foreman_tasks/engine.rb:41
187
+ #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:10
188
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksIndexPage.js:7
189
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:133
190
+ msgid "Tasks"
180
191
  msgstr ""
181
192
 
182
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:68
183
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:12
184
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:56
185
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:81
186
- #: ../app/views/foreman_tasks/tasks/_running_steps.html.erb:12
187
- msgid "Cancel"
193
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:119
194
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:120
195
+ #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:15
196
+ #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:19
197
+ msgid "Sub tasks"
188
198
  msgstr ""
189
199
 
190
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:129
191
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:123
200
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:127
192
201
  msgid "Start at"
193
202
  msgstr ""
194
203
 
195
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:130
196
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:135
204
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:128
197
205
  msgid "Start before"
198
206
  msgstr ""
199
207
 
200
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:131
208
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:129
201
209
  msgid ""
202
210
  "Indicates that the action should be cancelled if it cannot be started before t"
203
211
  "his time."
204
212
  msgstr ""
205
213
 
206
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:139
214
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:137
207
215
  msgid "Repeats"
208
216
  msgstr ""
209
217
 
210
218
  #. TRANSLATORS: this translation is referring to an option which is a time interval
211
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:155
219
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:153
212
220
  msgid "is minute (range: 0-59)"
213
221
  msgstr ""
214
222
 
215
223
  #. TRANSLATORS: this translation is referring to an option which is a time interval
216
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:157
224
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:155
217
225
  msgid "is hour (range: 0-23)"
218
226
  msgstr ""
219
227
 
220
228
  #. TRANSLATORS: this translation is referring to an option which is a time interval
221
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:159
229
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:157
222
230
  msgid "is day of month (range: 1-31)"
223
231
  msgstr ""
224
232
 
225
233
  #. TRANSLATORS: this translation is referring to an option which is a time interval
226
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:161
234
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:159
227
235
  msgid "is month (range: 1-12)"
228
236
  msgstr ""
229
237
 
230
238
  #. TRANSLATORS: this translation is referring to an option which is a time interval
231
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:163
239
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:161
232
240
  msgid "is day of week (range: 0-6)"
233
241
  msgstr ""
234
242
 
235
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:166
243
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:164
236
244
  msgid "Cron line format 'a b c d e', where: %s"
237
245
  msgstr ""
238
246
 
239
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:168
240
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:10
247
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:166
248
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:40
241
249
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:8
242
250
  msgid "Cron line"
243
251
  msgstr ""
244
252
 
245
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:174
253
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:172
246
254
  msgid "Days"
247
255
  msgstr ""
248
256
 
249
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:183
257
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:181
250
258
  msgid "Days of week"
251
259
  msgstr ""
252
260
 
253
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:184
261
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:182
254
262
  msgid "Mon"
255
263
  msgstr ""
256
264
 
257
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:185
265
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:183
258
266
  msgid "Tue"
259
267
  msgstr ""
260
268
 
261
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:186
269
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:184
262
270
  msgid "Wed"
263
271
  msgstr ""
264
272
 
265
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:187
273
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:185
266
274
  msgid "Thu"
267
275
  msgstr ""
268
276
 
269
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:188
277
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:186
270
278
  msgid "Fri"
271
279
  msgstr ""
272
280
 
273
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:189
281
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:187
274
282
  msgid "Sat"
275
283
  msgstr ""
276
284
 
277
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:190
285
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:188
278
286
  msgid "Sun"
279
287
  msgstr ""
280
288
 
281
289
  #. TRANSLATORS: Time widget for when a task should start
282
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:199
290
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:197
283
291
  msgid "At"
284
292
  msgstr ""
285
293
 
286
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:201
294
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:199
287
295
  msgid "Repeat N times"
288
296
  msgstr ""
289
297
 
290
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:202
298
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:200
291
299
  msgid "Ends"
292
300
  msgstr ""
293
301
 
294
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:203
302
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:201
295
303
  msgid "Never"
296
304
  msgstr ""
297
305
 
298
306
  #. TRANSLATORS: Button text for saying when a task should end
299
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:205
307
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:203
300
308
  msgid "On"
301
309
  msgstr ""
302
310
 
303
- #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:208
311
+ #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:206
304
312
  msgid "Ends at"
305
313
  msgstr ""
306
314
 
@@ -324,43 +332,43 @@ msgstr ""
324
332
  msgid "The targets are of different types"
325
333
  msgstr ""
326
334
 
327
- #: ../app/lib/actions/foreman/host/import_facts.rb:48 action_names.rb:3
335
+ #: ../app/lib/actions/foreman/host/import_facts.rb:48 action_names.rb:4
328
336
  msgid "Import facts"
329
337
  msgstr ""
330
338
 
331
- #: ../app/lib/actions/foreman/puppetclass/import.rb:18 action_names.rb:4
339
+ #: ../app/lib/actions/foreman/puppetclass/import.rb:18 action_names.rb:3
332
340
  msgid "Import Puppet classes"
333
341
  msgstr ""
334
342
 
335
- #: ../app/lib/actions/helpers/humanizer.rb:95
343
+ #: ../app/lib/actions/helpers/humanizer.rb:93
336
344
  msgid "activation key"
337
345
  msgstr ""
338
346
 
339
- #: ../app/lib/actions/helpers/humanizer.rb:111
347
+ #: ../app/lib/actions/helpers/humanizer.rb:109
340
348
  msgid "user"
341
349
  msgstr ""
342
350
 
343
- #: ../app/lib/actions/helpers/humanizer.rb:122
351
+ #: ../app/lib/actions/helpers/humanizer.rb:120
344
352
  msgid "repository"
345
353
  msgstr ""
346
354
 
347
- #: ../app/lib/actions/helpers/humanizer.rb:140
355
+ #: ../app/lib/actions/helpers/humanizer.rb:138
348
356
  msgid "content view version"
349
357
  msgstr ""
350
358
 
351
- #: ../app/lib/actions/helpers/humanizer.rb:150
359
+ #: ../app/lib/actions/helpers/humanizer.rb:148
352
360
  msgid "content view"
353
361
  msgstr ""
354
362
 
355
- #: ../app/lib/actions/helpers/humanizer.rb:166
363
+ #: ../app/lib/actions/helpers/humanizer.rb:164
356
364
  msgid "product"
357
365
  msgstr ""
358
366
 
359
- #: ../app/lib/actions/helpers/humanizer.rb:182
367
+ #: ../app/lib/actions/helpers/humanizer.rb:180
360
368
  msgid "system"
361
369
  msgstr ""
362
370
 
363
- #: ../app/lib/actions/helpers/humanizer.rb:198
371
+ #: ../app/lib/actions/helpers/humanizer.rb:196
364
372
  msgid "organization"
365
373
  msgstr ""
366
374
 
@@ -384,55 +392,88 @@ msgstr ""
384
392
  msgid "Failed to check on tasks on proxy at %{url}: %{exception}"
385
393
  msgstr ""
386
394
 
387
- #: ../app/lib/actions/proxy_action.rb:89
395
+ #: ../app/lib/actions/proxy_action.rb:90
388
396
  msgid "The smart proxy task %s failed."
389
397
  msgstr ""
390
398
 
391
- #: ../app/lib/actions/proxy_action.rb:100
399
+ #: ../app/lib/actions/proxy_action.rb:101
392
400
  msgid "Cancel enforced: the task might be still running on the proxy"
393
401
  msgstr ""
394
402
 
395
- #: ../app/lib/actions/proxy_action.rb:110
403
+ #: ../app/lib/actions/proxy_action.rb:111
396
404
  msgid "Task aborted: the task might be still running on the proxy"
397
405
  msgstr ""
398
406
 
399
- #: ../app/lib/actions/proxy_action.rb:120
407
+ #: ../app/lib/actions/proxy_action.rb:121
400
408
  msgid "Event delivered by request %{request_id}"
401
409
  msgstr ""
402
410
 
403
- #: ../app/lib/actions/proxy_action.rb:132
411
+ #: ../app/lib/actions/proxy_action.rb:133
404
412
  msgid "Proxy task gone missing from the smart proxy"
405
413
  msgstr ""
406
414
 
407
- #: ../app/lib/actions/proxy_action.rb:169
415
+ #: ../app/lib/actions/proxy_action.rb:168
408
416
  msgid "Initialization error: %s"
409
417
  msgstr ""
410
418
 
411
- #: ../app/models/foreman_tasks/recurring_logic.rb:135
419
+ #: ../app/models/foreman_tasks/lock.rb:16
420
+ msgid "Required lock is already taken by other running tasks."
421
+ msgstr ""
422
+
423
+ #: ../app/models/foreman_tasks/lock.rb:17
424
+ msgid "Please inspect their state, fix their errors and resume them."
425
+ msgstr ""
426
+
427
+ #: ../app/models/foreman_tasks/lock.rb:19
428
+ msgid "Required lock: %s"
429
+ msgstr ""
430
+
431
+ #: ../app/models/foreman_tasks/lock.rb:20
432
+ msgid "Conflicts with tasks:"
433
+ msgstr ""
434
+
435
+ #: ../app/models/foreman_tasks/recurring_logic.rb:136
412
436
  msgid "Active"
413
437
  msgstr ""
414
438
 
415
- #: ../app/models/foreman_tasks/recurring_logic.rb:137
439
+ #: ../app/models/foreman_tasks/recurring_logic.rb:138
416
440
  msgid "Cancelled"
417
441
  msgstr ""
418
442
 
419
- #: ../app/models/foreman_tasks/recurring_logic.rb:139
443
+ #: ../app/models/foreman_tasks/recurring_logic.rb:140
420
444
  msgid "Finished"
421
445
  msgstr ""
422
446
 
423
- #: ../app/models/foreman_tasks/recurring_logic.rb:141
447
+ #: ../app/models/foreman_tasks/recurring_logic.rb:142
448
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js:36
424
449
  msgid "Disabled"
425
450
  msgstr ""
426
451
 
452
+ #: ../app/models/foreman_tasks/recurring_logic.rb:144
453
+ #: ../app/models/foreman_tasks/task.rb:109
454
+ #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:14
455
+ #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:14
456
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskHelper.js:10
457
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:72
458
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:76
459
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:91
460
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:105
461
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:116
462
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:34
463
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:37
464
+ #: ../webpack/ForemanTasks/Components/TasksTable/formatters/dateCellFormmatter.js:6
465
+ msgid "N/A"
466
+ msgstr ""
467
+
427
468
  #: ../app/models/foreman_tasks/recurring_logic_cancelled_exception.rb:3
428
469
  msgid "Cannot update a cancelled Recurring Logic."
429
470
  msgstr ""
430
471
 
431
- #: ../app/models/foreman_tasks/task.rb:88
472
+ #: ../app/models/foreman_tasks/task.rb:94
432
473
  msgid "Delayed"
433
474
  msgstr ""
434
475
 
435
- #: ../app/models/foreman_tasks/task.rb:88
476
+ #: ../app/models/foreman_tasks/task.rb:94
436
477
  msgid "Immediate"
437
478
  msgstr ""
438
479
 
@@ -470,49 +511,55 @@ msgstr ""
470
511
  msgid "The task could not be started"
471
512
  msgstr ""
472
513
 
473
- #: ../app/models/setting/foreman_tasks.rb:10
514
+ #: ../app/models/setting/foreman_tasks.rb:4
474
515
  msgid "Number of seconds to wait for synchronous task to finish."
475
516
  msgstr ""
476
517
 
477
- #: ../app/models/setting/foreman_tasks.rb:11
478
- msgid "Allow unlocking actions which can have dangerous consequences."
479
- msgstr ""
480
-
481
- #: ../app/models/setting/foreman_tasks.rb:12
518
+ #: ../app/models/setting/foreman_tasks.rb:5
482
519
  msgid "Enable the dynflow console (/foreman_tasks/dynflow) for debugging"
483
520
  msgstr ""
484
521
 
485
- #: ../app/models/setting/foreman_tasks.rb:13
522
+ #: ../app/models/setting/foreman_tasks.rb:6
486
523
  msgid ""
487
524
  "Require user to be authenticated as user with admin rights when accessing dynf"
488
525
  "low console"
489
526
  msgstr ""
490
527
 
491
- #: ../app/models/setting/foreman_tasks.rb:14
528
+ #: ../app/models/setting/foreman_tasks.rb:7
492
529
  msgid "Number of attempts to start a task on the smart proxy before failing"
493
530
  msgstr ""
494
531
 
495
- #: ../app/models/setting/foreman_tasks.rb:15
532
+ #: ../app/models/setting/foreman_tasks.rb:8
496
533
  msgid "Time in seconds between retries"
497
534
  msgstr ""
498
535
 
499
- #: ../app/models/setting/foreman_tasks.rb:16
536
+ #: ../app/models/setting/foreman_tasks.rb:9
500
537
  msgid "Allow triggering tasks on the smart proxy in batches"
501
538
  msgstr ""
502
539
 
503
- #: ../app/models/setting/foreman_tasks.rb:17
540
+ #: ../app/models/setting/foreman_tasks.rb:10
504
541
  msgid ""
505
542
  "Number of tasks which should be sent to the smart proxy in one request, if for"
506
543
  "eman_tasks_proxy_batch_trigger is enabled"
507
544
  msgstr ""
508
545
 
509
- #: ../app/models/setting/foreman_tasks.rb:19
546
+ #: ../app/models/setting/foreman_tasks.rb:12
510
547
  msgid ""
511
548
  "Url pointing to the task troubleshooting documentation. It should contain %{la"
512
549
  "bel} placeholder, that will be replaced with normalized task label (restricted"
513
550
  " to only alphanumeric characters)). %{version} placeholder is also available."
514
551
  msgstr ""
515
552
 
553
+ #: ../app/models/setting/foreman_tasks.rb:17
554
+ msgid ""
555
+ "Polling multiplier which is used to multiply the default polling intervals. Th"
556
+ "is can be used to prevent polling too frequently for long running tasks."
557
+ msgstr ""
558
+
559
+ #: ../app/models/setting/foreman_tasks.rb:20
560
+ msgid "Polling intervals multiplier"
561
+ msgstr ""
562
+
516
563
  #: ../app/services/foreman_tasks/troubleshooting_help_generator.rb:67
517
564
  msgid ""
518
565
  "A paused task represents a process that has not finished properly. Any task in"
@@ -559,50 +606,63 @@ msgstr ""
559
606
  msgid "Recurring logics"
560
607
  msgstr ""
561
608
 
562
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:11
609
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:9
610
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:23
611
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:31
612
+ msgid "Clear Cancelled"
613
+ msgstr ""
614
+
615
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:27
616
+ msgid ""
617
+ "This action will delete all cancelled recurring logics. Please note that this "
618
+ "action can't be reversed."
619
+ msgstr ""
620
+
621
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:41
563
622
  #: ../app/views/foreman_tasks/task_groups/_common.html.erb:8
564
623
  msgid "Task count"
565
624
  msgstr ""
566
625
 
567
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:12
626
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:42
568
627
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:12
569
- #: ../app/views/foreman_tasks/tasks/_errors.html.erb:16
570
- #: ../app/views/foreman_tasks/tasks/_running_steps.html.erb:19
571
- #: ../app/views/foreman_tasks/tasks/index.html.erb:20
628
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:18
629
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:35
630
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js:56
572
631
  msgid "Action"
573
632
  msgstr ""
574
633
 
575
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:13
634
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:43
576
635
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:16
577
636
  msgid "Last occurrence"
578
637
  msgstr ""
579
638
 
580
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:14
639
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:44
581
640
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:20
582
641
  msgid "Next occurrence"
583
642
  msgstr ""
584
643
 
585
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:15
644
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:45
586
645
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:24
587
646
  msgid "Current iteration"
588
647
  msgstr ""
589
648
 
590
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:16
649
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:46
591
650
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:28
592
651
  msgid "Iteration limit"
593
652
  msgstr ""
594
653
 
595
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:17
654
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:47
596
655
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:32
597
656
  msgid "Repeat until"
598
657
  msgstr ""
599
658
 
600
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:18
659
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:48
601
660
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:36
602
- #: ../app/views/foreman_tasks/tasks/_running_steps.html.erb:24
603
661
  #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:5
604
662
  #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:4
605
- #: ../app/views/foreman_tasks/tasks/index.html.erb:21
663
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:40
664
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:150
665
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js:61
606
666
  msgid "State"
607
667
  msgstr ""
608
668
 
@@ -622,253 +682,531 @@ msgstr ""
622
682
  msgid "Associated resources"
623
683
  msgstr ""
624
684
 
625
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:2
626
- msgid "Auto Reload"
685
+ #:
686
+ #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:1
687
+ #: ../lib/foreman_tasks/engine.rb:78
688
+ msgid "Latest Warning/Error Tasks"
627
689
  msgstr ""
628
690
 
629
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:4
630
- msgid "Dynflow console"
691
+ #:
692
+ #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:4
693
+ msgid "Name"
631
694
  msgstr ""
632
695
 
633
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:8
634
- msgid "Resume"
696
+ #:
697
+ #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:6
698
+ #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:5
699
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js:64
700
+ msgid "Result"
635
701
  msgstr ""
636
702
 
637
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:17
638
- msgid "Parent task"
703
+ #:
704
+ #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:7
705
+ msgid "Started"
639
706
  msgstr ""
640
707
 
641
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:20
642
- msgid "Sub tasks"
708
+ #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:1
709
+ #: ../lib/foreman_tasks/engine.rb:77
710
+ msgid "Task Status"
643
711
  msgstr ""
644
712
 
645
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:23
646
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:45
647
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:57
648
- msgid "Unlock"
713
+ #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:6
714
+ msgid "No. of Tasks"
649
715
  msgstr ""
650
716
 
651
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:29
652
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:70
653
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:82
654
- msgid "Force Unlock"
717
+ #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:7
718
+ msgid "Last start time"
655
719
  msgstr ""
656
720
 
657
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:49
658
- msgid ""
659
- "This will unlock the resources that the task is running against. Please note t"
660
- "hat this might lead to inconsistent state and should be used with caution, aft"
661
- "er making sure that the task can't be resumed."
721
+ #: ../app/views/foreman_tasks/tasks/show.html.erb:9
722
+ msgid "Details of %s task"
662
723
  msgstr ""
663
724
 
664
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:52
665
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:77
666
- msgid ""
667
- "I understand that this may cause harm and have working database backups of all"
668
- " backend services."
725
+ #: ../db/seeds.d/30-notification_blueprints.rb:12
726
+ msgid "List of tasks"
727
+ msgstr ""
728
+
729
+ #: ../db/seeds.d/30-notification_blueprints.rb:27
730
+ msgid "Task Details"
669
731
  msgstr ""
670
732
 
671
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:74
733
+ #: ../lib/foreman_tasks/cleaner.rb:16
672
734
  msgid ""
673
- "Resources will be unlocked and will not prevent other tasks from being run. As"
674
- " the task might be still running, it should be avoided to use this unless you "
675
- "are really sure the task got stuck"
735
+ ":after setting in tasks cleanup section is deprecated, use :after in :rules se"
736
+ "ction to set the value. to cleanup rules"
676
737
  msgstr ""
677
738
 
678
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:91
679
- #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:4
680
- msgid "Name"
739
+ #: ../lib/foreman_tasks/dynflow.rb:18
740
+ msgid "Back to tasks"
681
741
  msgstr ""
682
742
 
683
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:96
684
- #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:6
685
- #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:5
686
- #: ../app/views/foreman_tasks/tasks/index.html.erb:22
687
- msgid "Result"
743
+ #: ../lib/foreman_tasks/engine.rb:38
744
+ msgid "Foreman Tasks"
688
745
  msgstr ""
689
746
 
690
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:106
691
- msgid "Triggered by"
747
+ #: ../lib/foreman_tasks/engine.rb:47
748
+ msgid "Recurring Logics"
692
749
  msgstr ""
693
750
 
694
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:116
695
- msgid "Execution type"
751
+ #: ../webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js:37
752
+ msgid "was resumed"
696
753
  msgstr ""
697
754
 
698
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:117
699
- #: ../app/views/foreman_tasks/tasks/index.html.erb:33
700
- msgid "(Disabled)"
755
+ #: ../webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js:38
756
+ msgid "could not be resumed"
701
757
  msgstr ""
702
758
 
703
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:127
704
- #: ../app/views/foreman_tasks/tasks/index.html.erb:23
705
- msgid "Started at"
759
+ #: ../webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js:39
760
+ msgid "task has to be resumable"
706
761
  msgstr ""
707
762
 
708
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:131
709
- #: ../app/views/foreman_tasks/tasks/index.html.erb:24
710
- msgid "Ended at"
763
+ #: ../webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js:43
764
+ msgid "was cancelled"
711
765
  msgstr ""
712
766
 
713
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:181
714
- #: ../app/views/foreman_tasks/tasks/_errors.html.erb:24
715
- #: ../app/views/foreman_tasks/tasks/_running_steps.html.erb:31
716
- msgid "Output"
767
+ #: ../webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js:44
768
+ msgid "task has to be cancellable"
717
769
  msgstr ""
718
770
 
719
- #: ../app/views/foreman_tasks/tasks/_details.html.erb:190
720
- #: ../app/views/foreman_tasks/tasks/show.html.erb:121
721
- msgid "Errors"
771
+ #: ../webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js:48
772
+ msgid "resources were unlocked with force."
722
773
  msgstr ""
723
774
 
724
- #: ../app/views/foreman_tasks/tasks/_errors.html.erb:6
775
+ #: ../webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js:49
776
+ msgid "cannot be cancelled with force at the moment."
777
+ msgstr ""
778
+
779
+ #: ../webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js:53
780
+ msgid "resources were unlocked "
781
+ msgstr ""
782
+
783
+ #: ../webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js:54
784
+ msgid "resources cannot be unlocked at the moment."
785
+ msgstr ""
786
+
787
+ #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:14
788
+ #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:19
789
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:129
790
+ msgid "Unlock"
791
+ msgstr ""
792
+
793
+ #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:28
794
+ #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:36
795
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:137
796
+ msgid "Force Unlock"
797
+ msgstr ""
798
+
799
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:10
725
800
  msgid "Execution plan data not available "
726
801
  msgstr ""
727
802
 
728
- #: ../app/views/foreman_tasks/tasks/_errors.html.erb:10
803
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:13
729
804
  msgid "No errors"
730
805
  msgstr ""
731
806
 
732
- #: ../app/views/foreman_tasks/tasks/_errors.html.erb:20
733
- #: ../app/views/foreman_tasks/tasks/_running_steps.html.erb:27
807
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:22
808
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:43
734
809
  msgid "Input"
735
810
  msgstr ""
736
811
 
737
- #: ../app/views/foreman_tasks/tasks/_errors.html.erb:29
738
- msgid "Exception"
812
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:26
813
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:47
814
+ msgid "Output"
739
815
  msgstr ""
740
816
 
741
- #: ../app/views/foreman_tasks/tasks/_errors.html.erb:33
742
- msgid "Backtrace"
817
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:32
818
+ msgid "Exception"
743
819
  msgstr ""
744
820
 
745
- #: ../app/views/foreman_tasks/tasks/_locks.html.erb:2
746
- msgid ""
747
- "You can find resource locks on this page. Exclusive lock marked with locked ic"
748
- "on means that no other task can use locked resource while this task is running"
749
- ". Non-exclusive lock marked with unlocked icon means other tasks can access th"
750
- "e resource freely, it is only used to indicate the relation of this task with "
751
- "the resource"
821
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:38
822
+ msgid "Backtrace"
752
823
  msgstr ""
753
824
 
754
- #: ../app/views/foreman_tasks/tasks/_raw.html.erb:2
825
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Raw.js:10
755
826
  msgid "Id"
756
827
  msgstr ""
757
828
 
758
- #: ../app/views/foreman_tasks/tasks/_raw.html.erb:6
829
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Raw.js:14
759
830
  msgid "Label"
760
831
  msgstr ""
761
832
 
762
- #: ../app/views/foreman_tasks/tasks/_raw.html.erb:10
833
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Raw.js:19
834
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js:70
763
835
  msgid "Duration"
764
836
  msgstr ""
765
837
 
766
- #: ../app/views/foreman_tasks/tasks/_raw.html.erb:14
838
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Raw.js:30
767
839
  msgid "Raw input"
768
840
  msgstr ""
769
841
 
770
- #: ../app/views/foreman_tasks/tasks/_raw.html.erb:20
842
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Raw.js:38
771
843
  msgid "Raw output"
772
844
  msgstr ""
773
845
 
774
- #: ../app/views/foreman_tasks/tasks/_raw.html.erb:26
846
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Raw.js:46
775
847
  msgid "External Id"
776
848
  msgstr ""
777
849
 
778
- #: ../app/views/foreman_tasks/tasks/_running_steps.html.erb:5
850
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:13
779
851
  msgid "No running steps"
780
852
  msgstr ""
781
853
 
782
- #:
783
- #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:1
784
- #: ../lib/foreman_tasks/engine.rb:83
785
- msgid "Latest Warning/Error Tasks"
854
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:67
855
+ msgid "${taskReload ? 'Stop' : 'Start'} auto-reloading"
786
856
  msgstr ""
787
857
 
788
- #:
789
- #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:7
790
- msgid "Started"
858
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:77
859
+ msgid "Dynflow console"
791
860
  msgstr ""
792
861
 
793
- #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:1
794
- #: ../lib/foreman_tasks/engine.rb:82
795
- msgid "Task Status"
862
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:90
863
+ #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:17
864
+ msgid "Resume"
796
865
  msgstr ""
797
866
 
798
- #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:6
799
- msgid "No. of Tasks"
867
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:111
868
+ msgid "Parent task"
800
869
  msgstr ""
801
870
 
802
- #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:7
803
- msgid "Last start time"
871
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskHelper.js:19
872
+ msgid "seconds"
804
873
  msgstr ""
805
874
 
806
- #: ../app/views/foreman_tasks/tasks/index.html.erb:14
807
- #: ../app/views/foreman_tasks/tasks/show.html.erb:6
808
- #: ../db/seeds.d/30-notification_blueprints.rb:3
809
- #: ../db/seeds.d/30-notification_blueprints.rb:18
810
- #: ../lib/foreman_tasks/engine.rb:48
811
- msgid "Tasks"
875
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:155
876
+ msgid "Complete"
812
877
  msgstr ""
813
878
 
814
- #: ../app/views/foreman_tasks/tasks/index.html.erb:25
815
- msgid "User"
879
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:171
880
+ msgid "Troubleshooting"
816
881
  msgstr ""
817
882
 
818
- #: ../app/views/foreman_tasks/tasks/show.html.erb:52
819
- msgid "Stop auto-reloading"
883
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:183
884
+ msgid "Output:"
820
885
  msgstr ""
821
886
 
822
- #: ../app/views/foreman_tasks/tasks/show.html.erb:63
823
- msgid "Start auto-reloading"
887
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:195
888
+ msgid "Errors:"
824
889
  msgstr ""
825
890
 
826
- #: ../app/views/foreman_tasks/tasks/show.html.erb:119
891
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:59
827
892
  msgid "Task"
828
893
  msgstr ""
829
894
 
830
- #: ../app/views/foreman_tasks/tasks/show.html.erb:120
895
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:70
831
896
  msgid "Running Steps"
832
897
  msgstr ""
833
898
 
834
- #: ../app/views/foreman_tasks/tasks/show.html.erb:122
899
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:79
900
+ msgid "Errors"
901
+ msgstr ""
902
+
903
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:82
835
904
  msgid "Locks"
836
905
  msgstr ""
837
906
 
838
- #: ../app/views/foreman_tasks/tasks/show.html.erb:123
907
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:85
839
908
  msgid "Raw"
840
909
  msgstr ""
841
910
 
842
- #: ../db/seeds.d/30-notification_blueprints.rb:12
843
- msgid "List of tasks"
911
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:114
912
+ msgid "Trying to cancel step"
844
913
  msgstr ""
845
914
 
846
- #: ../db/seeds.d/30-notification_blueprints.rb:27
847
- msgid "Task Details"
915
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:120
916
+ msgid "Step Canceled"
848
917
  msgstr ""
849
918
 
850
- #: ../lib/foreman_tasks/cleaner.rb:16
851
- msgid ""
852
- ":after setting in tasks cleanup section is deprecated, use :after in :rules se"
853
- "ction to set the value. to cleanup rules"
919
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:126
920
+ msgid "Could not cancel step."
854
921
  msgstr ""
855
922
 
856
- #: ../lib/foreman_tasks/dynflow.rb:18
857
- msgid "Back to tasks"
923
+ #:
924
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/PausedTasksCard/PausedTasksCard.js:8
925
+ msgid "Paused"
858
926
  msgstr ""
859
927
 
860
- #: ../lib/foreman_tasks/engine.rb:45
861
- msgid "Foreman Tasks"
928
+ #:
929
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/RunningTasksCard/RunningTasksCard.js:8
930
+ msgid "Running"
862
931
  msgstr ""
863
932
 
864
- #: ../lib/foreman_tasks/engine.rb:54
865
- msgid "Recurring Logics"
933
+ #:
934
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.js:36
935
+ msgid "Scheduled"
866
936
  msgstr ""
867
937
 
868
- #: action_names.rb:2
869
- msgid "Action with sub plans"
938
+ #:
939
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.js:40
940
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.js:51
941
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.js:73
942
+ msgid "Total"
943
+ msgstr ""
944
+
945
+ #:
946
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.js:44
947
+ msgid "Stopped"
948
+ msgstr ""
949
+
950
+ #:
951
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.js:48
952
+ msgid "%(last)s Last %(time)s"
953
+ msgstr ""
954
+
955
+ #:
956
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.js:53
957
+ msgid "%(older)s Older %(time)s"
958
+ msgstr ""
959
+
960
+ #:
961
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.js:28
962
+ msgid "Active Filters:"
963
+ msgstr ""
964
+
965
+ #:
966
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksLabelsRow/TasksLabelsRow.js:40
967
+ msgid "Clear All Filters"
968
+ msgstr ""
969
+
970
+ #:
971
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.js:14
972
+ msgid "With focus on last"
973
+ msgstr ""
974
+
975
+ #:
976
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:33
977
+ msgid "state"
978
+ msgstr ""
979
+
980
+ #:
981
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:34
982
+ msgid "result"
983
+ msgstr ""
984
+
985
+ #:
986
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:35
987
+ msgid "mode"
988
+ msgstr ""
989
+
990
+ #:
991
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:36
992
+ msgid "time"
993
+ msgstr ""
994
+
995
+ #:
996
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:40
997
+ msgid "running"
998
+ msgstr ""
999
+
1000
+ #:
1001
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:41
1002
+ msgid "paused"
870
1003
  msgstr ""
871
1004
 
872
- #: action_names.rb:5
873
- msgid "Remote action:"
1005
+ #:
1006
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:42
1007
+ msgid "stopped"
1008
+ msgstr ""
1009
+
1010
+ #:
1011
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:43
1012
+ msgid "scheduled"
1013
+ msgstr ""
1014
+
1015
+ #:
1016
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:44
1017
+ msgid "error"
1018
+ msgstr ""
1019
+
1020
+ #:
1021
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:45
1022
+ msgid "warning"
1023
+ msgstr ""
1024
+
1025
+ #:
1026
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:46
1027
+ msgid "success"
1028
+ msgstr ""
1029
+
1030
+ #:
1031
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:47
1032
+ msgid "last"
1033
+ msgstr ""
1034
+
1035
+ #:
1036
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:48
1037
+ msgid "older"
1038
+ msgstr ""
1039
+
1040
+ #:
1041
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:49
1042
+ msgid "24h"
1043
+ msgstr ""
1044
+
1045
+ #:
1046
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:50
1047
+ msgid "12h"
1048
+ msgstr ""
1049
+
1050
+ #:
1051
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:51
1052
+ msgid "week"
1053
+ msgstr ""
1054
+
1055
+ #:
1056
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:13
1057
+ msgid "Select Action"
1058
+ msgstr ""
1059
+
1060
+ #:
1061
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:18
1062
+ msgid "Cancel selected tasks"
1063
+ msgstr ""
1064
+
1065
+ #:
1066
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:22
1067
+ msgid "Cancel Selected"
1068
+ msgstr ""
1069
+
1070
+ #:
1071
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:25
1072
+ msgid "Resume selected tasks"
1073
+ msgstr ""
1074
+
1075
+ #:
1076
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:29
1077
+ msgid "Resume Selected"
1078
+ msgstr ""
1079
+
1080
+ #:
1081
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:32
1082
+ msgid "Force Cancel selected tasks"
1083
+ msgstr ""
1084
+
1085
+ #:
1086
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ActionSelectButton.js:36
1087
+ msgid "Force Cancel Selected"
1088
+ msgstr ""
1089
+
1090
+ #:
1091
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModal.js:37
1092
+ msgid "%s Selected Tasks"
1093
+ msgstr ""
1094
+
1095
+ #:
1096
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModal.js:47
1097
+ msgid "No"
1098
+ msgstr ""
1099
+
1100
+ #:
1101
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModal.js:56
1102
+ msgid "Yes"
1103
+ msgstr ""
1104
+
1105
+ #:
1106
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js:20
1107
+ msgid "Select All"
1108
+ msgstr ""
1109
+
1110
+ #:
1111
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js:21
1112
+ msgid "tasks."
1113
+ msgstr ""
1114
+
1115
+ #:
1116
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js:27
1117
+ msgid "All %s tasks are selected. "
1118
+ msgstr ""
1119
+
1120
+ #:
1121
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js:29
1122
+ msgid "Undo selection"
1123
+ msgstr ""
1124
+
1125
+ #:
1126
+ #: ../webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionCell.js:27
1127
+ msgid "Select row"
1128
+ msgstr ""
1129
+
1130
+ #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:19
1131
+ msgid "Sub tasks of %s"
1132
+ msgstr ""
1133
+
1134
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:56
1135
+ msgid "Cannot resume tasks at the moment"
1136
+ msgstr ""
1137
+
1138
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:70
1139
+ msgid "Not all the selected tasks can be resumed"
1140
+ msgstr ""
1141
+
1142
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:105
1143
+ msgid "Resuming selected tasks, this might take a while"
1144
+ msgstr ""
1145
+
1146
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:115
1147
+ msgid "Cannot cancel tasks at the moment"
1148
+ msgstr ""
1149
+
1150
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:127
1151
+ msgid "Canceling selected tasks, this might take a while"
1152
+ msgstr ""
1153
+
1154
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:142
1155
+ msgid "Not all the selected tasks can be cancelled"
1156
+ msgstr ""
1157
+
1158
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:176
1159
+ msgid "Cannot force cancel tasks at the moment"
1160
+ msgstr ""
1161
+
1162
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:238
1163
+ msgid "Canceling with force selected tasks, this might take a while"
1164
+ msgstr ""
1165
+
1166
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTable.js:70
1167
+ msgid "Could not receive data: ${error && error.message}"
1168
+ msgstr ""
1169
+
1170
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTable.js:80
1171
+ msgid "No Tasks"
1172
+ msgstr ""
1173
+
1174
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:34
1175
+ msgid "No start or end dates"
1176
+ msgstr ""
1177
+
1178
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:37
1179
+ msgid "Task was canceled"
1180
+ msgstr ""
1181
+
1182
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:53
1183
+ msgid "More than"
1184
+ msgstr ""
1185
+
1186
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:62
1187
+ msgid "Less than a second"
1188
+ msgstr ""
1189
+
1190
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:69
1191
+ msgid "Export All"
1192
+ msgstr ""
1193
+
1194
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js:67
1195
+ msgid "Started at"
1196
+ msgstr ""
1197
+
1198
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js:75
1199
+ msgid "Operation"
1200
+ msgstr ""
1201
+
1202
+ #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:14
1203
+ msgid "Task cannot be canceled"
1204
+ msgstr ""
1205
+
1206
+ #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:39
1207
+ msgid "Force Cancel"
1208
+ msgstr ""
1209
+
1210
+ #: action_names.rb:2
1211
+ msgid "Action with sub plans"
874
1212
  msgstr ""