foreman_discovery 16.3.1 → 17.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
- data/app/controllers/discovered_hosts_controller.rb +24 -35
- data/app/controllers/discovery_rules_controller.rb +12 -1
- data/app/helpers/discovered_hosts_helper.rb +6 -1
- data/app/helpers/discovery_rules_helper.rb +1 -0
- data/app/models/discovery_rule.rb +10 -5
- data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
- data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
- data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
- data/app/views/discovered_hosts/welcome.html.erb +1 -2
- data/app/views/discovery_rules/clone.erb +3 -0
- data/app/views/discovery_rules/index.html.erb +4 -0
- data/app/views/discovery_rules/welcome.html.erb +15 -0
- data/app/views/foreman_discovery/debian_kexec.erb +1 -1
- data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
- data/config/routes.rb +2 -0
- data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
- data/lib/foreman_discovery/engine.rb +3 -7
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ca/foreman_discovery.edit.po +136 -98
- data/locale/ca/foreman_discovery.po +36 -9
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +148 -112
- data/locale/de/foreman_discovery.po +45 -18
- data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en/foreman_discovery.edit.po +127 -91
- data/locale/en/foreman_discovery.po +31 -4
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +139 -109
- data/locale/en_GB/foreman_discovery.po +36 -9
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +172 -140
- data/locale/es/foreman_discovery.po +70 -41
- data/locale/foreman_discovery.pot +142 -97
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +179 -147
- data/locale/fr/foreman_discovery.po +76 -49
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.edit.po +133 -92
- data/locale/gl/foreman_discovery.po +32 -5
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +147 -106
- data/locale/it/foreman_discovery.po +44 -17
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +182 -152
- data/locale/ja/foreman_discovery.po +79 -54
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +146 -105
- data/locale/ko/foreman_discovery.po +43 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +171 -136
- data/locale/pt_BR/foreman_discovery.po +69 -39
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +147 -106
- data/locale/ru/foreman_discovery.po +43 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +135 -94
- data/locale/sv_SE/foreman_discovery.po +34 -7
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +217 -188
- data/locale/zh_CN/foreman_discovery.po +114 -90
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +146 -105
- data/locale/zh_TW/foreman_discovery.po +43 -16
- data/package.json +7 -7
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
- data/test/functional/discovery_rules_controller_test.rb +6 -1
- data/test/integration/discovered_hosts_test.rb +53 -5
- data/test/test_helper_discovery.rb +5 -0
- data/test/unit/discovery_rule_test.rb +24 -2
- data/test/unit/fact_to_category_resolver_test.rb +41 -0
- data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
- data/test/unit/ui_notifications/new_host_test.rb +3 -3
- data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
- data/webpack/__mocks__/foremanReact/common/index.js +5 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
- data/webpack/index.js +9 -8
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
- data/webpack/src/reducers.js +0 -2
- metadata +39 -17
@@ -5,9 +5,9 @@
|
|
5
5
|
# Translators:
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_discovery 16.
|
8
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"PO-Revision-Date:
|
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 "값이 호스트 그룹이나 설정의 기본값 암호에서 상속되지 않은 경우에 필요합니다 "
|
Binary file
|
@@ -4,16 +4,20 @@
|
|
4
4
|
#
|
5
5
|
# Translators:
|
6
6
|
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2014
|
7
|
+
# 0868a4d1af5275b3f70b0a6dac4c99a4, 2014
|
8
|
+
# Junior Alvim <alvin@intechne.com.br>, 2014
|
7
9
|
# Junior Alvim <alvin@intechne.com.br>, 2014
|
8
10
|
# Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 2014
|
11
|
+
# Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 2014
|
9
12
|
# Luiz Henrique Vasconcelos <luizvasconceloss@yahoo.com.br>, 2014-2015
|
10
13
|
# Valeria S Silva <valeriassilva@live.com>, 2015
|
11
14
|
msgid ""
|
12
15
|
msgstr ""
|
13
|
-
"Project-Id-Version: foreman_discovery 16.
|
16
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
14
17
|
"Report-Msgid-Bugs-To: \n"
|
15
|
-
"
|
16
|
-
"
|
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"
|
17
21
|
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/foreman/foreman/l"
|
18
22
|
"anguage/pt_BR/)\n"
|
19
23
|
"MIME-Version: 1.0\n"
|
@@ -24,7 +28,7 @@ msgstr ""
|
|
24
28
|
|
25
29
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:16
|
26
30
|
msgid "List all discovered hosts"
|
27
|
-
msgstr "Listar todos os hosts
|
31
|
+
msgstr "Listar todos os hosts decobertos"
|
28
32
|
|
29
33
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
|
30
34
|
msgid "filter results"
|
@@ -60,7 +64,7 @@ msgstr "Provisionar um host descoberto"
|
|
60
64
|
|
61
65
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
|
62
66
|
msgid "required if host is managed and value is not inherited from host group"
|
63
|
-
msgstr ""
|
67
|
+
msgstr "necessário se o host é gerenciado e valor não é herdado do grupo de host"
|
64
68
|
|
65
69
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
|
66
70
|
msgid "not required if using a subnet with DHCP proxy"
|
@@ -72,31 +76,31 @@ msgstr "não é obrigatório se for uma máquina virtual"
|
|
72
76
|
|
73
77
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
|
74
78
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
75
|
-
msgstr ""
|
79
|
+
msgstr "solicitado se o provisionamento não for baseado em imagem, o host for gerenciado e o valor não for herdado do grupo de host"
|
76
80
|
|
77
81
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
|
78
82
|
msgid "required if host is managed and custom partition has not been defined"
|
79
|
-
msgstr ""
|
83
|
+
msgstr "requerido se o host é gerenciado e uma partição customizada não foi definida"
|
80
84
|
|
81
85
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
|
82
86
|
msgid "Host's owner type"
|
83
|
-
msgstr ""
|
87
|
+
msgstr "Tipo de proprietário do host"
|
84
88
|
|
85
89
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
|
86
90
|
msgid "Host's parameters (array or indexed hash)"
|
87
|
-
msgstr ""
|
91
|
+
msgstr "Parâmetros do host (matriz ou hash indexado)"
|
88
92
|
|
89
93
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
|
90
94
|
msgid "Name of the parameter"
|
91
|
-
msgstr ""
|
95
|
+
msgstr "Nome do parâmetro"
|
92
96
|
|
93
97
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
|
94
98
|
msgid "Parameter value"
|
95
|
-
msgstr ""
|
99
|
+
msgstr "Valor do parâmetro"
|
96
100
|
|
97
101
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
|
98
102
|
msgid "Type of value"
|
99
|
-
msgstr ""
|
103
|
+
msgstr "Tipo de valor"
|
100
104
|
|
101
105
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
|
102
106
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
@@ -118,51 +122,51 @@ msgstr "Enviar fatos para um host, criando o host se necessário"
|
|
118
122
|
msgid "hash containing facts for the host with minimum set of facts: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in case primary interface is named eth0)"
|
119
123
|
msgstr "fatos com hashes pra o host com conjunto mínimo de fatos: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (exemplo caso a interface primária tenha como nome eth0)"
|
120
124
|
|
121
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
125
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
122
126
|
msgid "Execute rules against a discovered host"
|
123
127
|
msgstr "Executar regras em relação a um host descoberto"
|
124
128
|
|
125
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
129
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
|
126
130
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
127
131
|
msgstr "Host %{host} foi provisionado com a regra %{rule}"
|
128
132
|
|
129
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
133
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
130
134
|
msgid "Unable to provision %{host}: %{errors}"
|
131
135
|
msgstr "Não foi possível provisionar %{host}: %{errors}"
|
132
136
|
|
133
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
137
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
|
134
138
|
msgid "No rule found for host %s"
|
135
139
|
msgstr "Nenhuma regra encontrada para o host %s"
|
136
140
|
|
137
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
141
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
138
142
|
msgid "Execute rules against all currently discovered hosts"
|
139
143
|
msgstr "Executar regras em relação a todos os hosts descobertos atualmente"
|
140
144
|
|
141
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
145
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
|
142
146
|
msgid "Errors during auto provisioning: %s"
|
143
147
|
msgstr "Erros durante o provisionamento automático: %s"
|
144
148
|
|
145
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
149
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
|
146
150
|
msgid "No discovered hosts to provision"
|
147
151
|
msgstr "Nenhum host descoberto para provisionamento"
|
148
152
|
|
149
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
153
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
150
154
|
msgid "%s discovered hosts were provisioned"
|
151
155
|
msgstr "%s hosts descobertos foram provisionados"
|
152
156
|
|
153
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
157
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
154
158
|
msgid "Refreshing the facts of a discovered host"
|
155
159
|
msgstr "Atualizando os fatos de um host descoberto"
|
156
160
|
|
157
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
161
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
158
162
|
msgid "Rebooting a discovered host"
|
159
163
|
msgstr "Reinicializando um host descoberto"
|
160
164
|
|
161
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
165
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
162
166
|
msgid "Rebooting all discovered hosts"
|
163
167
|
msgstr "Reinicializando todos os hosts descobertos"
|
164
168
|
|
165
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
169
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
|
166
170
|
msgid "Discovered hosts are rebooting now"
|
167
171
|
msgstr "Hosts descobertos estão reinicializando agora"
|
168
172
|
|
@@ -242,133 +246,109 @@ msgstr "Erros durante a reinicialização: %s"
|
|
242
246
|
msgid "No discovered hosts to reboot"
|
243
247
|
msgstr "Nenhum host descoberto para reinicialização"
|
244
248
|
|
245
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
249
|
+
#: ../app/controllers/discovered_hosts_controller.rb:60
|
246
250
|
msgid "Successfully provisioned %s"
|
247
251
|
msgstr "%s provisionado com êxito"
|
248
252
|
|
249
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
253
|
+
#: ../app/controllers/discovered_hosts_controller.rb:94
|
250
254
|
msgid "Facts refreshed for %s"
|
251
255
|
msgstr "Fatos atualizados para %s"
|
252
256
|
|
253
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
257
|
+
#: ../app/controllers/discovered_hosts_controller.rb:96
|
254
258
|
msgid "Failed to refresh facts for %s"
|
255
259
|
msgstr "Falha ao atualizar fatos para %s"
|
256
260
|
|
257
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
261
|
+
#: ../app/controllers/discovered_hosts_controller.rb:99
|
258
262
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
259
263
|
msgstr "Falha ao atualizar fatos para %{hostname} com erro %{error_message}"
|
260
264
|
|
261
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
265
|
+
#: ../app/controllers/discovered_hosts_controller.rb:106
|
262
266
|
msgid "Host of type %s can not be rebooted"
|
263
267
|
msgstr "Tipo de host %s não pode ser reinicializado"
|
264
268
|
|
265
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
269
|
+
#: ../app/controllers/discovered_hosts_controller.rb:110
|
266
270
|
msgid "Rebooting host %s"
|
267
271
|
msgstr "Reinicializando host %s"
|
268
272
|
|
269
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
273
|
+
#: ../app/controllers/discovered_hosts_controller.rb:112
|
270
274
|
msgid "Failed to reboot host %s"
|
271
275
|
msgstr "Falha ao reinicializar host %s"
|
272
276
|
|
273
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
277
|
+
#: ../app/controllers/discovered_hosts_controller.rb:115
|
274
278
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
275
279
|
msgstr "Falha ao reinicializar host %{hostname} com erro %{error_message}"
|
276
280
|
|
277
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
281
|
+
#: ../app/controllers/discovered_hosts_controller.rb:129
|
278
282
|
msgid "Failed to reboot hosts with error %s"
|
279
283
|
msgstr "Falha ao reinicializar hosts com erro %s"
|
280
284
|
|
281
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
285
|
+
#: ../app/controllers/discovered_hosts_controller.rb:147
|
282
286
|
msgid "Destroyed selected hosts"
|
283
287
|
msgstr "Hosts selecionados foram destruídos"
|
284
288
|
|
285
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
289
|
+
#: ../app/controllers/discovered_hosts_controller.rb:149
|
286
290
|
msgid "The following hosts were not deleted: %s"
|
287
291
|
msgstr "Os hosts a seguir não foram removidos: %s"
|
288
292
|
|
289
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
293
|
+
#: ../app/controllers/discovered_hosts_controller.rb:161
|
290
294
|
msgid "Failed to auto provision host %s: %s"
|
291
295
|
msgstr "Falha ao provisionar host automaticamente %s: %s"
|
292
296
|
|
293
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
297
|
+
#: ../app/controllers/discovered_hosts_controller.rb:189
|
294
298
|
msgid "Discovered hosts are provisioning now"
|
295
299
|
msgstr "Hosts descobertos estão sendo provisionados agora"
|
296
300
|
|
297
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
298
|
-
msgid "
|
299
|
-
msgstr "
|
300
|
-
|
301
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
302
|
-
msgid "Storage"
|
303
|
-
msgstr "Armazenamento"
|
304
|
-
|
305
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
306
|
-
msgid "Hardware"
|
307
|
-
msgstr "Hardware"
|
308
|
-
|
309
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
310
|
-
msgid "Network"
|
311
|
-
msgstr "Rede"
|
312
|
-
|
313
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
314
|
-
msgid "Software"
|
315
|
-
msgstr "Software"
|
316
|
-
|
317
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
318
|
-
msgid "IPMI"
|
319
|
-
msgstr "IPMI"
|
301
|
+
#: ../app/controllers/discovered_hosts_controller.rb:270
|
302
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
303
|
+
msgstr ""
|
320
304
|
|
321
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
322
|
-
msgid "
|
323
|
-
msgstr "
|
305
|
+
#: ../app/controllers/discovered_hosts_controller.rb:275
|
306
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
307
|
+
msgstr ""
|
324
308
|
|
325
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
309
|
+
#: ../app/controllers/discovered_hosts_controller.rb:289
|
326
310
|
msgid "No hosts were found with that id or name"
|
327
311
|
msgstr "Nenhum host foi encontrado com o id ou nome"
|
328
312
|
|
329
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
313
|
+
#: ../app/controllers/discovered_hosts_controller.rb:293
|
330
314
|
msgid "No hosts selected"
|
331
315
|
msgstr "Não foi selecionado nenhum host"
|
332
316
|
|
333
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
317
|
+
#: ../app/controllers/discovered_hosts_controller.rb:299
|
334
318
|
msgid "Something went wrong while selecting hosts - %s"
|
335
319
|
msgstr "Ocorreu um erro ao selecionar hosts - %s"
|
336
320
|
|
337
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
321
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
338
322
|
msgid "Rule enabled"
|
339
323
|
msgstr "Regra habiitada"
|
340
324
|
|
341
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
325
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
342
326
|
msgid "Rule disabled"
|
343
327
|
msgstr "Regra desabilitada"
|
344
328
|
|
345
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
346
|
-
msgid "%s ago"
|
347
|
-
msgstr "%s atrás"
|
348
|
-
|
349
|
-
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
|
329
|
+
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
350
330
|
msgid "Auto Provision"
|
351
331
|
msgstr "Provisionamento automático"
|
352
332
|
|
353
|
-
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
333
|
+
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:41
|
354
334
|
msgid "Refresh facts"
|
355
335
|
msgstr "Atualizar fatos"
|
356
336
|
|
357
|
-
#: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
337
|
+
#: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:42
|
358
338
|
msgid "Reboot"
|
359
339
|
msgstr "Reiniciar"
|
360
340
|
|
361
341
|
#: ../app/helpers/discovered_hosts_helper.rb:19
|
362
342
|
msgid "Back"
|
363
|
-
msgstr "
|
343
|
+
msgstr "Retornar"
|
364
344
|
|
365
345
|
#: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
|
366
346
|
msgid "Select Action"
|
367
347
|
msgstr "Selecionar Ação"
|
368
348
|
|
369
|
-
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
349
|
+
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
|
370
350
|
msgid "Delete %s?"
|
371
|
-
msgstr "Remover %s
|
351
|
+
msgstr "Remover %s"
|
372
352
|
|
373
353
|
#: ../app/helpers/discovered_hosts_helper.rb:31
|
374
354
|
msgid "Assign Organization"
|
@@ -380,7 +360,7 @@ msgstr "Atribuir Local"
|
|
380
360
|
|
381
361
|
#: ../app/helpers/discovered_hosts_helper.rb:33
|
382
362
|
msgid "Delete"
|
383
|
-
msgstr "
|
363
|
+
msgstr "Excluir"
|
384
364
|
|
385
365
|
#: ../app/helpers/discovered_hosts_helper.rb:37
|
386
366
|
msgid "%s - The following hosts are about to be changed"
|
@@ -388,7 +368,7 @@ msgstr "%s - Os hosts a seguir devem ser modificados em breve"
|
|
388
368
|
|
389
369
|
#: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
|
390
370
|
msgid "N/A"
|
391
|
-
msgstr "N/
|
371
|
+
msgstr "N/D"
|
392
372
|
|
393
373
|
#: ../app/helpers/discovered_hosts_helper.rb:58
|
394
374
|
msgid "New in the last 24 hours"
|
@@ -404,7 +384,7 @@ msgstr "Relatado nos últimos sete dias"
|
|
404
384
|
|
405
385
|
#: ../app/helpers/discovered_hosts_helper.rb:90
|
406
386
|
msgid "Provision"
|
407
|
-
msgstr "
|
387
|
+
msgstr "Provisão"
|
408
388
|
|
409
389
|
#: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:8 ../lib/foreman_discovery/engine.rb:159 ../lib/foreman_discovery/engine.rb:174
|
410
390
|
msgid "Discovered Hosts"
|
@@ -431,6 +411,10 @@ msgid "Enable rule '%s'?"
|
|
431
411
|
msgstr "Habilitar regra '%s'?"
|
432
412
|
|
433
413
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
414
|
+
msgid "Clone"
|
415
|
+
msgstr ""
|
416
|
+
|
417
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
434
418
|
msgid "Delete rule '%s'?"
|
435
419
|
msgstr "Excluir regra '%s'?"
|
436
420
|
|
@@ -454,17 +438,17 @@ msgstr "deve iniciar com uma letra ou ERB."
|
|
454
438
|
msgid "must be present."
|
455
439
|
msgstr "deve estar presente."
|
456
440
|
|
457
|
-
#: ../app/models/discovery_rule.rb:
|
441
|
+
#: ../app/models/discovery_rule.rb:57
|
458
442
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
459
443
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
460
|
-
msgstr[0] ""
|
461
|
-
msgstr[1] ""
|
444
|
+
msgstr[0] "A organização do grupo de hosts %s deve também estar associada à regra do Discovery"
|
445
|
+
msgstr[1] "As organizações do grupo de hosts %s também devem estar associadas à regra do Discovery"
|
462
446
|
|
463
|
-
#: ../app/models/discovery_rule.rb:
|
447
|
+
#: ../app/models/discovery_rule.rb:61
|
464
448
|
msgid "Host group location %s must also be associated to the discovery rule"
|
465
449
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
466
|
-
msgstr[0] ""
|
467
|
-
msgstr[1] ""
|
450
|
+
msgstr[0] "O local do grupo de hosts %s deve também estar associado à regra do Discovery"
|
451
|
+
msgstr[1] "Os locais do grupo de hosts %s também devem estar associados à regra do Discovery"
|
468
452
|
|
469
453
|
#: ../app/models/host/discovered.rb:40
|
470
454
|
msgid "Fact + prefix"
|
@@ -500,7 +484,7 @@ msgstr "Não foi possível obter fatos do proxy %{url}: %{error}"
|
|
500
484
|
|
501
485
|
#: ../app/models/host/discovered.rb:160
|
502
486
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
503
|
-
msgstr ""
|
487
|
+
msgstr "Não foi possível realizar a reinicialização em %{name} (%{url}): %{msg}"
|
504
488
|
|
505
489
|
#: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
|
506
490
|
msgid "Unable to perform %{action} on %{ips}"
|
@@ -508,7 +492,7 @@ msgstr ""
|
|
508
492
|
|
509
493
|
#: ../app/models/host/discovered.rb:179
|
510
494
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
511
|
-
msgstr ""
|
495
|
+
msgstr "Não foi possível executar kexec em %{name} (%{url}): %{msg}"
|
512
496
|
|
513
497
|
#: ../app/models/host/discovered.rb:203
|
514
498
|
msgid "Invalid hostname: Could not normalize the hostname"
|
@@ -730,9 +714,37 @@ msgstr "O host '%{host}' descoberto tem todas as NICs filtradas. Filtro: %{filte
|
|
730
714
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
731
715
|
msgstr "Não foi possível encontrar a NIC primária com o %{mac} especificado via '%{fact}'. Filtro da NIC: %{filter}"
|
732
716
|
|
717
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
718
|
+
msgid "Highlights"
|
719
|
+
msgstr "Destaques"
|
720
|
+
|
721
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
722
|
+
msgid "Storage"
|
723
|
+
msgstr "Armazenamento"
|
724
|
+
|
725
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
726
|
+
msgid "Hardware"
|
727
|
+
msgstr "Hardware"
|
728
|
+
|
729
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
730
|
+
msgid "Network"
|
731
|
+
msgstr "Rede"
|
732
|
+
|
733
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
734
|
+
msgid "Software"
|
735
|
+
msgstr "Software"
|
736
|
+
|
737
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
738
|
+
msgid "IPMI"
|
739
|
+
msgstr "IPMI"
|
740
|
+
|
741
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
742
|
+
msgid "Miscellaneous"
|
743
|
+
msgstr "Diversos"
|
744
|
+
|
733
745
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
734
746
|
msgid "IPAM must be configured for subnet '%s'"
|
735
|
-
msgstr ""
|
747
|
+
msgstr "O IPAM deve ser configurado para a sub-rede '%s'"
|
736
748
|
|
737
749
|
#: ../app/services/foreman_discovery/node_api/node_resource.rb:76
|
738
750
|
msgid "Image API returned HTTP/%{code} with '%{body}"
|
@@ -742,11 +754,15 @@ msgstr "API da imagem retornou HTTP/%{code} com '%{body}"
|
|
742
754
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
743
755
|
msgstr "Erro de processamento da API da imagem: %{msg} (HTTP/%{code}, corpo: %{body})"
|
744
756
|
|
757
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
758
|
+
msgid "Host %s has been dicovered"
|
759
|
+
msgstr ""
|
760
|
+
|
745
761
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
746
762
|
msgid "Discovered Host"
|
747
763
|
msgid_plural "Discovered Hosts"
|
748
|
-
msgstr[0] ""
|
749
|
-
msgstr[1] ""
|
764
|
+
msgstr[0] "Host descoberto"
|
765
|
+
msgstr[1] "Hosts descobertos"
|
750
766
|
|
751
767
|
#: ../app/views/dashboard/_discovery_widget.html.erb:9
|
752
768
|
msgid "No discovered hosts available"
|
@@ -754,17 +770,17 @@ msgstr "Nenhum host descoberto disponível"
|
|
754
770
|
|
755
771
|
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:3
|
756
772
|
msgid "Host"
|
757
|
-
msgstr "
|
773
|
+
msgstr "Máquina"
|
758
774
|
|
759
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
775
|
+
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
|
760
776
|
msgid "Model"
|
761
|
-
msgstr "
|
777
|
+
msgstr "Modelar"
|
762
778
|
|
763
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
779
|
+
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
|
764
780
|
msgid "CPUs"
|
765
781
|
msgstr "CPUs"
|
766
782
|
|
767
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
783
|
+
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
|
768
784
|
msgid "Memory"
|
769
785
|
msgstr "Memória"
|
770
786
|
|
@@ -776,61 +792,61 @@ msgstr "Personalizar host"
|
|
776
792
|
msgid "Create Host"
|
777
793
|
msgstr "Criar host"
|
778
794
|
|
779
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
795
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
780
796
|
msgid "Select all items in this page"
|
781
797
|
msgstr "Selecionar todos os itens desta página"
|
782
798
|
|
783
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
799
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
784
800
|
msgid "items selected. Uncheck to Clear"
|
785
801
|
msgstr "itens selecionados. Desselecione para Limpar"
|
786
802
|
|
787
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
803
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
|
788
804
|
msgid "Name"
|
789
805
|
msgstr "Nome"
|
790
806
|
|
791
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
807
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
|
792
808
|
msgid "IP Address"
|
793
809
|
msgstr "Endereço IP"
|
794
810
|
|
795
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
811
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
|
796
812
|
msgid "Disk Count"
|
797
813
|
msgstr "Contagem de discos"
|
798
814
|
|
799
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
815
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
|
800
816
|
msgid "Disks Size"
|
801
817
|
msgstr "Tamanho dos discos"
|
802
818
|
|
803
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
819
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9 ../app/views/discovery_rules/index.html.erb:11
|
804
820
|
msgid "Location"
|
805
821
|
msgstr "Local"
|
806
822
|
|
807
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
823
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10 ../app/views/discovery_rules/index.html.erb:12
|
808
824
|
msgid "Organization"
|
809
825
|
msgstr "Organização"
|
810
826
|
|
811
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
827
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
|
812
828
|
msgid "Subnet"
|
813
|
-
msgstr "
|
829
|
+
msgstr "Suberede"
|
814
830
|
|
815
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
831
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
|
816
832
|
msgid "Last Facts Upload"
|
817
833
|
msgstr "Carregamento dos últimos fatos"
|
818
834
|
|
819
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
835
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
820
836
|
msgid "Actions"
|
821
837
|
msgstr "Ações"
|
822
838
|
|
823
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
839
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:55
|
824
840
|
msgid "Please Confirm"
|
825
841
|
msgstr "Por favor confirme"
|
826
842
|
|
827
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
843
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:61
|
828
844
|
msgid "Cancel"
|
829
845
|
msgstr "Cancelar"
|
830
846
|
|
831
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
847
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:62
|
832
848
|
msgid "Submit"
|
833
|
-
msgstr "
|
849
|
+
msgstr "Enviar"
|
834
850
|
|
835
851
|
#: ../app/views/discovered_hosts/edit.html.erb:1
|
836
852
|
msgid "Provision %s"
|
@@ -918,7 +934,7 @@ msgstr "Primário"
|
|
918
934
|
|
919
935
|
#: ../app/views/discovery_rules/_form.html.erb:7
|
920
936
|
msgid "Locations"
|
921
|
-
msgstr "
|
937
|
+
msgstr "Locais"
|
922
938
|
|
923
939
|
#: ../app/views/discovery_rules/_form.html.erb:10
|
924
940
|
msgid "Organizations"
|
@@ -964,6 +980,10 @@ msgstr "Ao criar padrões de nome de host, garanta que os nomes de host resultan
|
|
964
980
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
965
981
|
msgstr "Os nomes de host não devem iniciar com números. Uma boa abordagem é usar informações exclusivas fornecidas pelo Facter (endereço MAC, BIOS ou ID de série)."
|
966
982
|
|
983
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
984
|
+
msgid "Clone %s"
|
985
|
+
msgstr ""
|
986
|
+
|
967
987
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
968
988
|
msgid "Edit %s"
|
969
989
|
msgstr "Editar %s"
|
@@ -972,7 +992,7 @@ msgstr "Editar %s"
|
|
972
992
|
msgid "Discovery Rules"
|
973
993
|
msgstr "Regras do Discovery"
|
974
994
|
|
975
|
-
#: ../app/views/discovery_rules/index.html.erb:2
|
995
|
+
#: ../app/views/discovery_rules/index.html.erb:2 ../webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js:9
|
976
996
|
msgid "Create Rule"
|
977
997
|
msgstr "Criar regra"
|
978
998
|
|
@@ -996,7 +1016,7 @@ msgstr "Grupo de Host"
|
|
996
1016
|
msgid "Hosts/Limit"
|
997
1017
|
msgstr "Hosts/Limite"
|
998
1018
|
|
999
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1019
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
1000
1020
|
msgid "DiscoveryRule|Enabled"
|
1001
1021
|
msgstr "DiscoveryRule|Habilitado"
|
1002
1022
|
|
@@ -1004,6 +1024,10 @@ msgstr "DiscoveryRule|Habilitado"
|
|
1004
1024
|
msgid "New Discovery Rule"
|
1005
1025
|
msgstr "Nova regra do Discovery"
|
1006
1026
|
|
1027
|
+
#: ../app/views/discovery_rules/welcome.html.erb:8
|
1028
|
+
msgid "Discovered Rules"
|
1029
|
+
msgstr ""
|
1030
|
+
|
1007
1031
|
#: ../db/seeds.d/50_discovery_templates.rb:5
|
1008
1032
|
msgid "Command line options for kexec during PXE-less provisioning."
|
1009
1033
|
msgstr "Opções da linha de comando para o kexec durante o provisionamento sem PXE."
|
@@ -1013,8 +1037,8 @@ msgid "A summary of discovered hosts"
|
|
1013
1037
|
msgstr "Um resumo de hosts descobertos"
|
1014
1038
|
|
1015
1039
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1016
|
-
msgid "
|
1017
|
-
msgstr "
|
1040
|
+
msgid "New hosts"
|
1041
|
+
msgstr ""
|
1018
1042
|
|
1019
1043
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1020
1044
|
msgid "One or more hosts have been discovered"
|
@@ -1024,43 +1048,54 @@ msgstr "Um ou mais hosts foram descobertos"
|
|
1024
1048
|
msgid "Details"
|
1025
1049
|
msgstr "Detalhes"
|
1026
1050
|
|
1027
|
-
#: ../
|
1051
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1052
|
+
msgid "Hosts"
|
1053
|
+
msgstr "Hosts"
|
1054
|
+
|
1055
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1056
|
+
msgid "Error message goes here"
|
1057
|
+
msgstr ""
|
1058
|
+
|
1059
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1028
1060
|
msgid "Discovery Kexec template"
|
1029
1061
|
msgstr "Modelo do kexec do Discovery"
|
1030
1062
|
|
1031
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1063
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1032
1064
|
msgid "Discovery Proxy"
|
1033
1065
|
msgstr "Proxy do Discovery"
|
1034
1066
|
|
1035
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1067
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1036
1068
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1037
1069
|
msgstr "Proxy do Discovery a ser usado nesta sub-rede para gerenciar conexão com hosts descobertos"
|
1038
1070
|
|
1039
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1071
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1040
1072
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1041
1073
|
msgstr "ID do proxy do Discovery a ser usado nesta sub-rede para gerenciar conexões com hosts descobertos"
|
1042
1074
|
|
1075
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
|
1076
|
+
msgid "For more information please see "
|
1077
|
+
msgstr ""
|
1078
|
+
|
1079
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1080
|
+
msgid "documentation"
|
1081
|
+
msgstr "documentação"
|
1082
|
+
|
1043
1083
|
#: action_names.rb:2
|
1044
1084
|
msgid "Remote action:"
|
1045
|
-
msgstr ""
|
1085
|
+
msgstr "Ação remota:"
|
1046
1086
|
|
1047
1087
|
#: action_names.rb:3
|
1048
1088
|
msgid "Import Puppet classes"
|
1049
|
-
msgstr ""
|
1089
|
+
msgstr "Importar classes de Puppet"
|
1050
1090
|
|
1051
1091
|
#: action_names.rb:4
|
1052
|
-
msgid "
|
1053
|
-
msgstr ""
|
1092
|
+
msgid "Import facts"
|
1093
|
+
msgstr "Importar fatos"
|
1054
1094
|
|
1055
1095
|
#: action_names.rb:5
|
1056
|
-
msgid "
|
1057
|
-
msgstr ""
|
1096
|
+
msgid "Action with sub plans"
|
1097
|
+
msgstr "Ação com subplanos "
|
1058
1098
|
|
1059
|
-
|
1060
|
-
#~
|
1061
|
-
#~
|
1062
|
-
#~ msgstr "Nenhum host descoberto encontrado neste contexto."
|
1063
|
-
#~ msgid ""
|
1064
|
-
#~ "This page shows discovered bare-metal or virtual nodes waiting to be provision"
|
1065
|
-
#~ "ed."
|
1066
|
-
#~ msgstr "Esta página mostra nós bare-metal ou virtuais aguardando o provisionamento."
|
1099
|
+
#: ../app/helpers/discovered_hosts_helper.rb:10
|
1100
|
+
#~ msgid "%s ago"
|
1101
|
+
#~ msgstr "%s atrás"
|