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