foreman-tasks 12.0.0 → 12.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (166) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby_tests.yml +1 -0
  3. data/app/assets/javascripts/foreman-tasks/locale/de/foreman_tasks.js +58 -22
  4. data/app/assets/javascripts/foreman-tasks/locale/en/foreman_tasks.js +56 -20
  5. data/app/assets/javascripts/foreman-tasks/locale/es/foreman_tasks.js +59 -23
  6. data/app/assets/javascripts/foreman-tasks/locale/fr/foreman_tasks.js +61 -25
  7. data/app/assets/javascripts/foreman-tasks/locale/ja/foreman_tasks.js +61 -25
  8. data/app/assets/javascripts/foreman-tasks/locale/ka/foreman_tasks.js +60 -24
  9. data/app/assets/javascripts/foreman-tasks/locale/ko/foreman_tasks.js +61 -25
  10. data/app/assets/javascripts/foreman-tasks/locale/pt_BR/foreman_tasks.js +59 -23
  11. data/app/assets/javascripts/foreman-tasks/locale/ru/foreman_tasks.js +58 -22
  12. data/app/assets/javascripts/foreman-tasks/locale/zh_CN/foreman_tasks.js +61 -25
  13. data/app/assets/javascripts/foreman-tasks/locale/zh_TW/foreman_tasks.js +57 -21
  14. data/app/controllers/foreman_tasks/api/tasks_controller.rb +4 -19
  15. data/app/controllers/foreman_tasks/tasks_controller.rb +4 -5
  16. data/app/models/foreman_tasks/task.rb +1 -1
  17. data/app/views/foreman_tasks/api/tasks/dependency_summary.json.rabl +1 -3
  18. data/app/views/foreman_tasks/api/tasks/show.json.rabl +4 -1
  19. data/config/routes.rb +3 -3
  20. data/foreman-tasks.gemspec +3 -1
  21. data/lib/foreman_tasks/engine.rb +1 -1
  22. data/lib/foreman_tasks/tasks/export_tasks.rake +1 -1
  23. data/lib/foreman_tasks/version.rb +1 -1
  24. data/locale/de/LC_MESSAGES/foreman_tasks.mo +0 -0
  25. data/locale/de/foreman_tasks.po +59 -23
  26. data/locale/en/LC_MESSAGES/foreman_tasks.mo +0 -0
  27. data/locale/en/foreman_tasks.po +56 -20
  28. data/locale/es/LC_MESSAGES/foreman_tasks.mo +0 -0
  29. data/locale/es/foreman_tasks.po +59 -23
  30. data/locale/foreman_tasks.pot +173 -100
  31. data/locale/fr/LC_MESSAGES/foreman_tasks.mo +0 -0
  32. data/locale/fr/foreman_tasks.po +61 -25
  33. data/locale/ja/LC_MESSAGES/foreman_tasks.mo +0 -0
  34. data/locale/ja/foreman_tasks.po +61 -25
  35. data/locale/ka/LC_MESSAGES/foreman_tasks.mo +0 -0
  36. data/locale/ka/foreman_tasks.po +60 -24
  37. data/locale/ko/LC_MESSAGES/foreman_tasks.mo +0 -0
  38. data/locale/ko/foreman_tasks.po +61 -25
  39. data/locale/pt_BR/LC_MESSAGES/foreman_tasks.mo +0 -0
  40. data/locale/pt_BR/foreman_tasks.po +59 -23
  41. data/locale/ru/LC_MESSAGES/foreman_tasks.mo +0 -0
  42. data/locale/ru/foreman_tasks.po +58 -22
  43. data/locale/zh_CN/LC_MESSAGES/foreman_tasks.mo +0 -0
  44. data/locale/zh_CN/foreman_tasks.po +61 -25
  45. data/locale/zh_TW/LC_MESSAGES/foreman_tasks.mo +0 -0
  46. data/locale/zh_TW/foreman_tasks.po +57 -21
  47. data/test/controllers/api/tasks_controller_test.rb +29 -3
  48. data/test/controllers/tasks_controller_test.rb +46 -2
  49. data/webpack/ForemanTasks/Components/TaskActions/TaskAction.test.js +8 -0
  50. data/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.js +8 -2
  51. data/webpack/ForemanTasks/Components/TaskActions/TaskActionHelpers.test.js +25 -33
  52. data/webpack/ForemanTasks/Components/TaskActions/index.js +24 -3
  53. data/webpack/ForemanTasks/Components/TaskDetails/Components/__tests__/__snapshots__/TaskInfo.test.js.snap +6 -6
  54. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/TaskDetailsActions.test.js +9 -0
  55. data/webpack/ForemanTasks/Components/TaskDetails/__tests__/__snapshots__/TaskDetailsActions.test.js.snap +16 -11
  56. data/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/TasksTimeRow.js +2 -3
  57. data/webpack/ForemanTasks/Components/TasksDashboard/Components/TasksTimeRow/__snapshots__/TasksTimeRow.test.js.snap +4 -8
  58. data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.js +2 -4
  59. data/webpack/ForemanTasks/Components/TasksDashboard/TasksDashboard.scss +0 -3
  60. data/webpack/ForemanTasks/Components/TasksDashboard/__tests__/__snapshots__/TasksDashboard.test.js.snap +2 -5
  61. data/webpack/ForemanTasks/Components/{common/ActionButtons/ActionButton.js → TasksTable/Components/CellActionButton.js} +36 -21
  62. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/index.test.js +32 -29
  63. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createBulkTaskModal.js +14 -18
  64. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/createTaskModal.js +13 -15
  65. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/index.js +7 -7
  66. data/webpack/ForemanTasks/Components/TasksTable/TasksBulkActions.js +16 -23
  67. data/webpack/ForemanTasks/Components/TasksTable/TasksColumns.js +56 -0
  68. data/webpack/ForemanTasks/Components/TasksTable/TasksIndexPage.js +277 -3
  69. data/webpack/ForemanTasks/Components/TasksTable/TasksModals.js +96 -0
  70. data/webpack/ForemanTasks/Components/TasksTable/TasksTableConstants.js +10 -18
  71. data/webpack/ForemanTasks/Components/TasksTable/TasksTableHelpers.js +3 -3
  72. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksBulkActions.test.js +130 -63
  73. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksIndexPage.test.js +315 -8
  74. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.fixtures.js +214 -41
  75. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableHelpers.test.js +20 -12
  76. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksBulkActions.test.js.snap +18 -35
  77. data/webpack/ForemanTasks/ForemanTasksReducers.js +0 -4
  78. data/webpack/Routes/routes.js +22 -0
  79. data/webpack/Routes/routes.test.js +95 -0
  80. data/webpack/global_index.js +10 -0
  81. data/webpack/index.js +0 -18
  82. data/webpack/test_setup.js +1 -0
  83. metadata +15 -89
  84. data/app/controllers/foreman_tasks/react_controller.rb +0 -17
  85. data/app/views/foreman_tasks/layouts/react.html.erb +0 -13
  86. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/ConfirmModalSelectors.js +0 -30
  87. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/ConfirmModalSelectors.test.js +0 -66
  88. data/webpack/ForemanTasks/Components/TasksTable/Components/ConfirmModal/__test__/__snapshots__/ConfirmModalSelectors.test.js.snap +0 -33
  89. data/webpack/ForemanTasks/Components/TasksTable/Components/SelectAllAlert.js +0 -49
  90. data/webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionCell.js +0 -32
  91. data/webpack/ForemanTasks/Components/TasksTable/Components/TableSelectionHeaderCell.js +0 -38
  92. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/SelectAllAlert.test.js +0 -29
  93. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionCell.test.js +0 -15
  94. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/TableSelectionHeaderCell.test.js +0 -15
  95. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/SelectAllAlert.test.js.snap +0 -81
  96. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionCell.test.js.snap +0 -14
  97. data/webpack/ForemanTasks/Components/TasksTable/Components/__test__/__snapshots__/TableSelectionHeaderCell.test.js.snap +0 -15
  98. data/webpack/ForemanTasks/Components/TasksTable/SubTasksPage.js +0 -40
  99. data/webpack/ForemanTasks/Components/TasksTable/TasksTable.js +0 -163
  100. data/webpack/ForemanTasks/Components/TasksTable/TasksTableActions.js +0 -108
  101. data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.js +0 -234
  102. data/webpack/ForemanTasks/Components/TasksTable/TasksTablePage.scss +0 -20
  103. data/webpack/ForemanTasks/Components/TasksTable/TasksTableReducer.js +0 -68
  104. data/webpack/ForemanTasks/Components/TasksTable/TasksTableSchema.js +0 -85
  105. data/webpack/ForemanTasks/Components/TasksTable/TasksTableSelectors.js +0 -63
  106. data/webpack/ForemanTasks/Components/TasksTable/__tests__/SubTasksPage.test.js +0 -20
  107. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTable.test.js +0 -9
  108. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableActions.test.js +0 -65
  109. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTablePage.test.js +0 -35
  110. data/webpack/ForemanTasks/Components/TasksTable/__tests__/TasksTableReducer.test.js +0 -87
  111. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/SubTasksPage.test.js.snap +0 -48
  112. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksIndexPage.test.js.snap +0 -39
  113. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTable.test.js.snap +0 -52
  114. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableActions.test.js.snap +0 -40
  115. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTablePage.test.js.snap +0 -368
  116. data/webpack/ForemanTasks/Components/TasksTable/__tests__/__snapshots__/TasksTableReducer.test.js.snap +0 -116
  117. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionCellFormatter.test.js.snap +0 -15
  118. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/actionNameCellFormatter.test.js.snap +0 -10
  119. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/dateCellFormmatter.test.js.snap +0 -9
  120. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/durationCellFormmatter.test.js.snap +0 -18
  121. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionCellFormatter.test.js.snap +0 -12
  122. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/__snapshots__/selectionHeaderCellFormatter.test.js.snap +0 -11
  123. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionCellFormatter.test.js +0 -11
  124. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/actionNameCellFormatter.test.js +0 -8
  125. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/dateCellFormmatter.test.js +0 -7
  126. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/durationCellFormmatter.test.js +0 -12
  127. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionCellFormatter.test.js +0 -12
  128. data/webpack/ForemanTasks/Components/TasksTable/formatters/__test__/selectionHeaderCellFormatter.test.js +0 -12
  129. data/webpack/ForemanTasks/Components/TasksTable/formatters/actionCellFormatter.js +0 -19
  130. data/webpack/ForemanTasks/Components/TasksTable/formatters/actionNameCellFormatter.js +0 -9
  131. data/webpack/ForemanTasks/Components/TasksTable/formatters/dateCellFormmatter.js +0 -7
  132. data/webpack/ForemanTasks/Components/TasksTable/formatters/durationCellFormmatter.js +0 -7
  133. data/webpack/ForemanTasks/Components/TasksTable/formatters/index.js +0 -7
  134. data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionCellFormatter.js +0 -17
  135. data/webpack/ForemanTasks/Components/TasksTable/formatters/selectionHeaderCellFormatter.js +0 -11
  136. data/webpack/ForemanTasks/Components/TasksTable/index.js +0 -42
  137. data/webpack/ForemanTasks/Components/common/ActionButtons/ActionButton.test.js +0 -101
  138. data/webpack/ForemanTasks/Components/common/ActionButtons/__snapshots__/ActionButton.test.js.snap +0 -95
  139. data/webpack/ForemanTasks/ForemanTasks.js +0 -11
  140. data/webpack/ForemanTasks/ForemanTasks.test.js +0 -10
  141. data/webpack/ForemanTasks/Routes/ForemanTasksRouter.js +0 -14
  142. data/webpack/ForemanTasks/Routes/ForemanTasksRouter.test.js +0 -26
  143. data/webpack/ForemanTasks/Routes/ForemanTasksRoutes.js +0 -23
  144. data/webpack/ForemanTasks/Routes/ForemanTasksRoutes.test.js +0 -16
  145. data/webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRouter.test.js.snap +0 -16
  146. data/webpack/ForemanTasks/Routes/__snapshots__/ForemanTasksRoutes.test.js.snap +0 -37
  147. data/webpack/ForemanTasks/__snapshots__/ForemanTasks.test.js.snap +0 -7
  148. data/webpack/ForemanTasks/index.js +0 -1
  149. data/webpack/__mocks__/foremanReact/common/I18n.js +0 -7
  150. data/webpack/__mocks__/foremanReact/common/helpers.js +0 -6
  151. data/webpack/__mocks__/foremanReact/common/urlHelpers.js +0 -1
  152. data/webpack/__mocks__/foremanReact/components/Layout/LayoutActions.js +0 -2
  153. data/webpack/__mocks__/foremanReact/components/Pagination/index.js +0 -2
  154. data/webpack/__mocks__/foremanReact/components/ToastsList/index.js +0 -8
  155. data/webpack/__mocks__/foremanReact/components/common/ActionButtons/ActionButtons.js +0 -3
  156. data/webpack/__mocks__/foremanReact/components/common/MessageBox.js +0 -4
  157. data/webpack/__mocks__/foremanReact/components/common/dates/LongDateTime.js +0 -5
  158. data/webpack/__mocks__/foremanReact/components/common/dates/RelativeDateTime.js +0 -3
  159. data/webpack/__mocks__/foremanReact/components/common/table/actionsHelpers/actionTypeCreator.js +0 -7
  160. data/webpack/__mocks__/foremanReact/components/common/table.js +0 -5
  161. data/webpack/__mocks__/foremanReact/constants.js +0 -24
  162. data/webpack/__mocks__/foremanReact/redux/API/APISelectors.js +0 -10
  163. data/webpack/__mocks__/foremanReact/redux/API/index.js +0 -10
  164. data/webpack/__mocks__/foremanReact/redux/middlewares/IntervalMiddleware.js +0 -5
  165. data/webpack/__mocks__/foremanReact/routes/common/PageLayout/PageLayout.js +0 -10
  166. data/webpack/__mocks__/foremanReact/routes/common/PageLayout/components/ExportButton/ExportButton.js +0 -5
@@ -5,7 +5,7 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman-tasks 11.0.5\n"
8
+ "Project-Id-Version: foreman-tasks 12.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
10
  "PO-Revision-Date: 2016-02-12 14:04+0000\n"
11
11
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
@@ -22,9 +22,6 @@ msgstr "%(last)s 마지막 %(time)s"
22
22
  msgid "%(older)s Older %(time)s"
23
23
  msgstr "%(older)s 이전 %(time)s"
24
24
 
25
- msgid "%s Selected Tasks"
26
- msgstr "%s 선택된 작업"
27
-
28
25
  msgid "%s is not valid format of cron line"
29
26
  msgstr "%s은(는) 유효한 cron 줄 형식이 아닙니다."
30
27
 
@@ -62,13 +59,13 @@ msgid "Action"
62
59
  msgstr "동작 "
63
60
 
64
61
  msgid "Action with sub plans"
65
- msgstr ""
62
+ msgstr "하위 계획이 있는 작업"
66
63
 
67
64
  msgid "Active"
68
65
  msgstr "활성"
69
66
 
70
- msgid "Active Filters:"
71
- msgstr "활성 필터:"
67
+ msgid "Active Filters"
68
+ msgstr ""
72
69
 
73
70
  msgid "Active or disabled recurring logic with purpose %s already exists"
74
71
  msgstr "%s 목적이 있는 활성 또는 비활성화된 반복 논리가 이미 존재합니다"
@@ -98,6 +95,9 @@ msgstr "작업으로 돌아가기"
98
95
  msgid "Backtrace"
99
96
  msgstr "역추적"
100
97
 
98
+ msgid "Blocks"
99
+ msgstr ""
100
+
101
101
  msgid "Bulk action"
102
102
  msgstr "대량 작업 "
103
103
 
@@ -107,6 +107,12 @@ msgstr "취소 "
107
107
  msgid "Cancel Selected"
108
108
  msgstr "선택한 작업 취소"
109
109
 
110
+ msgid "Cancel Selected Tasks"
111
+ msgstr ""
112
+
113
+ msgid "Cancel Task"
114
+ msgstr ""
115
+
110
116
  msgid "Cancel enforced: the task might be still running on the proxy"
111
117
  msgstr "강제 취소됨: 프록시에서 태스크가 아직 실행 중일 수 있습니다."
112
118
 
@@ -116,9 +122,6 @@ msgstr "반복 로직 취소"
116
122
  msgid "Cancel selected cancellable tasks"
117
123
  msgstr "선택한 취소 가능한 작업 취소"
118
124
 
119
- msgid "Cancel selected tasks"
120
- msgstr "선택한 작업 취소"
121
-
122
125
  msgid "Cancel specific tasks by ID"
123
126
  msgstr "ID로 특정 작업 취소"
124
127
 
@@ -152,9 +155,6 @@ msgstr "요청 ID %{request_id}를 저장된 ID %{saved_id}로 변경"
152
155
  msgid "Check for long running tasks"
153
156
  msgstr "장기 실행 작업 확인"
154
157
 
155
- msgid "Clear All Filters"
156
- msgstr "모든 필터 지우기"
157
-
158
158
  msgid "Clear Cancelled"
159
159
  msgstr "삭제 취소됨"
160
160
 
@@ -197,6 +197,12 @@ msgstr "검색 쿼리로 반복되는 로직 삭제"
197
197
  msgid "Deliver notifications about long running tasks"
198
198
  msgstr "장기 실행 작업에 대한 알림 전달"
199
199
 
200
+ msgid "Dependencies"
201
+ msgstr ""
202
+
203
+ msgid "Depends on"
204
+ msgstr ""
205
+
200
206
  msgid "Details"
201
207
  msgstr "상세 정보 "
202
208
 
@@ -275,12 +281,15 @@ msgstr "강제 취소"
275
281
  msgid "Force Cancel Selected"
276
282
  msgstr "선택한 작업 강제 취소"
277
283
 
278
- msgid "Force Cancel selected tasks"
279
- msgstr "선택한 작업 강제 취소"
280
-
281
284
  msgid "Force Unlock"
282
285
  msgstr "강제 잠금 해제"
283
286
 
287
+ msgid "Force Unlock Selected Tasks"
288
+ msgstr ""
289
+
290
+ msgid "Force Unlock Task"
291
+ msgstr ""
292
+
284
293
  msgid "Foreman Tasks"
285
294
  msgstr "Foreman 작업"
286
295
 
@@ -315,7 +324,7 @@ msgid "Input"
315
324
  msgstr "입력"
316
325
 
317
326
  msgid "Invalid URL"
318
- msgstr ""
327
+ msgstr "잘못된 URL입니다"
319
328
 
320
329
  msgid "Iteration limit"
321
330
  msgstr "반복 제한"
@@ -395,6 +404,9 @@ msgstr "작업을 시작할 수 없습니다."
395
404
  msgid "No. of Tasks"
396
405
  msgstr "작업 수"
397
406
 
407
+ msgid "None"
408
+ msgstr ""
409
+
398
410
  msgid "Not all the selected tasks can be cancelled"
399
411
  msgstr "선택한 모든 작업을 취소할 수 없습니다."
400
412
 
@@ -519,12 +531,15 @@ msgstr "다시 시작"
519
531
  msgid "Resume Selected"
520
532
  msgstr "선택한 작업 재개"
521
533
 
534
+ msgid "Resume Selected Tasks"
535
+ msgstr ""
536
+
537
+ msgid "Resume Task"
538
+ msgstr ""
539
+
522
540
  msgid "Resume all paused error tasks"
523
541
  msgstr "일시 정지된 모든 오류 태스크 다시 시작"
524
542
 
525
- msgid "Resume selected tasks"
526
- msgstr "선택한 작업 재개"
527
-
528
543
  msgid "Resume specific tasks by ID"
529
544
  msgstr "ID를 기준으로 특정 태스크 다시 시작"
530
545
 
@@ -558,9 +573,6 @@ msgstr "검색 쿼리"
558
573
  msgid "See %{link} for more details on how to resolve the issue"
559
574
  msgstr "문제를 해결하는 방법에 대한 자세한 내용은 %{link} 참조"
560
575
 
561
- msgid "Select Action"
562
- msgstr "작업 선택"
563
-
564
576
  msgid "Select all {count} tasks"
565
577
  msgstr "모든 {count} 작업 선택"
566
578
 
@@ -618,6 +630,9 @@ msgstr "검색 문자열과 일치하는 작업 중지"
618
630
  msgid "Stopped"
619
631
  msgstr "중단됨"
620
632
 
633
+ msgid "Stopped tasks by result"
634
+ msgstr ""
635
+
621
636
  msgid "Sub tasks"
622
637
  msgstr "하위 태스크"
623
638
 
@@ -651,6 +666,9 @@ msgstr "작업을 취소할 수 없습니다."
651
666
  msgid "Task count"
652
667
  msgstr "태스크 수"
653
668
 
669
+ msgid "Task dependencies"
670
+ msgstr ""
671
+
654
672
  msgid "Task group common"
655
673
  msgstr "작업 그룹 일반"
656
674
 
@@ -703,8 +721,26 @@ msgstr[0] "시스템에서 주의가 필요한 %{count} 일시 중지된 작업
703
721
  msgid "This action will delete all cancelled recurring logics. Please note that this action can't be reversed."
704
722
  msgstr "이 작업은 취소된 모든 반복 로직을 삭제합니다. 이 작업은 되돌릴 수 없습니다."
705
723
 
706
- msgid "This will %(action)s %(number)s task(s), putting them in the %(state)s state. Are you sure?"
707
- msgstr "이렇게 하면 %(action)s%(number)s 작업이 수행되어 %(state)s 상태가 됩니다. 계속 진행하시겠습니까?"
724
+ msgid "This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships."
725
+ msgstr ""
726
+
727
+ msgid "This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?"
728
+ msgstr ""
729
+
730
+ msgid "This will cancel task \\\"%(taskName)s\\\", putting it in the stopped state. Are you sure?"
731
+ msgstr ""
732
+
733
+ msgid "This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?"
734
+ msgstr ""
735
+
736
+ msgid "This will force unlock task \\\"%(taskName)s\\\". This may cause harm and should be used with caution. Are you sure?"
737
+ msgstr ""
738
+
739
+ msgid "This will resume %(number)s task(s), putting them in the running state. Are you sure?"
740
+ msgstr ""
741
+
742
+ msgid "This will resume task \\\"%(taskName)s\\\", putting it in the running state. Are you sure?"
743
+ msgstr ""
708
744
 
709
745
  msgid "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
  msgstr "현재 태스크를 실행 중인 대상 리소스의 잠금을 해제합니다. 상태의 일관성이 저해될 수 있으므로 태스크가 다시 시작될 수 없는지를 확인한 후 신중하게 사용해야 합니다."
@@ -6,7 +6,7 @@
6
6
  # Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 2017-2018
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman-tasks 11.0.5\n"
9
+ "Project-Id-Version: foreman-tasks 12.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "PO-Revision-Date: 2016-02-12 14:04+0000\n"
12
12
  "Last-Translator: Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 20"
@@ -26,9 +26,6 @@ msgstr "último"
26
26
  msgid "%(older)s Older %(time)s"
27
27
  msgstr "mais antigo"
28
28
 
29
- msgid "%s Selected Tasks"
30
- msgstr "%s tarefas selecionadas"
31
-
32
29
  msgid "%s is not valid format of cron line"
33
30
  msgstr "%s não é um formato válido de cron line"
34
31
 
@@ -71,8 +68,8 @@ msgstr ""
71
68
  msgid "Active"
72
69
  msgstr "Ativo"
73
70
 
74
- msgid "Active Filters:"
75
- msgstr "Filtros ativos:"
71
+ msgid "Active Filters"
72
+ msgstr ""
76
73
 
77
74
  msgid "Active or disabled recurring logic with purpose %s already exists"
78
75
  msgstr "Lógica recorrente ativa ou desativada com finalidade %s já existe"
@@ -102,6 +99,9 @@ msgstr "Voltar para tarefas"
102
99
  msgid "Backtrace"
103
100
  msgstr "Backtrace"
104
101
 
102
+ msgid "Blocks"
103
+ msgstr ""
104
+
105
105
  msgid "Bulk action"
106
106
  msgstr "Ação em Massa"
107
107
 
@@ -111,6 +111,12 @@ msgstr "Cancelar"
111
111
  msgid "Cancel Selected"
112
112
  msgstr "Cancelar selecionado"
113
113
 
114
+ msgid "Cancel Selected Tasks"
115
+ msgstr ""
116
+
117
+ msgid "Cancel Task"
118
+ msgstr ""
119
+
114
120
  msgid "Cancel enforced: the task might be still running on the proxy"
115
121
  msgstr "Cancelamento forçado: a tarefa ainda pode estar em execução no proxy "
116
122
 
@@ -120,9 +126,6 @@ msgstr "Cancelar lógica recorrente"
120
126
  msgid "Cancel selected cancellable tasks"
121
127
  msgstr "Cancelar tarefas cancelaveis selecionadas"
122
128
 
123
- msgid "Cancel selected tasks"
124
- msgstr "Cancelar tarefas selecionadas"
125
-
126
129
  msgid "Cancel specific tasks by ID"
127
130
  msgstr "Cancelar tarefas específicas por ID"
128
131
 
@@ -156,9 +159,6 @@ msgstr "Mudança de id de solicitação %{request_id} para id de economia{saved_
156
159
  msgid "Check for long running tasks"
157
160
  msgstr ""
158
161
 
159
- msgid "Clear All Filters"
160
- msgstr "Limpar todos os filtros"
161
-
162
162
  msgid "Clear Cancelled"
163
163
  msgstr "Limpar cancelado"
164
164
 
@@ -201,6 +201,12 @@ msgstr "Excluir lógicas recorrentes por consulta de pesquisa"
201
201
  msgid "Deliver notifications about long running tasks"
202
202
  msgstr ""
203
203
 
204
+ msgid "Dependencies"
205
+ msgstr ""
206
+
207
+ msgid "Depends on"
208
+ msgstr ""
209
+
204
210
  msgid "Details"
205
211
  msgstr "Detalhes"
206
212
 
@@ -279,12 +285,15 @@ msgstr "Forçar cancelamento"
279
285
  msgid "Force Cancel Selected"
280
286
  msgstr "Forçar cancelamento de selecionado"
281
287
 
282
- msgid "Force Cancel selected tasks"
283
- msgstr "Forçar cancelamento das tarefas selecionadas"
284
-
285
288
  msgid "Force Unlock"
286
289
  msgstr "Forçar Desbloqueio"
287
290
 
291
+ msgid "Force Unlock Selected Tasks"
292
+ msgstr ""
293
+
294
+ msgid "Force Unlock Task"
295
+ msgstr ""
296
+
288
297
  msgid "Foreman Tasks"
289
298
  msgstr "Tarefas do Foreman"
290
299
 
@@ -399,6 +408,9 @@ msgstr "Não foi possível iniciar nenhuma tarefa"
399
408
  msgid "No. of Tasks"
400
409
  msgstr "Número de Tarefas"
401
410
 
411
+ msgid "None"
412
+ msgstr ""
413
+
402
414
  msgid "Not all the selected tasks can be cancelled"
403
415
  msgstr "Nem todas as tarefas selecionadas podem ser canceladas"
404
416
 
@@ -523,12 +535,15 @@ msgstr "Retomar"
523
535
  msgid "Resume Selected"
524
536
  msgstr "Retomar selecionado"
525
537
 
538
+ msgid "Resume Selected Tasks"
539
+ msgstr ""
540
+
541
+ msgid "Resume Task"
542
+ msgstr ""
543
+
526
544
  msgid "Resume all paused error tasks"
527
545
  msgstr "Retomar todas as tarefas com erro em pausa "
528
546
 
529
- msgid "Resume selected tasks"
530
- msgstr "Retomar tarefas selecionadas"
531
-
532
547
  msgid "Resume specific tasks by ID"
533
548
  msgstr "Retomar tarefas específicas por ID "
534
549
 
@@ -562,9 +577,6 @@ msgstr "Consulta de pesquisa"
562
577
  msgid "See %{link} for more details on how to resolve the issue"
563
578
  msgstr "Veja %{link} para mais detalhes sobre como resolver a questão"
564
579
 
565
- msgid "Select Action"
566
- msgstr "Selecionar Ação"
567
-
568
580
  msgid "Select all {count} tasks"
569
581
  msgstr ""
570
582
 
@@ -622,6 +634,9 @@ msgstr "Parar tarefas correspondendo à cadeia de caracteres de pesquisa"
622
634
  msgid "Stopped"
623
635
  msgstr "Parado"
624
636
 
637
+ msgid "Stopped tasks by result"
638
+ msgstr ""
639
+
625
640
  msgid "Sub tasks"
626
641
  msgstr "Subtarefas "
627
642
 
@@ -655,6 +670,9 @@ msgstr "Não é possível cancelar a tarefa"
655
670
  msgid "Task count"
656
671
  msgstr "Contagem de Tarefas"
657
672
 
673
+ msgid "Task dependencies"
674
+ msgstr ""
675
+
658
676
  msgid "Task group common"
659
677
  msgstr "Grupo de tarefas comuns"
660
678
 
@@ -709,8 +727,26 @@ msgstr[2] "Há %{count} tarefas pausadas no sistema que precisam de atenção"
709
727
  msgid "This action will delete all cancelled recurring logics. Please note that this action can't be reversed."
710
728
  msgstr "Esta ação excluirá todas as lógicas recorrentes canceladas. Observe que não é possível reverter essa ação."
711
729
 
712
- msgid "This will %(action)s %(number)s task(s), putting them in the %(state)s state. Are you sure?"
713
- msgstr "Isto irá %(action)s %(number)s tarefa(s), colocando-as no estado %(state)s. Você tem certeza?"
730
+ msgid "This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships."
731
+ msgstr ""
732
+
733
+ msgid "This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?"
734
+ msgstr ""
735
+
736
+ msgid "This will cancel task \\\"%(taskName)s\\\", putting it in the stopped state. Are you sure?"
737
+ msgstr ""
738
+
739
+ msgid "This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?"
740
+ msgstr ""
741
+
742
+ msgid "This will force unlock task \\\"%(taskName)s\\\". This may cause harm and should be used with caution. Are you sure?"
743
+ msgstr ""
744
+
745
+ msgid "This will resume %(number)s task(s), putting them in the running state. Are you sure?"
746
+ msgstr ""
747
+
748
+ msgid "This will resume task \\\"%(taskName)s\\\", putting it in the running state. Are you sure?"
749
+ msgstr ""
714
750
 
715
751
  msgid "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."
716
752
  msgstr "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. "
Binary file
@@ -6,7 +6,7 @@
6
6
  # Yulia <yulia.poyarkova@redhat.com>, 2016
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman-tasks 11.0.5\n"
9
+ "Project-Id-Version: foreman-tasks 12.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "PO-Revision-Date: 2016-02-12 14:04+0000\n"
12
12
  "Last-Translator: Yulia <yulia.poyarkova@redhat.com>, 2016\n"
@@ -26,9 +26,6 @@ msgstr ""
26
26
  msgid "%(older)s Older %(time)s"
27
27
  msgstr ""
28
28
 
29
- msgid "%s Selected Tasks"
30
- msgstr ""
31
-
32
29
  msgid "%s is not valid format of cron line"
33
30
  msgstr "Недопустимый формат cron: %s"
34
31
 
@@ -66,12 +63,12 @@ msgid "Action"
66
63
  msgstr "Действие"
67
64
 
68
65
  msgid "Action with sub plans"
69
- msgstr ""
66
+ msgstr "Действия над подпланами"
70
67
 
71
68
  msgid "Active"
72
69
  msgstr "Активно"
73
70
 
74
- msgid "Active Filters:"
71
+ msgid "Active Filters"
75
72
  msgstr ""
76
73
 
77
74
  msgid "Active or disabled recurring logic with purpose %s already exists"
@@ -102,6 +99,9 @@ msgstr ""
102
99
  msgid "Backtrace"
103
100
  msgstr "Стек вызовов"
104
101
 
102
+ msgid "Blocks"
103
+ msgstr ""
104
+
105
105
  msgid "Bulk action"
106
106
  msgstr "Групповое действие"
107
107
 
@@ -111,6 +111,12 @@ msgstr "Отмена"
111
111
  msgid "Cancel Selected"
112
112
  msgstr ""
113
113
 
114
+ msgid "Cancel Selected Tasks"
115
+ msgstr ""
116
+
117
+ msgid "Cancel Task"
118
+ msgstr ""
119
+
114
120
  msgid "Cancel enforced: the task might be still running on the proxy"
115
121
  msgstr "Принудительная отмена: возможно, задача продолжает выполнение на прокси."
116
122
 
@@ -120,9 +126,6 @@ msgstr "Отменить периодическое выполнение"
120
126
  msgid "Cancel selected cancellable tasks"
121
127
  msgstr ""
122
128
 
123
- msgid "Cancel selected tasks"
124
- msgstr ""
125
-
126
129
  msgid "Cancel specific tasks by ID"
127
130
  msgstr ""
128
131
 
@@ -156,9 +159,6 @@ msgstr ""
156
159
  msgid "Check for long running tasks"
157
160
  msgstr ""
158
161
 
159
- msgid "Clear All Filters"
160
- msgstr ""
161
-
162
162
  msgid "Clear Cancelled"
163
163
  msgstr ""
164
164
 
@@ -201,6 +201,12 @@ msgstr ""
201
201
  msgid "Deliver notifications about long running tasks"
202
202
  msgstr ""
203
203
 
204
+ msgid "Dependencies"
205
+ msgstr ""
206
+
207
+ msgid "Depends on"
208
+ msgstr ""
209
+
204
210
  msgid "Details"
205
211
  msgstr "Свойства"
206
212
 
@@ -279,12 +285,15 @@ msgstr ""
279
285
  msgid "Force Cancel Selected"
280
286
  msgstr ""
281
287
 
282
- msgid "Force Cancel selected tasks"
283
- msgstr ""
284
-
285
288
  msgid "Force Unlock"
286
289
  msgstr "Принудительно разблокировать"
287
290
 
291
+ msgid "Force Unlock Selected Tasks"
292
+ msgstr ""
293
+
294
+ msgid "Force Unlock Task"
295
+ msgstr ""
296
+
288
297
  msgid "Foreman Tasks"
289
298
  msgstr ""
290
299
 
@@ -399,6 +408,9 @@ msgstr ""
399
408
  msgid "No. of Tasks"
400
409
  msgstr "Число задач"
401
410
 
411
+ msgid "None"
412
+ msgstr ""
413
+
402
414
  msgid "Not all the selected tasks can be cancelled"
403
415
  msgstr ""
404
416
 
@@ -523,12 +535,15 @@ msgstr "Возобновить"
523
535
  msgid "Resume Selected"
524
536
  msgstr ""
525
537
 
526
- msgid "Resume all paused error tasks"
527
- msgstr "Возобновить все приостановленные задачи"
538
+ msgid "Resume Selected Tasks"
539
+ msgstr ""
528
540
 
529
- msgid "Resume selected tasks"
541
+ msgid "Resume Task"
530
542
  msgstr ""
531
543
 
544
+ msgid "Resume all paused error tasks"
545
+ msgstr "Возобновить все приостановленные задачи"
546
+
532
547
  msgid "Resume specific tasks by ID"
533
548
  msgstr "Возобновить выборочные задачи по идентификатору"
534
549
 
@@ -562,9 +577,6 @@ msgstr "Поисковый запрос"
562
577
  msgid "See %{link} for more details on how to resolve the issue"
563
578
  msgstr ""
564
579
 
565
- msgid "Select Action"
566
- msgstr "Действия"
567
-
568
580
  msgid "Select all {count} tasks"
569
581
  msgstr ""
570
582
 
@@ -622,6 +634,9 @@ msgstr ""
622
634
  msgid "Stopped"
623
635
  msgstr ""
624
636
 
637
+ msgid "Stopped tasks by result"
638
+ msgstr ""
639
+
625
640
  msgid "Sub tasks"
626
641
  msgstr "Подзадачи"
627
642
 
@@ -655,6 +670,9 @@ msgstr ""
655
670
  msgid "Task count"
656
671
  msgstr "Количество задач"
657
672
 
673
+ msgid "Task dependencies"
674
+ msgstr ""
675
+
658
676
  msgid "Task group common"
659
677
  msgstr "Общие для групп"
660
678
 
@@ -708,7 +726,25 @@ msgstr[1] ""
708
726
  msgid "This action will delete all cancelled recurring logics. Please note that this action can't be reversed."
709
727
  msgstr ""
710
728
 
711
- msgid "This will %(action)s %(number)s task(s), putting them in the %(state)s state. Are you sure?"
729
+ msgid "This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships."
730
+ msgstr ""
731
+
732
+ msgid "This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?"
733
+ msgstr ""
734
+
735
+ msgid "This will cancel task \\\"%(taskName)s\\\", putting it in the stopped state. Are you sure?"
736
+ msgstr ""
737
+
738
+ msgid "This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?"
739
+ msgstr ""
740
+
741
+ msgid "This will force unlock task \\\"%(taskName)s\\\". This may cause harm and should be used with caution. Are you sure?"
742
+ msgstr ""
743
+
744
+ msgid "This will resume %(number)s task(s), putting them in the running state. Are you sure?"
745
+ msgstr ""
746
+
747
+ msgid "This will resume task \\\"%(taskName)s\\\", putting it in the running state. Are you sure?"
712
748
  msgstr ""
713
749
 
714
750
  msgid "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."