foreman_discovery 16.0.0 → 16.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +24 -11
  3. data/app/controllers/api/v2/discovery_rules_controller.rb +1 -1
  4. data/app/controllers/discovered_hosts_controller.rb +5 -3
  5. data/app/controllers/discovery_rules_controller.rb +1 -1
  6. data/app/models/discovery_rule.rb +1 -1
  7. data/app/models/host/discovered.rb +52 -34
  8. data/app/models/host/managed_extensions.rb +2 -2
  9. data/app/models/setting/discovered.rb +3 -1
  10. data/app/services/foreman_discovery/host_converter.rb +15 -7
  11. data/app/services/foreman_discovery/host_fact_importer.rb +10 -0
  12. data/app/services/foreman_discovery/import_hooks/subnet_and_taxonomy.rb +2 -0
  13. data/app/services/foreman_discovery/node_api/node_resource.rb +1 -0
  14. data/app/views/api/v2/discovery_rules/create.json.rabl +3 -0
  15. data/app/views/discovered_hosts/_discovered_host_modal.html.erb +0 -2
  16. data/app/views/discovered_hosts/welcome.html.erb +15 -9
  17. data/app/views/discovery_rules/index.html.erb +1 -1
  18. data/app/views/foreman_discovery/debian_kexec.erb +3 -2
  19. data/app/views/foreman_discovery/redhat_kexec.erb +2 -1
  20. data/db/migrate/20150512150432_remove_old_discovery_reader_permissions.rb +1 -1
  21. data/db/migrate/20151023144501_regenerate_red_hat_kexec.rb +1 -1
  22. data/db/migrate/20180412124505_add_priority_score_to_discovery_rules.rb +1 -1
  23. data/extra/discover-host +14 -8
  24. data/lib/foreman_discovery/engine.rb +5 -4
  25. data/lib/foreman_discovery/version.rb +1 -1
  26. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  27. data/locale/ca/foreman_discovery.edit.po +195 -252
  28. data/locale/ca/foreman_discovery.po +40 -17
  29. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/de/foreman_discovery.edit.po +201 -257
  31. data/locale/de/foreman_discovery.po +46 -23
  32. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/en/foreman_discovery.edit.po +141 -111
  34. data/locale/en/foreman_discovery.po +36 -13
  35. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  36. data/locale/en_GB/foreman_discovery.edit.po +205 -254
  37. data/locale/en_GB/foreman_discovery.po +42 -19
  38. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  39. data/locale/es/foreman_discovery.edit.po +209 -258
  40. data/locale/es/foreman_discovery.po +46 -23
  41. data/locale/foreman_discovery.pot +150 -117
  42. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/fr/foreman_discovery.edit.po +203 -255
  44. data/locale/fr/foreman_discovery.po +44 -21
  45. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/gl/foreman_discovery.edit.po +190 -250
  47. data/locale/gl/foreman_discovery.po +38 -15
  48. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/it/foreman_discovery.edit.po +193 -253
  50. data/locale/it/foreman_discovery.po +41 -18
  51. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  52. data/locale/ja/foreman_discovery.edit.po +207 -256
  53. data/locale/ja/foreman_discovery.po +44 -21
  54. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  55. data/locale/ko/foreman_discovery.edit.po +196 -255
  56. data/locale/ko/foreman_discovery.po +44 -21
  57. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  58. data/locale/pt_BR/foreman_discovery.edit.po +205 -256
  59. data/locale/pt_BR/foreman_discovery.po +44 -21
  60. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  61. data/locale/ru/foreman_discovery.edit.po +199 -257
  62. data/locale/ru/foreman_discovery.po +44 -21
  63. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  64. data/locale/sv_SE/foreman_discovery.edit.po +190 -250
  65. data/locale/sv_SE/foreman_discovery.po +38 -15
  66. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  67. data/locale/zh_CN/foreman_discovery.edit.po +207 -256
  68. data/locale/zh_CN/foreman_discovery.po +44 -21
  69. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  70. data/locale/zh_TW/foreman_discovery.edit.po +196 -254
  71. data/locale/zh_TW/foreman_discovery.po +42 -19
  72. data/package.json +39 -0
  73. data/test/facts/only-ipv6.json +205 -0
  74. data/test/facts/skylake-ipv6.json +223 -0
  75. data/test/functional/api/v2/settings_controller_test.rb +2 -2
  76. data/test/functional/discovered_hosts_controller_test.rb +16 -7
  77. data/test/functional/discovery_rules_controller_test.rb +1 -1
  78. data/test/unit/discovered_extensions_test.rb +6 -1
  79. data/test/unit/host_discovered_test.rb +0 -16
  80. data/test/unit/managed_extensions_test.rb +1 -0
  81. data/webpack/index.js +18 -0
  82. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +28 -0
  83. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -0
  84. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +6 -0
  85. data/webpack/src/reducers.js +7 -0
  86. metadata +42 -28
@@ -10,10 +10,10 @@
10
10
  # Yulia <yulia.poyarkova@redhat.com>, 2016
11
11
  msgid ""
12
12
  msgstr ""
13
- "Project-Id-Version: foreman_discovery 15.1.0\n"
13
+ "Project-Id-Version: foreman_discovery 16.2.0\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "PO-Revision-Date: 2019-10-22 20:43+0000\n"
16
- "Last-Translator: Yulia <yulia.poyarkova@redhat.com>\n"
15
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
16
+ "Last-Translator: Transifex Bot <>\n"
17
17
  "Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
18
18
  "\n"
19
19
  "MIME-Version: 1.0\n"
@@ -40,7 +40,7 @@ msgid "A summary of discovered hosts"
40
40
  msgstr "Сводка состояния обнаруженных узлов"
41
41
 
42
42
  msgid "Action with sub plans"
43
- msgstr "Действия с подпланами"
43
+ msgstr ""
44
44
 
45
45
  msgid "Actions"
46
46
  msgstr "Действия"
@@ -144,6 +144,11 @@ msgstr "Отключить"
144
144
  msgid "Disable rule '%s'?"
145
145
  msgstr "Отключить правило «%s»?"
146
146
 
147
+ msgid "Discovered Host"
148
+ msgid_plural "Discovered Hosts"
149
+ msgstr[0] ""
150
+ msgstr[1] ""
151
+
147
152
  msgid "Discovered Hosts"
148
153
  msgstr "Обнаруженные узлы"
149
154
 
@@ -329,6 +334,12 @@ msgstr[3] "С правилом также необходимо связать о
329
334
  msgid "Host of type %s can not be rebooted"
330
335
  msgstr "Узел типа %s не может быть перезагружен"
331
336
 
337
+ msgid "Host's owner type"
338
+ msgstr ""
339
+
340
+ msgid "Host's parameters (array or indexed hash)"
341
+ msgstr ""
342
+
332
343
  msgid "Hostname facts"
333
344
  msgstr ""
334
345
 
@@ -378,10 +389,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
378
389
  msgstr "API образа вернул ошибку HTTP/%{code}: '%{body}"
379
390
 
380
391
  msgid "Import Puppet classes"
381
- msgstr "Импорт классов Puppet"
392
+ msgstr ""
382
393
 
383
394
  msgid "Import facts"
384
- msgstr "Импорт фактов"
395
+ msgstr ""
385
396
 
386
397
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
387
398
  msgstr ""
@@ -416,9 +427,6 @@ msgstr "Шаблон kexec не привязан к операционной с
416
427
  msgid "Last Facts Upload"
417
428
  msgstr ""
418
429
 
419
- msgid "Learn more about this in the documentation."
420
- msgstr ""
421
-
422
430
  msgid "List all discovered hosts"
423
431
  msgstr "Показать все обнаруженные узлы"
424
432
 
@@ -473,6 +481,9 @@ msgstr "нет"
473
481
  msgid "Name"
474
482
  msgstr "Имя"
475
483
 
484
+ msgid "Name of the parameter"
485
+ msgstr ""
486
+
476
487
  msgid "Network"
477
488
  msgstr "Сеть"
478
489
 
@@ -491,9 +502,6 @@ msgstr "Нет обнаруженных узлов"
491
502
  msgid "No discovered hosts for the selected period"
492
503
  msgstr "За указанный период времени новых узлов не обнаружено"
493
504
 
494
- msgid "No discovered hosts found in this context."
495
- msgstr ""
496
-
497
505
  msgid "No discovered hosts to provision"
498
506
  msgstr "Нет обнаруженных узлов"
499
507
 
@@ -536,6 +544,9 @@ msgstr ""
536
544
  msgid "PXELinux template to be used when pinning a host to discovery"
537
545
  msgstr ""
538
546
 
547
+ msgid "Parameter value"
548
+ msgstr ""
549
+
539
550
  msgid "Please Confirm"
540
551
  msgstr "Подтвердите"
541
552
 
@@ -600,7 +611,7 @@ msgid "Reloading kernel on %s"
600
611
  msgstr "Перезагрузка ядра на %s"
601
612
 
602
613
  msgid "Remote action:"
603
- msgstr "Удаленное действие:"
614
+ msgstr ""
604
615
 
605
616
  msgid "Reported in the last 7 days"
606
617
  msgstr "Были данные за последние 7 дней"
@@ -683,15 +694,15 @@ msgstr "Узлы не были удалены: %s"
683
694
  msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
684
695
  msgstr "Это может занять некоторое время, так как в ходе выполнения будут удалены узлы, статистика и все отчеты"
685
696
 
686
- msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
687
- msgstr ""
688
-
689
697
  msgid "Type"
690
698
  msgstr "Тип"
691
699
 
692
700
  msgid "Type of name generator"
693
701
  msgstr ""
694
702
 
703
+ msgid "Type of value"
704
+ msgstr ""
705
+
695
706
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
696
707
  msgstr "UUID для отслеживания состояния задач оркестрации, GET /api/orchestration/:UUID/tasks"
697
708
 
@@ -701,15 +712,18 @@ msgstr "Не удалось найти правило: необходимо ук
701
712
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
702
713
  msgstr ""
703
714
 
704
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
705
- msgstr "Не удалось выполнить kexec на %{name} с %{url}: %{msg}"
715
+ msgid "Unable to perform %{action} on %{ips}"
716
+ msgstr ""
717
+
718
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
719
+ msgstr ""
720
+
721
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
722
+ msgstr ""
706
723
 
707
724
  msgid "Unable to provision %{host}: %{errors}"
708
725
  msgstr "Не удалось подготовить %{host}: %{errors}"
709
726
 
710
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
711
- msgstr "Не удалось перезагрузить %{name} с %{url}: %{msg}"
712
-
713
727
  msgid "Update a rule"
714
728
  msgstr "Обновить правило"
715
729
 
@@ -773,6 +787,15 @@ msgstr "запрос для поиска соответствий среди у
773
787
  msgid "represents rule name shown to the users"
774
788
  msgstr "название правила, которое увидят пользователи"
775
789
 
790
+ msgid "required if host is managed and custom partition has not been defined"
791
+ msgstr ""
792
+
793
+ msgid "required if host is managed and value is not inherited from host group"
794
+ msgstr ""
795
+
796
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
797
+ msgstr ""
798
+
776
799
  msgid "required if value is not inherited from host group or default password in settings"
777
800
  msgstr "обязательно, если пароль не унаследован от группы узлов или заданного по умолчанию пароля"
778
801
 
@@ -1,19 +1,19 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
3
  # This file is distributed under the same license as the foreman_discovery package.
4
- #
4
+ #
5
5
  # Translators:
6
6
  # 0868a4d1af5275b3f70b0a6dac4c99a4, 2014
7
7
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
8
8
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: foreman_discovery 15.1.0\n"
11
+ "Project-Id-Version: foreman_discovery 16.2.0\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2019-10-22 11:55+0200\n"
14
- "PO-Revision-Date: 2019-10-22 20:43+0000\n"
15
- "Last-Translator: Lukáš Zapletal\n"
16
- "Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/language/sv_SE/)\n"
13
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
14
+ "Last-Translator: Transifex Bot <>\n"
15
+ "Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/lang"
16
+ "uage/sv_SE/)\n"
17
17
  "MIME-Version: 1.0\n"
18
18
  "Content-Type: text/plain; charset=UTF-8\n"
19
19
  "Content-Transfer-Encoding: 8bit\n"
@@ -24,23 +24,19 @@ msgstr ""
24
24
  msgid "List all discovered hosts"
25
25
  msgstr ""
26
26
 
27
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
28
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
27
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
29
28
  msgid "filter results"
30
29
  msgstr "filtrera resultat"
31
30
 
32
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
33
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
31
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
34
32
  msgid "sort results"
35
33
  msgstr "sortera resultat"
36
34
 
37
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
38
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
35
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
39
36
  msgid "paginate results"
40
37
  msgstr ""
41
38
 
42
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
43
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
39
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
44
40
  msgid "number of entries per request"
45
41
  msgstr "antal poster per begäran"
46
42
 
@@ -48,8 +44,7 @@ msgstr "antal poster per begäran"
48
44
  msgid "Show a discovered host"
49
45
  msgstr ""
50
46
 
51
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
52
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
47
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:85
53
48
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
54
49
  msgstr ""
55
50
 
@@ -61,6 +56,10 @@ msgstr ""
61
56
  msgid "Provision a discovered host"
62
57
  msgstr ""
63
58
 
59
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
60
+ msgid "required if host is managed and value is not inherited from host group"
61
+ msgstr ""
62
+
64
63
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
65
64
  msgid "not required if using a subnet with DHCP proxy"
66
65
  msgstr ""
@@ -69,82 +68,99 @@ msgstr ""
69
68
  msgid "not required if it's a virtual machine"
70
69
  msgstr ""
71
70
 
72
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
73
- msgid ""
74
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
71
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
72
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
75
73
  msgstr ""
76
74
 
77
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
78
- msgid ""
79
- "required if value is not inherited from host group or default password in "
80
- "settings"
75
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
76
+ msgid "required if host is managed and custom partition has not been defined"
77
+ msgstr ""
78
+
79
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
80
+ msgid "Host's owner type"
81
+ msgstr ""
82
+
83
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
84
+ msgid "Host's parameters (array or indexed hash)"
85
+ msgstr ""
86
+
87
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
88
+ msgid "Name of the parameter"
89
+ msgstr ""
90
+
91
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
92
+ msgid "Parameter value"
93
+ msgstr ""
94
+
95
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
96
+ msgid "Type of value"
97
+ msgstr ""
98
+
99
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
100
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
101
+ msgstr ""
102
+
103
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:84
104
+ msgid "required if value is not inherited from host group or default password in settings"
81
105
  msgstr ""
82
106
 
83
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
107
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:95
84
108
  msgid "Delete a discovered host"
85
109
  msgstr ""
86
110
 
87
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:96
111
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:102
88
112
  msgid "Upload facts for a host, creating the host if required"
89
113
  msgstr ""
90
114
 
91
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
92
- msgid ""
93
- "hash containing facts for the host with minimum set of facts: "
94
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
95
- "eth0 (example in case primary interface is named eth0)"
115
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
116
+ 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)"
96
117
  msgstr ""
97
118
 
98
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
119
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
99
120
  msgid "Execute rules against a discovered host"
100
121
  msgstr ""
101
122
 
102
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122
103
- #: ../app/controllers/discovered_hosts_controller.rb:160
123
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
104
124
  msgid "Host %{host} was provisioned with rule %{rule}"
105
125
  msgstr ""
106
126
 
107
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
127
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
108
128
  msgid "Unable to provision %{host}: %{errors}"
109
129
  msgstr ""
110
130
 
111
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131
112
- #: ../app/controllers/discovered_hosts_controller.rb:167
131
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
113
132
  msgid "No rule found for host %s"
114
133
  msgstr ""
115
134
 
116
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
135
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
117
136
  msgid "Execute rules against all currently discovered hosts"
118
137
  msgstr ""
119
138
 
120
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142
121
- #: ../app/controllers/discovered_hosts_controller.rb:173
139
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
122
140
  msgid "Errors during auto provisioning: %s"
123
141
  msgstr ""
124
142
 
125
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145
126
- #: ../app/controllers/discovered_hosts_controller.rb:176
143
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
127
144
  msgid "No discovered hosts to provision"
128
145
  msgstr ""
129
146
 
130
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
147
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
131
148
  msgid "%s discovered hosts were provisioned"
132
149
  msgstr ""
133
150
 
134
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
151
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
135
152
  msgid "Refreshing the facts of a discovered host"
136
153
  msgstr ""
137
154
 
138
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
155
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
139
156
  msgid "Rebooting a discovered host"
140
157
  msgstr ""
141
158
 
142
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
159
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
143
160
  msgid "Rebooting all discovered hosts"
144
161
  msgstr ""
145
162
 
146
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207
147
- #: ../app/controllers/discovered_hosts_controller.rb:129
163
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
148
164
  msgid "Discovered hosts are rebooting now"
149
165
  msgstr ""
150
166
 
@@ -169,8 +185,7 @@ msgid "the hostgroup that is used to auto provision a host"
169
185
  msgstr ""
170
186
 
171
187
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
172
- msgid ""
173
- "defines a pattern to assign human-readable hostnames to the matching hosts"
188
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
174
189
  msgstr ""
175
190
 
176
191
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -178,8 +193,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
178
193
  msgstr ""
179
194
 
180
195
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
181
- msgid ""
182
- "puts the rules in order, low numbers go first. Must be greater then zero"
196
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
183
197
  msgstr ""
184
198
 
185
199
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -278,43 +292,43 @@ msgstr ""
278
292
  msgid "Discovered hosts are provisioning now"
279
293
  msgstr ""
280
294
 
281
- #: ../app/controllers/discovered_hosts_controller.rb:224
295
+ #: ../app/controllers/discovered_hosts_controller.rb:226
282
296
  msgid "Highlights"
283
297
  msgstr ""
284
298
 
285
- #: ../app/controllers/discovered_hosts_controller.rb:224
299
+ #: ../app/controllers/discovered_hosts_controller.rb:226
286
300
  msgid "Storage"
287
301
  msgstr ""
288
302
 
289
- #: ../app/controllers/discovered_hosts_controller.rb:224
303
+ #: ../app/controllers/discovered_hosts_controller.rb:226
290
304
  msgid "Hardware"
291
305
  msgstr ""
292
306
 
293
- #: ../app/controllers/discovered_hosts_controller.rb:224
307
+ #: ../app/controllers/discovered_hosts_controller.rb:226
294
308
  msgid "Network"
295
309
  msgstr ""
296
310
 
297
- #: ../app/controllers/discovered_hosts_controller.rb:224
311
+ #: ../app/controllers/discovered_hosts_controller.rb:226
298
312
  msgid "Software"
299
313
  msgstr ""
300
314
 
301
- #: ../app/controllers/discovered_hosts_controller.rb:224
315
+ #: ../app/controllers/discovered_hosts_controller.rb:226
302
316
  msgid "IPMI"
303
317
  msgstr ""
304
318
 
305
- #: ../app/controllers/discovered_hosts_controller.rb:224
319
+ #: ../app/controllers/discovered_hosts_controller.rb:226
306
320
  msgid "Miscellaneous"
307
321
  msgstr ""
308
322
 
309
- #: ../app/controllers/discovered_hosts_controller.rb:302
323
+ #: ../app/controllers/discovered_hosts_controller.rb:304
310
324
  msgid "No hosts were found with that id or name"
311
325
  msgstr "Inga värdar med det idt eller namnet hittades"
312
326
 
313
- #: ../app/controllers/discovered_hosts_controller.rb:306
327
+ #: ../app/controllers/discovered_hosts_controller.rb:308
314
328
  msgid "No hosts selected"
315
329
  msgstr "Inga värdar markerade"
316
330
 
317
- #: ../app/controllers/discovered_hosts_controller.rb:312
331
+ #: ../app/controllers/discovered_hosts_controller.rb:314
318
332
  msgid "Something went wrong while selecting hosts - %s"
319
333
  msgstr "Något blev fel vid markering av värdar - %s"
320
334
 
@@ -330,21 +344,15 @@ msgstr ""
330
344
  msgid "%s ago"
331
345
  msgstr "%s sedan"
332
346
 
333
- #: ../app/helpers/discovered_hosts_helper.rb:14
334
- #: ../app/helpers/discovered_hosts_helper.rb:29
335
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
347
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
336
348
  msgid "Auto Provision"
337
349
  msgstr ""
338
350
 
339
- #: ../app/helpers/discovered_hosts_helper.rb:15
340
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
351
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
341
352
  msgid "Refresh facts"
342
353
  msgstr "Uppdatera fakta"
343
354
 
344
- #: ../app/helpers/discovered_hosts_helper.rb:16
345
- #: ../app/helpers/discovered_hosts_helper.rb:30
346
- #: ../app/models/setting/discovered.rb:22
347
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
355
+ #: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
348
356
  msgid "Reboot"
349
357
  msgstr ""
350
358
 
@@ -352,13 +360,11 @@ msgstr ""
352
360
  msgid "Back"
353
361
  msgstr ""
354
362
 
355
- #: ../app/helpers/discovered_hosts_helper.rb:21
356
- #: ../app/helpers/discovered_hosts_helper.rb:35
363
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
357
364
  msgid "Select Action"
358
365
  msgstr "Välj Åtgärd"
359
366
 
360
- #: ../app/helpers/discovered_hosts_helper.rb:23
361
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
367
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
362
368
  msgid "Delete %s?"
363
369
  msgstr "Radera %s?"
364
370
 
@@ -378,8 +384,7 @@ msgstr "Radera"
378
384
  msgid "%s - The following hosts are about to be changed"
379
385
  msgstr "%s - Följande värdar kommer att ändras"
380
386
 
381
- #: ../app/helpers/discovered_hosts_helper.rb:46
382
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
387
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
383
388
  msgid "N/A"
384
389
  msgstr "N/A"
385
390
 
@@ -399,12 +404,7 @@ msgstr ""
399
404
  msgid "Provision"
400
405
  msgstr "Provisionera"
401
406
 
402
- #: ../app/helpers/discovery_rules_helper.rb:26
403
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1
404
- #: ../app/views/discovered_hosts/welcome.html.erb:1
405
- #: ../app/views/discovered_hosts/welcome.html.erb:6
406
- #: ../lib/foreman_discovery/engine.rb:158
407
- #: ../lib/foreman_discovery/engine.rb:173
407
+ #: ../app/helpers/discovery_rules_helper.rb:26 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1 ../app/views/discovered_hosts/welcome.html.erb:8 ../lib/foreman_discovery/engine.rb:159 ../lib/foreman_discovery/engine.rb:174
408
408
  msgid "Discovered Hosts"
409
409
  msgstr "Hittade värdar"
410
410
 
@@ -453,17 +453,14 @@ msgid "must be present."
453
453
  msgstr ""
454
454
 
455
455
  #: ../app/models/discovery_rule.rb:52
456
- msgid ""
457
- "Host group organization %s must also be associated to the discovery rule"
458
- msgid_plural ""
459
- "Host group organizations %s must also be associated to the discovery rule"
456
+ msgid "Host group organization %s must also be associated to the discovery rule"
457
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
460
458
  msgstr[0] ""
461
459
  msgstr[1] ""
462
460
 
463
461
  #: ../app/models/discovery_rule.rb:56
464
462
  msgid "Host group location %s must also be associated to the discovery rule"
465
- msgid_plural ""
466
- "Host group locations %s must also be associated to the discovery rule"
463
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
467
464
  msgstr[0] ""
468
465
  msgstr[1] ""
469
466
 
@@ -479,39 +476,39 @@ msgstr ""
479
476
  msgid "MAC-based name"
480
477
  msgstr ""
481
478
 
482
- #: ../app/models/host/discovered.rb:51
479
+ #: ../app/models/host/discovered.rb:55
483
480
  msgid "Invalid facts, must be a Hash"
484
481
  msgstr ""
485
482
 
486
- #: ../app/models/host/discovered.rb:56
487
- msgid ""
488
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
489
- "and set hostname"
483
+ #: ../app/models/host/discovered.rb:60
484
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
490
485
  msgstr ""
491
486
 
492
- #: ../app/models/host/discovered.rb:69
493
- msgid ""
494
- "Invalid facts: hash does not contain a valid value for any of the facts in "
495
- "the discovery_hostname setting: %s"
487
+ #: ../app/models/host/discovered.rb:73
488
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
496
489
  msgstr ""
497
490
 
498
- #: ../app/models/host/discovered.rb:95
491
+ #: ../app/models/host/discovered.rb:100
499
492
  msgid "Facts could not be imported"
500
493
  msgstr ""
501
494
 
502
- #: ../app/models/host/discovered.rb:150
495
+ #: ../app/models/host/discovered.rb:146
503
496
  msgid "Could not get facts from proxy %{url}: %{error}"
504
497
  msgstr ""
505
498
 
506
- #: ../app/models/host/discovered.rb:158
507
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
499
+ #: ../app/models/host/discovered.rb:160
500
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
508
501
  msgstr ""
509
502
 
510
- #: ../app/models/host/discovered.rb:166
511
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
503
+ #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
504
+ msgid "Unable to perform %{action} on %{ips}"
512
505
  msgstr ""
513
506
 
514
- #: ../app/models/host/discovered.rb:185
507
+ #: ../app/models/host/discovered.rb:179
508
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
509
+ msgstr ""
510
+
511
+ #: ../app/models/host/discovered.rb:203
515
512
  msgid "Invalid hostname: Could not normalize the hostname"
516
513
  msgstr ""
517
514
 
@@ -539,191 +536,183 @@ msgstr ""
539
536
  msgid "Rebuild DNS for %s"
540
537
  msgstr ""
541
538
 
542
- #: ../app/models/setting/discovered.rb:15
539
+ #: ../app/models/setting/discovered.rb:17
543
540
  msgid "The default location to place discovered hosts in"
544
541
  msgstr "Standardplatsen att placera värdar i"
545
542
 
546
- #: ../app/models/setting/discovered.rb:15
543
+ #: ../app/models/setting/discovered.rb:17
547
544
  msgid "Discovery location"
548
545
  msgstr ""
549
546
 
550
- #: ../app/models/setting/discovered.rb:16
547
+ #: ../app/models/setting/discovered.rb:18
551
548
  msgid "The default organization to place discovered hosts in"
552
549
  msgstr "Standardorganisationen att placera hittade värdar i"
553
550
 
554
- #: ../app/models/setting/discovered.rb:16
551
+ #: ../app/models/setting/discovered.rb:18
555
552
  msgid "Discovery organization"
556
553
  msgstr ""
557
554
 
558
- #: ../app/models/setting/discovered.rb:17
555
+ #: ../app/models/setting/discovered.rb:19
559
556
  msgid "Fact name to use for primary interface detection"
560
557
  msgstr ""
561
558
 
562
- #: ../app/models/setting/discovered.rb:17
559
+ #: ../app/models/setting/discovered.rb:19
563
560
  msgid "Interface fact"
564
561
  msgstr ""
565
562
 
566
- #: ../app/models/setting/discovered.rb:18
567
- msgid ""
568
- "Automatic bond interface (if another interface is detected on the same VLAN "
569
- "via LLDP)"
563
+ #: ../app/models/setting/discovered.rb:20
564
+ msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
570
565
  msgstr ""
571
566
 
572
- #: ../app/models/setting/discovered.rb:18
567
+ #: ../app/models/setting/discovered.rb:20
573
568
  msgid "Create bond interfaces"
574
569
  msgstr ""
575
570
 
576
- #: ../app/models/setting/discovered.rb:19
571
+ #: ../app/models/setting/discovered.rb:21
577
572
  msgid "Clean all reported facts during provisioning (except discovery facts)"
578
573
  msgstr ""
579
574
 
580
- #: ../app/models/setting/discovered.rb:19
575
+ #: ../app/models/setting/discovered.rb:21
581
576
  msgid "Clean all facts"
582
577
  msgstr ""
583
578
 
584
- #: ../app/models/setting/discovered.rb:20
579
+ #: ../app/models/setting/discovered.rb:22
585
580
  msgid "List of facts to use for the hostname (separated by comma, first wins)"
586
581
  msgstr ""
587
582
 
588
- #: ../app/models/setting/discovered.rb:20
583
+ #: ../app/models/setting/discovered.rb:22
589
584
  msgid "Hostname facts"
590
585
  msgstr ""
591
586
 
592
- #: ../app/models/setting/discovered.rb:21
593
- msgid ""
594
- "Automatically provision newly discovered hosts, according to the "
595
- "provisioning rules"
587
+ #: ../app/models/setting/discovered.rb:23
588
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
596
589
  msgstr ""
597
590
 
598
- #: ../app/models/setting/discovered.rb:21
591
+ #: ../app/models/setting/discovered.rb:23
599
592
  msgid "Auto provisioning"
600
593
  msgstr ""
601
594
 
602
- #: ../app/models/setting/discovered.rb:22
595
+ #: ../app/models/setting/discovered.rb:24
603
596
  msgid "Automatically reboot or kexec discovered host during provisioning"
604
597
  msgstr ""
605
598
 
606
- #: ../app/models/setting/discovered.rb:23
599
+ #: ../app/models/setting/discovered.rb:25
607
600
  msgid "The default prefix to use for the host name, must start with a letter"
608
601
  msgstr ""
609
602
 
610
- #: ../app/models/setting/discovered.rb:23
603
+ #: ../app/models/setting/discovered.rb:25
611
604
  msgid "Hostname prefix"
612
605
  msgstr ""
613
606
 
614
- #: ../app/models/setting/discovered.rb:24
607
+ #: ../app/models/setting/discovered.rb:26
615
608
  msgid "Extra facter columns to show in host lists (separate by comma)"
616
609
  msgstr ""
617
610
 
618
- #: ../app/models/setting/discovered.rb:24
611
+ #: ../app/models/setting/discovered.rb:26
619
612
  msgid "Fact columns"
620
613
  msgstr ""
621
614
 
622
- #: ../app/models/setting/discovered.rb:25
615
+ #: ../app/models/setting/discovered.rb:27
623
616
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
624
617
  msgstr ""
625
618
 
626
- #: ../app/models/setting/discovered.rb:25
619
+ #: ../app/models/setting/discovered.rb:27
627
620
  msgid "Highlighted facts"
628
621
  msgstr ""
629
622
 
630
- #: ../app/models/setting/discovered.rb:26
623
+ #: ../app/models/setting/discovered.rb:28
631
624
  msgid "Regex to organize facts for storage section"
632
625
  msgstr ""
633
626
 
634
- #: ../app/models/setting/discovered.rb:26
627
+ #: ../app/models/setting/discovered.rb:28
635
628
  msgid "Storage facts"
636
629
  msgstr ""
637
630
 
638
- #: ../app/models/setting/discovered.rb:27
631
+ #: ../app/models/setting/discovered.rb:29
639
632
  msgid "Regex to organize facts for software section"
640
633
  msgstr ""
641
634
 
642
- #: ../app/models/setting/discovered.rb:27
635
+ #: ../app/models/setting/discovered.rb:29
643
636
  msgid "Software facts"
644
637
  msgstr ""
645
638
 
646
- #: ../app/models/setting/discovered.rb:28
639
+ #: ../app/models/setting/discovered.rb:30
647
640
  msgid "Regex to organize facts for hardware section"
648
641
  msgstr ""
649
642
 
650
- #: ../app/models/setting/discovered.rb:28
643
+ #: ../app/models/setting/discovered.rb:30
651
644
  msgid "Hardware facts"
652
645
  msgstr ""
653
646
 
654
- #: ../app/models/setting/discovered.rb:29
647
+ #: ../app/models/setting/discovered.rb:31
655
648
  msgid "Regex to organize facts for network section"
656
649
  msgstr ""
657
650
 
658
- #: ../app/models/setting/discovered.rb:29
651
+ #: ../app/models/setting/discovered.rb:31
659
652
  msgid "Network facts"
660
653
  msgstr ""
661
654
 
662
- #: ../app/models/setting/discovered.rb:30
655
+ #: ../app/models/setting/discovered.rb:32
663
656
  msgid "Regex to organize facts for ipmi section"
664
657
  msgstr ""
665
658
 
666
- #: ../app/models/setting/discovered.rb:30
659
+ #: ../app/models/setting/discovered.rb:32
667
660
  msgid "IPMI facts"
668
661
  msgstr ""
669
662
 
670
- #: ../app/models/setting/discovered.rb:31
671
- msgid ""
672
- "Automatically generate PXE configuration to pin a newly discovered host to "
673
- "discovery"
663
+ #: ../app/models/setting/discovered.rb:33
664
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
674
665
  msgstr ""
675
666
 
676
- #: ../app/models/setting/discovered.rb:31
667
+ #: ../app/models/setting/discovered.rb:33
677
668
  msgid "Lock PXE"
678
669
  msgstr ""
679
670
 
680
- #: ../app/models/setting/discovered.rb:32
671
+ #: ../app/models/setting/discovered.rb:34
681
672
  msgid "PXELinux template to be used when pinning a host to discovery"
682
673
  msgstr ""
683
674
 
684
- #: ../app/models/setting/discovered.rb:32
675
+ #: ../app/models/setting/discovered.rb:34
685
676
  msgid "Locked PXELinux template name"
686
677
  msgstr ""
687
678
 
688
- #: ../app/models/setting/discovered.rb:33
679
+ #: ../app/models/setting/discovered.rb:35
689
680
  msgid "PXEGrub template to be used when pinning a host to discovery"
690
681
  msgstr ""
691
682
 
692
- #: ../app/models/setting/discovered.rb:33
683
+ #: ../app/models/setting/discovered.rb:35
693
684
  msgid "Locked PXEGrub template name"
694
685
  msgstr ""
695
686
 
696
- #: ../app/models/setting/discovered.rb:34
687
+ #: ../app/models/setting/discovered.rb:36
697
688
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
698
689
  msgstr ""
699
690
 
700
- #: ../app/models/setting/discovered.rb:34
691
+ #: ../app/models/setting/discovered.rb:36
701
692
  msgid "Locked PXEGrub2 template name"
702
693
  msgstr ""
703
694
 
704
- #: ../app/models/setting/discovered.rb:35
695
+ #: ../app/models/setting/discovered.rb:37
705
696
  msgid "Force DNS entries creation when provisioning discovered host"
706
697
  msgstr ""
707
698
 
708
- #: ../app/models/setting/discovered.rb:35
699
+ #: ../app/models/setting/discovered.rb:37
709
700
  msgid "Force DNS"
710
701
  msgstr ""
711
702
 
712
- #: ../app/models/setting/discovered.rb:36
713
- msgid ""
714
- "Do not allow to discover existing managed host matching MAC of a "
715
- "provisioning NIC (errors out early)"
703
+ #: ../app/models/setting/discovered.rb:38
704
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
716
705
  msgstr ""
717
706
 
718
- #: ../app/models/setting/discovered.rb:36
707
+ #: ../app/models/setting/discovered.rb:38
719
708
  msgid "Error on existing NIC"
720
709
  msgstr ""
721
710
 
722
- #: ../app/models/setting/discovered.rb:37
711
+ #: ../app/models/setting/discovered.rb:39
723
712
  msgid "Discovery hostname naming pattern"
724
713
  msgstr ""
725
714
 
726
- #: ../app/models/setting/discovered.rb:37
715
+ #: ../app/models/setting/discovered.rb:39
727
716
  msgid "Type of name generator"
728
717
  msgstr ""
729
718
 
@@ -736,23 +725,27 @@ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
736
725
  msgstr ""
737
726
 
738
727
  #: ../app/services/foreman_discovery/fact_parser.rb:12
739
- msgid ""
740
- "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: "
741
- "%{filter}"
728
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
742
729
  msgstr ""
743
730
 
744
- #: ../app/services/foreman_discovery/host_converter.rb:39
731
+ #: ../app/services/foreman_discovery/host_converter.rb:47
745
732
  msgid "IPAM must be configured for subnet '%s'"
746
733
  msgstr ""
747
734
 
748
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
735
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:76
749
736
  msgid "Image API returned HTTP/%{code} with '%{body}"
750
737
  msgstr ""
751
738
 
752
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:78
739
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:79
753
740
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
754
741
  msgstr ""
755
742
 
743
+ #: ../app/views/dashboard/_discovery_widget.html.erb:5
744
+ msgid "Discovered Host"
745
+ msgid_plural "Discovered Hosts"
746
+ msgstr[0] ""
747
+ msgstr[1] ""
748
+
756
749
  #: ../app/views/dashboard/_discovery_widget.html.erb:9
757
750
  msgid "No discovered hosts available"
758
751
  msgstr ""
@@ -761,33 +754,23 @@ msgstr ""
761
754
  msgid "Host"
762
755
  msgstr "Värd"
763
756
 
764
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
765
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
766
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
767
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
768
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
757
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
769
758
  msgid "Model"
770
759
  msgstr "Modell"
771
760
 
772
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
773
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
774
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
775
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
761
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
776
762
  msgid "CPUs"
777
763
  msgstr "CPUer"
778
764
 
779
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
780
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
781
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
782
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
765
+ #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
783
766
  msgid "Memory"
784
767
  msgstr "Minne"
785
768
 
786
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:25
769
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:23
787
770
  msgid "Customize Host"
788
771
  msgstr ""
789
772
 
790
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:26
773
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:24
791
774
  msgid "Create Host"
792
775
  msgstr ""
793
776
 
@@ -799,16 +782,11 @@ msgstr "Markera alla valbara på denna sida"
799
782
  msgid "items selected. Uncheck to Clear"
800
783
  msgstr "poster markerade. Avmarkera för att rensa"
801
784
 
802
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
803
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
804
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
805
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
785
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
806
786
  msgid "Name"
807
787
  msgstr "Namn"
808
788
 
809
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
810
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
811
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
789
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
812
790
  msgid "IP Address"
813
791
  msgstr "IPadress"
814
792
 
@@ -820,13 +798,11 @@ msgstr ""
820
798
  msgid "Disks Size"
821
799
  msgstr ""
822
800
 
823
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15
824
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:9
801
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
825
802
  msgid "Location"
826
803
  msgstr "Lokation"
827
804
 
828
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16
829
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
805
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
830
806
  msgid "Organization"
831
807
  msgstr "Organisation"
832
808
 
@@ -838,8 +814,7 @@ msgstr "Subnät"
838
814
  msgid "Last Facts Upload"
839
815
  msgstr ""
840
816
 
841
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
842
- #: ../app/views/discovery_rules/index.html.erb:12
817
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19 ../app/views/discovery_rules/index.html.erb:12
843
818
  msgid "Actions"
844
819
  msgstr "Åtgärder"
845
820
 
@@ -860,9 +835,7 @@ msgid "Provision %s"
860
835
  msgstr ""
861
836
 
862
837
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
863
- msgid ""
864
- "This might take a while, as all hosts, facts and reports will be destroyed "
865
- "as well"
838
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
866
839
  msgstr "Detta kan dröja då alla värdar, fakta och rapporter också kommer bli förstörda"
867
840
 
868
841
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -901,20 +874,6 @@ msgstr ""
901
874
  msgid "Collapse All"
902
875
  msgstr ""
903
876
 
904
- #: ../app/views/discovered_hosts/welcome.html.erb:7
905
- msgid "No discovered hosts found in this context."
906
- msgstr ""
907
-
908
- #: ../app/views/discovered_hosts/welcome.html.erb:8
909
- msgid ""
910
- "This page shows discovered bare-metal or virtual nodes waiting to be "
911
- "provisioned."
912
- msgstr ""
913
-
914
- #: ../app/views/discovered_hosts/welcome.html.erb:9
915
- msgid "Learn more about this in the documentation."
916
- msgstr ""
917
-
918
877
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
919
878
  msgid "Summary report for discovered hosts from Foreman"
920
879
  msgstr ""
@@ -923,23 +882,19 @@ msgstr ""
923
882
  msgid "<b>Foreman</b> Discovered hosts summary"
924
883
  msgstr ""
925
884
 
926
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
927
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
885
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
928
886
  msgid "Summary from %{time} ago to %{now}"
929
887
  msgstr ""
930
888
 
931
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
932
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
889
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
933
890
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
934
891
  msgstr ""
935
892
 
936
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
937
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
893
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
938
894
  msgid "Disk count"
939
895
  msgstr ""
940
896
 
941
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
942
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
897
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
943
898
  msgid "Disks size"
944
899
  msgstr ""
945
900
 
@@ -988,41 +943,30 @@ msgid "Rule priority (lower integer means higher priority)"
988
943
  msgstr ""
989
944
 
990
945
  #: ../app/views/discovery_rules/_template_inline.erb:2
991
- msgid ""
992
- "Specify target hostname template pattern in the same syntax as in "
993
- "Provisioning Templates (ERB)."
946
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
994
947
  msgstr ""
995
948
 
996
949
  #: ../app/views/discovery_rules/_template_inline.erb:4
997
- msgid ""
998
- "Domain will be appended automatically. A hostname based on MAC address will "
999
- "be used when left blank."
950
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
1000
951
  msgstr ""
1001
952
 
1002
953
  #: ../app/views/discovery_rules/_template_inline.erb:5
1003
- msgid ""
1004
- "In addition to @host attribute function rand for random integers is "
1005
- "available. Examples:"
954
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
1006
955
  msgstr ""
1007
956
 
1008
957
  #: ../app/views/discovery_rules/_template_inline.erb:8
1009
- msgid ""
1010
- "When creating hostname patterns, make sure the resulting host names are "
1011
- "unique."
958
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
1012
959
  msgstr ""
1013
960
 
1014
961
  #: ../app/views/discovery_rules/_template_inline.erb:9
1015
- msgid ""
1016
- "Hostnames must not start with numbers. A good approach is to use unique "
1017
- "information provided by facter (MAC address, BIOS or serial ID)."
962
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
1018
963
  msgstr ""
1019
964
 
1020
965
  #: ../app/views/discovery_rules/edit.html.erb:1
1021
966
  msgid "Edit %s"
1022
967
  msgstr "Redigera %s"
1023
968
 
1024
- #: ../app/views/discovery_rules/index.html.erb:1
1025
- #: ../lib/foreman_discovery/engine.rb:163
969
+ #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:164
1026
970
  msgid "Discovery Rules"
1027
971
  msgstr ""
1028
972
 
@@ -1078,32 +1022,28 @@ msgstr ""
1078
1022
  msgid "Details"
1079
1023
  msgstr ""
1080
1024
 
1081
- #: ../lib/foreman_discovery/engine.rb:179
1025
+ #: ../lib/foreman_discovery/engine.rb:180
1082
1026
  msgid "Discovery Kexec template"
1083
1027
  msgstr ""
1084
1028
 
1085
- #: ../lib/foreman_discovery/engine.rb:188
1029
+ #: ../lib/foreman_discovery/engine.rb:189
1086
1030
  msgid "Discovery Proxy"
1087
1031
  msgstr ""
1088
1032
 
1089
- #: ../lib/foreman_discovery/engine.rb:189
1090
- msgid ""
1091
- "Discovery Proxy to use within this subnet for managing connection to "
1092
- "discovered hosts"
1033
+ #: ../lib/foreman_discovery/engine.rb:190
1034
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1093
1035
  msgstr ""
1094
1036
 
1095
- #: ../lib/foreman_discovery/engine.rb:190
1096
- msgid ""
1097
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1098
- "discovered hosts"
1037
+ #: ../lib/foreman_discovery/engine.rb:191
1038
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1099
1039
  msgstr ""
1100
1040
 
1101
1041
  #: action_names.rb:2
1102
- msgid "Import Puppet classes"
1042
+ msgid "Remote action:"
1103
1043
  msgstr ""
1104
1044
 
1105
1045
  #: action_names.rb:3
1106
- msgid "Import facts"
1046
+ msgid "Import Puppet classes"
1107
1047
  msgstr ""
1108
1048
 
1109
1049
  #: action_names.rb:4
@@ -1111,5 +1051,5 @@ msgid "Action with sub plans"
1111
1051
  msgstr ""
1112
1052
 
1113
1053
  #: action_names.rb:5
1114
- msgid "Remote action:"
1054
+ msgid "Import facts"
1115
1055
  msgstr ""