foreman-tasks 4.0.0 → 5.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ruby_tests.yml +4 -3
- data/app/controllers/concerns/foreman_tasks/find_tasks_common.rb +14 -0
- data/app/controllers/foreman_tasks/api/tasks_controller.rb +4 -6
- data/app/controllers/foreman_tasks/tasks_controller.rb +3 -11
- data/app/graphql/types/recurring_logic.rb +18 -0
- data/app/graphql/types/task.rb +25 -0
- data/app/graphql/types/triggering.rb +16 -0
- data/app/lib/actions/helpers/with_continuous_output.rb +1 -1
- data/app/lib/actions/middleware/load_setting_values.rb +35 -0
- data/app/lib/actions/observable_action.rb +1 -1
- data/app/lib/actions/proxy_action.rb +2 -4
- data/app/models/foreman_tasks/recurring_logic.rb +2 -0
- data/app/models/foreman_tasks/task.rb +30 -2
- data/app/models/foreman_tasks/triggering.rb +2 -0
- data/db/migrate/20180927120509_add_user_id.foreman_tasks.rb +4 -2
- data/foreman-tasks.gemspec +0 -1
- data/lib/foreman_tasks.rb +2 -5
- data/lib/foreman_tasks/continuous_output.rb +50 -0
- data/lib/foreman_tasks/engine.rb +7 -15
- 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 +16 -1
- data/test/controllers/tasks_controller_test.rb +2 -2
- data/test/factories/task_factory.rb +31 -4
- data/test/graphql/queries/recurring_logic_test.rb +28 -0
- data/test/graphql/queries/recurring_logics_query_test.rb +30 -0
- data/test/graphql/queries/task_query_test.rb +33 -0
- data/test/graphql/queries/tasks_query_test.rb +31 -0
- data/test/unit/actions/proxy_action_test.rb +4 -1
- data/test/unit/task_test.rb +54 -23
- data/test/unit/triggering_test.rb +2 -2
- metadata +16 -26
- data/test/core/unit/dispatcher_test.rb +0 -43
- data/test/core/unit/runner_test.rb +0 -129
- data/test/core/unit/task_launcher_test.rb +0 -56
- data/test/foreman_tasks_core_test_helper.rb +0 -4
- data/test/unit/otp_manager_test.rb +0 -77
data/lib/foreman_tasks/engine.rb
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
require 'foreman_tasks_core'
|
2
1
|
require 'fast_gettext'
|
3
2
|
require 'gettext_i18n_rails'
|
4
3
|
|
@@ -34,7 +33,7 @@ module ForemanTasks
|
|
34
33
|
|
35
34
|
initializer 'foreman_tasks.register_plugin', :before => :finisher_hook do |_app|
|
36
35
|
Foreman::Plugin.register :"foreman-tasks" do
|
37
|
-
requires_foreman '>= 2.
|
36
|
+
requires_foreman '>= 2.6.0'
|
38
37
|
divider :top_menu, :parent => :monitor_menu, :last => true, :caption => N_('Foreman Tasks')
|
39
38
|
menu :top_menu, :tasks,
|
40
39
|
:url_hash => { :controller => 'foreman_tasks/tasks', :action => :index },
|
@@ -66,6 +65,11 @@ module ForemanTasks
|
|
66
65
|
|
67
66
|
add_all_permissions_to_default_roles
|
68
67
|
|
68
|
+
register_graphql_query_field :task, '::Types::Task', :record_field
|
69
|
+
register_graphql_query_field :tasks, '::Types::Task', :collection_field
|
70
|
+
register_graphql_query_field :recurring_logic, '::Types::RecurringLogic', :record_field
|
71
|
+
register_graphql_query_field :recurring_logics, '::Types::RecurringLogic', :collection_field
|
72
|
+
|
69
73
|
logger :dynflow, :enabled => true
|
70
74
|
logger :action, :enabled => true
|
71
75
|
|
@@ -114,19 +118,7 @@ module ForemanTasks
|
|
114
118
|
world.middleware.use Actions::Middleware::KeepCurrentUser, :before => ::Dynflow::Middleware::Common::Transaction
|
115
119
|
world.middleware.use Actions::Middleware::KeepCurrentTimezone
|
116
120
|
world.middleware.use Actions::Middleware::KeepCurrentRequestID
|
117
|
-
|
118
|
-
|
119
|
-
::ForemanTasks.dynflow.config.on_init do |world|
|
120
|
-
ForemanTasksCore.dynflow_setup(world)
|
121
|
-
end
|
122
|
-
end
|
123
|
-
|
124
|
-
initializer 'foreman_tasks.set_core_settings' do
|
125
|
-
ForemanTasksCore::SettingsLoader.settings_registry.each_key do |settings_keys|
|
126
|
-
settings = settings_keys.inject({}) do |h, settings_key|
|
127
|
-
h.merge(SETTINGS[settings_key] || {})
|
128
|
-
end
|
129
|
-
ForemanTasksCore::SettingsLoader.setup_settings(settings_keys.first, settings)
|
121
|
+
world.middleware.use ::Actions::Middleware::LoadSettingValues if Gem::Version.new(::SETTINGS[:version]) >= Gem::Version.new('2.5')
|
130
122
|
end
|
131
123
|
end
|
132
124
|
|
data/locale/action_names.rb
CHANGED
data/locale/en/foreman_tasks.po
CHANGED
@@ -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 "
|
397
|
+
msgid "Other includes all stopped tasks that are cancelled or pending"
|
401
398
|
msgstr ""
|
402
399
|
|
403
|
-
msgid "
|
400
|
+
msgid "Other:"
|
401
|
+
msgstr ""
|
402
|
+
|
403
|
+
msgid "Output"
|
404
404
|
msgstr ""
|
405
405
|
|
406
|
-
msgid "
|
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
|
478
|
+
msgid "Require auth for dynflow console"
|
461
479
|
msgstr ""
|
462
480
|
|
463
|
-
msgid "
|
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
|
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 "
|
553
|
+
msgid "Setting is off"
|
539
554
|
msgstr ""
|
540
555
|
|
541
|
-
msgid "
|
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
|
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
|
|
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 ""
|