foreman-tasks 12.0.0 → 12.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ruby_tests.yml +1 -0
- data/app/assets/javascripts/foreman-tasks/locale/de/foreman_tasks.js +58 -22
- data/app/assets/javascripts/foreman-tasks/locale/en/foreman_tasks.js +56 -20
- data/app/assets/javascripts/foreman-tasks/locale/es/foreman_tasks.js +59 -23
- data/app/assets/javascripts/foreman-tasks/locale/fr/foreman_tasks.js +61 -25
- data/app/assets/javascripts/foreman-tasks/locale/ja/foreman_tasks.js +61 -25
- data/app/assets/javascripts/foreman-tasks/locale/ka/foreman_tasks.js +60 -24
- data/app/assets/javascripts/foreman-tasks/locale/ko/foreman_tasks.js +61 -25
- data/app/assets/javascripts/foreman-tasks/locale/pt_BR/foreman_tasks.js +59 -23
- data/app/assets/javascripts/foreman-tasks/locale/ru/foreman_tasks.js +58 -22
- data/app/assets/javascripts/foreman-tasks/locale/zh_CN/foreman_tasks.js +61 -25
- data/app/assets/javascripts/foreman-tasks/locale/zh_TW/foreman_tasks.js +57 -21
- data/app/controllers/foreman_tasks/api/tasks_controller.rb +4 -19
- data/app/controllers/foreman_tasks/tasks_controller.rb +4 -5
- data/app/lib/actions/helpers/lock.rb +0 -6
- data/app/lib/actions/middleware/keep_current_user.rb +6 -12
- data/app/models/foreman_tasks/task.rb +1 -1
- data/app/views/foreman_tasks/api/tasks/dependency_summary.json.rabl +1 -3
- data/app/views/foreman_tasks/api/tasks/show.json.rabl +4 -1
- data/config/routes.rb +3 -3
- data/foreman-tasks.gemspec +3 -1
- data/lib/foreman_tasks/engine.rb +1 -1
- data/lib/foreman_tasks/tasks/export_tasks.rake +1 -1
- data/lib/foreman_tasks/version.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/de/foreman_tasks.po +59 -23
- data/locale/en/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/en/foreman_tasks.po +56 -20
- data/locale/es/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/es/foreman_tasks.po +59 -23
- data/locale/foreman_tasks.pot +173 -100
- data/locale/fr/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/fr/foreman_tasks.po +61 -25
- data/locale/ja/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/ja/foreman_tasks.po +61 -25
- data/locale/ka/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/ka/foreman_tasks.po +60 -24
- data/locale/ko/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/ko/foreman_tasks.po +61 -25
- data/locale/pt_BR/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/pt_BR/foreman_tasks.po +59 -23
- data/locale/ru/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/ru/foreman_tasks.po +58 -22
- data/locale/zh_CN/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/zh_CN/foreman_tasks.po +61 -25
- data/locale/zh_TW/LC_MESSAGES/foreman_tasks.mo +0 -0
- data/locale/zh_TW/foreman_tasks.po +57 -21
- data/test/controllers/api/tasks_controller_test.rb +29 -3
- data/test/controllers/tasks_controller_test.rb +46 -2
- data/webpack/ForemanTasks/Components/TaskActions/TaskAction.test.js +8 -0
- data/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js +8 -2
- data/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.test.js +25 -33
- data/webpack/ForemanTasks/Components/TaskActions/index.js +24 -3
- data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/TaskInfo.test.js.snap +6 -6
- data/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetailsActions.test.js +9 -0
- data/webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetailsActions.test.js.snap +16 -11
- data/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.js +2 -3
- data/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/__snapshots__/TasksTimeRow.test.js.snap +4 -8
- data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.js +2 -4
- data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.scss +0 -3
- data/webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboard.test.js.snap +2 -5
- data/webpack/ForemanTasks/Components/{common/ActionButtons/ActionButton.js → TasksTable/Components/CellActionButton.js} +36 -21
- data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/index.test.js +32 -29
- data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createBulkTaskModal.js +14 -18
- data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createTaskModal.js +13 -15
- data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js +7 -7
- data/webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js +16 -23
- data/webpack/ForemanTasks/Components/TasksTable/TasksColumns.js +56 -0
- data/webpack/ForemanTasks/Components/TasksTable/TasksIndexPage.js +277 -3
- data/webpack/ForemanTasks/Components/TasksTable/TasksModals.js +96 -0
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableConstants.js +10 -18
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js +3 -3
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksBulkActions.test.js +130 -63
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksIndexPage.test.js +315 -8
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.fixtures.js +214 -41
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableHelpers.test.js +20 -12
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksBulkActions.test.js.snap +18 -35
- data/webpack/ForemanTasks/ForemanTasksReducers.js +0 -4
- data/webpack/Routes/routes.js +22 -0
- data/webpack/Routes/routes.test.js +95 -0
- data/webpack/global_index.js +10 -0
- data/webpack/index.js +0 -18
- data/webpack/test_setup.js +1 -0
- metadata +15 -89
- data/app/controllers/foreman_tasks/react_controller.rb +0 -17
- data/app/views/foreman_tasks/layouts/react.html.erb +0 -13
- data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalSelectors.js +0 -30
- data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalSelectors.test.js +0 -66
- data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModalSelectors.test.js.snap +0 -33
- data/webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js +0 -49
- data/webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionCell.js +0 -32
- data/webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionHeaderCell.js +0 -38
- data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/SelectAllAlert.test.js +0 -29
- data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionCell.test.js +0 -15
- data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionHeaderCell.test.js +0 -15
- data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/SelectAllAlert.test.js.snap +0 -81
- data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionCell.test.js.snap +0 -14
- data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionHeaderCell.test.js.snap +0 -15
- data/webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js +0 -40
- data/webpack/ForemanTasks/Components/TasksTable/TasksTable.js +0 -163
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js +0 -108
- data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js +0 -234
- data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.scss +0 -20
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableReducer.js +0 -68
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js +0 -85
- data/webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js +0 -63
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/SubTasksPage.test.js +0 -20
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.test.js +0 -9
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActions.test.js +0 -65
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTablePage.test.js +0 -35
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableReducer.test.js +0 -87
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/SubTasksPage.test.js.snap +0 -48
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksIndexPage.test.js.snap +0 -39
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTable.test.js.snap +0 -52
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableActions.test.js.snap +0 -40
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTablePage.test.js.snap +0 -368
- data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableReducer.test.js.snap +0 -116
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionCellFormatter.test.js.snap +0 -15
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionNameCellFormatter.test.js.snap +0 -10
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/dateCellFormmatter.test.js.snap +0 -9
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/durationCellFormmatter.test.js.snap +0 -18
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionCellFormatter.test.js.snap +0 -12
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionHeaderCellFormatter.test.js.snap +0 -11
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionCellFormatter.test.js +0 -11
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionNameCellFormatter.test.js +0 -8
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/dateCellFormmatter.test.js +0 -7
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/durationCellFormmatter.test.js +0 -12
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionCellFormatter.test.js +0 -12
- data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionHeaderCellFormatter.test.js +0 -12
- data/webpack/ForemanTasks/Components/TasksTable/formatters/actionCellFormatter.js +0 -19
- data/webpack/ForemanTasks/Components/TasksTable/formatters/actionNameCellFormatter.js +0 -9
- data/webpack/ForemanTasks/Components/TasksTable/formatters/dateCellFormmatter.js +0 -7
- data/webpack/ForemanTasks/Components/TasksTable/formatters/durationCellFormmatter.js +0 -7
- data/webpack/ForemanTasks/Components/TasksTable/formatters/index.js +0 -7
- data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js +0 -17
- data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionHeaderCellFormatter.js +0 -11
- data/webpack/ForemanTasks/Components/TasksTable/index.js +0 -42
- data/webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.test.js +0 -101
- data/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap +0 -95
- data/webpack/ForemanTasks/ForemanTasks.js +0 -11
- data/webpack/ForemanTasks/ForemanTasks.test.js +0 -10
- data/webpack/ForemanTasks/Routes/ForemanTasksRouter.js +0 -14
- data/webpack/ForemanTasks/Routes/ForemanTasksRouter.test.js +0 -26
- data/webpack/ForemanTasks/Routes/ForemanTasksRoutes.js +0 -23
- data/webpack/ForemanTasks/Routes/ForemanTasksRoutes.test.js +0 -16
- data/webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRouter.test.js.snap +0 -16
- data/webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRoutes.test.js.snap +0 -37
- data/webpack/ForemanTasks/__snapshots__/ForemanTasks.test.js.snap +0 -7
- data/webpack/ForemanTasks/index.js +0 -1
- data/webpack/__mocks__/foremanReact/common/I18n.js +0 -7
- data/webpack/__mocks__/foremanReact/common/helpers.js +0 -6
- data/webpack/__mocks__/foremanReact/common/urlHelpers.js +0 -1
- data/webpack/__mocks__/foremanReact/components/Layout/LayoutActions.js +0 -2
- data/webpack/__mocks__/foremanReact/components/Pagination/index.js +0 -2
- data/webpack/__mocks__/foremanReact/components/ToastsList/index.js +0 -8
- data/webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js +0 -3
- data/webpack/__mocks__/foremanReact/components/common/MessageBox.js +0 -4
- data/webpack/__mocks__/foremanReact/components/common/dates/LongDateTime.js +0 -5
- data/webpack/__mocks__/foremanReact/components/common/dates/RelativeDateTime.js +0 -3
- data/webpack/__mocks__/foremanReact/components/common/table/actionsHelpers/actionTypeCreator.js +0 -7
- data/webpack/__mocks__/foremanReact/components/common/table.js +0 -5
- data/webpack/__mocks__/foremanReact/constants.js +0 -24
- data/webpack/__mocks__/foremanReact/redux/API/APISelectors.js +0 -10
- data/webpack/__mocks__/foremanReact/redux/API/index.js +0 -10
- data/webpack/__mocks__/foremanReact/redux/middlewares/IntervalMiddleware.js +0 -5
- data/webpack/__mocks__/foremanReact/routes/common/PageLayout/PageLayout.js +0 -10
- data/webpack/__mocks__/foremanReact/routes/common/PageLayout/components/ExportButton/ExportButton.js +0 -5
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"locale_data": {
|
|
4
4
|
"foreman_tasks": {
|
|
5
5
|
"": {
|
|
6
|
-
"Project-Id-Version": "foreman-tasks
|
|
6
|
+
"Project-Id-Version": "foreman-tasks 12.0.0",
|
|
7
7
|
"Report-Msgid-Bugs-To": "",
|
|
8
8
|
"PO-Revision-Date": "2016-02-12 14:04+0000",
|
|
9
9
|
"Last-Translator": "FULL NAME <EMAIL@ADDRESS>",
|
|
@@ -23,9 +23,6 @@
|
|
|
23
23
|
"%(older)s Older %(time)s": [
|
|
24
24
|
"%(older)s 이전 %(time)s"
|
|
25
25
|
],
|
|
26
|
-
"%s Selected Tasks": [
|
|
27
|
-
"%s 선택된 작업"
|
|
28
|
-
],
|
|
29
26
|
"%s is not valid format of cron line": [
|
|
30
27
|
"%s은(는) 유효한 cron 줄 형식이 아닙니다."
|
|
31
28
|
],
|
|
@@ -63,13 +60,13 @@
|
|
|
63
60
|
"동작 "
|
|
64
61
|
],
|
|
65
62
|
"Action with sub plans": [
|
|
66
|
-
""
|
|
63
|
+
"하위 계획이 있는 작업"
|
|
67
64
|
],
|
|
68
65
|
"Active": [
|
|
69
66
|
"활성"
|
|
70
67
|
],
|
|
71
|
-
"Active Filters
|
|
72
|
-
"
|
|
68
|
+
"Active Filters": [
|
|
69
|
+
""
|
|
73
70
|
],
|
|
74
71
|
"Active or disabled recurring logic with purpose %s already exists": [
|
|
75
72
|
"%s 목적이 있는 활성 또는 비활성화된 반복 논리가 이미 존재합니다"
|
|
@@ -98,6 +95,9 @@
|
|
|
98
95
|
"Backtrace": [
|
|
99
96
|
"역추적"
|
|
100
97
|
],
|
|
98
|
+
"Blocks": [
|
|
99
|
+
""
|
|
100
|
+
],
|
|
101
101
|
"Bulk action": [
|
|
102
102
|
"대량 작업 "
|
|
103
103
|
],
|
|
@@ -107,6 +107,12 @@
|
|
|
107
107
|
"Cancel Selected": [
|
|
108
108
|
"선택한 작업 취소"
|
|
109
109
|
],
|
|
110
|
+
"Cancel Selected Tasks": [
|
|
111
|
+
""
|
|
112
|
+
],
|
|
113
|
+
"Cancel Task": [
|
|
114
|
+
""
|
|
115
|
+
],
|
|
110
116
|
"Cancel enforced: the task might be still running on the proxy": [
|
|
111
117
|
"강제 취소됨: 프록시에서 태스크가 아직 실행 중일 수 있습니다."
|
|
112
118
|
],
|
|
@@ -116,9 +122,6 @@
|
|
|
116
122
|
"Cancel selected cancellable tasks": [
|
|
117
123
|
"선택한 취소 가능한 작업 취소"
|
|
118
124
|
],
|
|
119
|
-
"Cancel selected tasks": [
|
|
120
|
-
"선택한 작업 취소"
|
|
121
|
-
],
|
|
122
125
|
"Cancel specific tasks by ID": [
|
|
123
126
|
"ID로 특정 작업 취소"
|
|
124
127
|
],
|
|
@@ -152,9 +155,6 @@
|
|
|
152
155
|
"Check for long running tasks": [
|
|
153
156
|
"장기 실행 작업 확인"
|
|
154
157
|
],
|
|
155
|
-
"Clear All Filters": [
|
|
156
|
-
"모든 필터 지우기"
|
|
157
|
-
],
|
|
158
158
|
"Clear Cancelled": [
|
|
159
159
|
"삭제 취소됨"
|
|
160
160
|
],
|
|
@@ -197,6 +197,12 @@
|
|
|
197
197
|
"Deliver notifications about long running tasks": [
|
|
198
198
|
"장기 실행 작업에 대한 알림 전달"
|
|
199
199
|
],
|
|
200
|
+
"Dependencies": [
|
|
201
|
+
""
|
|
202
|
+
],
|
|
203
|
+
"Depends on": [
|
|
204
|
+
""
|
|
205
|
+
],
|
|
200
206
|
"Details": [
|
|
201
207
|
"상세 정보 "
|
|
202
208
|
],
|
|
@@ -275,12 +281,15 @@
|
|
|
275
281
|
"Force Cancel Selected": [
|
|
276
282
|
"선택한 작업 강제 취소"
|
|
277
283
|
],
|
|
278
|
-
"Force Cancel selected tasks": [
|
|
279
|
-
"선택한 작업 강제 취소"
|
|
280
|
-
],
|
|
281
284
|
"Force Unlock": [
|
|
282
285
|
"강제 잠금 해제"
|
|
283
286
|
],
|
|
287
|
+
"Force Unlock Selected Tasks": [
|
|
288
|
+
""
|
|
289
|
+
],
|
|
290
|
+
"Force Unlock Task": [
|
|
291
|
+
""
|
|
292
|
+
],
|
|
284
293
|
"Foreman Tasks": [
|
|
285
294
|
"Foreman 작업"
|
|
286
295
|
],
|
|
@@ -315,7 +324,7 @@
|
|
|
315
324
|
"입력"
|
|
316
325
|
],
|
|
317
326
|
"Invalid URL": [
|
|
318
|
-
""
|
|
327
|
+
"잘못된 URL입니다"
|
|
319
328
|
],
|
|
320
329
|
"Iteration limit": [
|
|
321
330
|
"반복 제한"
|
|
@@ -395,6 +404,9 @@
|
|
|
395
404
|
"No. of Tasks": [
|
|
396
405
|
"작업 수"
|
|
397
406
|
],
|
|
407
|
+
"None": [
|
|
408
|
+
""
|
|
409
|
+
],
|
|
398
410
|
"Not all the selected tasks can be cancelled": [
|
|
399
411
|
"선택한 모든 작업을 취소할 수 없습니다."
|
|
400
412
|
],
|
|
@@ -518,12 +530,15 @@
|
|
|
518
530
|
"Resume Selected": [
|
|
519
531
|
"선택한 작업 재개"
|
|
520
532
|
],
|
|
533
|
+
"Resume Selected Tasks": [
|
|
534
|
+
""
|
|
535
|
+
],
|
|
536
|
+
"Resume Task": [
|
|
537
|
+
""
|
|
538
|
+
],
|
|
521
539
|
"Resume all paused error tasks": [
|
|
522
540
|
"일시 정지된 모든 오류 태스크 다시 시작"
|
|
523
541
|
],
|
|
524
|
-
"Resume selected tasks": [
|
|
525
|
-
"선택한 작업 재개"
|
|
526
|
-
],
|
|
527
542
|
"Resume specific tasks by ID": [
|
|
528
543
|
"ID를 기준으로 특정 태스크 다시 시작"
|
|
529
544
|
],
|
|
@@ -557,9 +572,6 @@
|
|
|
557
572
|
"See %{link} for more details on how to resolve the issue": [
|
|
558
573
|
"문제를 해결하는 방법에 대한 자세한 내용은 %{link} 참조"
|
|
559
574
|
],
|
|
560
|
-
"Select Action": [
|
|
561
|
-
"작업 선택"
|
|
562
|
-
],
|
|
563
575
|
"Select all {count} tasks": [
|
|
564
576
|
"모든 {count} 작업 선택"
|
|
565
577
|
],
|
|
@@ -617,6 +629,9 @@
|
|
|
617
629
|
"Stopped": [
|
|
618
630
|
"중단됨"
|
|
619
631
|
],
|
|
632
|
+
"Stopped tasks by result": [
|
|
633
|
+
""
|
|
634
|
+
],
|
|
620
635
|
"Sub tasks": [
|
|
621
636
|
"하위 태스크"
|
|
622
637
|
],
|
|
@@ -650,6 +665,9 @@
|
|
|
650
665
|
"Task count": [
|
|
651
666
|
"태스크 수"
|
|
652
667
|
],
|
|
668
|
+
"Task dependencies": [
|
|
669
|
+
""
|
|
670
|
+
],
|
|
653
671
|
"Task group common": [
|
|
654
672
|
"작업 그룹 일반"
|
|
655
673
|
],
|
|
@@ -701,8 +719,26 @@
|
|
|
701
719
|
"This action will delete all cancelled recurring logics. Please note that this action can't be reversed.": [
|
|
702
720
|
"이 작업은 취소된 모든 반복 로직을 삭제합니다. 이 작업은 되돌릴 수 없습니다."
|
|
703
721
|
],
|
|
704
|
-
"This
|
|
705
|
-
"
|
|
722
|
+
"This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships.": [
|
|
723
|
+
""
|
|
724
|
+
],
|
|
725
|
+
"This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?": [
|
|
726
|
+
""
|
|
727
|
+
],
|
|
728
|
+
"This will cancel task \\\\\\\"%(taskName)s\\\\\\\", putting it in the stopped state. Are you sure?": [
|
|
729
|
+
""
|
|
730
|
+
],
|
|
731
|
+
"This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?": [
|
|
732
|
+
""
|
|
733
|
+
],
|
|
734
|
+
"This will force unlock task \\\\\\\"%(taskName)s\\\\\\\". This may cause harm and should be used with caution. Are you sure?": [
|
|
735
|
+
""
|
|
736
|
+
],
|
|
737
|
+
"This will resume %(number)s task(s), putting them in the running state. Are you sure?": [
|
|
738
|
+
""
|
|
739
|
+
],
|
|
740
|
+
"This will resume task \\\\\\\"%(taskName)s\\\\\\\", putting it in the running state. Are you sure?": [
|
|
741
|
+
""
|
|
706
742
|
],
|
|
707
743
|
"This will unlock the resources that the task is running against. Please note that this might lead to inconsistent state and should be used with caution, after making sure that the task can't be resumed.": [
|
|
708
744
|
"현재 태스크를 실행 중인 대상 리소스의 잠금을 해제합니다. 상태의 일관성이 저해될 수 있으므로 태스크가 다시 시작될 수 없는지를 확인한 후 신중하게 사용해야 합니다."
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"locale_data": {
|
|
4
4
|
"foreman_tasks": {
|
|
5
5
|
"": {
|
|
6
|
-
"Project-Id-Version": "foreman-tasks
|
|
6
|
+
"Project-Id-Version": "foreman-tasks 12.0.0",
|
|
7
7
|
"Report-Msgid-Bugs-To": "",
|
|
8
8
|
"PO-Revision-Date": "2016-02-12 14:04+0000",
|
|
9
9
|
"Last-Translator": "Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 2017-2018",
|
|
@@ -23,9 +23,6 @@
|
|
|
23
23
|
"%(older)s Older %(time)s": [
|
|
24
24
|
"mais antigo"
|
|
25
25
|
],
|
|
26
|
-
"%s Selected Tasks": [
|
|
27
|
-
"%s tarefas selecionadas"
|
|
28
|
-
],
|
|
29
26
|
"%s is not valid format of cron line": [
|
|
30
27
|
"%s não é um formato válido de cron line"
|
|
31
28
|
],
|
|
@@ -68,8 +65,8 @@
|
|
|
68
65
|
"Active": [
|
|
69
66
|
"Ativo"
|
|
70
67
|
],
|
|
71
|
-
"Active Filters
|
|
72
|
-
"
|
|
68
|
+
"Active Filters": [
|
|
69
|
+
""
|
|
73
70
|
],
|
|
74
71
|
"Active or disabled recurring logic with purpose %s already exists": [
|
|
75
72
|
"Lógica recorrente ativa ou desativada com finalidade %s já existe"
|
|
@@ -98,6 +95,9 @@
|
|
|
98
95
|
"Backtrace": [
|
|
99
96
|
"Backtrace"
|
|
100
97
|
],
|
|
98
|
+
"Blocks": [
|
|
99
|
+
""
|
|
100
|
+
],
|
|
101
101
|
"Bulk action": [
|
|
102
102
|
"Ação em Massa"
|
|
103
103
|
],
|
|
@@ -107,6 +107,12 @@
|
|
|
107
107
|
"Cancel Selected": [
|
|
108
108
|
"Cancelar selecionado"
|
|
109
109
|
],
|
|
110
|
+
"Cancel Selected Tasks": [
|
|
111
|
+
""
|
|
112
|
+
],
|
|
113
|
+
"Cancel Task": [
|
|
114
|
+
""
|
|
115
|
+
],
|
|
110
116
|
"Cancel enforced: the task might be still running on the proxy": [
|
|
111
117
|
"Cancelamento forçado: a tarefa ainda pode estar em execução no proxy "
|
|
112
118
|
],
|
|
@@ -116,9 +122,6 @@
|
|
|
116
122
|
"Cancel selected cancellable tasks": [
|
|
117
123
|
"Cancelar tarefas cancelaveis selecionadas"
|
|
118
124
|
],
|
|
119
|
-
"Cancel selected tasks": [
|
|
120
|
-
"Cancelar tarefas selecionadas"
|
|
121
|
-
],
|
|
122
125
|
"Cancel specific tasks by ID": [
|
|
123
126
|
"Cancelar tarefas específicas por ID"
|
|
124
127
|
],
|
|
@@ -152,9 +155,6 @@
|
|
|
152
155
|
"Check for long running tasks": [
|
|
153
156
|
""
|
|
154
157
|
],
|
|
155
|
-
"Clear All Filters": [
|
|
156
|
-
"Limpar todos os filtros"
|
|
157
|
-
],
|
|
158
158
|
"Clear Cancelled": [
|
|
159
159
|
"Limpar cancelado"
|
|
160
160
|
],
|
|
@@ -197,6 +197,12 @@
|
|
|
197
197
|
"Deliver notifications about long running tasks": [
|
|
198
198
|
""
|
|
199
199
|
],
|
|
200
|
+
"Dependencies": [
|
|
201
|
+
""
|
|
202
|
+
],
|
|
203
|
+
"Depends on": [
|
|
204
|
+
""
|
|
205
|
+
],
|
|
200
206
|
"Details": [
|
|
201
207
|
"Detalhes"
|
|
202
208
|
],
|
|
@@ -275,12 +281,15 @@
|
|
|
275
281
|
"Force Cancel Selected": [
|
|
276
282
|
"Forçar cancelamento de selecionado"
|
|
277
283
|
],
|
|
278
|
-
"Force Cancel selected tasks": [
|
|
279
|
-
"Forçar cancelamento das tarefas selecionadas"
|
|
280
|
-
],
|
|
281
284
|
"Force Unlock": [
|
|
282
285
|
"Forçar Desbloqueio"
|
|
283
286
|
],
|
|
287
|
+
"Force Unlock Selected Tasks": [
|
|
288
|
+
""
|
|
289
|
+
],
|
|
290
|
+
"Force Unlock Task": [
|
|
291
|
+
""
|
|
292
|
+
],
|
|
284
293
|
"Foreman Tasks": [
|
|
285
294
|
"Tarefas do Foreman"
|
|
286
295
|
],
|
|
@@ -395,6 +404,9 @@
|
|
|
395
404
|
"No. of Tasks": [
|
|
396
405
|
"Número de Tarefas"
|
|
397
406
|
],
|
|
407
|
+
"None": [
|
|
408
|
+
""
|
|
409
|
+
],
|
|
398
410
|
"Not all the selected tasks can be cancelled": [
|
|
399
411
|
"Nem todas as tarefas selecionadas podem ser canceladas"
|
|
400
412
|
],
|
|
@@ -518,12 +530,15 @@
|
|
|
518
530
|
"Resume Selected": [
|
|
519
531
|
"Retomar selecionado"
|
|
520
532
|
],
|
|
533
|
+
"Resume Selected Tasks": [
|
|
534
|
+
""
|
|
535
|
+
],
|
|
536
|
+
"Resume Task": [
|
|
537
|
+
""
|
|
538
|
+
],
|
|
521
539
|
"Resume all paused error tasks": [
|
|
522
540
|
"Retomar todas as tarefas com erro em pausa "
|
|
523
541
|
],
|
|
524
|
-
"Resume selected tasks": [
|
|
525
|
-
"Retomar tarefas selecionadas"
|
|
526
|
-
],
|
|
527
542
|
"Resume specific tasks by ID": [
|
|
528
543
|
"Retomar tarefas específicas por ID "
|
|
529
544
|
],
|
|
@@ -557,9 +572,6 @@
|
|
|
557
572
|
"See %{link} for more details on how to resolve the issue": [
|
|
558
573
|
"Veja %{link} para mais detalhes sobre como resolver a questão"
|
|
559
574
|
],
|
|
560
|
-
"Select Action": [
|
|
561
|
-
"Selecionar Ação"
|
|
562
|
-
],
|
|
563
575
|
"Select all {count} tasks": [
|
|
564
576
|
""
|
|
565
577
|
],
|
|
@@ -617,6 +629,9 @@
|
|
|
617
629
|
"Stopped": [
|
|
618
630
|
"Parado"
|
|
619
631
|
],
|
|
632
|
+
"Stopped tasks by result": [
|
|
633
|
+
""
|
|
634
|
+
],
|
|
620
635
|
"Sub tasks": [
|
|
621
636
|
"Subtarefas "
|
|
622
637
|
],
|
|
@@ -650,6 +665,9 @@
|
|
|
650
665
|
"Task count": [
|
|
651
666
|
"Contagem de Tarefas"
|
|
652
667
|
],
|
|
668
|
+
"Task dependencies": [
|
|
669
|
+
""
|
|
670
|
+
],
|
|
653
671
|
"Task group common": [
|
|
654
672
|
"Grupo de tarefas comuns"
|
|
655
673
|
],
|
|
@@ -703,8 +721,26 @@
|
|
|
703
721
|
"This action will delete all cancelled recurring logics. Please note that this action can't be reversed.": [
|
|
704
722
|
"Esta ação excluirá todas as lógicas recorrentes canceladas. Observe que não é possível reverter essa ação."
|
|
705
723
|
],
|
|
706
|
-
"This
|
|
707
|
-
"
|
|
724
|
+
"This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships.": [
|
|
725
|
+
""
|
|
726
|
+
],
|
|
727
|
+
"This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?": [
|
|
728
|
+
""
|
|
729
|
+
],
|
|
730
|
+
"This will cancel task \\\\\\\"%(taskName)s\\\\\\\", putting it in the stopped state. Are you sure?": [
|
|
731
|
+
""
|
|
732
|
+
],
|
|
733
|
+
"This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?": [
|
|
734
|
+
""
|
|
735
|
+
],
|
|
736
|
+
"This will force unlock task \\\\\\\"%(taskName)s\\\\\\\". This may cause harm and should be used with caution. Are you sure?": [
|
|
737
|
+
""
|
|
738
|
+
],
|
|
739
|
+
"This will resume %(number)s task(s), putting them in the running state. Are you sure?": [
|
|
740
|
+
""
|
|
741
|
+
],
|
|
742
|
+
"This will resume task \\\\\\\"%(taskName)s\\\\\\\", putting it in the running state. Are you sure?": [
|
|
743
|
+
""
|
|
708
744
|
],
|
|
709
745
|
"This will unlock the resources that the task is running against. Please note that this might lead to inconsistent state and should be used with caution, after making sure that the task can't be resumed.": [
|
|
710
746
|
"Desbloqueará os recursos executados pela tarefa. Por favor, observe que isto pode gerar um estado inconsistente e deve ser usado com cuidado, após certificar-se de que a tarefa não pode ser restaurada. "
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"locale_data": {
|
|
4
4
|
"foreman_tasks": {
|
|
5
5
|
"": {
|
|
6
|
-
"Project-Id-Version": "foreman-tasks
|
|
6
|
+
"Project-Id-Version": "foreman-tasks 12.0.0",
|
|
7
7
|
"Report-Msgid-Bugs-To": "",
|
|
8
8
|
"PO-Revision-Date": "2016-02-12 14:04+0000",
|
|
9
9
|
"Last-Translator": "Yulia <yulia.poyarkova@redhat.com>, 2016",
|
|
@@ -23,9 +23,6 @@
|
|
|
23
23
|
"%(older)s Older %(time)s": [
|
|
24
24
|
""
|
|
25
25
|
],
|
|
26
|
-
"%s Selected Tasks": [
|
|
27
|
-
""
|
|
28
|
-
],
|
|
29
26
|
"%s is not valid format of cron line": [
|
|
30
27
|
"Недопустимый формат cron: %s"
|
|
31
28
|
],
|
|
@@ -63,12 +60,12 @@
|
|
|
63
60
|
"Действие"
|
|
64
61
|
],
|
|
65
62
|
"Action with sub plans": [
|
|
66
|
-
""
|
|
63
|
+
"Действия над подпланами"
|
|
67
64
|
],
|
|
68
65
|
"Active": [
|
|
69
66
|
"Активно"
|
|
70
67
|
],
|
|
71
|
-
"Active Filters
|
|
68
|
+
"Active Filters": [
|
|
72
69
|
""
|
|
73
70
|
],
|
|
74
71
|
"Active or disabled recurring logic with purpose %s already exists": [
|
|
@@ -98,6 +95,9 @@
|
|
|
98
95
|
"Backtrace": [
|
|
99
96
|
"Стек вызовов"
|
|
100
97
|
],
|
|
98
|
+
"Blocks": [
|
|
99
|
+
""
|
|
100
|
+
],
|
|
101
101
|
"Bulk action": [
|
|
102
102
|
"Групповое действие"
|
|
103
103
|
],
|
|
@@ -107,6 +107,12 @@
|
|
|
107
107
|
"Cancel Selected": [
|
|
108
108
|
""
|
|
109
109
|
],
|
|
110
|
+
"Cancel Selected Tasks": [
|
|
111
|
+
""
|
|
112
|
+
],
|
|
113
|
+
"Cancel Task": [
|
|
114
|
+
""
|
|
115
|
+
],
|
|
110
116
|
"Cancel enforced: the task might be still running on the proxy": [
|
|
111
117
|
"Принудительная отмена: возможно, задача продолжает выполнение на прокси."
|
|
112
118
|
],
|
|
@@ -116,9 +122,6 @@
|
|
|
116
122
|
"Cancel selected cancellable tasks": [
|
|
117
123
|
""
|
|
118
124
|
],
|
|
119
|
-
"Cancel selected tasks": [
|
|
120
|
-
""
|
|
121
|
-
],
|
|
122
125
|
"Cancel specific tasks by ID": [
|
|
123
126
|
""
|
|
124
127
|
],
|
|
@@ -152,9 +155,6 @@
|
|
|
152
155
|
"Check for long running tasks": [
|
|
153
156
|
""
|
|
154
157
|
],
|
|
155
|
-
"Clear All Filters": [
|
|
156
|
-
""
|
|
157
|
-
],
|
|
158
158
|
"Clear Cancelled": [
|
|
159
159
|
""
|
|
160
160
|
],
|
|
@@ -197,6 +197,12 @@
|
|
|
197
197
|
"Deliver notifications about long running tasks": [
|
|
198
198
|
""
|
|
199
199
|
],
|
|
200
|
+
"Dependencies": [
|
|
201
|
+
""
|
|
202
|
+
],
|
|
203
|
+
"Depends on": [
|
|
204
|
+
""
|
|
205
|
+
],
|
|
200
206
|
"Details": [
|
|
201
207
|
"Свойства"
|
|
202
208
|
],
|
|
@@ -275,12 +281,15 @@
|
|
|
275
281
|
"Force Cancel Selected": [
|
|
276
282
|
""
|
|
277
283
|
],
|
|
278
|
-
"Force Cancel selected tasks": [
|
|
279
|
-
""
|
|
280
|
-
],
|
|
281
284
|
"Force Unlock": [
|
|
282
285
|
"Принудительно разблокировать"
|
|
283
286
|
],
|
|
287
|
+
"Force Unlock Selected Tasks": [
|
|
288
|
+
""
|
|
289
|
+
],
|
|
290
|
+
"Force Unlock Task": [
|
|
291
|
+
""
|
|
292
|
+
],
|
|
284
293
|
"Foreman Tasks": [
|
|
285
294
|
""
|
|
286
295
|
],
|
|
@@ -395,6 +404,9 @@
|
|
|
395
404
|
"No. of Tasks": [
|
|
396
405
|
"Число задач"
|
|
397
406
|
],
|
|
407
|
+
"None": [
|
|
408
|
+
""
|
|
409
|
+
],
|
|
398
410
|
"Not all the selected tasks can be cancelled": [
|
|
399
411
|
""
|
|
400
412
|
],
|
|
@@ -518,12 +530,15 @@
|
|
|
518
530
|
"Resume Selected": [
|
|
519
531
|
""
|
|
520
532
|
],
|
|
521
|
-
"Resume
|
|
522
|
-
"
|
|
533
|
+
"Resume Selected Tasks": [
|
|
534
|
+
""
|
|
523
535
|
],
|
|
524
|
-
"Resume
|
|
536
|
+
"Resume Task": [
|
|
525
537
|
""
|
|
526
538
|
],
|
|
539
|
+
"Resume all paused error tasks": [
|
|
540
|
+
"Возобновить все приостановленные задачи"
|
|
541
|
+
],
|
|
527
542
|
"Resume specific tasks by ID": [
|
|
528
543
|
"Возобновить выборочные задачи по идентификатору"
|
|
529
544
|
],
|
|
@@ -557,9 +572,6 @@
|
|
|
557
572
|
"See %{link} for more details on how to resolve the issue": [
|
|
558
573
|
""
|
|
559
574
|
],
|
|
560
|
-
"Select Action": [
|
|
561
|
-
"Действия"
|
|
562
|
-
],
|
|
563
575
|
"Select all {count} tasks": [
|
|
564
576
|
""
|
|
565
577
|
],
|
|
@@ -617,6 +629,9 @@
|
|
|
617
629
|
"Stopped": [
|
|
618
630
|
""
|
|
619
631
|
],
|
|
632
|
+
"Stopped tasks by result": [
|
|
633
|
+
""
|
|
634
|
+
],
|
|
620
635
|
"Sub tasks": [
|
|
621
636
|
"Подзадачи"
|
|
622
637
|
],
|
|
@@ -650,6 +665,9 @@
|
|
|
650
665
|
"Task count": [
|
|
651
666
|
"Количество задач"
|
|
652
667
|
],
|
|
668
|
+
"Task dependencies": [
|
|
669
|
+
""
|
|
670
|
+
],
|
|
653
671
|
"Task group common": [
|
|
654
672
|
"Общие для групп"
|
|
655
673
|
],
|
|
@@ -702,7 +720,25 @@
|
|
|
702
720
|
"This action will delete all cancelled recurring logics. Please note that this action can't be reversed.": [
|
|
703
721
|
""
|
|
704
722
|
],
|
|
705
|
-
"This
|
|
723
|
+
"This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships.": [
|
|
724
|
+
""
|
|
725
|
+
],
|
|
726
|
+
"This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?": [
|
|
727
|
+
""
|
|
728
|
+
],
|
|
729
|
+
"This will cancel task \\\\\\\"%(taskName)s\\\\\\\", putting it in the stopped state. Are you sure?": [
|
|
730
|
+
""
|
|
731
|
+
],
|
|
732
|
+
"This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?": [
|
|
733
|
+
""
|
|
734
|
+
],
|
|
735
|
+
"This will force unlock task \\\\\\\"%(taskName)s\\\\\\\". This may cause harm and should be used with caution. Are you sure?": [
|
|
736
|
+
""
|
|
737
|
+
],
|
|
738
|
+
"This will resume %(number)s task(s), putting them in the running state. Are you sure?": [
|
|
739
|
+
""
|
|
740
|
+
],
|
|
741
|
+
"This will resume task \\\\\\\"%(taskName)s\\\\\\\", putting it in the running state. Are you sure?": [
|
|
706
742
|
""
|
|
707
743
|
],
|
|
708
744
|
"This will unlock the resources that the task is running against. Please note that this might lead to inconsistent state and should be used with caution, after making sure that the task can't be resumed.": [
|