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
data/locale/fr/foreman_tasks.po
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# Claer <transiblu@claer.hammock.fr>, 2016
|
|
8
8
|
msgid ""
|
|
9
9
|
msgstr ""
|
|
10
|
-
"Project-Id-Version: foreman-tasks
|
|
10
|
+
"Project-Id-Version: foreman-tasks 12.0.0\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
12
|
"PO-Revision-Date: 2016-02-12 14:04+0000\n"
|
|
13
13
|
"Last-Translator: Claer <transiblu@claer.hammock.fr>, 2016\n"
|
|
@@ -25,9 +25,6 @@ msgstr "%(last)s Dernier %(time)s"
|
|
|
25
25
|
msgid "%(older)s Older %(time)s"
|
|
26
26
|
msgstr "%(older)s Plus ancien %(time)s"
|
|
27
27
|
|
|
28
|
-
msgid "%s Selected Tasks"
|
|
29
|
-
msgstr "%s tâches sélectionnées"
|
|
30
|
-
|
|
31
28
|
msgid "%s is not valid format of cron line"
|
|
32
29
|
msgstr "%s n'est pas un format valide de ligne cron"
|
|
33
30
|
|
|
@@ -65,13 +62,13 @@ msgid "Action"
|
|
|
65
62
|
msgstr "Action"
|
|
66
63
|
|
|
67
64
|
msgid "Action with sub plans"
|
|
68
|
-
msgstr ""
|
|
65
|
+
msgstr "Action avec des sous-plans"
|
|
69
66
|
|
|
70
67
|
msgid "Active"
|
|
71
68
|
msgstr "Actif"
|
|
72
69
|
|
|
73
|
-
msgid "Active Filters
|
|
74
|
-
msgstr "
|
|
70
|
+
msgid "Active Filters"
|
|
71
|
+
msgstr ""
|
|
75
72
|
|
|
76
73
|
msgid "Active or disabled recurring logic with purpose %s already exists"
|
|
77
74
|
msgstr "La logique récurrente active ou désactivée avec l'objectif %s existe déjà"
|
|
@@ -101,6 +98,9 @@ msgstr "Retour aux tâches"
|
|
|
101
98
|
msgid "Backtrace"
|
|
102
99
|
msgstr "Backtrace"
|
|
103
100
|
|
|
101
|
+
msgid "Blocks"
|
|
102
|
+
msgstr ""
|
|
103
|
+
|
|
104
104
|
msgid "Bulk action"
|
|
105
105
|
msgstr "Actions par lots"
|
|
106
106
|
|
|
@@ -110,6 +110,12 @@ msgstr "Annuler"
|
|
|
110
110
|
msgid "Cancel Selected"
|
|
111
111
|
msgstr "Annuler la sélection"
|
|
112
112
|
|
|
113
|
+
msgid "Cancel Selected Tasks"
|
|
114
|
+
msgstr ""
|
|
115
|
+
|
|
116
|
+
msgid "Cancel Task"
|
|
117
|
+
msgstr ""
|
|
118
|
+
|
|
113
119
|
msgid "Cancel enforced: the task might be still running on the proxy"
|
|
114
120
|
msgstr "Annulation forcée : la tâche peut-être en cours d'exécution sur le proxy"
|
|
115
121
|
|
|
@@ -119,9 +125,6 @@ msgstr "Annuler la logique récurrente"
|
|
|
119
125
|
msgid "Cancel selected cancellable tasks"
|
|
120
126
|
msgstr "Annuler les tâches annulables sélectionnées"
|
|
121
127
|
|
|
122
|
-
msgid "Cancel selected tasks"
|
|
123
|
-
msgstr "Annuler des tâches sélectionnées"
|
|
124
|
-
|
|
125
128
|
msgid "Cancel specific tasks by ID"
|
|
126
129
|
msgstr "Annuler les tâches spécifiques par ID"
|
|
127
130
|
|
|
@@ -155,9 +158,6 @@ msgstr "Changement de l'id de la demande %{request_id} en id %{saved_id} sauvega
|
|
|
155
158
|
msgid "Check for long running tasks"
|
|
156
159
|
msgstr "Rechercher les tâches de longue durée"
|
|
157
160
|
|
|
158
|
-
msgid "Clear All Filters"
|
|
159
|
-
msgstr "Afficher tous les filtres"
|
|
160
|
-
|
|
161
161
|
msgid "Clear Cancelled"
|
|
162
162
|
msgstr "Suppression des Annulées"
|
|
163
163
|
|
|
@@ -200,6 +200,12 @@ msgstr "Supprimer les logiques récurrentes par requête de recherche"
|
|
|
200
200
|
msgid "Deliver notifications about long running tasks"
|
|
201
201
|
msgstr "Envoyez des notifications sur les tâches de longue durée"
|
|
202
202
|
|
|
203
|
+
msgid "Dependencies"
|
|
204
|
+
msgstr ""
|
|
205
|
+
|
|
206
|
+
msgid "Depends on"
|
|
207
|
+
msgstr ""
|
|
208
|
+
|
|
203
209
|
msgid "Details"
|
|
204
210
|
msgstr "Détails"
|
|
205
211
|
|
|
@@ -278,12 +284,15 @@ msgstr "Annulation forcée"
|
|
|
278
284
|
msgid "Force Cancel Selected"
|
|
279
285
|
msgstr "Annuler en force la sélection"
|
|
280
286
|
|
|
281
|
-
msgid "Force Cancel selected tasks"
|
|
282
|
-
msgstr "Annuler en force des tâches sélectionnées"
|
|
283
|
-
|
|
284
287
|
msgid "Force Unlock"
|
|
285
288
|
msgstr "Forcer le déverrouillage"
|
|
286
289
|
|
|
290
|
+
msgid "Force Unlock Selected Tasks"
|
|
291
|
+
msgstr ""
|
|
292
|
+
|
|
293
|
+
msgid "Force Unlock Task"
|
|
294
|
+
msgstr ""
|
|
295
|
+
|
|
287
296
|
msgid "Foreman Tasks"
|
|
288
297
|
msgstr "Tâches Foreman"
|
|
289
298
|
|
|
@@ -318,7 +327,7 @@ msgid "Input"
|
|
|
318
327
|
msgstr "Entrée"
|
|
319
328
|
|
|
320
329
|
msgid "Invalid URL"
|
|
321
|
-
msgstr ""
|
|
330
|
+
msgstr "URL non valide"
|
|
322
331
|
|
|
323
332
|
msgid "Iteration limit"
|
|
324
333
|
msgstr "Limite de l'itération"
|
|
@@ -398,6 +407,9 @@ msgstr "Aucune tâche n'a pu démarrer"
|
|
|
398
407
|
msgid "No. of Tasks"
|
|
399
408
|
msgstr "No. de tâches"
|
|
400
409
|
|
|
410
|
+
msgid "None"
|
|
411
|
+
msgstr ""
|
|
412
|
+
|
|
401
413
|
msgid "Not all the selected tasks can be cancelled"
|
|
402
414
|
msgstr "Toutes les tâches sélectionnées ne peuvent pas être annulées"
|
|
403
415
|
|
|
@@ -522,12 +534,15 @@ msgstr "Continuez"
|
|
|
522
534
|
msgid "Resume Selected"
|
|
523
535
|
msgstr "Reprendre Sélectionné"
|
|
524
536
|
|
|
537
|
+
msgid "Resume Selected Tasks"
|
|
538
|
+
msgstr ""
|
|
539
|
+
|
|
540
|
+
msgid "Resume Task"
|
|
541
|
+
msgstr ""
|
|
542
|
+
|
|
525
543
|
msgid "Resume all paused error tasks"
|
|
526
544
|
msgstr "Reprendre toutes les tâches en attente avec des erreurs"
|
|
527
545
|
|
|
528
|
-
msgid "Resume selected tasks"
|
|
529
|
-
msgstr "Reprendre les tâches sélectionnées"
|
|
530
|
-
|
|
531
546
|
msgid "Resume specific tasks by ID"
|
|
532
547
|
msgstr "Reprendre les tâches spécifiques par ID"
|
|
533
548
|
|
|
@@ -561,9 +576,6 @@ msgstr "Requête de recherche"
|
|
|
561
576
|
msgid "See %{link} for more details on how to resolve the issue"
|
|
562
577
|
msgstr "Voir %{link} pour plus de détails sur la manière de résoudre le problème"
|
|
563
578
|
|
|
564
|
-
msgid "Select Action"
|
|
565
|
-
msgstr "Choisir l'action"
|
|
566
|
-
|
|
567
579
|
msgid "Select all {count} tasks"
|
|
568
580
|
msgstr "Sélectionner toutes les tâches {count} "
|
|
569
581
|
|
|
@@ -621,6 +633,9 @@ msgstr "Annuler toutes le tâches correspondant à la chaîne de recherche"
|
|
|
621
633
|
msgid "Stopped"
|
|
622
634
|
msgstr "Arrêté"
|
|
623
635
|
|
|
636
|
+
msgid "Stopped tasks by result"
|
|
637
|
+
msgstr ""
|
|
638
|
+
|
|
624
639
|
msgid "Sub tasks"
|
|
625
640
|
msgstr "Sous-tâches"
|
|
626
641
|
|
|
@@ -654,6 +669,9 @@ msgstr "La tâche ne peut pas être annulée"
|
|
|
654
669
|
msgid "Task count"
|
|
655
670
|
msgstr "Nombre de tâches"
|
|
656
671
|
|
|
672
|
+
msgid "Task dependencies"
|
|
673
|
+
msgstr ""
|
|
674
|
+
|
|
657
675
|
msgid "Task group common"
|
|
658
676
|
msgstr "Ressources communes du groupe de tâches"
|
|
659
677
|
|
|
@@ -708,8 +726,26 @@ msgstr[2] "Il y a %{count} tâches en pause dans le système qui nécessitent un
|
|
|
708
726
|
msgid "This action will delete all cancelled recurring logics. Please note that this action can't be reversed."
|
|
709
727
|
msgstr "Cette action supprimera toutes les logiques récurrentes annulées. Veuillez noter que cette action ne peut pas être annulée."
|
|
710
728
|
|
|
711
|
-
msgid "This
|
|
712
|
-
msgstr "
|
|
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?"
|
|
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."
|
|
715
751
|
msgstr "Cela débloquera les ressources avec lesquelles la tâche s'exécute. Veuillez noter que ceci peut conduire à un état incohérent et doit être utilisé avec prudence, après s'être assuré que la tâche ne peut pas être terminée."
|
|
Binary file
|
data/locale/ja/foreman_tasks.po
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
# Kazuki Omo <kazuki.omo@gmail.com>, 2019
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: foreman-tasks
|
|
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: Kazuki Omo <kazuki.omo@gmail.com>, 2019\n"
|
|
@@ -24,9 +24,6 @@ msgstr "過去 %(time)s で %(last)s 件"
|
|
|
24
24
|
msgid "%(older)s Older %(time)s"
|
|
25
25
|
msgstr "%(time)s より前で %(older)s 件"
|
|
26
26
|
|
|
27
|
-
msgid "%s Selected Tasks"
|
|
28
|
-
msgstr "選択したタスク %s件"
|
|
29
|
-
|
|
30
27
|
msgid "%s is not valid format of cron line"
|
|
31
28
|
msgstr "%s は有効な cron 行の形式ではありません"
|
|
32
29
|
|
|
@@ -64,13 +61,13 @@ msgid "Action"
|
|
|
64
61
|
msgstr "アクション"
|
|
65
62
|
|
|
66
63
|
msgid "Action with sub plans"
|
|
67
|
-
msgstr ""
|
|
64
|
+
msgstr "サブプランによるアクション"
|
|
68
65
|
|
|
69
66
|
msgid "Active"
|
|
70
67
|
msgstr "アクティブ"
|
|
71
68
|
|
|
72
|
-
msgid "Active Filters
|
|
73
|
-
msgstr "
|
|
69
|
+
msgid "Active Filters"
|
|
70
|
+
msgstr ""
|
|
74
71
|
|
|
75
72
|
msgid "Active or disabled recurring logic with purpose %s already exists"
|
|
76
73
|
msgstr "目的が %s のアクティブまたは無効な再帰論理がすでに存在します"
|
|
@@ -100,6 +97,9 @@ msgstr "タスクに戻る"
|
|
|
100
97
|
msgid "Backtrace"
|
|
101
98
|
msgstr "バックトレース"
|
|
102
99
|
|
|
100
|
+
msgid "Blocks"
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
103
103
|
msgid "Bulk action"
|
|
104
104
|
msgstr "一括処理"
|
|
105
105
|
|
|
@@ -109,6 +109,12 @@ msgstr "取り消し"
|
|
|
109
109
|
msgid "Cancel Selected"
|
|
110
110
|
msgstr "選択項目をキャンセル"
|
|
111
111
|
|
|
112
|
+
msgid "Cancel Selected Tasks"
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
115
|
+
msgid "Cancel Task"
|
|
116
|
+
msgstr ""
|
|
117
|
+
|
|
112
118
|
msgid "Cancel enforced: the task might be still running on the proxy"
|
|
113
119
|
msgstr "強制的にキャンセル: タスクはプロキシーで引き続き実行されている可能性があります"
|
|
114
120
|
|
|
@@ -118,9 +124,6 @@ msgstr "再帰論理のキャンセル"
|
|
|
118
124
|
msgid "Cancel selected cancellable tasks"
|
|
119
125
|
msgstr "選択したキャンセル可能なタスクをキャンセル"
|
|
120
126
|
|
|
121
|
-
msgid "Cancel selected tasks"
|
|
122
|
-
msgstr "選択したタスクをキャンセル"
|
|
123
|
-
|
|
124
127
|
msgid "Cancel specific tasks by ID"
|
|
125
128
|
msgstr "ID 別に特定のタスクをキャンセル"
|
|
126
129
|
|
|
@@ -154,9 +157,6 @@ msgstr "要求 ID %{request_id} を保存済み ID %{saved_id} に変更して
|
|
|
154
157
|
msgid "Check for long running tasks"
|
|
155
158
|
msgstr "長時間実行中のタスクの確認"
|
|
156
159
|
|
|
157
|
-
msgid "Clear All Filters"
|
|
158
|
-
msgstr "すべてのフィルターを消去"
|
|
159
|
-
|
|
160
160
|
msgid "Clear Cancelled"
|
|
161
161
|
msgstr "キャンセル済みの項目を消去"
|
|
162
162
|
|
|
@@ -199,6 +199,12 @@ msgstr "検索クエリーでの再帰論理の削除"
|
|
|
199
199
|
msgid "Deliver notifications about long running tasks"
|
|
200
200
|
msgstr "長時間実行中のタスクに関する通知の配信"
|
|
201
201
|
|
|
202
|
+
msgid "Dependencies"
|
|
203
|
+
msgstr ""
|
|
204
|
+
|
|
205
|
+
msgid "Depends on"
|
|
206
|
+
msgstr ""
|
|
207
|
+
|
|
202
208
|
msgid "Details"
|
|
203
209
|
msgstr "詳細"
|
|
204
210
|
|
|
@@ -277,12 +283,15 @@ msgstr "強制的にキャンセル"
|
|
|
277
283
|
msgid "Force Cancel Selected"
|
|
278
284
|
msgstr "選択項目を強制的にキャンセル"
|
|
279
285
|
|
|
280
|
-
msgid "Force Cancel selected tasks"
|
|
281
|
-
msgstr "選択したタスクを強制的にキャンセル"
|
|
282
|
-
|
|
283
286
|
msgid "Force Unlock"
|
|
284
287
|
msgstr "強制ロック解除"
|
|
285
288
|
|
|
289
|
+
msgid "Force Unlock Selected Tasks"
|
|
290
|
+
msgstr ""
|
|
291
|
+
|
|
292
|
+
msgid "Force Unlock Task"
|
|
293
|
+
msgstr ""
|
|
294
|
+
|
|
286
295
|
msgid "Foreman Tasks"
|
|
287
296
|
msgstr "Foreman タスク"
|
|
288
297
|
|
|
@@ -317,7 +326,7 @@ msgid "Input"
|
|
|
317
326
|
msgstr "入力"
|
|
318
327
|
|
|
319
328
|
msgid "Invalid URL"
|
|
320
|
-
msgstr ""
|
|
329
|
+
msgstr "無効な URL"
|
|
321
330
|
|
|
322
331
|
msgid "Iteration limit"
|
|
323
332
|
msgstr "繰り返し制限"
|
|
@@ -397,6 +406,9 @@ msgstr "タスクを開始できませんでした"
|
|
|
397
406
|
msgid "No. of Tasks"
|
|
398
407
|
msgstr "タスク数"
|
|
399
408
|
|
|
409
|
+
msgid "None"
|
|
410
|
+
msgstr ""
|
|
411
|
+
|
|
400
412
|
msgid "Not all the selected tasks can be cancelled"
|
|
401
413
|
msgstr "選択したすべてのタスクをキャンセルできるわけではありません"
|
|
402
414
|
|
|
@@ -521,12 +533,15 @@ msgstr "再開"
|
|
|
521
533
|
msgid "Resume Selected"
|
|
522
534
|
msgstr "選択項目を再開"
|
|
523
535
|
|
|
536
|
+
msgid "Resume Selected Tasks"
|
|
537
|
+
msgstr ""
|
|
538
|
+
|
|
539
|
+
msgid "Resume Task"
|
|
540
|
+
msgstr ""
|
|
541
|
+
|
|
524
542
|
msgid "Resume all paused error tasks"
|
|
525
543
|
msgstr "一時停止されたすべてのエラータスクを再開"
|
|
526
544
|
|
|
527
|
-
msgid "Resume selected tasks"
|
|
528
|
-
msgstr "選択したタスクを再開"
|
|
529
|
-
|
|
530
545
|
msgid "Resume specific tasks by ID"
|
|
531
546
|
msgstr "ID 別に特定のタスクを再開"
|
|
532
547
|
|
|
@@ -560,9 +575,6 @@ msgstr "検索クエリー"
|
|
|
560
575
|
msgid "See %{link} for more details on how to resolve the issue"
|
|
561
576
|
msgstr "問題解決の詳細については、%{link} を参照してください"
|
|
562
577
|
|
|
563
|
-
msgid "Select Action"
|
|
564
|
-
msgstr "アクションの選択"
|
|
565
|
-
|
|
566
578
|
msgid "Select all {count} tasks"
|
|
567
579
|
msgstr "{count} 件のタスクをすべて選択"
|
|
568
580
|
|
|
@@ -620,6 +632,9 @@ msgstr "検索文字列に一致するタスクを停止"
|
|
|
620
632
|
msgid "Stopped"
|
|
621
633
|
msgstr "停止"
|
|
622
634
|
|
|
635
|
+
msgid "Stopped tasks by result"
|
|
636
|
+
msgstr ""
|
|
637
|
+
|
|
623
638
|
msgid "Sub tasks"
|
|
624
639
|
msgstr "サブタスク"
|
|
625
640
|
|
|
@@ -653,6 +668,9 @@ msgstr "タスクはキャンセルできません"
|
|
|
653
668
|
msgid "Task count"
|
|
654
669
|
msgstr "タスク数"
|
|
655
670
|
|
|
671
|
+
msgid "Task dependencies"
|
|
672
|
+
msgstr ""
|
|
673
|
+
|
|
656
674
|
msgid "Task group common"
|
|
657
675
|
msgstr "共通のタスクグループ"
|
|
658
676
|
|
|
@@ -705,8 +723,26 @@ msgstr[0] "システムには、注意が必要な一時停止タスクが %{cou
|
|
|
705
723
|
msgid "This action will delete all cancelled recurring logics. Please note that this action can't be reversed."
|
|
706
724
|
msgstr "このアクションは、キャンセル済みの再帰論理をすべて削除します。この操作は元に戻すことはできない点に注意してください。"
|
|
707
725
|
|
|
708
|
-
msgid "This
|
|
709
|
-
msgstr "
|
|
726
|
+
msgid "This task may have dependencies on other tasks or may be blocking other tasks from executing. Dependencies are established through task chaining relationships."
|
|
727
|
+
msgstr ""
|
|
728
|
+
|
|
729
|
+
msgid "This will cancel %(number)s task(s), putting them in the stopped state. Are you sure?"
|
|
730
|
+
msgstr ""
|
|
731
|
+
|
|
732
|
+
msgid "This will cancel task \\\"%(taskName)s\\\", putting it in the stopped state. Are you sure?"
|
|
733
|
+
msgstr ""
|
|
734
|
+
|
|
735
|
+
msgid "This will force unlock %(number)s task(s). This may cause harm and should be used with caution. Are you sure?"
|
|
736
|
+
msgstr ""
|
|
737
|
+
|
|
738
|
+
msgid "This will force unlock task \\\"%(taskName)s\\\". This may cause harm and should be used with caution. Are you sure?"
|
|
739
|
+
msgstr ""
|
|
740
|
+
|
|
741
|
+
msgid "This will resume %(number)s task(s), putting them in the running state. Are you sure?"
|
|
742
|
+
msgstr ""
|
|
743
|
+
|
|
744
|
+
msgid "This will resume task \\\"%(taskName)s\\\", putting it in the running state. Are you sure?"
|
|
745
|
+
msgstr ""
|
|
710
746
|
|
|
711
747
|
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."
|
|
712
748
|
msgstr "これにより、タスクが実行している対象のリソースがロック解除されます。状態が不整合になることがあるため、タスクを再開できないことを確認した後に注意して使用してください。"
|
|
Binary file
|
data/locale/ka/foreman_tasks.po
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
# Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2022
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: foreman-tasks
|
|
11
|
+
"Project-Id-Version: foreman-tasks 12.0.0\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
13
|
"PO-Revision-Date: 2016-02-12 14:04+0000\n"
|
|
14
14
|
"Last-Translator: Temuri Doghonadze <temuri.doghonadze@gmail.com>, 2022\n"
|
|
@@ -26,9 +26,6 @@ msgstr "%(last)s ბოლო %(time)s-ჯერ"
|
|
|
26
26
|
msgid "%(older)s Older %(time)s"
|
|
27
27
|
msgstr "%(older)s %(time)s-ჯერ ძველი"
|
|
28
28
|
|
|
29
|
-
msgid "%s Selected Tasks"
|
|
30
|
-
msgstr "%s მონიშნული ამოცანა"
|
|
31
|
-
|
|
32
29
|
msgid "%s is not valid format of cron line"
|
|
33
30
|
msgstr "%s cron-ის სწორ ხაზის სწორი ფორმატი არაა"
|
|
34
31
|
|
|
@@ -66,13 +63,13 @@ 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
|
|
75
|
-
msgstr "
|
|
71
|
+
msgid "Active Filters"
|
|
72
|
+
msgstr ""
|
|
76
73
|
|
|
77
74
|
msgid "Active or disabled recurring logic with purpose %s already exists"
|
|
78
75
|
msgstr "აქტიური ან გამრთული განმეორებადი ლოგიკა დანიშნულებით %s უკვე არსებობს"
|
|
@@ -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 "ID-ით მითითებული ამოცანის გაუქმება"
|
|
128
131
|
|
|
@@ -156,9 +159,6 @@ msgstr "მოთხოვნის id-ის %{request_id} ცვლილე
|
|
|
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 "Foreman-ის ამოცანები"
|
|
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
|
|
|
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 "ყველა შეცდომის მდგომარეობაში შეჩერებული ამოცანის გაგრძელება"
|
|
528
546
|
|
|
529
|
-
msgid "Resume selected tasks"
|
|
530
|
-
msgstr "მონიშნული ამოცანების გაუქმება"
|
|
531
|
-
|
|
532
547
|
msgid "Resume specific tasks by ID"
|
|
533
548
|
msgstr "ID-ით მითითებული ამოცანების გაგრძელება"
|
|
534
549
|
|
|
@@ -562,9 +577,6 @@ msgstr "საძებნი სტრიქონი"
|
|
|
562
577
|
msgid "See %{link} for more details on how to resolve the issue"
|
|
563
578
|
msgstr "ამ პრობლემის გადასაწყვეტად იხილეთ %{link}"
|
|
564
579
|
|
|
565
|
-
msgid "Select Action"
|
|
566
|
-
msgstr "აირჩიეთ ქმედება"
|
|
567
|
-
|
|
568
580
|
msgid "Select all {count} tasks"
|
|
569
581
|
msgstr "{count} ამოცანის მონიშვნა"
|
|
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,8 +726,26 @@ msgstr[1] "სისტემაში არსებობს %{count} შე
|
|
|
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
|
|
712
|
-
msgstr "
|
|
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?"
|
|
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."
|
|
715
751
|
msgstr "ეს განბლოკავს რესურსებს, რომლებზეც ამოცანა მუშაობს. გაითვალისწინეთ, რომ ამან შეიძლება გამოიწვიოს არათანმიმდევრული მდგომარეობა და უნდა იქნას გამოყენებული სიფრთხილით, მას შემდეგ რაც დარწმუნდებით, რომ დავალება ვერ გაგრძელდება."
|
|
Binary file
|