foreman_remote_execution 5.1.0 → 6.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -0
- data/app/controllers/foreman_remote_execution/concerns/api/v2/registration_controller_extensions.rb +5 -0
- data/app/controllers/ui_job_wizard_controller.rb +13 -2
- data/app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb +20 -9
- data/app/helpers/remote_execution_helper.rb +5 -4
- data/app/lib/actions/remote_execution/run_host_job.rb +1 -1
- data/app/mailers/rex_job_mailer.rb +1 -1
- data/app/models/concerns/foreman_remote_execution/host_extensions.rb +9 -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 +1 -1
- data/app/models/remote_execution_provider.rb +10 -1
- data/app/models/ssh_execution_provider.rb +17 -4
- data/app/models/targeting.rb +1 -1
- 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/dashboard/_latest-jobs.html.erb +1 -1
- data/app/views/job_invocations/_preview_hosts_list.html.erb +1 -1
- data/app/views/template_invocations/show.html.erb +1 -1
- 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/seeds.d/60-ssh_proxy_feature.rb +3 -0
- data/jsconfig.json +8 -0
- data/lib/foreman_remote_execution/engine.rb +10 -4
- data/lib/foreman_remote_execution/version.rb +1 -1
- data/locale/action_names.rb +3 -4
- data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/de/foreman_remote_execution.po +356 -20
- data/locale/en/foreman_remote_execution.po +356 -20
- data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/en_GB/foreman_remote_execution.po +356 -20
- data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/es/foreman_remote_execution.po +357 -21
- data/locale/foreman_remote_execution.pot +808 -296
- data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/fr/foreman_remote_execution.po +357 -21
- data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ja/foreman_remote_execution.po +357 -21
- data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ko/foreman_remote_execution.po +356 -20
- data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/pt_BR/foreman_remote_execution.po +357 -21
- data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/ru/foreman_remote_execution.po +356 -20
- data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_CN/foreman_remote_execution.po +357 -21
- data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
- data/locale/zh_TW/foreman_remote_execution.po +356 -20
- 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 +30 -7
- data/webpack/JobWizard/JobWizard.scss +5 -0
- data/webpack/JobWizard/JobWizardConstants.js +2 -1
- data/webpack/JobWizard/__tests__/fixtures.js +13 -2
- data/webpack/JobWizard/__tests__/integration.test.js +6 -1
- data/webpack/JobWizard/autofill.js +34 -9
- data/webpack/JobWizard/index.js +0 -7
- data/webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js +24 -15
- data/webpack/JobWizard/steps/CategoryAndTemplate/index.js +25 -7
- data/webpack/JobWizard/steps/HostsAndInputs/HostSearch.js +1 -1
- data/webpack/JobWizard/steps/HostsAndInputs/__tests__/HostsAndInputs.test.js +28 -0
- data/webpack/JobWizard/steps/Schedule/RepeatOn.js +1 -1
- data/webpack/JobWizard/steps/form/Formatter.js +18 -3
- data/webpack/JobWizard/steps/form/GroupedSelectField.js +7 -1
- data/webpack/__mocks__/foremanReact/components/Pagination.js +2 -0
- data/webpack/__mocks__/foremanReact/constants.js +1 -0
- data/webpack/global_index.js +4 -0
- 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 +22 -0
- data/webpack/react_app/components/RecentJobsCard/RecentJobsCard.js +6 -1
- 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/TargetingHostsHelpers.js +1 -1
- data/webpack/react_app/components/TargetingHosts/TargetingHostsPage.js +1 -6
- data/webpack/react_app/components/TargetingHosts/__tests__/__snapshots__/TargetingHostsPage.test.js.snap +1 -9
- data/webpack/react_app/components/TargetingHosts/index.js +2 -3
- data/webpack/react_app/extend/fillKebabItems.js +11 -0
- data/webpack/react_app/extend/fillRexFeaturesDropdown.js +11 -0
- metadata +24 -16
- data/app/views/templates/README.md +0 -6
- data/webpack/__mocks__/foremanReact/components/Pagination/PaginationWrapper.js +0 -2
@@ -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:
|
12
|
-
"PO-Revision-Date:
|
11
|
+
"POT-Creation-Date: 2022-02-17 10:41+0100\n"
|
12
|
+
"PO-Revision-Date: 2022-02-17 10:41+0100\n"
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15
15
|
"Language: \n"
|
@@ -25,6 +25,7 @@ msgid ""
|
|
25
25
|
msgstr ""
|
26
26
|
|
27
27
|
#: ../app/assets/javascripts/foreman_remote_execution/template_invocation.js:83
|
28
|
+
#: ../webpack/react_app/components/TargetingHosts/TargetingHosts.js:12
|
28
29
|
msgid "There was an error while updating the status, try refreshing the page."
|
29
30
|
msgstr ""
|
30
31
|
|
@@ -107,100 +108,117 @@ msgid ""
|
|
107
108
|
msgstr ""
|
108
109
|
|
109
110
|
#: ../app/controllers/api/v2/job_invocations_controller.rb:46
|
111
|
+
msgid "Set password for effective user (using sudo-like mechanisms)"
|
112
|
+
msgstr ""
|
113
|
+
|
114
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:48
|
115
|
+
msgid "Set SSH password"
|
116
|
+
msgstr ""
|
117
|
+
|
118
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:49
|
119
|
+
msgid "Set SSH key passphrase"
|
120
|
+
msgstr ""
|
121
|
+
|
122
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:51
|
110
123
|
msgid "Create a recurring job"
|
111
124
|
msgstr ""
|
112
125
|
|
113
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
126
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:52
|
114
127
|
msgid "How often the job should occur, in the cron format"
|
115
128
|
msgstr ""
|
116
129
|
|
117
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
130
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:53
|
118
131
|
msgid "Repeat a maximum of N times"
|
119
132
|
msgstr ""
|
120
133
|
|
121
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
134
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:54
|
122
135
|
msgid "Perform no more executions after this time"
|
123
136
|
msgstr ""
|
124
137
|
|
125
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
138
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:55
|
139
|
+
msgid "Designation of a special purpose"
|
140
|
+
msgstr ""
|
141
|
+
|
142
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:58
|
126
143
|
msgid "Schedule the job to start at a later time"
|
127
144
|
msgstr ""
|
128
145
|
|
129
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
146
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:59
|
130
147
|
msgid "Schedule the job for a future time"
|
131
148
|
msgstr ""
|
132
149
|
|
133
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
150
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:60
|
151
|
+
#: ../webpack/JobWizard/steps/Schedule/StartEndDates.js:54
|
134
152
|
msgid ""
|
135
153
|
"Indicates that the action should be cancelled if it cannot be started before t"
|
136
154
|
"his time."
|
137
155
|
msgstr ""
|
138
156
|
|
139
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
157
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:63
|
140
158
|
msgid "Control concurrency level and distribution over time"
|
141
159
|
msgstr ""
|
142
160
|
|
143
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
161
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:64
|
144
162
|
msgid "Distribute tasks over N seconds"
|
145
163
|
msgstr ""
|
146
164
|
|
147
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
165
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:65
|
148
166
|
msgid "Run at most N tasks at a time"
|
149
167
|
msgstr ""
|
150
168
|
|
151
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
169
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:70
|
152
170
|
msgid "Override the description format from the template for this invocation only"
|
153
171
|
msgstr ""
|
154
172
|
|
155
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
173
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:71
|
156
174
|
msgid "Override the timeout interval from the template for this invocation only"
|
157
175
|
msgstr ""
|
158
176
|
|
159
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
177
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:72
|
160
178
|
msgid ""
|
161
179
|
"Remote execution feature label that should be triggered, job template assigned"
|
162
180
|
" to this feature will be used"
|
163
181
|
msgstr ""
|
164
182
|
|
165
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
183
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:86
|
166
184
|
msgid "Create a job invocation"
|
167
185
|
msgstr ""
|
168
186
|
|
169
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
187
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:100
|
170
188
|
msgid "Get output for a host"
|
171
189
|
msgstr ""
|
172
190
|
|
173
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
191
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:113
|
174
192
|
msgid "Get raw output for a host"
|
175
193
|
msgstr ""
|
176
194
|
|
177
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
195
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:125
|
178
196
|
msgid "Cancel job invocation"
|
179
197
|
msgstr ""
|
180
198
|
|
181
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
199
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:133
|
182
200
|
msgid "The job could not be cancelled."
|
183
201
|
msgstr ""
|
184
202
|
|
185
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
203
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:138
|
186
204
|
msgid "Rerun job on failed hosts"
|
187
205
|
msgstr ""
|
188
206
|
|
189
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
207
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:148
|
190
208
|
#: ../app/views/job_invocations/_form.html.erb:4
|
191
209
|
msgid "Could not rerun job %{id} because its template could not be found"
|
192
210
|
msgstr ""
|
193
211
|
|
194
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
212
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:153
|
195
213
|
msgid "Get outputs of hosts in a job"
|
196
214
|
msgstr ""
|
197
215
|
|
198
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
216
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:202
|
199
217
|
msgid "Host with id '%{id}' was not found"
|
200
218
|
msgstr ""
|
201
219
|
|
202
|
-
#: ../app/controllers/api/v2/job_invocations_controller.rb:
|
203
|
-
msgid "
|
220
|
+
#: ../app/controllers/api/v2/job_invocations_controller.rb:211
|
221
|
+
msgid "Only one of feature or job_template_id can be specified"
|
204
222
|
msgstr ""
|
205
223
|
|
206
224
|
#: ../app/controllers/api/v2/job_templates_controller.rb:16
|
@@ -242,9 +260,8 @@ msgstr ""
|
|
242
260
|
|
243
261
|
#: ../app/controllers/api/v2/job_templates_controller.rb:52
|
244
262
|
#: ../app/views/job_invocations/_form.html.erb:11
|
245
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
246
|
-
#: ../
|
247
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:44
|
263
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:5
|
264
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:49
|
248
265
|
msgid "Job category"
|
249
266
|
msgstr ""
|
250
267
|
|
@@ -363,7 +380,8 @@ msgstr ""
|
|
363
380
|
#:
|
364
381
|
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:5
|
365
382
|
#: ../db/seeds.d/50-notification_blueprints.rb:3
|
366
|
-
#: ../
|
383
|
+
#: ../db/seeds.d/50-notification_blueprints.rb:17
|
384
|
+
#: ../lib/foreman_remote_execution/engine.rb:237
|
367
385
|
#: ../webpack/JobWizard/index.js:11
|
368
386
|
msgid "Jobs"
|
369
387
|
msgstr ""
|
@@ -376,18 +394,18 @@ msgid "Job invocations"
|
|
376
394
|
msgstr ""
|
377
395
|
|
378
396
|
#:
|
379
|
-
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:
|
380
|
-
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:
|
397
|
+
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:11
|
398
|
+
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:34
|
381
399
|
msgid "Schedule Remote Job"
|
382
400
|
msgstr ""
|
383
401
|
|
384
402
|
#:
|
385
|
-
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:
|
403
|
+
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:28
|
386
404
|
msgid "%s"
|
387
405
|
msgstr ""
|
388
406
|
|
389
407
|
#:
|
390
|
-
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:
|
408
|
+
#: ../app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb:41
|
391
409
|
msgid "Web Console"
|
392
410
|
msgstr ""
|
393
411
|
|
@@ -431,7 +449,7 @@ msgid "succeeded"
|
|
431
449
|
msgstr ""
|
432
450
|
|
433
451
|
#: ../app/helpers/job_invocations_chart_helper.rb:41
|
434
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
452
|
+
#: ../app/helpers/remote_execution_helper.rb:21
|
435
453
|
msgid "cancelled"
|
436
454
|
msgstr ""
|
437
455
|
|
@@ -445,9 +463,8 @@ msgid "unknown status"
|
|
445
463
|
msgstr ""
|
446
464
|
|
447
465
|
#: ../app/helpers/job_invocations_helper.rb:19
|
448
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
466
|
+
#: ../app/helpers/remote_execution_helper.rb:59
|
449
467
|
#: ../app/views/job_invocations/welcome.html.erb:12
|
450
|
-
#: ../webpack/JobWizard/JobWizard.js:45
|
451
468
|
msgid "Run Job"
|
452
469
|
msgstr ""
|
453
470
|
|
@@ -459,175 +476,196 @@ msgstr ""
|
|
459
476
|
msgid "Any Location"
|
460
477
|
msgstr ""
|
461
478
|
|
462
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
479
|
+
#: ../app/helpers/remote_execution_helper.rb:23
|
463
480
|
msgid "error"
|
464
481
|
msgstr ""
|
465
482
|
|
466
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
483
|
+
#: ../app/helpers/remote_execution_helper.rb:33
|
467
484
|
msgid "Host detail"
|
468
485
|
msgstr ""
|
469
486
|
|
470
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
487
|
+
#: ../app/helpers/remote_execution_helper.rb:38
|
471
488
|
msgid "Rerun on %s"
|
472
489
|
msgstr ""
|
473
490
|
|
474
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
491
|
+
#: ../app/helpers/remote_execution_helper.rb:44
|
475
492
|
msgid "Host task"
|
476
493
|
msgstr ""
|
477
494
|
|
478
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
479
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
480
|
-
#: ../app/models/job_invocation.rb:
|
495
|
+
#: ../app/helpers/remote_execution_helper.rb:53
|
496
|
+
#: ../app/helpers/remote_execution_helper.rb:197
|
497
|
+
#: ../app/models/job_invocation.rb:200
|
481
498
|
msgid "N/A"
|
482
499
|
msgstr ""
|
483
500
|
|
484
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
501
|
+
#: ../app/helpers/remote_execution_helper.rb:68
|
502
|
+
msgid "Create Report"
|
503
|
+
msgstr ""
|
504
|
+
|
505
|
+
#: ../app/helpers/remote_execution_helper.rb:70
|
506
|
+
msgid "Create report for this job"
|
507
|
+
msgstr ""
|
508
|
+
|
509
|
+
#: ../app/helpers/remote_execution_helper.rb:74
|
510
|
+
#: ../app/views/template_invocations/show.html.erb:22
|
485
511
|
msgid "Rerun"
|
486
512
|
msgstr ""
|
487
513
|
|
488
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
514
|
+
#: ../app/helpers/remote_execution_helper.rb:76
|
489
515
|
msgid "Rerun the job"
|
490
516
|
msgstr ""
|
491
517
|
|
492
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
518
|
+
#: ../app/helpers/remote_execution_helper.rb:79
|
493
519
|
msgid "Rerun failed"
|
494
520
|
msgstr ""
|
495
521
|
|
496
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
522
|
+
#: ../app/helpers/remote_execution_helper.rb:82
|
497
523
|
msgid "Rerun on failed hosts"
|
498
524
|
msgstr ""
|
499
525
|
|
500
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
526
|
+
#: ../app/helpers/remote_execution_helper.rb:85
|
501
527
|
msgid "Job Task"
|
502
528
|
msgstr ""
|
503
529
|
|
504
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
530
|
+
#: ../app/helpers/remote_execution_helper.rb:87
|
505
531
|
msgid "See the last task details"
|
506
532
|
msgstr ""
|
507
533
|
|
508
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
509
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
534
|
+
#: ../app/helpers/remote_execution_helper.rb:90
|
535
|
+
#: ../app/helpers/remote_execution_helper.rb:112
|
510
536
|
msgid "Cancel Job"
|
511
537
|
msgstr ""
|
512
538
|
|
513
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
539
|
+
#: ../app/helpers/remote_execution_helper.rb:92
|
514
540
|
msgid "Try to cancel the job"
|
515
541
|
msgstr ""
|
516
542
|
|
517
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
518
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
543
|
+
#: ../app/helpers/remote_execution_helper.rb:95
|
544
|
+
#: ../app/helpers/remote_execution_helper.rb:118
|
519
545
|
msgid "Abort Job"
|
520
546
|
msgstr ""
|
521
547
|
|
522
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
548
|
+
#: ../app/helpers/remote_execution_helper.rb:97
|
523
549
|
msgid "Try to abort the job without waiting for the results from the remote hosts"
|
524
550
|
msgstr ""
|
525
551
|
|
526
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
552
|
+
#: ../app/helpers/remote_execution_helper.rb:107
|
527
553
|
msgid "Task Details"
|
528
554
|
msgstr ""
|
529
555
|
|
530
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
556
|
+
#: ../app/helpers/remote_execution_helper.rb:109
|
531
557
|
msgid "See the task details"
|
532
558
|
msgstr ""
|
533
559
|
|
534
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
560
|
+
#: ../app/helpers/remote_execution_helper.rb:114
|
535
561
|
msgid "Try to cancel the job on a host"
|
536
562
|
msgstr ""
|
537
563
|
|
538
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
564
|
+
#: ../app/helpers/remote_execution_helper.rb:120
|
539
565
|
msgid "Try to abort the job on a host without waiting for its result"
|
540
566
|
msgstr ""
|
541
567
|
|
542
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
568
|
+
#: ../app/helpers/remote_execution_helper.rb:167
|
543
569
|
msgid "Could not render the preview because no host matches the search query."
|
544
570
|
msgstr ""
|
545
571
|
|
546
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
572
|
+
#: ../app/helpers/remote_execution_helper.rb:199
|
547
573
|
msgid "in %s"
|
548
574
|
msgstr ""
|
549
575
|
|
550
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
576
|
+
#: ../app/helpers/remote_execution_helper.rb:199
|
551
577
|
msgid "%s ago"
|
552
578
|
msgstr ""
|
553
579
|
|
554
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
580
|
+
#: ../app/helpers/remote_execution_helper.rb:217
|
555
581
|
msgid "Use default description template"
|
556
582
|
msgstr ""
|
557
583
|
|
558
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
584
|
+
#: ../app/helpers/remote_execution_helper.rb:222
|
559
585
|
msgid "Description template"
|
560
586
|
msgstr ""
|
561
587
|
|
562
|
-
#: ../app/helpers/remote_execution_helper.rb:
|
588
|
+
#: ../app/helpers/remote_execution_helper.rb:232
|
563
589
|
msgid ""
|
564
590
|
"This template is used to generate the description.<br/>Input values can be use"
|
565
591
|
"d using the syntax %{package}.<br/>You may also include the job category and t"
|
566
592
|
"emplate<br/>name using %{job_category} and %{template_name}."
|
567
593
|
msgstr ""
|
568
594
|
|
569
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
595
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:38
|
570
596
|
msgid "Could not use any template used in the job invocation"
|
571
597
|
msgstr ""
|
572
598
|
|
573
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
599
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:50
|
574
600
|
msgid "Failed rendering template: %s"
|
575
601
|
msgstr ""
|
576
602
|
|
577
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
603
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:100
|
578
604
|
msgid "Task cancelled"
|
579
605
|
msgstr ""
|
580
606
|
|
581
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
607
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:101
|
582
608
|
msgid "Job execution failed"
|
583
609
|
msgstr ""
|
584
610
|
|
585
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
611
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:110
|
586
612
|
msgid "%{description} on %{host}"
|
587
613
|
msgstr ""
|
588
614
|
|
589
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
615
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:115 action_names.rb:2
|
590
616
|
msgid "Remote action:"
|
591
617
|
msgstr ""
|
592
618
|
|
593
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
619
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:138
|
594
620
|
msgid "Job cancelled by user"
|
595
621
|
msgstr ""
|
596
622
|
|
597
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
623
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:143
|
598
624
|
msgid "Exit status: %s"
|
599
625
|
msgstr ""
|
600
626
|
|
601
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
627
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:145
|
602
628
|
msgid "Job finished with error"
|
603
629
|
msgstr ""
|
604
630
|
|
605
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
631
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:148
|
606
632
|
msgid "Error loading data from proxy"
|
607
633
|
msgstr ""
|
608
634
|
|
609
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
635
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:199
|
610
636
|
msgid "User can not execute job on host %s"
|
611
637
|
msgstr ""
|
612
638
|
|
613
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
639
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:200
|
614
640
|
msgid "User can not execute this job template"
|
615
641
|
msgstr ""
|
616
642
|
|
617
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
643
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:203
|
644
|
+
msgid "User can not execute job on infrastructure host %s"
|
645
|
+
msgstr ""
|
646
|
+
|
647
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:209
|
618
648
|
msgid "User can not execute this job template on %s"
|
619
649
|
msgstr ""
|
620
650
|
|
621
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
651
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:219
|
622
652
|
msgid "The only applicable proxy %{proxy_names} is down"
|
623
653
|
msgid_plural "All %{count} applicable proxies are down. Tried %{proxy_names}"
|
624
654
|
msgstr[0] ""
|
625
655
|
msgstr[1] ""
|
626
656
|
|
627
|
-
#: ../app/lib/actions/remote_execution/run_host_job.rb:
|
657
|
+
#: ../app/lib/actions/remote_execution/run_host_job.rb:229
|
628
658
|
msgid ""
|
629
|
-
"Could not use any proxy
|
630
|
-
"
|
659
|
+
"Could not use any proxy for the %{provider} job. Consider configuring %{global"
|
660
|
+
"_proxy}, %{fallback_proxy} in settings"
|
661
|
+
msgstr ""
|
662
|
+
|
663
|
+
#: ../app/lib/actions/remote_execution/run_hosts_job.rb:86
|
664
|
+
msgid "REX job has succeeded - %s"
|
665
|
+
msgstr ""
|
666
|
+
|
667
|
+
#: ../app/lib/actions/remote_execution/run_hosts_job.rb:94
|
668
|
+
msgid "REX job has failed - %s"
|
631
669
|
msgstr ""
|
632
670
|
|
633
671
|
#: ../app/lib/foreman_remote_execution/renderer/scope/input.rb:61
|
@@ -648,11 +686,15 @@ msgstr ""
|
|
648
686
|
msgid "Unable to remove host from known hosts"
|
649
687
|
msgstr ""
|
650
688
|
|
689
|
+
#: ../app/mailers/rex_job_mailer.rb:6
|
690
|
+
msgid "REX job has finished - %s"
|
691
|
+
msgstr ""
|
692
|
+
|
651
693
|
#: ../app/models/concerns/api/v2/interfaces_controller_extensions.rb:8
|
652
694
|
msgid "Should this interface be used for remote execution?"
|
653
695
|
msgstr ""
|
654
696
|
|
655
|
-
#: ../app/models/concerns/foreman_remote_execution/host_extensions.rb:
|
697
|
+
#: ../app/models/concerns/foreman_remote_execution/host_extensions.rb:69
|
656
698
|
msgid ""
|
657
699
|
"Interface with the '%s' identifier was specified as a remote execution interfa"
|
658
700
|
"ce, however the interface was not found on the host. If the interface exists, "
|
@@ -663,10 +705,6 @@ msgstr ""
|
|
663
705
|
msgid "host already has an execution interface"
|
664
706
|
msgstr ""
|
665
707
|
|
666
|
-
#: ../app/models/concerns/foreman_remote_execution/orchestration/ssh.rb:41
|
667
|
-
msgid "Remove SSH known hosts for %s"
|
668
|
-
msgstr ""
|
669
|
-
|
670
708
|
#: ../app/models/concerns/foreman_remote_execution/template_overrides.rb:7
|
671
709
|
msgid "This template is locked. Please clone it to a new template to customize."
|
672
710
|
msgstr ""
|
@@ -713,27 +751,27 @@ msgstr ""
|
|
713
751
|
msgid "template"
|
714
752
|
msgstr ""
|
715
753
|
|
716
|
-
#: ../app/models/job_invocation_composer.rb:
|
754
|
+
#: ../app/models/job_invocation_composer.rb:138
|
717
755
|
msgid "Cannot specify both bookmark_id and search_query"
|
718
756
|
msgstr ""
|
719
757
|
|
720
|
-
#: ../app/models/job_invocation_composer.rb:
|
721
|
-
msgid "
|
758
|
+
#: ../app/models/job_invocation_composer.rb:184
|
759
|
+
msgid "Unknown input %{input_name} for template %{template_name}"
|
722
760
|
msgstr ""
|
723
761
|
|
724
|
-
#: ../app/models/job_invocation_composer.rb:
|
725
|
-
msgid "
|
762
|
+
#: ../app/models/job_invocation_composer.rb:212
|
763
|
+
msgid "Template with id '%{id}' was not found"
|
726
764
|
msgstr ""
|
727
765
|
|
728
|
-
#: ../app/models/job_invocation_composer.rb:
|
766
|
+
#: ../app/models/job_invocation_composer.rb:345
|
729
767
|
msgid "Feature input %{input_name} not defined in template %{template_name}"
|
730
768
|
msgstr ""
|
731
769
|
|
732
|
-
#: ../app/models/job_invocation_composer.rb:
|
770
|
+
#: ../app/models/job_invocation_composer.rb:354
|
733
771
|
msgid "No template mapped to feature %{feature_name}"
|
734
772
|
msgstr ""
|
735
773
|
|
736
|
-
#: ../app/models/job_invocation_composer.rb:
|
774
|
+
#: ../app/models/job_invocation_composer.rb:360
|
737
775
|
msgid ""
|
738
776
|
"The template %{template_name} mapped to feature %{feature_name} is not accessi"
|
739
777
|
"ble by the user"
|
@@ -743,164 +781,32 @@ msgstr ""
|
|
743
781
|
msgid "Job Invocation"
|
744
782
|
msgstr ""
|
745
783
|
|
746
|
-
#: ../app/models/job_template.rb:
|
784
|
+
#: ../app/models/job_template.rb:99
|
747
785
|
msgid "Duplicated inputs detected: %{duplicated_inputs}"
|
748
786
|
msgstr ""
|
749
787
|
|
750
|
-
#: ../app/models/remote_execution_feature.rb:
|
788
|
+
#: ../app/models/remote_execution_feature.rb:27
|
751
789
|
msgid "Unknown remote execution feature %s"
|
752
790
|
msgstr ""
|
753
791
|
|
754
|
-
#: ../app/models/remote_execution_provider.rb:
|
792
|
+
#: ../app/models/remote_execution_provider.rb:52
|
755
793
|
msgid "Effective user method \"%{current_value}\" is not one of %{valid_methods}"
|
756
794
|
msgstr ""
|
757
795
|
|
758
|
-
#: ../app/models/remote_execution_provider.rb:
|
796
|
+
#: ../app/models/remote_execution_provider.rb:78
|
759
797
|
msgid "Could not find any suitable interface for execution"
|
760
798
|
msgstr ""
|
761
799
|
|
762
|
-
#: ../app/models/
|
763
|
-
msgid ""
|
764
|
-
"Search the host for any proxy with Remote Execution, useful when the host has "
|
765
|
-
"no subnet or the subnet does not have an execution proxy"
|
766
|
-
msgstr ""
|
767
|
-
|
768
|
-
#: ../app/models/setting/remote_execution.rb:10
|
769
|
-
msgid "Fallback to Any Proxy"
|
770
|
-
msgstr ""
|
771
|
-
|
772
|
-
#: ../app/models/setting/remote_execution.rb:12
|
773
|
-
msgid ""
|
774
|
-
"Search for remote execution proxy outside of the proxies assigned to the host."
|
775
|
-
" The search will be limited to the host's organization and location."
|
776
|
-
msgstr ""
|
777
|
-
|
778
|
-
#: ../app/models/setting/remote_execution.rb:15
|
779
|
-
msgid "Enable Global Proxy"
|
780
|
-
msgstr ""
|
781
|
-
|
782
|
-
#: ../app/models/setting/remote_execution.rb:17
|
783
|
-
msgid ""
|
784
|
-
"Default user to use for SSH. You may override per host by setting a parameter"
|
785
|
-
" called remote_execution_ssh_user."
|
786
|
-
msgstr ""
|
787
|
-
|
788
|
-
#: ../app/models/setting/remote_execution.rb:19
|
789
|
-
msgid "SSH User"
|
790
|
-
msgstr ""
|
791
|
-
|
792
|
-
#: ../app/models/setting/remote_execution.rb:21
|
793
|
-
msgid ""
|
794
|
-
"Default user to use for executing the script. If the user differs from the SSH"
|
795
|
-
" user, su or sudo is used to switch the user."
|
796
|
-
msgstr ""
|
797
|
-
|
798
|
-
#: ../app/models/setting/remote_execution.rb:23
|
799
|
-
msgid "Effective User"
|
800
|
+
#: ../app/models/rex_mail_notification.rb:2
|
801
|
+
msgid "Subscribe to my failed jobs"
|
800
802
|
msgstr ""
|
801
803
|
|
802
|
-
#: ../app/models/
|
803
|
-
msgid "
|
804
|
+
#: ../app/models/rex_mail_notification.rb:3
|
805
|
+
msgid "Subscribe to my succeeded jobs"
|
804
806
|
msgstr ""
|
805
807
|
|
806
|
-
#: ../app/models/
|
807
|
-
msgid "
|
808
|
-
msgstr ""
|
809
|
-
|
810
|
-
#: ../app/models/setting/remote_execution.rb:30
|
811
|
-
#: ../app/views/job_invocations/_form.html.erb:98
|
812
|
-
msgid "Effective user password"
|
813
|
-
msgstr ""
|
814
|
-
|
815
|
-
#: ../app/models/setting/remote_execution.rb:32
|
816
|
-
msgid "Whether we should sync templates from disk when running db:seed."
|
817
|
-
msgstr ""
|
818
|
-
|
819
|
-
#: ../app/models/setting/remote_execution.rb:34
|
820
|
-
msgid "Sync Job Templates"
|
821
|
-
msgstr ""
|
822
|
-
|
823
|
-
#: ../app/models/setting/remote_execution.rb:36
|
824
|
-
msgid ""
|
825
|
-
"Port to use for SSH communication. Default port 22. You may override per host "
|
826
|
-
"by setting a parameter called remote_execution_ssh_port."
|
827
|
-
msgstr ""
|
828
|
-
|
829
|
-
#: ../app/models/setting/remote_execution.rb:38
|
830
|
-
msgid "SSH Port"
|
831
|
-
msgstr ""
|
832
|
-
|
833
|
-
#: ../app/models/setting/remote_execution.rb:40
|
834
|
-
msgid ""
|
835
|
-
"Should the ip addresses on host interfaces be preferred over the fqdn? It is u"
|
836
|
-
"seful when DNS not resolving the fqdns properly. You may override this per hos"
|
837
|
-
"t by setting a parameter called remote_execution_connect_by_ip. This setting o"
|
838
|
-
"nly applies to IPv4. When the host has only an IPv6 address on the interface u"
|
839
|
-
"sed for remote execution, hostname will be used even if this setting is set to"
|
840
|
-
" true."
|
841
|
-
msgstr ""
|
842
|
-
|
843
|
-
#: ../app/models/setting/remote_execution.rb:44
|
844
|
-
msgid "Connect by IP"
|
845
|
-
msgstr ""
|
846
|
-
|
847
|
-
#: ../app/models/setting/remote_execution.rb:46
|
848
|
-
msgid ""
|
849
|
-
"Default password to use for SSH. You may override per host by setting a parame"
|
850
|
-
"ter called remote_execution_ssh_password"
|
851
|
-
msgstr ""
|
852
|
-
|
853
|
-
#: ../app/models/setting/remote_execution.rb:48
|
854
|
-
msgid "Default SSH password"
|
855
|
-
msgstr ""
|
856
|
-
|
857
|
-
#: ../app/models/setting/remote_execution.rb:52
|
858
|
-
msgid ""
|
859
|
-
"Default key passphrase to use for SSH. You may override per host by setting a "
|
860
|
-
"parameter called remote_execution_ssh_key_passphrase"
|
861
|
-
msgstr ""
|
862
|
-
|
863
|
-
#: ../app/models/setting/remote_execution.rb:54
|
864
|
-
msgid "Default SSH key passphrase"
|
865
|
-
msgstr ""
|
866
|
-
|
867
|
-
#: ../app/models/setting/remote_execution.rb:58
|
868
|
-
msgid ""
|
869
|
-
"Amount of workers in the pool to handle the execution of the remote execution "
|
870
|
-
"jobs. Restart of the dynflowd/foreman-tasks service is required."
|
871
|
-
msgstr ""
|
872
|
-
|
873
|
-
#: ../app/models/setting/remote_execution.rb:60
|
874
|
-
msgid "Workers pool size"
|
875
|
-
msgstr ""
|
876
|
-
|
877
|
-
#: ../app/models/setting/remote_execution.rb:62
|
878
|
-
msgid ""
|
879
|
-
"When enabled, working directories will be removed after task completion. You m"
|
880
|
-
"ay override this per host by setting a parameter called remote_execution_clean"
|
881
|
-
"up_working_dirs."
|
882
|
-
msgstr ""
|
883
|
-
|
884
|
-
#: ../app/models/setting/remote_execution.rb:64
|
885
|
-
msgid "Cleanup working directories"
|
886
|
-
msgstr ""
|
887
|
-
|
888
|
-
#: ../app/models/setting/remote_execution.rb:66
|
889
|
-
msgid ""
|
890
|
-
"Where to find the Cockpit instance for the Web Console button. By default, no"
|
891
|
-
" button is shown."
|
892
|
-
msgstr ""
|
893
|
-
|
894
|
-
#: ../app/models/setting/remote_execution.rb:68
|
895
|
-
msgid "Cockpit URL"
|
896
|
-
msgstr ""
|
897
|
-
|
898
|
-
#: ../app/models/setting/remote_execution.rb:71
|
899
|
-
msgid "Choose a job template that is pre-selected in job invocation form"
|
900
|
-
msgstr ""
|
901
|
-
|
902
|
-
#: ../app/models/setting/remote_execution.rb:73
|
903
|
-
msgid "Form Job Template"
|
808
|
+
#: ../app/models/rex_mail_notification.rb:4
|
809
|
+
msgid "Subscribe to all my jobs"
|
904
810
|
msgstr ""
|
905
811
|
|
906
812
|
#: ../app/models/ssh_execution_provider.rb:12
|
@@ -916,10 +822,14 @@ msgid "Dynamic Query"
|
|
916
822
|
msgstr ""
|
917
823
|
|
918
824
|
#: ../app/models/targeting.rb:10
|
825
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:190
|
826
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:137
|
919
827
|
msgid "Alphabetical"
|
920
828
|
msgstr ""
|
921
829
|
|
922
830
|
#: ../app/models/targeting.rb:10
|
831
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:198
|
832
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:136
|
923
833
|
msgid "Randomized"
|
924
834
|
msgstr ""
|
925
835
|
|
@@ -931,7 +841,7 @@ msgstr ""
|
|
931
841
|
msgid "Cannot resolve hosts without a bookmark or search query"
|
932
842
|
msgstr ""
|
933
843
|
|
934
|
-
#: ../app/models/targeting.rb:
|
844
|
+
#: ../app/models/targeting.rb:85 ../app/models/targeting.rb:86
|
935
845
|
msgid "Must select a bookmark or enter a search query"
|
936
846
|
msgstr ""
|
937
847
|
|
@@ -939,7 +849,7 @@ msgstr ""
|
|
939
849
|
msgid "Input"
|
940
850
|
msgstr ""
|
941
851
|
|
942
|
-
#: ../app/models/template_invocation.rb:
|
852
|
+
#: ../app/models/template_invocation.rb:95
|
943
853
|
msgid "Not all required inputs have values. Missing inputs: %s"
|
944
854
|
msgstr ""
|
945
855
|
|
@@ -951,12 +861,38 @@ msgstr ""
|
|
951
861
|
msgid "default_capsule method missing from SmartProxy"
|
952
862
|
msgstr ""
|
953
863
|
|
864
|
+
#: ../app/services/renderer_methods.rb:10
|
865
|
+
msgid "Can't find Job Invocation for an id %s"
|
866
|
+
msgstr ""
|
867
|
+
|
868
|
+
#: ../app/views/dashboard/_latest-jobs.html.erb:2
|
869
|
+
#: ../lib/foreman_remote_execution/engine.rb:251
|
870
|
+
msgid "Latest Jobs"
|
871
|
+
msgstr ""
|
872
|
+
|
873
|
+
#: ../app/views/dashboard/_latest-jobs.html.erb:7
|
874
|
+
#: ../app/views/remote_execution_features/index.html.erb:7
|
875
|
+
msgid "Name"
|
876
|
+
msgstr ""
|
877
|
+
|
878
|
+
#: ../app/views/dashboard/_latest-jobs.html.erb:8
|
879
|
+
msgid "State"
|
880
|
+
msgstr ""
|
881
|
+
|
882
|
+
#: ../app/views/dashboard/_latest-jobs.html.erb:9
|
883
|
+
msgid "Started"
|
884
|
+
msgstr ""
|
885
|
+
|
886
|
+
#: ../app/views/dashboard/_latest-jobs.html.erb:20
|
887
|
+
msgid "No jobs available"
|
888
|
+
msgstr ""
|
889
|
+
|
954
890
|
#: ../app/views/job_invocations/_card_results.html.erb:4
|
955
891
|
msgid "Results"
|
956
892
|
msgstr ""
|
957
893
|
|
958
894
|
#: ../app/views/job_invocations/_card_schedule.html.erb:7
|
959
|
-
#: ../webpack/JobWizard/
|
895
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:23
|
960
896
|
msgid "Schedule"
|
961
897
|
msgstr ""
|
962
898
|
|
@@ -990,7 +926,7 @@ msgid "Timeout to kill after"
|
|
990
926
|
msgstr ""
|
991
927
|
|
992
928
|
#: ../app/views/job_invocations/_card_target_hosts.html.erb:5
|
993
|
-
#: ../webpack/JobWizard/
|
929
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:77
|
994
930
|
msgid "Target hosts"
|
995
931
|
msgstr ""
|
996
932
|
|
@@ -1029,11 +965,13 @@ msgstr ""
|
|
1029
965
|
#: ../app/views/job_invocations/_description_fields.html.erb:1
|
1030
966
|
#: ../app/views/job_invocations/index.html.erb:9
|
1031
967
|
#: ../app/views/remote_execution_features/index.html.erb:8
|
968
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/DescriptionField.js:47
|
1032
969
|
msgid "Description"
|
1033
970
|
msgstr ""
|
1034
971
|
|
1035
972
|
#: ../app/views/job_invocations/_form.html.erb:23
|
1036
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
973
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:59
|
974
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:76
|
1037
975
|
msgid "Job template"
|
1038
976
|
msgstr ""
|
1039
977
|
|
@@ -1042,6 +980,7 @@ msgid "Resolves to"
|
|
1042
980
|
msgstr ""
|
1043
981
|
|
1044
982
|
#: ../app/views/job_invocations/_form.html.erb:42
|
983
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:187
|
1045
984
|
msgid "hosts"
|
1046
985
|
msgstr ""
|
1047
986
|
|
@@ -1061,50 +1000,66 @@ msgstr ""
|
|
1061
1000
|
msgid "Hide advanced fields"
|
1062
1001
|
msgstr ""
|
1063
1002
|
|
1064
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1065
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1003
|
+
#: ../app/views/job_invocations/_form.html.erb:86
|
1004
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:26
|
1005
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:11
|
1006
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:128
|
1066
1007
|
msgid "Effective user"
|
1067
1008
|
msgstr ""
|
1068
1009
|
|
1069
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1010
|
+
#: ../app/views/job_invocations/_form.html.erb:86
|
1011
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:13
|
1070
1012
|
msgid ""
|
1071
1013
|
"A user to be used for executing the script. If it differs from the SSH user, s"
|
1072
1014
|
"u or sudo is used to switch the accounts."
|
1073
1015
|
msgstr ""
|
1074
1016
|
|
1075
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1076
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1017
|
+
#: ../app/views/job_invocations/_form.html.erb:92
|
1018
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:13
|
1019
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:34
|
1020
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:130
|
1077
1021
|
msgid "Timeout to kill"
|
1078
1022
|
msgstr ""
|
1079
1023
|
|
1080
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1024
|
+
#: ../app/views/job_invocations/_form.html.erb:92
|
1025
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:36
|
1081
1026
|
msgid ""
|
1082
1027
|
"Time in seconds from the start on the remote host after which the job should b"
|
1083
1028
|
"e killed."
|
1084
1029
|
msgstr ""
|
1085
1030
|
|
1086
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1031
|
+
#: ../app/views/job_invocations/_form.html.erb:104
|
1032
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:55
|
1087
1033
|
msgid "Password"
|
1088
1034
|
msgstr ""
|
1089
1035
|
|
1090
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1036
|
+
#: ../app/views/job_invocations/_form.html.erb:104
|
1037
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:57
|
1091
1038
|
msgid ""
|
1092
1039
|
"Password is stored encrypted in DB until the job finishes. For future or recur"
|
1093
1040
|
"ring executions, it is removed after the last execution."
|
1094
1041
|
msgstr ""
|
1095
1042
|
|
1096
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1043
|
+
#: ../app/views/job_invocations/_form.html.erb:105
|
1044
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:78
|
1097
1045
|
msgid "Private key passphrase"
|
1098
1046
|
msgstr ""
|
1099
1047
|
|
1100
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1048
|
+
#: ../app/views/job_invocations/_form.html.erb:105
|
1101
1049
|
msgid ""
|
1102
1050
|
"Key passhprase is only applicable for SSH provider. Other providers ignore thi"
|
1103
1051
|
"s field. <br> Passphrase is stored encrypted in DB until the job finishes. For"
|
1104
1052
|
" future or recurring executions, it is removed after the last execution."
|
1105
1053
|
msgstr ""
|
1106
1054
|
|
1107
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1055
|
+
#: ../app/views/job_invocations/_form.html.erb:106
|
1056
|
+
#: ../lib/foreman_remote_execution/engine.rb:91
|
1057
|
+
#: ../lib/foreman_remote_execution/engine.rb:93
|
1058
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:101
|
1059
|
+
msgid "Effective user password"
|
1060
|
+
msgstr ""
|
1061
|
+
|
1062
|
+
#: ../app/views/job_invocations/_form.html.erb:106
|
1108
1063
|
msgid ""
|
1109
1064
|
"Effective user password is only applicable for SSH provider. Other providers i"
|
1110
1065
|
"gnore this field. <br> Password is stored encrypted in DB until the job finish"
|
@@ -1112,31 +1067,40 @@ msgid ""
|
|
1112
1067
|
"."
|
1113
1068
|
msgstr ""
|
1114
1069
|
|
1115
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1070
|
+
#: ../app/views/job_invocations/_form.html.erb:110
|
1071
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:125
|
1072
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:131
|
1116
1073
|
msgid "Concurrency level"
|
1117
1074
|
msgstr ""
|
1118
1075
|
|
1119
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1076
|
+
#: ../app/views/job_invocations/_form.html.erb:110
|
1077
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:127
|
1120
1078
|
msgid ""
|
1121
1079
|
"Run at most N tasks at a time. If this is set and proxy batch triggering is en"
|
1122
1080
|
"abled, then tasks are triggered on the smart proxy in batches of size 1."
|
1123
1081
|
msgstr ""
|
1124
1082
|
|
1125
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1083
|
+
#: ../app/views/job_invocations/_form.html.erb:111
|
1084
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:148
|
1085
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:132
|
1126
1086
|
msgid "Time span"
|
1127
1087
|
msgstr ""
|
1128
1088
|
|
1129
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1089
|
+
#: ../app/views/job_invocations/_form.html.erb:111
|
1090
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:150
|
1130
1091
|
msgid ""
|
1131
1092
|
"Distribute execution over N seconds. If this is set and proxy batch triggering"
|
1132
1093
|
" is enabled, then tasks are triggered on the smart proxy in batches of size 1."
|
1133
1094
|
msgstr ""
|
1134
1095
|
|
1135
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1096
|
+
#: ../app/views/job_invocations/_form.html.erb:115
|
1097
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:170
|
1098
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:134
|
1136
1099
|
msgid "Execution ordering"
|
1137
1100
|
msgstr ""
|
1138
1101
|
|
1139
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1102
|
+
#: ../app/views/job_invocations/_form.html.erb:115
|
1103
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:175
|
1140
1104
|
msgid ""
|
1141
1105
|
"Execution ordering determines whether the jobs should be executed on hosts in "
|
1142
1106
|
"alphabetical order or in randomized order.<br><ul><li><b>Ordered</b> - execute"
|
@@ -1144,11 +1108,12 @@ msgid ""
|
|
1144
1108
|
"es the order in which jobs are executed on hosts</li></ul>"
|
1145
1109
|
msgstr ""
|
1146
1110
|
|
1147
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1111
|
+
#: ../app/views/job_invocations/_form.html.erb:124
|
1112
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:120
|
1148
1113
|
msgid "Type of query"
|
1149
1114
|
msgstr ""
|
1150
1115
|
|
1151
|
-
#: ../app/views/job_invocations/_form.html.erb:
|
1116
|
+
#: ../app/views/job_invocations/_form.html.erb:124
|
1152
1117
|
msgid ""
|
1153
1118
|
"Type has impact on when is the query evaluated to hosts.<br><ul><li><b>Static<"
|
1154
1119
|
"/b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evalu"
|
@@ -1202,6 +1167,8 @@ msgstr ""
|
|
1202
1167
|
|
1203
1168
|
#: ../app/views/job_invocations/_tab_overview.html.erb:16
|
1204
1169
|
#: ../app/views/job_invocations/index.html.erb:15
|
1170
|
+
#: ../app/views/rex_job_mailer/job_finished.html.erb:14
|
1171
|
+
#: ../app/views/rex_job_mailer/job_finished.text.erb:6
|
1205
1172
|
msgid "Total hosts"
|
1206
1173
|
msgstr ""
|
1207
1174
|
|
@@ -1284,15 +1251,15 @@ msgstr ""
|
|
1284
1251
|
msgid "Type"
|
1285
1252
|
msgstr ""
|
1286
1253
|
|
1287
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1254
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:22
|
1288
1255
|
msgid "Add Foreign Input Set"
|
1289
1256
|
msgstr ""
|
1290
1257
|
|
1291
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1258
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:22
|
1292
1259
|
msgid "add an input set for this template to reference a different template inputs"
|
1293
1260
|
msgstr ""
|
1294
1261
|
|
1295
|
-
#: ../app/views/job_templates/_custom_tabs.html.erb:
|
1262
|
+
#: ../app/views/job_templates/_custom_tabs.html.erb:40
|
1296
1263
|
msgid "Snippet"
|
1297
1264
|
msgstr ""
|
1298
1265
|
|
@@ -1362,6 +1329,7 @@ msgid "Remote execution"
|
|
1362
1329
|
msgstr ""
|
1363
1330
|
|
1364
1331
|
#: ../app/views/overrides/subnets/_rex_tab.html.erb:1
|
1332
|
+
#: ../lib/foreman_remote_execution/engine.rb:62
|
1365
1333
|
msgid "Remote Execution"
|
1366
1334
|
msgstr ""
|
1367
1335
|
|
@@ -1383,7 +1351,7 @@ msgid ""
|
|
1383
1351
|
msgstr ""
|
1384
1352
|
|
1385
1353
|
#: ../app/views/remote_execution_features/index.html.erb:1
|
1386
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1354
|
+
#: ../lib/foreman_remote_execution/engine.rb:231
|
1387
1355
|
msgid "Remote Execution Features"
|
1388
1356
|
msgstr ""
|
1389
1357
|
|
@@ -1391,14 +1359,29 @@ msgstr ""
|
|
1391
1359
|
msgid "Label"
|
1392
1360
|
msgstr ""
|
1393
1361
|
|
1394
|
-
#: ../app/views/remote_execution_features/index.html.erb:7
|
1395
|
-
msgid "Name"
|
1396
|
-
msgstr ""
|
1397
|
-
|
1398
1362
|
#: ../app/views/remote_execution_features/show.html.erb:1
|
1399
1363
|
msgid "Edit Remote Execution Feature"
|
1400
1364
|
msgstr ""
|
1401
1365
|
|
1366
|
+
#: ../app/views/rex_job_mailer/job_finished.html.erb:2
|
1367
|
+
#: ../app/views/rex_job_mailer/job_finished.text.erb:1
|
1368
|
+
msgid "A job '%{job_name}' has %{status} at %{time}"
|
1369
|
+
msgstr ""
|
1370
|
+
|
1371
|
+
#: ../app/views/rex_job_mailer/job_finished.html.erb:10
|
1372
|
+
#: ../app/views/rex_job_mailer/job_finished.text.erb:5
|
1373
|
+
msgid "Job result"
|
1374
|
+
msgstr ""
|
1375
|
+
|
1376
|
+
#: ../app/views/rex_job_mailer/job_finished.html.erb:18
|
1377
|
+
#: ../app/views/rex_job_mailer/job_finished.text.erb:7
|
1378
|
+
msgid "Failed hosts"
|
1379
|
+
msgstr ""
|
1380
|
+
|
1381
|
+
#: ../app/views/rex_job_mailer/job_finished.text.erb:9
|
1382
|
+
msgid "See more details at %s"
|
1383
|
+
msgstr ""
|
1384
|
+
|
1402
1385
|
#: ../app/views/template_inputs/_foreign_input_set_form.html.erb:3
|
1403
1386
|
msgid "Foreign input set"
|
1404
1387
|
msgstr ""
|
@@ -1421,35 +1404,39 @@ msgstr ""
|
|
1421
1404
|
msgid "Back to Job"
|
1422
1405
|
msgstr ""
|
1423
1406
|
|
1424
|
-
#: ../app/views/template_invocations/show.html.erb:
|
1407
|
+
#: ../app/views/template_invocations/show.html.erb:23
|
1425
1408
|
msgid "Toggle command"
|
1426
1409
|
msgstr ""
|
1427
1410
|
|
1428
|
-
#: ../app/views/template_invocations/show.html.erb:
|
1411
|
+
#: ../app/views/template_invocations/show.html.erb:24
|
1429
1412
|
msgid "Toggle STDERR"
|
1430
1413
|
msgstr ""
|
1431
1414
|
|
1432
|
-
#: ../app/views/template_invocations/show.html.erb:
|
1415
|
+
#: ../app/views/template_invocations/show.html.erb:25
|
1433
1416
|
msgid "Toggle STDOUT"
|
1434
1417
|
msgstr ""
|
1435
1418
|
|
1436
|
-
#: ../app/views/template_invocations/show.html.erb:
|
1419
|
+
#: ../app/views/template_invocations/show.html.erb:26
|
1437
1420
|
msgid "Toggle DEBUG"
|
1438
1421
|
msgstr ""
|
1439
1422
|
|
1440
|
-
#: ../app/views/template_invocations/show.html.erb:
|
1423
|
+
#: ../app/views/template_invocations/show.html.erb:33
|
1441
1424
|
msgid "Target: "
|
1442
1425
|
msgstr ""
|
1443
1426
|
|
1444
|
-
#: ../app/views/template_invocations/show.html.erb:
|
1427
|
+
#: ../app/views/template_invocations/show.html.erb:35
|
1428
|
+
msgid "using Smart Proxy"
|
1429
|
+
msgstr ""
|
1430
|
+
|
1431
|
+
#: ../app/views/template_invocations/show.html.erb:47
|
1445
1432
|
msgid "Scroll to bottom"
|
1446
1433
|
msgstr ""
|
1447
1434
|
|
1448
|
-
#: ../app/views/template_invocations/show.html.erb:
|
1435
|
+
#: ../app/views/template_invocations/show.html.erb:53
|
1449
1436
|
msgid "Scroll to top"
|
1450
1437
|
msgstr ""
|
1451
1438
|
|
1452
|
-
#: ../app/views/template_invocations/show.html.erb:
|
1439
|
+
#: ../app/views/template_invocations/show.html.erb:61
|
1453
1440
|
msgid "Could not display data for job invocation."
|
1454
1441
|
msgstr ""
|
1455
1442
|
|
@@ -1464,49 +1451,578 @@ msgid "A job '%{subject}' has finished successfully"
|
|
1464
1451
|
msgstr ""
|
1465
1452
|
|
1466
1453
|
#: ../db/seeds.d/50-notification_blueprints.rb:12
|
1454
|
+
#: ../db/seeds.d/50-notification_blueprints.rb:26
|
1467
1455
|
msgid "Job Details"
|
1468
1456
|
msgstr ""
|
1469
1457
|
|
1458
|
+
#: ../db/seeds.d/50-notification_blueprints.rb:19
|
1459
|
+
msgid "A job '%{subject}' has failed"
|
1460
|
+
msgstr ""
|
1461
|
+
|
1462
|
+
#: ../db/seeds.d/95-mail_notifications.rb:1
|
1463
|
+
msgid "Remote execution job"
|
1464
|
+
msgstr ""
|
1465
|
+
|
1466
|
+
#: ../db/seeds.d/95-mail_notifications.rb:6
|
1467
|
+
msgid "A notification when a job finishes"
|
1468
|
+
msgstr ""
|
1469
|
+
|
1470
|
+
#: ../db/seeds.d/95-mail_notifications.rb:20
|
1471
|
+
msgid "Unable to create mail notification: %s"
|
1472
|
+
msgstr ""
|
1473
|
+
|
1474
|
+
#: ../lib/foreman_remote_execution/engine.rb:65
|
1475
|
+
msgid ""
|
1476
|
+
"Search the host for any proxy with Remote Execution, useful when the host has "
|
1477
|
+
"no subnet or the subnet does not have an execution proxy"
|
1478
|
+
msgstr ""
|
1479
|
+
|
1480
|
+
#: ../lib/foreman_remote_execution/engine.rb:67
|
1481
|
+
msgid "Fallback to Any Proxy"
|
1482
|
+
msgstr ""
|
1483
|
+
|
1484
|
+
#: ../lib/foreman_remote_execution/engine.rb:70
|
1485
|
+
msgid ""
|
1486
|
+
"Search for remote execution proxy outside of the proxies assigned to the host."
|
1487
|
+
" The search will be limited to the host's organization and location."
|
1488
|
+
msgstr ""
|
1489
|
+
|
1490
|
+
#: ../lib/foreman_remote_execution/engine.rb:72
|
1491
|
+
msgid "Enable Global Proxy"
|
1492
|
+
msgstr ""
|
1493
|
+
|
1494
|
+
#: ../lib/foreman_remote_execution/engine.rb:75
|
1495
|
+
msgid ""
|
1496
|
+
"Default user to use for SSH. You may override per host by setting a parameter"
|
1497
|
+
" called remote_execution_ssh_user."
|
1498
|
+
msgstr ""
|
1499
|
+
|
1500
|
+
#: ../lib/foreman_remote_execution/engine.rb:77
|
1501
|
+
msgid "SSH User"
|
1502
|
+
msgstr ""
|
1503
|
+
|
1504
|
+
#: ../lib/foreman_remote_execution/engine.rb:80
|
1505
|
+
msgid ""
|
1506
|
+
"Default user to use for executing the script. If the user differs from the SSH"
|
1507
|
+
" user, su or sudo is used to switch the user."
|
1508
|
+
msgstr ""
|
1509
|
+
|
1510
|
+
#: ../lib/foreman_remote_execution/engine.rb:82
|
1511
|
+
msgid "Efffective User"
|
1512
|
+
msgstr ""
|
1513
|
+
|
1514
|
+
#: ../lib/foreman_remote_execution/engine.rb:85
|
1515
|
+
msgid "What command should be used to switch to the effective user. One of %s"
|
1516
|
+
msgstr ""
|
1517
|
+
|
1518
|
+
#: ../lib/foreman_remote_execution/engine.rb:87
|
1519
|
+
msgid "Effective User Method"
|
1520
|
+
msgstr ""
|
1521
|
+
|
1522
|
+
#: ../lib/foreman_remote_execution/engine.rb:97
|
1523
|
+
msgid "Whether we should sync templates from disk when running db:seed."
|
1524
|
+
msgstr ""
|
1525
|
+
|
1526
|
+
#: ../lib/foreman_remote_execution/engine.rb:99
|
1527
|
+
msgid "Sync Job Templates"
|
1528
|
+
msgstr ""
|
1529
|
+
|
1530
|
+
#: ../lib/foreman_remote_execution/engine.rb:102
|
1531
|
+
msgid ""
|
1532
|
+
"Port to use for SSH communication. Default port 22. You may override per host "
|
1533
|
+
"by setting a parameter called remote_execution_ssh_port."
|
1534
|
+
msgstr ""
|
1535
|
+
|
1536
|
+
#: ../lib/foreman_remote_execution/engine.rb:104
|
1537
|
+
msgid "SSH Port"
|
1538
|
+
msgstr ""
|
1539
|
+
|
1540
|
+
#: ../lib/foreman_remote_execution/engine.rb:107
|
1541
|
+
msgid ""
|
1542
|
+
"Should the ip addresses on host interfaces be preferred over the fqdn? It is u"
|
1543
|
+
"seful when DNS not resolving the fqdns properly. You may override this per hos"
|
1544
|
+
"t by setting a parameter called remote_execution_connect_by_ip. For dual-stack"
|
1545
|
+
"ed hosts you should consider the remote_execution_connect_by_ip_prefer_ipv6 se"
|
1546
|
+
"tting"
|
1547
|
+
msgstr ""
|
1548
|
+
|
1549
|
+
#: ../lib/foreman_remote_execution/engine.rb:111
|
1550
|
+
msgid "Connect by IP"
|
1551
|
+
msgstr ""
|
1552
|
+
|
1553
|
+
#: ../lib/foreman_remote_execution/engine.rb:114
|
1554
|
+
msgid ""
|
1555
|
+
"When connecting using ip address, should the IPv6 addresses be preferred? If n"
|
1556
|
+
"o IPv6 address is set, it falls back to IPv4 automatically. You may override t"
|
1557
|
+
"his per host by setting a parameter called remote_execution_connect_by_ip_pref"
|
1558
|
+
"er_ipv6. By default and for compatibility, IPv4 will be preferred over IPv6 by"
|
1559
|
+
" default"
|
1560
|
+
msgstr ""
|
1561
|
+
|
1562
|
+
#: ../lib/foreman_remote_execution/engine.rb:118
|
1563
|
+
msgid "Prefer IPv6 over IPv4"
|
1564
|
+
msgstr ""
|
1565
|
+
|
1566
|
+
#: ../lib/foreman_remote_execution/engine.rb:121
|
1567
|
+
msgid ""
|
1568
|
+
"Default password to use for SSH. You may override per host by setting a parame"
|
1569
|
+
"ter called remote_execution_ssh_password"
|
1570
|
+
msgstr ""
|
1571
|
+
|
1572
|
+
#: ../lib/foreman_remote_execution/engine.rb:123
|
1573
|
+
msgid "Default SSH password"
|
1574
|
+
msgstr ""
|
1575
|
+
|
1470
1576
|
#: ../lib/foreman_remote_execution/engine.rb:127
|
1577
|
+
msgid ""
|
1578
|
+
"Default key passphrase to use for SSH. You may override per host by setting a "
|
1579
|
+
"parameter called remote_execution_ssh_key_passphrase"
|
1580
|
+
msgstr ""
|
1581
|
+
|
1582
|
+
#: ../lib/foreman_remote_execution/engine.rb:129
|
1583
|
+
msgid "Default SSH key passphrase"
|
1584
|
+
msgstr ""
|
1585
|
+
|
1586
|
+
#: ../lib/foreman_remote_execution/engine.rb:133
|
1587
|
+
msgid ""
|
1588
|
+
"Amount of workers in the pool to handle the execution of the remote execution "
|
1589
|
+
"jobs. Restart of the dynflowd/foreman-tasks service is required."
|
1590
|
+
msgstr ""
|
1591
|
+
|
1592
|
+
#: ../lib/foreman_remote_execution/engine.rb:135
|
1593
|
+
msgid "Workers pool size"
|
1594
|
+
msgstr ""
|
1595
|
+
|
1596
|
+
#: ../lib/foreman_remote_execution/engine.rb:138
|
1597
|
+
msgid ""
|
1598
|
+
"When enabled, working directories will be removed after task completion. You m"
|
1599
|
+
"ay override this per host by setting a parameter called remote_execution_clean"
|
1600
|
+
"up_working_dirs."
|
1601
|
+
msgstr ""
|
1602
|
+
|
1603
|
+
#: ../lib/foreman_remote_execution/engine.rb:140
|
1604
|
+
msgid "Cleanup working directories"
|
1605
|
+
msgstr ""
|
1606
|
+
|
1607
|
+
#: ../lib/foreman_remote_execution/engine.rb:143
|
1608
|
+
msgid ""
|
1609
|
+
"Where to find the Cockpit instance for the Web Console button. By default, no"
|
1610
|
+
" button is shown."
|
1611
|
+
msgstr ""
|
1612
|
+
|
1613
|
+
#: ../lib/foreman_remote_execution/engine.rb:145
|
1614
|
+
msgid "Cockpit URL"
|
1615
|
+
msgstr ""
|
1616
|
+
|
1617
|
+
#: ../lib/foreman_remote_execution/engine.rb:148
|
1618
|
+
msgid "Choose a job template that is pre-selected in job invocation form"
|
1619
|
+
msgstr ""
|
1620
|
+
|
1621
|
+
#: ../lib/foreman_remote_execution/engine.rb:150
|
1622
|
+
msgid "Form Job Template"
|
1623
|
+
msgstr ""
|
1624
|
+
|
1625
|
+
#: ../lib/foreman_remote_execution/engine.rb:154
|
1626
|
+
msgid ""
|
1627
|
+
"Select a report template used for generating a report for a particular remote "
|
1628
|
+
"execution job"
|
1629
|
+
msgstr ""
|
1630
|
+
|
1631
|
+
#: ../lib/foreman_remote_execution/engine.rb:156
|
1632
|
+
msgid "Job Invocation Report Template"
|
1633
|
+
msgstr ""
|
1634
|
+
|
1635
|
+
#: ../lib/foreman_remote_execution/engine.rb:226
|
1471
1636
|
msgid "Job templates"
|
1472
1637
|
msgstr ""
|
1473
1638
|
|
1474
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1639
|
+
#: ../lib/foreman_remote_execution/engine.rb:243
|
1475
1640
|
msgid "Job wizard"
|
1476
1641
|
msgstr ""
|
1477
1642
|
|
1478
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1643
|
+
#: ../lib/foreman_remote_execution/engine.rb:355
|
1479
1644
|
msgid "Run Puppet Once"
|
1480
1645
|
msgstr ""
|
1481
1646
|
|
1482
|
-
#: ../lib/foreman_remote_execution/engine.rb:
|
1647
|
+
#: ../lib/foreman_remote_execution/engine.rb:356
|
1483
1648
|
msgid "Perform a single Puppet run"
|
1484
1649
|
msgstr ""
|
1485
1650
|
|
1486
|
-
#: ../webpack/JobWizard/
|
1487
|
-
msgid "
|
1651
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:11
|
1652
|
+
msgid "Does not repeat"
|
1488
1653
|
msgstr ""
|
1489
1654
|
|
1490
|
-
#: ../webpack/JobWizard/
|
1491
|
-
msgid "
|
1655
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:12
|
1656
|
+
msgid "Cronline"
|
1657
|
+
msgstr ""
|
1658
|
+
|
1659
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:13
|
1660
|
+
msgid "Monthly"
|
1661
|
+
msgstr ""
|
1662
|
+
|
1663
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:14
|
1664
|
+
msgid "Weekly"
|
1665
|
+
msgstr ""
|
1666
|
+
|
1667
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:15
|
1668
|
+
msgid "Daily"
|
1669
|
+
msgstr ""
|
1670
|
+
|
1671
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:16
|
1672
|
+
msgid "Hourly"
|
1673
|
+
msgstr ""
|
1674
|
+
|
1675
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:20
|
1676
|
+
msgid "Category and Template"
|
1677
|
+
msgstr ""
|
1678
|
+
|
1679
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:21
|
1680
|
+
msgid "Target hosts and inputs"
|
1681
|
+
msgstr ""
|
1682
|
+
|
1683
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:22
|
1684
|
+
msgid "Advanced Fields"
|
1685
|
+
msgstr ""
|
1686
|
+
|
1687
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:24
|
1688
|
+
msgid "Review Details"
|
1492
1689
|
msgstr ""
|
1493
1690
|
|
1494
|
-
#: ../webpack/JobWizard/
|
1495
|
-
msgid "
|
1691
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:44
|
1692
|
+
msgid "Hosts"
|
1693
|
+
msgstr ""
|
1694
|
+
|
1695
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:45
|
1696
|
+
msgid "Host collections"
|
1697
|
+
msgstr ""
|
1698
|
+
|
1699
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:46
|
1700
|
+
msgid "Host groups"
|
1701
|
+
msgstr ""
|
1702
|
+
|
1703
|
+
#: ../webpack/JobWizard/JobWizardConstants.js:47
|
1704
|
+
msgid "Search query"
|
1496
1705
|
msgstr ""
|
1497
1706
|
|
1498
1707
|
#: ../webpack/JobWizard/index.js:8
|
1499
1708
|
msgid "Run job"
|
1500
1709
|
msgstr ""
|
1501
1710
|
|
1502
|
-
#: ../webpack/JobWizard/steps/
|
1503
|
-
msgid "
|
1711
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/DescriptionField.js:52
|
1712
|
+
msgid "Edit job description template"
|
1713
|
+
msgstr ""
|
1714
|
+
|
1715
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/DescriptionField.js:53
|
1716
|
+
msgid "Preview job description"
|
1717
|
+
msgstr ""
|
1718
|
+
|
1719
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:45
|
1720
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:138
|
1721
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:161
|
1722
|
+
msgid "For example: 1, 2, 3, 4, 5..."
|
1723
|
+
msgstr ""
|
1724
|
+
|
1725
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:80
|
1726
|
+
msgid ""
|
1727
|
+
"Key passphrase is only applicable for SSH provider. Other providers ignore thi"
|
1728
|
+
"s field. Passphrase is stored encrypted in DB until the job finishes. For futu"
|
1729
|
+
"re or recurring executions, it is removed after the last execution."
|
1730
|
+
msgstr ""
|
1731
|
+
|
1732
|
+
#: ../webpack/JobWizard/steps/AdvancedFields/Fields.js:103
|
1733
|
+
msgid ""
|
1734
|
+
"Effective user password is only applicable for SSH provider. Other providers i"
|
1735
|
+
"gnore this field. Password is stored encrypted in DB until the job finishes. F"
|
1736
|
+
"or future or recurring executions, it is removed after the last execution."
|
1504
1737
|
msgstr ""
|
1505
1738
|
|
1506
|
-
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:
|
1739
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:46
|
1507
1740
|
msgid "All fields are required."
|
1508
1741
|
msgstr ""
|
1509
1742
|
|
1743
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:54
|
1744
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:65
|
1745
|
+
msgid "Error"
|
1746
|
+
msgstr ""
|
1747
|
+
|
1748
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:68
|
1749
|
+
msgid "Errors:"
|
1750
|
+
msgstr ""
|
1751
|
+
|
1752
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:71
|
1753
|
+
msgid "Categories list failed with:"
|
1754
|
+
msgstr ""
|
1755
|
+
|
1756
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:76
|
1757
|
+
msgid "Templates list failed with:"
|
1758
|
+
msgstr ""
|
1759
|
+
|
1760
|
+
#: ../webpack/JobWizard/steps/CategoryAndTemplate/CategoryAndTemplate.js:81
|
1761
|
+
msgid "Template failed with:"
|
1762
|
+
msgstr ""
|
1763
|
+
|
1764
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/HostPreviewModal.js:18
|
1765
|
+
msgid "Preview Hosts"
|
1766
|
+
msgstr ""
|
1767
|
+
|
1768
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/HostPreviewModal.js:47
|
1769
|
+
msgid "...and %s more"
|
1770
|
+
msgstr ""
|
1771
|
+
|
1772
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/SelectedChips.js:78
|
1773
|
+
msgid "Clear filters"
|
1774
|
+
msgstr ""
|
1775
|
+
|
1776
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/TemplateInputs.js:11
|
1777
|
+
msgid "There are no available input fields for the selected template."
|
1778
|
+
msgstr ""
|
1779
|
+
|
1780
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:145
|
1781
|
+
msgid "Filter by hosts"
|
1782
|
+
msgstr ""
|
1783
|
+
|
1784
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:155
|
1785
|
+
msgid "Filter by host collections"
|
1786
|
+
msgstr ""
|
1787
|
+
|
1788
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:164
|
1789
|
+
msgid "Filter by host groups"
|
1790
|
+
msgstr ""
|
1791
|
+
|
1792
|
+
#: ../webpack/JobWizard/steps/HostsAndInputs/index.js:180
|
1793
|
+
msgid "Apply to"
|
1794
|
+
msgstr ""
|
1795
|
+
|
1796
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:63
|
1797
|
+
msgid "No Target Hosts"
|
1798
|
+
msgstr ""
|
1799
|
+
|
1800
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:69
|
1801
|
+
msgid ", and %s more"
|
1802
|
+
msgstr ""
|
1803
|
+
|
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
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:92
|
1813
|
+
msgid "Hide all advanced fields"
|
1814
|
+
msgstr ""
|
1815
|
+
|
1816
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:102
|
1817
|
+
msgid "Show all advanced fields"
|
1818
|
+
msgstr ""
|
1819
|
+
|
1820
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:110
|
1821
|
+
#: ../webpack/JobWizard/steps/Schedule/ScheduleType.js:7
|
1822
|
+
msgid "Schedule type"
|
1823
|
+
msgstr ""
|
1824
|
+
|
1825
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:112
|
1826
|
+
#: ../webpack/JobWizard/steps/Schedule/ScheduleType.js:20
|
1827
|
+
msgid "Schedule for future execution"
|
1828
|
+
msgstr ""
|
1829
|
+
|
1830
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:113
|
1831
|
+
#: ../webpack/JobWizard/steps/Schedule/ScheduleType.js:13
|
1832
|
+
msgid "Execute now"
|
1833
|
+
msgstr ""
|
1834
|
+
|
1835
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:116
|
1836
|
+
msgid "Recurrence"
|
1837
|
+
msgstr ""
|
1838
|
+
|
1839
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:122
|
1840
|
+
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:36
|
1841
|
+
msgid "Static query"
|
1842
|
+
msgstr ""
|
1843
|
+
|
1844
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:123
|
1845
|
+
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:43
|
1846
|
+
msgid "Dynamic query"
|
1847
|
+
msgstr ""
|
1848
|
+
|
1849
|
+
#: ../webpack/JobWizard/steps/ReviewDetails/index.js:129
|
1850
|
+
msgid "Description Template"
|
1851
|
+
msgstr ""
|
1852
|
+
|
1853
|
+
#: ../webpack/JobWizard/steps/Schedule/PurposeField.js:9
|
1854
|
+
msgid "Purpose"
|
1855
|
+
msgstr ""
|
1856
|
+
|
1857
|
+
#: ../webpack/JobWizard/steps/Schedule/PurposeField.js:11
|
1858
|
+
msgid ""
|
1859
|
+
"A special label for tracking a recurring job. There can be only one active job"
|
1860
|
+
" with a given purpose at a time."
|
1861
|
+
msgstr ""
|
1862
|
+
|
1863
|
+
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:9
|
1864
|
+
msgid "Query type"
|
1865
|
+
msgstr ""
|
1866
|
+
|
1867
|
+
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:13
|
1868
|
+
msgid "Type has impact on when is the query evaluated to hosts."
|
1869
|
+
msgstr ""
|
1870
|
+
|
1871
|
+
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:17
|
1872
|
+
msgid "Static"
|
1873
|
+
msgstr ""
|
1874
|
+
|
1875
|
+
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:18
|
1876
|
+
msgid "evaluates just after you submit this form"
|
1877
|
+
msgstr ""
|
1878
|
+
|
1879
|
+
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:21
|
1880
|
+
msgid "Dynamic"
|
1881
|
+
msgstr ""
|
1882
|
+
|
1883
|
+
#: ../webpack/JobWizard/steps/Schedule/QueryType.js:22
|
1884
|
+
msgid ""
|
1885
|
+
"evaluates just before the execution is started, so if it's planed in future, t"
|
1886
|
+
"argeted hosts set may change before it"
|
1887
|
+
msgstr ""
|
1888
|
+
|
1889
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:19
|
1890
|
+
msgid "Cron line"
|
1891
|
+
msgstr ""
|
1892
|
+
|
1893
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:22
|
1894
|
+
msgid "Cron line format 'a b c d e', where:"
|
1895
|
+
msgstr ""
|
1896
|
+
|
1897
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:25
|
1898
|
+
msgid "is minute (range: 0-59)"
|
1899
|
+
msgstr ""
|
1900
|
+
|
1901
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:26
|
1902
|
+
msgid "is hour (range: 0-23)"
|
1903
|
+
msgstr ""
|
1904
|
+
|
1905
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:27
|
1906
|
+
msgid "is day of month (range: 1-31)"
|
1907
|
+
msgstr ""
|
1908
|
+
|
1909
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:28
|
1910
|
+
msgid "is month (range: 1-12)"
|
1911
|
+
msgstr ""
|
1912
|
+
|
1913
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatCron.js:29
|
1914
|
+
msgid "is day of week (range: 0-6)"
|
1915
|
+
msgstr ""
|
1916
|
+
|
1917
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatDaily.js:17
|
1918
|
+
msgid "At"
|
1919
|
+
msgstr ""
|
1920
|
+
|
1921
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatDaily.js:27
|
1922
|
+
#: ../webpack/JobWizard/steps/form/DateTimePicker.js:107
|
1923
|
+
msgid "Invalid time format"
|
1924
|
+
msgstr ""
|
1925
|
+
|
1926
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatHour.js:24
|
1927
|
+
msgid "At minute"
|
1928
|
+
msgstr ""
|
1929
|
+
|
1930
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatMonth.js:20
|
1931
|
+
msgid "Days"
|
1932
|
+
msgstr ""
|
1933
|
+
|
1934
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatOn.js:76
|
1935
|
+
msgid "Repeat On"
|
1936
|
+
msgstr ""
|
1937
|
+
|
1938
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatOn.js:95
|
1939
|
+
msgid "Repeat amount can only be a positive number"
|
1940
|
+
msgstr ""
|
1941
|
+
|
1942
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatOn.js:106
|
1943
|
+
msgid "Repeat N times"
|
1944
|
+
msgstr ""
|
1945
|
+
|
1946
|
+
#: ../webpack/JobWizard/steps/Schedule/RepeatWeek.js:42
|
1947
|
+
msgid "Days of week"
|
1948
|
+
msgstr ""
|
1949
|
+
|
1950
|
+
#: ../webpack/JobWizard/steps/Schedule/StartEndDates.js:41
|
1951
|
+
msgid "Starts at"
|
1952
|
+
msgstr ""
|
1953
|
+
|
1954
|
+
#: ../webpack/JobWizard/steps/Schedule/StartEndDates.js:51
|
1955
|
+
msgid "Starts before"
|
1956
|
+
msgstr ""
|
1957
|
+
|
1958
|
+
#: ../webpack/JobWizard/steps/Schedule/StartEndDates.js:69
|
1959
|
+
msgid "Ends"
|
1960
|
+
msgstr ""
|
1961
|
+
|
1962
|
+
#: ../webpack/JobWizard/steps/Schedule/StartEndDates.js:71
|
1963
|
+
msgid "End time needs to be after start time"
|
1964
|
+
msgstr ""
|
1965
|
+
|
1966
|
+
#: ../webpack/JobWizard/steps/Schedule/StartEndDates.js:81
|
1967
|
+
msgid "Never ends"
|
1968
|
+
msgstr ""
|
1969
|
+
|
1970
|
+
#: ../webpack/JobWizard/steps/form/DateTimePicker.js:91
|
1971
|
+
msgid "Invalid date"
|
1972
|
+
msgstr ""
|
1973
|
+
|
1974
|
+
#: ../webpack/JobWizard/steps/form/FormHelpers.js:12
|
1975
|
+
msgid "open-help-tooltip-button"
|
1976
|
+
msgstr ""
|
1977
|
+
|
1978
|
+
#: ../webpack/JobWizard/steps/form/NumberInput.js:13
|
1979
|
+
msgid "Has to be a positive number"
|
1980
|
+
msgstr ""
|
1981
|
+
|
1982
|
+
#: ../webpack/JobWizard/steps/form/SearchSelect.js:37
|
1983
|
+
msgid "Please refine your search."
|
1984
|
+
msgstr ""
|
1985
|
+
|
1986
|
+
#: ../webpack/JobWizard/steps/form/SearchSelect.js:40
|
1987
|
+
msgid "You have %s results to display. Showing first %s results"
|
1988
|
+
msgstr ""
|
1989
|
+
|
1990
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:25
|
1991
|
+
msgid "Recent jobs"
|
1992
|
+
msgstr ""
|
1993
|
+
|
1994
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:31
|
1995
|
+
msgid "View All Jobs"
|
1996
|
+
msgstr ""
|
1997
|
+
|
1998
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:39
|
1999
|
+
msgid "View Finished Jobs"
|
2000
|
+
msgstr ""
|
2001
|
+
|
2002
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:45
|
2003
|
+
msgid "View Running Jobs"
|
2004
|
+
msgstr ""
|
2005
|
+
|
2006
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:51
|
2007
|
+
msgid "View Scheduled Jobs"
|
2008
|
+
msgstr ""
|
2009
|
+
|
2010
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:58
|
2011
|
+
msgid "Finished"
|
2012
|
+
msgstr ""
|
2013
|
+
|
2014
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:64
|
2015
|
+
msgid "Running"
|
2016
|
+
msgstr ""
|
2017
|
+
|
2018
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsCard.js:70
|
2019
|
+
msgid "Scheduled"
|
2020
|
+
msgstr ""
|
2021
|
+
|
2022
|
+
#: ../webpack/react_app/components/RecentJobsCard/RecentJobsTable.js:43
|
2023
|
+
msgid "No results found"
|
2024
|
+
msgstr ""
|
2025
|
+
|
1510
2026
|
#: ../webpack/react_app/components/RegistrationExtension/RexInterface.js:12
|
1511
2027
|
msgid "Remote Execution Interface"
|
1512
2028
|
msgstr ""
|
@@ -1515,20 +2031,16 @@ msgstr ""
|
|
1515
2031
|
msgid "Host"
|
1516
2032
|
msgstr ""
|
1517
2033
|
|
1518
|
-
#: action_names.rb:2
|
1519
|
-
msgid "Preupgrade job"
|
1520
|
-
msgstr ""
|
1521
|
-
|
1522
2034
|
#: action_names.rb:3
|
1523
|
-
msgid "
|
2035
|
+
msgid "»Import facts«"
|
1524
2036
|
msgstr ""
|
1525
2037
|
|
1526
2038
|
#: action_names.rb:4
|
1527
|
-
msgid "Import
|
2039
|
+
msgid "»Import Puppet classes«"
|
1528
2040
|
msgstr ""
|
1529
2041
|
|
1530
2042
|
#: action_names.rb:5
|
1531
|
-
msgid "
|
2043
|
+
msgid "»Action with sub plans«"
|
1532
2044
|
msgstr ""
|
1533
2045
|
|
1534
2046
|
#: gemspec.rb:2
|