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
@@ -8,10 +8,11 @@
|
|
8
8
|
# johnny.westerlund <johnny.westerlund@gmail.com>, 2014
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
|
-
"Project-Id-Version: foreman_discovery
|
11
|
+
"Project-Id-Version: foreman_discovery 17.1.0\n"
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
13
|
-
"
|
14
|
-
"
|
13
|
+
"POT-Creation-Date: 2021-09-20 17:25+0200\n"
|
14
|
+
"PO-Revision-Date: 2021-05-03 08:29+0000\n"
|
15
|
+
"Last-Translator: johnny.westerlund <johnny.westerlund@gmail.com>\n"
|
15
16
|
"Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/lang"
|
16
17
|
"uage/sv_SE/)\n"
|
17
18
|
"MIME-Version: 1.0\n"
|
@@ -116,51 +117,51 @@ msgstr ""
|
|
116
117
|
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)"
|
117
118
|
msgstr ""
|
118
119
|
|
119
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
120
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
120
121
|
msgid "Execute rules against a discovered host"
|
121
122
|
msgstr ""
|
122
123
|
|
123
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
124
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
|
124
125
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
125
126
|
msgstr ""
|
126
127
|
|
127
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
128
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
128
129
|
msgid "Unable to provision %{host}: %{errors}"
|
129
130
|
msgstr ""
|
130
131
|
|
131
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
132
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
|
132
133
|
msgid "No rule found for host %s"
|
133
134
|
msgstr ""
|
134
135
|
|
135
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
136
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
136
137
|
msgid "Execute rules against all currently discovered hosts"
|
137
138
|
msgstr ""
|
138
139
|
|
139
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
140
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
|
140
141
|
msgid "Errors during auto provisioning: %s"
|
141
142
|
msgstr ""
|
142
143
|
|
143
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
144
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
|
144
145
|
msgid "No discovered hosts to provision"
|
145
146
|
msgstr ""
|
146
147
|
|
147
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
148
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
148
149
|
msgid "%s discovered hosts were provisioned"
|
149
150
|
msgstr ""
|
150
151
|
|
151
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
152
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
152
153
|
msgid "Refreshing the facts of a discovered host"
|
153
154
|
msgstr ""
|
154
155
|
|
155
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
156
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
156
157
|
msgid "Rebooting 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:210
|
160
161
|
msgid "Rebooting all discovered hosts"
|
161
162
|
msgstr ""
|
162
163
|
|
163
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
164
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
|
164
165
|
msgid "Discovered hosts are rebooting now"
|
165
166
|
msgstr ""
|
166
167
|
|
@@ -292,58 +293,34 @@ msgstr ""
|
|
292
293
|
msgid "Discovered hosts are provisioning now"
|
293
294
|
msgstr ""
|
294
295
|
|
295
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
296
|
-
msgid "
|
297
|
-
msgstr ""
|
298
|
-
|
299
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
300
|
-
msgid "Storage"
|
301
|
-
msgstr ""
|
302
|
-
|
303
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
304
|
-
msgid "Hardware"
|
305
|
-
msgstr ""
|
306
|
-
|
307
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
308
|
-
msgid "Network"
|
309
|
-
msgstr ""
|
310
|
-
|
311
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
312
|
-
msgid "Software"
|
296
|
+
#: ../app/controllers/discovered_hosts_controller.rb:277
|
297
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
313
298
|
msgstr ""
|
314
299
|
|
315
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
316
|
-
msgid "
|
300
|
+
#: ../app/controllers/discovered_hosts_controller.rb:282
|
301
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
317
302
|
msgstr ""
|
318
303
|
|
319
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
320
|
-
msgid "Miscellaneous"
|
321
|
-
msgstr ""
|
322
|
-
|
323
|
-
#: ../app/controllers/discovered_hosts_controller.rb:304
|
304
|
+
#: ../app/controllers/discovered_hosts_controller.rb:296
|
324
305
|
msgid "No hosts were found with that id or name"
|
325
306
|
msgstr "Inga värdar med det idt eller namnet hittades"
|
326
307
|
|
327
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
308
|
+
#: ../app/controllers/discovered_hosts_controller.rb:300
|
328
309
|
msgid "No hosts selected"
|
329
310
|
msgstr "Inga värdar markerade"
|
330
311
|
|
331
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
312
|
+
#: ../app/controllers/discovered_hosts_controller.rb:306
|
332
313
|
msgid "Something went wrong while selecting hosts - %s"
|
333
314
|
msgstr "Något blev fel vid markering av värdar - %s"
|
334
315
|
|
335
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
316
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
336
317
|
msgid "Rule enabled"
|
337
318
|
msgstr ""
|
338
319
|
|
339
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
320
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
340
321
|
msgid "Rule disabled"
|
341
322
|
msgstr ""
|
342
323
|
|
343
|
-
#: ../app/helpers/discovered_hosts_helper.rb:10
|
344
|
-
msgid "%s ago"
|
345
|
-
msgstr "%s sedan"
|
346
|
-
|
347
324
|
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
348
325
|
msgid "Auto Provision"
|
349
326
|
msgstr ""
|
@@ -429,6 +406,10 @@ msgid "Enable rule '%s'?"
|
|
429
406
|
msgstr ""
|
430
407
|
|
431
408
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
409
|
+
msgid "Clone"
|
410
|
+
msgstr "Klona"
|
411
|
+
|
412
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
432
413
|
msgid "Delete rule '%s'?"
|
433
414
|
msgstr ""
|
434
415
|
|
@@ -452,13 +433,13 @@ msgstr ""
|
|
452
433
|
msgid "must be present."
|
453
434
|
msgstr ""
|
454
435
|
|
455
|
-
#: ../app/models/discovery_rule.rb:
|
436
|
+
#: ../app/models/discovery_rule.rb:57
|
456
437
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
457
438
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
458
439
|
msgstr[0] ""
|
459
440
|
msgstr[1] ""
|
460
441
|
|
461
|
-
#: ../app/models/discovery_rule.rb:
|
442
|
+
#: ../app/models/discovery_rule.rb:61
|
462
443
|
msgid "Host group location %s must also be associated to the discovery rule"
|
463
444
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
464
445
|
msgstr[0] ""
|
@@ -492,23 +473,23 @@ msgstr ""
|
|
492
473
|
msgid "Facts could not be imported"
|
493
474
|
msgstr ""
|
494
475
|
|
495
|
-
#: ../app/models/host/discovered.rb:
|
476
|
+
#: ../app/models/host/discovered.rb:155
|
496
477
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
497
478
|
msgstr ""
|
498
479
|
|
499
|
-
#: ../app/models/host/discovered.rb:
|
480
|
+
#: ../app/models/host/discovered.rb:173
|
500
481
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
501
482
|
msgstr ""
|
502
483
|
|
503
|
-
#: ../app/models/host/discovered.rb:
|
484
|
+
#: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
|
504
485
|
msgid "Unable to perform %{action} on %{ips}"
|
505
486
|
msgstr ""
|
506
487
|
|
507
|
-
#: ../app/models/host/discovered.rb:
|
488
|
+
#: ../app/models/host/discovered.rb:196
|
508
489
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
509
490
|
msgstr ""
|
510
491
|
|
511
|
-
#: ../app/models/host/discovered.rb:
|
492
|
+
#: ../app/models/host/discovered.rb:220
|
512
493
|
msgid "Invalid hostname: Could not normalize the hostname"
|
513
494
|
msgstr ""
|
514
495
|
|
@@ -716,6 +697,14 @@ msgstr ""
|
|
716
697
|
msgid "Type of name generator"
|
717
698
|
msgstr ""
|
718
699
|
|
700
|
+
#: ../app/models/setting/discovered.rb:40
|
701
|
+
msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
|
702
|
+
msgstr ""
|
703
|
+
|
704
|
+
#: ../app/models/setting/discovered.rb:40
|
705
|
+
msgid "Prefer IPv6"
|
706
|
+
msgstr ""
|
707
|
+
|
719
708
|
#: ../app/services/foreman_discovery/fact_parser.rb:4
|
720
709
|
msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
|
721
710
|
msgstr ""
|
@@ -728,6 +717,34 @@ msgstr ""
|
|
728
717
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
729
718
|
msgstr ""
|
730
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 ""
|
743
|
+
|
744
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
745
|
+
msgid "Miscellaneous"
|
746
|
+
msgstr ""
|
747
|
+
|
731
748
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
732
749
|
msgid "IPAM must be configured for subnet '%s'"
|
733
750
|
msgstr ""
|
@@ -740,6 +757,10 @@ msgstr ""
|
|
740
757
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
741
758
|
msgstr ""
|
742
759
|
|
760
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
761
|
+
msgid "Host %s has been dicovered"
|
762
|
+
msgstr ""
|
763
|
+
|
743
764
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
744
765
|
msgid "Discovered Host"
|
745
766
|
msgid_plural "Discovered Hosts"
|
@@ -798,11 +819,11 @@ msgstr ""
|
|
798
819
|
msgid "Disks Size"
|
799
820
|
msgstr ""
|
800
821
|
|
801
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
|
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
|
802
823
|
msgid "Location"
|
803
824
|
msgstr "Lokation"
|
804
825
|
|
805
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
|
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
|
806
827
|
msgid "Organization"
|
807
828
|
msgstr "Organisation"
|
808
829
|
|
@@ -814,7 +835,7 @@ msgstr "Subnät"
|
|
814
835
|
msgid "Last Facts Upload"
|
815
836
|
msgstr ""
|
816
837
|
|
817
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:
|
838
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
818
839
|
msgid "Actions"
|
819
840
|
msgstr "Åtgärder"
|
820
841
|
|
@@ -962,6 +983,10 @@ msgstr ""
|
|
962
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)."
|
963
984
|
msgstr ""
|
964
985
|
|
986
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
987
|
+
msgid "Clone %s"
|
988
|
+
msgstr "Klona %s"
|
989
|
+
|
965
990
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
966
991
|
msgid "Edit %s"
|
967
992
|
msgstr "Redigera %s"
|
@@ -994,7 +1019,7 @@ msgstr ""
|
|
994
1019
|
msgid "Hosts/Limit"
|
995
1020
|
msgstr ""
|
996
1021
|
|
997
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1022
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
998
1023
|
msgid "DiscoveryRule|Enabled"
|
999
1024
|
msgstr ""
|
1000
1025
|
|
@@ -1015,7 +1040,7 @@ msgid "A summary of discovered hosts"
|
|
1015
1040
|
msgstr ""
|
1016
1041
|
|
1017
1042
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1018
|
-
msgid "
|
1043
|
+
msgid "New hosts"
|
1019
1044
|
msgstr ""
|
1020
1045
|
|
1021
1046
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
@@ -1026,19 +1051,27 @@ msgstr ""
|
|
1026
1051
|
msgid "Details"
|
1027
1052
|
msgstr ""
|
1028
1053
|
|
1029
|
-
#: ../
|
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
|
1030
1063
|
msgid "Discovery Kexec template"
|
1031
1064
|
msgstr ""
|
1032
1065
|
|
1033
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1066
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1034
1067
|
msgid "Discovery Proxy"
|
1035
1068
|
msgstr ""
|
1036
1069
|
|
1037
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1070
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1038
1071
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1039
1072
|
msgstr ""
|
1040
1073
|
|
1041
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1074
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1042
1075
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1043
1076
|
msgstr ""
|
1044
1077
|
|
@@ -1051,17 +1084,17 @@ msgid "documentation"
|
|
1051
1084
|
msgstr ""
|
1052
1085
|
|
1053
1086
|
#: action_names.rb:2
|
1054
|
-
msgid "
|
1087
|
+
msgid "Remote action:"
|
1055
1088
|
msgstr ""
|
1056
1089
|
|
1057
1090
|
#: action_names.rb:3
|
1058
|
-
msgid "Import
|
1091
|
+
msgid "Import Puppet classes"
|
1059
1092
|
msgstr ""
|
1060
1093
|
|
1061
1094
|
#: action_names.rb:4
|
1062
|
-
msgid "Import
|
1095
|
+
msgid "Import facts"
|
1063
1096
|
msgstr ""
|
1064
1097
|
|
1065
1098
|
#: action_names.rb:5
|
1066
|
-
msgid "
|
1099
|
+
msgid "Action with sub plans"
|
1067
1100
|
msgstr ""
|
@@ -8,9 +8,9 @@
|
|
8
8
|
# johnny.westerlund <johnny.westerlund@gmail.com>, 2014
|
9
9
|
msgid ""
|
10
10
|
msgstr ""
|
11
|
-
"Project-Id-Version: foreman_discovery 16.
|
11
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
13
|
-
"PO-Revision-Date:
|
13
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
14
14
|
"Last-Translator: Transifex Bot <>\n"
|
15
15
|
"Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/lang"
|
16
16
|
"uage/sv_SE/)\n"
|
@@ -23,9 +23,6 @@ msgstr ""
|
|
23
23
|
msgid "%s - The following hosts are about to be changed"
|
24
24
|
msgstr "%s - Följande värdar kommer att ändras"
|
25
25
|
|
26
|
-
msgid "%s ago"
|
27
|
-
msgstr "%s sedan"
|
28
|
-
|
29
26
|
msgid "%s discovered hosts were provisioned"
|
30
27
|
msgstr ""
|
31
28
|
|
@@ -83,6 +80,12 @@ msgstr ""
|
|
83
80
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
84
81
|
msgstr ""
|
85
82
|
|
83
|
+
msgid "Clone"
|
84
|
+
msgstr ""
|
85
|
+
|
86
|
+
msgid "Clone %s"
|
87
|
+
msgstr ""
|
88
|
+
|
86
89
|
msgid "Collapse All"
|
87
90
|
msgstr ""
|
88
91
|
|
@@ -148,9 +151,15 @@ msgstr[1] ""
|
|
148
151
|
msgid "Discovered Hosts"
|
149
152
|
msgstr "Hittade värdar"
|
150
153
|
|
154
|
+
msgid "Discovered Rules"
|
155
|
+
msgstr ""
|
156
|
+
|
151
157
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
152
158
|
msgstr ""
|
153
159
|
|
160
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
161
|
+
msgstr ""
|
162
|
+
|
154
163
|
msgid "Discovered host: %s"
|
155
164
|
msgstr "Hittade värdar: %s"
|
156
165
|
|
@@ -163,6 +172,9 @@ msgstr ""
|
|
163
172
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
164
173
|
msgstr ""
|
165
174
|
|
175
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
176
|
+
msgstr ""
|
177
|
+
|
166
178
|
msgid "Discovered hosts summary"
|
167
179
|
msgstr ""
|
168
180
|
|
@@ -229,6 +241,9 @@ msgstr ""
|
|
229
241
|
msgid "Enable rule '%s'?"
|
230
242
|
msgstr ""
|
231
243
|
|
244
|
+
msgid "Error message goes here"
|
245
|
+
msgstr ""
|
246
|
+
|
232
247
|
msgid "Error on existing NIC"
|
233
248
|
msgstr ""
|
234
249
|
|
@@ -283,6 +298,9 @@ msgstr "Misslyckades med att uppdatera fakta för %s"
|
|
283
298
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
284
299
|
msgstr ""
|
285
300
|
|
301
|
+
msgid "For more information please see "
|
302
|
+
msgstr ""
|
303
|
+
|
286
304
|
msgid "Force DNS"
|
287
305
|
msgstr ""
|
288
306
|
|
@@ -307,6 +325,9 @@ msgstr ""
|
|
307
325
|
msgid "Host"
|
308
326
|
msgstr "Värd"
|
309
327
|
|
328
|
+
msgid "Host %s has been dicovered"
|
329
|
+
msgstr ""
|
330
|
+
|
310
331
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
311
332
|
msgstr ""
|
312
333
|
|
@@ -474,7 +495,7 @@ msgid "Name"
|
|
474
495
|
msgstr "Namn"
|
475
496
|
|
476
497
|
msgid "Name of the parameter"
|
477
|
-
msgstr ""
|
498
|
+
msgstr "Parameterns namn"
|
478
499
|
|
479
500
|
msgid "Network"
|
480
501
|
msgstr ""
|
@@ -485,6 +506,9 @@ msgstr ""
|
|
485
506
|
msgid "New Discovery Rule"
|
486
507
|
msgstr ""
|
487
508
|
|
509
|
+
msgid "New hosts"
|
510
|
+
msgstr ""
|
511
|
+
|
488
512
|
msgid "New in the last 24 hours"
|
489
513
|
msgstr ""
|
490
514
|
|
@@ -537,7 +561,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
|
|
537
561
|
msgstr ""
|
538
562
|
|
539
563
|
msgid "Parameter value"
|
540
|
-
msgstr ""
|
564
|
+
msgstr "Parametervärde"
|
541
565
|
|
542
566
|
msgid "Please Confirm"
|
543
567
|
msgstr "Var god, bekräfta"
|
@@ -731,6 +755,9 @@ msgstr ""
|
|
731
755
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
732
756
|
msgstr ""
|
733
757
|
|
758
|
+
msgid "documentation"
|
759
|
+
msgstr ""
|
760
|
+
|
734
761
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
735
762
|
msgstr ""
|
736
763
|
|
Binary file
|