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
@@ -4,16 +4,19 @@
|
|
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
|
-
"PO-Revision-Date:
|
16
|
-
"Last-Translator:
|
18
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
19
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
|
17
20
|
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/foreman/foreman/l"
|
18
21
|
"anguage/pt_BR/)\n"
|
19
22
|
"MIME-Version: 1.0\n"
|
@@ -25,9 +28,6 @@ msgstr ""
|
|
25
28
|
msgid "%s - The following hosts are about to be changed"
|
26
29
|
msgstr "%s - Os hosts a seguir devem ser modificados em breve"
|
27
30
|
|
28
|
-
msgid "%s ago"
|
29
|
-
msgstr "%s atrás"
|
30
|
-
|
31
31
|
msgid "%s discovered hosts were provisioned"
|
32
32
|
msgstr "%s hosts descobertos foram provisionados"
|
33
33
|
|
@@ -38,7 +38,7 @@ msgid "A summary of discovered hosts"
|
|
38
38
|
msgstr "Um resumo de hosts descobertos"
|
39
39
|
|
40
40
|
msgid "Action with sub plans"
|
41
|
-
msgstr ""
|
41
|
+
msgstr "Ação com subplanos "
|
42
42
|
|
43
43
|
msgid "Actions"
|
44
44
|
msgstr "Ações"
|
@@ -71,7 +71,7 @@ msgid "Automatically reboot or kexec discovered host during provisioning"
|
|
71
71
|
msgstr "Automaticamente reinicializar o host descoberto durante o provisioamento ou executar kexec nele"
|
72
72
|
|
73
73
|
msgid "Back"
|
74
|
-
msgstr "
|
74
|
+
msgstr "Retornar"
|
75
75
|
|
76
76
|
msgid "CPUs"
|
77
77
|
msgstr "CPUs"
|
@@ -85,6 +85,12 @@ msgstr "Limpar todos fatos"
|
|
85
85
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
86
86
|
msgstr "Limpar todos os fatos relatados durante o provisionamento (exceto fatos do Discovery)"
|
87
87
|
|
88
|
+
msgid "Clone"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
msgid "Clone %s"
|
92
|
+
msgstr ""
|
93
|
+
|
88
94
|
msgid "Collapse All"
|
89
95
|
msgstr "Recolher todos"
|
90
96
|
|
@@ -116,10 +122,10 @@ msgid "DHCP filename option (Grub2 or PXELinux by default)"
|
|
116
122
|
msgstr "Opção do nome de arquivo DHCP (Grub2 ou PXELinux por padrão)"
|
117
123
|
|
118
124
|
msgid "Delete"
|
119
|
-
msgstr "
|
125
|
+
msgstr "Excluir"
|
120
126
|
|
121
127
|
msgid "Delete %s?"
|
122
|
-
msgstr "Remover %s
|
128
|
+
msgstr "Remover %s"
|
123
129
|
|
124
130
|
msgid "Delete a discovered host"
|
125
131
|
msgstr "Excluir um host descoberto"
|
@@ -144,15 +150,21 @@ msgstr "Desabilitar regra '%s'?"
|
|
144
150
|
|
145
151
|
msgid "Discovered Host"
|
146
152
|
msgid_plural "Discovered Hosts"
|
147
|
-
msgstr[0] ""
|
148
|
-
msgstr[1] ""
|
153
|
+
msgstr[0] "Host descoberto"
|
154
|
+
msgstr[1] "Hosts descobertos"
|
149
155
|
|
150
156
|
msgid "Discovered Hosts"
|
151
157
|
msgstr "Hosts descobertos"
|
152
158
|
|
159
|
+
msgid "Discovered Rules"
|
160
|
+
msgstr ""
|
161
|
+
|
153
162
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
154
163
|
msgstr "O host '%{host}' descoberto tem todas as NICs filtradas. Filtro: %{filter}"
|
155
164
|
|
165
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
166
|
+
msgstr ""
|
167
|
+
|
156
168
|
msgid "Discovered host: %s"
|
157
169
|
msgstr "Host descoberto: %s"
|
158
170
|
|
@@ -165,6 +177,9 @@ msgstr "Hosts descobertos estão reinicializando agora"
|
|
165
177
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
166
178
|
msgstr "Hosts descobertos pelo servidor do Foreman em %{foreman_url}"
|
167
179
|
|
180
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
181
|
+
msgstr ""
|
182
|
+
|
168
183
|
msgid "Discovered hosts summary"
|
169
184
|
msgstr "Resumo de hosts descobertos"
|
170
185
|
|
@@ -231,6 +246,9 @@ msgstr "Habilitar"
|
|
231
246
|
msgid "Enable rule '%s'?"
|
232
247
|
msgstr "Habilitar regra '%s'?"
|
233
248
|
|
249
|
+
msgid "Error message goes here"
|
250
|
+
msgstr ""
|
251
|
+
|
234
252
|
msgid "Error on existing NIC"
|
235
253
|
msgstr "Erro na NIC existente"
|
236
254
|
|
@@ -285,6 +303,9 @@ msgstr "Falha ao atualizar fatos para %s"
|
|
285
303
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
286
304
|
msgstr "Falha ao atualizar fatos para %{hostname} com erro %{error_message}"
|
287
305
|
|
306
|
+
msgid "For more information please see "
|
307
|
+
msgstr ""
|
308
|
+
|
288
309
|
msgid "Force DNS"
|
289
310
|
msgstr "Forçar DNS"
|
290
311
|
|
@@ -307,7 +328,10 @@ msgid "Highlights"
|
|
307
328
|
msgstr "Destaques"
|
308
329
|
|
309
330
|
msgid "Host"
|
310
|
-
msgstr "
|
331
|
+
msgstr "Máquina"
|
332
|
+
|
333
|
+
msgid "Host %s has been dicovered"
|
334
|
+
msgstr ""
|
311
335
|
|
312
336
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
313
337
|
msgstr "Host %{host} foi provisionado com a regra %{rule}"
|
@@ -317,22 +341,22 @@ msgstr "Grupo de Host"
|
|
317
341
|
|
318
342
|
msgid "Host group location %s must also be associated to the discovery rule"
|
319
343
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
320
|
-
msgstr[0] ""
|
321
|
-
msgstr[1] ""
|
344
|
+
msgstr[0] "O local do grupo de hosts %s deve também estar associado à regra do Discovery"
|
345
|
+
msgstr[1] "Os locais do grupo de hosts %s também devem estar associados à regra do Discovery"
|
322
346
|
|
323
347
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
324
348
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
325
|
-
msgstr[0] ""
|
326
|
-
msgstr[1] ""
|
349
|
+
msgstr[0] "A organização do grupo de hosts %s deve também estar associada à regra do Discovery"
|
350
|
+
msgstr[1] "As organizações do grupo de hosts %s também devem estar associadas à regra do Discovery"
|
327
351
|
|
328
352
|
msgid "Host of type %s can not be rebooted"
|
329
353
|
msgstr "Tipo de host %s não pode ser reinicializado"
|
330
354
|
|
331
355
|
msgid "Host's owner type"
|
332
|
-
msgstr ""
|
356
|
+
msgstr "Tipo de proprietário do host"
|
333
357
|
|
334
358
|
msgid "Host's parameters (array or indexed hash)"
|
335
|
-
msgstr ""
|
359
|
+
msgstr "Parâmetros do host (matriz ou hash indexado)"
|
336
360
|
|
337
361
|
msgid "Hostname facts"
|
338
362
|
msgstr "Fatos do nome do host"
|
@@ -365,7 +389,7 @@ msgid "IP address"
|
|
365
389
|
msgstr "Endereco de IP"
|
366
390
|
|
367
391
|
msgid "IPAM must be configured for subnet '%s'"
|
368
|
-
msgstr ""
|
392
|
+
msgstr "O IPAM deve ser configurado para a sub-rede '%s'"
|
369
393
|
|
370
394
|
msgid "IPMI"
|
371
395
|
msgstr "IPMI"
|
@@ -383,10 +407,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
|
|
383
407
|
msgstr "API da imagem retornou HTTP/%{code} com '%{body}"
|
384
408
|
|
385
409
|
msgid "Import Puppet classes"
|
386
|
-
msgstr ""
|
410
|
+
msgstr "Importar classes de Puppet"
|
387
411
|
|
388
412
|
msgid "Import facts"
|
389
|
-
msgstr ""
|
413
|
+
msgstr "Importar fatos"
|
390
414
|
|
391
415
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
392
416
|
msgstr "Além do atributo @host, a função rand para inteiros aleatórios está disponível. Exemplos:"
|
@@ -422,7 +446,7 @@ msgid "Last Facts Upload"
|
|
422
446
|
msgstr "Carregamento dos últimos fatos"
|
423
447
|
|
424
448
|
msgid "List all discovered hosts"
|
425
|
-
msgstr "Listar todos os hosts
|
449
|
+
msgstr "Listar todos os hosts decobertos"
|
426
450
|
|
427
451
|
msgid "List all discovery rules"
|
428
452
|
msgstr "Listar todas as regras do Discovery"
|
@@ -437,7 +461,7 @@ msgid "Location"
|
|
437
461
|
msgstr "Local"
|
438
462
|
|
439
463
|
msgid "Locations"
|
440
|
-
msgstr "
|
464
|
+
msgstr "Locais"
|
441
465
|
|
442
466
|
msgid "Lock PXE"
|
443
467
|
msgstr "Bloquear PXE"
|
@@ -464,19 +488,19 @@ msgid "Memory"
|
|
464
488
|
msgstr "Memória"
|
465
489
|
|
466
490
|
msgid "Miscellaneous"
|
467
|
-
msgstr "
|
491
|
+
msgstr "Diversos"
|
468
492
|
|
469
493
|
msgid "Model"
|
470
|
-
msgstr "
|
494
|
+
msgstr "Modelar"
|
471
495
|
|
472
496
|
msgid "N/A"
|
473
|
-
msgstr "N/
|
497
|
+
msgstr "N/D"
|
474
498
|
|
475
499
|
msgid "Name"
|
476
500
|
msgstr "Nome"
|
477
501
|
|
478
502
|
msgid "Name of the parameter"
|
479
|
-
msgstr ""
|
503
|
+
msgstr "Nome do parâmetro"
|
480
504
|
|
481
505
|
msgid "Network"
|
482
506
|
msgstr "Rede"
|
@@ -487,6 +511,9 @@ msgstr "Fatos de rede"
|
|
487
511
|
msgid "New Discovery Rule"
|
488
512
|
msgstr "Nova regra do Discovery"
|
489
513
|
|
514
|
+
msgid "New hosts"
|
515
|
+
msgstr ""
|
516
|
+
|
490
517
|
msgid "New in the last 24 hours"
|
491
518
|
msgstr "Novo nas últimas 24 horas"
|
492
519
|
|
@@ -539,7 +566,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
|
|
539
566
|
msgstr "Modelo PXELinux a ser usado para fixar um host no Discovery"
|
540
567
|
|
541
568
|
msgid "Parameter value"
|
542
|
-
msgstr ""
|
569
|
+
msgstr "Valor do parâmetro"
|
543
570
|
|
544
571
|
msgid "Please Confirm"
|
545
572
|
msgstr "Por favor confirme"
|
@@ -548,7 +575,7 @@ msgid "Primary"
|
|
548
575
|
msgstr "Primário"
|
549
576
|
|
550
577
|
msgid "Provision"
|
551
|
-
msgstr "
|
578
|
+
msgstr "Provisão"
|
552
579
|
|
553
580
|
msgid "Provision %s"
|
554
581
|
msgstr "Provisionar %s"
|
@@ -605,7 +632,7 @@ msgid "Reloading kernel on %s"
|
|
605
632
|
msgstr "Recarregando kernel no %s"
|
606
633
|
|
607
634
|
msgid "Remote action:"
|
608
|
-
msgstr ""
|
635
|
+
msgstr "Ação remota:"
|
609
636
|
|
610
637
|
msgid "Reported in the last 7 days"
|
611
638
|
msgstr "Relatado nos últimos sete dias"
|
@@ -656,10 +683,10 @@ msgid "Storage facts"
|
|
656
683
|
msgstr "Fatos de armazenamento"
|
657
684
|
|
658
685
|
msgid "Submit"
|
659
|
-
msgstr "
|
686
|
+
msgstr "Enviar"
|
660
687
|
|
661
688
|
msgid "Subnet"
|
662
|
-
msgstr "
|
689
|
+
msgstr "Suberede"
|
663
690
|
|
664
691
|
msgid "Successfully provisioned %s"
|
665
692
|
msgstr "%s provisionado com êxito"
|
@@ -695,7 +722,7 @@ msgid "Type of name generator"
|
|
695
722
|
msgstr "Tipo de gerador de nomes"
|
696
723
|
|
697
724
|
msgid "Type of value"
|
698
|
-
msgstr ""
|
725
|
+
msgstr "Tipo de valor"
|
699
726
|
|
700
727
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
701
728
|
msgstr "UUID a rastrear o status de tarefas de orquestração, GET /api/orchestration/:UUID/tasks"
|
@@ -710,10 +737,10 @@ msgid "Unable to perform %{action} on %{ips}"
|
|
710
737
|
msgstr ""
|
711
738
|
|
712
739
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
713
|
-
msgstr ""
|
740
|
+
msgstr "Não foi possível executar kexec em %{name} (%{url}): %{msg}"
|
714
741
|
|
715
742
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
716
|
-
msgstr ""
|
743
|
+
msgstr "Não foi possível realizar a reinicialização em %{name} (%{url}): %{msg}"
|
717
744
|
|
718
745
|
msgid "Unable to provision %{host}: %{errors}"
|
719
746
|
msgstr "Não foi possível provisionar %{host}: %{errors}"
|
@@ -733,6 +760,9 @@ msgstr "não pode conter espaços em branco."
|
|
733
760
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
734
761
|
msgstr "define um padrão para atribuir nomes de hosts legíveis aos hosts correspondentes"
|
735
762
|
|
763
|
+
msgid "documentation"
|
764
|
+
msgstr "documentação"
|
765
|
+
|
736
766
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
737
767
|
msgstr "habilita para limitar a quantidade máxima de hosts provisionados por regra"
|
738
768
|
|
@@ -782,13 +812,13 @@ msgid "represents rule name shown to the users"
|
|
782
812
|
msgstr "representa nome da regra exibido para os usuários"
|
783
813
|
|
784
814
|
msgid "required if host is managed and custom partition has not been defined"
|
785
|
-
msgstr ""
|
815
|
+
msgstr "requerido se o host é gerenciado e uma partição customizada não foi definida"
|
786
816
|
|
787
817
|
msgid "required if host is managed and value is not inherited from host group"
|
788
|
-
msgstr ""
|
818
|
+
msgstr "necessário se o host é gerenciado e valor não é herdado do grupo de host"
|
789
819
|
|
790
820
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
791
|
-
msgstr ""
|
821
|
+
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"
|
792
822
|
|
793
823
|
msgid "required if value is not inherited from host group or default password in settings"
|
794
824
|
msgstr "obrigatório se o valor não for herdado do grupo de hosts ou da senha padrão nas configurações"
|
Binary file
|
@@ -10,9 +10,10 @@
|
|
10
10
|
# Yulia <yulia.poyarkova@redhat.com>, 2016
|
11
11
|
msgid ""
|
12
12
|
msgstr ""
|
13
|
-
"Project-Id-Version: foreman_discovery 16.
|
13
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
15
|
-
"
|
15
|
+
"POT-Creation-Date: 2021-05-03 08:46+0200\n"
|
16
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
16
17
|
"Last-Translator: Transifex Bot <>\n"
|
17
18
|
"Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
|
18
19
|
"\n"
|
@@ -62,7 +63,7 @@ msgstr "Подготовить обнаруженный узел"
|
|
62
63
|
|
63
64
|
#: ../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
|
64
65
|
msgid "required if host is managed and value is not inherited from host group"
|
65
|
-
msgstr ""
|
66
|
+
msgstr "требуется, если узел уже контролируется, но значение не было унаследовано от группы узлов"
|
66
67
|
|
67
68
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
|
68
69
|
msgid "not required if using a subnet with DHCP proxy"
|
@@ -74,27 +75,27 @@ msgstr "не требуется для виртуальных машин"
|
|
74
75
|
|
75
76
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
|
76
77
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
77
|
-
msgstr ""
|
78
|
+
msgstr "требуется, если подготовка управляемого узла осуществляется без участия образов и при этом значение не было унаследовано от группы узлов"
|
78
79
|
|
79
80
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
|
80
81
|
msgid "required if host is managed and custom partition has not been defined"
|
81
|
-
msgstr ""
|
82
|
+
msgstr "требуется, если узел находится под управлением, но собственный раздел не был объявлен"
|
82
83
|
|
83
84
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
|
84
85
|
msgid "Host's owner type"
|
85
|
-
msgstr ""
|
86
|
+
msgstr "Тип владельца узла"
|
86
87
|
|
87
88
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
|
88
89
|
msgid "Host's parameters (array or indexed hash)"
|
89
|
-
msgstr ""
|
90
|
+
msgstr "Параметры узла (массив или индексированный хэш)"
|
90
91
|
|
91
92
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
|
92
93
|
msgid "Name of the parameter"
|
93
|
-
msgstr ""
|
94
|
+
msgstr "Название параметра"
|
94
95
|
|
95
96
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
|
96
97
|
msgid "Parameter value"
|
97
|
-
msgstr ""
|
98
|
+
msgstr "Значение параметра"
|
98
99
|
|
99
100
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
|
100
101
|
msgid "Type of value"
|
@@ -120,51 +121,51 @@ msgstr "Загрузить факты узла, требуемые для соз
|
|
120
121
|
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)"
|
121
122
|
msgstr "хэш с минимальным набором фактов узла: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (в этих примерах подразумевается, что основной интерфейс имеет имя eth0)"
|
122
123
|
|
123
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
124
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
124
125
|
msgid "Execute rules against a discovered host"
|
125
126
|
msgstr "Применить правила к обнаруженному узлу"
|
126
127
|
|
127
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
128
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
|
128
129
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
129
130
|
msgstr "%{host} был подготовлен в соответствии с правилом %{rule}"
|
130
131
|
|
131
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
132
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
132
133
|
msgid "Unable to provision %{host}: %{errors}"
|
133
134
|
msgstr "Не удалось подготовить %{host}: %{errors}"
|
134
135
|
|
135
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
136
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
|
136
137
|
msgid "No rule found for host %s"
|
137
138
|
msgstr "Нет правил для %s"
|
138
139
|
|
139
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
140
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
140
141
|
msgid "Execute rules against all currently discovered hosts"
|
141
142
|
msgstr "Применить правила ко всем обнаруженным узлам"
|
142
143
|
|
143
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
144
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
|
144
145
|
msgid "Errors during auto provisioning: %s"
|
145
146
|
msgstr "Ошибки при автоматической подготовке: %s"
|
146
147
|
|
147
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
148
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
|
148
149
|
msgid "No discovered hosts to provision"
|
149
150
|
msgstr "Нет обнаруженных узлов"
|
150
151
|
|
151
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
152
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
152
153
|
msgid "%s discovered hosts were provisioned"
|
153
154
|
msgstr "Подготовлено узлов: %s"
|
154
155
|
|
155
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
156
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
156
157
|
msgid "Refreshing the facts of a discovered host"
|
157
158
|
msgstr "Обновление фактов узла"
|
158
159
|
|
159
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
160
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
160
161
|
msgid "Rebooting a discovered host"
|
161
162
|
msgstr "Перезагрузка обнаруженного узла"
|
162
163
|
|
163
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
164
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
164
165
|
msgid "Rebooting all discovered hosts"
|
165
166
|
msgstr "Перезагрузка всех обнаруженных узлов"
|
166
167
|
|
167
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
168
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
|
168
169
|
msgid "Discovered hosts are rebooting now"
|
169
170
|
msgstr "Выполняется перезагрузка обнаруженных узлов"
|
170
171
|
|
@@ -244,119 +245,95 @@ msgstr "Ошибки при перезагрузке: %s"
|
|
244
245
|
msgid "No discovered hosts to reboot"
|
245
246
|
msgstr "Нет узлов для перезагрузки"
|
246
247
|
|
247
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
248
|
+
#: ../app/controllers/discovered_hosts_controller.rb:60
|
248
249
|
msgid "Successfully provisioned %s"
|
249
250
|
msgstr ""
|
250
251
|
|
251
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
252
|
+
#: ../app/controllers/discovered_hosts_controller.rb:94
|
252
253
|
msgid "Facts refreshed for %s"
|
253
254
|
msgstr "Факты %s были обновлены"
|
254
255
|
|
255
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
256
|
+
#: ../app/controllers/discovered_hosts_controller.rb:96
|
256
257
|
msgid "Failed to refresh facts for %s"
|
257
258
|
msgstr "Не удалось обновить факты %s"
|
258
259
|
|
259
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
260
|
+
#: ../app/controllers/discovered_hosts_controller.rb:99
|
260
261
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
261
262
|
msgstr "Не удалось обновить факты %{hostname}. Ошибка: %{error_message}"
|
262
263
|
|
263
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
264
|
+
#: ../app/controllers/discovered_hosts_controller.rb:106
|
264
265
|
msgid "Host of type %s can not be rebooted"
|
265
266
|
msgstr "Узел типа %s не может быть перезагружен"
|
266
267
|
|
267
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
268
|
+
#: ../app/controllers/discovered_hosts_controller.rb:110
|
268
269
|
msgid "Rebooting host %s"
|
269
270
|
msgstr "Перезагрузка %s"
|
270
271
|
|
271
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
272
|
+
#: ../app/controllers/discovered_hosts_controller.rb:112
|
272
273
|
msgid "Failed to reboot host %s"
|
273
274
|
msgstr "Не удалось перезагрузить %s"
|
274
275
|
|
275
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
276
|
+
#: ../app/controllers/discovered_hosts_controller.rb:115
|
276
277
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
277
278
|
msgstr "Не удалось перезагрузить %{hostname}. Ошибка: %{error_message}"
|
278
279
|
|
279
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
280
|
+
#: ../app/controllers/discovered_hosts_controller.rb:129
|
280
281
|
msgid "Failed to reboot hosts with error %s"
|
281
282
|
msgstr "Не удалось перезагрузить узлы. Ошибка: %s"
|
282
283
|
|
283
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
284
|
+
#: ../app/controllers/discovered_hosts_controller.rb:147
|
284
285
|
msgid "Destroyed selected hosts"
|
285
286
|
msgstr "Узлы удалены"
|
286
287
|
|
287
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
288
|
+
#: ../app/controllers/discovered_hosts_controller.rb:149
|
288
289
|
msgid "The following hosts were not deleted: %s"
|
289
290
|
msgstr "Узлы не были удалены: %s"
|
290
291
|
|
291
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
292
|
+
#: ../app/controllers/discovered_hosts_controller.rb:161
|
292
293
|
msgid "Failed to auto provision host %s: %s"
|
293
294
|
msgstr "Не удалось автоматически подготовить узел %s: %s"
|
294
295
|
|
295
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
296
|
+
#: ../app/controllers/discovered_hosts_controller.rb:189
|
296
297
|
msgid "Discovered hosts are provisioning now"
|
297
298
|
msgstr "Выполняется подготовка обнаруженных узлов"
|
298
299
|
|
299
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
300
|
-
msgid "
|
301
|
-
msgstr "
|
302
|
-
|
303
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
304
|
-
msgid "Storage"
|
305
|
-
msgstr "Хранение данных"
|
306
|
-
|
307
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
308
|
-
msgid "Hardware"
|
309
|
-
msgstr "Физическое"
|
310
|
-
|
311
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
312
|
-
msgid "Network"
|
313
|
-
msgstr "Сеть"
|
314
|
-
|
315
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
316
|
-
msgid "Software"
|
317
|
-
msgstr "Программы"
|
318
|
-
|
319
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
320
|
-
msgid "IPMI"
|
321
|
-
msgstr "IPMI"
|
300
|
+
#: ../app/controllers/discovered_hosts_controller.rb:270
|
301
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
302
|
+
msgstr ""
|
322
303
|
|
323
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
324
|
-
msgid "
|
325
|
-
msgstr "
|
304
|
+
#: ../app/controllers/discovered_hosts_controller.rb:275
|
305
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
306
|
+
msgstr ""
|
326
307
|
|
327
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
308
|
+
#: ../app/controllers/discovered_hosts_controller.rb:289
|
328
309
|
msgid "No hosts were found with that id or name"
|
329
310
|
msgstr "Нет узла с таким идентификатором или именем"
|
330
311
|
|
331
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
312
|
+
#: ../app/controllers/discovered_hosts_controller.rb:293
|
332
313
|
msgid "No hosts selected"
|
333
314
|
msgstr "Не выбран узел"
|
334
315
|
|
335
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
316
|
+
#: ../app/controllers/discovered_hosts_controller.rb:299
|
336
317
|
msgid "Something went wrong while selecting hosts - %s"
|
337
318
|
msgstr "Непредвиденное поведение при выборе узлов: %s"
|
338
319
|
|
339
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
320
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
340
321
|
msgid "Rule enabled"
|
341
322
|
msgstr "Правило включено"
|
342
323
|
|
343
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
324
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
344
325
|
msgid "Rule disabled"
|
345
326
|
msgstr "Правило отключено"
|
346
327
|
|
347
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
348
|
-
msgid "%s ago"
|
349
|
-
msgstr "%s назад"
|
350
|
-
|
351
|
-
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
|
328
|
+
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
352
329
|
msgid "Auto Provision"
|
353
330
|
msgstr "Автоматическая подготовка"
|
354
331
|
|
355
|
-
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
332
|
+
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:41
|
356
333
|
msgid "Refresh facts"
|
357
334
|
msgstr "Обновить факты"
|
358
335
|
|
359
|
-
#: ../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:
|
336
|
+
#: ../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
|
360
337
|
msgid "Reboot"
|
361
338
|
msgstr "Перезагрузить"
|
362
339
|
|
@@ -368,7 +345,7 @@ msgstr "Назад"
|
|
368
345
|
msgid "Select Action"
|
369
346
|
msgstr "Действия"
|
370
347
|
|
371
|
-
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
348
|
+
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
|
372
349
|
msgid "Delete %s?"
|
373
350
|
msgstr "Удалить %s?"
|
374
351
|
|
@@ -433,6 +410,10 @@ msgid "Enable rule '%s'?"
|
|
433
410
|
msgstr "Включить правило «%s»?"
|
434
411
|
|
435
412
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
413
|
+
msgid "Clone"
|
414
|
+
msgstr ""
|
415
|
+
|
416
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
436
417
|
msgid "Delete rule '%s'?"
|
437
418
|
msgstr "Удалить правило «%s»?"
|
438
419
|
|
@@ -456,7 +437,7 @@ msgstr "должен начинаться с буквы или ERB"
|
|
456
437
|
msgid "must be present."
|
457
438
|
msgstr ""
|
458
439
|
|
459
|
-
#: ../app/models/discovery_rule.rb:
|
440
|
+
#: ../app/models/discovery_rule.rb:57
|
460
441
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
461
442
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
462
443
|
msgstr[0] "С правилом также необходимо связать организацию группы узлов, %s"
|
@@ -464,7 +445,7 @@ msgstr[1] "С правилом также необходимо связать о
|
|
464
445
|
msgstr[2] "С правилом также необходимо связать организации группы узлов: %s"
|
465
446
|
msgstr[3] "С правилом также необходимо связать организации группы узлов: %s"
|
466
447
|
|
467
|
-
#: ../app/models/discovery_rule.rb:
|
448
|
+
#: ../app/models/discovery_rule.rb:61
|
468
449
|
msgid "Host group location %s must also be associated to the discovery rule"
|
469
450
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
470
451
|
msgstr[0] "С правилом также необходимо связать местоположение группы узлов, %s"
|
@@ -736,6 +717,34 @@ msgstr ""
|
|
736
717
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
737
718
|
msgstr ""
|
738
719
|
|
720
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
721
|
+
msgid "Highlights"
|
722
|
+
msgstr "Основные"
|
723
|
+
|
724
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
725
|
+
msgid "Storage"
|
726
|
+
msgstr "Хранение данных"
|
727
|
+
|
728
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
729
|
+
msgid "Hardware"
|
730
|
+
msgstr "Физическое"
|
731
|
+
|
732
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
733
|
+
msgid "Network"
|
734
|
+
msgstr "Сеть"
|
735
|
+
|
736
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
737
|
+
msgid "Software"
|
738
|
+
msgstr "Программы"
|
739
|
+
|
740
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
741
|
+
msgid "IPMI"
|
742
|
+
msgstr "IPMI"
|
743
|
+
|
744
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
745
|
+
msgid "Miscellaneous"
|
746
|
+
msgstr "Дополнительно"
|
747
|
+
|
739
748
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
740
749
|
msgid "IPAM must be configured for subnet '%s'"
|
741
750
|
msgstr ""
|
@@ -748,6 +757,10 @@ msgstr "API образа вернул ошибку HTTP/%{code}: '%{body}"
|
|
748
757
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
749
758
|
msgstr "API образа вернул ошибку HTTP/%{code}: %{msg} (body: %{body})"
|
750
759
|
|
760
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
761
|
+
msgid "Host %s has been dicovered"
|
762
|
+
msgstr ""
|
763
|
+
|
751
764
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
752
765
|
msgid "Discovered Host"
|
753
766
|
msgid_plural "Discovered Hosts"
|
@@ -762,15 +775,15 @@ msgstr "Нет обнаруженных узлов"
|
|
762
775
|
msgid "Host"
|
763
776
|
msgstr "Узел"
|
764
777
|
|
765
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
778
|
+
#: ../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
|
766
779
|
msgid "Model"
|
767
780
|
msgstr "Модель"
|
768
781
|
|
769
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
782
|
+
#: ../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
|
770
783
|
msgid "CPUs"
|
771
784
|
msgstr "Процессоры"
|
772
785
|
|
773
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
786
|
+
#: ../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
|
774
787
|
msgid "Memory"
|
775
788
|
msgstr "Память"
|
776
789
|
|
@@ -782,59 +795,59 @@ msgstr ""
|
|
782
795
|
msgid "Create Host"
|
783
796
|
msgstr ""
|
784
797
|
|
785
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
798
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
786
799
|
msgid "Select all items in this page"
|
787
800
|
msgstr "Выбрать все элементы на странице"
|
788
801
|
|
789
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
802
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
790
803
|
msgid "items selected. Uncheck to Clear"
|
791
804
|
msgstr "выбрано. Чтобы очистить, снимите флажок"
|
792
805
|
|
793
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
806
|
+
#: ../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
|
794
807
|
msgid "Name"
|
795
808
|
msgstr "Имя"
|
796
809
|
|
797
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
810
|
+
#: ../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
|
798
811
|
msgid "IP Address"
|
799
812
|
msgstr "IP"
|
800
813
|
|
801
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
814
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
|
802
815
|
msgid "Disk Count"
|
803
816
|
msgstr ""
|
804
817
|
|
805
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
818
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
|
806
819
|
msgid "Disks Size"
|
807
820
|
msgstr ""
|
808
821
|
|
809
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
822
|
+
#: ../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
|
810
823
|
msgid "Location"
|
811
824
|
msgstr "Местоположение"
|
812
825
|
|
813
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
826
|
+
#: ../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
|
814
827
|
msgid "Organization"
|
815
828
|
msgstr "Организация"
|
816
829
|
|
817
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
830
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
|
818
831
|
msgid "Subnet"
|
819
832
|
msgstr "Подсеть"
|
820
833
|
|
821
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
834
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
|
822
835
|
msgid "Last Facts Upload"
|
823
836
|
msgstr ""
|
824
837
|
|
825
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
838
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
826
839
|
msgid "Actions"
|
827
840
|
msgstr "Действия"
|
828
841
|
|
829
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
842
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:55
|
830
843
|
msgid "Please Confirm"
|
831
844
|
msgstr "Подтвердите"
|
832
845
|
|
833
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
846
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:61
|
834
847
|
msgid "Cancel"
|
835
848
|
msgstr "Отмена"
|
836
849
|
|
837
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
850
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:62
|
838
851
|
msgid "Submit"
|
839
852
|
msgstr "Подтвердить"
|
840
853
|
|
@@ -970,6 +983,10 @@ msgstr ""
|
|
970
983
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
971
984
|
msgstr ""
|
972
985
|
|
986
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
987
|
+
msgid "Clone %s"
|
988
|
+
msgstr ""
|
989
|
+
|
973
990
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
974
991
|
msgid "Edit %s"
|
975
992
|
msgstr "Изменить %s"
|
@@ -978,7 +995,7 @@ msgstr "Изменить %s"
|
|
978
995
|
msgid "Discovery Rules"
|
979
996
|
msgstr "Правила обнаружения"
|
980
997
|
|
981
|
-
#: ../app/views/discovery_rules/index.html.erb:2
|
998
|
+
#: ../app/views/discovery_rules/index.html.erb:2 ../webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js:9
|
982
999
|
msgid "Create Rule"
|
983
1000
|
msgstr ""
|
984
1001
|
|
@@ -1002,7 +1019,7 @@ msgstr "Группа узлов"
|
|
1002
1019
|
msgid "Hosts/Limit"
|
1003
1020
|
msgstr ""
|
1004
1021
|
|
1005
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1022
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
1006
1023
|
msgid "DiscoveryRule|Enabled"
|
1007
1024
|
msgstr "Включено"
|
1008
1025
|
|
@@ -1010,6 +1027,10 @@ msgstr "Включено"
|
|
1010
1027
|
msgid "New Discovery Rule"
|
1011
1028
|
msgstr "Новое правило"
|
1012
1029
|
|
1030
|
+
#: ../app/views/discovery_rules/welcome.html.erb:8
|
1031
|
+
msgid "Discovered Rules"
|
1032
|
+
msgstr ""
|
1033
|
+
|
1013
1034
|
#: ../db/seeds.d/50_discovery_templates.rb:5
|
1014
1035
|
msgid "Command line options for kexec during PXE-less provisioning."
|
1015
1036
|
msgstr ""
|
@@ -1019,8 +1040,8 @@ msgid "A summary of discovered hosts"
|
|
1019
1040
|
msgstr "Сводка состояния обнаруженных узлов"
|
1020
1041
|
|
1021
1042
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1022
|
-
msgid "
|
1023
|
-
msgstr "
|
1043
|
+
msgid "New hosts"
|
1044
|
+
msgstr ""
|
1024
1045
|
|
1025
1046
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1026
1047
|
msgid "One or more hosts have been discovered"
|
@@ -1030,34 +1051,54 @@ msgstr ""
|
|
1030
1051
|
msgid "Details"
|
1031
1052
|
msgstr "Свойства"
|
1032
1053
|
|
1033
|
-
#: ../
|
1054
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1055
|
+
msgid "Hosts"
|
1056
|
+
msgstr "Узлы"
|
1057
|
+
|
1058
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1059
|
+
msgid "Error message goes here"
|
1060
|
+
msgstr ""
|
1061
|
+
|
1062
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1034
1063
|
msgid "Discovery Kexec template"
|
1035
1064
|
msgstr ""
|
1036
1065
|
|
1037
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1066
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1038
1067
|
msgid "Discovery Proxy"
|
1039
1068
|
msgstr ""
|
1040
1069
|
|
1041
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1070
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1042
1071
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1043
1072
|
msgstr ""
|
1044
1073
|
|
1045
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1074
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1046
1075
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1047
1076
|
msgstr ""
|
1048
1077
|
|
1078
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
|
1079
|
+
msgid "For more information please see "
|
1080
|
+
msgstr ""
|
1081
|
+
|
1082
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1083
|
+
msgid "documentation"
|
1084
|
+
msgstr ""
|
1085
|
+
|
1049
1086
|
#: action_names.rb:2
|
1050
1087
|
msgid "Remote action:"
|
1051
|
-
msgstr ""
|
1088
|
+
msgstr "Удаленное действие:"
|
1052
1089
|
|
1053
1090
|
#: action_names.rb:3
|
1054
1091
|
msgid "Import Puppet classes"
|
1055
|
-
msgstr ""
|
1092
|
+
msgstr "Импорт классов Puppet"
|
1056
1093
|
|
1057
1094
|
#: action_names.rb:4
|
1058
|
-
msgid "
|
1059
|
-
msgstr ""
|
1095
|
+
msgid "Import facts"
|
1096
|
+
msgstr "Импорт фактов"
|
1060
1097
|
|
1061
1098
|
#: action_names.rb:5
|
1062
|
-
msgid "
|
1063
|
-
msgstr ""
|
1099
|
+
msgid "Action with sub plans"
|
1100
|
+
msgstr "Действия с подпланами"
|
1101
|
+
|
1102
|
+
#: ../app/helpers/discovered_hosts_helper.rb:10
|
1103
|
+
#~ msgid "%s ago"
|
1104
|
+
#~ msgstr "%s назад"
|