foreman_discovery 16.3.6 → 17.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
  3. data/app/controllers/discovered_hosts_controller.rb +24 -35
  4. data/app/controllers/discovery_rules_controller.rb +12 -1
  5. data/app/helpers/discovered_hosts_helper.rb +3 -4
  6. data/app/helpers/discovery_rules_helper.rb +1 -0
  7. data/app/models/discovery_rule.rb +10 -5
  8. data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
  9. data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
  10. data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
  11. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
  12. data/app/views/discovered_hosts/welcome.html.erb +1 -1
  13. data/app/views/discovery_rules/clone.erb +3 -0
  14. data/app/views/discovery_rules/index.html.erb +4 -0
  15. data/app/views/discovery_rules/welcome.html.erb +15 -0
  16. data/config/routes.rb +2 -0
  17. data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
  18. data/lib/foreman_discovery/engine.rb +3 -7
  19. data/lib/foreman_discovery/version.rb +1 -1
  20. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  21. data/locale/ca/foreman_discovery.edit.po +44 -40
  22. data/locale/ca/foreman_discovery.po +36 -9
  23. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  24. data/locale/de/foreman_discovery.edit.po +42 -38
  25. data/locale/de/foreman_discovery.po +45 -18
  26. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  27. data/locale/en/foreman_discovery.edit.po +37 -29
  28. data/locale/en/foreman_discovery.po +31 -4
  29. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/en_GB/foreman_discovery.edit.po +39 -35
  31. data/locale/en_GB/foreman_discovery.po +36 -9
  32. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/es/foreman_discovery.edit.po +42 -38
  34. data/locale/es/foreman_discovery.po +70 -41
  35. data/locale/foreman_discovery.pot +142 -97
  36. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  37. data/locale/fr/foreman_discovery.edit.po +88 -84
  38. data/locale/fr/foreman_discovery.po +76 -49
  39. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  40. data/locale/gl/foreman_discovery.edit.po +42 -38
  41. data/locale/gl/foreman_discovery.po +32 -5
  42. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/it/foreman_discovery.edit.po +42 -38
  44. data/locale/it/foreman_discovery.po +44 -17
  45. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/ja/foreman_discovery.edit.po +74 -70
  47. data/locale/ja/foreman_discovery.po +79 -54
  48. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/ko/foreman_discovery.edit.po +42 -38
  50. data/locale/ko/foreman_discovery.po +43 -16
  51. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  52. data/locale/pt_BR/foreman_discovery.edit.po +42 -38
  53. data/locale/pt_BR/foreman_discovery.po +69 -39
  54. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  55. data/locale/ru/foreman_discovery.edit.po +46 -42
  56. data/locale/ru/foreman_discovery.po +43 -16
  57. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  58. data/locale/sv_SE/foreman_discovery.edit.po +42 -38
  59. data/locale/sv_SE/foreman_discovery.po +34 -7
  60. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  61. data/locale/zh_CN/foreman_discovery.edit.po +90 -86
  62. data/locale/zh_CN/foreman_discovery.po +114 -90
  63. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  64. data/locale/zh_TW/foreman_discovery.edit.po +42 -38
  65. data/locale/zh_TW/foreman_discovery.po +43 -16
  66. data/package.json +6 -6
  67. data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
  68. data/test/functional/discovery_rules_controller_test.rb +6 -1
  69. data/test/integration/discovered_hosts_test.rb +53 -5
  70. data/test/test_helper_discovery.rb +5 -0
  71. data/test/unit/discovery_rule_test.rb +24 -2
  72. data/test/unit/fact_to_category_resolver_test.rb +41 -0
  73. data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
  74. data/test/unit/ui_notifications/new_host_test.rb +3 -3
  75. data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
  76. data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
  77. data/webpack/__mocks__/foremanReact/common/index.js +5 -0
  78. data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
  79. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
  80. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
  81. data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
  82. data/webpack/index.js +9 -8
  83. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
  84. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
  85. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
  86. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
  87. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
  88. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
  89. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
  90. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
  91. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
  92. data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
  93. data/webpack/src/reducers.js +0 -2
  94. metadata +31 -9
@@ -5,9 +5,9 @@
5
5
  # Translators:
6
6
  msgid ""
7
7
  msgstr ""
8
- "Project-Id-Version: foreman_discovery 16.2.0\n"
8
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2020-05-26 17:21+0000\n"
10
+ "PO-Revision-Date: 2021-01-25 08:35+0000\n"
11
11
  "Last-Translator: Transifex Bot <>\n"
12
12
  "Language-Team: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
13
13
  "MIME-Version: 1.0\n"
@@ -19,9 +19,6 @@ msgstr ""
19
19
  msgid "%s - The following hosts are about to be changed"
20
20
  msgstr "%s - 다음 호스트는 즉시 변경됩니다 "
21
21
 
22
- msgid "%s ago"
23
- msgstr "%s 전 "
24
-
25
22
  msgid "%s discovered hosts were provisioned"
26
23
  msgstr "%s개의 검색된 호스트를 프로비저닝했습니다."
27
24
 
@@ -32,7 +29,7 @@ msgid "A summary of discovered hosts"
32
29
  msgstr ""
33
30
 
34
31
  msgid "Action with sub plans"
35
- msgstr ""
32
+ msgstr "하위 계획이 있는 작업"
36
33
 
37
34
  msgid "Actions"
38
35
  msgstr "동작 "
@@ -79,6 +76,12 @@ msgstr ""
79
76
  msgid "Clean all reported facts during provisioning (except discovery facts)"
80
77
  msgstr ""
81
78
 
79
+ msgid "Clone"
80
+ msgstr ""
81
+
82
+ msgid "Clone %s"
83
+ msgstr ""
84
+
82
85
  msgid "Collapse All"
83
86
  msgstr "모두 축소"
84
87
 
@@ -144,9 +147,15 @@ msgstr[1] ""
144
147
  msgid "Discovered Hosts"
145
148
  msgstr ""
146
149
 
150
+ msgid "Discovered Rules"
151
+ msgstr ""
152
+
147
153
  msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
148
154
  msgstr ""
149
155
 
156
+ msgid "Discovered host reported from unknown subnet, communication will not be proxied."
157
+ msgstr ""
158
+
150
159
  msgid "Discovered host: %s"
151
160
  msgstr "검색된 호스트: %s"
152
161
 
@@ -159,6 +168,9 @@ msgstr "현재 검색된 호스트를 재부팅하고 있습니다."
159
168
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
160
169
  msgstr ""
161
170
 
171
+ msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
172
+ msgstr ""
173
+
162
174
  msgid "Discovered hosts summary"
163
175
  msgstr ""
164
176
 
@@ -225,6 +237,9 @@ msgstr "활성화"
225
237
  msgid "Enable rule '%s'?"
226
238
  msgstr ""
227
239
 
240
+ msgid "Error message goes here"
241
+ msgstr ""
242
+
228
243
  msgid "Error on existing NIC"
229
244
  msgstr ""
230
245
 
@@ -279,6 +294,9 @@ msgstr "%s에 대한 팩트를 새로고침하는데 실패했습니다 "
279
294
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
280
295
  msgstr "%{error_message} 오류가 발생하여 %{hostname}의 팩트를 새로 고치지 못했습니다."
281
296
 
297
+ msgid "For more information please see "
298
+ msgstr ""
299
+
282
300
  msgid "Force DNS"
283
301
  msgstr ""
284
302
 
@@ -303,6 +321,9 @@ msgstr ""
303
321
  msgid "Host"
304
322
  msgstr "호스트"
305
323
 
324
+ msgid "Host %s has been dicovered"
325
+ msgstr ""
326
+
306
327
  msgid "Host %{host} was provisioned with rule %{rule}"
307
328
  msgstr "호스트 %{host}은/는 %{rule}으(로) 프로비저닝됩니다 "
308
329
 
@@ -323,10 +344,10 @@ msgid "Host of type %s can not be rebooted"
323
344
  msgstr "호스트 유형 %s은(는) 재부팅할 수 없습니다 "
324
345
 
325
346
  msgid "Host's owner type"
326
- msgstr ""
347
+ msgstr "호스트의 소유자 유형"
327
348
 
328
349
  msgid "Host's parameters (array or indexed hash)"
329
- msgstr ""
350
+ msgstr "호스트의 매개 변수(배열 또는 인덱싱된 해시)"
330
351
 
331
352
  msgid "Hostname facts"
332
353
  msgstr ""
@@ -377,10 +398,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
377
398
  msgstr "이미지 API에서 '%{body}'이(가) 포함된 HTTP/%{code}을(를) 반환했습니다."
378
399
 
379
400
  msgid "Import Puppet classes"
380
- msgstr ""
401
+ msgstr "Puppet 클래스 가져오기"
381
402
 
382
403
  msgid "Import facts"
383
- msgstr ""
404
+ msgstr "팩트 불러오기"
384
405
 
385
406
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
386
407
  msgstr ""
@@ -470,7 +491,7 @@ msgid "Name"
470
491
  msgstr "이름 "
471
492
 
472
493
  msgid "Name of the parameter"
473
- msgstr ""
494
+ msgstr "매개 변수의 이름"
474
495
 
475
496
  msgid "Network"
476
497
  msgstr "네트워크"
@@ -481,6 +502,9 @@ msgstr ""
481
502
  msgid "New Discovery Rule"
482
503
  msgstr "새 검색 규칙 "
483
504
 
505
+ msgid "New hosts"
506
+ msgstr ""
507
+
484
508
  msgid "New in the last 24 hours"
485
509
  msgstr "지난 24시간 이내의 신규 항목"
486
510
 
@@ -533,7 +557,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
533
557
  msgstr ""
534
558
 
535
559
  msgid "Parameter value"
536
- msgstr ""
560
+ msgstr "매개 변수 값"
537
561
 
538
562
  msgid "Please Confirm"
539
563
  msgstr "확인해 주십시오 "
@@ -599,7 +623,7 @@ msgid "Reloading kernel on %s"
599
623
  msgstr "%s에서 커널을 다시 로드하는 중"
600
624
 
601
625
  msgid "Remote action:"
602
- msgstr ""
626
+ msgstr "원격 작업:"
603
627
 
604
628
  msgid "Reported in the last 7 days"
605
629
  msgstr "지난 7일 이내에 보고됨"
@@ -727,6 +751,9 @@ msgstr "공백을 포함할 수 없습니다. "
727
751
  msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
728
752
  msgstr "해당 호스트에 읽기 좋은 호스트 이름을 할당하기 위해 패턴을 정의합니다"
729
753
 
754
+ msgid "documentation"
755
+ msgstr ""
756
+
730
757
  msgid "enables to limit maximum amount of provisioned hosts per rule"
731
758
  msgstr "규칙 당 프로비저닝된 호스트의 최대 수량을 제한할 수 있게 합니다"
732
759
 
@@ -776,13 +803,13 @@ msgid "represents rule name shown to the users"
776
803
  msgstr "사용자에게 표시되는 규칙 이름을 표시합니다"
777
804
 
778
805
  msgid "required if host is managed and custom partition has not been defined"
779
- msgstr ""
806
+ msgstr "호스트가 관리되고 있으며 사용자 정의 파티션이 정의되고 있지 않은 경우에 필요합니다 "
780
807
 
781
808
  msgid "required if host is managed and value is not inherited from host group"
782
- msgstr ""
809
+ msgstr "호스트가 관리되고 있으며 값이 호스트 그룹에서 상속되지 않은 경우에 필요합니다 "
783
810
 
784
811
  msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
785
- msgstr ""
812
+ msgstr "이미지 기반의 프로비저닝이 아니고 호스트가 관리되어 값이 호스트 그룹에서 상속되지 않은 경우에 필요합니다 "
786
813
 
787
814
  msgid "required if value is not inherited from host group or default password in settings"
788
815
  msgstr "값이 호스트 그룹이나 설정의 기본값 암호에서 상속되지 않은 경우에 필요합니다 "
@@ -13,11 +13,11 @@
13
13
  # Valeria S Silva <valeriassilva@live.com>, 2015
14
14
  msgid ""
15
15
  msgstr ""
16
- "Project-Id-Version: foreman_discovery 16.3.4\n"
16
+ "Project-Id-Version: foreman_discovery 17.1.0\n"
17
17
  "Report-Msgid-Bugs-To: \n"
18
- "POT-Creation-Date: 2021-05-03 08:46+0200\n"
19
- "PO-Revision-Date: 2021-01-25 08:35+0000\n"
20
- "Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
18
+ "POT-Creation-Date: 2021-09-20 17:25+0200\n"
19
+ "PO-Revision-Date: 2021-05-03 08:29+0000\n"
20
+ "Last-Translator: Flamarion Jorge <jorge.flamarion@gmail.com>\n"
21
21
  "Language-Team: Portuguese (Brazil) (http://www.transifex.com/foreman/foreman/l"
22
22
  "anguage/pt_BR/)\n"
23
23
  "MIME-Version: 1.0\n"
@@ -126,7 +126,7 @@ msgstr "fatos com hashes pra o host com conjunto mínimo de fatos: discovery_boo
126
126
  msgid "Execute rules against a discovered host"
127
127
  msgstr "Executar regras em relação a um host descoberto"
128
128
 
129
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
129
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
130
130
  msgid "Host %{host} was provisioned with rule %{rule}"
131
131
  msgstr "Host %{host} foi provisionado com a regra %{rule}"
132
132
 
@@ -134,7 +134,7 @@ msgstr "Host %{host} foi provisionado com a regra %{rule}"
134
134
  msgid "Unable to provision %{host}: %{errors}"
135
135
  msgstr "Não foi possível provisionar %{host}: %{errors}"
136
136
 
137
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
137
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
138
138
  msgid "No rule found for host %s"
139
139
  msgstr "Nenhuma regra encontrada para o host %s"
140
140
 
@@ -142,11 +142,11 @@ msgstr "Nenhuma regra encontrada para o host %s"
142
142
  msgid "Execute rules against all currently discovered hosts"
143
143
  msgstr "Executar regras em relação a todos os hosts descobertos atualmente"
144
144
 
145
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
145
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
146
146
  msgid "Errors during auto provisioning: %s"
147
147
  msgstr "Erros durante o provisionamento automático: %s"
148
148
 
149
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
149
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
150
150
  msgid "No discovered hosts to provision"
151
151
  msgstr "Nenhum host descoberto para provisionamento"
152
152
 
@@ -166,7 +166,7 @@ msgstr "Reinicializando um host descoberto"
166
166
  msgid "Rebooting all discovered hosts"
167
167
  msgstr "Reinicializando todos os hosts descobertos"
168
168
 
169
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
169
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
170
170
  msgid "Discovered hosts are rebooting now"
171
171
  msgstr "Hosts descobertos estão reinicializando agora"
172
172
 
@@ -246,75 +246,75 @@ msgstr "Erros durante a reinicialização: %s"
246
246
  msgid "No discovered hosts to reboot"
247
247
  msgstr "Nenhum host descoberto para reinicialização"
248
248
 
249
- #: ../app/controllers/discovered_hosts_controller.rb:60
249
+ #: ../app/controllers/discovered_hosts_controller.rb:63
250
250
  msgid "Successfully provisioned %s"
251
251
  msgstr "%s provisionado com êxito"
252
252
 
253
- #: ../app/controllers/discovered_hosts_controller.rb:94
253
+ #: ../app/controllers/discovered_hosts_controller.rb:97
254
254
  msgid "Facts refreshed for %s"
255
255
  msgstr "Fatos atualizados para %s"
256
256
 
257
- #: ../app/controllers/discovered_hosts_controller.rb:96
257
+ #: ../app/controllers/discovered_hosts_controller.rb:99
258
258
  msgid "Failed to refresh facts for %s"
259
259
  msgstr "Falha ao atualizar fatos para %s"
260
260
 
261
- #: ../app/controllers/discovered_hosts_controller.rb:99
261
+ #: ../app/controllers/discovered_hosts_controller.rb:102
262
262
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
263
263
  msgstr "Falha ao atualizar fatos para %{hostname} com erro %{error_message}"
264
264
 
265
- #: ../app/controllers/discovered_hosts_controller.rb:106
265
+ #: ../app/controllers/discovered_hosts_controller.rb:109
266
266
  msgid "Host of type %s can not be rebooted"
267
267
  msgstr "Tipo de host %s não pode ser reinicializado"
268
268
 
269
- #: ../app/controllers/discovered_hosts_controller.rb:110
269
+ #: ../app/controllers/discovered_hosts_controller.rb:113
270
270
  msgid "Rebooting host %s"
271
271
  msgstr "Reinicializando host %s"
272
272
 
273
- #: ../app/controllers/discovered_hosts_controller.rb:112
273
+ #: ../app/controllers/discovered_hosts_controller.rb:115
274
274
  msgid "Failed to reboot host %s"
275
275
  msgstr "Falha ao reinicializar host %s"
276
276
 
277
- #: ../app/controllers/discovered_hosts_controller.rb:115
277
+ #: ../app/controllers/discovered_hosts_controller.rb:118
278
278
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
279
279
  msgstr "Falha ao reinicializar host %{hostname} com erro %{error_message}"
280
280
 
281
- #: ../app/controllers/discovered_hosts_controller.rb:129
281
+ #: ../app/controllers/discovered_hosts_controller.rb:132
282
282
  msgid "Failed to reboot hosts with error %s"
283
283
  msgstr "Falha ao reinicializar hosts com erro %s"
284
284
 
285
- #: ../app/controllers/discovered_hosts_controller.rb:147
285
+ #: ../app/controllers/discovered_hosts_controller.rb:150
286
286
  msgid "Destroyed selected hosts"
287
287
  msgstr "Hosts selecionados foram destruídos"
288
288
 
289
- #: ../app/controllers/discovered_hosts_controller.rb:149
289
+ #: ../app/controllers/discovered_hosts_controller.rb:152
290
290
  msgid "The following hosts were not deleted: %s"
291
291
  msgstr "Os hosts a seguir não foram removidos: %s"
292
292
 
293
- #: ../app/controllers/discovered_hosts_controller.rb:161
293
+ #: ../app/controllers/discovered_hosts_controller.rb:164
294
294
  msgid "Failed to auto provision host %s: %s"
295
295
  msgstr "Falha ao provisionar host automaticamente %s: %s"
296
296
 
297
- #: ../app/controllers/discovered_hosts_controller.rb:189
297
+ #: ../app/controllers/discovered_hosts_controller.rb:192
298
298
  msgid "Discovered hosts are provisioning now"
299
299
  msgstr "Hosts descobertos estão sendo provisionados agora"
300
300
 
301
- #: ../app/controllers/discovered_hosts_controller.rb:270
301
+ #: ../app/controllers/discovered_hosts_controller.rb:277
302
302
  msgid "Discovered host reported from unknown subnet, communication will not be proxied."
303
303
  msgstr ""
304
304
 
305
- #: ../app/controllers/discovered_hosts_controller.rb:275
305
+ #: ../app/controllers/discovered_hosts_controller.rb:282
306
306
  msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
307
307
  msgstr ""
308
308
 
309
- #: ../app/controllers/discovered_hosts_controller.rb:289
309
+ #: ../app/controllers/discovered_hosts_controller.rb:296
310
310
  msgid "No hosts were found with that id or name"
311
311
  msgstr "Nenhum host foi encontrado com o id ou nome"
312
312
 
313
- #: ../app/controllers/discovered_hosts_controller.rb:293
313
+ #: ../app/controllers/discovered_hosts_controller.rb:300
314
314
  msgid "No hosts selected"
315
315
  msgstr "Não foi selecionado nenhum host"
316
316
 
317
- #: ../app/controllers/discovered_hosts_controller.rb:299
317
+ #: ../app/controllers/discovered_hosts_controller.rb:306
318
318
  msgid "Something went wrong while selecting hosts - %s"
319
319
  msgstr "Ocorreu um erro ao selecionar hosts - %s"
320
320
 
@@ -412,7 +412,7 @@ msgstr "Habilitar regra '%s'?"
412
412
 
413
413
  #: ../app/helpers/discovery_rules_helper.rb:33
414
414
  msgid "Clone"
415
- msgstr ""
415
+ msgstr "Clonar"
416
416
 
417
417
  #: ../app/helpers/discovery_rules_helper.rb:34
418
418
  msgid "Delete rule '%s'?"
@@ -478,23 +478,23 @@ msgstr "Fatos inválidos: o hash não contém um valor válido para nenhum dos f
478
478
  msgid "Facts could not be imported"
479
479
  msgstr "Fatos não podem ser importados"
480
480
 
481
- #: ../app/models/host/discovered.rb:146
481
+ #: ../app/models/host/discovered.rb:155
482
482
  msgid "Could not get facts from proxy %{url}: %{error}"
483
483
  msgstr "Não foi possível obter fatos do proxy %{url}: %{error}"
484
484
 
485
- #: ../app/models/host/discovered.rb:160
485
+ #: ../app/models/host/discovered.rb:173
486
486
  msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
487
487
  msgstr "Não foi possível realizar a reinicialização em %{name} (%{url}): %{msg}"
488
488
 
489
- #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
489
+ #: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
490
490
  msgid "Unable to perform %{action} on %{ips}"
491
491
  msgstr ""
492
492
 
493
- #: ../app/models/host/discovered.rb:179
493
+ #: ../app/models/host/discovered.rb:196
494
494
  msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
495
495
  msgstr "Não foi possível executar kexec em %{name} (%{url}): %{msg}"
496
496
 
497
- #: ../app/models/host/discovered.rb:203
497
+ #: ../app/models/host/discovered.rb:220
498
498
  msgid "Invalid hostname: Could not normalize the hostname"
499
499
  msgstr "Nome de host inválido: não foi possível normalizar o nome do host"
500
500
 
@@ -702,6 +702,14 @@ msgstr "Padrão de nomenclatura de nome de host de descoberta"
702
702
  msgid "Type of name generator"
703
703
  msgstr "Tipo de gerador de nomes"
704
704
 
705
+ #: ../app/models/setting/discovered.rb:40
706
+ msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
707
+ msgstr ""
708
+
709
+ #: ../app/models/setting/discovered.rb:40
710
+ msgid "Prefer IPv6"
711
+ msgstr ""
712
+
705
713
  #: ../app/services/foreman_discovery/fact_parser.rb:4
706
714
  msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
707
715
  msgstr "O analisador de fatos de descoberta não funciona com o host '%{host}' de não descoberta"
@@ -982,7 +990,7 @@ msgstr "Os nomes de host não devem iniciar com números. Uma boa abordagem é u
982
990
 
983
991
  #: ../app/views/discovery_rules/clone.erb:1
984
992
  msgid "Clone %s"
985
- msgstr ""
993
+ msgstr "Clonar %s"
986
994
 
987
995
  #: ../app/views/discovery_rules/edit.html.erb:1
988
996
  msgid "Edit %s"
@@ -1095,7 +1103,3 @@ msgstr "Importar fatos"
1095
1103
  #: action_names.rb:5
1096
1104
  msgid "Action with sub plans"
1097
1105
  msgstr "Ação com subplanos "
1098
-
1099
- #: ../app/helpers/discovered_hosts_helper.rb:10
1100
- #~ msgid "%s ago"
1101
- #~ msgstr "%s atrás"