foreman_remote_execution 0.2.3 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +2 -0
  3. data/.rubocop.yml +7 -0
  4. data/.rubocop_todo.yml +16 -5
  5. data/.tx/config +1 -1
  6. data/app/assets/javascripts/template_invocation.js +14 -1
  7. data/app/assets/stylesheets/job_invocations.css.scss +0 -13
  8. data/app/assets/stylesheets/template_invocation.css.scss +7 -13
  9. data/app/controllers/api/v2/foreign_input_sets_controller.rb +1 -1
  10. data/app/controllers/api/v2/job_invocations_controller.rb +12 -18
  11. data/app/controllers/api/v2/remote_execution_features_controller.rb +38 -0
  12. data/app/controllers/api/v2/template_inputs_controller.rb +1 -0
  13. data/app/controllers/job_invocations_controller.rb +3 -13
  14. data/app/controllers/job_templates_controller.rb +1 -1
  15. data/app/controllers/remote_execution_features_controller.rb +19 -0
  16. data/app/helpers/concerns/foreman_remote_execution/hosts_helper_extensions.rb +1 -22
  17. data/app/helpers/remote_execution_helper.rb +30 -12
  18. data/app/lib/actions/remote_execution/helpers/live_output.rb +2 -2
  19. data/app/lib/actions/remote_execution/run_host_job.rb +7 -4
  20. data/app/lib/actions/remote_execution/run_hosts_job.rb +14 -0
  21. data/app/lib/actions/remote_execution/run_proxy_command.rb +2 -2
  22. data/app/models/concerns/foreman_remote_execution/host_extensions.rb +5 -4
  23. data/app/models/concerns/foreman_remote_execution/subnet_extensions.rb +1 -0
  24. data/app/models/input_template_renderer.rb +14 -3
  25. data/app/models/job_invocation.rb +6 -15
  26. data/app/models/job_invocation_composer.rb +131 -21
  27. data/app/models/job_template.rb +77 -22
  28. data/app/models/job_template_effective_user.rb +0 -2
  29. data/app/models/remote_execution_feature.rb +34 -0
  30. data/app/models/setting/remote_execution.rb +4 -1
  31. data/app/models/targeting.rb +2 -2
  32. data/app/models/template_input.rb +17 -13
  33. data/app/views/api/v2/remote_execution_features/base.json.rabl +3 -0
  34. data/app/views/api/v2/remote_execution_features/index.json.rabl +3 -0
  35. data/app/views/api/v2/remote_execution_features/main.json.rabl +3 -0
  36. data/app/views/api/v2/remote_execution_features/show.json.rabl +3 -0
  37. data/app/views/job_invocations/_form.html.erb +51 -40
  38. data/app/views/job_invocations/_preview_hosts_list.html.erb +1 -1
  39. data/app/views/job_invocations/_tab_hosts.html.erb +6 -3
  40. data/app/views/job_invocations/index.html.erb +11 -11
  41. data/app/views/job_templates/_custom_tabs.html.erb +4 -4
  42. data/app/views/job_templates/index.html.erb +5 -5
  43. data/app/views/overrides/nics/_execution_interface.html.erb +9 -1
  44. data/app/views/remote_execution_features/_form.html.erb +24 -0
  45. data/app/views/remote_execution_features/index.html.erb +21 -0
  46. data/app/views/remote_execution_features/show.html.erb +3 -0
  47. data/app/views/template_inputs/_form.html.erb +1 -0
  48. data/app/views/template_inputs/_invocation_form.html.erb +7 -0
  49. data/app/views/templates/package_action.erb +17 -5
  50. data/app/views/templates/power_action.erb +22 -0
  51. data/app/views/templates/puppet_run_once.erb +1 -1
  52. data/config/routes.rb +4 -0
  53. data/db/migrate/20160113162007_expand_all_template_invocations.rb +1 -1
  54. data/db/migrate/20160118124600_create_remote_execution_features.rb +14 -0
  55. data/db/migrate/20160125155108_make_job_template_name_unique.rb +12 -0
  56. data/db/migrate/20160127134031_add_advanced_to_template_input.rb +11 -0
  57. data/db/migrate/20160127162711_reword_puppet_template_description.rb +9 -0
  58. data/db/migrate/20160203104056_add_concurrency_options_to_job_invocation.rb +6 -0
  59. data/db/seeds.d/70-job_templates.rb +2 -1
  60. data/doc/plugins/div_tag.rb +1 -1
  61. data/doc/plugins/plantuml.rb +1 -1
  62. data/doc/plugins/tags.rb +7 -8
  63. data/doc/plugins/toc.rb +0 -1
  64. data/foreman_remote_execution.gemspec +1 -1
  65. data/lib/foreman_remote_execution/engine.rb +10 -2
  66. data/lib/foreman_remote_execution/version.rb +1 -1
  67. data/locale/action_names.rb +8 -0
  68. data/locale/en/foreman_remote_execution.po +767 -11
  69. data/locale/foreman_remote_execution.pot +1026 -8
  70. data/test/functional/api/v2/foreign_input_sets_controller_test.rb +1 -1
  71. data/test/functional/api/v2/job_invocations_controller_test.rb +0 -9
  72. data/test/functional/api/v2/job_templates_controller_test.rb +11 -11
  73. data/test/functional/api/v2/remote_execution_features_controller_test.rb +35 -0
  74. data/test/functional/api/v2/template_inputs_controller_test.rb +1 -1
  75. data/test/unit/actions/run_hosts_job_test.rb +48 -7
  76. data/test/unit/actions/run_proxy_command_test.rb +1 -1
  77. data/test/unit/concerns/host_extensions_test.rb +11 -0
  78. data/test/unit/input_template_renderer_test.rb +4 -4
  79. data/test/unit/job_invocation_composer_test.rb +52 -2
  80. data/test/unit/job_invocation_test.rb +1 -1
  81. data/test/unit/job_template_test.rb +126 -3
  82. data/test/unit/remote_execution_feature_test.rb +42 -0
  83. data/test/unit/targeting_test.rb +4 -4
  84. metadata +26 -7
  85. data/app/views/job_invocation_task_groups/_job_invocation_task_group.html.erb +0 -31
  86. data/app/views/unattended/snippets/_remote_execution_ssh_keys.erb +0 -18
  87. data/db/seeds.d/80-provision_templates.rb +0 -21
@@ -1,19 +1,775 @@
1
- # foreman_remote_execution
1
+ # English translations for foreman_remote_execution package.
2
+ # Copyright (C) 2016 THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the foreman_remote_execution package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
2
5
  #
3
- # This file is distributed under the same license as foreman_remote_execution.
4
- #
5
- #, fuzzy
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: version 0.0.1\n"
8
+ "Project-Id-Version: foreman_remote_execution 1.0.0\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2014-08-20 08:46+0100\n"
11
- "PO-Revision-Date: 2014-08-20 08:54+0100\n"
12
- "Last-Translator: Foreman Team <foreman-dev@googlegroups.com>\n"
13
- "Language-Team: Foreman Team <foreman-dev@googlegroups.com>\n"
14
- "Language: \n"
10
+ "PO-Revision-Date: 2016-02-03 04:48-0500\n"
11
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12
+ "Language-Team: English\n"
13
+ "Language: en\n"
15
14
  "MIME-Version: 1.0\n"
16
15
  "Content-Type: text/plain; charset=UTF-8\n"
17
16
  "Content-Transfer-Encoding: 8bit\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+ "\n"
19
+
20
+ msgid ""
21
+ "Another interface is already set as execution. Are you sure you want to use th"
22
+ "is one instead?"
23
+ msgstr ""
24
+
25
+ msgid "There was an error while updating the status, try refreshing the page."
26
+ msgstr ""
27
+
28
+ msgid "List foreign input sets"
29
+ msgstr ""
30
+
31
+ msgid "Show foreign input set details"
32
+ msgstr ""
33
+
34
+ msgid "Target template ID"
35
+ msgstr ""
36
+
37
+ msgid "Include all inputs form the foreign template"
38
+ msgstr ""
39
+
40
+ msgid ""
41
+ "A comma separated list of input names to be included from the foreign template"
42
+ "."
43
+ msgstr ""
44
+
45
+ msgid "Input set description"
46
+ msgstr ""
47
+
48
+ msgid "Create a foreign input set"
49
+ msgstr ""
50
+
51
+ msgid "Delete a foreign input set"
52
+ msgstr ""
53
+
54
+ msgid "Update a foreign input set"
55
+ msgstr ""
56
+
57
+ msgid "List job invocations"
58
+ msgstr ""
59
+
60
+ msgid "Show job invocation"
61
+ msgstr ""
62
+
63
+ msgid "The job template to use"
64
+ msgstr ""
65
+
66
+ msgid "Invocation type, one of %s"
67
+ msgstr ""
68
+
69
+ msgid "Inputs to use"
70
+ msgstr ""
71
+
72
+ msgid "SSH provider specific options"
73
+ msgstr ""
74
+
75
+ msgid ""
76
+ "What user should be used to run the script (using sudo-like mechanisms). Defau"
77
+ "lts to a template parameter or global setting."
78
+ msgstr ""
79
+
80
+ msgid "Create a recurring job"
81
+ msgstr ""
82
+
83
+ msgid "How often the job should occur, in the cron format"
84
+ msgstr ""
85
+
86
+ msgid "Repeat a maximum of N times"
87
+ msgstr ""
88
+
89
+ msgid "Perform no more executions after this time"
90
+ msgstr ""
91
+
92
+ msgid "Schedule the job to start at a later time"
93
+ msgstr ""
94
+
95
+ msgid "Schedule the job for a future time"
96
+ msgstr ""
97
+
98
+ msgid ""
99
+ "Indicates that the action should be cancelled if it cannot be started before t"
100
+ "his time."
101
+ msgstr ""
102
+
103
+ msgid "Override the description format from the template for this invocation only"
104
+ msgstr ""
105
+
106
+ msgid "Create a job invocation"
107
+ msgstr ""
108
+
109
+ msgid "Get output for a host"
110
+ msgstr ""
111
+
112
+ msgid "Host with id '%{id}' was not found"
113
+ msgstr ""
114
+
115
+ msgid "Template with id '%{id}' was not found"
116
+ msgstr ""
117
+
118
+ msgid "List job templates"
119
+ msgstr ""
120
+
121
+ msgid "List job templates per location"
122
+ msgstr ""
123
+
124
+ msgid "List job templates per organization"
125
+ msgstr ""
126
+
127
+ msgid "Show job template details"
128
+ msgstr ""
129
+
130
+ msgid "Template name"
131
+ msgstr ""
132
+
133
+ msgid "Job category"
134
+ msgstr ""
135
+
136
+ msgid ""
137
+ "This template is used to generate the description. Input values can be used us"
138
+ "ing the syntax %{package}. You may also include the job category and template "
139
+ "name using %{job_category} and %{template_name}."
140
+ msgstr ""
141
+
142
+ msgid "Provider type"
143
+ msgstr ""
144
+
145
+ msgid "Whether or not the template is locked for editing"
146
+ msgstr ""
147
+
148
+ msgid "Effective user options"
149
+ msgstr ""
150
+
151
+ msgid "What user should be used to run the script (using sudo-like mechanisms)"
152
+ msgstr ""
153
+
154
+ msgid ""
155
+ "Whether it should be allowed to override the effective user from the invocatio"
156
+ "n form."
157
+ msgstr ""
158
+
159
+ msgid "Whether the current user login should be used as the effective user"
160
+ msgstr ""
161
+
162
+ msgid "Create a job template"
163
+ msgstr ""
164
+
165
+ msgid "Update a job template"
166
+ msgstr ""
167
+
168
+ msgid "Template version"
169
+ msgstr ""
170
+
171
+ msgid "Delete a job template"
172
+ msgstr ""
173
+
174
+ msgid "Clone a provision template"
175
+ msgstr ""
176
+
177
+ msgid "List template inputs"
178
+ msgstr ""
179
+
180
+ msgid "Show template input details"
181
+ msgstr ""
182
+
183
+ msgid "Input name"
184
+ msgstr ""
185
+
186
+ msgid "Input description"
187
+ msgstr ""
188
+
189
+ msgid "Input is required"
190
+ msgstr ""
191
+
192
+ msgid "Input is advanced"
193
+ msgstr ""
194
+
195
+ msgid "Input type"
196
+ msgstr ""
197
+
198
+ msgid "Fact name, used when input type is fact"
199
+ msgstr ""
200
+
201
+ msgid "Variable name, used when input type is variable"
202
+ msgstr ""
203
+
204
+ msgid "Puppet class name, used when input type is puppet_parameter"
205
+ msgstr ""
206
+
207
+ msgid "Puppet parameter name, used when input type is puppet_parameter"
208
+ msgstr ""
209
+
210
+ msgid "Selectable values for user inputs"
211
+ msgstr ""
212
+
213
+ msgid "Create a template input"
214
+ msgstr ""
215
+
216
+ msgid "Delete a template input"
217
+ msgstr ""
218
+
219
+ msgid "Update a template input"
220
+ msgstr ""
221
+
222
+ msgid ""
223
+ "Problem with previewing the template: %{error}. Note that you must save templa"
224
+ "te input changes before you try to preview it."
225
+ msgstr ""
226
+
227
+ msgid "Run Job"
228
+ msgstr ""
229
+
230
+ msgid "Run"
231
+ msgstr ""
232
+
233
+ msgid "Success"
234
+ msgstr ""
235
+
236
+ msgid "Failed"
237
+ msgstr ""
238
+
239
+ msgid "Pending"
240
+ msgstr ""
241
+
242
+ msgid "Cancelled"
243
+ msgstr ""
244
+
245
+ msgid "queued"
246
+ msgstr ""
247
+
248
+ msgid "running %{percent}%"
249
+ msgstr ""
250
+
251
+ msgid "succeeded"
252
+ msgstr ""
253
+
254
+ msgid "failed"
255
+ msgstr ""
256
+
257
+ msgid "unknown status"
258
+ msgstr ""
259
+
260
+ msgid "cancelled"
261
+ msgstr ""
262
+
263
+ msgid "success"
264
+ msgstr ""
265
+
266
+ msgid "pending"
267
+ msgstr ""
268
+
269
+ msgid "Host detail"
270
+ msgstr ""
271
+
272
+ msgid "Rerun on %s"
273
+ msgstr ""
274
+
275
+ msgid "N/A"
276
+ msgstr ""
277
+
278
+ msgid "Refresh this page"
279
+ msgstr ""
280
+
281
+ msgid "Refresh"
282
+ msgstr ""
283
+
284
+ msgid "Rerun"
285
+ msgstr ""
286
+
287
+ msgid "Rerun the job"
288
+ msgstr ""
289
+
290
+ msgid "Rerun failed"
291
+ msgstr ""
292
+
293
+ msgid "Rerun on failed hosts"
294
+ msgstr ""
295
+
296
+ msgid "Job Task"
297
+ msgstr ""
298
+
299
+ msgid "See the last task details"
300
+ msgstr ""
301
+
302
+ msgid "Cancel Job"
303
+ msgstr ""
304
+
305
+ msgid "Try to cancel the job"
306
+ msgstr ""
307
+
308
+ msgid "Task Details"
309
+ msgstr ""
310
+
311
+ msgid "See the task details"
312
+ msgstr ""
313
+
314
+ msgid "Try to cancel the job on a host"
315
+ msgstr ""
316
+
317
+ msgid "in %s"
318
+ msgstr ""
319
+
320
+ msgid "%s ago"
321
+ msgstr ""
322
+
323
+ msgid "Documentation"
324
+ msgstr ""
325
+
326
+ msgid "Template input"
327
+ msgstr ""
328
+
329
+ msgid "remove template input"
330
+ msgstr ""
331
+
332
+ msgid "Use default description template"
333
+ msgstr ""
334
+
335
+ msgid "Description template"
336
+ msgstr ""
337
+
338
+ msgid "Explanation"
339
+ msgstr ""
340
+
341
+ msgid ""
342
+ "This template is used to generate the description Input values can be used usi"
343
+ "ng the syntax %{package}. You may also include the job category and template n"
344
+ "ame using %{job_category} and %{template_name}."
345
+ msgstr ""
346
+
347
+ msgid "Could not use any template used in the job invocation"
348
+ msgstr ""
349
+
350
+ msgid ""
351
+ "Could not use any proxy. Consider configuring %{global_proxy} or %{fallback_pr"
352
+ "oxy} in settings"
353
+ msgstr ""
354
+
355
+ msgid "Failed rendering template: %s"
356
+ msgstr ""
357
+
358
+ msgid "Failed to initialize command"
359
+ msgstr ""
360
+
361
+ msgid "%{description} on %{host}"
362
+ msgstr ""
363
+
364
+ msgid "Remote action:"
365
+ msgstr ""
366
+
367
+ msgid "User can not execute job on host %s"
368
+ msgstr ""
369
+
370
+ msgid "User can not execute this job template"
371
+ msgstr ""
372
+
373
+ msgid "User can not execute this job template on %s"
374
+ msgstr ""
375
+
376
+ msgid "Script execution failed"
377
+ msgstr ""
378
+
379
+ msgid "Initialization error: %s"
380
+ msgstr ""
381
+
382
+ msgid "Error loading data from proxy"
383
+ msgstr ""
384
+
385
+ msgid "No output"
386
+ msgstr ""
387
+
388
+ msgid "Exit status: %s"
389
+ msgstr ""
390
+
391
+ msgid "Job finished with error"
392
+ msgstr ""
393
+
394
+ msgid "Unable to fetch public key"
395
+ msgstr ""
396
+
397
+ msgid "host already has an execution interface"
398
+ msgstr ""
399
+
400
+ msgid ""
401
+ "Circular dependency detected in foreign input set '%{template}' -> '%{target_t"
402
+ "emplate}'. Templates stack: %{templates_stack}"
403
+ msgstr ""
404
+
405
+ msgid "Execution"
406
+ msgstr ""
407
+
408
+ msgid "No execution finished yet"
409
+ msgstr ""
410
+
411
+ msgid "Last execution succeeded"
412
+ msgstr ""
413
+
414
+ msgid "Last execution failed"
415
+ msgstr ""
416
+
417
+ msgid "Unknown execution status"
418
+ msgstr ""
419
+
420
+ msgid "Recursive rendering of templates detected"
421
+ msgstr ""
422
+
423
+ msgid "error during rendering: %s"
424
+ msgstr ""
425
+
426
+ msgid ""
427
+ "input macro with name '%s' used, but no input with such name defined for this "
428
+ "template"
429
+ msgstr ""
430
+
431
+ msgid "included template '%s' not found"
432
+ msgstr ""
433
+
434
+ msgid "template"
435
+ msgstr ""
436
+
437
+ msgid "Cannot specify both bookmark_id and search_query"
438
+ msgstr ""
439
+
440
+ msgid "Cannot specify both recurrence and scheduling"
441
+ msgstr ""
442
+
443
+ msgid "Unknown input %{input_name} for template %{template_name}"
444
+ msgstr ""
445
+
446
+ msgid "Job Invocation"
447
+ msgstr ""
448
+
449
+ msgid "Duplicated inputs detected: %{duplicated_inputs}"
450
+ msgstr ""
451
+
452
+ msgid "This template is locked. Please clone it to a new template to customize."
453
+ msgstr ""
454
+
455
+ msgid ""
456
+ "Search the host for any proxy with Remote Execution, useful when the host has "
457
+ "no subnet or the subnet does not have an execution proxy"
458
+ msgstr ""
459
+
460
+ msgid ""
461
+ "Search for remote execution proxy outside of the proxies assigned to the host."
462
+ " If locations or organizations are enabled, the search will be limited to the "
463
+ "host's organization or location."
464
+ msgstr ""
465
+
466
+ msgid ""
467
+ "Default user to use for SSH. You may override per host by setting a parameter"
468
+ " called remote_execution_ssh_user."
469
+ msgstr ""
470
+
471
+ msgid ""
472
+ "Default user to use for executing the script. If the user differs from the SSH"
473
+ " user, su or sudo is used to switch the user."
474
+ msgstr ""
475
+
476
+ msgid "What command should be used to switch to the effective user. One of %s"
477
+ msgstr ""
478
+
479
+ msgid "SSH"
480
+ msgstr ""
481
+
482
+ msgid "Effective user method \"%{current_value}\" is not one of %{valid_methods}"
483
+ msgstr ""
484
+
485
+ msgid "Static Query"
486
+ msgstr ""
487
+
488
+ msgid "Dynamic Query"
489
+ msgstr ""
490
+
491
+ msgid "Cannot resolve hosts without a user"
492
+ msgstr ""
493
+
494
+ msgid "Cannot resolve hosts without a bookmark or search query"
495
+ msgstr ""
496
+
497
+ msgid "Must select a bookmark or enter a search query"
498
+ msgstr ""
499
+
500
+ msgid "User input"
501
+ msgstr ""
502
+
503
+ msgid "Variable"
504
+ msgstr ""
505
+
506
+ msgid "Fact value"
507
+ msgstr ""
508
+
509
+ msgid "Puppet parameter"
510
+ msgstr ""
511
+
512
+ msgid "Value for required input '%s' was not specified"
513
+ msgstr ""
514
+
515
+ msgid "Input"
516
+ msgstr ""
517
+
518
+ msgid "Not all required inputs have values. Missing inputs: %s"
519
+ msgstr ""
520
+
521
+ msgid "The execution interface is used for remote execution"
522
+ msgstr ""
523
+
524
+ msgid "Remote execution"
525
+ msgstr ""
526
+
527
+ msgid "Remote Execution"
528
+ msgstr ""
529
+
530
+ msgid "Proxies"
531
+ msgstr ""
532
+
533
+ msgid ""
534
+ "Select as many remote execution proxies as applicable for this subnet. When m"
535
+ "ultiple proxies with the same provider are added, actions will be load balance"
536
+ "d among them."
537
+ msgstr ""
538
+
539
+ msgid "Description"
540
+ msgstr ""
541
+
542
+ msgid "Job template"
543
+ msgstr ""
544
+
545
+ msgid "Resolves to"
546
+ msgstr ""
547
+
548
+ msgid "hosts"
549
+ msgstr ""
550
+
551
+ msgid "Preview"
552
+ msgstr ""
553
+
554
+ msgid "Hide advanced fields"
555
+ msgstr ""
556
+
557
+ msgid "Display advanced fields"
558
+ msgstr ""
559
+
560
+ msgid "Effective user"
561
+ msgstr ""
562
+
563
+ msgid ""
564
+ "A user to be used for executing the script. If it differs from the SSH user, s"
565
+ "u or sudo is used to switch the accounts."
566
+ msgstr ""
567
+
568
+ msgid "Type of query"
569
+ msgstr ""
570
+
571
+ msgid ""
572
+ "Type has impact on when is the query evaulated to hosts.<br><ul><li><b>Static<"
573
+ "/b> - evaluates just after you submit this form</li><li><b>Dynamic</b> - evalu"
574
+ "ates just before the execution is started, so if it's planed in future, target"
575
+ "ed hosts set may change before it</li></ul>"
576
+ msgstr ""
577
+
578
+ msgid ""
579
+ "The final host list may change because the selected query is dynamic. It will"
580
+ " be rerun during execution."
581
+ msgstr ""
582
+
583
+ #, fuzzy
584
+ msgid "...and %{count} more"
585
+ msgid_plural "...and %{count} more"
586
+ msgstr[0] ""
587
+ msgstr[1] ""
19
588
 
589
+ msgid "No hosts found."
590
+ msgstr ""
591
+
592
+ msgid "Close"
593
+ msgstr ""
594
+
595
+ msgid "Filter"
596
+ msgstr ""
597
+
598
+ msgid "Search"
599
+ msgstr ""
600
+
601
+ msgid "Host"
602
+ msgstr ""
603
+
604
+ msgid "Status"
605
+ msgstr ""
606
+
607
+ msgid "Actions"
608
+ msgstr ""
609
+
610
+ msgid ""
611
+ "The dynamic query '%{query}' was not resolved yet. The list of hosts to which "
612
+ "it would resolve now can be seen %{here}."
613
+ msgstr ""
614
+
615
+ msgid "here"
616
+ msgstr ""
617
+
618
+ msgid "Target hosts"
619
+ msgstr ""
620
+
621
+ msgid "Bookmark"
622
+ msgstr ""
623
+
624
+ msgid "Manual selection"
625
+ msgstr ""
626
+
627
+ msgid "Evaluated at:"
628
+ msgstr ""
629
+
630
+ msgid "Total hosts"
631
+ msgstr ""
632
+
633
+ msgid "Providers and templates"
634
+ msgstr ""
635
+
636
+ msgid "Preview for target %s"
637
+ msgstr ""
638
+
639
+ msgid "following user inputs were provided"
640
+ msgstr ""
641
+
642
+ msgid "Job invocations"
643
+ msgstr ""
644
+
645
+ msgid "Succeeded"
646
+ msgstr ""
647
+
648
+ msgid "Start"
649
+ msgstr ""
650
+
651
+ msgid "Job invocation"
652
+ msgstr ""
653
+
654
+ msgid "Overview"
655
+ msgstr ""
656
+
657
+ msgid "Hosts"
658
+ msgstr ""
659
+
660
+ msgid "Recurring logic"
661
+ msgstr ""
662
+
663
+ msgid "Job"
664
+ msgstr ""
665
+
666
+ msgid "Type"
667
+ msgstr ""
668
+
669
+ msgid "add a input for this template"
670
+ msgstr ""
671
+
672
+ msgid "Add Input"
673
+ msgstr ""
674
+
675
+ msgid "Add Foreign Input Set"
676
+ msgstr ""
677
+
678
+ msgid "add an input set for this template to reference a different template inputs"
679
+ msgstr ""
680
+
681
+ msgid "Snippet"
682
+ msgstr ""
683
+
684
+ msgid "Edit Job Template"
685
+ msgstr ""
686
+
687
+ msgid "Job Templates"
688
+ msgstr ""
689
+
690
+ msgid "New Job Template"
691
+ msgstr ""
692
+
693
+ msgid "JobTemplate|Name"
694
+ msgstr ""
695
+
696
+ msgid "JobTemplate|Snippet"
697
+ msgstr ""
698
+
699
+ msgid "JobTemplate|Locked"
700
+ msgstr ""
701
+
702
+ msgid "This template is locked for editing."
703
+ msgstr ""
704
+
705
+ msgid "Foreign input set"
706
+ msgstr ""
707
+
708
+ msgid "remove template input set"
709
+ msgstr ""
710
+
711
+ msgid ""
712
+ "A comma separated list of input names to be excluded from the foreign template"
713
+ "."
714
+ msgstr ""
715
+
716
+ msgid ""
717
+ "A list of options the user can select from. If not provided, the user will be "
718
+ "given a free-form field"
719
+ msgstr ""
720
+
721
+ msgid "Detail of %s run"
722
+ msgstr ""
723
+
724
+ msgid "Back to Job"
725
+ msgstr ""
726
+
727
+ msgid "Toggle command"
728
+ msgstr ""
729
+
730
+ msgid "Toggle STDERR"
731
+ msgstr ""
732
+
733
+ msgid "Toggle STDOUT"
734
+ msgstr ""
735
+
736
+ msgid "Toggle DEBUG"
737
+ msgstr ""
738
+
739
+ msgid "Target: "
740
+ msgstr ""
741
+
742
+ msgid "Scroll to bottom"
743
+ msgstr ""
744
+
745
+ msgid "Scroll to top"
746
+ msgstr ""
747
+
748
+ msgid "Job templates"
749
+ msgstr ""
750
+
751
+ msgid "Jobs"
752
+ msgstr ""
753
+
754
+ msgid "Create architecture"
755
+ msgstr ""
756
+
757
+ msgid "Delete architecture"
758
+ msgstr ""
759
+
760
+ msgid "Update architecture"
761
+ msgstr ""
762
+
763
+ msgid "Import facts"
764
+ msgstr ""
765
+
766
+ msgid "Import puppetclasses"
767
+ msgstr ""
768
+
769
+ msgid "Action with sub plans"
770
+ msgstr ""
771
+
772
+ msgid ""
773
+ "A plugin bringing remote execution to the Foreman, completing the config manag"
774
+ "ement functionality with remote management functionality."
775
+ msgstr ""