foreman_remote_execution 9.0.1 → 10.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/.github/workflows/release.yml +14 -0
- data/.tx/config +3 -1
- data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +1 -0
- data/app/assets/javascripts/foreman_remote_execution/template_invocation.js +10 -1
- data/app/controllers/api/v2/job_invocations_controller.rb +1 -0
- data/app/controllers/job_invocations_controller.rb +30 -1
- data/app/controllers/ui_job_wizard_controller.rb +3 -1
- data/app/helpers/remote_execution_helper.rb +1 -1
- data/app/lib/actions/remote_execution/run_host_job.rb +1 -1
- data/app/lib/actions/remote_execution/run_hosts_job.rb +28 -2
- data/app/models/remote_execution_feature.rb +11 -8
- data/app/views/api/v2/job_invocations/base.json.rabl +1 -1
- data/app/views/job_invocations/_form.html.erb +1 -1
- data/app/views/job_invocations/show.html.erb +1 -1
- data/app/views/job_invocations/welcome.html.erb +1 -1
- data/app/views/templates/script/run_command.erb +1 -0
- data/config/routes.rb +2 -0
- data/db/migrate/20210816100932_rex_setting_category_to_dsl.rb +1 -1
- data/db/migrate/20220426145007_add_unique_feature_label_index.rb +14 -0
- data/lib/foreman_remote_execution/engine.rb +9 -9
- data/lib/foreman_remote_execution/tasks/explain_proxy_selection.rake +12 -3
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/Makefile +6 -3
- data/locale/action_names.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/de/foreman_remote_execution.po +67 -19
- data/locale/en/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/en/foreman_remote_execution.po +56 -8
- data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/en_GB/foreman_remote_execution.po +58 -10
- data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/es/foreman_remote_execution.po +71 -23
- data/locale/foreman_remote_execution.pot +216 -141
- data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/fr/foreman_remote_execution.po +104 -56
- data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ja/foreman_remote_execution.po +72 -24
- data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ko/foreman_remote_execution.po +63 -15
- data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/pt_BR/foreman_remote_execution.po +68 -20
- data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ru/foreman_remote_execution.po +63 -15
- data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_CN/foreman_remote_execution.po +71 -23
- data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_TW/foreman_remote_execution.po +63 -15
- data/package.json +6 -6
- data/webpack/JobWizard/Footer.js +104 -0
- data/webpack/JobWizard/JobWizard.js +105 -32
- data/webpack/JobWizard/JobWizard.scss +6 -17
- data/webpack/JobWizard/JobWizardConstants.js +1 -1
- data/webpack/JobWizard/JobWizardPageRerun.js +2 -0
- data/webpack/JobWizard/StartsBeforeErrorAlert.js +17 -0
- data/webpack/JobWizard/__tests__/__snapshots__/integration.test.js.snap +8 -0
- data/webpack/JobWizard/__tests__/fixtures.js +13 -1
- data/webpack/JobWizard/__tests__/integration.test.js +15 -0
- data/webpack/JobWizard/__tests__/validation.test.js +36 -0
- data/webpack/JobWizard/autofill.js +1 -0
- data/webpack/JobWizard/steps/AdvancedFields/__tests__/AdvancedFields.test.js +29 -10
- data/webpack/JobWizard/steps/AdvancedFields/__tests__/__snapshots__/AdvancedFields.test.js.snap +8 -0
- data/webpack/JobWizard/steps/HostsAndInputs/HostPreviewModal.js +5 -0
- data/webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js +28 -14
- data/webpack/JobWizard/steps/HostsAndInputs/__tests__/HostsAndInputs.test.js +41 -4
- data/webpack/JobWizard/steps/HostsAndInputs/buildHostQuery.js +16 -10
- data/webpack/JobWizard/steps/HostsAndInputs/index.js +51 -3
- data/webpack/JobWizard/steps/ReviewDetails/ReviewDetails.test.js +117 -0
- data/webpack/JobWizard/steps/ReviewDetails/helpers.js +43 -0
- data/webpack/JobWizard/steps/ReviewDetails/index.js +169 -18
- data/webpack/JobWizard/steps/Schedule/QueryType.js +1 -1
- data/webpack/JobWizard/steps/Schedule/RepeatHour.js +0 -1
- data/webpack/JobWizard/steps/Schedule/RepeatWeek.js +1 -1
- data/webpack/JobWizard/steps/Schedule/__tests__/Schedule.test.js +52 -18
- data/webpack/JobWizard/steps/form/DateTimePicker.js +1 -2
- data/webpack/JobWizard/steps/form/GroupedSelectField.js +0 -1
- data/webpack/JobWizard/steps/form/SelectField.js +0 -1
- data/webpack/JobWizard/submit.js +14 -3
- data/webpack/react_app/components/RecentJobsCard/RecentJobsCard.js +4 -4
- data/webpack/react_app/components/RecentJobsCard/RecentJobsTable.js +2 -2
- data/webpack/react_app/components/RecentJobsCard/constants.js +2 -2
- data/webpack/react_app/components/RegistrationExtension/RexPull.js +0 -2
- metadata +23 -6
data/locale/Makefile
CHANGED
@@ -14,6 +14,7 @@ POFILES = $(shell find . -name '$(DOMAIN).po')
|
|
14
14
|
MOFILES = $(patsubst %.po,%.mo,$(POFILES))
|
15
15
|
POXFILES = $(patsubst %.po,%.pox,$(POFILES))
|
16
16
|
EDITFILES = $(patsubst %.po,%.edit.po,$(POFILES))
|
17
|
+
JSFILES = $(shell find ../app/assets/javascripts/*/locale -name '$(DOMAIN).js')
|
17
18
|
|
18
19
|
%.mo: %.po
|
19
20
|
mkdir -p $(shell dirname $@)/LC_MESSAGES
|
@@ -42,18 +43,20 @@ uniq-po:
|
|
42
43
|
done
|
43
44
|
|
44
45
|
tx-pull: $(EDITFILES)
|
45
|
-
tx pull -f
|
46
|
+
cd .. && tx pull -f
|
46
47
|
for f in $(EDITFILES) ; do \
|
47
48
|
sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
|
48
49
|
done
|
49
50
|
|
50
51
|
tx-update: tx-pull
|
51
52
|
@echo
|
52
|
-
@echo Run rake plugin:gettext[$(DOMAIN)] from the Foreman installation
|
53
|
+
@echo Run rake plugin:gettext[$(DOMAIN)] from the Foreman installation
|
54
|
+
@echo then run rake plugin:po_to_json[$(DOMAIN)] from the Foreman installation
|
55
|
+
@echo then run make -C locale mo-files to finish
|
53
56
|
@echo
|
54
57
|
|
55
58
|
mo-files: $(MOFILES)
|
56
|
-
git add $(POFILES) $(POTFILE) ../locale/*/LC_MESSAGES
|
59
|
+
git add $(POFILES) $(POTFILE) $(JSFILES) ../locale/*/LC_MESSAGES
|
57
60
|
git commit -m "i18n - pulling from tx"
|
58
61
|
@echo
|
59
62
|
@echo Changes commited!
|
data/locale/action_names.rb
CHANGED
Binary file
|
@@ -11,7 +11,7 @@
|
|
11
11
|
# abf90805572190d649c59f7a021d76cb, 2017
|
12
12
|
msgid ""
|
13
13
|
msgstr ""
|
14
|
-
"Project-Id-Version: foreman_remote_execution
|
14
|
+
"Project-Id-Version: foreman_remote_execution 9.0.1\n"
|
15
15
|
"Report-Msgid-Bugs-To: \n"
|
16
16
|
"PO-Revision-Date: 2016-02-15 13:54+0000\n"
|
17
17
|
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>, 2016-2017,2022\n"
|
@@ -31,6 +31,9 @@ msgstr "vor %s"
|
|
31
31
|
msgid "%s job has been invoked"
|
32
32
|
msgstr ""
|
33
33
|
|
34
|
+
msgid "%s more"
|
35
|
+
msgstr ""
|
36
|
+
|
34
37
|
msgid "%{description} on %{host}"
|
35
38
|
msgstr "%{description} auf %{host}"
|
36
39
|
|
@@ -40,9 +43,6 @@ msgstr ""
|
|
40
43
|
msgid "'Starts before' date must in the future"
|
41
44
|
msgstr ""
|
42
45
|
|
43
|
-
msgid ", and %s more"
|
44
|
-
msgstr ""
|
45
|
-
|
46
46
|
msgid "...and %s more"
|
47
47
|
msgstr ""
|
48
48
|
|
@@ -90,6 +90,9 @@ msgstr "Aktion mit Unterplänen"
|
|
90
90
|
msgid "Actions"
|
91
91
|
msgstr "Aktionen"
|
92
92
|
|
93
|
+
msgid "Active Filters:"
|
94
|
+
msgstr ""
|
95
|
+
|
93
96
|
msgid "Add Foreign Input Set"
|
94
97
|
msgstr "Fremdeingabe-Satz hinzufügen"
|
95
98
|
|
@@ -99,6 +102,9 @@ msgstr "Erweiterte Felder"
|
|
99
102
|
msgid "After"
|
100
103
|
msgstr ""
|
101
104
|
|
105
|
+
msgid "After %s occurences"
|
106
|
+
msgstr ""
|
107
|
+
|
102
108
|
msgid "All fields are required."
|
103
109
|
msgstr "Alle Felder sind erforderlich."
|
104
110
|
|
@@ -156,7 +162,7 @@ msgstr "bookmark_id und search_query konnte nicht angegeben werden"
|
|
156
162
|
msgid "Categories list failed with:"
|
157
163
|
msgstr ""
|
158
164
|
|
159
|
-
msgid "Category and
|
165
|
+
msgid "Category and template"
|
160
166
|
msgstr ""
|
161
167
|
|
162
168
|
msgid "Choose a job template that is pre-selected in job invocation form"
|
@@ -168,7 +174,7 @@ msgstr "Zirkuläre Abhängigkeit im Fremdeingabe-Satz gefunden '%{template}' ->
|
|
168
174
|
msgid "Cleanup working directories"
|
169
175
|
msgstr "Arbeitsverzeichnisse bereinigen"
|
170
176
|
|
171
|
-
msgid "Clear filters"
|
177
|
+
msgid "Clear all filters"
|
172
178
|
msgstr ""
|
173
179
|
|
174
180
|
msgid "Clear input"
|
@@ -214,7 +220,7 @@ msgid "Could not use any template used in the job invocation"
|
|
214
220
|
msgstr "Es konnte keine Vorlage aus dem Jobaufruf verwendet werden"
|
215
221
|
|
216
222
|
msgid "Create"
|
217
|
-
msgstr ""
|
223
|
+
msgstr "Erstellen"
|
218
224
|
|
219
225
|
msgid "Create Report"
|
220
226
|
msgstr ""
|
@@ -334,7 +340,7 @@ msgid "Edit job description template"
|
|
334
340
|
msgstr ""
|
335
341
|
|
336
342
|
msgid "Effective User"
|
337
|
-
msgstr ""
|
343
|
+
msgstr "Effektiver Benutzer"
|
338
344
|
|
339
345
|
msgid "Effective User Method"
|
340
346
|
msgstr "Effektive Benutzermethode"
|
@@ -378,6 +384,18 @@ msgstr "Fehler:"
|
|
378
384
|
msgid "Evaluated at:"
|
379
385
|
msgstr "Evaluiert an:"
|
380
386
|
|
387
|
+
msgid "Every day at %s"
|
388
|
+
msgstr ""
|
389
|
+
|
390
|
+
msgid "Every hour at minute %s"
|
391
|
+
msgstr ""
|
392
|
+
|
393
|
+
msgid "Every month on %s at %s"
|
394
|
+
msgstr ""
|
395
|
+
|
396
|
+
msgid "Every week on %s at %s"
|
397
|
+
msgstr ""
|
398
|
+
|
381
399
|
msgid "Execute the job later, at a scheduled time."
|
382
400
|
msgstr ""
|
383
401
|
|
@@ -691,13 +709,13 @@ msgid "Name"
|
|
691
709
|
msgstr "Name"
|
692
710
|
|
693
711
|
msgid "Never"
|
694
|
-
msgstr ""
|
712
|
+
msgstr "Niemals"
|
695
713
|
|
696
714
|
msgid "New Job Template"
|
697
715
|
msgstr "Neue Job-Vorlage"
|
698
716
|
|
699
717
|
msgid "No (override)"
|
700
|
-
msgstr ""
|
718
|
+
msgstr "Nein (Überschreiben)"
|
701
719
|
|
702
720
|
msgid "No Target Hosts"
|
703
721
|
msgstr ""
|
@@ -724,7 +742,7 @@ msgid "Now"
|
|
724
742
|
msgstr ""
|
725
743
|
|
726
744
|
msgid "On"
|
727
|
-
msgstr ""
|
745
|
+
msgstr "Am"
|
728
746
|
|
729
747
|
msgid "Only one of feature or job_template_id can be specified"
|
730
748
|
msgstr ""
|
@@ -738,6 +756,9 @@ msgstr "Organisation"
|
|
738
756
|
msgid "Override the description format from the template for this invocation only"
|
739
757
|
msgstr "Beschreibungsformat der Vorlage nur für diesen Aufruf außer Kraft setzen "
|
740
758
|
|
759
|
+
msgid "Override the global time to pickup interval for this invocation only"
|
760
|
+
msgstr ""
|
761
|
+
|
741
762
|
msgid "Override the timeout interval from the template for this invocation only"
|
742
763
|
msgstr "Überschreibe das Timeout-Intervall des Templates / Musters nur für diese Invokation / diesen Aufruf"
|
743
764
|
|
@@ -765,9 +786,24 @@ msgstr "Führe einen einzelnen Puppet-Lauf aus"
|
|
765
786
|
msgid "Perform no more executions after this time"
|
766
787
|
msgstr "Danach nicht mehr ausführen"
|
767
788
|
|
789
|
+
msgid "Please enter a search query"
|
790
|
+
msgstr ""
|
791
|
+
|
792
|
+
msgid "Please go back to \\\"Schedule\\\" - \\\"Future execution\\\" step to fix the error"
|
793
|
+
msgstr ""
|
794
|
+
|
768
795
|
msgid "Please refine your search."
|
769
796
|
msgstr ""
|
770
797
|
|
798
|
+
msgid "Please select at least one host"
|
799
|
+
msgstr ""
|
800
|
+
|
801
|
+
msgid "Please select at least one host collection"
|
802
|
+
msgstr ""
|
803
|
+
|
804
|
+
msgid "Please select at least one host group"
|
805
|
+
msgstr ""
|
806
|
+
|
771
807
|
msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
|
772
808
|
msgstr ""
|
773
809
|
"Port für die Verwendung von SSH Kommunikation. Standardport 22. \n"
|
@@ -870,7 +906,7 @@ msgid "Repeat amount can only be a positive number"
|
|
870
906
|
msgstr ""
|
871
907
|
|
872
908
|
msgid "Repeats"
|
873
|
-
msgstr ""
|
909
|
+
msgstr "Wiederholungen "
|
874
910
|
|
875
911
|
msgid "Rerun"
|
876
912
|
msgstr "Erneut ausführen"
|
@@ -891,7 +927,7 @@ msgid "Rerun the job"
|
|
891
927
|
msgstr "Job erneut ausführen"
|
892
928
|
|
893
929
|
msgid "Reset to default"
|
894
|
-
msgstr ""
|
930
|
+
msgstr "Rücksetzen auf Standardeinstellungen"
|
895
931
|
|
896
932
|
msgid "Resolves to"
|
897
933
|
msgstr "Wird aufgelöst zu"
|
@@ -911,6 +947,12 @@ msgstr "Job ausführen"
|
|
911
947
|
msgid "Run Puppet Once"
|
912
948
|
msgstr "Puppet einmal ausführen"
|
913
949
|
|
950
|
+
msgid "Run Script"
|
951
|
+
msgstr ""
|
952
|
+
|
953
|
+
msgid "Run a script"
|
954
|
+
msgstr ""
|
955
|
+
|
914
956
|
msgid "Run at most N tasks at a time"
|
915
957
|
msgstr "Höchstens n Aufgaben gleichzeitig ausführen"
|
916
958
|
|
@@ -1059,6 +1101,9 @@ msgid "Started"
|
|
1059
1101
|
msgstr "Gestartet"
|
1060
1102
|
|
1061
1103
|
msgid "Starts"
|
1104
|
+
msgstr "Beginnt"
|
1105
|
+
|
1106
|
+
msgid "Starts Before"
|
1062
1107
|
msgstr ""
|
1063
1108
|
|
1064
1109
|
msgid "Starts at"
|
@@ -1243,8 +1288,8 @@ msgstr "Typ"
|
|
1243
1288
|
msgid "Type has impact on when is the query evaluated to hosts."
|
1244
1289
|
msgstr ""
|
1245
1290
|
|
1246
|
-
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's
|
1247
|
-
msgstr "
|
1291
|
+
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it</li></ul>"
|
1292
|
+
msgstr ""
|
1248
1293
|
|
1249
1294
|
msgid "Type of execution"
|
1250
1295
|
msgstr ""
|
@@ -1370,7 +1415,7 @@ msgid "Workers pool size"
|
|
1370
1415
|
msgstr "Größe des Arbeiterpools"
|
1371
1416
|
|
1372
1417
|
msgid "Yes (override)"
|
1373
|
-
msgstr ""
|
1418
|
+
msgstr "Ja (überschreiben)"
|
1374
1419
|
|
1375
1420
|
msgid "You are not allowed to see the currently assigned template. Saving the form now would unassign the template."
|
1376
1421
|
msgstr "Sie haben nicht die Genehmigung, die aktuell zugewiesenen Vorlagen einzusehen. Wenn Sie das Formular jetzt speichern, wird die Zuweisung der Vorlage aufgehoben."
|
@@ -1399,7 +1444,7 @@ msgstr "Fehler beim Rendern: %s"
|
|
1399
1444
|
msgid "evaluates just after you submit this form"
|
1400
1445
|
msgstr ""
|
1401
1446
|
|
1402
|
-
msgid "evaluates just before the execution is started, so if it's
|
1447
|
+
msgid "evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it"
|
1403
1448
|
msgstr ""
|
1404
1449
|
|
1405
1450
|
msgid "failed"
|
@@ -1439,7 +1484,7 @@ msgid "is month (range: 1-12)"
|
|
1439
1484
|
msgstr "Monat (im Bereich: 1-12)"
|
1440
1485
|
|
1441
1486
|
msgid "no"
|
1442
|
-
msgstr ""
|
1487
|
+
msgstr "nein"
|
1443
1488
|
|
1444
1489
|
msgid "occurences"
|
1445
1490
|
msgstr ""
|
@@ -1483,5 +1528,8 @@ msgstr "verwende"
|
|
1483
1528
|
msgid "using Smart Proxy"
|
1484
1529
|
msgstr ""
|
1485
1530
|
|
1486
|
-
msgid "
|
1531
|
+
msgid "view host names"
|
1487
1532
|
msgstr ""
|
1533
|
+
|
1534
|
+
msgid "yes"
|
1535
|
+
msgstr "ja"
|
Binary file
|
@@ -5,7 +5,7 @@
|
|
5
5
|
#
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_remote_execution
|
8
|
+
"Project-Id-Version: foreman_remote_execution 9.0.1\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
10
|
"PO-Revision-Date: 2016-02-03 04:48-0500\n"
|
11
11
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
@@ -26,6 +26,9 @@ msgstr ""
|
|
26
26
|
msgid "%s job has been invoked"
|
27
27
|
msgstr ""
|
28
28
|
|
29
|
+
msgid "%s more"
|
30
|
+
msgstr ""
|
31
|
+
|
29
32
|
msgid "%{description} on %{host}"
|
30
33
|
msgstr ""
|
31
34
|
|
@@ -35,9 +38,6 @@ msgstr ""
|
|
35
38
|
msgid "'Starts before' date must in the future"
|
36
39
|
msgstr ""
|
37
40
|
|
38
|
-
msgid ", and %s more"
|
39
|
-
msgstr ""
|
40
|
-
|
41
41
|
msgid "...and %s more"
|
42
42
|
msgstr ""
|
43
43
|
|
@@ -85,6 +85,9 @@ msgstr ""
|
|
85
85
|
msgid "Actions"
|
86
86
|
msgstr ""
|
87
87
|
|
88
|
+
msgid "Active Filters:"
|
89
|
+
msgstr ""
|
90
|
+
|
88
91
|
msgid "Add Foreign Input Set"
|
89
92
|
msgstr ""
|
90
93
|
|
@@ -94,6 +97,9 @@ msgstr ""
|
|
94
97
|
msgid "After"
|
95
98
|
msgstr ""
|
96
99
|
|
100
|
+
msgid "After %s occurences"
|
101
|
+
msgstr ""
|
102
|
+
|
97
103
|
msgid "All fields are required."
|
98
104
|
msgstr ""
|
99
105
|
|
@@ -151,7 +157,7 @@ msgstr ""
|
|
151
157
|
msgid "Categories list failed with:"
|
152
158
|
msgstr ""
|
153
159
|
|
154
|
-
msgid "Category and
|
160
|
+
msgid "Category and template"
|
155
161
|
msgstr ""
|
156
162
|
|
157
163
|
msgid "Choose a job template that is pre-selected in job invocation form"
|
@@ -163,7 +169,7 @@ msgstr ""
|
|
163
169
|
msgid "Cleanup working directories"
|
164
170
|
msgstr ""
|
165
171
|
|
166
|
-
msgid "Clear filters"
|
172
|
+
msgid "Clear all filters"
|
167
173
|
msgstr ""
|
168
174
|
|
169
175
|
msgid "Clear input"
|
@@ -373,6 +379,18 @@ msgstr ""
|
|
373
379
|
msgid "Evaluated at:"
|
374
380
|
msgstr ""
|
375
381
|
|
382
|
+
msgid "Every day at %s"
|
383
|
+
msgstr ""
|
384
|
+
|
385
|
+
msgid "Every hour at minute %s"
|
386
|
+
msgstr ""
|
387
|
+
|
388
|
+
msgid "Every month on %s at %s"
|
389
|
+
msgstr ""
|
390
|
+
|
391
|
+
msgid "Every week on %s at %s"
|
392
|
+
msgstr ""
|
393
|
+
|
376
394
|
msgid "Execute the job later, at a scheduled time."
|
377
395
|
msgstr ""
|
378
396
|
|
@@ -733,6 +751,9 @@ msgstr ""
|
|
733
751
|
msgid "Override the description format from the template for this invocation only"
|
734
752
|
msgstr ""
|
735
753
|
|
754
|
+
msgid "Override the global time to pickup interval for this invocation only"
|
755
|
+
msgstr ""
|
756
|
+
|
736
757
|
msgid "Override the timeout interval from the template for this invocation only"
|
737
758
|
msgstr ""
|
738
759
|
|
@@ -760,9 +781,24 @@ msgstr ""
|
|
760
781
|
msgid "Perform no more executions after this time"
|
761
782
|
msgstr ""
|
762
783
|
|
784
|
+
msgid "Please enter a search query"
|
785
|
+
msgstr ""
|
786
|
+
|
787
|
+
msgid "Please go back to \\\"Schedule\\\" - \\\"Future execution\\\" step to fix the error"
|
788
|
+
msgstr ""
|
789
|
+
|
763
790
|
msgid "Please refine your search."
|
764
791
|
msgstr ""
|
765
792
|
|
793
|
+
msgid "Please select at least one host"
|
794
|
+
msgstr ""
|
795
|
+
|
796
|
+
msgid "Please select at least one host collection"
|
797
|
+
msgstr ""
|
798
|
+
|
799
|
+
msgid "Please select at least one host group"
|
800
|
+
msgstr ""
|
801
|
+
|
766
802
|
msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
|
767
803
|
msgstr ""
|
768
804
|
|
@@ -904,6 +940,12 @@ msgstr ""
|
|
904
940
|
msgid "Run Puppet Once"
|
905
941
|
msgstr ""
|
906
942
|
|
943
|
+
msgid "Run Script"
|
944
|
+
msgstr ""
|
945
|
+
|
946
|
+
msgid "Run a script"
|
947
|
+
msgstr ""
|
948
|
+
|
907
949
|
msgid "Run at most N tasks at a time"
|
908
950
|
msgstr ""
|
909
951
|
|
@@ -1054,6 +1096,9 @@ msgstr ""
|
|
1054
1096
|
msgid "Starts"
|
1055
1097
|
msgstr ""
|
1056
1098
|
|
1099
|
+
msgid "Starts Before"
|
1100
|
+
msgstr ""
|
1101
|
+
|
1057
1102
|
msgid "Starts at"
|
1058
1103
|
msgstr ""
|
1059
1104
|
|
@@ -1236,7 +1281,7 @@ msgstr ""
|
|
1236
1281
|
msgid "Type has impact on when is the query evaluated to hosts."
|
1237
1282
|
msgstr ""
|
1238
1283
|
|
1239
|
-
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's
|
1284
|
+
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it</li></ul>"
|
1240
1285
|
msgstr ""
|
1241
1286
|
|
1242
1287
|
msgid "Type of execution"
|
@@ -1392,7 +1437,7 @@ msgstr ""
|
|
1392
1437
|
msgid "evaluates just after you submit this form"
|
1393
1438
|
msgstr ""
|
1394
1439
|
|
1395
|
-
msgid "evaluates just before the execution is started, so if it's
|
1440
|
+
msgid "evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it"
|
1396
1441
|
msgstr ""
|
1397
1442
|
|
1398
1443
|
msgid "failed"
|
@@ -1476,5 +1521,8 @@ msgstr ""
|
|
1476
1521
|
msgid "using Smart Proxy"
|
1477
1522
|
msgstr ""
|
1478
1523
|
|
1524
|
+
msgid "view host names"
|
1525
|
+
msgstr ""
|
1526
|
+
|
1479
1527
|
msgid "yes"
|
1480
1528
|
msgstr ""
|
Binary file
|
@@ -6,7 +6,7 @@
|
|
6
6
|
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2016
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: foreman_remote_execution
|
9
|
+
"Project-Id-Version: foreman_remote_execution 9.0.1\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
11
|
"PO-Revision-Date: 2016-02-15 13:54+0000\n"
|
12
12
|
"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2016\n"
|
@@ -27,6 +27,9 @@ msgstr "%s ago"
|
|
27
27
|
msgid "%s job has been invoked"
|
28
28
|
msgstr ""
|
29
29
|
|
30
|
+
msgid "%s more"
|
31
|
+
msgstr ""
|
32
|
+
|
30
33
|
msgid "%{description} on %{host}"
|
31
34
|
msgstr ""
|
32
35
|
|
@@ -36,9 +39,6 @@ msgstr ""
|
|
36
39
|
msgid "'Starts before' date must in the future"
|
37
40
|
msgstr ""
|
38
41
|
|
39
|
-
msgid ", and %s more"
|
40
|
-
msgstr ""
|
41
|
-
|
42
42
|
msgid "...and %s more"
|
43
43
|
msgstr ""
|
44
44
|
|
@@ -86,6 +86,9 @@ msgstr "Action with sub plans"
|
|
86
86
|
msgid "Actions"
|
87
87
|
msgstr "Actions"
|
88
88
|
|
89
|
+
msgid "Active Filters:"
|
90
|
+
msgstr ""
|
91
|
+
|
89
92
|
msgid "Add Foreign Input Set"
|
90
93
|
msgstr ""
|
91
94
|
|
@@ -95,6 +98,9 @@ msgstr ""
|
|
95
98
|
msgid "After"
|
96
99
|
msgstr ""
|
97
100
|
|
101
|
+
msgid "After %s occurences"
|
102
|
+
msgstr ""
|
103
|
+
|
98
104
|
msgid "All fields are required."
|
99
105
|
msgstr ""
|
100
106
|
|
@@ -152,7 +158,7 @@ msgstr ""
|
|
152
158
|
msgid "Categories list failed with:"
|
153
159
|
msgstr ""
|
154
160
|
|
155
|
-
msgid "Category and
|
161
|
+
msgid "Category and template"
|
156
162
|
msgstr ""
|
157
163
|
|
158
164
|
msgid "Choose a job template that is pre-selected in job invocation form"
|
@@ -164,7 +170,7 @@ msgstr ""
|
|
164
170
|
msgid "Cleanup working directories"
|
165
171
|
msgstr ""
|
166
172
|
|
167
|
-
msgid "Clear filters"
|
173
|
+
msgid "Clear all filters"
|
168
174
|
msgstr ""
|
169
175
|
|
170
176
|
msgid "Clear input"
|
@@ -374,6 +380,18 @@ msgstr ""
|
|
374
380
|
msgid "Evaluated at:"
|
375
381
|
msgstr ""
|
376
382
|
|
383
|
+
msgid "Every day at %s"
|
384
|
+
msgstr ""
|
385
|
+
|
386
|
+
msgid "Every hour at minute %s"
|
387
|
+
msgstr ""
|
388
|
+
|
389
|
+
msgid "Every month on %s at %s"
|
390
|
+
msgstr ""
|
391
|
+
|
392
|
+
msgid "Every week on %s at %s"
|
393
|
+
msgstr ""
|
394
|
+
|
377
395
|
msgid "Execute the job later, at a scheduled time."
|
378
396
|
msgstr ""
|
379
397
|
|
@@ -734,6 +752,9 @@ msgstr "Organisation"
|
|
734
752
|
msgid "Override the description format from the template for this invocation only"
|
735
753
|
msgstr ""
|
736
754
|
|
755
|
+
msgid "Override the global time to pickup interval for this invocation only"
|
756
|
+
msgstr ""
|
757
|
+
|
737
758
|
msgid "Override the timeout interval from the template for this invocation only"
|
738
759
|
msgstr ""
|
739
760
|
|
@@ -761,9 +782,24 @@ msgstr ""
|
|
761
782
|
msgid "Perform no more executions after this time"
|
762
783
|
msgstr ""
|
763
784
|
|
785
|
+
msgid "Please enter a search query"
|
786
|
+
msgstr ""
|
787
|
+
|
788
|
+
msgid "Please go back to \\\"Schedule\\\" - \\\"Future execution\\\" step to fix the error"
|
789
|
+
msgstr ""
|
790
|
+
|
764
791
|
msgid "Please refine your search."
|
765
792
|
msgstr ""
|
766
793
|
|
794
|
+
msgid "Please select at least one host"
|
795
|
+
msgstr ""
|
796
|
+
|
797
|
+
msgid "Please select at least one host collection"
|
798
|
+
msgstr ""
|
799
|
+
|
800
|
+
msgid "Please select at least one host group"
|
801
|
+
msgstr ""
|
802
|
+
|
767
803
|
msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
|
768
804
|
msgstr ""
|
769
805
|
|
@@ -905,6 +941,12 @@ msgstr ""
|
|
905
941
|
msgid "Run Puppet Once"
|
906
942
|
msgstr ""
|
907
943
|
|
944
|
+
msgid "Run Script"
|
945
|
+
msgstr ""
|
946
|
+
|
947
|
+
msgid "Run a script"
|
948
|
+
msgstr ""
|
949
|
+
|
908
950
|
msgid "Run at most N tasks at a time"
|
909
951
|
msgstr ""
|
910
952
|
|
@@ -1055,6 +1097,9 @@ msgstr ""
|
|
1055
1097
|
msgid "Starts"
|
1056
1098
|
msgstr ""
|
1057
1099
|
|
1100
|
+
msgid "Starts Before"
|
1101
|
+
msgstr ""
|
1102
|
+
|
1058
1103
|
msgid "Starts at"
|
1059
1104
|
msgstr ""
|
1060
1105
|
|
@@ -1237,7 +1282,7 @@ msgstr "Type"
|
|
1237
1282
|
msgid "Type has impact on when is the query evaluated to hosts."
|
1238
1283
|
msgstr ""
|
1239
1284
|
|
1240
|
-
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's
|
1285
|
+
msgid "Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static</b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it</li></ul>"
|
1241
1286
|
msgstr ""
|
1242
1287
|
|
1243
1288
|
msgid "Type of execution"
|
@@ -1393,7 +1438,7 @@ msgstr ""
|
|
1393
1438
|
msgid "evaluates just after you submit this form"
|
1394
1439
|
msgstr ""
|
1395
1440
|
|
1396
|
-
msgid "evaluates just before the execution is started, so if it's
|
1441
|
+
msgid "evaluates just before the execution is started, so if it's planned in future, targeted hosts set may change before it"
|
1397
1442
|
msgstr ""
|
1398
1443
|
|
1399
1444
|
msgid "failed"
|
@@ -1433,7 +1478,7 @@ msgid "is month (range: 1-12)"
|
|
1433
1478
|
msgstr ""
|
1434
1479
|
|
1435
1480
|
msgid "no"
|
1436
|
-
msgstr ""
|
1481
|
+
msgstr "no"
|
1437
1482
|
|
1438
1483
|
msgid "occurences"
|
1439
1484
|
msgstr ""
|
@@ -1477,5 +1522,8 @@ msgstr ""
|
|
1477
1522
|
msgid "using Smart Proxy"
|
1478
1523
|
msgstr ""
|
1479
1524
|
|
1480
|
-
msgid "
|
1525
|
+
msgid "view host names"
|
1481
1526
|
msgstr ""
|
1527
|
+
|
1528
|
+
msgid "yes"
|
1529
|
+
msgstr "yes"
|
Binary file
|