foreman_discovery 16.3.6 → 17.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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 +3 -4
- 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/discovered_hosts/welcome.html.erb +1 -1
- 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/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 +44 -40
- 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 +42 -38
- 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 +37 -29
- 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 +39 -35
- 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 +42 -38
- 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 +88 -84
- 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 +42 -38
- 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 +42 -38
- 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 +74 -70
- 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 +42 -38
- 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 +42 -38
- 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 +46 -42
- 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 +42 -38
- 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 +90 -86
- 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 +42 -38
- 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 +31 -9
@@ -14,10 +14,10 @@
|
|
14
14
|
# stbenjam <stephen@redhat.com>, 2016
|
15
15
|
msgid ""
|
16
16
|
msgstr ""
|
17
|
-
"Project-Id-Version: foreman_discovery 16.
|
17
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
18
18
|
"Report-Msgid-Bugs-To: \n"
|
19
|
-
"PO-Revision-Date:
|
20
|
-
"Last-Translator:
|
19
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
20
|
+
"Last-Translator: Crited <Alexander.Stoll@netways.de>\n"
|
21
21
|
"Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
|
22
22
|
"MIME-Version: 1.0\n"
|
23
23
|
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -28,9 +28,6 @@ msgstr ""
|
|
28
28
|
msgid "%s - The following hosts are about to be changed"
|
29
29
|
msgstr "%s - Die folgenden Hosts werden geändert"
|
30
30
|
|
31
|
-
msgid "%s ago"
|
32
|
-
msgstr "vor %s"
|
33
|
-
|
34
31
|
msgid "%s discovered hosts were provisioned"
|
35
32
|
msgstr "%s entdeckte Hosts wurden bereitgestellt"
|
36
33
|
|
@@ -41,7 +38,7 @@ msgid "A summary of discovered hosts"
|
|
41
38
|
msgstr "Eine Zusammenfassung der entdeckten Hosts"
|
42
39
|
|
43
40
|
msgid "Action with sub plans"
|
44
|
-
msgstr ""
|
41
|
+
msgstr "Aktion mit Unterplänen"
|
45
42
|
|
46
43
|
msgid "Actions"
|
47
44
|
msgstr "Aktionen"
|
@@ -88,6 +85,12 @@ msgstr "Alle Fakten löschen"
|
|
88
85
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
89
86
|
msgstr "Alle berichteten Fakten während der Bereitstellung löschen (ausgenommen Entdeckungsfakten)"
|
90
87
|
|
88
|
+
msgid "Clone"
|
89
|
+
msgstr ""
|
90
|
+
|
91
|
+
msgid "Clone %s"
|
92
|
+
msgstr ""
|
93
|
+
|
91
94
|
msgid "Collapse All"
|
92
95
|
msgstr "Alle einklappen"
|
93
96
|
|
@@ -153,9 +156,15 @@ msgstr[1] ""
|
|
153
156
|
msgid "Discovered Hosts"
|
154
157
|
msgstr "Entdeckte Hosts"
|
155
158
|
|
159
|
+
msgid "Discovered Rules"
|
160
|
+
msgstr ""
|
161
|
+
|
156
162
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
157
163
|
msgstr ""
|
158
164
|
|
165
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
166
|
+
msgstr ""
|
167
|
+
|
159
168
|
msgid "Discovered host: %s"
|
160
169
|
msgstr "Entdeckter Host: %s"
|
161
170
|
|
@@ -168,6 +177,9 @@ msgstr "Entdeckte Hosts werden jetzt neu gestartet"
|
|
168
177
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
169
178
|
msgstr "Vom Foreman-Server unter %{foreman_url} entdeckte Hosts"
|
170
179
|
|
180
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
181
|
+
msgstr ""
|
182
|
+
|
171
183
|
msgid "Discovered hosts summary"
|
172
184
|
msgstr "Zusammenfassung entdeckter Hosts"
|
173
185
|
|
@@ -234,6 +246,9 @@ msgstr "Aktivieren"
|
|
234
246
|
msgid "Enable rule '%s'?"
|
235
247
|
msgstr "Regel '%s' aktivieren?"
|
236
248
|
|
249
|
+
msgid "Error message goes here"
|
250
|
+
msgstr ""
|
251
|
+
|
237
252
|
msgid "Error on existing NIC"
|
238
253
|
msgstr "Fehler auf existierenden NIC"
|
239
254
|
|
@@ -288,6 +303,9 @@ msgstr "Fehler beim Aktualisieren von Fakten für %s"
|
|
288
303
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
289
304
|
msgstr "Fehler beim Aktualisieren der Fakten für %{hostname} mit Fehlermeldung %{error_message}"
|
290
305
|
|
306
|
+
msgid "For more information please see "
|
307
|
+
msgstr ""
|
308
|
+
|
291
309
|
msgid "Force DNS"
|
292
310
|
msgstr "DNS erzwingen"
|
293
311
|
|
@@ -312,6 +330,9 @@ msgstr "Hervorhebungen"
|
|
312
330
|
msgid "Host"
|
313
331
|
msgstr "Host"
|
314
332
|
|
333
|
+
msgid "Host %s has been dicovered"
|
334
|
+
msgstr ""
|
335
|
+
|
315
336
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
316
337
|
msgstr "Host %{host} wurde bereitgestellt mit Regel %{rule}"
|
317
338
|
|
@@ -332,10 +353,10 @@ msgid "Host of type %s can not be rebooted"
|
|
332
353
|
msgstr "Host vom Typ %s kann nicht neu gestartet werden"
|
333
354
|
|
334
355
|
msgid "Host's owner type"
|
335
|
-
msgstr ""
|
356
|
+
msgstr "Eigentümertyp des Hosts"
|
336
357
|
|
337
358
|
msgid "Host's parameters (array or indexed hash)"
|
338
|
-
msgstr ""
|
359
|
+
msgstr "Hostparameter (Array oder indizierter Hash)"
|
339
360
|
|
340
361
|
msgid "Hostname facts"
|
341
362
|
msgstr "Hostnamenfakten"
|
@@ -386,10 +407,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
|
|
386
407
|
msgstr "Image API gibt HTTP/%{code} mit '%{body} zurück"
|
387
408
|
|
388
409
|
msgid "Import Puppet classes"
|
389
|
-
msgstr ""
|
410
|
+
msgstr "Puppet-Klassen importieren"
|
390
411
|
|
391
412
|
msgid "Import facts"
|
392
|
-
msgstr ""
|
413
|
+
msgstr "Fakten importieren"
|
393
414
|
|
394
415
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
395
416
|
msgstr ""
|
@@ -479,7 +500,7 @@ msgid "Name"
|
|
479
500
|
msgstr "Name"
|
480
501
|
|
481
502
|
msgid "Name of the parameter"
|
482
|
-
msgstr ""
|
503
|
+
msgstr "Name des Parameters"
|
483
504
|
|
484
505
|
msgid "Network"
|
485
506
|
msgstr "Netzwerk"
|
@@ -490,6 +511,9 @@ msgstr "Netzwerkfakten"
|
|
490
511
|
msgid "New Discovery Rule"
|
491
512
|
msgstr "Neue Entdeckungsregel"
|
492
513
|
|
514
|
+
msgid "New hosts"
|
515
|
+
msgstr ""
|
516
|
+
|
493
517
|
msgid "New in the last 24 hours"
|
494
518
|
msgstr "Neu in den letzten 24 Stunden"
|
495
519
|
|
@@ -542,7 +566,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
|
|
542
566
|
msgstr ""
|
543
567
|
|
544
568
|
msgid "Parameter value"
|
545
|
-
msgstr ""
|
569
|
+
msgstr "Parameterwert"
|
546
570
|
|
547
571
|
msgid "Please Confirm"
|
548
572
|
msgstr "Bitte bestätigen"
|
@@ -608,7 +632,7 @@ msgid "Reloading kernel on %s"
|
|
608
632
|
msgstr "Kernel auf %s wird neu geladen"
|
609
633
|
|
610
634
|
msgid "Remote action:"
|
611
|
-
msgstr ""
|
635
|
+
msgstr "Entfernte Aktion:"
|
612
636
|
|
613
637
|
msgid "Reported in the last 7 days"
|
614
638
|
msgstr "Berichtet in den letzten 7 Tagen"
|
@@ -698,7 +722,7 @@ msgid "Type of name generator"
|
|
698
722
|
msgstr "Typ des Namensgenerators"
|
699
723
|
|
700
724
|
msgid "Type of value"
|
701
|
-
msgstr ""
|
725
|
+
msgstr "Typ des Wertes"
|
702
726
|
|
703
727
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
704
728
|
msgstr "UUID zum Tracken des Status der Orchestrierungsaufgaben, GET /api/orchestration/:UUID/tasks"
|
@@ -736,6 +760,9 @@ msgstr "darf keine Leerzeichen enthalten."
|
|
736
760
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
737
761
|
msgstr "definiert ein Muster, nach dem einfach lesbare Hostnamen zu übereinstimmenden Hosts zugewiesen werden"
|
738
762
|
|
763
|
+
msgid "documentation"
|
764
|
+
msgstr "Dokumentation"
|
765
|
+
|
739
766
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
740
767
|
msgstr "ermöglicht die Begrenzung der maximal bereitgestellten Hosts pro Regel"
|
741
768
|
|
@@ -785,13 +812,13 @@ msgid "represents rule name shown to the users"
|
|
785
812
|
msgstr "repräsentiert den Regelnamen, der Benutzern angezeigt wird"
|
786
813
|
|
787
814
|
msgid "required if host is managed and custom partition has not been defined"
|
788
|
-
msgstr ""
|
815
|
+
msgstr "erforderlich, wenn der Host gemanagt und keine spezifische Partition definiert ist"
|
789
816
|
|
790
817
|
msgid "required if host is managed and value is not inherited from host group"
|
791
|
-
msgstr ""
|
818
|
+
msgstr "erforderlich, wenn der Host gemanagt und der Wert nicht von einer Hostgruppe vererbt ist"
|
792
819
|
|
793
820
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
794
|
-
msgstr ""
|
821
|
+
msgstr "erforderlich, wenn die Bereitstellung nicht image-basiert, der Host gemanagt und der Wert nicht von einer Hostgruppe vererbt ist"
|
795
822
|
|
796
823
|
msgid "required if value is not inherited from host group or default password in settings"
|
797
824
|
msgstr "erforderlich, falls kein Wert von Hostgruppe geerbt wird oder es nicht das Standardpasswort in Einstellungen ist"
|
Binary file
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# This file is distributed under the same license as the foreman_discovery package.
|
3
3
|
msgid ""
|
4
4
|
msgstr ""
|
5
|
-
"Project-Id-Version: foreman_discovery
|
5
|
+
"Project-Id-Version: foreman_discovery 17.1.0\n"
|
6
6
|
"Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
|
7
7
|
"PO-Revision-Date: 2015-12-27 01:18+0000\n"
|
8
8
|
"Last-Translator: \n"
|
@@ -112,7 +112,7 @@ msgstr ""
|
|
112
112
|
msgid "Execute rules against a discovered host"
|
113
113
|
msgstr ""
|
114
114
|
|
115
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:
|
115
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
|
116
116
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
117
117
|
msgstr ""
|
118
118
|
|
@@ -120,7 +120,7 @@ msgstr ""
|
|
120
120
|
msgid "Unable to provision %{host}: %{errors}"
|
121
121
|
msgstr ""
|
122
122
|
|
123
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:
|
123
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
|
124
124
|
msgid "No rule found for host %s"
|
125
125
|
msgstr ""
|
126
126
|
|
@@ -128,11 +128,11 @@ msgstr ""
|
|
128
128
|
msgid "Execute rules against all currently discovered hosts"
|
129
129
|
msgstr ""
|
130
130
|
|
131
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:
|
131
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
|
132
132
|
msgid "Errors during auto provisioning: %s"
|
133
133
|
msgstr ""
|
134
134
|
|
135
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:
|
135
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
|
136
136
|
msgid "No discovered hosts to provision"
|
137
137
|
msgstr ""
|
138
138
|
|
@@ -152,7 +152,7 @@ msgstr ""
|
|
152
152
|
msgid "Rebooting all discovered hosts"
|
153
153
|
msgstr ""
|
154
154
|
|
155
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:
|
155
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
|
156
156
|
msgid "Discovered hosts are rebooting now"
|
157
157
|
msgstr ""
|
158
158
|
|
@@ -232,75 +232,75 @@ msgstr ""
|
|
232
232
|
msgid "No discovered hosts to reboot"
|
233
233
|
msgstr ""
|
234
234
|
|
235
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
235
|
+
#: ../app/controllers/discovered_hosts_controller.rb:63
|
236
236
|
msgid "Successfully provisioned %s"
|
237
237
|
msgstr ""
|
238
238
|
|
239
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
239
|
+
#: ../app/controllers/discovered_hosts_controller.rb:97
|
240
240
|
msgid "Facts refreshed for %s"
|
241
241
|
msgstr ""
|
242
242
|
|
243
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
243
|
+
#: ../app/controllers/discovered_hosts_controller.rb:99
|
244
244
|
msgid "Failed to refresh facts for %s"
|
245
245
|
msgstr ""
|
246
246
|
|
247
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
247
|
+
#: ../app/controllers/discovered_hosts_controller.rb:102
|
248
248
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
249
249
|
msgstr ""
|
250
250
|
|
251
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
251
|
+
#: ../app/controllers/discovered_hosts_controller.rb:109
|
252
252
|
msgid "Host of type %s can not be rebooted"
|
253
253
|
msgstr ""
|
254
254
|
|
255
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
255
|
+
#: ../app/controllers/discovered_hosts_controller.rb:113
|
256
256
|
msgid "Rebooting host %s"
|
257
257
|
msgstr ""
|
258
258
|
|
259
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
259
|
+
#: ../app/controllers/discovered_hosts_controller.rb:115
|
260
260
|
msgid "Failed to reboot host %s"
|
261
261
|
msgstr ""
|
262
262
|
|
263
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
263
|
+
#: ../app/controllers/discovered_hosts_controller.rb:118
|
264
264
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
265
265
|
msgstr ""
|
266
266
|
|
267
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
267
|
+
#: ../app/controllers/discovered_hosts_controller.rb:132
|
268
268
|
msgid "Failed to reboot hosts with error %s"
|
269
269
|
msgstr ""
|
270
270
|
|
271
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
271
|
+
#: ../app/controllers/discovered_hosts_controller.rb:150
|
272
272
|
msgid "Destroyed selected hosts"
|
273
273
|
msgstr ""
|
274
274
|
|
275
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
275
|
+
#: ../app/controllers/discovered_hosts_controller.rb:152
|
276
276
|
msgid "The following hosts were not deleted: %s"
|
277
277
|
msgstr ""
|
278
278
|
|
279
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
279
|
+
#: ../app/controllers/discovered_hosts_controller.rb:164
|
280
280
|
msgid "Failed to auto provision host %s: %s"
|
281
281
|
msgstr ""
|
282
282
|
|
283
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
283
|
+
#: ../app/controllers/discovered_hosts_controller.rb:192
|
284
284
|
msgid "Discovered hosts are provisioning now"
|
285
285
|
msgstr ""
|
286
286
|
|
287
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
287
|
+
#: ../app/controllers/discovered_hosts_controller.rb:277
|
288
288
|
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
289
289
|
msgstr ""
|
290
290
|
|
291
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
291
|
+
#: ../app/controllers/discovered_hosts_controller.rb:282
|
292
292
|
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
293
293
|
msgstr ""
|
294
294
|
|
295
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
295
|
+
#: ../app/controllers/discovered_hosts_controller.rb:296
|
296
296
|
msgid "No hosts were found with that id or name"
|
297
297
|
msgstr ""
|
298
298
|
|
299
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
299
|
+
#: ../app/controllers/discovered_hosts_controller.rb:300
|
300
300
|
msgid "No hosts selected"
|
301
301
|
msgstr ""
|
302
302
|
|
303
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
303
|
+
#: ../app/controllers/discovered_hosts_controller.rb:306
|
304
304
|
msgid "Something went wrong while selecting hosts - %s"
|
305
305
|
msgstr ""
|
306
306
|
|
@@ -464,23 +464,23 @@ msgstr ""
|
|
464
464
|
msgid "Facts could not be imported"
|
465
465
|
msgstr ""
|
466
466
|
|
467
|
-
#: ../app/models/host/discovered.rb:
|
467
|
+
#: ../app/models/host/discovered.rb:155
|
468
468
|
msgid "Could not get facts from proxy %{url}: %{error}"
|
469
469
|
msgstr ""
|
470
470
|
|
471
|
-
#: ../app/models/host/discovered.rb:
|
471
|
+
#: ../app/models/host/discovered.rb:173
|
472
472
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
473
473
|
msgstr ""
|
474
474
|
|
475
|
-
#: ../app/models/host/discovered.rb:
|
475
|
+
#: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
|
476
476
|
msgid "Unable to perform %{action} on %{ips}"
|
477
477
|
msgstr ""
|
478
478
|
|
479
|
-
#: ../app/models/host/discovered.rb:
|
479
|
+
#: ../app/models/host/discovered.rb:196
|
480
480
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
481
481
|
msgstr ""
|
482
482
|
|
483
|
-
#: ../app/models/host/discovered.rb:
|
483
|
+
#: ../app/models/host/discovered.rb:220
|
484
484
|
msgid "Invalid hostname: Could not normalize the hostname"
|
485
485
|
msgstr ""
|
486
486
|
|
@@ -688,6 +688,14 @@ msgstr ""
|
|
688
688
|
msgid "Type of name generator"
|
689
689
|
msgstr ""
|
690
690
|
|
691
|
+
#: ../app/models/setting/discovered.rb:40
|
692
|
+
msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
|
693
|
+
msgstr ""
|
694
|
+
|
695
|
+
#: ../app/models/setting/discovered.rb:40
|
696
|
+
msgid "Prefer IPv6"
|
697
|
+
msgstr ""
|
698
|
+
|
691
699
|
#: ../app/services/foreman_discovery/fact_parser.rb:4
|
692
700
|
msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
|
693
701
|
msgstr ""
|
@@ -2,7 +2,7 @@
|
|
2
2
|
# This file is distributed under the same license as the foreman_discovery package.
|
3
3
|
msgid ""
|
4
4
|
msgstr ""
|
5
|
-
"Project-Id-Version: foreman_discovery 16.
|
5
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
6
6
|
"Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
|
7
7
|
"PO-Revision-Date: 2015-12-27 01:18+0000\n"
|
8
8
|
"Last-Translator: \n"
|
@@ -15,9 +15,6 @@ msgstr ""
|
|
15
15
|
msgid "%s - The following hosts are about to be changed"
|
16
16
|
msgstr ""
|
17
17
|
|
18
|
-
msgid "%s ago"
|
19
|
-
msgstr ""
|
20
|
-
|
21
18
|
msgid "%s discovered hosts were provisioned"
|
22
19
|
msgstr ""
|
23
20
|
|
@@ -75,6 +72,12 @@ msgstr ""
|
|
75
72
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
76
73
|
msgstr ""
|
77
74
|
|
75
|
+
msgid "Clone"
|
76
|
+
msgstr ""
|
77
|
+
|
78
|
+
msgid "Clone %s"
|
79
|
+
msgstr ""
|
80
|
+
|
78
81
|
msgid "Collapse All"
|
79
82
|
msgstr ""
|
80
83
|
|
@@ -140,9 +143,15 @@ msgstr[1] ""
|
|
140
143
|
msgid "Discovered Hosts"
|
141
144
|
msgstr ""
|
142
145
|
|
146
|
+
msgid "Discovered Rules"
|
147
|
+
msgstr ""
|
148
|
+
|
143
149
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
144
150
|
msgstr ""
|
145
151
|
|
152
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
153
|
+
msgstr ""
|
154
|
+
|
146
155
|
msgid "Discovered host: %s"
|
147
156
|
msgstr ""
|
148
157
|
|
@@ -155,6 +164,9 @@ msgstr ""
|
|
155
164
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
156
165
|
msgstr ""
|
157
166
|
|
167
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
168
|
+
msgstr ""
|
169
|
+
|
158
170
|
msgid "Discovered hosts summary"
|
159
171
|
msgstr ""
|
160
172
|
|
@@ -221,6 +233,9 @@ msgstr ""
|
|
221
233
|
msgid "Enable rule '%s'?"
|
222
234
|
msgstr ""
|
223
235
|
|
236
|
+
msgid "Error message goes here"
|
237
|
+
msgstr ""
|
238
|
+
|
224
239
|
msgid "Error on existing NIC"
|
225
240
|
msgstr ""
|
226
241
|
|
@@ -275,6 +290,9 @@ msgstr ""
|
|
275
290
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
276
291
|
msgstr ""
|
277
292
|
|
293
|
+
msgid "For more information please see "
|
294
|
+
msgstr ""
|
295
|
+
|
278
296
|
msgid "Force DNS"
|
279
297
|
msgstr ""
|
280
298
|
|
@@ -299,6 +317,9 @@ msgstr ""
|
|
299
317
|
msgid "Host"
|
300
318
|
msgstr ""
|
301
319
|
|
320
|
+
msgid "Host %s has been dicovered"
|
321
|
+
msgstr ""
|
322
|
+
|
302
323
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
303
324
|
msgstr ""
|
304
325
|
|
@@ -477,6 +498,9 @@ msgstr ""
|
|
477
498
|
msgid "New Discovery Rule"
|
478
499
|
msgstr ""
|
479
500
|
|
501
|
+
msgid "New hosts"
|
502
|
+
msgstr ""
|
503
|
+
|
480
504
|
msgid "New in the last 24 hours"
|
481
505
|
msgstr ""
|
482
506
|
|
@@ -723,6 +747,9 @@ msgstr ""
|
|
723
747
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
724
748
|
msgstr ""
|
725
749
|
|
750
|
+
msgid "documentation"
|
751
|
+
msgstr ""
|
752
|
+
|
726
753
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
727
754
|
msgstr ""
|
728
755
|
|
Binary file
|