foreman_discovery 16.3.6 → 17.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
  3. data/app/controllers/discovered_hosts_controller.rb +24 -35
  4. data/app/controllers/discovery_rules_controller.rb +12 -1
  5. data/app/helpers/discovered_hosts_helper.rb +3 -4
  6. data/app/helpers/discovery_rules_helper.rb +1 -0
  7. data/app/models/discovery_rule.rb +10 -5
  8. data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
  9. data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
  10. data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
  11. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
  12. data/app/views/discovered_hosts/welcome.html.erb +1 -1
  13. data/app/views/discovery_rules/clone.erb +3 -0
  14. data/app/views/discovery_rules/index.html.erb +4 -0
  15. data/app/views/discovery_rules/welcome.html.erb +15 -0
  16. data/config/routes.rb +2 -0
  17. data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
  18. data/lib/foreman_discovery/engine.rb +3 -7
  19. data/lib/foreman_discovery/version.rb +1 -1
  20. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  21. data/locale/ca/foreman_discovery.edit.po +44 -40
  22. data/locale/ca/foreman_discovery.po +36 -9
  23. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  24. data/locale/de/foreman_discovery.edit.po +42 -38
  25. data/locale/de/foreman_discovery.po +45 -18
  26. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  27. data/locale/en/foreman_discovery.edit.po +37 -29
  28. data/locale/en/foreman_discovery.po +31 -4
  29. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  30. data/locale/en_GB/foreman_discovery.edit.po +39 -35
  31. data/locale/en_GB/foreman_discovery.po +36 -9
  32. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  33. data/locale/es/foreman_discovery.edit.po +42 -38
  34. data/locale/es/foreman_discovery.po +70 -41
  35. data/locale/foreman_discovery.pot +142 -97
  36. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  37. data/locale/fr/foreman_discovery.edit.po +88 -84
  38. data/locale/fr/foreman_discovery.po +76 -49
  39. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  40. data/locale/gl/foreman_discovery.edit.po +42 -38
  41. data/locale/gl/foreman_discovery.po +32 -5
  42. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/it/foreman_discovery.edit.po +42 -38
  44. data/locale/it/foreman_discovery.po +44 -17
  45. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/ja/foreman_discovery.edit.po +74 -70
  47. data/locale/ja/foreman_discovery.po +79 -54
  48. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/ko/foreman_discovery.edit.po +42 -38
  50. data/locale/ko/foreman_discovery.po +43 -16
  51. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  52. data/locale/pt_BR/foreman_discovery.edit.po +42 -38
  53. data/locale/pt_BR/foreman_discovery.po +69 -39
  54. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  55. data/locale/ru/foreman_discovery.edit.po +46 -42
  56. data/locale/ru/foreman_discovery.po +43 -16
  57. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  58. data/locale/sv_SE/foreman_discovery.edit.po +42 -38
  59. data/locale/sv_SE/foreman_discovery.po +34 -7
  60. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  61. data/locale/zh_CN/foreman_discovery.edit.po +90 -86
  62. data/locale/zh_CN/foreman_discovery.po +114 -90
  63. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  64. data/locale/zh_TW/foreman_discovery.edit.po +42 -38
  65. data/locale/zh_TW/foreman_discovery.po +43 -16
  66. data/package.json +6 -6
  67. data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
  68. data/test/functional/discovery_rules_controller_test.rb +6 -1
  69. data/test/integration/discovered_hosts_test.rb +53 -5
  70. data/test/test_helper_discovery.rb +5 -0
  71. data/test/unit/discovery_rule_test.rb +24 -2
  72. data/test/unit/fact_to_category_resolver_test.rb +41 -0
  73. data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
  74. data/test/unit/ui_notifications/new_host_test.rb +3 -3
  75. data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
  76. data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
  77. data/webpack/__mocks__/foremanReact/common/index.js +5 -0
  78. data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
  79. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
  80. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
  81. data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
  82. data/webpack/index.js +9 -8
  83. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
  84. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
  85. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
  86. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
  87. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
  88. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
  89. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
  90. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
  91. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
  92. data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
  93. data/webpack/src/reducers.js +0 -2
  94. metadata +31 -9
@@ -10,9 +10,9 @@
10
10
  # Yulia <yulia.poyarkova@redhat.com>, 2016
11
11
  msgid ""
12
12
  msgstr ""
13
- "Project-Id-Version: foreman_discovery 16.2.0\n"
13
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
- "PO-Revision-Date: 2020-05-26 17:21+0000\n"
15
+ "PO-Revision-Date: 2021-01-25 08:35+0000\n"
16
16
  "Last-Translator: Transifex Bot <>\n"
17
17
  "Language-Team: Russian (http://www.transifex.com/foreman/foreman/language/ru/)"
18
18
  "\n"
@@ -27,9 +27,6 @@ msgstr ""
27
27
  msgid "%s - The following hosts are about to be changed"
28
28
  msgstr "%s — узлы будут изменены"
29
29
 
30
- msgid "%s ago"
31
- msgstr "%s назад"
32
-
33
30
  msgid "%s discovered hosts were provisioned"
34
31
  msgstr "Подготовлено узлов: %s"
35
32
 
@@ -40,7 +37,7 @@ msgid "A summary of discovered hosts"
40
37
  msgstr "Сводка состояния обнаруженных узлов"
41
38
 
42
39
  msgid "Action with sub plans"
43
- msgstr ""
40
+ msgstr "Действия с подпланами"
44
41
 
45
42
  msgid "Actions"
46
43
  msgstr "Действия"
@@ -87,6 +84,12 @@ msgstr ""
87
84
  msgid "Clean all reported facts during provisioning (except discovery facts)"
88
85
  msgstr ""
89
86
 
87
+ msgid "Clone"
88
+ msgstr ""
89
+
90
+ msgid "Clone %s"
91
+ msgstr ""
92
+
90
93
  msgid "Collapse All"
91
94
  msgstr "Свернуть все"
92
95
 
@@ -152,9 +155,15 @@ msgstr[1] ""
152
155
  msgid "Discovered Hosts"
153
156
  msgstr "Обнаруженные узлы"
154
157
 
158
+ msgid "Discovered Rules"
159
+ msgstr ""
160
+
155
161
  msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
156
162
  msgstr ""
157
163
 
164
+ msgid "Discovered host reported from unknown subnet, communication will not be proxied."
165
+ msgstr ""
166
+
158
167
  msgid "Discovered host: %s"
159
168
  msgstr "Обнаружен узел: %s"
160
169
 
@@ -167,6 +176,9 @@ msgstr "Выполняется перезагрузка обнаруженных
167
176
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
168
177
  msgstr "Узлы, обнаруженные сервером Foreman %{foreman_url}"
169
178
 
179
+ msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
180
+ msgstr ""
181
+
170
182
  msgid "Discovered hosts summary"
171
183
  msgstr "Сводка обнаруженных узлов"
172
184
 
@@ -233,6 +245,9 @@ msgstr "Включить"
233
245
  msgid "Enable rule '%s'?"
234
246
  msgstr "Включить правило «%s»?"
235
247
 
248
+ msgid "Error message goes here"
249
+ msgstr ""
250
+
236
251
  msgid "Error on existing NIC"
237
252
  msgstr ""
238
253
 
@@ -287,6 +302,9 @@ msgstr "Не удалось обновить факты %s"
287
302
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
288
303
  msgstr "Не удалось обновить факты %{hostname}. Ошибка: %{error_message}"
289
304
 
305
+ msgid "For more information please see "
306
+ msgstr ""
307
+
290
308
  msgid "Force DNS"
291
309
  msgstr ""
292
310
 
@@ -311,6 +329,9 @@ msgstr "Основные"
311
329
  msgid "Host"
312
330
  msgstr "Узел"
313
331
 
332
+ msgid "Host %s has been dicovered"
333
+ msgstr ""
334
+
314
335
  msgid "Host %{host} was provisioned with rule %{rule}"
315
336
  msgstr "%{host} был подготовлен в соответствии с правилом %{rule}"
316
337
 
@@ -335,10 +356,10 @@ msgid "Host of type %s can not be rebooted"
335
356
  msgstr "Узел типа %s не может быть перезагружен"
336
357
 
337
358
  msgid "Host's owner type"
338
- msgstr ""
359
+ msgstr "Тип владельца узла"
339
360
 
340
361
  msgid "Host's parameters (array or indexed hash)"
341
- msgstr ""
362
+ msgstr "Параметры узла (массив или индексированный хэш)"
342
363
 
343
364
  msgid "Hostname facts"
344
365
  msgstr ""
@@ -389,10 +410,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
389
410
  msgstr "API образа вернул ошибку HTTP/%{code}: '%{body}"
390
411
 
391
412
  msgid "Import Puppet classes"
392
- msgstr ""
413
+ msgstr "Импорт классов Puppet"
393
414
 
394
415
  msgid "Import facts"
395
- msgstr ""
416
+ msgstr "Импорт фактов"
396
417
 
397
418
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
398
419
  msgstr ""
@@ -482,7 +503,7 @@ msgid "Name"
482
503
  msgstr "Имя"
483
504
 
484
505
  msgid "Name of the parameter"
485
- msgstr ""
506
+ msgstr "Название параметра"
486
507
 
487
508
  msgid "Network"
488
509
  msgstr "Сеть"
@@ -493,6 +514,9 @@ msgstr ""
493
514
  msgid "New Discovery Rule"
494
515
  msgstr "Новое правило"
495
516
 
517
+ msgid "New hosts"
518
+ msgstr ""
519
+
496
520
  msgid "New in the last 24 hours"
497
521
  msgstr "Новое за последние 24 часа"
498
522
 
@@ -545,7 +569,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
545
569
  msgstr ""
546
570
 
547
571
  msgid "Parameter value"
548
- msgstr ""
572
+ msgstr "Значение параметра"
549
573
 
550
574
  msgid "Please Confirm"
551
575
  msgstr "Подтвердите"
@@ -611,7 +635,7 @@ msgid "Reloading kernel on %s"
611
635
  msgstr "Перезагрузка ядра на %s"
612
636
 
613
637
  msgid "Remote action:"
614
- msgstr ""
638
+ msgstr "Удаленное действие:"
615
639
 
616
640
  msgid "Reported in the last 7 days"
617
641
  msgstr "Были данные за последние 7 дней"
@@ -739,6 +763,9 @@ msgstr "не может содержать пробелов"
739
763
  msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
740
764
  msgstr "шаблон для присвоения узлам понятных имен"
741
765
 
766
+ msgid "documentation"
767
+ msgstr ""
768
+
742
769
  msgid "enables to limit maximum amount of provisioned hosts per rule"
743
770
  msgstr "максимальное число узлов для указанного правила"
744
771
 
@@ -788,13 +815,13 @@ msgid "represents rule name shown to the users"
788
815
  msgstr "название правила, которое увидят пользователи"
789
816
 
790
817
  msgid "required if host is managed and custom partition has not been defined"
791
- msgstr ""
818
+ msgstr "требуется, если узел находится под управлением, но собственный раздел не был объявлен"
792
819
 
793
820
  msgid "required if host is managed and value is not inherited from host group"
794
- msgstr ""
821
+ msgstr "требуется, если узел уже контролируется, но значение не было унаследовано от группы узлов"
795
822
 
796
823
  msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
797
- msgstr ""
824
+ msgstr "требуется, если подготовка управляемого узла осуществляется без участия образов и при этом значение не было унаследовано от группы узлов"
798
825
 
799
826
  msgid "required if value is not inherited from host group or default password in settings"
800
827
  msgstr "обязательно, если пароль не унаследован от группы узлов или заданного по умолчанию пароля"
@@ -8,11 +8,11 @@
8
8
  # johnny.westerlund <johnny.westerlund@gmail.com>, 2014
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: foreman_discovery 16.3.4\n"
11
+ "Project-Id-Version: foreman_discovery 17.1.0\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "POT-Creation-Date: 2021-05-03 08:46+0200\n"
14
- "PO-Revision-Date: 2021-01-25 08:35+0000\n"
15
- "Last-Translator: Transifex Bot <>\n"
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"
16
16
  "Language-Team: Swedish (Sweden) (http://www.transifex.com/foreman/foreman/lang"
17
17
  "uage/sv_SE/)\n"
18
18
  "MIME-Version: 1.0\n"
@@ -121,7 +121,7 @@ msgstr ""
121
121
  msgid "Execute rules against a discovered host"
122
122
  msgstr ""
123
123
 
124
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
124
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
125
125
  msgid "Host %{host} was provisioned with rule %{rule}"
126
126
  msgstr ""
127
127
 
@@ -129,7 +129,7 @@ msgstr ""
129
129
  msgid "Unable to provision %{host}: %{errors}"
130
130
  msgstr ""
131
131
 
132
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
132
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
133
133
  msgid "No rule found for host %s"
134
134
  msgstr ""
135
135
 
@@ -137,11 +137,11 @@ msgstr ""
137
137
  msgid "Execute rules against all currently discovered hosts"
138
138
  msgstr ""
139
139
 
140
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
140
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
141
141
  msgid "Errors during auto provisioning: %s"
142
142
  msgstr ""
143
143
 
144
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
144
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
145
145
  msgid "No discovered hosts to provision"
146
146
  msgstr ""
147
147
 
@@ -161,7 +161,7 @@ msgstr ""
161
161
  msgid "Rebooting all discovered hosts"
162
162
  msgstr ""
163
163
 
164
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
164
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
165
165
  msgid "Discovered hosts are rebooting now"
166
166
  msgstr ""
167
167
 
@@ -241,75 +241,75 @@ msgstr ""
241
241
  msgid "No discovered hosts to reboot"
242
242
  msgstr ""
243
243
 
244
- #: ../app/controllers/discovered_hosts_controller.rb:60
244
+ #: ../app/controllers/discovered_hosts_controller.rb:63
245
245
  msgid "Successfully provisioned %s"
246
246
  msgstr ""
247
247
 
248
- #: ../app/controllers/discovered_hosts_controller.rb:94
248
+ #: ../app/controllers/discovered_hosts_controller.rb:97
249
249
  msgid "Facts refreshed for %s"
250
250
  msgstr "Fakta uppdaterade för %s"
251
251
 
252
- #: ../app/controllers/discovered_hosts_controller.rb:96
252
+ #: ../app/controllers/discovered_hosts_controller.rb:99
253
253
  msgid "Failed to refresh facts for %s"
254
254
  msgstr "Misslyckades med att uppdatera fakta för %s"
255
255
 
256
- #: ../app/controllers/discovered_hosts_controller.rb:99
256
+ #: ../app/controllers/discovered_hosts_controller.rb:102
257
257
  msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
258
258
  msgstr ""
259
259
 
260
- #: ../app/controllers/discovered_hosts_controller.rb:106
260
+ #: ../app/controllers/discovered_hosts_controller.rb:109
261
261
  msgid "Host of type %s can not be rebooted"
262
262
  msgstr ""
263
263
 
264
- #: ../app/controllers/discovered_hosts_controller.rb:110
264
+ #: ../app/controllers/discovered_hosts_controller.rb:113
265
265
  msgid "Rebooting host %s"
266
266
  msgstr ""
267
267
 
268
- #: ../app/controllers/discovered_hosts_controller.rb:112
268
+ #: ../app/controllers/discovered_hosts_controller.rb:115
269
269
  msgid "Failed to reboot host %s"
270
270
  msgstr ""
271
271
 
272
- #: ../app/controllers/discovered_hosts_controller.rb:115
272
+ #: ../app/controllers/discovered_hosts_controller.rb:118
273
273
  msgid "Failed to reboot host %{hostname} with error %{error_message}"
274
274
  msgstr ""
275
275
 
276
- #: ../app/controllers/discovered_hosts_controller.rb:129
276
+ #: ../app/controllers/discovered_hosts_controller.rb:132
277
277
  msgid "Failed to reboot hosts with error %s"
278
278
  msgstr ""
279
279
 
280
- #: ../app/controllers/discovered_hosts_controller.rb:147
280
+ #: ../app/controllers/discovered_hosts_controller.rb:150
281
281
  msgid "Destroyed selected hosts"
282
282
  msgstr "Förstör markerade värdar"
283
283
 
284
- #: ../app/controllers/discovered_hosts_controller.rb:149
284
+ #: ../app/controllers/discovered_hosts_controller.rb:152
285
285
  msgid "The following hosts were not deleted: %s"
286
286
  msgstr "Följande värdar raderades inte: %s"
287
287
 
288
- #: ../app/controllers/discovered_hosts_controller.rb:161
288
+ #: ../app/controllers/discovered_hosts_controller.rb:164
289
289
  msgid "Failed to auto provision host %s: %s"
290
290
  msgstr ""
291
291
 
292
- #: ../app/controllers/discovered_hosts_controller.rb:189
292
+ #: ../app/controllers/discovered_hosts_controller.rb:192
293
293
  msgid "Discovered hosts are provisioning now"
294
294
  msgstr ""
295
295
 
296
- #: ../app/controllers/discovered_hosts_controller.rb:270
296
+ #: ../app/controllers/discovered_hosts_controller.rb:277
297
297
  msgid "Discovered host reported from unknown subnet, communication will not be proxied."
298
298
  msgstr ""
299
299
 
300
- #: ../app/controllers/discovered_hosts_controller.rb:275
300
+ #: ../app/controllers/discovered_hosts_controller.rb:282
301
301
  msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
302
302
  msgstr ""
303
303
 
304
- #: ../app/controllers/discovered_hosts_controller.rb:289
304
+ #: ../app/controllers/discovered_hosts_controller.rb:296
305
305
  msgid "No hosts were found with that id or name"
306
306
  msgstr "Inga värdar med det idt eller namnet hittades"
307
307
 
308
- #: ../app/controllers/discovered_hosts_controller.rb:293
308
+ #: ../app/controllers/discovered_hosts_controller.rb:300
309
309
  msgid "No hosts selected"
310
310
  msgstr "Inga värdar markerade"
311
311
 
312
- #: ../app/controllers/discovered_hosts_controller.rb:299
312
+ #: ../app/controllers/discovered_hosts_controller.rb:306
313
313
  msgid "Something went wrong while selecting hosts - %s"
314
314
  msgstr "Något blev fel vid markering av värdar - %s"
315
315
 
@@ -407,7 +407,7 @@ msgstr ""
407
407
 
408
408
  #: ../app/helpers/discovery_rules_helper.rb:33
409
409
  msgid "Clone"
410
- msgstr ""
410
+ msgstr "Klona"
411
411
 
412
412
  #: ../app/helpers/discovery_rules_helper.rb:34
413
413
  msgid "Delete rule '%s'?"
@@ -473,23 +473,23 @@ msgstr ""
473
473
  msgid "Facts could not be imported"
474
474
  msgstr ""
475
475
 
476
- #: ../app/models/host/discovered.rb:146
476
+ #: ../app/models/host/discovered.rb:155
477
477
  msgid "Could not get facts from proxy %{url}: %{error}"
478
478
  msgstr ""
479
479
 
480
- #: ../app/models/host/discovered.rb:160
480
+ #: ../app/models/host/discovered.rb:173
481
481
  msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
482
482
  msgstr ""
483
483
 
484
- #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
484
+ #: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
485
485
  msgid "Unable to perform %{action} on %{ips}"
486
486
  msgstr ""
487
487
 
488
- #: ../app/models/host/discovered.rb:179
488
+ #: ../app/models/host/discovered.rb:196
489
489
  msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
490
490
  msgstr ""
491
491
 
492
- #: ../app/models/host/discovered.rb:203
492
+ #: ../app/models/host/discovered.rb:220
493
493
  msgid "Invalid hostname: Could not normalize the hostname"
494
494
  msgstr ""
495
495
 
@@ -697,6 +697,14 @@ msgstr ""
697
697
  msgid "Type of name generator"
698
698
  msgstr ""
699
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
+
700
708
  #: ../app/services/foreman_discovery/fact_parser.rb:4
701
709
  msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
702
710
  msgstr ""
@@ -977,7 +985,7 @@ msgstr ""
977
985
 
978
986
  #: ../app/views/discovery_rules/clone.erb:1
979
987
  msgid "Clone %s"
980
- msgstr ""
988
+ msgstr "Klona %s"
981
989
 
982
990
  #: ../app/views/discovery_rules/edit.html.erb:1
983
991
  msgid "Edit %s"
@@ -1090,7 +1098,3 @@ msgstr ""
1090
1098
  #: action_names.rb:5
1091
1099
  msgid "Action with sub plans"
1092
1100
  msgstr ""
1093
-
1094
- #: ../app/helpers/discovered_hosts_helper.rb:10
1095
- #~ msgid "%s ago"
1096
- #~ msgstr "%s sedan"
@@ -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.2.0\n"
11
+ "Project-Id-Version: foreman_discovery 16.3.4\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "PO-Revision-Date: 2020-05-26 17:21+0000\n"
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