foreman_discovery 16.3.5 → 17.0.2
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 +1 -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/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 +103 -70
- 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 +109 -76
- 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 +98 -66
- 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 +107 -74
- 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 +109 -76
- 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 +151 -118
- 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 +101 -68
- 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 +107 -74
- 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 +136 -103
- 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 +107 -74
- 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 +109 -76
- 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 +112 -79
- 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 +101 -68
- 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 +153 -120
- 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 +107 -74
- data/locale/zh_TW/foreman_discovery.po +43 -16
- data/package.json +6 -6
- 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 +32 -10
@@ -10,10 +10,11 @@
|
|
10
10
|
# Yulia <yulia.poyarkova@redhat.com>, 2016
|
11
11
|
msgid ""
|
12
12
|
msgstr ""
|
13
|
-
"Project-Id-Version: foreman_discovery
|
13
|
+
"Project-Id-Version: foreman_discovery 17.1.0\n"
|
14
14
|
"Report-Msgid-Bugs-To: \n"
|
15
|
-
"
|
16
|
-
"
|
15
|
+
"POT-Creation-Date: 2021-09-20 17:25+0200\n"
|
16
|
+
"PO-Revision-Date: 2021-08-13 20:22+0000\n"
|
17
|
+
"Last-Translator: Pavel Ershov <yosho1@yandex.ru>\n"
|
17
18
|
"Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
|
18
19
|
"\n"
|
19
20
|
"MIME-Version: 1.0\n"
|
@@ -98,7 +99,7 @@ msgstr "Значение параметра"
|
|
98
99
|
|
99
100
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
|
100
101
|
msgid "Type of value"
|
101
|
-
msgstr ""
|
102
|
+
msgstr "Тип значения"
|
102
103
|
|
103
104
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
|
104
105
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
@@ -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:160
|
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:167
|
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:173
|
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:176
|
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:129
|
168
169
|
msgid "Discovered hosts are rebooting now"
|
169
170
|
msgstr "Выполняется перезагрузка обнаруженных узлов"
|
170
171
|
|
@@ -296,58 +297,34 @@ msgstr "Не удалось автоматически подготовить у
|
|
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:277
|
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:282
|
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:296
|
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:300
|
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:306
|
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:10
|
348
|
-
msgid "%s ago"
|
349
|
-
msgstr "%s назад"
|
350
|
-
|
351
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 "Автоматическая подготовка"
|
@@ -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"
|
@@ -500,23 +481,23 @@ msgstr "Недействительные факты: строка не соде
|
|
500
481
|
msgid "Facts could not be imported"
|
501
482
|
msgstr ""
|
502
483
|
|
503
|
-
#: ../app/models/host/discovered.rb:
|
484
|
+
#: ../app/models/host/discovered.rb:155
|
504
485
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
505
486
|
msgstr "Не удалось получить факты с %{url}: %{error}"
|
506
487
|
|
507
|
-
#: ../app/models/host/discovered.rb:
|
488
|
+
#: ../app/models/host/discovered.rb:173
|
508
489
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
509
490
|
msgstr ""
|
510
491
|
|
511
|
-
#: ../app/models/host/discovered.rb:
|
492
|
+
#: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
|
512
493
|
msgid "Unable to perform %{action} on %{ips}"
|
513
494
|
msgstr ""
|
514
495
|
|
515
|
-
#: ../app/models/host/discovered.rb:
|
496
|
+
#: ../app/models/host/discovered.rb:196
|
516
497
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
517
498
|
msgstr ""
|
518
499
|
|
519
|
-
#: ../app/models/host/discovered.rb:
|
500
|
+
#: ../app/models/host/discovered.rb:220
|
520
501
|
msgid "Invalid hostname: Could not normalize the hostname"
|
521
502
|
msgstr "Не удалось нормализовать имя узла"
|
522
503
|
|
@@ -724,6 +705,14 @@ msgstr ""
|
|
724
705
|
msgid "Type of name generator"
|
725
706
|
msgstr ""
|
726
707
|
|
708
|
+
#: ../app/models/setting/discovered.rb:40
|
709
|
+
msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
|
710
|
+
msgstr ""
|
711
|
+
|
712
|
+
#: ../app/models/setting/discovered.rb:40
|
713
|
+
msgid "Prefer IPv6"
|
714
|
+
msgstr ""
|
715
|
+
|
727
716
|
#: ../app/services/foreman_discovery/fact_parser.rb:4
|
728
717
|
msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
|
729
718
|
msgstr ""
|
@@ -736,6 +725,34 @@ msgstr ""
|
|
736
725
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
737
726
|
msgstr ""
|
738
727
|
|
728
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
729
|
+
msgid "Highlights"
|
730
|
+
msgstr "Основные"
|
731
|
+
|
732
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
733
|
+
msgid "Storage"
|
734
|
+
msgstr "Хранение данных"
|
735
|
+
|
736
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
737
|
+
msgid "Hardware"
|
738
|
+
msgstr "Физическое"
|
739
|
+
|
740
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
741
|
+
msgid "Network"
|
742
|
+
msgstr "Сеть"
|
743
|
+
|
744
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
745
|
+
msgid "Software"
|
746
|
+
msgstr "Программы"
|
747
|
+
|
748
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
749
|
+
msgid "IPMI"
|
750
|
+
msgstr "IPMI"
|
751
|
+
|
752
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
753
|
+
msgid "Miscellaneous"
|
754
|
+
msgstr "Дополнительно"
|
755
|
+
|
739
756
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
740
757
|
msgid "IPAM must be configured for subnet '%s'"
|
741
758
|
msgstr ""
|
@@ -748,6 +765,10 @@ msgstr "API образа вернул ошибку HTTP/%{code}: '%{body}"
|
|
748
765
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
749
766
|
msgstr "API образа вернул ошибку HTTP/%{code}: %{msg} (body: %{body})"
|
750
767
|
|
768
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
769
|
+
msgid "Host %s has been dicovered"
|
770
|
+
msgstr ""
|
771
|
+
|
751
772
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
752
773
|
msgid "Discovered Host"
|
753
774
|
msgid_plural "Discovered Hosts"
|
@@ -780,7 +801,7 @@ msgstr ""
|
|
780
801
|
|
781
802
|
#: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:24
|
782
803
|
msgid "Create Host"
|
783
|
-
msgstr ""
|
804
|
+
msgstr "Создать Узел"
|
784
805
|
|
785
806
|
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
786
807
|
msgid "Select all items in this page"
|
@@ -806,11 +827,11 @@ msgstr ""
|
|
806
827
|
msgid "Disks Size"
|
807
828
|
msgstr ""
|
808
829
|
|
809
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
|
830
|
+
#: ../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
831
|
msgid "Location"
|
811
832
|
msgstr "Местоположение"
|
812
833
|
|
813
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
834
|
+
#: ../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
835
|
msgid "Organization"
|
815
836
|
msgstr "Организация"
|
816
837
|
|
@@ -822,7 +843,7 @@ msgstr "Подсеть"
|
|
822
843
|
msgid "Last Facts Upload"
|
823
844
|
msgstr ""
|
824
845
|
|
825
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:
|
846
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
826
847
|
msgid "Actions"
|
827
848
|
msgstr "Действия"
|
828
849
|
|
@@ -970,6 +991,10 @@ msgstr ""
|
|
970
991
|
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
992
|
msgstr ""
|
972
993
|
|
994
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
995
|
+
msgid "Clone %s"
|
996
|
+
msgstr "Клонировать %s"
|
997
|
+
|
973
998
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
974
999
|
msgid "Edit %s"
|
975
1000
|
msgstr "Изменить %s"
|
@@ -1002,7 +1027,7 @@ msgstr "Группа узлов"
|
|
1002
1027
|
msgid "Hosts/Limit"
|
1003
1028
|
msgstr ""
|
1004
1029
|
|
1005
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1030
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
1006
1031
|
msgid "DiscoveryRule|Enabled"
|
1007
1032
|
msgstr "Включено"
|
1008
1033
|
|
@@ -1023,8 +1048,8 @@ msgid "A summary of discovered hosts"
|
|
1023
1048
|
msgstr "Сводка состояния обнаруженных узлов"
|
1024
1049
|
|
1025
1050
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1026
|
-
msgid "
|
1027
|
-
msgstr "
|
1051
|
+
msgid "New hosts"
|
1052
|
+
msgstr ""
|
1028
1053
|
|
1029
1054
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1030
1055
|
msgid "One or more hosts have been discovered"
|
@@ -1034,42 +1059,50 @@ msgstr ""
|
|
1034
1059
|
msgid "Details"
|
1035
1060
|
msgstr "Свойства"
|
1036
1061
|
|
1037
|
-
#: ../
|
1062
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1063
|
+
msgid "Hosts"
|
1064
|
+
msgstr "Узлы"
|
1065
|
+
|
1066
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1067
|
+
msgid "Error message goes here"
|
1068
|
+
msgstr ""
|
1069
|
+
|
1070
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1038
1071
|
msgid "Discovery Kexec template"
|
1039
1072
|
msgstr ""
|
1040
1073
|
|
1041
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1074
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1042
1075
|
msgid "Discovery Proxy"
|
1043
1076
|
msgstr ""
|
1044
1077
|
|
1045
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1078
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1046
1079
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1047
1080
|
msgstr ""
|
1048
1081
|
|
1049
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1082
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1050
1083
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1051
1084
|
msgstr ""
|
1052
1085
|
|
1053
1086
|
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
|
1054
1087
|
msgid "For more information please see "
|
1055
|
-
msgstr ""
|
1088
|
+
msgstr "За подробной информацией обратитесь к"
|
1056
1089
|
|
1057
1090
|
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1058
1091
|
msgid "documentation"
|
1059
|
-
msgstr ""
|
1092
|
+
msgstr "документация"
|
1060
1093
|
|
1061
1094
|
#: action_names.rb:2
|
1062
|
-
msgid "
|
1063
|
-
msgstr "
|
1095
|
+
msgid "Remote action:"
|
1096
|
+
msgstr "Удаленное действие:"
|
1064
1097
|
|
1065
1098
|
#: action_names.rb:3
|
1066
|
-
msgid "Import facts"
|
1067
|
-
msgstr "Импорт фактов"
|
1068
|
-
|
1069
|
-
#: action_names.rb:4
|
1070
1099
|
msgid "Import Puppet classes"
|
1071
1100
|
msgstr "Импорт классов Puppet"
|
1072
1101
|
|
1102
|
+
#: action_names.rb:4
|
1103
|
+
msgid "Import facts"
|
1104
|
+
msgstr "Импорт фактов"
|
1105
|
+
|
1073
1106
|
#: action_names.rb:5
|
1074
|
-
msgid "
|
1075
|
-
msgstr "
|
1107
|
+
msgid "Action with sub plans"
|
1108
|
+
msgstr "Действия с подпланами"
|
@@ -10,9 +10,9 @@
|
|
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
|
-
"PO-Revision-Date:
|
15
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
16
16
|
"Last-Translator: Transifex Bot <>\n"
|
17
17
|
"Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
|
18
18
|
"\n"
|
@@ -27,9 +27,6 @@ msgstr ""
|
|
27
27
|
msgid "%s - The following hosts are about to be changed"
|
28
28
|
msgstr "%s — узлы будут изменены"
|
29
29
|
|
30
|
-
msgid "%s ago"
|
31
|
-
msgstr "%s назад"
|
32
|
-
|
33
30
|
msgid "%s discovered hosts were provisioned"
|
34
31
|
msgstr "Подготовлено узлов: %s"
|
35
32
|
|
@@ -40,7 +37,7 @@ msgid "A summary of discovered hosts"
|
|
40
37
|
msgstr "Сводка состояния обнаруженных узлов"
|
41
38
|
|
42
39
|
msgid "Action with sub plans"
|
43
|
-
msgstr ""
|
40
|
+
msgstr "Действия с подпланами"
|
44
41
|
|
45
42
|
msgid "Actions"
|
46
43
|
msgstr "Действия"
|
@@ -87,6 +84,12 @@ msgstr ""
|
|
87
84
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
88
85
|
msgstr ""
|
89
86
|
|
87
|
+
msgid "Clone"
|
88
|
+
msgstr ""
|
89
|
+
|
90
|
+
msgid "Clone %s"
|
91
|
+
msgstr ""
|
92
|
+
|
90
93
|
msgid "Collapse All"
|
91
94
|
msgstr "Свернуть все"
|
92
95
|
|
@@ -152,9 +155,15 @@ msgstr[1] ""
|
|
152
155
|
msgid "Discovered Hosts"
|
153
156
|
msgstr "Обнаруженные узлы"
|
154
157
|
|
158
|
+
msgid "Discovered Rules"
|
159
|
+
msgstr ""
|
160
|
+
|
155
161
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
156
162
|
msgstr ""
|
157
163
|
|
164
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
165
|
+
msgstr ""
|
166
|
+
|
158
167
|
msgid "Discovered host: %s"
|
159
168
|
msgstr "Обнаружен узел: %s"
|
160
169
|
|
@@ -167,6 +176,9 @@ msgstr "Выполняется перезагрузка обнаруженных
|
|
167
176
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
168
177
|
msgstr "Узлы, обнаруженные сервером Foreman %{foreman_url}"
|
169
178
|
|
179
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
180
|
+
msgstr ""
|
181
|
+
|
170
182
|
msgid "Discovered hosts summary"
|
171
183
|
msgstr "Сводка обнаруженных узлов"
|
172
184
|
|
@@ -233,6 +245,9 @@ msgstr "Включить"
|
|
233
245
|
msgid "Enable rule '%s'?"
|
234
246
|
msgstr "Включить правило «%s»?"
|
235
247
|
|
248
|
+
msgid "Error message goes here"
|
249
|
+
msgstr ""
|
250
|
+
|
236
251
|
msgid "Error on existing NIC"
|
237
252
|
msgstr ""
|
238
253
|
|
@@ -287,6 +302,9 @@ msgstr "Не удалось обновить факты %s"
|
|
287
302
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
288
303
|
msgstr "Не удалось обновить факты %{hostname}. Ошибка: %{error_message}"
|
289
304
|
|
305
|
+
msgid "For more information please see "
|
306
|
+
msgstr ""
|
307
|
+
|
290
308
|
msgid "Force DNS"
|
291
309
|
msgstr ""
|
292
310
|
|
@@ -311,6 +329,9 @@ msgstr "Основные"
|
|
311
329
|
msgid "Host"
|
312
330
|
msgstr "Узел"
|
313
331
|
|
332
|
+
msgid "Host %s has been dicovered"
|
333
|
+
msgstr ""
|
334
|
+
|
314
335
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
315
336
|
msgstr "%{host} был подготовлен в соответствии с правилом %{rule}"
|
316
337
|
|
@@ -335,10 +356,10 @@ msgid "Host of type %s can not be rebooted"
|
|
335
356
|
msgstr "Узел типа %s не может быть перезагружен"
|
336
357
|
|
337
358
|
msgid "Host's owner type"
|
338
|
-
msgstr ""
|
359
|
+
msgstr "Тип владельца узла"
|
339
360
|
|
340
361
|
msgid "Host's parameters (array or indexed hash)"
|
341
|
-
msgstr ""
|
362
|
+
msgstr "Параметры узла (массив или индексированный хэш)"
|
342
363
|
|
343
364
|
msgid "Hostname facts"
|
344
365
|
msgstr ""
|
@@ -389,10 +410,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
|
|
389
410
|
msgstr "API образа вернул ошибку HTTP/%{code}: '%{body}"
|
390
411
|
|
391
412
|
msgid "Import Puppet classes"
|
392
|
-
msgstr ""
|
413
|
+
msgstr "Импорт классов Puppet"
|
393
414
|
|
394
415
|
msgid "Import facts"
|
395
|
-
msgstr ""
|
416
|
+
msgstr "Импорт фактов"
|
396
417
|
|
397
418
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
398
419
|
msgstr ""
|
@@ -482,7 +503,7 @@ msgid "Name"
|
|
482
503
|
msgstr "Имя"
|
483
504
|
|
484
505
|
msgid "Name of the parameter"
|
485
|
-
msgstr ""
|
506
|
+
msgstr "Название параметра"
|
486
507
|
|
487
508
|
msgid "Network"
|
488
509
|
msgstr "Сеть"
|
@@ -493,6 +514,9 @@ msgstr ""
|
|
493
514
|
msgid "New Discovery Rule"
|
494
515
|
msgstr "Новое правило"
|
495
516
|
|
517
|
+
msgid "New hosts"
|
518
|
+
msgstr ""
|
519
|
+
|
496
520
|
msgid "New in the last 24 hours"
|
497
521
|
msgstr "Новое за последние 24 часа"
|
498
522
|
|
@@ -545,7 +569,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
|
|
545
569
|
msgstr ""
|
546
570
|
|
547
571
|
msgid "Parameter value"
|
548
|
-
msgstr ""
|
572
|
+
msgstr "Значение параметра"
|
549
573
|
|
550
574
|
msgid "Please Confirm"
|
551
575
|
msgstr "Подтвердите"
|
@@ -611,7 +635,7 @@ msgid "Reloading kernel on %s"
|
|
611
635
|
msgstr "Перезагрузка ядра на %s"
|
612
636
|
|
613
637
|
msgid "Remote action:"
|
614
|
-
msgstr ""
|
638
|
+
msgstr "Удаленное действие:"
|
615
639
|
|
616
640
|
msgid "Reported in the last 7 days"
|
617
641
|
msgstr "Были данные за последние 7 дней"
|
@@ -739,6 +763,9 @@ msgstr "не может содержать пробелов"
|
|
739
763
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
740
764
|
msgstr "шаблон для присвоения узлам понятных имен"
|
741
765
|
|
766
|
+
msgid "documentation"
|
767
|
+
msgstr ""
|
768
|
+
|
742
769
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
743
770
|
msgstr "максимальное число узлов для указанного правила"
|
744
771
|
|
@@ -788,13 +815,13 @@ msgid "represents rule name shown to the users"
|
|
788
815
|
msgstr "название правила, которое увидят пользователи"
|
789
816
|
|
790
817
|
msgid "required if host is managed and custom partition has not been defined"
|
791
|
-
msgstr ""
|
818
|
+
msgstr "требуется, если узел находится под управлением, но собственный раздел не был объявлен"
|
792
819
|
|
793
820
|
msgid "required if host is managed and value is not inherited from host group"
|
794
|
-
msgstr ""
|
821
|
+
msgstr "требуется, если узел уже контролируется, но значение не было унаследовано от группы узлов"
|
795
822
|
|
796
823
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
797
|
-
msgstr ""
|
824
|
+
msgstr "требуется, если подготовка управляемого узла осуществляется без участия образов и при этом значение не было унаследовано от группы узлов"
|
798
825
|
|
799
826
|
msgid "required if value is not inherited from host group or default password in settings"
|
800
827
|
msgstr "обязательно, если пароль не унаследован от группы узлов или заданного по умолчанию пароля"
|
Binary file
|