foreman_remote_execution 14.1.4 → 15.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/foreman_remote_execution/locale/de/foreman_remote_execution.js +178 -13
  3. data/app/assets/javascripts/foreman_remote_execution/locale/en/foreman_remote_execution.js +1832 -2
  4. data/app/assets/javascripts/foreman_remote_execution/locale/en_GB/foreman_remote_execution.js +176 -11
  5. data/app/assets/javascripts/foreman_remote_execution/locale/es/foreman_remote_execution.js +178 -13
  6. data/app/assets/javascripts/foreman_remote_execution/locale/fr/foreman_remote_execution.js +179 -14
  7. data/app/assets/javascripts/foreman_remote_execution/locale/ja/foreman_remote_execution.js +179 -14
  8. data/app/assets/javascripts/foreman_remote_execution/locale/ka/foreman_remote_execution.js +178 -13
  9. data/app/assets/javascripts/foreman_remote_execution/locale/ko/foreman_remote_execution.js +449 -285
  10. data/app/assets/javascripts/foreman_remote_execution/locale/pt_BR/foreman_remote_execution.js +178 -13
  11. data/app/assets/javascripts/foreman_remote_execution/locale/ru/foreman_remote_execution.js +177 -12
  12. data/app/assets/javascripts/foreman_remote_execution/locale/zh_CN/foreman_remote_execution.js +179 -14
  13. data/app/assets/javascripts/foreman_remote_execution/locale/zh_TW/foreman_remote_execution.js +177 -12
  14. data/app/controllers/api/v2/job_invocations_controller.rb +8 -0
  15. data/app/controllers/job_invocations_controller.rb +1 -1
  16. data/app/controllers/template_invocations_controller.rb +57 -0
  17. data/app/controllers/ui_job_wizard_controller.rb +6 -3
  18. data/app/helpers/remote_execution_helper.rb +5 -6
  19. data/app/views/api/v2/job_invocations/base.json.rabl +1 -1
  20. data/app/views/api/v2/job_invocations/hosts.json.rabl +1 -1
  21. data/app/views/api/v2/job_invocations/main.json.rabl +1 -1
  22. data/app/views/api/v2/job_invocations/show.json.rabl +18 -0
  23. data/app/views/templates/script/convert2rhel_analyze.erb +4 -4
  24. data/config/routes.rb +2 -0
  25. data/lib/foreman_remote_execution/engine.rb +3 -3
  26. data/lib/foreman_remote_execution/version.rb +1 -1
  27. data/locale/de/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  28. data/locale/de/foreman_remote_execution.po +178 -13
  29. data/locale/en/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  30. data/locale/en/foreman_remote_execution.po +1840 -0
  31. data/locale/en_GB/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  32. data/locale/en_GB/foreman_remote_execution.po +176 -11
  33. data/locale/es/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  34. data/locale/es/foreman_remote_execution.po +178 -13
  35. data/locale/foreman_remote_execution.pot +470 -184
  36. data/locale/fr/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  37. data/locale/fr/foreman_remote_execution.po +179 -14
  38. data/locale/ja/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  39. data/locale/ja/foreman_remote_execution.po +179 -14
  40. data/locale/ka/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  41. data/locale/ka/foreman_remote_execution.po +178 -13
  42. data/locale/ko/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  43. data/locale/ko/foreman_remote_execution.po +449 -285
  44. data/locale/pt_BR/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  45. data/locale/pt_BR/foreman_remote_execution.po +178 -13
  46. data/locale/ru/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  47. data/locale/ru/foreman_remote_execution.po +177 -12
  48. data/locale/zh_CN/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  49. data/locale/zh_CN/foreman_remote_execution.po +179 -14
  50. data/locale/zh_TW/LC_MESSAGES/foreman_remote_execution.mo +0 -0
  51. data/locale/zh_TW/foreman_remote_execution.po +177 -12
  52. data/webpack/JobInvocationDetail/JobAdditionInfo.js +214 -0
  53. data/webpack/JobInvocationDetail/JobInvocationConstants.js +40 -2
  54. data/webpack/JobInvocationDetail/JobInvocationDetail.scss +70 -0
  55. data/webpack/JobInvocationDetail/JobInvocationHostTable.js +177 -80
  56. data/webpack/JobInvocationDetail/JobInvocationHostTableToolbar.js +63 -0
  57. data/webpack/JobInvocationDetail/JobInvocationSelectors.js +8 -1
  58. data/webpack/JobInvocationDetail/JobInvocationSystemStatusChart.js +61 -10
  59. data/webpack/JobInvocationDetail/OpenAlInvocations.js +111 -0
  60. data/webpack/JobInvocationDetail/TemplateInvocation.js +202 -0
  61. data/webpack/JobInvocationDetail/TemplateInvocationComponents/OutputCodeBlock.js +124 -0
  62. data/webpack/JobInvocationDetail/TemplateInvocationComponents/OutputToggleGroup.js +156 -0
  63. data/webpack/JobInvocationDetail/TemplateInvocationComponents/PreviewTemplate.js +50 -0
  64. data/webpack/JobInvocationDetail/TemplateInvocationComponents/TemplateActionButtons.js +224 -0
  65. data/webpack/JobInvocationDetail/TemplateInvocationPage.js +53 -0
  66. data/webpack/JobInvocationDetail/__tests__/MainInformation.test.js +1 -1
  67. data/webpack/JobInvocationDetail/__tests__/OpenAlInvocations.test.js +110 -0
  68. data/webpack/JobInvocationDetail/__tests__/OutputCodeBlock.test.js +69 -0
  69. data/webpack/JobInvocationDetail/__tests__/TemplateInvocation.test.js +131 -0
  70. data/webpack/JobInvocationDetail/__tests__/fixtures.js +130 -0
  71. data/webpack/JobInvocationDetail/index.js +18 -3
  72. data/webpack/JobWizard/JobWizard.js +38 -16
  73. data/webpack/JobWizard/{StartsBeforeErrorAlert.js → StartsErrorAlert.js} +16 -1
  74. data/webpack/JobWizard/steps/AdvancedFields/__tests__/AdvancedFields.test.js +1 -1
  75. data/webpack/JobWizard/steps/Schedule/ScheduleFuture.js +1 -1
  76. data/webpack/JobWizard/steps/Schedule/ScheduleRecurring.js +5 -3
  77. data/webpack/JobWizard/steps/Schedule/ScheduleType.js +1 -1
  78. data/webpack/JobWizard/steps/Schedule/__tests__/Schedule.test.js +3 -3
  79. data/webpack/JobWizard/steps/form/DateTimePicker.js +13 -0
  80. data/webpack/JobWizard/steps/form/Formatter.js +1 -0
  81. data/webpack/JobWizard/steps/form/ResourceSelect.js +34 -9
  82. data/webpack/Routes/routes.js +6 -0
  83. data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext/index.js +1 -0
  84. data/webpack/react_app/components/RegistrationExtension/RexPull.js +27 -2
  85. data/webpack/react_app/components/TargetingHosts/components/HostStatus.js +1 -1
  86. metadata +16 -7
@@ -6,7 +6,7 @@
6
6
  # 0868a4d1af5275b3f70b0a6dac4c99a4, 2016
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman_remote_execution 14.0.0\n"
9
+ "Project-Id-Version: foreman_remote_execution 15.0.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
11
  "PO-Revision-Date: 2016-02-15 13:54+0000\n"
12
12
  "Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2016\n"
@@ -36,10 +36,13 @@ msgstr ""
36
36
  msgid "%{description} on %{host}"
37
37
  msgstr ""
38
38
 
39
+ msgid "'Starts at' date must be in the future"
40
+ msgstr ""
41
+
39
42
  msgid "'Starts before' date must be after 'Starts at' date"
40
43
  msgstr ""
41
44
 
42
- msgid "'Starts before' date must in the future"
45
+ msgid "'Starts before' date must be in the future"
43
46
  msgstr ""
44
47
 
45
48
  msgid "...and %s more"
@@ -74,6 +77,9 @@ msgstr ""
74
77
  msgid "A special label for tracking a recurring job. There can be only one active job with a given purpose at a time."
75
78
  msgstr ""
76
79
 
80
+ msgid "A task for this host has not been started"
81
+ msgstr ""
82
+
77
83
  msgid "A user to be used for SSH."
78
84
  msgstr ""
79
85
 
@@ -86,9 +92,15 @@ msgstr ""
86
92
  msgid "Abort Job"
87
93
  msgstr ""
88
94
 
95
+ msgid "Abort task"
96
+ msgstr ""
97
+
89
98
  msgid "Access denied"
90
99
  msgstr ""
91
100
 
101
+ msgid "Action"
102
+ msgstr ""
103
+
92
104
  msgid "Actions"
93
105
  msgstr "Actions"
94
106
 
@@ -110,10 +122,13 @@ msgstr ""
110
122
  msgid "All fields are required."
111
123
  msgstr ""
112
124
 
125
+ msgid "All statuses"
126
+ msgstr ""
127
+
113
128
  msgid "Alphabetical"
114
129
  msgstr ""
115
130
 
116
- msgid "Amount of workers in the pool to handle the execution of the remote execution jobs. Restart of the dynflowd/foreman-tasks service is required."
131
+ msgid "An error occurred while fetching the template invocation details."
117
132
  msgstr ""
118
133
 
119
134
  msgid "Another interface is already set as execution. Are you sure you want to use this one instead?"
@@ -125,9 +140,18 @@ msgstr ""
125
140
  msgid "Any Organization"
126
141
  msgstr "Any Organisation"
127
142
 
143
+ msgid "Any location"
144
+ msgstr ""
145
+
146
+ msgid "Any organization"
147
+ msgstr ""
148
+
128
149
  msgid "Apply to"
129
150
  msgstr ""
130
151
 
152
+ msgid "Are you sure you want to open all invocations in new tabs?"
153
+ msgstr ""
154
+
131
155
  msgid "At"
132
156
  msgstr ""
133
157
 
@@ -155,16 +179,19 @@ msgstr ""
155
179
  msgid "Cancel Job"
156
180
  msgstr ""
157
181
 
182
+ msgid "Cancel Task"
183
+ msgstr ""
184
+
158
185
  msgid "Cancel job invocation"
159
186
  msgstr ""
160
187
 
161
188
  msgid "Cancel recurring"
162
189
  msgstr ""
163
190
 
164
- msgid "Canceled:"
191
+ msgid "Cancelled"
165
192
  msgstr ""
166
193
 
167
- msgid "Cancelled"
194
+ msgid "Cancelled:"
168
195
  msgstr ""
169
196
 
170
197
  msgid "Cannot resolve hosts without a bookmark or search query"
@@ -206,6 +233,9 @@ msgstr ""
206
233
  msgid "Cockpit URL"
207
234
  msgstr ""
208
235
 
236
+ msgid "Command"
237
+ msgstr ""
238
+
209
239
  msgid "Concurrency level"
210
240
  msgstr ""
211
241
 
@@ -218,6 +248,9 @@ msgstr ""
218
248
  msgid "Control concurrency level and distribution over time"
219
249
  msgstr ""
220
250
 
251
+ msgid "Copy to clipboard"
252
+ msgstr ""
253
+
221
254
  msgid "Could not abort the job %s: ${response}"
222
255
  msgstr ""
223
256
 
@@ -269,6 +302,9 @@ msgstr ""
269
302
  msgid "Create a recurring job"
270
303
  msgstr ""
271
304
 
305
+ msgid "Create job"
306
+ msgstr ""
307
+
272
308
  msgid "Create report"
273
309
  msgstr ""
274
310
 
@@ -287,6 +323,9 @@ msgstr ""
287
323
  msgid "Cronline"
288
324
  msgstr ""
289
325
 
326
+ msgid "Current iteration"
327
+ msgstr ""
328
+
290
329
  msgid "Current location %s is different from job's location %s. This job may run on different hosts than before."
291
330
  msgstr ""
292
331
 
@@ -299,9 +338,15 @@ msgstr ""
299
338
  msgid "Current organization %{org_c} is different from job's organization %{org_j}."
300
339
  msgstr ""
301
340
 
341
+ msgid "DEBUG"
342
+ msgstr ""
343
+
302
344
  msgid "Daily"
303
345
  msgstr ""
304
346
 
347
+ msgid "Date must be in the future"
348
+ msgstr ""
349
+
305
350
  msgid "Days"
306
351
  msgstr ""
307
352
 
@@ -545,6 +590,9 @@ msgstr ""
545
590
  msgid "Host detail"
546
591
  msgstr ""
547
592
 
593
+ msgid "Host group"
594
+ msgstr ""
595
+
548
596
  msgid "Host groups"
549
597
  msgstr ""
550
598
 
@@ -566,6 +614,9 @@ msgstr ""
566
614
  msgid "How often the job should occur, in the cron format"
567
615
  msgstr ""
568
616
 
617
+ msgid "ID"
618
+ msgstr ""
619
+
569
620
  msgid "Identifier of the Host interface for Remote execution"
570
621
  msgstr ""
571
622
 
@@ -578,6 +629,9 @@ msgstr ""
578
629
  msgid "Import a job template from ERB"
579
630
  msgstr ""
580
631
 
632
+ msgid "In Progress"
633
+ msgstr ""
634
+
581
635
  msgid "In Progress:"
582
636
  msgstr ""
583
637
 
@@ -620,6 +674,9 @@ msgstr ""
620
674
  msgid "Invocation type, one of %s"
621
675
  msgstr ""
622
676
 
677
+ msgid "Iteration limit"
678
+ msgstr ""
679
+
623
680
  msgid "Job"
624
681
  msgstr ""
625
682
 
@@ -677,6 +734,9 @@ msgstr ""
677
734
  msgid "Job templates"
678
735
  msgstr ""
679
736
 
737
+ msgid "Job with id '%{id}' was not found"
738
+ msgstr ""
739
+
680
740
  msgid "JobTemplate|Locked"
681
741
  msgstr ""
682
742
 
@@ -707,6 +767,9 @@ msgstr ""
707
767
  msgid "Last execution succeeded"
708
768
  msgstr ""
709
769
 
770
+ msgid "Last occurrence"
771
+ msgstr ""
772
+
710
773
  msgid "Latest Jobs"
711
774
  msgstr ""
712
775
 
@@ -722,6 +785,9 @@ msgstr ""
722
785
  msgid "List foreign input sets"
723
786
  msgstr ""
724
787
 
788
+ msgid "List hosts belonging to job invocation"
789
+ msgstr ""
790
+
725
791
  msgid "List job invocations"
726
792
  msgstr ""
727
793
 
@@ -779,24 +845,39 @@ msgstr ""
779
845
  msgid "Next"
780
846
  msgstr "Next"
781
847
 
848
+ msgid "Next occurrence"
849
+ msgstr ""
850
+
782
851
  msgid "No (override)"
783
852
  msgstr ""
784
853
 
854
+ msgid "No Results"
855
+ msgstr ""
856
+
785
857
  msgid "No Target Hosts"
786
858
  msgstr ""
787
859
 
860
+ msgid "No hosts found"
861
+ msgstr ""
862
+
788
863
  msgid "No hosts found."
789
864
  msgstr ""
790
865
 
791
866
  msgid "No jobs available"
792
867
  msgstr ""
793
868
 
869
+ msgid "No output for the selected filters"
870
+ msgstr ""
871
+
794
872
  msgid "No results found"
795
873
  msgstr ""
796
874
 
797
875
  msgid "No template mapped to feature %{feature_name}"
798
876
  msgstr ""
799
877
 
878
+ msgid "No user input"
879
+ msgstr ""
880
+
800
881
  msgid "Not all required inputs have values. Missing inputs: %s"
801
882
  msgstr ""
802
883
 
@@ -809,12 +890,24 @@ msgstr ""
809
890
  msgid "Now"
810
891
  msgstr ""
811
892
 
893
+ msgid "OS"
894
+ msgstr ""
895
+
812
896
  msgid "On"
813
897
  msgstr ""
814
898
 
815
899
  msgid "Only one of feature or job_template_id can be specified"
816
900
  msgstr ""
817
901
 
902
+ msgid "Open all in new tabs"
903
+ msgstr ""
904
+
905
+ msgid "Open all invocations in new tabs"
906
+ msgstr ""
907
+
908
+ msgid "Open in new tab"
909
+ msgstr ""
910
+
818
911
  msgid "Opening job invocation form"
819
912
  msgstr ""
820
913
 
@@ -860,9 +953,15 @@ msgstr ""
860
953
  msgid "Please enter a search query"
861
954
  msgstr ""
862
955
 
956
+ msgid "Please go back to \\\"Schedule\\\" - \\\"Future execution\\\" or \\\"Recurring execution\\\" step to fix the error"
957
+ msgstr ""
958
+
863
959
  msgid "Please go back to \\\"Schedule\\\" - \\\"Future execution\\\" step to fix the error"
864
960
  msgstr ""
865
961
 
962
+ msgid "Please make sure that the Smart Proxy is configured correctly for the Pull provider."
963
+ msgstr ""
964
+
866
965
  msgid "Please refine your search."
867
966
  msgstr ""
868
967
 
@@ -878,6 +977,9 @@ msgstr ""
878
977
  msgid "Please select at least one host group"
879
978
  msgstr ""
880
979
 
980
+ msgid "Popups are blocked by your browser. Please allow popups for this site to open all invocations in new tabs."
981
+ msgstr ""
982
+
881
983
  msgid "Port to use for SSH communication. Default port 22. You may override per host by setting a parameter called remote_execution_ssh_port."
882
984
  msgstr ""
883
985
 
@@ -890,6 +992,9 @@ msgstr ""
890
992
  msgid "Preview Hosts"
891
993
  msgstr ""
892
994
 
995
+ msgid "Preview Template"
996
+ msgstr ""
997
+
893
998
  msgid "Preview job description"
894
999
  msgstr ""
895
1000
 
@@ -989,6 +1094,9 @@ msgstr ""
989
1094
  msgid "Repeat amount can only be a positive number"
990
1095
  msgstr ""
991
1096
 
1097
+ msgid "Repeat until"
1098
+ msgstr ""
1099
+
992
1100
  msgid "Repeats"
993
1101
  msgstr ""
994
1102
 
@@ -1010,6 +1118,12 @@ msgstr ""
1010
1118
  msgid "Rerun on failed hosts"
1011
1119
  msgstr ""
1012
1120
 
1121
+ msgid "Rerun on succeeded hosts"
1122
+ msgstr ""
1123
+
1124
+ msgid "Rerun succeeded"
1125
+ msgstr ""
1126
+
1013
1127
  msgid "Rerun successful"
1014
1128
  msgstr ""
1015
1129
 
@@ -1073,6 +1187,12 @@ msgstr ""
1073
1187
  msgid "SSH user:"
1074
1188
  msgstr ""
1075
1189
 
1190
+ msgid "STDERR"
1191
+ msgstr ""
1192
+
1193
+ msgid "STDOUT"
1194
+ msgstr ""
1195
+
1076
1196
  msgid "Schedule"
1077
1197
  msgstr ""
1078
1198
 
@@ -1196,6 +1316,9 @@ msgstr ""
1196
1316
  msgid "Skip to review step"
1197
1317
  msgstr ""
1198
1318
 
1319
+ msgid "Smart proxy"
1320
+ msgstr ""
1321
+
1199
1322
  msgid "Snippet"
1200
1323
  msgstr ""
1201
1324
 
@@ -1256,6 +1379,9 @@ msgstr ""
1256
1379
  msgid "Success"
1257
1380
  msgstr "Success"
1258
1381
 
1382
+ msgid "Successfully copied to clipboard!"
1383
+ msgstr ""
1384
+
1259
1385
  msgid "Switch to the new job invocation detail UI"
1260
1386
  msgstr ""
1261
1387
 
@@ -1268,6 +1394,9 @@ msgstr ""
1268
1394
  msgid "Systems"
1269
1395
  msgstr ""
1270
1396
 
1397
+ msgid "Target Hosts"
1398
+ msgstr ""
1399
+
1271
1400
  msgid "Target hosts"
1272
1401
  msgstr ""
1273
1402
 
@@ -1277,6 +1406,9 @@ msgstr ""
1277
1406
  msgid "Target template ID"
1278
1407
  msgstr ""
1279
1408
 
1409
+ msgid "Target:"
1410
+ msgstr ""
1411
+
1280
1412
  msgid "Target: "
1281
1413
  msgstr ""
1282
1414
 
@@ -1286,6 +1418,12 @@ msgstr ""
1286
1418
  msgid "Task cancelled"
1287
1419
  msgstr ""
1288
1420
 
1421
+ msgid "Task count"
1422
+ msgstr ""
1423
+
1424
+ msgid "Task for the host cancelled succesfully"
1425
+ msgstr ""
1426
+
1289
1427
  msgid "Template ERB"
1290
1428
  msgstr ""
1291
1429
 
@@ -1295,6 +1433,9 @@ msgstr ""
1295
1433
  msgid "Template failed with:"
1296
1434
  msgstr ""
1297
1435
 
1436
+ msgid "Template invocation not found"
1437
+ msgstr ""
1438
+
1298
1439
  msgid "Template name"
1299
1440
  msgstr ""
1300
1441
 
@@ -1316,6 +1457,9 @@ msgstr ""
1316
1457
  msgid "The dynamic query '%{query}' was not resolved yet. The list of hosts to which it would resolve now can be seen %{here}."
1317
1458
  msgstr ""
1318
1459
 
1460
+ msgid "The dynamic query is still being processed. You can {viewTheHosts} targeted by the query."
1461
+ msgstr ""
1462
+
1319
1463
  msgid "The execution interface is used for remote execution"
1320
1464
  msgstr ""
1321
1465
 
@@ -1334,6 +1478,9 @@ msgstr ""
1334
1478
  msgid "The job template to use, parameter is required unless feature was specified"
1335
1479
  msgstr ""
1336
1480
 
1481
+ msgid "The number of invocations is:"
1482
+ msgstr ""
1483
+
1337
1484
  msgid "The only applicable proxy %{proxy_names} is down"
1338
1485
  msgid_plural "All %{count} applicable proxies are down. Tried %{proxy_names}"
1339
1486
  msgstr[0] ""
@@ -1363,6 +1510,9 @@ msgstr ""
1363
1510
  msgid "This template is used to generate the description.<br/>Input values can be used using the syntax %{package}.<br/>You may also include the job category and template<br/>name using %{job_category} and %{template_name}."
1364
1511
  msgstr ""
1365
1512
 
1513
+ msgid "This will open a new tab for each invocation."
1514
+ msgstr ""
1515
+
1366
1516
  msgid "Time in seconds from the start on the remote host after which the job should be killed."
1367
1517
  msgstr ""
1368
1518
 
@@ -1411,12 +1561,18 @@ msgstr ""
1411
1561
  msgid "Trying to abort the job %s."
1412
1562
  msgstr ""
1413
1563
 
1564
+ msgid "Trying to abort the task for the host"
1565
+ msgstr ""
1566
+
1414
1567
  msgid "Trying to cancel the job"
1415
1568
  msgstr ""
1416
1569
 
1417
1570
  msgid "Trying to cancel the job %s."
1418
1571
  msgstr ""
1419
1572
 
1573
+ msgid "Trying to cancel the task for the host"
1574
+ msgstr ""
1575
+
1420
1576
  msgid "Type"
1421
1577
  msgstr "Type"
1422
1578
 
@@ -1441,9 +1597,15 @@ msgstr ""
1441
1597
  msgid "Unable to remove host from known hosts"
1442
1598
  msgstr ""
1443
1599
 
1600
+ msgid "Unable to run job"
1601
+ msgstr ""
1602
+
1444
1603
  msgid "Unable to save template. Correct highlighted errors"
1445
1604
  msgstr ""
1446
1605
 
1606
+ msgid "Unknown"
1607
+ msgstr ""
1608
+
1447
1609
  msgid "Unknown execution status"
1448
1610
  msgstr ""
1449
1611
 
@@ -1546,9 +1708,6 @@ msgstr ""
1546
1708
  msgid "Whether we should sync templates from disk when running db:seed."
1547
1709
  msgstr ""
1548
1710
 
1549
- msgid "Workers pool size"
1550
- msgstr ""
1551
-
1552
1711
  msgid "Yes (override)"
1553
1712
  msgstr ""
1554
1713
 
@@ -1561,6 +1720,9 @@ msgstr "You are not authorised to perform this action."
1561
1720
  msgid "You have %s results to display. Showing first %s results"
1562
1721
  msgstr ""
1563
1722
 
1723
+ msgid "You have more results to display. Showing first %s results"
1724
+ msgstr ""
1725
+
1564
1726
  msgid "add an input set for this template to reference a different template inputs"
1565
1727
  msgstr ""
1566
1728
 
@@ -1576,9 +1738,6 @@ msgstr "documentation"
1576
1738
  msgid "effective user"
1577
1739
  msgstr ""
1578
1740
 
1579
- msgid "error"
1580
- msgstr ""
1581
-
1582
1741
  msgid "error during rendering: %s"
1583
1742
  msgstr ""
1584
1743
 
@@ -1654,6 +1813,9 @@ msgstr ""
1654
1813
  msgid "succeeded"
1655
1814
  msgstr ""
1656
1815
 
1816
+ msgid "task aborted succesfully"
1817
+ msgstr ""
1818
+
1657
1819
  msgid "tasks at a time"
1658
1820
  msgstr ""
1659
1821
 
@@ -1672,5 +1834,8 @@ msgstr ""
1672
1834
  msgid "view host names"
1673
1835
  msgstr ""
1674
1836
 
1837
+ msgid "view the hosts"
1838
+ msgstr ""
1839
+
1675
1840
  msgid "yes"
1676
1841
  msgstr "yes"