foreman_discovery 16.3.5 → 17.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) 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 +1 -1
  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/discovery_rules/clone.erb +3 -0
  13. data/app/views/discovery_rules/index.html.erb +4 -0
  14. data/app/views/discovery_rules/welcome.html.erb +15 -0
  15. data/app/views/foreman_discovery/debian_kexec.erb +1 -1
  16. data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
  17. data/config/routes.rb +2 -0
  18. data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
  19. data/lib/foreman_discovery/engine.rb +3 -7
  20. data/lib/foreman_discovery/version.rb +1 -1
  21. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  22. data/locale/ca/foreman_discovery.edit.po +103 -70
  23. data/locale/ca/foreman_discovery.po +36 -9
  24. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  25. data/locale/de/foreman_discovery.edit.po +109 -76
  26. data/locale/de/foreman_discovery.po +45 -18
  27. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  28. data/locale/en/foreman_discovery.edit.po +98 -66
  29. data/locale/en/foreman_discovery.po +31 -4
  30. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  31. data/locale/en_GB/foreman_discovery.edit.po +107 -74
  32. data/locale/en_GB/foreman_discovery.po +36 -9
  33. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  34. data/locale/es/foreman_discovery.edit.po +109 -76
  35. data/locale/es/foreman_discovery.po +70 -41
  36. data/locale/foreman_discovery.pot +142 -97
  37. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  38. data/locale/fr/foreman_discovery.edit.po +151 -118
  39. data/locale/fr/foreman_discovery.po +76 -49
  40. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  41. data/locale/gl/foreman_discovery.edit.po +101 -68
  42. data/locale/gl/foreman_discovery.po +32 -5
  43. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  44. data/locale/it/foreman_discovery.edit.po +107 -74
  45. data/locale/it/foreman_discovery.po +44 -17
  46. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  47. data/locale/ja/foreman_discovery.edit.po +136 -103
  48. data/locale/ja/foreman_discovery.po +79 -54
  49. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  50. data/locale/ko/foreman_discovery.edit.po +107 -74
  51. data/locale/ko/foreman_discovery.po +43 -16
  52. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  53. data/locale/pt_BR/foreman_discovery.edit.po +109 -76
  54. data/locale/pt_BR/foreman_discovery.po +69 -39
  55. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  56. data/locale/ru/foreman_discovery.edit.po +112 -79
  57. data/locale/ru/foreman_discovery.po +43 -16
  58. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  59. data/locale/sv_SE/foreman_discovery.edit.po +101 -68
  60. data/locale/sv_SE/foreman_discovery.po +34 -7
  61. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  62. data/locale/zh_CN/foreman_discovery.edit.po +153 -120
  63. data/locale/zh_CN/foreman_discovery.po +114 -90
  64. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  65. data/locale/zh_TW/foreman_discovery.edit.po +107 -74
  66. data/locale/zh_TW/foreman_discovery.po +43 -16
  67. data/package.json +6 -6
  68. data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
  69. data/test/functional/discovery_rules_controller_test.rb +6 -1
  70. data/test/integration/discovered_hosts_test.rb +53 -5
  71. data/test/test_helper_discovery.rb +5 -0
  72. data/test/unit/discovery_rule_test.rb +24 -2
  73. data/test/unit/fact_to_category_resolver_test.rb +41 -0
  74. data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
  75. data/test/unit/ui_notifications/new_host_test.rb +3 -3
  76. data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
  77. data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
  78. data/webpack/__mocks__/foremanReact/common/index.js +5 -0
  79. data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
  80. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
  81. data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
  82. data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
  83. data/webpack/index.js +9 -8
  84. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
  85. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
  86. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
  87. data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
  88. data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
  89. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
  90. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
  91. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
  92. data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
  93. data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
  94. data/webpack/src/reducers.js +0 -2
  95. metadata +32 -10
@@ -7,9 +7,10 @@
7
7
  # 山田 修司 🍣 Shuji Yamada <uzy.exe@gmail.com>, 2015
8
8
  msgid ""
9
9
  msgstr ""
10
- "Project-Id-Version: foreman_discovery 16.3.4\n"
10
+ "Project-Id-Version: foreman_discovery 17.1.0\n"
11
11
  "Report-Msgid-Bugs-To: \n"
12
- "PO-Revision-Date: 2020-12-01 08:28+0000\n"
12
+ "POT-Creation-Date: 2021-09-20 17:25+0200\n"
13
+ "PO-Revision-Date: 2021-05-18 15:01+0000\n"
13
14
  "Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
14
15
  "Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/"
15
16
  ")\n"
@@ -49,7 +50,7 @@ msgstr "DHCP ファイル名オプション (デフォルトでは Grub2 また
49
50
 
50
51
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:41
51
52
  msgid "Create a discovered host for testing (use /facts to create new hosts)"
52
- msgstr "(新規ホストを作成するための使用 /ファクト) をテストするために検出ホストを作成"
53
+ msgstr "(新規ホストを作成するための使用 /ファクト) をテストするために検出ホストを作成します"
53
54
 
54
55
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:50
55
56
  msgid "Provision a discovered host"
@@ -57,7 +58,7 @@ msgstr "検出されたホストのプロビジョニング"
57
58
 
58
59
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
59
60
  msgid "required if host is managed and value is not inherited from host group"
60
- msgstr "ホストが管理されており、値がホストグループから継承されていない場合に必須です。"
61
+ msgstr "ホストが管理されており、値がホストグループから継承されていない場合に必須です"
61
62
 
62
63
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
63
64
  msgid "not required if using a subnet with DHCP proxy"
@@ -69,11 +70,11 @@ msgstr "仮想マシンの場合は不要です"
69
70
 
70
71
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
71
72
  msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
72
- msgstr "イメージベースのプロビジョニングでない場合で、ホストが管理されており、値がホストグループから継承されていない場合に必須です。"
73
+ msgstr "イメージベースのプロビジョニングでない場合で、ホストが管理されており、値がホストグループから継承されていない場合に必須です"
73
74
 
74
75
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
75
76
  msgid "required if host is managed and custom partition has not been defined"
76
- msgstr "ホストが管理されており、カスタムパーティションが定義されていない場合に必須です。"
77
+ msgstr "ホストが管理されており、カスタムパーティションが定義されていない場合に必須です"
77
78
 
78
79
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
79
80
  msgid "Host's owner type"
@@ -97,11 +98,11 @@ msgstr "値のタイプ"
97
98
 
98
99
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
99
100
  msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
100
- msgstr "オーケストレーションタスクの状態を追跡するための UUID。GET /api/orchestration/:UUID/tasks"
101
+ msgstr "オーケストレーションタスクのステータスを追跡するための UUID。GET /api/orchestration/:UUID/tasks"
101
102
 
102
103
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:84
103
104
  msgid "required if value is not inherited from host group or default password in settings"
104
- msgstr "値がホストグループから継承されていないか、または設定済みのデフォルトパスワードである場合に必須です。"
105
+ msgstr "値がホストグループまたは設定のデフォルトパスワードから継承されていない場合は必須です"
105
106
 
106
107
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:95
107
108
  msgid "Delete a discovered host"
@@ -113,59 +114,59 @@ msgstr "ホストのファクトをアップロードし、必要な場合はホ
113
114
 
114
115
  #: ../app/controllers/api/v2/discovered_hosts_controller.rb:103
115
116
  msgid "hash containing facts for the host with minimum set of facts: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in case primary interface is named eth0)"
116
- msgstr "ファクトの最小セットが設定されたホストのファクトを含むハッシュ : discovery_bootif、macaddress_eth0、ipaddress、ipaddress_eth0、 interfaces: eth0 (プライマリーインターフェースの名前が eth0 の場合の例)"
117
+ msgstr "ファクトの最小セットが設定されたホストのファクトを含むハッシュ : discovery_bootif、macaddress_eth0、ipaddress、ipaddress_eth0、interfaces: eth0 (プライマリーインターフェースの名前が eth0 の場合の例)"
117
118
 
118
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:129
119
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
119
120
  msgid "Execute rules against a discovered host"
120
121
  msgstr "検出されたホストに対するルールの実行"
121
122
 
122
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:135 ../app/controllers/discovered_hosts_controller.rb:160
123
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:160
123
124
  msgid "Host %{host} was provisioned with rule %{rule}"
124
- msgstr "ホスト %{host} がルール %{rule} でプロビジョニングされています"
125
+ msgstr "ホスト %{host} がルール %{rule} でプロビジョニングされました"
125
126
 
126
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:138
127
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
127
128
  msgid "Unable to provision %{host}: %{errors}"
128
129
  msgstr "%{host} をプロビジョニングできません: %{errors}"
129
130
 
130
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:144 ../app/controllers/discovered_hosts_controller.rb:167
131
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:167
131
132
  msgid "No rule found for host %s"
132
133
  msgstr "ホスト %s に対するルールは見つかりません"
133
134
 
134
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:151
135
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
135
136
  msgid "Execute rules against all currently discovered hosts"
136
137
  msgstr "現在検出されているすべてのホストに対するルールの実行"
137
138
 
138
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:155 ../app/controllers/discovered_hosts_controller.rb:173
139
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:173
139
140
  msgid "Errors during auto provisioning: %s"
140
141
  msgstr "自動プロビジョニング時のエラー: %s"
141
142
 
142
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:158 ../app/controllers/discovered_hosts_controller.rb:176
143
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:176
143
144
  msgid "No discovered hosts to provision"
144
145
  msgstr "プロビジョニングする検出されたホストがありません"
145
146
 
146
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:180
147
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
147
148
  msgid "%s discovered hosts were provisioned"
148
149
  msgstr "検出ホスト %s 台がプロビジョニングされました"
149
150
 
150
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:191
151
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
151
152
  msgid "Refreshing the facts of a discovered host"
152
153
  msgstr "検出されたホストのファクトの更新中"
153
154
 
154
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:200
155
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
155
156
  msgid "Rebooting a discovered host"
156
157
  msgstr "検出されたホストの再起動中"
157
158
 
158
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:209
159
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
159
160
  msgid "Rebooting all discovered hosts"
160
161
  msgstr "すべての検出されたホストの再起動中"
161
162
 
162
- #: ../app/controllers/api/v2/discovered_hosts_controller.rb:220 ../app/controllers/discovered_hosts_controller.rb:129
163
+ #: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:129
163
164
  msgid "Discovered hosts are rebooting now"
164
- msgstr "検出されたホストの再起動中"
165
+ msgstr "検出されたホストを現在再起動中"
165
166
 
166
167
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:14
167
168
  msgid "List all discovery rules"
168
- msgstr "すべての検出ルールを表示"
169
+ msgstr "すべての検出ルールを一覧表示"
169
170
 
170
171
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:24
171
172
  msgid "Show a discovery rule"
@@ -173,7 +174,7 @@ msgstr "検出ルールの表示"
173
174
 
174
175
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:32
175
176
  msgid "represents rule name shown to the users"
176
- msgstr "ユーザーに表示されるルール名の表示"
177
+ msgstr "ユーザーに表示されるルール名を表します"
177
178
 
178
179
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:33
179
180
  msgid "query to match discovered hosts for the particular rule"
@@ -193,7 +194,7 @@ msgstr "ルール別のプロビジョニングされたホストの最大数の
193
194
 
194
195
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:37
195
196
  msgid "puts the rules in order, low numbers go first. Must be greater then zero"
196
- msgstr "ルールを低い数字の順に配置。ゼロより大きい値である必要があります。"
197
+ msgstr "ルールを低い数字の順に配置。ゼロより大きい値である必要があります"
197
198
 
198
199
  #: ../app/controllers/api/v2/discovery_rules_controller.rb:38
199
200
  msgid "flag is used for temporary shutdown of rules"
@@ -277,7 +278,7 @@ msgstr "ホストは %s のエラーで再起動に失敗しました"
277
278
 
278
279
  #: ../app/controllers/discovered_hosts_controller.rb:150
279
280
  msgid "Destroyed selected hosts"
280
- msgstr "破棄済みの選択ホスト"
281
+ msgstr "破棄された選択済みホスト"
281
282
 
282
283
  #: ../app/controllers/discovered_hosts_controller.rb:152
283
284
  msgid "The following hosts were not deleted: %s"
@@ -289,59 +290,35 @@ msgstr "ホスト %s の自動プロビジョニングに失敗しました: %s"
289
290
 
290
291
  #: ../app/controllers/discovered_hosts_controller.rb:192
291
292
  msgid "Discovered hosts are provisioning now"
292
- msgstr "検出されたホストのプロビジョニング中"
293
-
294
- #: ../app/controllers/discovered_hosts_controller.rb:226
295
- msgid "Highlights"
296
- msgstr "ハイライト"
297
-
298
- #: ../app/controllers/discovered_hosts_controller.rb:226
299
- msgid "Storage"
300
- msgstr "ストレージ"
293
+ msgstr "検出されたホストは現在プロビジョニング中です"
301
294
 
302
- #: ../app/controllers/discovered_hosts_controller.rb:226
303
- msgid "Hardware"
304
- msgstr "ハードウェア"
295
+ #: ../app/controllers/discovered_hosts_controller.rb:277
296
+ msgid "Discovered host reported from unknown subnet, communication will not be proxied."
297
+ msgstr "不明なサブネットから報告された検出されたホスト。通信はプロキシー化されません。"
305
298
 
306
- #: ../app/controllers/discovered_hosts_controller.rb:226
307
- msgid "Network"
308
- msgstr "ネットワーク"
309
-
310
- #: ../app/controllers/discovered_hosts_controller.rb:226
311
- msgid "Software"
312
- msgstr "ソフトウェア"
313
-
314
- #: ../app/controllers/discovered_hosts_controller.rb:226
315
- msgid "IPMI"
316
- msgstr "IPMI"
317
-
318
- #: ../app/controllers/discovered_hosts_controller.rb:226
319
- msgid "Miscellaneous"
320
- msgstr "その他"
299
+ #: ../app/controllers/discovered_hosts_controller.rb:282
300
+ msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
301
+ msgstr "不明なサブネットから報告された検出されたホストは %s、通信はプロキシー化されません。"
321
302
 
322
- #: ../app/controllers/discovered_hosts_controller.rb:304
303
+ #: ../app/controllers/discovered_hosts_controller.rb:296
323
304
  msgid "No hosts were found with that id or name"
324
305
  msgstr "該当する ID または名前のホストが見つかりませんでした"
325
306
 
326
- #: ../app/controllers/discovered_hosts_controller.rb:308
307
+ #: ../app/controllers/discovered_hosts_controller.rb:300
327
308
  msgid "No hosts selected"
328
309
  msgstr "ホストが選択されていません"
329
310
 
330
- #: ../app/controllers/discovered_hosts_controller.rb:314
311
+ #: ../app/controllers/discovered_hosts_controller.rb:306
331
312
  msgid "Something went wrong while selecting hosts - %s"
332
313
  msgstr "ホストの選択中に問題が発生しました: %s"
333
314
 
334
- #: ../app/controllers/discovery_rules_controller.rb:72
315
+ #: ../app/controllers/discovery_rules_controller.rb:79
335
316
  msgid "Rule enabled"
336
- msgstr "有効にされたルール"
317
+ msgstr "有効化されたルール"
337
318
 
338
- #: ../app/controllers/discovery_rules_controller.rb:72
319
+ #: ../app/controllers/discovery_rules_controller.rb:79
339
320
  msgid "Rule disabled"
340
- msgstr "無効にされたルール"
341
-
342
- #: ../app/helpers/discovered_hosts_helper.rb:10
343
- msgid "%s ago"
344
- msgstr "%s 前"
321
+ msgstr "無効化されたルール"
345
322
 
346
323
  #: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
347
324
  msgid "Auto Provision"
@@ -428,6 +405,10 @@ msgid "Enable rule '%s'?"
428
405
  msgstr "ルール '%s' を有効にしますか?"
429
406
 
430
407
  #: ../app/helpers/discovery_rules_helper.rb:33
408
+ msgid "Clone"
409
+ msgstr "クローン"
410
+
411
+ #: ../app/helpers/discovery_rules_helper.rb:34
431
412
  msgid "Delete rule '%s'?"
432
413
  msgstr "ルール '%s' を削除しますか?"
433
414
 
@@ -451,15 +432,15 @@ msgstr "文字または ERB で開始する必要があります。"
451
432
  msgid "must be present."
452
433
  msgstr "必須です。"
453
434
 
454
- #: ../app/models/discovery_rule.rb:52
435
+ #: ../app/models/discovery_rule.rb:57
455
436
  msgid "Host group organization %s must also be associated to the discovery rule"
456
437
  msgid_plural "Host group organizations %s must also be associated to the discovery rule"
457
438
  msgstr[0] "ホストグループの組織 %s も検出ルールに関連付ける必要があります"
458
439
 
459
- #: ../app/models/discovery_rule.rb:56
440
+ #: ../app/models/discovery_rule.rb:61
460
441
  msgid "Host group location %s must also be associated to the discovery rule"
461
442
  msgid_plural "Host group locations %s must also be associated to the discovery rule"
462
- msgstr[0] "ホストグループの場所 %s も検出ルールに関連付ける必要があります"
443
+ msgstr[0] "ホストグループのロケーション %s も検出ルールに関連付ける必要があります"
463
444
 
464
445
  #: ../app/models/host/discovered.rb:40
465
446
  msgid "Fact + prefix"
@@ -489,23 +470,23 @@ msgstr "無効なファクト: discovery_hostname 設定の全ファクトで、
489
470
  msgid "Facts could not be imported"
490
471
  msgstr "ファクトをインポートできませんでした"
491
472
 
492
- #: ../app/models/host/discovered.rb:146
473
+ #: ../app/models/host/discovered.rb:155
493
474
  msgid "Could not get facts from proxy %{url}: %{error}"
494
475
  msgstr "プロキシー %{url} からファクトを取得できませんでした: %{error}"
495
476
 
496
- #: ../app/models/host/discovered.rb:160
477
+ #: ../app/models/host/discovered.rb:173
497
478
  msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
498
- msgstr "%{name} (%{url}) で再起動を実行できません: %{msg}"
479
+ msgstr "%{name} (%{url}) で再起動を実行できません: %{msg}"
499
480
 
500
- #: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
481
+ #: ../app/models/host/discovered.rb:177 ../app/models/host/discovered.rb:200
501
482
  msgid "Unable to perform %{action} on %{ips}"
502
483
  msgstr "%{ips} で %{action} を実行できません"
503
484
 
504
- #: ../app/models/host/discovered.rb:179
485
+ #: ../app/models/host/discovered.rb:196
505
486
  msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
506
- msgstr "%{name} (%{url}) で kexec を実行できません: %{msg}"
487
+ msgstr "%{name} (%{url}) で kexec を実行できません: %{msg}"
507
488
 
508
- #: ../app/models/host/discovered.rb:203
489
+ #: ../app/models/host/discovered.rb:220
509
490
  msgid "Invalid hostname: Could not normalize the hostname"
510
491
  msgstr "無効なホスト名: ホスト名を正規化できませんでした"
511
492
 
@@ -535,7 +516,7 @@ msgstr "%s の DNS の再構築"
535
516
 
536
517
  #: ../app/models/setting/discovered.rb:17
537
518
  msgid "The default location to place discovered hosts in"
538
- msgstr "検出されたホストを配置するデフォルトの場所"
519
+ msgstr "検出されたホストを配置するデフォルトのロケーション"
539
520
 
540
521
  #: ../app/models/setting/discovered.rb:17
541
522
  msgid "Discovery location"
@@ -695,7 +676,7 @@ msgstr "検出されたホストのプロビジョニング時の DNS エント
695
676
 
696
677
  #: ../app/models/setting/discovered.rb:37
697
678
  msgid "Force DNS"
698
- msgstr "DNS の強制的な実行"
679
+ msgstr "DNS の強制的な実行"
699
680
 
700
681
  #: ../app/models/setting/discovered.rb:38
701
682
  msgid "Do not allow to discover existing managed host matching MAC of a provisioning NIC (errors out early)"
@@ -707,24 +688,60 @@ msgstr "既存の NIC でのエラー"
707
688
 
708
689
  #: ../app/models/setting/discovered.rb:39
709
690
  msgid "Discovery hostname naming pattern"
710
- msgstr "ホスト名の名前パターンの検出"
691
+ msgstr "検出ホスト名の名前パターン"
711
692
 
712
693
  #: ../app/models/setting/discovered.rb:39
713
694
  msgid "Type of name generator"
714
695
  msgstr "名前ジェネレーターのタイプ"
715
696
 
697
+ #: ../app/models/setting/discovered.rb:40
698
+ msgid "Prefer IPv6 to IPv4 when calling discovered nodes"
699
+ msgstr ""
700
+
701
+ #: ../app/models/setting/discovered.rb:40
702
+ msgid "Prefer IPv6"
703
+ msgstr ""
704
+
716
705
  #: ../app/services/foreman_discovery/fact_parser.rb:4
717
706
  msgid "Discovery fact parser does not work with non-discovery host '%{host}'"
718
707
  msgstr "検出ファクト解析は、非検出ホスト '%{host}' では機能しません"
719
708
 
720
709
  #: ../app/services/foreman_discovery/fact_parser.rb:6
721
710
  msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
722
- msgstr "検出ホスト '%{host}' では全 NIC がフィルタリングされています。フィルター: %{filter}"
711
+ msgstr "検出されたホスト '%{host}' ではすべての NIC がフィルタリングされています。フィルター: %{filter}"
723
712
 
724
713
  #: ../app/services/foreman_discovery/fact_parser.rb:12
725
714
  msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
726
715
  msgstr "%{mac} が %{fact} で指定されたプライマリー NIC を見つけることができません。NIC フィルター: %{filter}"
727
716
 
717
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
718
+ msgid "Highlights"
719
+ msgstr "ハイライト"
720
+
721
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
722
+ msgid "Storage"
723
+ msgstr "ストレージ"
724
+
725
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
726
+ msgid "Hardware"
727
+ msgstr "ハードウェア"
728
+
729
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
730
+ msgid "Network"
731
+ msgstr "ネットワーク"
732
+
733
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
734
+ msgid "Software"
735
+ msgstr "ソフトウェア"
736
+
737
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
738
+ msgid "IPMI"
739
+ msgstr "IPMI"
740
+
741
+ #: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
742
+ msgid "Miscellaneous"
743
+ msgstr "その他"
744
+
728
745
  #: ../app/services/foreman_discovery/host_converter.rb:47
729
746
  msgid "IPAM must be configured for subnet '%s'"
730
747
  msgstr "IPAM はサブネット '%s' 用に設定する必要があります"
@@ -737,6 +754,10 @@ msgstr "イメージ API で返された HTTP/%{code}: '%{body}"
737
754
  msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
738
755
  msgstr "イメージ API 処理エラー: %{msg} (HTTP/%{code}、ボディー: %{body})"
739
756
 
757
+ #: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
758
+ msgid "Host %s has been dicovered"
759
+ msgstr "ホスト %s が検出されました。"
760
+
740
761
  #: ../app/views/dashboard/_discovery_widget.html.erb:5
741
762
  msgid "Discovered Host"
742
763
  msgid_plural "Discovered Hosts"
@@ -794,11 +815,11 @@ msgstr "ディスク数"
794
815
  msgid "Disks Size"
795
816
  msgstr "ディスクサイズ"
796
817
 
797
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9
818
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:16 ../app/views/discovered_hosts/_selected_hosts.html.erb:9 ../app/views/discovery_rules/index.html.erb:11
798
819
  msgid "Location"
799
820
  msgstr "ロケーション"
800
821
 
801
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10
822
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:17 ../app/views/discovered_hosts/_selected_hosts.html.erb:10 ../app/views/discovery_rules/index.html.erb:12
802
823
  msgid "Organization"
803
824
  msgstr "組織"
804
825
 
@@ -810,7 +831,7 @@ msgstr "サブネット"
810
831
  msgid "Last Facts Upload"
811
832
  msgstr "最終ファクトのアップロード"
812
833
 
813
- #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:12
834
+ #: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
814
835
  msgid "Actions"
815
836
  msgstr "アクション"
816
837
 
@@ -836,7 +857,7 @@ msgstr "ホスト、ファクト、およびレポートもすべて破棄され
836
857
 
837
858
  #: ../app/views/discovered_hosts/select_multiple_location.html.erb:5
838
859
  msgid "Select location"
839
- msgstr "場所の選択"
860
+ msgstr "ロケーションの選択"
840
861
 
841
862
  #: ../app/views/discovered_hosts/select_multiple_organization.html.erb:5
842
863
  msgid "Select organization"
@@ -892,7 +913,7 @@ msgstr "ディスク数"
892
913
 
893
914
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:23 ../app/views/discovered_mailer/discovered_summary.text.erb:15
894
915
  msgid "Disks size"
895
- msgstr "ディスク容量"
916
+ msgstr "ディスクサイズ"
896
917
 
897
918
  #: ../app/views/discovered_mailer/discovered_summary.html.erb:31
898
919
  msgid "No discovered hosts for the selected period"
@@ -920,7 +941,7 @@ msgstr "組織"
920
941
 
921
942
  #: ../app/views/discovery_rules/_form.html.erb:22
922
943
  msgid "Target host group for this rule with all properties set"
923
- msgstr "このルールのターゲットホストグループ。全プロパティーを設定しておいてください。"
944
+ msgstr "このルールのターゲットホストグループ。すべてのプロパティーを設定しておいてください。"
924
945
 
925
946
  #: ../app/views/discovery_rules/_form.html.erb:25
926
947
  msgid "Hostname for provisioned hosts"
@@ -958,6 +979,10 @@ msgstr "ホスト名パターンの作成時に、生成されるホスト名が
958
979
  msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
959
980
  msgstr "ホスト名は数字で開始することができません。facter で提供される固有の情報 (MAC アドレス、BIOS またはシリアル ID) を使用することが適切な方法です。"
960
981
 
982
+ #: ../app/views/discovery_rules/clone.erb:1
983
+ msgid "Clone %s"
984
+ msgstr "%s のクローン作成"
985
+
961
986
  #: ../app/views/discovery_rules/edit.html.erb:1
962
987
  msgid "Edit %s"
963
988
  msgstr "%s の編集"
@@ -990,7 +1015,7 @@ msgstr "ホストグループ"
990
1015
  msgid "Hosts/Limit"
991
1016
  msgstr "ホスト/制限"
992
1017
 
993
- #: ../app/views/discovery_rules/index.html.erb:11
1018
+ #: ../app/views/discovery_rules/index.html.erb:13
994
1019
  msgid "DiscoveryRule|Enabled"
995
1020
  msgstr "有効化"
996
1021
 
@@ -1000,7 +1025,7 @@ msgstr "新規の検出ルール"
1000
1025
 
1001
1026
  #: ../app/views/discovery_rules/welcome.html.erb:8
1002
1027
  msgid "Discovered Rules"
1003
- msgstr ""
1028
+ msgstr "検出されたルール"
1004
1029
 
1005
1030
  #: ../db/seeds.d/50_discovery_templates.rb:5
1006
1031
  msgid "Command line options for kexec during PXE-less provisioning."
@@ -1011,8 +1036,8 @@ msgid "A summary of discovered hosts"
1011
1036
  msgstr "検出されたホストの概要"
1012
1037
 
1013
1038
  #: ../db/seeds.d/80_discovery_ui_notification.rb:4
1014
- msgid "Hosts"
1015
- msgstr "ホスト"
1039
+ msgid "New hosts"
1040
+ msgstr "新規ホスト"
1016
1041
 
1017
1042
  #: ../db/seeds.d/80_discovery_ui_notification.rb:6
1018
1043
  msgid "One or more hosts have been discovered"
@@ -1022,42 +1047,50 @@ msgstr "1 つ以上のホストが検出されました"
1022
1047
  msgid "Details"
1023
1048
  msgstr "詳細"
1024
1049
 
1025
- #: ../lib/foreman_discovery/engine.rb:180
1050
+ #: ../db/seeds.d/80_discovery_ui_notification.rb:18
1051
+ msgid "Hosts"
1052
+ msgstr "ホスト"
1053
+
1054
+ #: ../db/seeds.d/80_discovery_ui_notification.rb:20
1055
+ msgid "Error message goes here"
1056
+ msgstr "エラーメッセージはこちらに表示されます"
1057
+
1058
+ #: ../lib/foreman_discovery/engine.rb:176
1026
1059
  msgid "Discovery Kexec template"
1027
1060
  msgstr "検出 Kexec テンプレート"
1028
1061
 
1029
- #: ../lib/foreman_discovery/engine.rb:189
1062
+ #: ../lib/foreman_discovery/engine.rb:185
1030
1063
  msgid "Discovery Proxy"
1031
1064
  msgstr "検出プロキシー"
1032
1065
 
1033
- #: ../lib/foreman_discovery/engine.rb:190
1066
+ #: ../lib/foreman_discovery/engine.rb:186
1034
1067
  msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1035
1068
  msgstr "検出されたホストへの接続を管理するためにこのサブネット内で使用する検出プロキシー"
1036
1069
 
1037
- #: ../lib/foreman_discovery/engine.rb:191
1070
+ #: ../lib/foreman_discovery/engine.rb:187
1038
1071
  msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
1039
1072
  msgstr "検出されたホストへの接続を管理するためにこのサブネット内で使用する検出プロキシーの ID"
1040
1073
 
1041
1074
  #: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
1042
1075
  msgid "For more information please see "
1043
- msgstr ""
1076
+ msgstr "詳細は、以下を参照してください "
1044
1077
 
1045
1078
  #: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
1046
1079
  msgid "documentation"
1047
- msgstr ""
1080
+ msgstr "ドキュメント"
1048
1081
 
1049
1082
  #: action_names.rb:2
1050
- msgid "Action with sub plans"
1051
- msgstr "サブプランによるアクション"
1083
+ msgid "Remote action:"
1084
+ msgstr "リモートアクション:"
1052
1085
 
1053
1086
  #: action_names.rb:3
1054
- msgid "Import facts"
1055
- msgstr "ファクトのインポート"
1056
-
1057
- #: action_names.rb:4
1058
1087
  msgid "Import Puppet classes"
1059
1088
  msgstr "Puppet クラスのインポート"
1060
1089
 
1090
+ #: action_names.rb:4
1091
+ msgid "Import facts"
1092
+ msgstr "ファクトのインポート"
1093
+
1061
1094
  #: action_names.rb:5
1062
- msgid "Remote action:"
1063
- msgstr "リモートアクション:"
1095
+ msgid "Action with sub plans"
1096
+ msgstr "サブプランによるアクション"