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
@@ -2,7 +2,7 @@
|
|
2
2
|
# This file is distributed under the same license as the foreman_discovery package.
|
3
3
|
msgid ""
|
4
4
|
msgstr ""
|
5
|
-
"Project-Id-Version: foreman_discovery
|
5
|
+
"Project-Id-Version: foreman_discovery 17.1.0\n"
|
6
6
|
"Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
|
7
7
|
"PO-Revision-Date: 2015-12-27 01:18+0000\n"
|
8
8
|
"Last-Translator: \n"
|
@@ -108,51 +108,51 @@ msgstr ""
|
|
108
108
|
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)"
|
109
109
|
msgstr ""
|
110
110
|
|
111
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
111
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
112
112
|
msgid "Execute rules against a discovered host"
|
113
113
|
msgstr ""
|
114
114
|
|
115
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
115
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
|
116
116
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
117
117
|
msgstr ""
|
118
118
|
|
119
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
119
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
120
120
|
msgid "Unable to provision %{host}: %{errors}"
|
121
121
|
msgstr ""
|
122
122
|
|
123
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
123
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
|
124
124
|
msgid "No rule found for host %s"
|
125
125
|
msgstr ""
|
126
126
|
|
127
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
127
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
128
128
|
msgid "Execute rules against all currently discovered hosts"
|
129
129
|
msgstr ""
|
130
130
|
|
131
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
131
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
|
132
132
|
msgid "Errors during auto provisioning: %s"
|
133
133
|
msgstr ""
|
134
134
|
|
135
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
135
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
|
136
136
|
msgid "No discovered hosts to provision"
|
137
137
|
msgstr ""
|
138
138
|
|
139
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
139
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
140
140
|
msgid "%s discovered hosts were provisioned"
|
141
141
|
msgstr ""
|
142
142
|
|
143
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
143
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
144
144
|
msgid "Refreshing the facts of a discovered host"
|
145
145
|
msgstr ""
|
146
146
|
|
147
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
147
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
148
148
|
msgid "Rebooting a discovered host"
|
149
149
|
msgstr ""
|
150
150
|
|
151
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
151
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
152
152
|
msgid "Rebooting all discovered hosts"
|
153
153
|
msgstr ""
|
154
154
|
|
155
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
155
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
|
156
156
|
msgid "Discovered hosts are rebooting now"
|
157
157
|
msgstr ""
|
158
158
|
|
@@ -284,58 +284,34 @@ msgstr ""
|
|
284
284
|
msgid "Discovered hosts are provisioning now"
|
285
285
|
msgstr ""
|
286
286
|
|
287
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
288
|
-
msgid "
|
289
|
-
msgstr ""
|
290
|
-
|
291
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
292
|
-
msgid "Storage"
|
293
|
-
msgstr ""
|
294
|
-
|
295
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
296
|
-
msgid "Hardware"
|
297
|
-
msgstr ""
|
298
|
-
|
299
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
300
|
-
msgid "Network"
|
301
|
-
msgstr ""
|
302
|
-
|
303
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
304
|
-
msgid "Software"
|
305
|
-
msgstr ""
|
306
|
-
|
307
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
308
|
-
msgid "IPMI"
|
287
|
+
#: ../app/controllers/discovered_hosts_controller.rb:277
|
288
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
309
289
|
msgstr ""
|
310
290
|
|
311
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
312
|
-
msgid "
|
291
|
+
#: ../app/controllers/discovered_hosts_controller.rb:282
|
292
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
313
293
|
msgstr ""
|
314
294
|
|
315
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
295
|
+
#: ../app/controllers/discovered_hosts_controller.rb:296
|
316
296
|
msgid "No hosts were found with that id or name"
|
317
297
|
msgstr ""
|
318
298
|
|
319
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
299
|
+
#: ../app/controllers/discovered_hosts_controller.rb:300
|
320
300
|
msgid "No hosts selected"
|
321
301
|
msgstr ""
|
322
302
|
|
323
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
303
|
+
#: ../app/controllers/discovered_hosts_controller.rb:306
|
324
304
|
msgid "Something went wrong while selecting hosts - %s"
|
325
305
|
msgstr ""
|
326
306
|
|
327
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
307
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
328
308
|
msgid "Rule enabled"
|
329
309
|
msgstr ""
|
330
310
|
|
331
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
311
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
332
312
|
msgid "Rule disabled"
|
333
313
|
msgstr ""
|
334
314
|
|
335
|
-
#: ../app/helpers/discovered_hosts_helper.rb:10
|
336
|
-
msgid "%s ago"
|
337
|
-
msgstr ""
|
338
|
-
|
339
315
|
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
340
316
|
msgid "Auto Provision"
|
341
317
|
msgstr ""
|
@@ -421,6 +397,10 @@ msgid "Enable rule '%s'?"
|
|
421
397
|
msgstr ""
|
422
398
|
|
423
399
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
400
|
+
msgid "Clone"
|
401
|
+
msgstr ""
|
402
|
+
|
403
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
424
404
|
msgid "Delete rule '%s'?"
|
425
405
|
msgstr ""
|
426
406
|
|
@@ -444,13 +424,13 @@ msgstr ""
|
|
444
424
|
msgid "must be present."
|
445
425
|
msgstr ""
|
446
426
|
|
447
|
-
#: ../app/models/discovery_rule.rb:
|
427
|
+
#: ../app/models/discovery_rule.rb:57
|
448
428
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
449
429
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
450
430
|
msgstr[0] ""
|
451
431
|
msgstr[1] ""
|
452
432
|
|
453
|
-
#: ../app/models/discovery_rule.rb:
|
433
|
+
#: ../app/models/discovery_rule.rb:61
|
454
434
|
msgid "Host group location %s must also be associated to the discovery rule"
|
455
435
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
456
436
|
msgstr[0] ""
|
@@ -484,23 +464,23 @@ msgstr ""
|
|
484
464
|
msgid "Facts could not be imported"
|
485
465
|
msgstr ""
|
486
466
|
|
487
|
-
#: ../app/models/host/discovered.rb:
|
467
|
+
#: ../app/models/host/discovered.rb:155
|
488
468
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
489
469
|
msgstr ""
|
490
470
|
|
491
|
-
#: ../app/models/host/discovered.rb:
|
471
|
+
#: ../app/models/host/discovered.rb:173
|
492
472
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
493
473
|
msgstr ""
|
494
474
|
|
495
|
-
#: ../app/models/host/discovered.rb:
|
475
|
+
#: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
|
496
476
|
msgid "Unable to perform %{action} on %{ips}"
|
497
477
|
msgstr ""
|
498
478
|
|
499
|
-
#: ../app/models/host/discovered.rb:
|
479
|
+
#: ../app/models/host/discovered.rb:196
|
500
480
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
501
481
|
msgstr ""
|
502
482
|
|
503
|
-
#: ../app/models/host/discovered.rb:
|
483
|
+
#: ../app/models/host/discovered.rb:220
|
504
484
|
msgid "Invalid hostname: Could not normalize the hostname"
|
505
485
|
msgstr ""
|
506
486
|
|
@@ -708,6 +688,14 @@ msgstr ""
|
|
708
688
|
msgid "Type of name generator"
|
709
689
|
msgstr ""
|
710
690
|
|
691
|
+
#: ../app/models/setting/discovered.rb:40
|
692
|
+
msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
|
693
|
+
msgstr ""
|
694
|
+
|
695
|
+
#: ../app/models/setting/discovered.rb:40
|
696
|
+
msgid "Prefer IPv6"
|
697
|
+
msgstr ""
|
698
|
+
|
711
699
|
#: ../app/services/foreman_discovery/fact_parser.rb:4
|
712
700
|
msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
|
713
701
|
msgstr ""
|
@@ -720,6 +708,34 @@ msgstr ""
|
|
720
708
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
721
709
|
msgstr ""
|
722
710
|
|
711
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
712
|
+
msgid "Highlights"
|
713
|
+
msgstr ""
|
714
|
+
|
715
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
716
|
+
msgid "Storage"
|
717
|
+
msgstr ""
|
718
|
+
|
719
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
720
|
+
msgid "Hardware"
|
721
|
+
msgstr ""
|
722
|
+
|
723
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
724
|
+
msgid "Network"
|
725
|
+
msgstr ""
|
726
|
+
|
727
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
728
|
+
msgid "Software"
|
729
|
+
msgstr ""
|
730
|
+
|
731
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
732
|
+
msgid "IPMI"
|
733
|
+
msgstr ""
|
734
|
+
|
735
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
736
|
+
msgid "Miscellaneous"
|
737
|
+
msgstr ""
|
738
|
+
|
723
739
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
724
740
|
msgid "IPAM must be configured for subnet '%s'"
|
725
741
|
msgstr ""
|
@@ -732,6 +748,10 @@ msgstr ""
|
|
732
748
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
733
749
|
msgstr ""
|
734
750
|
|
751
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
752
|
+
msgid "Host %s has been dicovered"
|
753
|
+
msgstr ""
|
754
|
+
|
735
755
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
736
756
|
msgid "Discovered Host"
|
737
757
|
msgid_plural "Discovered Hosts"
|
@@ -790,11 +810,11 @@ msgstr ""
|
|
790
810
|
msgid "Disks Size"
|
791
811
|
msgstr ""
|
792
812
|
|
793
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
|
813
|
+
#: ../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
|
794
814
|
msgid "Location"
|
795
815
|
msgstr ""
|
796
816
|
|
797
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
817
|
+
#: ../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
|
798
818
|
msgid "Organization"
|
799
819
|
msgstr ""
|
800
820
|
|
@@ -806,7 +826,7 @@ msgstr ""
|
|
806
826
|
msgid "Last Facts Upload"
|
807
827
|
msgstr ""
|
808
828
|
|
809
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:
|
829
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
810
830
|
msgid "Actions"
|
811
831
|
msgstr ""
|
812
832
|
|
@@ -954,6 +974,10 @@ msgstr ""
|
|
954
974
|
msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
955
975
|
msgstr ""
|
956
976
|
|
977
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
978
|
+
msgid "Clone %s"
|
979
|
+
msgstr ""
|
980
|
+
|
957
981
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
958
982
|
msgid "Edit %s"
|
959
983
|
msgstr ""
|
@@ -986,7 +1010,7 @@ msgstr ""
|
|
986
1010
|
msgid "Hosts/Limit"
|
987
1011
|
msgstr ""
|
988
1012
|
|
989
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1013
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
990
1014
|
msgid "DiscoveryRule|Enabled"
|
991
1015
|
msgstr ""
|
992
1016
|
|
@@ -1007,7 +1031,7 @@ msgid "A summary of discovered hosts"
|
|
1007
1031
|
msgstr ""
|
1008
1032
|
|
1009
1033
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1010
|
-
msgid "
|
1034
|
+
msgid "New hosts"
|
1011
1035
|
msgstr ""
|
1012
1036
|
|
1013
1037
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
@@ -1018,19 +1042,27 @@ msgstr ""
|
|
1018
1042
|
msgid "Details"
|
1019
1043
|
msgstr ""
|
1020
1044
|
|
1021
|
-
#: ../
|
1045
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1046
|
+
msgid "Hosts"
|
1047
|
+
msgstr ""
|
1048
|
+
|
1049
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1050
|
+
msgid "Error message goes here"
|
1051
|
+
msgstr ""
|
1052
|
+
|
1053
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1022
1054
|
msgid "Discovery Kexec template"
|
1023
1055
|
msgstr ""
|
1024
1056
|
|
1025
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1057
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1026
1058
|
msgid "Discovery Proxy"
|
1027
1059
|
msgstr ""
|
1028
1060
|
|
1029
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1061
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1030
1062
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1031
1063
|
msgstr ""
|
1032
1064
|
|
1033
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1065
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1034
1066
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1035
1067
|
msgstr ""
|
1036
1068
|
|
@@ -1043,17 +1075,17 @@ msgid "documentation"
|
|
1043
1075
|
msgstr ""
|
1044
1076
|
|
1045
1077
|
#: action_names.rb:2
|
1046
|
-
msgid "
|
1078
|
+
msgid "Remote action:"
|
1047
1079
|
msgstr ""
|
1048
1080
|
|
1049
1081
|
#: action_names.rb:3
|
1050
|
-
msgid "Import
|
1082
|
+
msgid "Import Puppet classes"
|
1051
1083
|
msgstr ""
|
1052
1084
|
|
1053
1085
|
#: action_names.rb:4
|
1054
|
-
msgid "Import
|
1086
|
+
msgid "Import facts"
|
1055
1087
|
msgstr ""
|
1056
1088
|
|
1057
1089
|
#: action_names.rb:5
|
1058
|
-
msgid "
|
1090
|
+
msgid "Action with sub plans"
|
1059
1091
|
msgstr ""
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# This file is distributed under the same license as the foreman_discovery package.
|
3
3
|
msgid ""
|
4
4
|
msgstr ""
|
5
|
-
"Project-Id-Version: foreman_discovery 16.
|
5
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
6
6
|
"Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
|
7
7
|
"PO-Revision-Date: 2015-12-27 01:18+0000\n"
|
8
8
|
"Last-Translator: \n"
|
@@ -15,9 +15,6 @@ msgstr ""
|
|
15
15
|
msgid "%s - The following hosts are about to be changed"
|
16
16
|
msgstr ""
|
17
17
|
|
18
|
-
msgid "%s ago"
|
19
|
-
msgstr ""
|
20
|
-
|
21
18
|
msgid "%s discovered hosts were provisioned"
|
22
19
|
msgstr ""
|
23
20
|
|
@@ -75,6 +72,12 @@ msgstr ""
|
|
75
72
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
76
73
|
msgstr ""
|
77
74
|
|
75
|
+
msgid "Clone"
|
76
|
+
msgstr ""
|
77
|
+
|
78
|
+
msgid "Clone %s"
|
79
|
+
msgstr ""
|
80
|
+
|
78
81
|
msgid "Collapse All"
|
79
82
|
msgstr ""
|
80
83
|
|
@@ -140,9 +143,15 @@ msgstr[1] ""
|
|
140
143
|
msgid "Discovered Hosts"
|
141
144
|
msgstr ""
|
142
145
|
|
146
|
+
msgid "Discovered Rules"
|
147
|
+
msgstr ""
|
148
|
+
|
143
149
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
144
150
|
msgstr ""
|
145
151
|
|
152
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
153
|
+
msgstr ""
|
154
|
+
|
146
155
|
msgid "Discovered host: %s"
|
147
156
|
msgstr ""
|
148
157
|
|
@@ -155,6 +164,9 @@ msgstr ""
|
|
155
164
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
156
165
|
msgstr ""
|
157
166
|
|
167
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
168
|
+
msgstr ""
|
169
|
+
|
158
170
|
msgid "Discovered hosts summary"
|
159
171
|
msgstr ""
|
160
172
|
|
@@ -221,6 +233,9 @@ msgstr ""
|
|
221
233
|
msgid "Enable rule '%s'?"
|
222
234
|
msgstr ""
|
223
235
|
|
236
|
+
msgid "Error message goes here"
|
237
|
+
msgstr ""
|
238
|
+
|
224
239
|
msgid "Error on existing NIC"
|
225
240
|
msgstr ""
|
226
241
|
|
@@ -275,6 +290,9 @@ msgstr ""
|
|
275
290
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
276
291
|
msgstr ""
|
277
292
|
|
293
|
+
msgid "For more information please see "
|
294
|
+
msgstr ""
|
295
|
+
|
278
296
|
msgid "Force DNS"
|
279
297
|
msgstr ""
|
280
298
|
|
@@ -299,6 +317,9 @@ msgstr ""
|
|
299
317
|
msgid "Host"
|
300
318
|
msgstr ""
|
301
319
|
|
320
|
+
msgid "Host %s has been dicovered"
|
321
|
+
msgstr ""
|
322
|
+
|
302
323
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
303
324
|
msgstr ""
|
304
325
|
|
@@ -477,6 +498,9 @@ msgstr ""
|
|
477
498
|
msgid "New Discovery Rule"
|
478
499
|
msgstr ""
|
479
500
|
|
501
|
+
msgid "New hosts"
|
502
|
+
msgstr ""
|
503
|
+
|
480
504
|
msgid "New in the last 24 hours"
|
481
505
|
msgstr ""
|
482
506
|
|
@@ -723,6 +747,9 @@ msgstr ""
|
|
723
747
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
724
748
|
msgstr ""
|
725
749
|
|
750
|
+
msgid "documentation"
|
751
|
+
msgstr ""
|
752
|
+
|
726
753
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
727
754
|
msgstr ""
|
728
755
|
|
Binary file
|