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,9 +10,10 @@
|
|
10
10
|
# Lukáš Zapletal, 2015
|
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
|
-
"
|
15
|
+
"POT-Creation-Date: 2021-09-20 17:25+0200\n"
|
16
|
+
"PO-Revision-Date: 2021-05-03 08:28+0000\n"
|
16
17
|
"Last-Translator: Transifex Bot <>\n"
|
17
18
|
"Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/fore"
|
18
19
|
"man/language/en_GB/)\n"
|
@@ -118,51 +119,51 @@ msgstr "Upload facts for a host, creating the host if required"
|
|
118
119
|
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
120
|
msgstr "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)"
|
120
121
|
|
121
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
122
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
122
123
|
msgid "Execute rules against a discovered host"
|
123
124
|
msgstr "Execute rules against a discovered host"
|
124
125
|
|
125
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
126
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
|
126
127
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
127
128
|
msgstr "Host %{host} was provisioned with rule %{rule}"
|
128
129
|
|
129
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
130
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
130
131
|
msgid "Unable to provision %{host}: %{errors}"
|
131
132
|
msgstr "Unable to provision %{host}: %{errors}"
|
132
133
|
|
133
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
134
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
|
134
135
|
msgid "No rule found for host %s"
|
135
136
|
msgstr "No rule found for host %s"
|
136
137
|
|
137
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
138
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
138
139
|
msgid "Execute rules against all currently discovered hosts"
|
139
140
|
msgstr "Execute rules against all currently discovered hosts"
|
140
141
|
|
141
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
142
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
|
142
143
|
msgid "Errors during auto provisioning: %s"
|
143
144
|
msgstr "Errors during auto provisioning: %s"
|
144
145
|
|
145
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
146
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
|
146
147
|
msgid "No discovered hosts to provision"
|
147
148
|
msgstr "No discovered hosts to provision"
|
148
149
|
|
149
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
150
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
150
151
|
msgid "%s discovered hosts were provisioned"
|
151
152
|
msgstr "%s discovered hosts were provisioned"
|
152
153
|
|
153
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
154
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
154
155
|
msgid "Refreshing the facts of a discovered host"
|
155
156
|
msgstr "Refreshing the facts of a discovered host"
|
156
157
|
|
157
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
158
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
158
159
|
msgid "Rebooting a discovered host"
|
159
160
|
msgstr "Rebooting a discovered host"
|
160
161
|
|
161
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
162
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
162
163
|
msgid "Rebooting all discovered hosts"
|
163
164
|
msgstr "Rebooting all discovered hosts"
|
164
165
|
|
165
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
166
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
|
166
167
|
msgid "Discovered hosts are rebooting now"
|
167
168
|
msgstr "Discovered hosts are rebooting now"
|
168
169
|
|
@@ -294,58 +295,34 @@ msgstr "Failed to auto provision host %s: %s"
|
|
294
295
|
msgid "Discovered hosts are provisioning now"
|
295
296
|
msgstr "Discovered hosts are provisioning now"
|
296
297
|
|
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 "Storage"
|
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 "Network"
|
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"
|
298
|
+
#: ../app/controllers/discovered_hosts_controller.rb:277
|
299
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
300
|
+
msgstr ""
|
320
301
|
|
321
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
322
|
-
msgid "
|
323
|
-
msgstr "
|
302
|
+
#: ../app/controllers/discovered_hosts_controller.rb:282
|
303
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
304
|
+
msgstr ""
|
324
305
|
|
325
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
306
|
+
#: ../app/controllers/discovered_hosts_controller.rb:296
|
326
307
|
msgid "No hosts were found with that id or name"
|
327
308
|
msgstr "No hosts were found with that id or name"
|
328
309
|
|
329
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
310
|
+
#: ../app/controllers/discovered_hosts_controller.rb:300
|
330
311
|
msgid "No hosts selected"
|
331
312
|
msgstr "No hosts selected"
|
332
313
|
|
333
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
314
|
+
#: ../app/controllers/discovered_hosts_controller.rb:306
|
334
315
|
msgid "Something went wrong while selecting hosts - %s"
|
335
316
|
msgstr "Something went wrong while selecting hosts - %s"
|
336
317
|
|
337
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
318
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
338
319
|
msgid "Rule enabled"
|
339
320
|
msgstr "Rule enabled"
|
340
321
|
|
341
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
322
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
342
323
|
msgid "Rule disabled"
|
343
324
|
msgstr "Rule disabled"
|
344
325
|
|
345
|
-
#: ../app/helpers/discovered_hosts_helper.rb:10
|
346
|
-
msgid "%s ago"
|
347
|
-
msgstr "%s ago"
|
348
|
-
|
349
326
|
#: ../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
327
|
msgid "Auto Provision"
|
351
328
|
msgstr "Auto Provision"
|
@@ -431,6 +408,10 @@ msgid "Enable rule '%s'?"
|
|
431
408
|
msgstr "Enable rule '%s'?"
|
432
409
|
|
433
410
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
411
|
+
msgid "Clone"
|
412
|
+
msgstr ""
|
413
|
+
|
414
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
434
415
|
msgid "Delete rule '%s'?"
|
435
416
|
msgstr "Delete rule '%s'?"
|
436
417
|
|
@@ -454,13 +435,13 @@ msgstr "must start with a letter or ERB."
|
|
454
435
|
msgid "must be present."
|
455
436
|
msgstr "must be present."
|
456
437
|
|
457
|
-
#: ../app/models/discovery_rule.rb:
|
438
|
+
#: ../app/models/discovery_rule.rb:57
|
458
439
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
459
440
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
460
441
|
msgstr[0] "Host group organisation %s must also be associated to the discovery rule"
|
461
442
|
msgstr[1] "Host group organisations %s must also be associated to the discovery rule"
|
462
443
|
|
463
|
-
#: ../app/models/discovery_rule.rb:
|
444
|
+
#: ../app/models/discovery_rule.rb:61
|
464
445
|
msgid "Host group location %s must also be associated to the discovery rule"
|
465
446
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
466
447
|
msgstr[0] "Host group location %s must also be associated to the discovery rule"
|
@@ -494,23 +475,23 @@ msgstr "Invalid facts: hash does not contain a valid value for any of the facts
|
|
494
475
|
msgid "Facts could not be imported"
|
495
476
|
msgstr "Facts could not be imported"
|
496
477
|
|
497
|
-
#: ../app/models/host/discovered.rb:
|
478
|
+
#: ../app/models/host/discovered.rb:155
|
498
479
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
499
480
|
msgstr "Could not get facts from proxy %{url}: %{error}"
|
500
481
|
|
501
|
-
#: ../app/models/host/discovered.rb:
|
482
|
+
#: ../app/models/host/discovered.rb:173
|
502
483
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
503
484
|
msgstr ""
|
504
485
|
|
505
|
-
#: ../app/models/host/discovered.rb:
|
486
|
+
#: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
|
506
487
|
msgid "Unable to perform %{action} on %{ips}"
|
507
488
|
msgstr ""
|
508
489
|
|
509
|
-
#: ../app/models/host/discovered.rb:
|
490
|
+
#: ../app/models/host/discovered.rb:196
|
510
491
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
511
492
|
msgstr ""
|
512
493
|
|
513
|
-
#: ../app/models/host/discovered.rb:
|
494
|
+
#: ../app/models/host/discovered.rb:220
|
514
495
|
msgid "Invalid hostname: Could not normalize the hostname"
|
515
496
|
msgstr "Invalid hostname: Could not normalise the hostname"
|
516
497
|
|
@@ -718,6 +699,14 @@ msgstr "Discovery hostname naming pattern"
|
|
718
699
|
msgid "Type of name generator"
|
719
700
|
msgstr "Type of name generator"
|
720
701
|
|
702
|
+
#: ../app/models/setting/discovered.rb:40
|
703
|
+
msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
|
704
|
+
msgstr ""
|
705
|
+
|
706
|
+
#: ../app/models/setting/discovered.rb:40
|
707
|
+
msgid "Prefer IPv6"
|
708
|
+
msgstr ""
|
709
|
+
|
721
710
|
#: ../app/services/foreman_discovery/fact_parser.rb:4
|
722
711
|
msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
|
723
712
|
msgstr "Discovery fact parser does not work with non-discovery host '%{host}'"
|
@@ -730,6 +719,34 @@ msgstr "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
|
730
719
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
731
720
|
msgstr "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
732
721
|
|
722
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
723
|
+
msgid "Highlights"
|
724
|
+
msgstr "Highlights"
|
725
|
+
|
726
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
727
|
+
msgid "Storage"
|
728
|
+
msgstr "Storage"
|
729
|
+
|
730
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
731
|
+
msgid "Hardware"
|
732
|
+
msgstr "Hardware"
|
733
|
+
|
734
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
735
|
+
msgid "Network"
|
736
|
+
msgstr "Network"
|
737
|
+
|
738
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
739
|
+
msgid "Software"
|
740
|
+
msgstr "Software"
|
741
|
+
|
742
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
743
|
+
msgid "IPMI"
|
744
|
+
msgstr "IPMI"
|
745
|
+
|
746
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
747
|
+
msgid "Miscellaneous"
|
748
|
+
msgstr "Miscellaneous"
|
749
|
+
|
733
750
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
734
751
|
msgid "IPAM must be configured for subnet '%s'"
|
735
752
|
msgstr "IPAM must be configured for subnet '%s'"
|
@@ -742,6 +759,10 @@ msgstr "Image API returned HTTP/%{code} with '%{body}"
|
|
742
759
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
743
760
|
msgstr "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
744
761
|
|
762
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
763
|
+
msgid "Host %s has been dicovered"
|
764
|
+
msgstr ""
|
765
|
+
|
745
766
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
746
767
|
msgid "Discovered Host"
|
747
768
|
msgid_plural "Discovered Hosts"
|
@@ -800,11 +821,11 @@ msgstr "Disk Count"
|
|
800
821
|
msgid "Disks Size"
|
801
822
|
msgstr "Disks Size"
|
802
823
|
|
803
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
|
824
|
+
#: ../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
825
|
msgid "Location"
|
805
826
|
msgstr "Location"
|
806
827
|
|
807
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
828
|
+
#: ../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
829
|
msgid "Organization"
|
809
830
|
msgstr "Organisation"
|
810
831
|
|
@@ -816,7 +837,7 @@ msgstr "Subnet"
|
|
816
837
|
msgid "Last Facts Upload"
|
817
838
|
msgstr "Last Facts Upload"
|
818
839
|
|
819
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:
|
840
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
820
841
|
msgid "Actions"
|
821
842
|
msgstr "Actions"
|
822
843
|
|
@@ -964,6 +985,10 @@ msgstr "When creating hostname patterns, make sure the resulting host names are
|
|
964
985
|
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
986
|
msgstr "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
966
987
|
|
988
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
989
|
+
msgid "Clone %s"
|
990
|
+
msgstr ""
|
991
|
+
|
967
992
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
968
993
|
msgid "Edit %s"
|
969
994
|
msgstr "Edit %s"
|
@@ -996,7 +1021,7 @@ msgstr "Host Group"
|
|
996
1021
|
msgid "Hosts/Limit"
|
997
1022
|
msgstr "Hosts/Limit"
|
998
1023
|
|
999
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1024
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
1000
1025
|
msgid "DiscoveryRule|Enabled"
|
1001
1026
|
msgstr "Enabled"
|
1002
1027
|
|
@@ -1017,8 +1042,8 @@ msgid "A summary of discovered hosts"
|
|
1017
1042
|
msgstr "A summary of discovered hosts"
|
1018
1043
|
|
1019
1044
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1020
|
-
msgid "
|
1021
|
-
msgstr "
|
1045
|
+
msgid "New hosts"
|
1046
|
+
msgstr ""
|
1022
1047
|
|
1023
1048
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1024
1049
|
msgid "One or more hosts have been discovered"
|
@@ -1028,19 +1053,27 @@ msgstr "One or more hosts have been discovered"
|
|
1028
1053
|
msgid "Details"
|
1029
1054
|
msgstr "Details"
|
1030
1055
|
|
1031
|
-
#: ../
|
1056
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1057
|
+
msgid "Hosts"
|
1058
|
+
msgstr "Hosts"
|
1059
|
+
|
1060
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1061
|
+
msgid "Error message goes here"
|
1062
|
+
msgstr ""
|
1063
|
+
|
1064
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1032
1065
|
msgid "Discovery Kexec template"
|
1033
1066
|
msgstr "Discovery Kexec template"
|
1034
1067
|
|
1035
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1068
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1036
1069
|
msgid "Discovery Proxy"
|
1037
1070
|
msgstr "Discovery Proxy"
|
1038
1071
|
|
1039
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1072
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1040
1073
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1041
1074
|
msgstr "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1042
1075
|
|
1043
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1076
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1044
1077
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1045
1078
|
msgstr "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1046
1079
|
|
@@ -1053,17 +1086,17 @@ msgid "documentation"
|
|
1053
1086
|
msgstr ""
|
1054
1087
|
|
1055
1088
|
#: action_names.rb:2
|
1056
|
-
msgid "
|
1057
|
-
msgstr "
|
1089
|
+
msgid "Remote action:"
|
1090
|
+
msgstr "Remote action:"
|
1058
1091
|
|
1059
1092
|
#: action_names.rb:3
|
1060
|
-
msgid "Import facts"
|
1061
|
-
msgstr "Import facts"
|
1062
|
-
|
1063
|
-
#: action_names.rb:4
|
1064
1093
|
msgid "Import Puppet classes"
|
1065
1094
|
msgstr "Import Puppet classes"
|
1066
1095
|
|
1096
|
+
#: action_names.rb:4
|
1097
|
+
msgid "Import facts"
|
1098
|
+
msgstr "Import facts"
|
1099
|
+
|
1067
1100
|
#: action_names.rb:5
|
1068
|
-
msgid "
|
1069
|
-
msgstr "
|
1101
|
+
msgid "Action with sub plans"
|
1102
|
+
msgstr "Action with sub plans"
|
@@ -10,9 +10,9 @@
|
|
10
10
|
# Lukáš Zapletal, 2015
|
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: English (United Kingdom) (http://www.transifex.com/foreman/fore"
|
18
18
|
"man/language/en_GB/)\n"
|
@@ -25,9 +25,6 @@ msgstr ""
|
|
25
25
|
msgid "%s - The following hosts are about to be changed"
|
26
26
|
msgstr "%s - The following hosts are about to be changed"
|
27
27
|
|
28
|
-
msgid "%s ago"
|
29
|
-
msgstr "%s ago"
|
30
|
-
|
31
28
|
msgid "%s discovered hosts were provisioned"
|
32
29
|
msgstr "%s discovered hosts were provisioned"
|
33
30
|
|
@@ -38,7 +35,7 @@ msgid "A summary of discovered hosts"
|
|
38
35
|
msgstr "A summary of discovered hosts"
|
39
36
|
|
40
37
|
msgid "Action with sub plans"
|
41
|
-
msgstr ""
|
38
|
+
msgstr "Action with sub plans"
|
42
39
|
|
43
40
|
msgid "Actions"
|
44
41
|
msgstr "Actions"
|
@@ -85,6 +82,12 @@ msgstr "Clean all facts"
|
|
85
82
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
86
83
|
msgstr "Clean all reported facts during provisioning (except discovery facts)"
|
87
84
|
|
85
|
+
msgid "Clone"
|
86
|
+
msgstr ""
|
87
|
+
|
88
|
+
msgid "Clone %s"
|
89
|
+
msgstr ""
|
90
|
+
|
88
91
|
msgid "Collapse All"
|
89
92
|
msgstr "Collapse All"
|
90
93
|
|
@@ -150,9 +153,15 @@ msgstr[1] ""
|
|
150
153
|
msgid "Discovered Hosts"
|
151
154
|
msgstr "Discovered Hosts"
|
152
155
|
|
156
|
+
msgid "Discovered Rules"
|
157
|
+
msgstr ""
|
158
|
+
|
153
159
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
154
160
|
msgstr "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
155
161
|
|
162
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
163
|
+
msgstr ""
|
164
|
+
|
156
165
|
msgid "Discovered host: %s"
|
157
166
|
msgstr "Discovered host: %s"
|
158
167
|
|
@@ -165,6 +174,9 @@ msgstr "Discovered hosts are rebooting now"
|
|
165
174
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
166
175
|
msgstr "Discovered hosts from Foreman server at %{foreman_url}"
|
167
176
|
|
177
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
178
|
+
msgstr ""
|
179
|
+
|
168
180
|
msgid "Discovered hosts summary"
|
169
181
|
msgstr "Discovered hosts summary"
|
170
182
|
|
@@ -231,6 +243,9 @@ msgstr "Enable"
|
|
231
243
|
msgid "Enable rule '%s'?"
|
232
244
|
msgstr "Enable rule '%s'?"
|
233
245
|
|
246
|
+
msgid "Error message goes here"
|
247
|
+
msgstr ""
|
248
|
+
|
234
249
|
msgid "Error on existing NIC"
|
235
250
|
msgstr "Error on existing NIC"
|
236
251
|
|
@@ -285,6 +300,9 @@ msgstr "Failed to refresh facts for %s"
|
|
285
300
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
286
301
|
msgstr "Failed to refresh facts for %{hostname} with error %{error_message}"
|
287
302
|
|
303
|
+
msgid "For more information please see "
|
304
|
+
msgstr ""
|
305
|
+
|
288
306
|
msgid "Force DNS"
|
289
307
|
msgstr "Force DNS"
|
290
308
|
|
@@ -309,6 +327,9 @@ msgstr "Highlights"
|
|
309
327
|
msgid "Host"
|
310
328
|
msgstr "Host"
|
311
329
|
|
330
|
+
msgid "Host %s has been dicovered"
|
331
|
+
msgstr ""
|
332
|
+
|
312
333
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
313
334
|
msgstr "Host %{host} was provisioned with rule %{rule}"
|
314
335
|
|
@@ -383,10 +404,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
|
|
383
404
|
msgstr "Image API returned HTTP/%{code} with '%{body}"
|
384
405
|
|
385
406
|
msgid "Import Puppet classes"
|
386
|
-
msgstr ""
|
407
|
+
msgstr "Import Puppet classes"
|
387
408
|
|
388
409
|
msgid "Import facts"
|
389
|
-
msgstr ""
|
410
|
+
msgstr "Import facts"
|
390
411
|
|
391
412
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
392
413
|
msgstr "In addition to @host attribute function rand for random integers is available. Examples:"
|
@@ -487,6 +508,9 @@ msgstr "Network facts"
|
|
487
508
|
msgid "New Discovery Rule"
|
488
509
|
msgstr "New Discovery Rule"
|
489
510
|
|
511
|
+
msgid "New hosts"
|
512
|
+
msgstr ""
|
513
|
+
|
490
514
|
msgid "New in the last 24 hours"
|
491
515
|
msgstr "New in the last 24 hours"
|
492
516
|
|
@@ -605,7 +629,7 @@ msgid "Reloading kernel on %s"
|
|
605
629
|
msgstr "Reloading kernel on %s"
|
606
630
|
|
607
631
|
msgid "Remote action:"
|
608
|
-
msgstr ""
|
632
|
+
msgstr "Remote action:"
|
609
633
|
|
610
634
|
msgid "Reported in the last 7 days"
|
611
635
|
msgstr "Reported in the last 7 days"
|
@@ -733,6 +757,9 @@ msgstr "can't contain white spaces."
|
|
733
757
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
734
758
|
msgstr "defines a pattern to assign human-readable hostnames to the matching hosts"
|
735
759
|
|
760
|
+
msgid "documentation"
|
761
|
+
msgstr ""
|
762
|
+
|
736
763
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
737
764
|
msgstr "enables to limit maximum amount of provisioned hosts per rule"
|
738
765
|
|
Binary file
|