foreman_remote_execution 11.1.3 → 12.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +1 -1
  3. data/.rubocop_todo.yml +0 -8
  4. data/.tx/config +2 -2
  5. data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +27 -21
  6. data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +24 -15
  7. data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +27 -9
  8. data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +27 -24
  9. data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +27 -24
  10. data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +27 -24
  11. data/app/assets/javascripts/foreman_remote_execution/locale/ka/foreman_remote_execution.js +1587 -0
  12. data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +27 -15
  13. data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +27 -24
  14. data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +27 -15
  15. data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +27 -24
  16. data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +27 -15
  17. data/app/controllers/ui_job_wizard_controller.rb +1 -4
  18. data/app/helpers/remote_execution_helper.rb +10 -4
  19. data/app/lib/actions/remote_execution/event_helpers.rb +42 -0
  20. data/app/lib/actions/remote_execution/run_host_job.rb +3 -16
  21. data/app/lib/actions/remote_execution/run_hosts_job.rb +7 -5
  22. data/app/models/concerns/api/v2/hosts_controller_extensions.rb +12 -0
  23. data/app/models/job_invocation_composer.rb +0 -1
  24. data/app/views/api/v2/job_invocations/base.json.rabl +14 -0
  25. data/app/views/templates/script/convert2rhel_analyze.erb +0 -3
  26. data/config/routes.rb +2 -0
  27. data/db/migrate/20151215114631_add_host_id_to_template_invocation.rb +1 -1
  28. data/db/migrate/20151217092555_migrate_to_task_groups.rb +1 -1
  29. data/db/migrate/20160113162007_expand_all_template_invocations.rb +2 -2
  30. data/db/migrate/20160114125628_rename_job_name_to_job_category.rb +2 -2
  31. data/db/migrate/20200623073022_rename_sudo_password_to_effective_user_password.rb +2 -2
  32. data/db/migrate/20220321101835_rename_ssh_provider_to_script.rb +1 -1
  33. data/extra/cockpit/foreman-cockpit-session +1 -1
  34. data/foreman_remote_execution.gemspec +3 -1
  35. data/lib/foreman_remote_execution/engine.rb +14 -9
  36. data/lib/foreman_remote_execution/version.rb +1 -1
  37. data/locale/Makefile +3 -4
  38. data/locale/action_names.rb +0 -5
  39. data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  40. data/locale/de/foreman_remote_execution.po +24 -15
  41. data/locale/en/foreman_remote_execution.po +24 -15
  42. data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  43. data/locale/en_GB/foreman_remote_execution.po +24 -15
  44. data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  45. data/locale/es/foreman_remote_execution.po +24 -15
  46. data/locale/foreman_remote_execution.pot +82 -69
  47. data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  48. data/locale/fr/foreman_remote_execution.po +24 -15
  49. data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  50. data/locale/ja/foreman_remote_execution.po +24 -15
  51. data/locale/ka/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  52. data/locale/ka/foreman_remote_execution.po +1576 -0
  53. data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  54. data/locale/ko/foreman_remote_execution.po +24 -15
  55. data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  56. data/locale/pt_BR/foreman_remote_execution.po +24 -15
  57. data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  58. data/locale/ru/foreman_remote_execution.po +24 -15
  59. data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  60. data/locale/zh_CN/foreman_remote_execution.po +24 -15
  61. data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  62. data/locale/zh_TW/foreman_remote_execution.po +24 -15
  63. data/test/unit/actions/run_hosts_job_test.rb +1 -1
  64. data/test/unit/api_params_test.rb +2 -10
  65. data/webpack/JobInvocationDetail/JobInvocationActions.js +22 -0
  66. data/webpack/JobInvocationDetail/JobInvocationConstants.js +7 -0
  67. data/webpack/JobInvocationDetail/JobInvocationOverview.js +104 -0
  68. data/webpack/JobInvocationDetail/JobInvocationSelectors.js +5 -0
  69. data/webpack/JobInvocationDetail/index.js +77 -0
  70. data/webpack/JobWizard/JobWizardPageRerun.js +10 -25
  71. data/webpack/JobWizard/index.js +9 -18
  72. data/webpack/Routes/routes.js +6 -0
  73. data/webpack/react_app/components/FeaturesDropdown/actions.js +4 -2
  74. data/webpack/react_app/components/FeaturesDropdown/constants.js +5 -0
  75. data/webpack/react_app/components/FeaturesDropdown/index.js +53 -14
  76. data/webpack/react_app/components/FeaturesDropdown/index.scss +11 -0
  77. data/webpack/react_app/extend/Fills.js +6 -0
  78. metadata +24 -10
  79. data/webpack/react_app/components/FeaturesDropdown/constant.js +0 -3
  80. /data/test/graphql/mutations/job_invocations/{create.rb → create_test.rb} +0 -0
  81. /data/test/unit/{renderer_scope_input.rb → renderer_scope_input_test.rb} +0 -0
@@ -8,8 +8,8 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: foreman_remote_execution 1.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2023-11-01 10:36+0100\n"
12
- "PO-Revision-Date: 2023-11-01 10:36+0100\n"
11
+ "POT-Creation-Date: 2023-12-01 18:46+0100\n"
12
+ "PO-Revision-Date: 2023-12-01 18:46+0100\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -408,7 +408,8 @@ msgstr ""
408
408
  #: ../db/seeds.d/50-notification_blueprints.rb:3
409
409
  #: ../db/seeds.d/50-notification_blueprints.rb:17
410
410
  #: ../lib/foreman_remote_execution/engine.rb:243
411
- #: ../webpack/JobWizard/JobWizardPageRerun.js:42
411
+ #: ../webpack/JobInvocationDetail/index.js:38
412
+ #: ../webpack/JobWizard/JobWizardPageRerun.js:34
412
413
  #: ../webpack/JobWizard/index.js:12
413
414
  msgid "Jobs"
414
415
  msgstr ""
@@ -501,7 +502,7 @@ msgid "Host task"
501
502
  msgstr ""
502
503
 
503
504
  #: ../app/helpers/remote_execution_helper.rb:53
504
- #: ../app/helpers/remote_execution_helper.rb:198
505
+ #: ../app/helpers/remote_execution_helper.rb:203
505
506
  #: ../app/models/job_invocation.rb:202
506
507
  msgid "N/A"
507
508
  msgstr ""
@@ -545,7 +546,7 @@ msgid "See the last task details"
545
546
  msgstr ""
546
547
 
547
548
  #: ../app/helpers/remote_execution_helper.rb:90
548
- #: ../app/helpers/remote_execution_helper.rb:112
549
+ #: ../app/helpers/remote_execution_helper.rb:117
549
550
  msgid "Cancel Job"
550
551
  msgstr ""
551
552
 
@@ -554,7 +555,7 @@ msgid "Try to cancel the job"
554
555
  msgstr ""
555
556
 
556
557
  #: ../app/helpers/remote_execution_helper.rb:95
557
- #: ../app/helpers/remote_execution_helper.rb:118
558
+ #: ../app/helpers/remote_execution_helper.rb:123
558
559
  msgid "Abort Job"
559
560
  msgstr ""
560
561
 
@@ -562,124 +563,132 @@ msgstr ""
562
563
  msgid "Try to abort the job without waiting for the results from the remote hosts"
563
564
  msgstr ""
564
565
 
565
- #: ../app/helpers/remote_execution_helper.rb:107
566
+ #: ../app/helpers/remote_execution_helper.rb:102
567
+ msgid "New UI"
568
+ msgstr ""
569
+
570
+ #: ../app/helpers/remote_execution_helper.rb:104
571
+ msgid "Switch to the new job invocation detail UI"
572
+ msgstr ""
573
+
574
+ #: ../app/helpers/remote_execution_helper.rb:112
566
575
  msgid "Task Details"
567
576
  msgstr ""
568
577
 
569
- #: ../app/helpers/remote_execution_helper.rb:109
578
+ #: ../app/helpers/remote_execution_helper.rb:114
570
579
  msgid "See the task details"
571
580
  msgstr ""
572
581
 
573
- #: ../app/helpers/remote_execution_helper.rb:114
582
+ #: ../app/helpers/remote_execution_helper.rb:119
574
583
  msgid "Try to cancel the job on a host"
575
584
  msgstr ""
576
585
 
577
- #: ../app/helpers/remote_execution_helper.rb:120
586
+ #: ../app/helpers/remote_execution_helper.rb:125
578
587
  msgid "Try to abort the job on a host without waiting for its result"
579
588
  msgstr ""
580
589
 
581
- #: ../app/helpers/remote_execution_helper.rb:168
590
+ #: ../app/helpers/remote_execution_helper.rb:173
582
591
  msgid "Could not render the preview because no host matches the search query."
583
592
  msgstr ""
584
593
 
585
- #: ../app/helpers/remote_execution_helper.rb:200
594
+ #: ../app/helpers/remote_execution_helper.rb:205
586
595
  msgid "in %s"
587
596
  msgstr ""
588
597
 
589
- #: ../app/helpers/remote_execution_helper.rb:200
598
+ #: ../app/helpers/remote_execution_helper.rb:205
590
599
  msgid "%s ago"
591
600
  msgstr ""
592
601
 
593
- #: ../app/helpers/remote_execution_helper.rb:218
602
+ #: ../app/helpers/remote_execution_helper.rb:223
594
603
  msgid "Use default description template"
595
604
  msgstr ""
596
605
 
597
- #: ../app/helpers/remote_execution_helper.rb:223
606
+ #: ../app/helpers/remote_execution_helper.rb:228
598
607
  msgid "Description template"
599
608
  msgstr ""
600
609
 
601
- #: ../app/helpers/remote_execution_helper.rb:233
610
+ #: ../app/helpers/remote_execution_helper.rb:238
602
611
  msgid ""
603
612
  "This template is used to generate the description.<br/>Input values can be use"
604
613
  "d using the syntax %{package}.<br/>You may also include the job category and t"
605
614
  "emplate<br/>name using %{job_category} and %{template_name}."
606
615
  msgstr ""
607
616
 
608
- #: ../app/lib/actions/remote_execution/run_host_job.rb:29
617
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:28
609
618
  msgid "Could not use any template used in the job invocation"
610
619
  msgstr ""
611
620
 
612
- #: ../app/lib/actions/remote_execution/run_host_job.rb:56
621
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:55
613
622
  msgid "Failed rendering template: %s"
614
623
  msgstr ""
615
624
 
616
- #: ../app/lib/actions/remote_execution/run_host_job.rb:107
625
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:94
617
626
  msgid "Task cancelled"
618
627
  msgstr ""
619
628
 
620
- #: ../app/lib/actions/remote_execution/run_host_job.rb:108
629
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:95
621
630
  msgid "Job execution failed"
622
631
  msgstr ""
623
632
 
624
- #: ../app/lib/actions/remote_execution/run_host_job.rb:117
633
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:104
625
634
  msgid "%{description} on %{host}"
626
635
  msgstr ""
627
636
 
628
- #: ../app/lib/actions/remote_execution/run_host_job.rb:122 action_names.rb:7
637
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:109 action_names.rb:2
629
638
  msgid "Remote action:"
630
639
  msgstr ""
631
640
 
632
- #: ../app/lib/actions/remote_execution/run_host_job.rb:150
641
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:137
633
642
  msgid "Job cancelled by user"
634
643
  msgstr ""
635
644
 
636
- #: ../app/lib/actions/remote_execution/run_host_job.rb:155
637
- #: ../app/lib/actions/remote_execution/run_host_job.rb:173
645
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:142
646
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:160
638
647
  msgid "Exit status: %s"
639
648
  msgstr ""
640
649
 
641
- #: ../app/lib/actions/remote_execution/run_host_job.rb:157
650
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:144
642
651
  msgid "Job finished with error"
643
652
  msgstr ""
644
653
 
645
- #: ../app/lib/actions/remote_execution/run_host_job.rb:160
646
- #: ../app/lib/actions/remote_execution/run_host_job.rb:178
654
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:147
655
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:165
647
656
  msgid "Error loading data from proxy"
648
657
  msgstr ""
649
658
 
650
- #: ../app/lib/actions/remote_execution/run_host_job.rb:229
659
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:216
651
660
  msgid "User can not execute job on host %s"
652
661
  msgstr ""
653
662
 
654
- #: ../app/lib/actions/remote_execution/run_host_job.rb:230
663
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:217
655
664
  msgid "User can not execute this job template"
656
665
  msgstr ""
657
666
 
658
- #: ../app/lib/actions/remote_execution/run_host_job.rb:233
667
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:220
659
668
  msgid "User can not execute job on infrastructure host %s"
660
669
  msgstr ""
661
670
 
662
- #: ../app/lib/actions/remote_execution/run_host_job.rb:239
671
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:226
663
672
  msgid "User can not execute this job template on %s"
664
673
  msgstr ""
665
674
 
666
- #: ../app/lib/actions/remote_execution/run_host_job.rb:249
675
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:236
667
676
  msgid "The only applicable proxy %{proxy_names} is down"
668
677
  msgid_plural "All %{count} applicable proxies are down. Tried %{proxy_names}"
669
678
  msgstr[0] ""
670
679
  msgstr[1] ""
671
680
 
672
- #: ../app/lib/actions/remote_execution/run_host_job.rb:259
681
+ #: ../app/lib/actions/remote_execution/run_host_job.rb:246
673
682
  msgid ""
674
683
  "Could not use any proxy for the %{provider} job. Consider configuring %{global"
675
684
  "_proxy}, %{fallback_proxy} in settings"
676
685
  msgstr ""
677
686
 
678
- #: ../app/lib/actions/remote_execution/run_hosts_job.rb:92
687
+ #: ../app/lib/actions/remote_execution/run_hosts_job.rb:94
679
688
  msgid "REX job has succeeded - %s"
680
689
  msgstr ""
681
690
 
682
- #: ../app/lib/actions/remote_execution/run_hosts_job.rb:100
691
+ #: ../app/lib/actions/remote_execution/run_hosts_job.rb:102
683
692
  msgid "REX job has failed - %s"
684
693
  msgstr ""
685
694
 
@@ -881,7 +890,7 @@ msgid "Can't find Job Invocation for an id %s"
881
890
  msgstr ""
882
891
 
883
892
  #: ../app/views/dashboard/_latest-jobs.html.erb:2
884
- #: ../lib/foreman_remote_execution/engine.rb:250
893
+ #: ../lib/foreman_remote_execution/engine.rb:256
885
894
  msgid "Latest Jobs"
886
895
  msgstr ""
887
896
 
@@ -1673,22 +1682,46 @@ msgstr ""
1673
1682
  msgid "Job templates"
1674
1683
  msgstr ""
1675
1684
 
1676
- #: ../lib/foreman_remote_execution/engine.rb:361
1685
+ #: ../lib/foreman_remote_execution/engine.rb:249
1686
+ msgid "Job invocations detail"
1687
+ msgstr ""
1688
+
1689
+ #: ../lib/foreman_remote_execution/engine.rb:370
1677
1690
  msgid "Run Puppet Once"
1678
1691
  msgstr ""
1679
1692
 
1680
- #: ../lib/foreman_remote_execution/engine.rb:362
1693
+ #: ../lib/foreman_remote_execution/engine.rb:371
1681
1694
  msgid "Perform a single Puppet run"
1682
1695
  msgstr ""
1683
1696
 
1684
- #: ../lib/foreman_remote_execution/engine.rb:367
1697
+ #: ../lib/foreman_remote_execution/engine.rb:376
1685
1698
  msgid "Run Script"
1686
1699
  msgstr ""
1687
1700
 
1688
- #: ../lib/foreman_remote_execution/engine.rb:368
1701
+ #: ../lib/foreman_remote_execution/engine.rb:377
1689
1702
  msgid "Run a script"
1690
1703
  msgstr ""
1691
1704
 
1705
+ #: ../webpack/JobInvocationDetail/JobInvocationOverview.js:34
1706
+ msgid "Not yet"
1707
+ msgstr ""
1708
+
1709
+ #: ../webpack/JobInvocationDetail/JobInvocationOverview.js:58
1710
+ msgid "Effective user:"
1711
+ msgstr ""
1712
+
1713
+ #: ../webpack/JobInvocationDetail/JobInvocationOverview.js:64
1714
+ msgid "Started at:"
1715
+ msgstr ""
1716
+
1717
+ #: ../webpack/JobInvocationDetail/JobInvocationOverview.js:70
1718
+ msgid "SSH user:"
1719
+ msgstr ""
1720
+
1721
+ #: ../webpack/JobInvocationDetail/JobInvocationOverview.js:76
1722
+ msgid "Template:"
1723
+ msgstr ""
1724
+
1692
1725
  #: ../webpack/JobWizard/Footer.js:35
1693
1726
  msgid "Submit"
1694
1727
  msgstr ""
@@ -1805,22 +1838,22 @@ msgstr ""
1805
1838
  msgid "Search query"
1806
1839
  msgstr ""
1807
1840
 
1808
- #: ../webpack/JobWizard/JobWizardPageRerun.js:39
1841
+ #: ../webpack/JobWizard/JobWizardPageRerun.js:31
1809
1842
  #: ../webpack/JobWizard/index.js:9
1810
1843
  msgid "Run job"
1811
1844
  msgstr ""
1812
1845
 
1813
- #: ../webpack/JobWizard/JobWizardPageRerun.js:72
1846
+ #: ../webpack/JobWizard/JobWizardPageRerun.js:55
1814
1847
  msgid "Use old form"
1815
1848
  msgstr ""
1816
1849
 
1817
- #: ../webpack/JobWizard/JobWizardPageRerun.js:93
1850
+ #: ../webpack/JobWizard/JobWizardPageRerun.js:78
1818
1851
  msgid ""
1819
1852
  "Current organization %s is different from job's organization %s. This job may "
1820
1853
  "run on different hosts than before."
1821
1854
  msgstr ""
1822
1855
 
1823
- #: ../webpack/JobWizard/JobWizardPageRerun.js:107
1856
+ #: ../webpack/JobWizard/JobWizardPageRerun.js:92
1824
1857
  msgid ""
1825
1858
  "Current location %s is different from job's location %s. This job may run on d"
1826
1859
  "ifferent hosts than before."
@@ -1835,7 +1868,7 @@ msgstr ""
1835
1868
  msgid "Please go back to \\\"Schedule\\\" - \\\"Future execution\\\" step to fix the error"
1836
1869
  msgstr ""
1837
1870
 
1838
- #: ../webpack/JobWizard/index.js:34
1871
+ #: ../webpack/JobWizard/index.js:27
1839
1872
  msgid "Use legacy form"
1840
1873
  msgstr ""
1841
1874
 
@@ -2228,15 +2261,15 @@ msgstr ""
2228
2261
  msgid "You have %s results to display. Showing first %s results"
2229
2262
  msgstr ""
2230
2263
 
2231
- #: ../webpack/react_app/components/FeaturesDropdown/actions.js:13
2264
+ #: ../webpack/react_app/components/FeaturesDropdown/actions.js:15
2232
2265
  msgid "Opening job invocation form"
2233
2266
  msgstr ""
2234
2267
 
2235
- #: ../webpack/react_app/components/FeaturesDropdown/actions.js:15
2268
+ #: ../webpack/react_app/components/FeaturesDropdown/actions.js:17
2236
2269
  msgid "%s job has been invoked"
2237
2270
  msgstr ""
2238
2271
 
2239
- #: ../webpack/react_app/components/FeaturesDropdown/index.js:50
2272
+ #: ../webpack/react_app/components/FeaturesDropdown/index.js:71
2240
2273
  msgid "Schedule a job"
2241
2274
  msgstr ""
2242
2275
 
@@ -2321,26 +2354,6 @@ msgstr ""
2321
2354
  msgid "Active Filters:"
2322
2355
  msgstr ""
2323
2356
 
2324
- #: action_names.rb:2
2325
- msgid "Action with sub plans"
2326
- msgstr ""
2327
-
2328
- #: action_names.rb:3
2329
- msgid "Check for long running tasks"
2330
- msgstr ""
2331
-
2332
- #: action_names.rb:4
2333
- msgid "Deliver notifications about long running tasks"
2334
- msgstr ""
2335
-
2336
- #: action_names.rb:5
2337
- msgid "Import Puppet classes"
2338
- msgstr ""
2339
-
2340
- #: action_names.rb:6
2341
- msgid "Import facts"
2342
- msgstr ""
2343
-
2344
2357
  #: gemspec.rb:2
2345
2358
  msgid ""
2346
2359
  "A plugin bringing remote execution to the Foreman, completing the config manag"
@@ -83,9 +83,6 @@ msgstr "L'utilisateur choisi pour l'exécution du script. Si l'utilisateur est d
83
83
  msgid "Abort Job"
84
84
  msgstr "Abandonner le job"
85
85
 
86
- msgid "Action with sub plans"
87
- msgstr "Action avec sous-plans"
88
-
89
86
  msgid "Actions"
90
87
  msgstr "Actions"
91
88
 
@@ -170,9 +167,6 @@ msgstr "La liste de catégories a échoué avec :"
170
167
  msgid "Category and template"
171
168
  msgstr ""
172
169
 
173
- msgid "Check for long running tasks"
174
- msgstr ""
175
-
176
170
  msgid "Choose a job template that is pre-selected in job invocation form"
177
171
  msgstr "Choisissez un modèle qui soit présélectionné dans le formulaire de requête du job"
178
172
 
@@ -305,9 +299,6 @@ msgstr "Supprimer un jeu de données en entrée externe"
305
299
  msgid "Delete a job template"
306
300
  msgstr "Supprimer un modèle de job"
307
301
 
308
- msgid "Deliver notifications about long running tasks"
309
- msgstr ""
310
-
311
302
  msgid "Description"
312
303
  msgstr "Description"
313
304
 
@@ -371,6 +362,9 @@ msgstr "Le mot de passe Sudo est uniquement applicable au fournisseur SSH. D'aut
371
362
  msgid "Effective user password is only applicable for SSH provider. Other providers ignore this field. Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution."
372
363
  msgstr "Le mot de passe Sudo est uniquement applicable au fournisseur SSH. D'autres fournisseurs ignorent ce champ. Le mot de passe est stocké chiffré dans la base de données jusqu'à la fin du job. Pour les exécutions futures ou récurrentes, il est supprimé après la dernière exécution."
373
364
 
365
+ msgid "Effective user:"
366
+ msgstr ""
367
+
374
368
  msgid "Enable Global Proxy"
375
369
  msgstr "Activer le proxy global"
376
370
 
@@ -542,15 +536,9 @@ msgstr ""
542
536
  msgid "Import"
543
537
  msgstr "Importation"
544
538
 
545
- msgid "Import Puppet classes"
546
- msgstr "Importer des classes Puppet"
547
-
548
539
  msgid "Import a job template from ERB"
549
540
  msgstr "Importe un modèle de job depuis ERB"
550
541
 
551
- msgid "Import facts"
552
- msgstr "Importer des faits"
553
-
554
542
  msgid "Include all inputs from the foreign template"
555
543
  msgstr "Inclut toutes les entrées du modèle étranger"
556
544
 
@@ -629,6 +617,9 @@ msgstr "Invocation de job"
629
617
  msgid "Job invocations"
630
618
  msgstr "Lancement de jobs"
631
619
 
620
+ msgid "Job invocations detail"
621
+ msgstr ""
622
+
632
623
  msgid "Job result"
633
624
  msgstr "Résultat Job"
634
625
 
@@ -734,6 +725,9 @@ msgstr "Jamais"
734
725
  msgid "New Job Template"
735
726
  msgstr "Nouveau modèle de job"
736
727
 
728
+ msgid "New UI"
729
+ msgstr ""
730
+
737
731
  msgid "Next"
738
732
  msgstr ""
739
733
 
@@ -761,6 +755,9 @@ msgstr "Aucun modèle n'est en relation avec la fonction %{feature_name}"
761
755
  msgid "Not all required inputs have values. Missing inputs: %s"
762
756
  msgstr "Les entrées n'ont pas toutes des valeurs associées. Les entrées demandant de l'attention : %s"
763
757
 
758
+ msgid "Not yet"
759
+ msgstr ""
760
+
764
761
  msgid "Now"
765
762
  msgstr ""
766
763
 
@@ -1001,6 +998,9 @@ msgstr "Options spécifiques au fournisseur SSH"
1001
998
  msgid "SSH user"
1002
999
  msgstr ""
1003
1000
 
1001
+ msgid "SSH user:"
1002
+ msgstr ""
1003
+
1004
1004
  msgid "Schedule"
1005
1005
  msgstr "Programmer"
1006
1006
 
@@ -1130,6 +1130,9 @@ msgstr ""
1130
1130
  msgid "Started"
1131
1131
  msgstr "Démarré"
1132
1132
 
1133
+ msgid "Started at:"
1134
+ msgstr ""
1135
+
1133
1136
  msgid "Starts"
1134
1137
  msgstr "Démarrage"
1135
1138
 
@@ -1172,6 +1175,9 @@ msgstr "Réussie"
1172
1175
  msgid "Success"
1173
1176
  msgstr "Réussi"
1174
1177
 
1178
+ msgid "Switch to the new job invocation detail UI"
1179
+ msgstr ""
1180
+
1175
1181
  msgid "Sync Job Templates"
1176
1182
  msgstr "Modèles de job synchronisés"
1177
1183
 
@@ -1211,6 +1217,9 @@ msgstr "Version de modèle"
1211
1217
  msgid "Template with id '%{id}' was not found"
1212
1218
  msgstr "Le modèle avec l'ID '%%{id} ' n'a pas été trouvé"
1213
1219
 
1220
+ msgid "Template:"
1221
+ msgstr ""
1222
+
1214
1223
  msgid "Templates list failed with:"
1215
1224
  msgstr "La liste des modèles a échoué avec :"
1216
1225
 
@@ -80,9 +80,6 @@ msgstr "スクリプトを実行するために使用するユーザー。ユー
80
80
  msgid "Abort Job"
81
81
  msgstr "ジョブの中断"
82
82
 
83
- msgid "Action with sub plans"
84
- msgstr "サブプランによるアクション"
85
-
86
83
  msgid "Actions"
87
84
  msgstr "アクション"
88
85
 
@@ -167,9 +164,6 @@ msgstr "カテゴリー一覧が以下により失敗:"
167
164
  msgid "Category and template"
168
165
  msgstr ""
169
166
 
170
- msgid "Check for long running tasks"
171
- msgstr ""
172
-
173
167
  msgid "Choose a job template that is pre-selected in job invocation form"
174
168
  msgstr "ジョブ呼び出しフォームで事前に選択されているジョブテンプレートを選択してください"
175
169
 
@@ -302,9 +296,6 @@ msgstr "外部入力セットを削除"
302
296
  msgid "Delete a job template"
303
297
  msgstr "ジョブテンプレートの削除"
304
298
 
305
- msgid "Deliver notifications about long running tasks"
306
- msgstr ""
307
-
308
299
  msgid "Description"
309
300
  msgstr "説明"
310
301
 
@@ -368,6 +359,9 @@ msgstr "実効ユーザーパスワードは、SSH プロバイダーにのみ
368
359
  msgid "Effective user password is only applicable for SSH provider. Other providers ignore this field. Password is stored encrypted in DB until the job finishes. For future or recurring executions, it is removed after the last execution."
369
360
  msgstr "実効ユーザーパスワードは、SSH プロバイダーにのみ適用されます。他のプロバイダーは、このフィールドを無視します。パスワードは、ジョブが完了するまで暗号化されて DB に保存されます。将来の実行または繰り返しの実行の場合、最後の実行後に削除されます。"
370
361
 
362
+ msgid "Effective user:"
363
+ msgstr ""
364
+
371
365
  msgid "Enable Global Proxy"
372
366
  msgstr "グローバルプロキシーを有効にする"
373
367
 
@@ -539,15 +533,9 @@ msgstr ""
539
533
  msgid "Import"
540
534
  msgstr "インポート"
541
535
 
542
- msgid "Import Puppet classes"
543
- msgstr "Puppet クラスのインポート"
544
-
545
536
  msgid "Import a job template from ERB"
546
537
  msgstr "ERB からジョブテンプレートをインポート"
547
538
 
548
- msgid "Import facts"
549
- msgstr "ファクトのインポート"
550
-
551
539
  msgid "Include all inputs from the foreign template"
552
540
  msgstr "外部テンプレートからのすべての入力を含める"
553
541
 
@@ -626,6 +614,9 @@ msgstr "ジョブ呼び出し"
626
614
  msgid "Job invocations"
627
615
  msgstr "ジョブ呼び出し"
628
616
 
617
+ msgid "Job invocations detail"
618
+ msgstr ""
619
+
629
620
  msgid "Job result"
630
621
  msgstr "ジョブの結果"
631
622
 
@@ -731,6 +722,9 @@ msgstr "なし"
731
722
  msgid "New Job Template"
732
723
  msgstr "新規ジョブテンプレート"
733
724
 
725
+ msgid "New UI"
726
+ msgstr ""
727
+
734
728
  msgid "Next"
735
729
  msgstr ""
736
730
 
@@ -758,6 +752,9 @@ msgstr "機能 %{feature_name} にマッピングされたテンプレートが
758
752
  msgid "Not all required inputs have values. Missing inputs: %s"
759
753
  msgstr "入力が必須のすべての項目に値があるとは限りません。足りない入力: %s"
760
754
 
755
+ msgid "Not yet"
756
+ msgstr ""
757
+
761
758
  msgid "Now"
762
759
  msgstr ""
763
760
 
@@ -998,6 +995,9 @@ msgstr "SSH プロバイダー固有オプション"
998
995
  msgid "SSH user"
999
996
  msgstr ""
1000
997
 
998
+ msgid "SSH user:"
999
+ msgstr ""
1000
+
1001
1001
  msgid "Schedule"
1002
1002
  msgstr "スケジュール"
1003
1003
 
@@ -1127,6 +1127,9 @@ msgstr ""
1127
1127
  msgid "Started"
1128
1128
  msgstr "開始済み"
1129
1129
 
1130
+ msgid "Started at:"
1131
+ msgstr ""
1132
+
1130
1133
  msgid "Starts"
1131
1134
  msgstr "開始"
1132
1135
 
@@ -1169,6 +1172,9 @@ msgstr "成功"
1169
1172
  msgid "Success"
1170
1173
  msgstr "成功"
1171
1174
 
1175
+ msgid "Switch to the new job invocation detail UI"
1176
+ msgstr ""
1177
+
1172
1178
  msgid "Sync Job Templates"
1173
1179
  msgstr "ジョブテンプレートの同期"
1174
1180
 
@@ -1208,6 +1214,9 @@ msgstr "テンプレートのバージョン"
1208
1214
  msgid "Template with id '%{id}' was not found"
1209
1215
  msgstr "id '%{id}' のテンプレートが見つかりませんでした"
1210
1216
 
1217
+ msgid "Template:"
1218
+ msgstr ""
1219
+
1211
1220
  msgid "Templates list failed with:"
1212
1221
  msgstr "テンプレート一覧が以下により失敗:"
1213
1222