foreman-tasks 4.1.0 → 4.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/concerns/foreman_tasks/find_tasks_common.rb +14 -0
- data/app/controllers/foreman_tasks/api/tasks_controller.rb +4 -3
- data/app/controllers/foreman_tasks/tasks_controller.rb +3 -10
- data/app/lib/actions/middleware/load_setting_values.rb +35 -0
- data/app/lib/actions/middleware/watch_delegated_proxy_sub_tasks.rb +2 -6
- data/app/lib/actions/proxy_action.rb +1 -1
- data/app/models/foreman_tasks/task/dynflow_task.rb +8 -3
- data/lib/foreman_tasks/engine.rb +1 -0
- data/lib/foreman_tasks/tasks/export_tasks.rake +90 -46
- data/lib/foreman_tasks/version.rb +1 -1
- data/locale/action_names.rb +3 -2
- data/locale/en/foreman_tasks.po +60 -27
- data/locale/foreman_tasks.pot +180 -132
- data/locale/fr/foreman_tasks.po +61 -28
- data/locale/ja/foreman_tasks.po +61 -28
- data/locale/zh_CN/foreman_tasks.po +61 -28
- data/test/controllers/api/tasks_controller_test.rb +15 -0
- data/test/unit/actions/proxy_action_test.rb +3 -0
- data/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js +11 -4
- data/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.test.js +27 -5
- data/webpack/ForemanTasks/Components/TasksTable/TasksTable.js +8 -0
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js +6 -1
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js +2 -1
- data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js +22 -11
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableReducer.js +10 -2
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js +3 -0
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableHelpers.test.js +1 -1
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTablePage.test.js.snap +12 -2
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableReducer.test.js.snap +3 -0
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionHeaderCellFormatter.test.js.snap +1 -0
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionHeaderCellFormatter.test.js +1 -1
- data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionHeaderCellFormatter.js +1 -0
- data/webpack/ForemanTasks/Components/TasksTable/index.js +2 -0
- metadata +4 -5
- data/app/services/foreman_tasks/dashboard_table_filter.rb +0 -56
- data/test/unit/dashboard_table_filter_test.rb +0 -77
data/locale/foreman_tasks.pot
CHANGED
@@ -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:
|
12
|
-
"PO-Revision-Date:
|
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:
|
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:
|
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:
|
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:
|
62
|
-
|
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:
|
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:
|
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:
|
80
|
-
|
81
|
-
|
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:
|
96
|
-
msgid "
|
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:
|
100
|
-
msgid "
|
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:
|
104
|
-
msgid "
|
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 "
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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/
|
175
|
-
#: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:
|
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:
|
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/
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
463
|
-
#: ../webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js:
|
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:
|
447
|
+
#: ../app/models/foreman_tasks/task.rb:112
|
473
448
|
msgid "Delayed"
|
474
449
|
msgstr ""
|
475
450
|
|
476
|
-
#: ../app/models/foreman_tasks/task.rb:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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/
|
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/
|
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/
|
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/
|
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/
|
863
|
-
#: ../webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.js:
|
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/
|
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:
|
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:
|
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:
|
920
|
+
#: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:87
|
900
921
|
msgid "Errors"
|
901
922
|
msgstr ""
|
902
923
|
|
903
|
-
#: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:
|
924
|
+
#: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:90
|
904
925
|
msgid "Locks"
|
905
926
|
msgstr ""
|
906
927
|
|
907
|
-
#: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:
|
928
|
+
#: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetails.js:93
|
908
929
|
msgid "Raw"
|
909
930
|
msgstr ""
|
910
931
|
|
911
|
-
#: ../webpack/ForemanTasks/Components/TaskDetails/TaskDetailsActions.js:
|
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:
|
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:
|
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/
|
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/
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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 ""
|