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
@@ -7,10 +7,10 @@
7
7
  # caifti <caifti@gmail.com>, 2014
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_discovery 15.1.0\n"
10
+ "Project-Id-Version: foreman_discovery 16.2.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "PO-Revision-Date: 2019-10-22 20:43+0000\n"
13
- "Last-Translator: Andrea Perotti\n"
12
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
13
+ "Last-Translator: Transifex Bot <>\n"
14
14
  "Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
15
15
  "\n"
16
16
  "MIME-Version: 1.0\n"
@@ -139,6 +139,11 @@ msgstr "Disabilita"
139
139
  msgid "Disable rule '%s'?"
140
140
  msgstr ""
141
141
 
142
+ msgid "Discovered Host"
143
+ msgid_plural "Discovered Hosts"
144
+ msgstr[0] ""
145
+ msgstr[1] ""
146
+
142
147
  msgid "Discovered Hosts"
143
148
  msgstr ""
144
149
 
@@ -320,6 +325,12 @@ msgstr[1] ""
320
325
  msgid "Host of type %s can not be rebooted"
321
326
  msgstr "Impossibile eseguire il riavvio sul tipo di host %s "
322
327
 
328
+ msgid "Host's owner type"
329
+ msgstr ""
330
+
331
+ msgid "Host's parameters (array or indexed hash)"
332
+ msgstr ""
333
+
323
334
  msgid "Hostname facts"
324
335
  msgstr ""
325
336
 
@@ -369,10 +380,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
369
380
  msgstr ""
370
381
 
371
382
  msgid "Import Puppet classes"
372
- msgstr "Importa classi Puppet"
383
+ msgstr ""
373
384
 
374
385
  msgid "Import facts"
375
- msgstr "Importa gli eventi"
386
+ msgstr ""
376
387
 
377
388
  msgid "In addition to @host attribute function rand for random integers is available. Examples:"
378
389
  msgstr ""
@@ -407,9 +418,6 @@ msgstr ""
407
418
  msgid "Last Facts Upload"
408
419
  msgstr ""
409
420
 
410
- msgid "Learn more about this in the documentation."
411
- msgstr ""
412
-
413
421
  msgid "List all discovered hosts"
414
422
  msgstr "Elenca tutti gli host rilevati"
415
423
 
@@ -464,6 +472,9 @@ msgstr "N/A"
464
472
  msgid "Name"
465
473
  msgstr "Nome"
466
474
 
475
+ msgid "Name of the parameter"
476
+ msgstr ""
477
+
467
478
  msgid "Network"
468
479
  msgstr "Rete"
469
480
 
@@ -482,9 +493,6 @@ msgstr "Nessun host rilevato disponibile"
482
493
  msgid "No discovered hosts for the selected period"
483
494
  msgstr ""
484
495
 
485
- msgid "No discovered hosts found in this context."
486
- msgstr ""
487
-
488
496
  msgid "No discovered hosts to provision"
489
497
  msgstr "Nessun host rilevato per il provisioning"
490
498
 
@@ -527,6 +535,9 @@ msgstr ""
527
535
  msgid "PXELinux template to be used when pinning a host to discovery"
528
536
  msgstr ""
529
537
 
538
+ msgid "Parameter value"
539
+ msgstr ""
540
+
530
541
  msgid "Please Confirm"
531
542
  msgstr "Conferma"
532
543
 
@@ -591,7 +602,7 @@ msgid "Reloading kernel on %s"
591
602
  msgstr ""
592
603
 
593
604
  msgid "Remote action:"
594
- msgstr "Azione remota:"
605
+ msgstr ""
595
606
 
596
607
  msgid "Reported in the last 7 days"
597
608
  msgstr ""
@@ -674,15 +685,15 @@ msgstr "I seguenti host non sono stati rilevati: %s"
674
685
  msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
675
686
  msgstr "Questa operazione potrebbe richiedere qualche istante poichè saranno annullati anche gli host, eventi e riporti"
676
687
 
677
- msgid "This page shows discovered bare-metal or virtual nodes waiting to be provisioned."
678
- msgstr ""
679
-
680
688
  msgid "Type"
681
689
  msgstr "Tipo"
682
690
 
683
691
  msgid "Type of name generator"
684
692
  msgstr ""
685
693
 
694
+ msgid "Type of value"
695
+ msgstr ""
696
+
686
697
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
687
698
  msgstr "UUID per controllare gli stati dei compiti d'orchestrazione, GET /api/orchestration/:UUID/tasks"
688
699
 
@@ -692,13 +703,16 @@ msgstr ""
692
703
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
693
704
  msgstr ""
694
705
 
695
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
706
+ msgid "Unable to perform %{action} on %{ips}"
696
707
  msgstr ""
697
708
 
698
- msgid "Unable to provision %{host}: %{errors}"
709
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
710
+ msgstr ""
711
+
712
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
699
713
  msgstr ""
700
714
 
701
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
715
+ msgid "Unable to provision %{host}: %{errors}"
702
716
  msgstr ""
703
717
 
704
718
  msgid "Update a rule"
@@ -764,6 +778,15 @@ msgstr "interrogazione da corrispondere agli host rilevati per una regola partic
764
778
  msgid "represents rule name shown to the users"
765
779
  msgstr "rappresenta il nome della regola da mostrare agli utenti"
766
780
 
781
+ msgid "required if host is managed and custom partition has not been defined"
782
+ msgstr ""
783
+
784
+ msgid "required if host is managed and value is not inherited from host group"
785
+ msgstr ""
786
+
787
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
788
+ msgstr ""
789
+
767
790
  msgid "required if value is not inherited from host group or default password in settings"
768
791
  msgstr "necessario se il valore non è ereditato da un gruppo di host o password predefinita nelle impostazione"
769
792
 
@@ -1,17 +1,17 @@
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
  # 山田 修司 🍣 Shuji Yamada <uzy.exe@gmail.com>, 2015
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: foreman_discovery 15.1.0\n"
9
+ "Project-Id-Version: foreman_discovery 16.2.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2019-10-22 11:55+0200\n"
12
- "PO-Revision-Date: 2019-10-22 20:43+0000\n"
13
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
14
- "Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/)\n"
11
+ "PO-Revision-Date: 2020-05-26 17:21+0000\n"
12
+ "Last-Translator: Transifex Bot <>\n"
13
+ "Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/"
14
+ ")\n"
15
15
  "MIME-Version: 1.0\n"
16
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
17
  "Content-Transfer-Encoding: 8bit\n"
@@ -22,23 +22,19 @@ msgstr ""
22
22
  msgid "List all discovered hosts"
23
23
  msgstr "すべての検出されたホストを一覧表示"
24
24
 
25
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17
26
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:15
25
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:17 ../app/controllers/api/v2/discovery_rules_controller.rb:15
27
26
  msgid "filter results"
28
27
  msgstr "結果のフィルター"
29
28
 
30
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18
31
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:16
29
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:18 ../app/controllers/api/v2/discovery_rules_controller.rb:16
32
30
  msgid "sort results"
33
31
  msgstr "結果のソート"
34
32
 
35
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19
36
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:17
33
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:19 ../app/controllers/api/v2/discovery_rules_controller.rb:17
37
34
  msgid "paginate results"
38
35
  msgstr "結果のページネーション"
39
36
 
40
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20
41
- #: ../app/controllers/api/v2/discovery_rules_controller.rb:18
37
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:20 ../app/controllers/api/v2/discovery_rules_controller.rb:18
42
38
  msgid "number of entries per request"
43
39
  msgstr "要求ごとのエントリー数"
44
40
 
@@ -46,8 +42,7 @@ msgstr "要求ごとのエントリー数"
46
42
  msgid "Show a discovered host"
47
43
  msgstr "検出されたホストの表示"
48
44
 
49
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37
50
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:79
45
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:37 ../app/controllers/api/v2/discovered_hosts_controller.rb:85
51
46
  msgid "DHCP filename option (Grub2 or PXELinux by default)"
52
47
  msgstr "DHCP ファイル名オプション (デフォルトでは Grub2 または PXELinux)"
53
48
 
@@ -59,6 +54,10 @@ msgstr "(新規ホストを作成するための使用 /ファクト) をテス
59
54
  msgid "Provision a discovered host"
60
55
  msgstr "検出されたホストのプロビジョニング"
61
56
 
57
+ #: ../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
58
+ msgid "required if host is managed and value is not inherited from host group"
59
+ msgstr ""
60
+
62
61
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
63
62
  msgid "not required if using a subnet with DHCP proxy"
64
63
  msgstr "DHCP プロキシーを使用するサブネットを使用する場合は不要です"
@@ -67,82 +66,99 @@ msgstr "DHCP プロキシーを使用するサブネットを使用する場合
67
66
  msgid "not required if it's a virtual machine"
68
67
  msgstr "仮想マシンの場合は不要です"
69
68
 
70
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:76
71
- msgid ""
72
- "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
69
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
70
+ msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
71
+ msgstr ""
72
+
73
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
74
+ msgid "required if host is managed and custom partition has not been defined"
75
+ msgstr ""
76
+
77
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
78
+ msgid "Host's owner type"
79
+ msgstr ""
80
+
81
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
82
+ msgid "Host's parameters (array or indexed hash)"
83
+ msgstr ""
84
+
85
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
86
+ msgid "Name of the parameter"
87
+ msgstr ""
88
+
89
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
90
+ msgid "Parameter value"
91
+ msgstr ""
92
+
93
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
94
+ msgid "Type of value"
95
+ msgstr ""
96
+
97
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
98
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
73
99
  msgstr "オーケストレーションタスクの状態を追跡するための UUID。GET /api/orchestration/:UUID/tasks"
74
100
 
75
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:78
76
- msgid ""
77
- "required if value is not inherited from host group or default password in "
78
- "settings"
101
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:84
102
+ msgid "required if value is not inherited from host group or default password in settings"
79
103
  msgstr "値がホストグループから継承されていないか、または設定済みのデフォルトパスワードである場合に必須です。"
80
104
 
81
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:89
105
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:95
82
106
  msgid "Delete a discovered host"
83
107
  msgstr "検出されたホストの削除"
84
108
 
85
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:96
109
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:102
86
110
  msgid "Upload facts for a host, creating the host if required"
87
111
  msgstr "ホストのファクトをアップロードし、必要な場合はホストを作成します"
88
112
 
89
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:97
90
- msgid ""
91
- "hash containing facts for the host with minimum set of facts: "
92
- "discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: "
93
- "eth0 (example in case primary interface is named eth0)"
113
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
114
+ 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)"
94
115
  msgstr "ファクトの最小セットが設定されたホストのファクトを含むハッシュ : discovery_bootif、macaddress_eth0、ipaddress、ipaddress_eth0、 interfaces: eth0 (プライマリーインターフェースの名前が eth0 の場合の例)"
95
116
 
96
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:116
117
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
97
118
  msgid "Execute rules against a discovered host"
98
119
  msgstr "検出されたホストに対するルールの実行"
99
120
 
100
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:122
101
- #: ../app/controllers/discovered_hosts_controller.rb:160
121
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
102
122
  msgid "Host %{host} was provisioned with rule %{rule}"
103
123
  msgstr "ホスト %{host} がルール %{rule} でプロビジョニングされています"
104
124
 
105
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:125
125
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
106
126
  msgid "Unable to provision %{host}: %{errors}"
107
127
  msgstr "%{host} をプロビジョニングできません: %{errors}"
108
128
 
109
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:131
110
- #: ../app/controllers/discovered_hosts_controller.rb:167
129
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
111
130
  msgid "No rule found for host %s"
112
131
  msgstr "ホスト %s に対するルールは見つかりません"
113
132
 
114
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
133
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
115
134
  msgid "Execute rules against all currently discovered hosts"
116
135
  msgstr "現在検出されているすべてのホストに対するルールの実行"
117
136
 
118
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:142
119
- #: ../app/controllers/discovered_hosts_controller.rb:173
137
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
120
138
  msgid "Errors during auto provisioning: %s"
121
139
  msgstr "自動プロビジョニング時のエラー: %s"
122
140
 
123
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145
124
- #: ../app/controllers/discovered_hosts_controller.rb:176
141
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
125
142
  msgid "No discovered hosts to provision"
126
143
  msgstr "プロビジョニングする検出されたホストがありません"
127
144
 
128
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:167
145
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
129
146
  msgid "%s discovered hosts were provisioned"
130
147
  msgstr "%s 検出されたホストがプロビジョニングされました"
131
148
 
132
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:178
149
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
133
150
  msgid "Refreshing the facts of a discovered host"
134
151
  msgstr "検出されたホストのファクトの更新中"
135
152
 
136
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:187
153
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
137
154
  msgid "Rebooting a discovered host"
138
155
  msgstr "検出されたホストの再起動中"
139
156
 
140
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:196
157
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
141
158
  msgid "Rebooting all discovered hosts"
142
159
  msgstr "すべての検出されたホストの再起動中"
143
160
 
144
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:207
145
- #: ../app/controllers/discovered_hosts_controller.rb:129
161
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
146
162
  msgid "Discovered hosts are rebooting now"
147
163
  msgstr "検出されたホストの再起動中"
148
164
 
@@ -167,8 +183,7 @@ msgid "the hostgroup that is used to auto provision a host"
167
183
  msgstr "ホストの自動プロビジョニングに使用されるホストグループ"
168
184
 
169
185
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:35
170
- msgid ""
171
- "defines a pattern to assign human-readable hostnames to the matching hosts"
186
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
172
187
  msgstr "人が判読できるホスト名を一致するホストに割り当てるパターンの定義"
173
188
 
174
189
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:36
@@ -176,8 +191,7 @@ msgid "enables to limit maximum amount of provisioned hosts per rule"
176
191
  msgstr "ルール別のプロビジョニングされたホストの最大数の制限を許可"
177
192
 
178
193
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
179
- msgid ""
180
- "puts the rules in order, low numbers go first. Must be greater then zero"
194
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
181
195
  msgstr "ルールを低い数字の順に配置。ゼロより大きい値である必要があります。"
182
196
 
183
197
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
@@ -276,43 +290,43 @@ msgstr "ホスト %s の自動プロビジョニングに失敗しました: %s"
276
290
  msgid "Discovered hosts are provisioning now"
277
291
  msgstr "検出されたホストのプロビジョニング中"
278
292
 
279
- #: ../app/controllers/discovered_hosts_controller.rb:224
293
+ #: ../app/controllers/discovered_hosts_controller.rb:226
280
294
  msgid "Highlights"
281
295
  msgstr "ハイライト"
282
296
 
283
- #: ../app/controllers/discovered_hosts_controller.rb:224
297
+ #: ../app/controllers/discovered_hosts_controller.rb:226
284
298
  msgid "Storage"
285
299
  msgstr "ストレージ"
286
300
 
287
- #: ../app/controllers/discovered_hosts_controller.rb:224
301
+ #: ../app/controllers/discovered_hosts_controller.rb:226
288
302
  msgid "Hardware"
289
303
  msgstr "ハードウェア"
290
304
 
291
- #: ../app/controllers/discovered_hosts_controller.rb:224
305
+ #: ../app/controllers/discovered_hosts_controller.rb:226
292
306
  msgid "Network"
293
307
  msgstr "ネットワーク"
294
308
 
295
- #: ../app/controllers/discovered_hosts_controller.rb:224
309
+ #: ../app/controllers/discovered_hosts_controller.rb:226
296
310
  msgid "Software"
297
311
  msgstr "ソフトウェア"
298
312
 
299
- #: ../app/controllers/discovered_hosts_controller.rb:224
313
+ #: ../app/controllers/discovered_hosts_controller.rb:226
300
314
  msgid "IPMI"
301
315
  msgstr "IPMI"
302
316
 
303
- #: ../app/controllers/discovered_hosts_controller.rb:224
317
+ #: ../app/controllers/discovered_hosts_controller.rb:226
304
318
  msgid "Miscellaneous"
305
319
  msgstr "その他"
306
320
 
307
- #: ../app/controllers/discovered_hosts_controller.rb:302
321
+ #: ../app/controllers/discovered_hosts_controller.rb:304
308
322
  msgid "No hosts were found with that id or name"
309
323
  msgstr "該当する ID または名前のホストが見つかりませんでした"
310
324
 
311
- #: ../app/controllers/discovered_hosts_controller.rb:306
325
+ #: ../app/controllers/discovered_hosts_controller.rb:308
312
326
  msgid "No hosts selected"
313
327
  msgstr "ホストが選択されていません"
314
328
 
315
- #: ../app/controllers/discovered_hosts_controller.rb:312
329
+ #: ../app/controllers/discovered_hosts_controller.rb:314
316
330
  msgid "Something went wrong while selecting hosts - %s"
317
331
  msgstr "ホストの選択中に問題が発生しました - %s"
318
332
 
@@ -328,21 +342,15 @@ msgstr "無効にされたルール"
328
342
  msgid "%s ago"
329
343
  msgstr "%s 前"
330
344
 
331
- #: ../app/helpers/discovered_hosts_helper.rb:14
332
- #: ../app/helpers/discovered_hosts_helper.rb:29
333
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
345
+ #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
334
346
  msgid "Auto Provision"
335
347
  msgstr "自動プロビジョニング"
336
348
 
337
- #: ../app/helpers/discovered_hosts_helper.rb:15
338
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
349
+ #: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:38
339
350
  msgid "Refresh facts"
340
351
  msgstr "ファクトの更新"
341
352
 
342
- #: ../app/helpers/discovered_hosts_helper.rb:16
343
- #: ../app/helpers/discovered_hosts_helper.rb:30
344
- #: ../app/models/setting/discovered.rb:22
345
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:39
353
+ #: ../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
346
354
  msgid "Reboot"
347
355
  msgstr "再起動"
348
356
 
@@ -350,13 +358,11 @@ msgstr "再起動"
350
358
  msgid "Back"
351
359
  msgstr "戻る"
352
360
 
353
- #: ../app/helpers/discovered_hosts_helper.rb:21
354
- #: ../app/helpers/discovered_hosts_helper.rb:35
361
+ #: ../app/helpers/discovered_hosts_helper.rb:21 ../app/helpers/discovered_hosts_helper.rb:35
355
362
  msgid "Select Action"
356
363
  msgstr "アクションの選択"
357
364
 
358
- #: ../app/helpers/discovered_hosts_helper.rb:23
359
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
365
+ #: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
360
366
  msgid "Delete %s?"
361
367
  msgstr "%s を削除しますか?"
362
368
 
@@ -376,8 +382,7 @@ msgstr "削除"
376
382
  msgid "%s - The following hosts are about to be changed"
377
383
  msgstr "%s - 以下のホストはすぐに変更されます"
378
384
 
379
- #: ../app/helpers/discovered_hosts_helper.rb:46
380
- #: ../app/views/dashboard/_discovery_widget_host.html.erb:2
385
+ #: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
381
386
  msgid "N/A"
382
387
  msgstr "該当なし"
383
388
 
@@ -397,12 +402,7 @@ msgstr "過去 7 日以内に報告あり"
397
402
  msgid "Provision"
398
403
  msgstr "プロビジョニング"
399
404
 
400
- #: ../app/helpers/discovery_rules_helper.rb:26
401
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:1
402
- #: ../app/views/discovered_hosts/welcome.html.erb:1
403
- #: ../app/views/discovered_hosts/welcome.html.erb:6
404
- #: ../lib/foreman_discovery/engine.rb:158
405
- #: ../lib/foreman_discovery/engine.rb:173
405
+ #: ../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
406
406
  msgid "Discovered Hosts"
407
407
  msgstr "検出されたホスト"
408
408
 
@@ -451,17 +451,16 @@ msgid "must be present."
451
451
  msgstr "必須です。"
452
452
 
453
453
  #: ../app/models/discovery_rule.rb:52
454
- msgid ""
455
- "Host group organization %s must also be associated to the discovery rule"
456
- msgid_plural ""
457
- "Host group organizations %s must also be associated to the discovery rule"
454
+ msgid "Host group organization %s must also be associated to the discovery rule"
455
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
458
456
  msgstr[0] ""
457
+ msgstr[1] ""
459
458
 
460
459
  #: ../app/models/discovery_rule.rb:56
461
460
  msgid "Host group location %s must also be associated to the discovery rule"
462
- msgid_plural ""
463
- "Host group locations %s must also be associated to the discovery rule"
461
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
464
462
  msgstr[0] ""
463
+ msgstr[1] ""
465
464
 
466
465
  #: ../app/models/host/discovered.rb:40
467
466
  msgid "Fact + prefix"
@@ -475,39 +474,39 @@ msgstr "無作為の名前"
475
474
  msgid "MAC-based name"
476
475
  msgstr "MAC ベースの名前"
477
476
 
478
- #: ../app/models/host/discovered.rb:51
477
+ #: ../app/models/host/discovered.rb:55
479
478
  msgid "Invalid facts, must be a Hash"
480
479
  msgstr "無効なファクトです。ハッシュである必要があります。"
481
480
 
482
- #: ../app/models/host/discovered.rb:56
483
- msgid ""
484
- "Expected discovery_fact '%s' is missing, unable to detect primary interface "
485
- "and set hostname"
481
+ #: ../app/models/host/discovered.rb:60
482
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
486
483
  msgstr "予測された discovery_fact '%s' がありません。プライマリーインターフェースを検出したり、ホスト名を設定したりできません"
487
484
 
488
- #: ../app/models/host/discovered.rb:69
489
- msgid ""
490
- "Invalid facts: hash does not contain a valid value for any of the facts in "
491
- "the discovery_hostname setting: %s"
485
+ #: ../app/models/host/discovered.rb:73
486
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
492
487
  msgstr "無効なファクト: ハッシュには discovery_hostname 設定のファクトのいずれの有効な値も含まれていません: %s"
493
488
 
494
- #: ../app/models/host/discovered.rb:95
489
+ #: ../app/models/host/discovered.rb:100
495
490
  msgid "Facts could not be imported"
496
491
  msgstr "ファクトをインポートできませんでした"
497
492
 
498
- #: ../app/models/host/discovered.rb:150
493
+ #: ../app/models/host/discovered.rb:146
499
494
  msgid "Could not get facts from proxy %{url}: %{error}"
500
495
  msgstr "プロキシー %{url} からファクトを取得できませんでした: %{error}"
501
496
 
502
- #: ../app/models/host/discovered.rb:158
503
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
504
- msgstr "%{url} から %{name} を再起動できません: %{msg}"
497
+ #: ../app/models/host/discovered.rb:160
498
+ msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
499
+ msgstr ""
500
+
501
+ #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
502
+ msgid "Unable to perform %{action} on %{ips}"
503
+ msgstr ""
505
504
 
506
- #: ../app/models/host/discovered.rb:166
507
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
508
- msgstr "%{url} から kexec を %{name} に対して実行できません: %{msg}"
505
+ #: ../app/models/host/discovered.rb:179
506
+ msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
507
+ msgstr ""
509
508
 
510
- #: ../app/models/host/discovered.rb:185
509
+ #: ../app/models/host/discovered.rb:203
511
510
  msgid "Invalid hostname: Could not normalize the hostname"
512
511
  msgstr "無効なホスト名: ホスト名を正規化できませんでした"
513
512
 
@@ -535,191 +534,183 @@ msgstr "Init RAM kexec URL は無効です: '%s'"
535
534
  msgid "Rebuild DNS for %s"
536
535
  msgstr "%s の DNS の再構築"
537
536
 
538
- #: ../app/models/setting/discovered.rb:15
537
+ #: ../app/models/setting/discovered.rb:17
539
538
  msgid "The default location to place discovered hosts in"
540
539
  msgstr "検出されたホストを配置するデフォルトの場所"
541
540
 
542
- #: ../app/models/setting/discovered.rb:15
541
+ #: ../app/models/setting/discovered.rb:17
543
542
  msgid "Discovery location"
544
543
  msgstr "検出ロケーション"
545
544
 
546
- #: ../app/models/setting/discovered.rb:16
545
+ #: ../app/models/setting/discovered.rb:18
547
546
  msgid "The default organization to place discovered hosts in"
548
547
  msgstr "検出されたホストを配置するデフォルトの組織"
549
548
 
550
- #: ../app/models/setting/discovered.rb:16
549
+ #: ../app/models/setting/discovered.rb:18
551
550
  msgid "Discovery organization"
552
551
  msgstr "検出組織"
553
552
 
554
- #: ../app/models/setting/discovered.rb:17
553
+ #: ../app/models/setting/discovered.rb:19
555
554
  msgid "Fact name to use for primary interface detection"
556
555
  msgstr "プライマリーインターフェースの検出に使用するファクト名"
557
556
 
558
- #: ../app/models/setting/discovered.rb:17
557
+ #: ../app/models/setting/discovered.rb:19
559
558
  msgid "Interface fact"
560
559
  msgstr "インターフェースファクト"
561
560
 
562
- #: ../app/models/setting/discovered.rb:18
563
- msgid ""
564
- "Automatic bond interface (if another interface is detected on the same VLAN "
565
- "via LLDP)"
561
+ #: ../app/models/setting/discovered.rb:20
562
+ msgid "Automatic bond interface (if another interface is detected on the same VLAN via LLDP)"
566
563
  msgstr "自動ボンドインターフェース (LLDP で同じ VLAN 上に別のインターフェースが検出された場合)"
567
564
 
568
- #: ../app/models/setting/discovered.rb:18
565
+ #: ../app/models/setting/discovered.rb:20
569
566
  msgid "Create bond interfaces"
570
567
  msgstr "ボンドインターフェースの作成"
571
568
 
572
- #: ../app/models/setting/discovered.rb:19
569
+ #: ../app/models/setting/discovered.rb:21
573
570
  msgid "Clean all reported facts during provisioning (except discovery facts)"
574
571
  msgstr "プロビジョニング時に報告されたすべてのファクトをクリーニング (検出ファクトを除く)"
575
572
 
576
- #: ../app/models/setting/discovered.rb:19
573
+ #: ../app/models/setting/discovered.rb:21
577
574
  msgid "Clean all facts"
578
575
  msgstr "すべてのファクトのクリーニング"
579
576
 
580
- #: ../app/models/setting/discovered.rb:20
577
+ #: ../app/models/setting/discovered.rb:22
581
578
  msgid "List of facts to use for the hostname (separated by comma, first wins)"
582
579
  msgstr "ホスト名に使用するファクトの一覧 (コンマ区切り、first wins)"
583
580
 
584
- #: ../app/models/setting/discovered.rb:20
581
+ #: ../app/models/setting/discovered.rb:22
585
582
  msgid "Hostname facts"
586
583
  msgstr "ホスト名ファクト"
587
584
 
588
- #: ../app/models/setting/discovered.rb:21
589
- msgid ""
590
- "Automatically provision newly discovered hosts, according to the "
591
- "provisioning rules"
585
+ #: ../app/models/setting/discovered.rb:23
586
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
592
587
  msgstr "プロビジョニングルールに基づく新たに検出されたホストの自動プロビジョニング"
593
588
 
594
- #: ../app/models/setting/discovered.rb:21
589
+ #: ../app/models/setting/discovered.rb:23
595
590
  msgid "Auto provisioning"
596
591
  msgstr "自動プロビジョニング"
597
592
 
598
- #: ../app/models/setting/discovered.rb:22
593
+ #: ../app/models/setting/discovered.rb:24
599
594
  msgid "Automatically reboot or kexec discovered host during provisioning"
600
595
  msgstr "プロビジョニング時の検出されたホストの自動的な再起動または kexec の実行"
601
596
 
602
- #: ../app/models/setting/discovered.rb:23
597
+ #: ../app/models/setting/discovered.rb:25
603
598
  msgid "The default prefix to use for the host name, must start with a letter"
604
599
  msgstr "ホスト名に使用するデフォルトのプレフィックスは文字で開始する必要があります"
605
600
 
606
- #: ../app/models/setting/discovered.rb:23
601
+ #: ../app/models/setting/discovered.rb:25
607
602
  msgid "Hostname prefix"
608
603
  msgstr "ホスト名のプレフィックス"
609
604
 
610
- #: ../app/models/setting/discovered.rb:24
605
+ #: ../app/models/setting/discovered.rb:26
611
606
  msgid "Extra facter columns to show in host lists (separate by comma)"
612
607
  msgstr "ホスト一覧に表示される追加の facter 列 (コンマ区切り)"
613
608
 
614
- #: ../app/models/setting/discovered.rb:24
609
+ #: ../app/models/setting/discovered.rb:26
615
610
  msgid "Fact columns"
616
611
  msgstr "Fact 列"
617
612
 
618
- #: ../app/models/setting/discovered.rb:25
613
+ #: ../app/models/setting/discovered.rb:27
619
614
  msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
620
615
  msgstr "ハイライトセクションのファクトを整理するための Regex (例: ^(abc|cde)$)"
621
616
 
622
- #: ../app/models/setting/discovered.rb:25
617
+ #: ../app/models/setting/discovered.rb:27
623
618
  msgid "Highlighted facts"
624
619
  msgstr "ハイライトされたファクト"
625
620
 
626
- #: ../app/models/setting/discovered.rb:26
621
+ #: ../app/models/setting/discovered.rb:28
627
622
  msgid "Regex to organize facts for storage section"
628
623
  msgstr "ストレージセクションのファクトを整理するための Regex"
629
624
 
630
- #: ../app/models/setting/discovered.rb:26
625
+ #: ../app/models/setting/discovered.rb:28
631
626
  msgid "Storage facts"
632
627
  msgstr "ストレージファクト"
633
628
 
634
- #: ../app/models/setting/discovered.rb:27
629
+ #: ../app/models/setting/discovered.rb:29
635
630
  msgid "Regex to organize facts for software section"
636
631
  msgstr "ソフトウェアセクションのファクトを整理するための Regex"
637
632
 
638
- #: ../app/models/setting/discovered.rb:27
633
+ #: ../app/models/setting/discovered.rb:29
639
634
  msgid "Software facts"
640
635
  msgstr "ソフトウェアファクト"
641
636
 
642
- #: ../app/models/setting/discovered.rb:28
637
+ #: ../app/models/setting/discovered.rb:30
643
638
  msgid "Regex to organize facts for hardware section"
644
639
  msgstr "ハードウェアセクションのファクトを整理するための Regex"
645
640
 
646
- #: ../app/models/setting/discovered.rb:28
641
+ #: ../app/models/setting/discovered.rb:30
647
642
  msgid "Hardware facts"
648
643
  msgstr "ハードウェアファクト"
649
644
 
650
- #: ../app/models/setting/discovered.rb:29
645
+ #: ../app/models/setting/discovered.rb:31
651
646
  msgid "Regex to organize facts for network section"
652
647
  msgstr "ネットワークセクションのファクトを整理するための Regex"
653
648
 
654
- #: ../app/models/setting/discovered.rb:29
649
+ #: ../app/models/setting/discovered.rb:31
655
650
  msgid "Network facts"
656
651
  msgstr "ネットワークファクト"
657
652
 
658
- #: ../app/models/setting/discovered.rb:30
653
+ #: ../app/models/setting/discovered.rb:32
659
654
  msgid "Regex to organize facts for ipmi section"
660
655
  msgstr "ipmi セクションのファクトを整理するための Regex"
661
656
 
662
- #: ../app/models/setting/discovered.rb:30
657
+ #: ../app/models/setting/discovered.rb:32
663
658
  msgid "IPMI facts"
664
659
  msgstr "IPMI ファクト"
665
660
 
666
- #: ../app/models/setting/discovered.rb:31
667
- msgid ""
668
- "Automatically generate PXE configuration to pin a newly discovered host to "
669
- "discovery"
661
+ #: ../app/models/setting/discovered.rb:33
662
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
670
663
  msgstr "新規に検出されたホストを検出に固定するための PXE 設定の自動生成"
671
664
 
672
- #: ../app/models/setting/discovered.rb:31
665
+ #: ../app/models/setting/discovered.rb:33
673
666
  msgid "Lock PXE"
674
667
  msgstr "PXE のロック"
675
668
 
676
- #: ../app/models/setting/discovered.rb:32
669
+ #: ../app/models/setting/discovered.rb:34
677
670
  msgid "PXELinux template to be used when pinning a host to discovery"
678
671
  msgstr "ホストを検出に固定する際に使用される PXELinux テンプレート"
679
672
 
680
- #: ../app/models/setting/discovered.rb:32
673
+ #: ../app/models/setting/discovered.rb:34
681
674
  msgid "Locked PXELinux template name"
682
675
  msgstr "ロックされた PXELinux テンプレート名"
683
676
 
684
- #: ../app/models/setting/discovered.rb:33
677
+ #: ../app/models/setting/discovered.rb:35
685
678
  msgid "PXEGrub template to be used when pinning a host to discovery"
686
679
  msgstr "ホストを検出に固定する際に使用される PXEGrub テンプレート"
687
680
 
688
- #: ../app/models/setting/discovered.rb:33
681
+ #: ../app/models/setting/discovered.rb:35
689
682
  msgid "Locked PXEGrub template name"
690
683
  msgstr "ロックされた PXEGrub テンプレート名"
691
684
 
692
- #: ../app/models/setting/discovered.rb:34
685
+ #: ../app/models/setting/discovered.rb:36
693
686
  msgid "PXEGrub2 template to be used when pinning a host to discovery"
694
687
  msgstr "ホストを検出に固定する際に使用される PXEGrub2 テンプレート"
695
688
 
696
- #: ../app/models/setting/discovered.rb:34
689
+ #: ../app/models/setting/discovered.rb:36
697
690
  msgid "Locked PXEGrub2 template name"
698
691
  msgstr "ロックされた PXEGrub2 テンプレート名"
699
692
 
700
- #: ../app/models/setting/discovered.rb:35
693
+ #: ../app/models/setting/discovered.rb:37
701
694
  msgid "Force DNS entries creation when provisioning discovered host"
702
695
  msgstr "検出されたホストのプロビジョニング時の DNS エントリーの作成を強制的に実行"
703
696
 
704
- #: ../app/models/setting/discovered.rb:35
697
+ #: ../app/models/setting/discovered.rb:37
705
698
  msgid "Force DNS"
706
699
  msgstr "DNS の強制的な実行"
707
700
 
708
- #: ../app/models/setting/discovered.rb:36
709
- msgid ""
710
- "Do not allow to discover existing managed host matching MAC of a "
711
- "provisioning NIC (errors out early)"
701
+ #: ../app/models/setting/discovered.rb:38
702
+ msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
712
703
  msgstr "プロビジョニング NIC の MAC と一致する既存の管理ホストの検出を許可しない (エラーは早い段階で出されます)"
713
704
 
714
- #: ../app/models/setting/discovered.rb:36
705
+ #: ../app/models/setting/discovered.rb:38
715
706
  msgid "Error on existing NIC"
716
707
  msgstr "既存の NIC でのエラー"
717
708
 
718
- #: ../app/models/setting/discovered.rb:37
709
+ #: ../app/models/setting/discovered.rb:39
719
710
  msgid "Discovery hostname naming pattern"
720
711
  msgstr "ホスト名の名前パターンの検出"
721
712
 
722
- #: ../app/models/setting/discovered.rb:37
713
+ #: ../app/models/setting/discovered.rb:39
723
714
  msgid "Type of name generator"
724
715
  msgstr "名前ジェネレーターのタイプ"
725
716
 
@@ -732,23 +723,27 @@ msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
732
723
  msgstr "検出ホスト '%{host}' は全 NIC がフィルタリングされています。フィルター: %{filter}"
733
724
 
734
725
  #: ../app/services/foreman_discovery/fact_parser.rb:12
735
- msgid ""
736
- "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: "
737
- "%{filter}"
726
+ msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
738
727
  msgstr "%{mac} が '%{fact}' で指定されたプライマリー NIC を見つけることができません。NIC フィルター: %{filter}"
739
728
 
740
- #: ../app/services/foreman_discovery/host_converter.rb:39
729
+ #: ../app/services/foreman_discovery/host_converter.rb:47
741
730
  msgid "IPAM must be configured for subnet '%s'"
742
731
  msgstr ""
743
732
 
744
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:75
733
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:76
745
734
  msgid "Image API returned HTTP/%{code} with '%{body}"
746
735
  msgstr "イメージ API で返された HTTP/%{code}: '%{body}"
747
736
 
748
- #: ../app/services/foreman_discovery/node_api/node_resource.rb:78
737
+ #: ../app/services/foreman_discovery/node_api/node_resource.rb:79
749
738
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
750
739
  msgstr "イメージ API の処理エラー: %{msg} (HTTP/%{code}、本体: %{body})"
751
740
 
741
+ #: ../app/views/dashboard/_discovery_widget.html.erb:5
742
+ msgid "Discovered Host"
743
+ msgid_plural "Discovered Hosts"
744
+ msgstr[0] ""
745
+ msgstr[1] ""
746
+
752
747
  #: ../app/views/dashboard/_discovery_widget.html.erb:9
753
748
  msgid "No discovered hosts available"
754
749
  msgstr "検出されたホストがありません"
@@ -757,33 +752,23 @@ msgstr "検出されたホストがありません"
757
752
  msgid "Host"
758
753
  msgstr "ホスト"
759
754
 
760
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4
761
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6
762
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:8
763
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:18
764
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:10
755
+ #: ../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
765
756
  msgid "Model"
766
757
  msgstr "モデル"
767
758
 
768
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5
769
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8
770
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:20
771
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:12
759
+ #: ../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
772
760
  msgid "CPUs"
773
761
  msgstr "CPU"
774
762
 
775
- #: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6
776
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9
777
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:21
778
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:13
763
+ #: ../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
779
764
  msgid "Memory"
780
765
  msgstr "メモリー"
781
766
 
782
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:25
767
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:23
783
768
  msgid "Customize Host"
784
769
  msgstr "ホストのカスタマイズ"
785
770
 
786
- #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:26
771
+ #: ../app/views/discovered_hosts/_discovered_host_modal.html.erb:24
787
772
  msgid "Create Host"
788
773
  msgstr "ホストの作成"
789
774
 
@@ -795,16 +780,11 @@ msgstr "このページのすべての項目を選択"
795
780
  msgid "items selected. Uncheck to Clear"
796
781
  msgstr "項目が選択されています。クリアするにはチェックを解除してください"
797
782
 
798
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
799
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:7
800
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:17
801
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:9
783
+ #: ../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
802
784
  msgid "Name"
803
785
  msgstr "名前"
804
786
 
805
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7
806
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:19
807
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:11
787
+ #: ../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
808
788
  msgid "IP Address"
809
789
  msgstr "IP アドレス"
810
790
 
@@ -816,13 +796,11 @@ msgstr "ディスク数"
816
796
  msgid "Disks Size"
817
797
  msgstr "ディスクサイズ"
818
798
 
819
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15
820
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:9
799
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:15 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
821
800
  msgid "Location"
822
801
  msgstr "場所"
823
802
 
824
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16
825
- #: ../app/views/discovered_hosts/_selected_hosts.html.erb:10
803
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
826
804
  msgid "Organization"
827
805
  msgstr "組織"
828
806
 
@@ -834,8 +812,7 @@ msgstr "サブネット"
834
812
  msgid "Last Facts Upload"
835
813
  msgstr "最終ファクトのアップロード"
836
814
 
837
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
838
- #: ../app/views/discovery_rules/index.html.erb:12
815
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19 ../app/views/discovery_rules/index.html.erb:12
839
816
  msgid "Actions"
840
817
  msgstr "アクション"
841
818
 
@@ -856,9 +833,7 @@ msgid "Provision %s"
856
833
  msgstr "%s のプロビジョニング"
857
834
 
858
835
  #: ../app/views/discovered_hosts/multiple_destroy.html.erb:3
859
- msgid ""
860
- "This might take a while, as all hosts, facts and reports will be destroyed "
861
- "as well"
836
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
862
837
  msgstr "ホスト、ファクト、およびレポートもすべて破棄されるため、時間がかかる場合があります。"
863
838
 
864
839
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
@@ -897,20 +872,6 @@ msgstr "IP アドレス"
897
872
  msgid "Collapse All"
898
873
  msgstr "すべて折りたたむ"
899
874
 
900
- #: ../app/views/discovered_hosts/welcome.html.erb:7
901
- msgid "No discovered hosts found in this context."
902
- msgstr "このコンテキストで検出されたホストはありません。"
903
-
904
- #: ../app/views/discovered_hosts/welcome.html.erb:8
905
- msgid ""
906
- "This page shows discovered bare-metal or virtual nodes waiting to be "
907
- "provisioned."
908
- msgstr "このページでは、プロビジョニングする予定の検出されたベアメタルまたは仮想ノードを表示しています。"
909
-
910
- #: ../app/views/discovered_hosts/welcome.html.erb:9
911
- msgid "Learn more about this in the documentation."
912
- msgstr "この詳細についてはドキュメンテーションを参照してください。"
913
-
914
875
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:6
915
876
  msgid "Summary report for discovered hosts from Foreman"
916
877
  msgstr "Foreman の検出されたホストの概要レポート"
@@ -919,23 +880,19 @@ msgstr "Foreman の検出されたホストの概要レポート"
919
880
  msgid "<b>Foreman</b> Discovered hosts summary"
920
881
  msgstr "<b>Foreman</b> の検出されたホストの概要"
921
882
 
922
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:10
923
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:5
883
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
924
884
  msgid "Summary from %{time} ago to %{now}"
925
885
  msgstr "%{time} から %{now} までの概要"
926
886
 
927
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:11
928
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:3
887
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
929
888
  msgid "Discovered hosts from Foreman server at %{foreman_url}"
930
889
  msgstr "Foreman サーバーの検出されたホスト: %{foreman_url}"
931
890
 
932
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:22
933
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:14
891
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:22 ../app/views/discovered_mailer/discovered_summary.text.erb:14
934
892
  msgid "Disk count"
935
893
  msgstr "ディスク数"
936
894
 
937
- #: ../app/views/discovered_mailer/discovered_summary.html.erb:23
938
- #: ../app/views/discovered_mailer/discovered_summary.text.erb:15
895
+ #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
939
896
  msgid "Disks size"
940
897
  msgstr "ディスク容量"
941
898
 
@@ -984,41 +941,30 @@ msgid "Rule priority (lower integer means higher priority)"
984
941
  msgstr "ルールの優先順位 (整数の低い値は高い優先順位を意味します)"
985
942
 
986
943
  #: ../app/views/discovery_rules/_template_inline.erb:2
987
- msgid ""
988
- "Specify target hostname template pattern in the same syntax as in "
989
- "Provisioning Templates (ERB)."
944
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
990
945
  msgstr "プロビジョニングテンプレート (ERB) と同じ構文のターゲットホスト名テンプレートのパターンを指定します。"
991
946
 
992
947
  #: ../app/views/discovery_rules/_template_inline.erb:4
993
- msgid ""
994
- "Domain will be appended automatically. A hostname based on MAC address will "
995
- "be used when left blank."
948
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
996
949
  msgstr "ドメインは自動的に追加されます。空白のままの場合には、MAC アドレスに基づくホスト名が使用されます。"
997
950
 
998
951
  #: ../app/views/discovery_rules/_template_inline.erb:5
999
- msgid ""
1000
- "In addition to @host attribute function rand for random integers is "
1001
- "available. Examples:"
952
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
1002
953
  msgstr "@host 属性のほかに、ランダムな整数の rand 関数を利用できます。例:"
1003
954
 
1004
955
  #: ../app/views/discovery_rules/_template_inline.erb:8
1005
- msgid ""
1006
- "When creating hostname patterns, make sure the resulting host names are "
1007
- "unique."
956
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
1008
957
  msgstr "ホスト名パターンの作成時に、生成されるホスト名が固有であることを確認します。"
1009
958
 
1010
959
  #: ../app/views/discovery_rules/_template_inline.erb:9
1011
- msgid ""
1012
- "Hostnames must not start with numbers. A good approach is to use unique "
1013
- "information provided by facter (MAC address, BIOS or serial ID)."
960
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
1014
961
  msgstr "ホスト名は数字で開始することができません。facter で提供される固有の情報 (MAC アドレス、BIOS またはシリアル ID) を使用することが適切な方法です。"
1015
962
 
1016
963
  #: ../app/views/discovery_rules/edit.html.erb:1
1017
964
  msgid "Edit %s"
1018
965
  msgstr "%s の編集"
1019
966
 
1020
- #: ../app/views/discovery_rules/index.html.erb:1
1021
- #: ../lib/foreman_discovery/engine.rb:163
967
+ #: ../app/views/discovery_rules/index.html.erb:1 ../lib/foreman_discovery/engine.rb:164
1022
968
  msgid "Discovery Rules"
1023
969
  msgstr "検出ルール"
1024
970
 
@@ -1074,38 +1020,43 @@ msgstr "1 つ以上のホストが検出されました"
1074
1020
  msgid "Details"
1075
1021
  msgstr "詳細"
1076
1022
 
1077
- #: ../lib/foreman_discovery/engine.rb:179
1023
+ #: ../lib/foreman_discovery/engine.rb:180
1078
1024
  msgid "Discovery Kexec template"
1079
1025
  msgstr "検出 Kexec テンプレート"
1080
1026
 
1081
- #: ../lib/foreman_discovery/engine.rb:188
1027
+ #: ../lib/foreman_discovery/engine.rb:189
1082
1028
  msgid "Discovery Proxy"
1083
1029
  msgstr "検出プロキシー"
1084
1030
 
1085
- #: ../lib/foreman_discovery/engine.rb:189
1086
- msgid ""
1087
- "Discovery Proxy to use within this subnet for managing connection to "
1088
- "discovered hosts"
1031
+ #: ../lib/foreman_discovery/engine.rb:190
1032
+ msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1089
1033
  msgstr "検出されたホストへの接続を管理するためにこのサブネット内で使用する検出プロキシー"
1090
1034
 
1091
- #: ../lib/foreman_discovery/engine.rb:190
1092
- msgid ""
1093
- "ID of Discovery Proxy to use within this subnet for managing connection to "
1094
- "discovered hosts"
1035
+ #: ../lib/foreman_discovery/engine.rb:191
1036
+ msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1095
1037
  msgstr "検出されたホストへの接続を管理するためにこのサブネット内で使用する検出プロキシーの ID"
1096
1038
 
1097
1039
  #: action_names.rb:2
1098
- msgid "Import Puppet classes"
1099
- msgstr "Puppet クラスのインポート"
1040
+ msgid "Remote action:"
1041
+ msgstr ""
1100
1042
 
1101
1043
  #: action_names.rb:3
1102
- msgid "Import facts"
1103
- msgstr "ファクトのインポート"
1044
+ msgid "Import Puppet classes"
1045
+ msgstr ""
1104
1046
 
1105
1047
  #: action_names.rb:4
1106
1048
  msgid "Action with sub plans"
1107
- msgstr "サブプランによるアクション"
1049
+ msgstr ""
1108
1050
 
1109
1051
  #: action_names.rb:5
1110
- msgid "Remote action:"
1111
- msgstr "リモートアクション:"
1052
+ msgid "Import facts"
1053
+ msgstr ""
1054
+
1055
+ #~ msgid "Learn more about this in the documentation."
1056
+ #~ msgstr "この詳細についてはドキュメンテーションを参照してください。"
1057
+ #~ msgid "No discovered hosts found in this context."
1058
+ #~ msgstr "このコンテキストで検出されたホストはありません。"
1059
+ #~ msgid ""
1060
+ #~ "This page shows discovered bare-metal or virtual nodes waiting to be provision"
1061
+ #~ "ed."
1062
+ #~ msgstr "このページでは、プロビジョニングする予定の検出されたベアメタルまたは仮想ノードを表示しています。"