foreman-tasks 4.1.1 → 4.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a995bfa758def81b00f25d1407ad36c4834473c8aab03786b71b54092329168a
4
- data.tar.gz: d1da5ab84d17f85fbf8911b9cfd3fa6fc7d90e2958fe08efefbe20fccd5b2d7c
3
+ metadata.gz: 676dae1bc60b1633da496445b980e4b5fb491931bb227a70f2dcec4c44a9ae9e
4
+ data.tar.gz: 98d4f9798338d20bf7885a9e11b40d492eeeca4d30e2a7f84c4734e4f83e30d7
5
5
  SHA512:
6
- metadata.gz: 5c977430ad99bf4e9cd92cb7371005d9b79be87d48a689bda6dae3f24a134e334b01583cc11a93186651c8271bd46946c86472ef408606b6e4758add63df20c7
7
- data.tar.gz: '018184c654bee02017f2bd9da163eef278ee4515e39adcef3dc1338cffb381f5c60f986177450537c80ddedae8f61162e4bf55d0bfa6838b3eb554aba5f52522'
6
+ metadata.gz: 8482b8a8e5ce147f2bd81d1eea004ba9507c95ecf5d83d0ebd50b7c74cc467a561f035d0049f0d1b44c3d63a29c35f3e55792705d37dfc0b4431e02d2370732a
7
+ data.tar.gz: c317248a7e396b2d556f397ba1fd91d162b5d38b75a593a7f8a28f555ef77ca15ec097f548162edd6c7a7198bfa7e84c6a902bbde6d7515c17b585f7632e9add
@@ -0,0 +1,14 @@
1
+ module ForemanTasks
2
+ module FindTasksCommon
3
+ def search_query
4
+ [current_taxonomy_search, params[:search]].select(&:present?).join(' AND ')
5
+ end
6
+
7
+ def current_taxonomy_search
8
+ conditions = []
9
+ conditions << "organization_id = #{Organization.current.id}" if Organization.current
10
+ conditions << "location_id = #{Location.current.id}" if Location.current
11
+ conditions.empty? ? '' : "(#{conditions.join(' AND ')})"
12
+ end
13
+ end
14
+ end
@@ -1,6 +1,7 @@
1
1
  module ForemanTasks
2
2
  module Api
3
3
  class TasksController < ::Api::V2::BaseController
4
+ include ForemanTasks::FindTasksCommon
4
5
  include ::Foreman::Controller::SmartProxyAuth
5
6
  add_smart_proxy_filters :callback, :features => 'Dynflow'
6
7
 
@@ -195,7 +196,7 @@ module ForemanTasks
195
196
  end
196
197
 
197
198
  def search_options
198
- [params[:search], {}]
199
+ [search_query, {}]
199
200
  end
200
201
 
201
202
  def_param_group :callback_target do
@@ -2,6 +2,7 @@ module ForemanTasks
2
2
  class TasksController < ::ApplicationController
3
3
  include Foreman::Controller::AutoCompleteSearch
4
4
  include Foreman::Controller::CsvResponder
5
+ include ForemanTasks::FindTasksCommon
5
6
 
6
7
  def show
7
8
  @task = resource_base.find(params[:id])
@@ -126,19 +127,10 @@ module ForemanTasks
126
127
  end
127
128
 
128
129
  def filter(scope, paginate: true)
129
- search = current_taxonomy_search
130
- search = [search, params[:search]].select(&:present?).join(' AND ')
131
130
  scope = DashboardTableFilter.new(scope, params).scope
132
- scope = scope.search_for(search, :order => params[:order])
133
- scope = scope.paginate(:page => params[:page], :per_page => params[:per_page]) if paginate
131
+ scope = scope.search_for(search_query, order: params[:order])
132
+ scope = scope.paginate(page: params[:page], per_page: params[:per_page]) if paginate
134
133
  scope.distinct
135
134
  end
136
-
137
- def current_taxonomy_search
138
- conditions = []
139
- conditions << "organization_id = #{Organization.current.id}" if Organization.current
140
- conditions << "location_id = #{Location.current.id}" if Location.current
141
- conditions.empty? ? '' : "(#{conditions.join(' AND ')})"
142
- end
143
135
  end
144
136
  end
@@ -0,0 +1,35 @@
1
+ module Actions
2
+ module Middleware
3
+ class LoadSettingValues < ::Dynflow::Middleware
4
+ # ::Actions::Middleware::LoadSettingValues
5
+ #
6
+ # A middleware to ensure we load current setting values
7
+
8
+ def delay(*args)
9
+ reload_setting_values
10
+ pass(*args)
11
+ end
12
+
13
+ def plan(*args)
14
+ reload_setting_values
15
+ pass(*args)
16
+ end
17
+
18
+ def run(*args)
19
+ reload_setting_values
20
+ pass(*args)
21
+ end
22
+
23
+ def finalize(*args)
24
+ reload_setting_values
25
+ pass(*args)
26
+ end
27
+
28
+ private
29
+
30
+ def reload_setting_values
31
+ ::Foreman.settings.load_values
32
+ end
33
+ end
34
+ end
35
+ end
@@ -114,6 +114,7 @@ module ForemanTasks
114
114
  world.middleware.use Actions::Middleware::KeepCurrentUser, :before => ::Dynflow::Middleware::Common::Transaction
115
115
  world.middleware.use Actions::Middleware::KeepCurrentTimezone
116
116
  world.middleware.use Actions::Middleware::KeepCurrentRequestID
117
+ world.middleware.use ::Actions::Middleware::LoadSettingValues if Gem::Version.new(::SETTINGS[:version]) >= Gem::Version.new('2.5')
117
118
  end
118
119
 
119
120
  ::ForemanTasks.dynflow.config.on_init do |world|
@@ -1,3 +1,3 @@
1
1
  module ForemanTasks
2
- VERSION = '4.1.1'.freeze
2
+ VERSION = '4.1.2'.freeze
3
3
  end
@@ -1,5 +1,6 @@
1
1
  # Autogenerated!
2
+ _("Preupgrade job")
2
3
  _("Remote action:")
3
4
  _("Import Puppet classes")
4
- _("Action with sub plans")
5
- _("Import facts")
5
+ _("Import facts")
6
+ _("Action with sub plans")
@@ -74,6 +74,9 @@ msgstr ""
74
74
  msgid "All proxies with the required feature are unavailable at the moment"
75
75
  msgstr ""
76
76
 
77
+ msgid "Allow proxy batch tasks"
78
+ msgstr ""
79
+
77
80
  msgid "Allow triggering tasks on the smart proxy in batches"
78
81
  msgstr ""
79
82
 
@@ -99,15 +102,15 @@ msgstr ""
99
102
  msgid "Cancel Selected"
100
103
  msgstr ""
101
104
 
102
- msgid "Cancel all cancellable tasks"
103
- msgstr ""
104
-
105
105
  msgid "Cancel enforced: the task might be still running on the proxy"
106
106
  msgstr ""
107
107
 
108
108
  msgid "Cancel recurring logic"
109
109
  msgstr ""
110
110
 
111
+ msgid "Cancel selected cancellable tasks"
112
+ msgstr ""
113
+
111
114
  msgid "Cancel selected tasks"
112
115
  msgstr ""
113
116
 
@@ -156,6 +159,9 @@ msgstr ""
156
159
  msgid "Could not cancel step."
157
160
  msgstr ""
158
161
 
162
+ msgid "Could not receive data: ${APIerror && APIerror.message}"
163
+ msgstr ""
164
+
159
165
  msgid "Could not receive data: ${error && error.message}"
160
166
  msgstr ""
161
167
 
@@ -207,6 +213,9 @@ msgstr ""
207
213
  msgid "Enable"
208
214
  msgstr ""
209
215
 
216
+ msgid "Enable dynflow console"
217
+ msgstr ""
218
+
210
219
  msgid "Enable the dynflow console (/foreman_tasks/dynflow) for debugging"
211
220
  msgstr ""
212
221
 
@@ -246,9 +255,6 @@ msgstr ""
246
255
  msgid "Failed to initialize"
247
256
  msgstr ""
248
257
 
249
- msgid "Field to sort the results on"
250
- msgstr ""
251
-
252
258
  msgid "Finished"
253
259
  msgstr ""
254
260
 
@@ -270,12 +276,6 @@ msgstr ""
270
276
  msgid "Fri"
271
277
  msgstr ""
272
278
 
273
- msgid "Hash version of 'order' param"
274
- msgstr ""
275
-
276
- msgid "How to order the sorted results (e.g. ASC for ascending)"
277
- msgstr ""
278
-
279
279
  msgid "ID"
280
280
  msgstr ""
281
281
 
@@ -381,9 +381,6 @@ msgstr ""
381
381
  msgid "Number of attempts to start a task on the smart proxy before failing"
382
382
  msgstr ""
383
383
 
384
- msgid "Number of results per page to return"
385
- msgstr ""
386
-
387
384
  msgid "Number of seconds to wait for synchronous task to finish."
388
385
  msgstr ""
389
386
 
@@ -397,13 +394,16 @@ msgstr ""
397
394
  msgid "Operation"
398
395
  msgstr ""
399
396
 
400
- msgid "Output"
397
+ msgid "Other includes all stopped tasks that are cancelled or pending"
401
398
  msgstr ""
402
399
 
403
- msgid "Output:"
400
+ msgid "Other:"
401
+ msgstr ""
402
+
403
+ msgid "Output"
404
404
  msgstr ""
405
405
 
406
- msgid "Page number, starting at 1"
406
+ msgid "Output:"
407
407
  msgstr ""
408
408
 
409
409
  msgid "Parent task"
@@ -427,9 +427,21 @@ msgstr ""
427
427
  msgid "Polling multiplier which is used to multiply the default polling intervals. This can be used to prevent polling too frequently for long running tasks."
428
428
  msgstr ""
429
429
 
430
+ msgid "Preupgrade job"
431
+ msgstr ""
432
+
433
+ msgid "Proxy action retry count"
434
+ msgstr ""
435
+
436
+ msgid "Proxy action retry interval"
437
+ msgstr ""
438
+
430
439
  msgid "Proxy task gone missing from the smart proxy"
431
440
  msgstr ""
432
441
 
442
+ msgid "Proxy tasks batch size"
443
+ msgstr ""
444
+
433
445
  msgid "Raw"
434
446
  msgstr ""
435
447
 
@@ -448,6 +460,12 @@ msgstr ""
448
460
  msgid "Recurring logics"
449
461
  msgstr ""
450
462
 
463
+ msgid "Refresh Data"
464
+ msgstr ""
465
+
466
+ msgid "Remote action:"
467
+ msgstr ""
468
+
451
469
  msgid "Repeat N times"
452
470
  msgstr ""
453
471
 
@@ -457,13 +475,13 @@ msgstr ""
457
475
  msgid "Repeats"
458
476
  msgstr ""
459
477
 
460
- msgid "Require user to be authenticated as user with admin rights when accessing dynflow console"
478
+ msgid "Require auth for dynflow console"
461
479
  msgstr ""
462
480
 
463
- msgid "Required lock is already taken by other running tasks."
481
+ msgid "Require user to be authenticated as user with admin rights when accessing dynflow console"
464
482
  msgstr ""
465
483
 
466
- msgid "Required lock: %s"
484
+ msgid "Required lock is already taken by other running tasks."
467
485
  msgstr ""
468
486
 
469
487
  msgid "Resource search_params requires resource_type and resource_id to be specified"
@@ -514,9 +532,6 @@ msgstr ""
514
532
  msgid "Search query"
515
533
  msgstr ""
516
534
 
517
- msgid "Search string"
518
- msgstr ""
519
-
520
535
  msgid "See %{link} for more details on how to resolve the issue"
521
536
  msgstr ""
522
537
 
@@ -535,10 +550,10 @@ msgstr ""
535
550
  msgid "Set up recurring execution"
536
551
  msgstr ""
537
552
 
538
- msgid "Show recurring logic details"
553
+ msgid "Setting is off"
539
554
  msgstr ""
540
555
 
541
- msgid "Sort field and order, e.g. 'name DESC'"
556
+ msgid "Show recurring logic details"
542
557
  msgstr ""
543
558
 
544
559
  msgid "Start at"
@@ -559,7 +574,7 @@ msgstr ""
559
574
  msgid "Step Canceled"
560
575
  msgstr ""
561
576
 
562
- msgid "Stop all stoppable tasks"
577
+ msgid "Stop selected stoppable tasks"
563
578
  msgstr ""
564
579
 
565
580
  msgid "Stop specific tasks by ID"
@@ -580,6 +595,9 @@ msgstr ""
580
595
  msgid "Sun"
581
596
  msgstr ""
582
597
 
598
+ msgid "Sync task timeout"
599
+ msgstr ""
600
+
583
601
  msgid "Task"
584
602
  msgstr ""
585
603
 
@@ -610,12 +628,21 @@ msgstr ""
610
628
  msgid "Tasks"
611
629
  msgstr ""
612
630
 
631
+ msgid "Tasks troubleshooting URL"
632
+ msgstr ""
633
+
613
634
  msgid "The ID of the step inside the execution plan to send the event to"
614
635
  msgstr ""
615
636
 
616
637
  msgid "The recommended approach is to investigate the error messages below and in 'errors' tab, address the primary cause of the issue and resume the task."
617
638
  msgstr ""
618
639
 
640
+ msgid "The recurring logic was disabled."
641
+ msgstr ""
642
+
643
+ msgid "The recurring logic was enabled."
644
+ msgstr ""
645
+
619
646
  msgid "The smart proxy task %s failed."
620
647
  msgstr ""
621
648
 
@@ -690,6 +717,9 @@ msgstr ""
690
717
  msgid "Yes"
691
718
  msgstr ""
692
719
 
720
+ msgid "You do not have permission"
721
+ msgstr ""
722
+
693
723
  msgid "activation key"
694
724
  msgstr ""
695
725
 
@@ -743,6 +773,9 @@ msgstr ""
743
773
  msgid "organization"
744
774
  msgstr ""
745
775
 
776
+ msgid "other"
777
+ msgstr ""
778
+
746
779
  msgid "paused"
747
780
  msgstr ""
748
781
 
@@ -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: 2020-06-22 23:35+0530\n"
12
- "PO-Revision-Date: 2020-06-22 23:35+0530\n"
11
+ "POT-Creation-Date: 2021-04-26 17:14+0200\n"
12
+ "PO-Revision-Date: 2021-04-26 17:14+0200\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -46,112 +46,91 @@ msgstr ""
46
46
  msgid "Please provide a search parameter in the request"
47
47
  msgstr ""
48
48
 
49
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:88
49
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:77
50
50
  msgid "Resume all paused error tasks"
51
51
  msgstr ""
52
52
 
53
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:89
53
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:83
54
54
  msgid "Resume tasks matching search string"
55
55
  msgstr ""
56
56
 
57
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:90
57
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:84
58
58
  msgid "Resume specific tasks by ID"
59
59
  msgstr ""
60
60
 
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"
61
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:117
62
+ msgid "Cancel selected cancellable tasks"
69
63
  msgstr ""
70
64
 
71
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:124
65
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:122
72
66
  msgid "Cancel tasks matching search string"
73
67
  msgstr ""
74
68
 
75
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:125
69
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:123
76
70
  msgid "Cancel specific tasks by ID"
77
71
  msgstr ""
78
72
 
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
92
- msgid "List tasks"
73
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:127
74
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:153
75
+ msgid "Please provide at least one of search or task_ids parameters in the request"
93
76
  msgstr ""
94
77
 
95
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:173
96
- msgid "Search string"
78
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:143
79
+ msgid "Stop selected stoppable tasks"
97
80
  msgstr ""
98
81
 
99
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:174
100
- msgid "Page number, starting at 1"
82
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:148
83
+ msgid "Stop tasks matching search string"
101
84
  msgstr ""
102
85
 
103
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:175
104
- msgid "Number of results per page to return"
86
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:149
87
+ msgid "Stop specific tasks by ID"
105
88
  msgstr ""
106
89
 
107
90
  #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:176
108
- msgid "Sort field and order, e.g. 'name DESC'"
109
- msgstr ""
110
-
111
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:177
112
- msgid "Hash version of 'order' param"
113
- msgstr ""
114
-
115
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:178
116
- msgid "Field to sort the results on"
117
- msgstr ""
118
-
119
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:179
120
- msgid "How to order the sorted results (e.g. ASC for ascending)"
91
+ msgid "List tasks"
121
92
  msgstr ""
122
93
 
123
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:188
94
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:203
124
95
  msgid "UUID of the task"
125
96
  msgstr ""
126
97
 
127
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:189
98
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:204
128
99
  msgid "The ID of the step inside the execution plan to send the event to"
129
100
  msgstr ""
130
101
 
131
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:195
102
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:210
132
103
  msgid "Data to be sent to the action"
133
104
  msgstr ""
134
105
 
135
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:198
106
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:213
136
107
  msgid "Send data to the task from external executor (such as smart_proxy_dynflow)"
137
108
  msgstr ""
138
109
 
139
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:239
110
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:254
140
111
  msgid "User search_params requires user_id to be specified"
141
112
  msgstr ""
142
113
 
143
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:248
114
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:260
144
115
  msgid "Resource search_params requires resource_type and resource_id to be specified"
145
116
  msgstr ""
146
117
 
147
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:255
118
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:267
148
119
  msgid "Task search_params requires task_id to be specified"
149
120
  msgstr ""
150
121
 
151
- #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:259
122
+ #: ../app/controllers/foreman_tasks/api/tasks_controller.rb:271
152
123
  msgid "Type %s for search_params is not supported"
153
124
  msgstr ""
154
125
 
126
+ #: ../app/controllers/foreman_tasks/recurring_logics_controller.rb:47
127
+ msgid "The recurring logic was enabled."
128
+ msgstr ""
129
+
130
+ #: ../app/controllers/foreman_tasks/recurring_logics_controller.rb:49
131
+ msgid "The recurring logic was disabled."
132
+ msgstr ""
133
+
155
134
  #: ../app/controllers/foreman_tasks/tasks_controller.rb:54
156
135
  msgid "Trying to abort the task"
157
136
  msgstr ""
@@ -171,8 +150,8 @@ msgstr ""
171
150
  #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:46
172
151
  #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:30
173
152
  #: ../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
153
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:93
154
+ #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:30
176
155
  #: ../webpack/ForemanTasks/Components/common/ClickConfirmation/index.js:56
177
156
  msgid "Cancel"
178
157
  msgstr ""
@@ -186,12 +165,12 @@ msgstr ""
186
165
  #: ../lib/foreman_tasks/engine.rb:41
187
166
  #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:10
188
167
  #: ../webpack/ForemanTasks/Components/TasksTable/TasksIndexPage.js:7
189
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:133
168
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:146
190
169
  msgid "Tasks"
191
170
  msgstr ""
192
171
 
193
172
  #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:119
194
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:120
173
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:110
195
174
  #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:15
196
175
  #: ../webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js:19
197
176
  msgid "Sub tasks"
@@ -245,7 +224,7 @@ msgid "Cron line format 'a b c d e', where: %s"
245
224
  msgstr ""
246
225
 
247
226
  #: ../app/helpers/foreman_tasks/foreman_tasks_helper.rb:166
248
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:40
227
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:41
249
228
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:8
250
229
  msgid "Cron line"
251
230
  msgstr ""
@@ -332,11 +311,11 @@ msgstr ""
332
311
  msgid "The targets are of different types"
333
312
  msgstr ""
334
313
 
335
- #: ../app/lib/actions/foreman/host/import_facts.rb:48 action_names.rb:4
314
+ #: ../app/lib/actions/foreman/host/import_facts.rb:48 action_names.rb:5
336
315
  msgid "Import facts"
337
316
  msgstr ""
338
317
 
339
- #: ../app/lib/actions/foreman/puppetclass/import.rb:18 action_names.rb:3
318
+ #: ../app/lib/actions/foreman/puppetclass/import.rb:18 action_names.rb:4
340
319
  msgid "Import Puppet classes"
341
320
  msgstr ""
342
321
 
@@ -384,7 +363,7 @@ msgstr ""
384
363
  msgid "All proxies with the required feature are unavailable at the moment"
385
364
  msgstr ""
386
365
 
387
- #: ../app/lib/actions/middleware/keep_current_request_id.rb:45
366
+ #: ../app/lib/actions/middleware/keep_current_request_id.rb:48
388
367
  msgid "Changing request id %{request_id} to saved id %{saved_id}"
389
368
  msgstr ""
390
369
 
@@ -416,19 +395,15 @@ msgstr ""
416
395
  msgid "Initialization error: %s"
417
396
  msgstr ""
418
397
 
419
- #: ../app/models/foreman_tasks/lock.rb:16
398
+ #: ../app/models/foreman_tasks/lock.rb:7
420
399
  msgid "Required lock is already taken by other running tasks."
421
400
  msgstr ""
422
401
 
423
- #: ../app/models/foreman_tasks/lock.rb:17
402
+ #: ../app/models/foreman_tasks/lock.rb:8
424
403
  msgid "Please inspect their state, fix their errors and resume them."
425
404
  msgstr ""
426
405
 
427
- #: ../app/models/foreman_tasks/lock.rb:19
428
- msgid "Required lock: %s"
429
- msgstr ""
430
-
431
- #: ../app/models/foreman_tasks/lock.rb:20
406
+ #: ../app/models/foreman_tasks/lock.rb:10
432
407
  msgid "Conflicts with tasks:"
433
408
  msgstr ""
434
409
 
@@ -450,17 +425,17 @@ msgid "Disabled"
450
425
  msgstr ""
451
426
 
452
427
  #: ../app/models/foreman_tasks/recurring_logic.rb:144
453
- #: ../app/models/foreman_tasks/task.rb:109
428
+ #: ../app/models/foreman_tasks/task.rb:127
454
429
  #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:14
455
430
  #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:14
456
431
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskHelper.js:10
457
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:72
432
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:71
458
433
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:76
459
434
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:91
460
435
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:105
461
436
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskInfo.js:116
462
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:34
463
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:37
437
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:26
438
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:29
464
439
  #: ../webpack/ForemanTasks/Components/TasksTable/formatters/dateCellFormmatter.js:6
465
440
  msgid "N/A"
466
441
  msgstr ""
@@ -469,11 +444,11 @@ msgstr ""
469
444
  msgid "Cannot update a cancelled Recurring Logic."
470
445
  msgstr ""
471
446
 
472
- #: ../app/models/foreman_tasks/task.rb:94
447
+ #: ../app/models/foreman_tasks/task.rb:112
473
448
  msgid "Delayed"
474
449
  msgstr ""
475
450
 
476
- #: ../app/models/foreman_tasks/task.rb:94
451
+ #: ../app/models/foreman_tasks/task.rb:112
477
452
  msgid "Immediate"
478
453
  msgstr ""
479
454
 
@@ -515,34 +490,62 @@ msgstr ""
515
490
  msgid "Number of seconds to wait for synchronous task to finish."
516
491
  msgstr ""
517
492
 
493
+ #: ../app/models/setting/foreman_tasks.rb:4
494
+ msgid "Sync task timeout"
495
+ msgstr ""
496
+
518
497
  #: ../app/models/setting/foreman_tasks.rb:5
519
498
  msgid "Enable the dynflow console (/foreman_tasks/dynflow) for debugging"
520
499
  msgstr ""
521
500
 
501
+ #: ../app/models/setting/foreman_tasks.rb:5
502
+ msgid "Enable dynflow console"
503
+ msgstr ""
504
+
522
505
  #: ../app/models/setting/foreman_tasks.rb:6
523
506
  msgid ""
524
507
  "Require user to be authenticated as user with admin rights when accessing dynf"
525
508
  "low console"
526
509
  msgstr ""
527
510
 
511
+ #: ../app/models/setting/foreman_tasks.rb:6
512
+ msgid "Require auth for dynflow console"
513
+ msgstr ""
514
+
528
515
  #: ../app/models/setting/foreman_tasks.rb:7
529
516
  msgid "Number of attempts to start a task on the smart proxy before failing"
530
517
  msgstr ""
531
518
 
519
+ #: ../app/models/setting/foreman_tasks.rb:7
520
+ msgid "Proxy action retry count"
521
+ msgstr ""
522
+
532
523
  #: ../app/models/setting/foreman_tasks.rb:8
533
524
  msgid "Time in seconds between retries"
534
525
  msgstr ""
535
526
 
527
+ #: ../app/models/setting/foreman_tasks.rb:8
528
+ msgid "Proxy action retry interval"
529
+ msgstr ""
530
+
536
531
  #: ../app/models/setting/foreman_tasks.rb:9
537
532
  msgid "Allow triggering tasks on the smart proxy in batches"
538
533
  msgstr ""
539
534
 
535
+ #: ../app/models/setting/foreman_tasks.rb:9
536
+ msgid "Allow proxy batch tasks"
537
+ msgstr ""
538
+
540
539
  #: ../app/models/setting/foreman_tasks.rb:10
541
540
  msgid ""
542
541
  "Number of tasks which should be sent to the smart proxy in one request, if for"
543
542
  "eman_tasks_proxy_batch_trigger is enabled"
544
543
  msgstr ""
545
544
 
545
+ #: ../app/models/setting/foreman_tasks.rb:10
546
+ msgid "Proxy tasks batch size"
547
+ msgstr ""
548
+
546
549
  #: ../app/models/setting/foreman_tasks.rb:12
547
550
  msgid ""
548
551
  "Url pointing to the task troubleshooting documentation. It should contain %{la"
@@ -550,6 +553,10 @@ msgid ""
550
553
  " to only alphanumeric characters)). %{version} placeholder is also available."
551
554
  msgstr ""
552
555
 
556
+ #: ../app/models/setting/foreman_tasks.rb:15
557
+ msgid "Tasks troubleshooting URL"
558
+ msgstr ""
559
+
553
560
  #: ../app/models/setting/foreman_tasks.rb:17
554
561
  msgid ""
555
562
  "Polling multiplier which is used to multiply the default polling intervals. Th"
@@ -618,12 +625,17 @@ msgid ""
618
625
  "action can't be reversed."
619
626
  msgstr ""
620
627
 
621
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:41
628
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:40
629
+ #: ../app/views/foreman_tasks/task_groups/_common.html.erb:4
630
+ msgid "ID"
631
+ msgstr ""
632
+
633
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:42
622
634
  #: ../app/views/foreman_tasks/task_groups/_common.html.erb:8
623
635
  msgid "Task count"
624
636
  msgstr ""
625
637
 
626
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:42
638
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:43
627
639
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:12
628
640
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Errors.js:18
629
641
  #: ../webpack/ForemanTasks/Components/TaskDetails/Components/RunningSteps.js:35
@@ -631,32 +643,32 @@ msgstr ""
631
643
  msgid "Action"
632
644
  msgstr ""
633
645
 
634
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:43
646
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:44
635
647
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:16
636
648
  msgid "Last occurrence"
637
649
  msgstr ""
638
650
 
639
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:44
651
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:45
640
652
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:20
641
653
  msgid "Next occurrence"
642
654
  msgstr ""
643
655
 
644
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:45
656
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:46
645
657
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:24
646
658
  msgid "Current iteration"
647
659
  msgstr ""
648
660
 
649
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:46
661
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:47
650
662
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:28
651
663
  msgid "Iteration limit"
652
664
  msgstr ""
653
665
 
654
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:47
666
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:48
655
667
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:32
656
668
  msgid "Repeat until"
657
669
  msgstr ""
658
670
 
659
- #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:48
671
+ #: ../app/views/foreman_tasks/recurring_logics/index.html.erb:49
660
672
  #: ../app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb:36
661
673
  #: ../app/views/foreman_tasks/tasks/dashboard/_latest_tasks_in_error_warning.html.erb:5
662
674
  #: ../app/views/foreman_tasks/tasks/dashboard/_tasks_status.html.erb:4
@@ -670,10 +682,6 @@ msgstr ""
670
682
  msgid "Details"
671
683
  msgstr ""
672
684
 
673
- #: ../app/views/foreman_tasks/task_groups/_common.html.erb:4
674
- msgid "ID"
675
- msgstr ""
676
-
677
685
  #: ../app/views/foreman_tasks/task_groups/_detail.html.erb:1
678
686
  msgid "Task group common"
679
687
  msgstr ""
@@ -786,13 +794,13 @@ msgstr ""
786
794
 
787
795
  #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:14
788
796
  #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:19
789
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:129
797
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:121
790
798
  msgid "Unlock"
791
799
  msgstr ""
792
800
 
793
801
  #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:28
794
802
  #: ../webpack/ForemanTasks/Components/TaskActions/UnlockModals.js:36
795
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:137
803
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:131
796
804
  msgid "Force Unlock"
797
805
  msgstr ""
798
806
 
@@ -851,20 +859,29 @@ msgstr ""
851
859
  msgid "No running steps"
852
860
  msgstr ""
853
861
 
854
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:67
862
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:36
863
+ #: ../webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js:12
864
+ msgid "You do not have permission"
865
+ msgstr ""
866
+
867
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:39
868
+ msgid "Setting is off"
869
+ msgstr ""
870
+
871
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:51
855
872
  msgid "${taskReload ? 'Stop' : 'Start'} auto-reloading"
856
873
  msgstr ""
857
874
 
858
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:77
875
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:62
859
876
  msgid "Dynflow console"
860
877
  msgstr ""
861
878
 
862
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:90
863
- #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:17
879
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:78
880
+ #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:19
864
881
  msgid "Resume"
865
882
  msgstr ""
866
883
 
867
- #: ../webpack/ForemanTasks/Components/TaskDetails/Components/Task.js:111
884
+ #: ../webpack/ForemanTasks/Components/TaskDetails/Components/TaskButtons.js:101
868
885
  msgid "Parent task"
869
886
  msgstr ""
870
887
 
@@ -888,35 +905,39 @@ msgstr ""
888
905
  msgid "Errors:"
889
906
  msgstr ""
890
907
 
891
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:59
908
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:52
909
+ msgid "Could not receive data: ${APIerror && APIerror.message}"
910
+ msgstr ""
911
+
912
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:61
892
913
  msgid "Task"
893
914
  msgstr ""
894
915
 
895
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:70
916
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:78
896
917
  msgid "Running Steps"
897
918
  msgstr ""
898
919
 
899
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:79
920
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:87
900
921
  msgid "Errors"
901
922
  msgstr ""
902
923
 
903
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:82
924
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:90
904
925
  msgid "Locks"
905
926
  msgstr ""
906
927
 
907
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:85
928
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:93
908
929
  msgid "Raw"
909
930
  msgstr ""
910
931
 
911
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:114
932
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:39
912
933
  msgid "Trying to cancel step"
913
934
  msgstr ""
914
935
 
915
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:120
936
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:45
916
937
  msgid "Step Canceled"
917
938
  msgstr ""
918
939
 
919
- #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:126
940
+ #: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:51
920
941
  msgid "Could not cancel step."
921
942
  msgstr ""
922
943
 
@@ -937,13 +958,23 @@ msgstr ""
937
958
 
938
959
  #:
939
960
  #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/ScheduledTasksCard/ScheduledTasksCard.js:40
940
- #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.js:51
961
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCardTable.js:77
941
962
  #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/TasksDonutChart/TasksDonutChartHelper.js:73
942
963
  msgid "Total"
943
964
  msgstr ""
944
965
 
945
966
  #:
946
- #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.js:44
967
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/OtherInfo.js:15
968
+ msgid "Other includes all stopped tasks that are cancelled or pending"
969
+ msgstr ""
970
+
971
+ #:
972
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/OtherInfo.js:32
973
+ msgid "Other:"
974
+ msgstr ""
975
+
976
+ #:
977
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/Components/TasksCardsGrid/Components/StoppedTasksCard/StoppedTasksCard.js:43
947
978
  msgid "Stopped"
948
979
  msgstr ""
949
980
 
@@ -973,82 +1004,87 @@ msgid "With focus on last"
973
1004
  msgstr ""
974
1005
 
975
1006
  #:
976
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:33
1007
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:34
977
1008
  msgid "state"
978
1009
  msgstr ""
979
1010
 
980
1011
  #:
981
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:34
1012
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:35
982
1013
  msgid "result"
983
1014
  msgstr ""
984
1015
 
985
1016
  #:
986
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:35
1017
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:36
987
1018
  msgid "mode"
988
1019
  msgstr ""
989
1020
 
990
1021
  #:
991
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:36
1022
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:37
992
1023
  msgid "time"
993
1024
  msgstr ""
994
1025
 
995
1026
  #:
996
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:40
1027
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:41
997
1028
  msgid "running"
998
1029
  msgstr ""
999
1030
 
1000
1031
  #:
1001
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:41
1032
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:42
1002
1033
  msgid "paused"
1003
1034
  msgstr ""
1004
1035
 
1005
1036
  #:
1006
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:42
1037
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:43
1007
1038
  msgid "stopped"
1008
1039
  msgstr ""
1009
1040
 
1010
1041
  #:
1011
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:43
1042
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:44
1012
1043
  msgid "scheduled"
1013
1044
  msgstr ""
1014
1045
 
1015
1046
  #:
1016
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:44
1047
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:45
1017
1048
  msgid "error"
1018
1049
  msgstr ""
1019
1050
 
1020
1051
  #:
1021
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:45
1052
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:46
1022
1053
  msgid "warning"
1023
1054
  msgstr ""
1024
1055
 
1025
1056
  #:
1026
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:46
1057
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:47
1027
1058
  msgid "success"
1028
1059
  msgstr ""
1029
1060
 
1030
1061
  #:
1031
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:47
1062
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:48
1063
+ msgid "other"
1064
+ msgstr ""
1065
+
1066
+ #:
1067
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:49
1032
1068
  msgid "last"
1033
1069
  msgstr ""
1034
1070
 
1035
1071
  #:
1036
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:48
1072
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:50
1037
1073
  msgid "older"
1038
1074
  msgstr ""
1039
1075
 
1040
1076
  #:
1041
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:49
1077
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:51
1042
1078
  msgid "24h"
1043
1079
  msgstr ""
1044
1080
 
1045
1081
  #:
1046
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:50
1082
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:52
1047
1083
  msgid "12h"
1048
1084
  msgstr ""
1049
1085
 
1050
1086
  #:
1051
- #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:51
1087
+ #: ../webpack/ForemanTasks/Components/TasksDashboard/TasksDashboardConstants.js:53
1052
1088
  msgid "week"
1053
1089
  msgstr ""
1054
1090
 
@@ -1151,15 +1187,15 @@ msgstr ""
1151
1187
  msgid "Canceling selected tasks, this might take a while"
1152
1188
  msgstr ""
1153
1189
 
1154
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:142
1190
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:144
1155
1191
  msgid "Not all the selected tasks can be cancelled"
1156
1192
  msgstr ""
1157
1193
 
1158
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:176
1194
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:178
1159
1195
  msgid "Cannot force cancel tasks at the moment"
1160
1196
  msgstr ""
1161
1197
 
1162
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:238
1198
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js:255
1163
1199
  msgid "Canceling with force selected tasks, this might take a while"
1164
1200
  msgstr ""
1165
1201
 
@@ -1171,23 +1207,27 @@ msgstr ""
1171
1207
  msgid "No Tasks"
1172
1208
  msgstr ""
1173
1209
 
1174
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:34
1210
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:26
1175
1211
  msgid "No start or end dates"
1176
1212
  msgstr ""
1177
1213
 
1178
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:37
1214
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:29
1179
1215
  msgid "Task was canceled"
1180
1216
  msgstr ""
1181
1217
 
1182
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:53
1218
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:45
1183
1219
  msgid "More than"
1184
1220
  msgstr ""
1185
1221
 
1186
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:62
1222
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:54
1187
1223
  msgid "Less than a second"
1188
1224
  msgstr ""
1189
1225
 
1190
- #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:69
1226
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:76
1227
+ msgid "Refresh Data"
1228
+ msgstr ""
1229
+
1230
+ #: ../webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js:81
1191
1231
  msgid "Export All"
1192
1232
  msgstr ""
1193
1233
 
@@ -1199,14 +1239,22 @@ msgstr ""
1199
1239
  msgid "Operation"
1200
1240
  msgstr ""
1201
1241
 
1202
- #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:14
1242
+ #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:15
1203
1243
  msgid "Task cannot be canceled"
1204
1244
  msgstr ""
1205
1245
 
1206
- #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:39
1246
+ #: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:41
1207
1247
  msgid "Force Cancel"
1208
1248
  msgstr ""
1209
1249
 
1210
1250
  #: action_names.rb:2
1251
+ msgid "Preupgrade job"
1252
+ msgstr ""
1253
+
1254
+ #: action_names.rb:3
1255
+ msgid "Remote action:"
1256
+ msgstr ""
1257
+
1258
+ #: action_names.rb:6
1211
1259
  msgid "Action with sub plans"
1212
1260
  msgstr ""