foreman_remote_execution 6.0.0 → 7.0.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.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/job_invocations_controller.rb +1 -0
- data/app/controllers/foreman_remote_execution/concerns/api/v2/registration_controller_extensions.rb +5 -0
- data/app/controllers/ui_job_wizard_controller.rb +1 -1
- data/app/helpers/hosts_extensions_helper.rb +62 -0
- data/app/helpers/remote_execution_helper.rb +4 -3
- data/app/lib/actions/remote_execution/run_host_job.rb +5 -1
- data/app/lib/actions/remote_execution/run_hosts_job.rb +4 -0
- data/app/models/concerns/foreman_remote_execution/host_extensions.rb +5 -1
- data/app/models/concerns/foreman_remote_execution/nic_extensions.rb +6 -4
- data/app/models/concerns/foreman_remote_execution/smart_proxy_extensions.rb +1 -1
- data/app/models/job_invocation_composer.rb +7 -3
- data/app/models/job_template.rb +4 -1
- data/app/models/remote_execution_provider.rb +10 -1
- data/app/models/ssh_execution_provider.rb +20 -7
- data/app/services/default_proxy_proxy_selector.rb +1 -1
- data/app/services/remote_execution_proxy_selector.rb +7 -2
- data/app/views/api/v2/host/main.rabl +1 -0
- data/app/views/api/v2/job_invocations/base.json.rabl +1 -1
- data/app/views/dashboard/_latest-jobs.html.erb +1 -1
- data/app/views/job_invocations/_card_target_hosts.html.erb +8 -0
- data/app/views/job_invocations/_form.html.erb +2 -0
- data/app/views/templates/{ssh → script}/check_update.erb +2 -2
- data/app/views/templates/{ssh → script}/module_action.erb +2 -2
- data/app/views/templates/{ssh → script}/package_action.erb +5 -2
- data/app/views/templates/{ssh → script}/power_action.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_agent_disable.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_agent_enable.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_install_modules_from_forge.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_install_modules_from_git.erb +2 -2
- data/app/views/templates/{ssh → script}/puppet_run_once.erb +2 -2
- data/app/views/templates/{ssh → script}/run_command.erb +2 -2
- data/app/views/templates/{ssh → script}/service_action.erb +2 -2
- data/db/migrate/20220321101835_rename_ssh_provider_to_script.rb +29 -0
- data/db/migrate/20220331112719_add_ssh_user_to_job_invocation.rb +5 -0
- data/db/seeds.d/60-ssh_proxy_feature.rb +3 -0
- data/jsconfig.json +8 -0
- data/lib/foreman_remote_execution/engine.rb +10 -5
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/action_names.rb +3 -3
- data/locale/de/foreman_remote_execution.po +23 -23
- data/locale/en/foreman_remote_execution.po +23 -23
- data/locale/en_GB/foreman_remote_execution.po +23 -23
- data/locale/es/foreman_remote_execution.po +23 -23
- data/locale/foreman_remote_execution.pot +64 -66
- data/locale/fr/foreman_remote_execution.po +23 -23
- data/locale/ja/foreman_remote_execution.po +23 -23
- data/locale/ko/foreman_remote_execution.po +23 -23
- data/locale/pt_BR/foreman_remote_execution.po +23 -23
- data/locale/ru/foreman_remote_execution.po +23 -23
- data/locale/zh_CN/foreman_remote_execution.po +23 -23
- data/locale/zh_TW/foreman_remote_execution.po +23 -23
- data/package.json +6 -7
- data/test/unit/concerns/host_extensions_test.rb +2 -1
- data/test/unit/remote_execution_provider_test.rb +2 -0
- data/webpack/JobWizard/JobWizard.js +8 -2
- data/webpack/JobWizard/JobWizardConstants.js +2 -2
- data/webpack/JobWizard/__tests__/fixtures.js +8 -4
- data/webpack/JobWizard/steps/AdvancedFields/__tests__/AdvancedFields.test.js +2 -2
- data/webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js +24 -15
- data/webpack/JobWizard/steps/HostsAndInputs/SelectGQL.js +2 -1
- data/webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js +1 -1
- data/webpack/JobWizard/steps/HostsAndInputs/buildHostQuery.js +1 -1
- data/webpack/JobWizard/steps/HostsAndInputs/hostgroups.gql +1 -0
- data/webpack/JobWizard/steps/HostsAndInputs/hosts.gql +1 -0
- data/webpack/JobWizard/steps/ReviewDetails/index.js +1 -1
- data/webpack/JobWizard/steps/Schedule/__tests__/Schedule.test.js +15 -15
- data/webpack/JobWizard/steps/form/GroupedSelectField.js +7 -1
- data/webpack/JobWizard/steps/form/SearchSelect.js +0 -1
- data/webpack/__mocks__/foremanReact/common/globalIdHelpers.js +1 -0
- data/webpack/global_index.js +2 -4
- data/webpack/react_app/components/FeaturesDropdown/actions.js +13 -0
- data/webpack/react_app/components/FeaturesDropdown/constant.js +2 -0
- data/webpack/react_app/components/FeaturesDropdown/index.js +74 -0
- data/webpack/react_app/components/HostKebab/KebabItems.js +27 -0
- data/webpack/react_app/components/RecentJobsCard/RecentJobsCard.js +10 -5
- data/webpack/react_app/components/RecentJobsCard/RecentJobsTable.js +2 -2
- data/webpack/react_app/components/RecentJobsCard/constants.js +1 -0
- data/webpack/react_app/components/TargetingHosts/TargetingHostsConsts.js +1 -0
- data/webpack/react_app/components/TargetingHosts/TargetingHostsPage.js +8 -3
- data/webpack/react_app/components/TargetingHosts/__tests__/__snapshots__/TargetingHostsPage.test.js.snap +9 -1
- data/webpack/react_app/components/TargetingHosts/__tests__/fixtures.js +1 -4
- data/webpack/react_app/components/TargetingHosts/index.js +1 -0
- data/webpack/react_app/extend/Fills.js +48 -0
- metadata +25 -17
- data/app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb +0 -62
- data/webpack/react_app/extend/fillRecentJobsCard.js +0 -11
- data/webpack/react_app/extend/fillregistrationAdvanced.js +0 -11
|
@@ -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: 2022-
|
|
12
|
-
"PO-Revision-Date: 2022-
|
|
11
|
+
"POT-Creation-Date: 2022-05-03 09:40+0200\n"
|
|
12
|
+
"PO-Revision-Date: 2022-05-03 09:40+0200\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
15
15
|
"Language: \n"
|
|
@@ -261,7 +261,8 @@ msgstr ""
|
|
|
261
261
|
#: ../app/controllers/api/v2/job_templates_controller.rb:52
|
|
262
262
|
#: ../app/views/job_invocations/_form.html.erb:11
|
|
263
263
|
#: ../app/views/job_templates/_custom_tabs.html.erb:5
|
|
264
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
|
264
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:56
|
|
265
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:75
|
|
265
266
|
msgid "Job category"
|
|
266
267
|
msgstr ""
|
|
267
268
|
|
|
@@ -378,7 +379,16 @@ msgid "Unable to save template. Correct highlighted errors"
|
|
|
378
379
|
msgstr ""
|
|
379
380
|
|
|
380
381
|
#:
|
|
381
|
-
#: ../app/helpers/concerns/foreman_remote_execution/
|
|
382
|
+
#: ../app/helpers/concerns/foreman_remote_execution/job_templates_extensions.rb:7
|
|
383
|
+
msgid "Run"
|
|
384
|
+
msgstr ""
|
|
385
|
+
|
|
386
|
+
#: ../app/helpers/hosts_extensions_helper.rb:5
|
|
387
|
+
#: ../app/helpers/hosts_extensions_helper.rb:41
|
|
388
|
+
msgid "Schedule Remote Job"
|
|
389
|
+
msgstr ""
|
|
390
|
+
|
|
391
|
+
#: ../app/helpers/hosts_extensions_helper.rb:10
|
|
382
392
|
#: ../db/seeds.d/50-notification_blueprints.rb:3
|
|
383
393
|
#: ../db/seeds.d/50-notification_blueprints.rb:17
|
|
384
394
|
#: ../lib/foreman_remote_execution/engine.rb:237
|
|
@@ -386,34 +396,21 @@ msgstr ""
|
|
|
386
396
|
msgid "Jobs"
|
|
387
397
|
msgstr ""
|
|
388
398
|
|
|
389
|
-
#:
|
|
390
|
-
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:5
|
|
399
|
+
#: ../app/helpers/hosts_extensions_helper.rb:10
|
|
391
400
|
#: ../app/views/job_invocations/index.html.erb:2
|
|
392
401
|
#: ../app/views/template_invocations/show.html.erb:1
|
|
393
402
|
msgid "Job invocations"
|
|
394
403
|
msgstr ""
|
|
395
404
|
|
|
396
|
-
#:
|
|
397
|
-
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:11
|
|
398
|
-
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:34
|
|
399
|
-
msgid "Schedule Remote Job"
|
|
400
|
-
msgstr ""
|
|
401
|
-
|
|
402
|
-
#:
|
|
403
|
-
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:28
|
|
405
|
+
#: ../app/helpers/hosts_extensions_helper.rb:35
|
|
404
406
|
msgid "%s"
|
|
405
407
|
msgstr ""
|
|
406
408
|
|
|
407
|
-
#:
|
|
408
|
-
#: ../
|
|
409
|
+
#: ../app/helpers/hosts_extensions_helper.rb:48
|
|
410
|
+
#: ../webpack/react_app/components/HostKebab/KebabItems.js:17
|
|
409
411
|
msgid "Web Console"
|
|
410
412
|
msgstr ""
|
|
411
413
|
|
|
412
|
-
#:
|
|
413
|
-
#: ../app/helpers/concerns/foreman_remote_execution/job_templates_extensions.rb:7
|
|
414
|
-
msgid "Run"
|
|
415
|
-
msgstr ""
|
|
416
|
-
|
|
417
414
|
#: ../app/helpers/job_invocations_chart_helper.rb:18
|
|
418
415
|
msgid "Success"
|
|
419
416
|
msgstr ""
|
|
@@ -493,7 +490,7 @@ msgid "Host task"
|
|
|
493
490
|
msgstr ""
|
|
494
491
|
|
|
495
492
|
#: ../app/helpers/remote_execution_helper.rb:53
|
|
496
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
|
493
|
+
#: ../app/helpers/remote_execution_helper.rb:198
|
|
497
494
|
#: ../app/models/job_invocation.rb:200
|
|
498
495
|
msgid "N/A"
|
|
499
496
|
msgstr ""
|
|
@@ -565,27 +562,27 @@ msgstr ""
|
|
|
565
562
|
msgid "Try to abort the job on a host without waiting for its result"
|
|
566
563
|
msgstr ""
|
|
567
564
|
|
|
568
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
|
565
|
+
#: ../app/helpers/remote_execution_helper.rb:168
|
|
569
566
|
msgid "Could not render the preview because no host matches the search query."
|
|
570
567
|
msgstr ""
|
|
571
568
|
|
|
572
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
|
569
|
+
#: ../app/helpers/remote_execution_helper.rb:200
|
|
573
570
|
msgid "in %s"
|
|
574
571
|
msgstr ""
|
|
575
572
|
|
|
576
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
|
573
|
+
#: ../app/helpers/remote_execution_helper.rb:200
|
|
577
574
|
msgid "%s ago"
|
|
578
575
|
msgstr ""
|
|
579
576
|
|
|
580
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
|
577
|
+
#: ../app/helpers/remote_execution_helper.rb:218
|
|
581
578
|
msgid "Use default description template"
|
|
582
579
|
msgstr ""
|
|
583
580
|
|
|
584
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
|
581
|
+
#: ../app/helpers/remote_execution_helper.rb:223
|
|
585
582
|
msgid "Description template"
|
|
586
583
|
msgstr ""
|
|
587
584
|
|
|
588
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
|
585
|
+
#: ../app/helpers/remote_execution_helper.rb:233
|
|
589
586
|
msgid ""
|
|
590
587
|
"This template is used to generate the description.<br/>Input values can be use"
|
|
591
588
|
"d using the syntax %{package}.<br/>You may also include the job category and t"
|
|
@@ -694,14 +691,14 @@ msgstr ""
|
|
|
694
691
|
msgid "Should this interface be used for remote execution?"
|
|
695
692
|
msgstr ""
|
|
696
693
|
|
|
697
|
-
#: ../app/models/concerns/foreman_remote_execution/host_extensions.rb:
|
|
694
|
+
#: ../app/models/concerns/foreman_remote_execution/host_extensions.rb:73
|
|
698
695
|
msgid ""
|
|
699
696
|
"Interface with the '%s' identifier was specified as a remote execution interfa"
|
|
700
697
|
"ce, however the interface was not found on the host. If the interface exists, "
|
|
701
698
|
"it needs to be created in Foreman during the registration."
|
|
702
699
|
msgstr ""
|
|
703
700
|
|
|
704
|
-
#: ../app/models/concerns/foreman_remote_execution/nic_extensions.rb:
|
|
701
|
+
#: ../app/models/concerns/foreman_remote_execution/nic_extensions.rb:23
|
|
705
702
|
msgid "host already has an execution interface"
|
|
706
703
|
msgstr ""
|
|
707
704
|
|
|
@@ -789,11 +786,11 @@ msgstr ""
|
|
|
789
786
|
msgid "Unknown remote execution feature %s"
|
|
790
787
|
msgstr ""
|
|
791
788
|
|
|
792
|
-
#: ../app/models/remote_execution_provider.rb:
|
|
789
|
+
#: ../app/models/remote_execution_provider.rb:61
|
|
793
790
|
msgid "Effective user method \"%{current_value}\" is not one of %{valid_methods}"
|
|
794
791
|
msgstr ""
|
|
795
792
|
|
|
796
|
-
#: ../app/models/remote_execution_provider.rb:
|
|
793
|
+
#: ../app/models/remote_execution_provider.rb:87
|
|
797
794
|
msgid "Could not find any suitable interface for execution"
|
|
798
795
|
msgstr ""
|
|
799
796
|
|
|
@@ -810,7 +807,7 @@ msgid "Subscribe to all my jobs"
|
|
|
810
807
|
msgstr ""
|
|
811
808
|
|
|
812
809
|
#: ../app/models/ssh_execution_provider.rb:12
|
|
813
|
-
msgid "
|
|
810
|
+
msgid "Script"
|
|
814
811
|
msgstr ""
|
|
815
812
|
|
|
816
813
|
#: ../app/models/targeting.rb:5
|
|
@@ -970,7 +967,7 @@ msgid "Description"
|
|
|
970
967
|
msgstr ""
|
|
971
968
|
|
|
972
969
|
#: ../app/views/job_invocations/_form.html.erb:23
|
|
973
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
|
970
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:66
|
|
974
971
|
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:76
|
|
975
972
|
msgid "Job template"
|
|
976
973
|
msgstr ""
|
|
@@ -1440,9 +1437,9 @@ msgstr ""
|
|
|
1440
1437
|
msgid "Could not display data for job invocation."
|
|
1441
1438
|
msgstr ""
|
|
1442
1439
|
|
|
1443
|
-
#: ../app/views/templates/
|
|
1444
|
-
#: ../app/views/templates/
|
|
1445
|
-
#: ../app/views/templates/
|
|
1440
|
+
#: ../app/views/templates/script/check_update.erb:5
|
|
1441
|
+
#: ../app/views/templates/script/module_action.erb:5
|
|
1442
|
+
#: ../app/views/templates/script/package_action.erb:5
|
|
1446
1443
|
msgid "Unsupported or no operating system found for this host."
|
|
1447
1444
|
msgstr ""
|
|
1448
1445
|
|
|
@@ -1640,11 +1637,11 @@ msgstr ""
|
|
|
1640
1637
|
msgid "Job wizard"
|
|
1641
1638
|
msgstr ""
|
|
1642
1639
|
|
|
1643
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
|
1640
|
+
#: ../lib/foreman_remote_execution/engine.rb:360
|
|
1644
1641
|
msgid "Run Puppet Once"
|
|
1645
1642
|
msgstr ""
|
|
1646
1643
|
|
|
1647
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
|
1644
|
+
#: ../lib/foreman_remote_execution/engine.rb:361
|
|
1648
1645
|
msgid "Perform a single Puppet run"
|
|
1649
1646
|
msgstr ""
|
|
1650
1647
|
|
|
@@ -1681,11 +1678,12 @@ msgid "Target hosts and inputs"
|
|
|
1681
1678
|
msgstr ""
|
|
1682
1679
|
|
|
1683
1680
|
#: ../webpack/JobWizard/JobWizardConstants.js:22
|
|
1684
|
-
|
|
1681
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:83
|
|
1682
|
+
msgid "Advanced fields"
|
|
1685
1683
|
msgstr ""
|
|
1686
1684
|
|
|
1687
1685
|
#: ../webpack/JobWizard/JobWizardConstants.js:24
|
|
1688
|
-
msgid "Review
|
|
1686
|
+
msgid "Review details"
|
|
1689
1687
|
msgstr ""
|
|
1690
1688
|
|
|
1691
1689
|
#: ../webpack/JobWizard/JobWizardConstants.js:44
|
|
@@ -1736,28 +1734,28 @@ msgid ""
|
|
|
1736
1734
|
"or future or recurring executions, it is removed after the last execution."
|
|
1737
1735
|
msgstr ""
|
|
1738
1736
|
|
|
1739
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
|
1737
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:53
|
|
1740
1738
|
msgid "All fields are required."
|
|
1741
1739
|
msgstr ""
|
|
1742
1740
|
|
|
1743
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
|
1744
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
|
1741
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:61
|
|
1742
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:74
|
|
1745
1743
|
msgid "Error"
|
|
1746
1744
|
msgstr ""
|
|
1747
1745
|
|
|
1748
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
|
1746
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:77
|
|
1749
1747
|
msgid "Errors:"
|
|
1750
1748
|
msgstr ""
|
|
1751
1749
|
|
|
1752
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
|
1750
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:80
|
|
1753
1751
|
msgid "Categories list failed with:"
|
|
1754
1752
|
msgstr ""
|
|
1755
1753
|
|
|
1756
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
|
1754
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:85
|
|
1757
1755
|
msgid "Templates list failed with:"
|
|
1758
1756
|
msgstr ""
|
|
1759
1757
|
|
|
1760
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
|
1758
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:90
|
|
1761
1759
|
msgid "Template failed with:"
|
|
1762
1760
|
msgstr ""
|
|
1763
1761
|
|
|
@@ -1801,14 +1799,6 @@ msgstr ""
|
|
|
1801
1799
|
msgid ", and %s more"
|
|
1802
1800
|
msgstr ""
|
|
1803
1801
|
|
|
1804
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:75
|
|
1805
|
-
msgid "Job Category"
|
|
1806
|
-
msgstr ""
|
|
1807
|
-
|
|
1808
|
-
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:83
|
|
1809
|
-
msgid "Advanced fields"
|
|
1810
|
-
msgstr ""
|
|
1811
|
-
|
|
1812
1802
|
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:92
|
|
1813
1803
|
msgid "Hide all advanced fields"
|
|
1814
1804
|
msgstr ""
|
|
@@ -1987,35 +1977,43 @@ msgstr ""
|
|
|
1987
1977
|
msgid "You have %s results to display. Showing first %s results"
|
|
1988
1978
|
msgstr ""
|
|
1989
1979
|
|
|
1980
|
+
#: ../webpack/react_app/components/FeaturesDropdown/actions.js:10
|
|
1981
|
+
msgid "%s job has been invoked"
|
|
1982
|
+
msgstr ""
|
|
1983
|
+
|
|
1984
|
+
#: ../webpack/react_app/components/FeaturesDropdown/index.js:44
|
|
1985
|
+
msgid "Schedule a job"
|
|
1986
|
+
msgstr ""
|
|
1987
|
+
|
|
1990
1988
|
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:25
|
|
1991
1989
|
msgid "Recent jobs"
|
|
1992
1990
|
msgstr ""
|
|
1993
1991
|
|
|
1994
1992
|
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:31
|
|
1995
|
-
msgid "View
|
|
1993
|
+
msgid "View all jobs"
|
|
1996
1994
|
msgstr ""
|
|
1997
1995
|
|
|
1998
1996
|
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:39
|
|
1999
|
-
msgid "View
|
|
1997
|
+
msgid "View finished jobs"
|
|
2000
1998
|
msgstr ""
|
|
2001
1999
|
|
|
2002
2000
|
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:45
|
|
2003
|
-
msgid "View
|
|
2001
|
+
msgid "View running jobs"
|
|
2004
2002
|
msgstr ""
|
|
2005
2003
|
|
|
2006
2004
|
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:51
|
|
2007
|
-
msgid "View
|
|
2005
|
+
msgid "View scheduled jobs"
|
|
2008
2006
|
msgstr ""
|
|
2009
2007
|
|
|
2010
|
-
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:
|
|
2008
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:63
|
|
2011
2009
|
msgid "Finished"
|
|
2012
2010
|
msgstr ""
|
|
2013
2011
|
|
|
2014
|
-
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:
|
|
2012
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:69
|
|
2015
2013
|
msgid "Running"
|
|
2016
2014
|
msgstr ""
|
|
2017
2015
|
|
|
2018
|
-
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:
|
|
2016
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:75
|
|
2019
2017
|
msgid "Scheduled"
|
|
2020
2018
|
msgstr ""
|
|
2021
2019
|
|
|
@@ -2032,15 +2030,15 @@ msgid "Host"
|
|
|
2032
2030
|
msgstr ""
|
|
2033
2031
|
|
|
2034
2032
|
#: action_names.rb:3
|
|
2035
|
-
msgid "
|
|
2033
|
+
msgid "Import Puppet classes"
|
|
2036
2034
|
msgstr ""
|
|
2037
2035
|
|
|
2038
2036
|
#: action_names.rb:4
|
|
2039
|
-
msgid "
|
|
2037
|
+
msgid "Import facts"
|
|
2040
2038
|
msgstr ""
|
|
2041
2039
|
|
|
2042
2040
|
#: action_names.rb:5
|
|
2043
|
-
msgid "
|
|
2041
|
+
msgid "Action with sub plans"
|
|
2044
2042
|
msgstr ""
|
|
2045
2043
|
|
|
2046
2044
|
#: gemspec.rb:2
|
|
@@ -24,6 +24,9 @@ msgstr "%s"
|
|
|
24
24
|
msgid "%s ago"
|
|
25
25
|
msgstr "Il y a %s"
|
|
26
26
|
|
|
27
|
+
msgid "%s job has been invoked"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
27
30
|
msgid "%{description} on %{host}"
|
|
28
31
|
msgstr "%{description} sur %{host}"
|
|
29
32
|
|
|
@@ -68,15 +71,15 @@ msgstr "L'utilisateur choisi pour l'exécution du script. Si l'utilisateur est d
|
|
|
68
71
|
msgid "Abort Job"
|
|
69
72
|
msgstr "Abandonner la tâche"
|
|
70
73
|
|
|
74
|
+
msgid "Action with sub plans"
|
|
75
|
+
msgstr ""
|
|
76
|
+
|
|
71
77
|
msgid "Actions"
|
|
72
78
|
msgstr "Actions"
|
|
73
79
|
|
|
74
80
|
msgid "Add Foreign Input Set"
|
|
75
81
|
msgstr "Ajout d'un jeu de données en entrée externes"
|
|
76
82
|
|
|
77
|
-
msgid "Advanced Fields"
|
|
78
|
-
msgstr ""
|
|
79
|
-
|
|
80
83
|
msgid "Advanced fields"
|
|
81
84
|
msgstr ""
|
|
82
85
|
|
|
@@ -467,9 +470,15 @@ msgstr ""
|
|
|
467
470
|
msgid "Import"
|
|
468
471
|
msgstr "Import"
|
|
469
472
|
|
|
473
|
+
msgid "Import Puppet classes"
|
|
474
|
+
msgstr ""
|
|
475
|
+
|
|
470
476
|
msgid "Import a job template from ERB"
|
|
471
477
|
msgstr "Importe un modèle de job depuis ERB"
|
|
472
478
|
|
|
479
|
+
msgid "Import facts"
|
|
480
|
+
msgstr ""
|
|
481
|
+
|
|
473
482
|
msgid "Include all inputs from the foreign template"
|
|
474
483
|
msgstr "Inclut toutes les entrées du modèle étranger"
|
|
475
484
|
|
|
@@ -503,9 +512,6 @@ msgstr "Type de lancement, parmi les types suivants %s"
|
|
|
503
512
|
msgid "Job"
|
|
504
513
|
msgstr "Travail"
|
|
505
514
|
|
|
506
|
-
msgid "Job Category"
|
|
507
|
-
msgstr ""
|
|
508
|
-
|
|
509
515
|
msgid "Job Details"
|
|
510
516
|
msgstr "Détails du job"
|
|
511
517
|
|
|
@@ -827,7 +833,7 @@ msgstr "Résoud en"
|
|
|
827
833
|
msgid "Results"
|
|
828
834
|
msgstr ""
|
|
829
835
|
|
|
830
|
-
msgid "Review
|
|
836
|
+
msgid "Review details"
|
|
831
837
|
msgstr ""
|
|
832
838
|
|
|
833
839
|
msgid "Run"
|
|
@@ -851,9 +857,6 @@ msgstr ""
|
|
|
851
857
|
msgid "Running"
|
|
852
858
|
msgstr ""
|
|
853
859
|
|
|
854
|
-
msgid "SSH"
|
|
855
|
-
msgstr "SSH"
|
|
856
|
-
|
|
857
860
|
msgid "SSH Port"
|
|
858
861
|
msgstr "Port SSH"
|
|
859
862
|
|
|
@@ -869,6 +872,9 @@ msgstr "Planning"
|
|
|
869
872
|
msgid "Schedule Remote Job"
|
|
870
873
|
msgstr "Programmer une tâche à distance"
|
|
871
874
|
|
|
875
|
+
msgid "Schedule a job"
|
|
876
|
+
msgstr ""
|
|
877
|
+
|
|
872
878
|
msgid "Schedule for future execution"
|
|
873
879
|
msgstr ""
|
|
874
880
|
|
|
@@ -890,6 +896,9 @@ msgstr "Programmé pour démarrer à"
|
|
|
890
896
|
msgid "Scheduled to start before"
|
|
891
897
|
msgstr ""
|
|
892
898
|
|
|
899
|
+
msgid "Script"
|
|
900
|
+
msgstr ""
|
|
901
|
+
|
|
893
902
|
msgid "Scroll to bottom"
|
|
894
903
|
msgstr "Faire défiler en bas de page"
|
|
895
904
|
|
|
@@ -1210,16 +1219,16 @@ msgstr "Entrée utilisateur"
|
|
|
1210
1219
|
msgid "Value"
|
|
1211
1220
|
msgstr "Valeur"
|
|
1212
1221
|
|
|
1213
|
-
msgid "View
|
|
1222
|
+
msgid "View all jobs"
|
|
1214
1223
|
msgstr ""
|
|
1215
1224
|
|
|
1216
|
-
msgid "View
|
|
1225
|
+
msgid "View finished jobs"
|
|
1217
1226
|
msgstr ""
|
|
1218
1227
|
|
|
1219
|
-
msgid "View
|
|
1228
|
+
msgid "View running jobs"
|
|
1220
1229
|
msgstr ""
|
|
1221
1230
|
|
|
1222
|
-
msgid "View
|
|
1231
|
+
msgid "View scheduled jobs"
|
|
1223
1232
|
msgstr ""
|
|
1224
1233
|
|
|
1225
1234
|
msgid "Web Console"
|
|
@@ -1365,12 +1374,3 @@ msgstr ""
|
|
|
1365
1374
|
|
|
1366
1375
|
msgid "using Smart Proxy"
|
|
1367
1376
|
msgstr ""
|
|
1368
|
-
|
|
1369
|
-
msgid "»Action with sub plans«"
|
|
1370
|
-
msgstr ""
|
|
1371
|
-
|
|
1372
|
-
msgid "»Import Puppet classes«"
|
|
1373
|
-
msgstr ""
|
|
1374
|
-
|
|
1375
|
-
msgid "»Import facts«"
|
|
1376
|
-
msgstr ""
|
|
@@ -24,6 +24,9 @@ msgstr "%s"
|
|
|
24
24
|
msgid "%s ago"
|
|
25
25
|
msgstr "%s前"
|
|
26
26
|
|
|
27
|
+
msgid "%s job has been invoked"
|
|
28
|
+
msgstr ""
|
|
29
|
+
|
|
27
30
|
msgid "%{description} on %{host}"
|
|
28
31
|
msgstr "%{host} の %{description}"
|
|
29
32
|
|
|
@@ -68,15 +71,15 @@ msgstr "スクリプトを実行するために使用するユーザー。ユー
|
|
|
68
71
|
msgid "Abort Job"
|
|
69
72
|
msgstr "ジョブの中断"
|
|
70
73
|
|
|
74
|
+
msgid "Action with sub plans"
|
|
75
|
+
msgstr ""
|
|
76
|
+
|
|
71
77
|
msgid "Actions"
|
|
72
78
|
msgstr "アクション"
|
|
73
79
|
|
|
74
80
|
msgid "Add Foreign Input Set"
|
|
75
81
|
msgstr "外部入力セットを追加"
|
|
76
82
|
|
|
77
|
-
msgid "Advanced Fields"
|
|
78
|
-
msgstr ""
|
|
79
|
-
|
|
80
83
|
msgid "Advanced fields"
|
|
81
84
|
msgstr ""
|
|
82
85
|
|
|
@@ -467,9 +470,15 @@ msgstr ""
|
|
|
467
470
|
msgid "Import"
|
|
468
471
|
msgstr "インポート"
|
|
469
472
|
|
|
473
|
+
msgid "Import Puppet classes"
|
|
474
|
+
msgstr ""
|
|
475
|
+
|
|
470
476
|
msgid "Import a job template from ERB"
|
|
471
477
|
msgstr "ERB からジョブテンプレートをインポート"
|
|
472
478
|
|
|
479
|
+
msgid "Import facts"
|
|
480
|
+
msgstr ""
|
|
481
|
+
|
|
473
482
|
msgid "Include all inputs from the foreign template"
|
|
474
483
|
msgstr "外部テンプレートからのすべての入力を含める"
|
|
475
484
|
|
|
@@ -503,9 +512,6 @@ msgstr "呼び出しタイプ、%s のいずれか"
|
|
|
503
512
|
msgid "Job"
|
|
504
513
|
msgstr "仕事"
|
|
505
514
|
|
|
506
|
-
msgid "Job Category"
|
|
507
|
-
msgstr ""
|
|
508
|
-
|
|
509
515
|
msgid "Job Details"
|
|
510
516
|
msgstr "ジョブの詳細"
|
|
511
517
|
|
|
@@ -827,7 +833,7 @@ msgstr "解決"
|
|
|
827
833
|
msgid "Results"
|
|
828
834
|
msgstr ""
|
|
829
835
|
|
|
830
|
-
msgid "Review
|
|
836
|
+
msgid "Review details"
|
|
831
837
|
msgstr ""
|
|
832
838
|
|
|
833
839
|
msgid "Run"
|
|
@@ -851,9 +857,6 @@ msgstr ""
|
|
|
851
857
|
msgid "Running"
|
|
852
858
|
msgstr ""
|
|
853
859
|
|
|
854
|
-
msgid "SSH"
|
|
855
|
-
msgstr "SSH"
|
|
856
|
-
|
|
857
860
|
msgid "SSH Port"
|
|
858
861
|
msgstr "SSH ポート"
|
|
859
862
|
|
|
@@ -869,6 +872,9 @@ msgstr "スケジュール"
|
|
|
869
872
|
msgid "Schedule Remote Job"
|
|
870
873
|
msgstr "リモートジョブのスケジュール"
|
|
871
874
|
|
|
875
|
+
msgid "Schedule a job"
|
|
876
|
+
msgstr ""
|
|
877
|
+
|
|
872
878
|
msgid "Schedule for future execution"
|
|
873
879
|
msgstr ""
|
|
874
880
|
|
|
@@ -890,6 +896,9 @@ msgstr "開始スケジュール"
|
|
|
890
896
|
msgid "Scheduled to start before"
|
|
891
897
|
msgstr ""
|
|
892
898
|
|
|
899
|
+
msgid "Script"
|
|
900
|
+
msgstr ""
|
|
901
|
+
|
|
893
902
|
msgid "Scroll to bottom"
|
|
894
903
|
msgstr "最下部へスクロール"
|
|
895
904
|
|
|
@@ -1210,16 +1219,16 @@ msgstr "ユーザー入力"
|
|
|
1210
1219
|
msgid "Value"
|
|
1211
1220
|
msgstr "値"
|
|
1212
1221
|
|
|
1213
|
-
msgid "View
|
|
1222
|
+
msgid "View all jobs"
|
|
1214
1223
|
msgstr ""
|
|
1215
1224
|
|
|
1216
|
-
msgid "View
|
|
1225
|
+
msgid "View finished jobs"
|
|
1217
1226
|
msgstr ""
|
|
1218
1227
|
|
|
1219
|
-
msgid "View
|
|
1228
|
+
msgid "View running jobs"
|
|
1220
1229
|
msgstr ""
|
|
1221
1230
|
|
|
1222
|
-
msgid "View
|
|
1231
|
+
msgid "View scheduled jobs"
|
|
1223
1232
|
msgstr ""
|
|
1224
1233
|
|
|
1225
1234
|
msgid "Web Console"
|
|
@@ -1365,12 +1374,3 @@ msgstr ""
|
|
|
1365
1374
|
|
|
1366
1375
|
msgid "using Smart Proxy"
|
|
1367
1376
|
msgstr ""
|
|
1368
|
-
|
|
1369
|
-
msgid "»Action with sub plans«"
|
|
1370
|
-
msgstr ""
|
|
1371
|
-
|
|
1372
|
-
msgid "»Import Puppet classes«"
|
|
1373
|
-
msgstr ""
|
|
1374
|
-
|
|
1375
|
-
msgid "»Import facts«"
|
|
1376
|
-
msgstr ""
|