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