foreman_discovery 5.0.2 → 6.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (93) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/api/v2/discovered_hosts_controller.rb +4 -7
  3. data/app/controllers/api/v2/discovery_rules_controller.rb +1 -0
  4. data/app/controllers/api/v2/fact_values_controller_extensions.rb +11 -0
  5. data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +6 -3
  6. data/app/controllers/discovered_hosts_controller.rb +46 -11
  7. data/app/controllers/discovery_rules_controller.rb +1 -1
  8. data/app/helpers/discovered_hosts_helper.rb +33 -16
  9. data/app/models/concerns/discovery_taxonomy_extensions.rb +7 -0
  10. data/app/models/concerns/fact_value_extensions.rb +8 -0
  11. data/app/models/discovery_rule.rb +4 -6
  12. data/app/models/host/discovered.rb +29 -10
  13. data/app/models/host/managed_extensions.rb +2 -10
  14. data/app/models/setting/discovered.rb +22 -28
  15. data/app/services/foreman_discovery/host_converter.rb +19 -10
  16. data/app/views/api/v2/discovered_hosts/main.json.rabl +1 -1
  17. data/app/views/dashboard/_discovery_widget_host.html.erb +1 -1
  18. data/app/views/discovered_hosts/_discovered_host.html.erb +1 -1
  19. data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +32 -1
  20. data/app/views/discovered_hosts/index.html.erb +2 -2
  21. data/app/views/discovered_hosts/show.html.erb +5 -5
  22. data/app/views/discovered_mailer/_discovered_host.html.erb +1 -1
  23. data/app/views/discovered_mailer/discovered_summary.text.erb +2 -2
  24. data/app/views/discovery_rules/_form.html.erb +2 -19
  25. data/app/views/discovery_rules/_template_inline.erb +10 -0
  26. data/app/views/discovery_rules/index.html.erb +1 -1
  27. data/app/views/foreman_discovery/debian_kexec.erb +34 -0
  28. data/app/views/foreman_discovery/redhat_kexec.erb +5 -4
  29. data/config/routes.rb +4 -0
  30. data/db/migrate/20141223142759_fill_discovery_attribute_sets_for_existing_hosts.rb +15 -1
  31. data/db/migrate/20160719124942_add_missing_view_permissions.rb +18 -0
  32. data/db/seeds.d/50_discovery_templates.rb +15 -13
  33. data/lib/discovery.rake +1 -0
  34. data/lib/foreman_discovery/engine.rb +24 -10
  35. data/lib/foreman_discovery/version.rb +1 -1
  36. data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
  37. data/locale/ca/foreman_discovery.edit.po +274 -136
  38. data/locale/ca/foreman_discovery.po +396 -328
  39. data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
  40. data/locale/de/foreman_discovery.edit.po +309 -171
  41. data/locale/de/foreman_discovery.po +419 -361
  42. data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
  43. data/locale/en/foreman_discovery.edit.po +881 -0
  44. data/locale/en/foreman_discovery.po +665 -0
  45. data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
  46. data/locale/en_GB/foreman_discovery.edit.po +279 -141
  47. data/locale/en_GB/foreman_discovery.po +446 -391
  48. data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
  49. data/locale/es/foreman_discovery.edit.po +277 -139
  50. data/locale/es/foreman_discovery.po +415 -362
  51. data/locale/foreman_discovery.pot +241 -135
  52. data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
  53. data/locale/fr/foreman_discovery.edit.po +289 -151
  54. data/locale/fr/foreman_discovery.po +439 -411
  55. data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
  56. data/locale/gl/foreman_discovery.edit.po +266 -128
  57. data/locale/gl/foreman_discovery.po +320 -246
  58. data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
  59. data/locale/it/foreman_discovery.edit.po +277 -139
  60. data/locale/it/foreman_discovery.po +407 -352
  61. data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
  62. data/locale/ja/foreman_discovery.edit.po +279 -141
  63. data/locale/ja/foreman_discovery.po +411 -339
  64. data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
  65. data/locale/ko/foreman_discovery.edit.po +277 -139
  66. data/locale/ko/foreman_discovery.po +411 -339
  67. data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
  68. data/locale/pt_BR/foreman_discovery.edit.po +282 -144
  69. data/locale/pt_BR/foreman_discovery.po +430 -394
  70. data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
  71. data/locale/ru/foreman_discovery.edit.po +371 -232
  72. data/locale/ru/foreman_discovery.po +448 -385
  73. data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
  74. data/locale/sv_SE/foreman_discovery.edit.po +270 -132
  75. data/locale/sv_SE/foreman_discovery.po +336 -260
  76. data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
  77. data/locale/zh_CN/foreman_discovery.edit.po +279 -141
  78. data/locale/zh_CN/foreman_discovery.po +412 -336
  79. data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
  80. data/locale/zh_TW/foreman_discovery.edit.po +279 -141
  81. data/locale/zh_TW/foreman_discovery.po +412 -338
  82. data/test/functional/api/v2/discovered_hosts_controller_test.rb +30 -22
  83. data/test/functional/api/v2/discovery_rules_controller_test.rb +7 -0
  84. data/test/functional/api/v2/fact_value_extensions_test.rb +37 -0
  85. data/test/functional/discovered_hosts_controller_test.rb +89 -16
  86. data/test/functional/discovery_rules_controller_test.rb +1 -1
  87. data/test/test_helper_discovery.rb +1 -1
  88. data/test/unit/discovered_extensions_test.rb +65 -21
  89. data/test/unit/discovery_attribute_set_test.rb +4 -4
  90. data/test/unit/discovery_taxonomy_extensions_test.rb +31 -0
  91. data/test/unit/host_discovered_test.rb +110 -14
  92. metadata +121 -110
  93. data/app/helpers/concerns/foreman_discovery/settings_helper_extensions.rb +0 -34
@@ -1,15 +1,15 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2015 Foreman developers
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\n"
10
- "Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
11
- "PO-Revision-Date: 2015-10-15 09:16+0000\n"
12
- "Last-Translator: Lukáš Zapletal\n"
9
+ "Project-Id-Version: foreman_discovery 5.0.2\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "PO-Revision-Date: 2016-04-14 12:06+0000\n"
12
+ "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
13
13
  "Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/"
14
14
  ")\n"
15
15
  "MIME-Version: 1.0\n"
@@ -18,154 +18,200 @@ msgstr ""
18
18
  "Language: ja\n"
19
19
  "Plural-Forms: nplurals=1; plural=0;\n"
20
20
 
21
- msgid "List all discovered hosts"
22
- msgstr "検出されたすべてのホストを一覧表示"
21
+ msgid "%s - The following hosts are about to be changed"
22
+ msgstr "%s - 以下のホストはすぐに変更されます"
23
23
 
24
- msgid "filter results"
25
- msgstr "結果のフィルター"
24
+ msgid "%s ago"
25
+ msgstr "%s 前"
26
26
 
27
- msgid "sort results"
28
- msgstr "結果のソート"
27
+ msgid "%s discovered hosts were provisioned"
28
+ msgstr ""
29
29
 
30
- msgid "paginate results"
31
- msgstr "結果のページネーション"
30
+ msgid "<b>Foreman</b> Discovered hosts summary"
31
+ msgstr ""
32
32
 
33
- msgid "number of entries per request"
34
- msgstr "要求ごとのエントリー数"
33
+ msgid "A summary of discovered hosts"
34
+ msgstr ""
35
35
 
36
- msgid "Show a discovered host"
37
- msgstr "検出されたホストの表示"
36
+ msgid "Assign Location"
37
+ msgstr "ロケーションの割り当て"
38
38
 
39
- msgid "Create a discovered host for testing (use /facts to create new hosts)"
39
+ msgid "Assign Organization"
40
+ msgstr "組織の割り当て"
41
+
42
+ msgid "Associated Hosts"
40
43
  msgstr ""
41
44
 
42
- msgid "Provision a discovered host"
43
- msgstr "検出されたホストのプロビジョニング"
45
+ msgid "Auto Provision"
46
+ msgstr "自動プロビジョニング"
44
47
 
45
- msgid "not required if using a subnet with DHCP proxy"
46
- msgstr "DHCP プロキシーを使用するサブネットを使用する場合は不要です"
48
+ msgid "Auto Provision All"
49
+ msgstr "すべてを自動プロビジョニング"
47
50
 
48
- msgid "not required if it's a virtual machine"
49
- msgstr "仮想マシンの場合は不要です"
51
+ msgid "Auto provisioning"
52
+ msgstr ""
50
53
 
51
- msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
52
- msgstr "オーケストレーションタスクの状態を追跡するための UUID。GET /api/orchestration/:UUID/tasks"
54
+ msgid "Automatically generate PXE configuration to pin a newly discovered host to discovery"
55
+ msgstr ""
53
56
 
54
- msgid ""
55
- "required if value is not inherited from host group or default password in sett"
56
- "ings"
57
- msgstr "値がホストグループから継承されていないか、または設定済みのデフォルトパスワードである場合に必要です"
57
+ msgid "Automatically provision newly discovered hosts, according to the provisioning rules"
58
+ msgstr "プロビジョニングルールに基づく新たに検出されたホストの自動プロビジョニング"
58
59
 
59
- msgid "Delete a discovered host"
60
- msgstr "検出されたホストの削除"
60
+ msgid "Automatically reboot or kexec discovered host during provisioning"
61
+ msgstr ""
61
62
 
62
- msgid "Upload facts for a host, creating the host if required"
63
- msgstr "ホストのファクトをアップロードし、必要な場合はホストを作成します"
63
+ msgid "Back"
64
+ msgstr "戻る"
64
65
 
65
- msgid ""
66
- "hash containing facts for the host with minimum set of facts: discovery_bootif"
67
- ", macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in cas"
68
- "e primary interface is named eth0)"
66
+ msgid "CPUs"
67
+ msgstr "CPU"
68
+
69
+ msgid "Cancel"
70
+ msgstr "取り消し"
71
+
72
+ msgid "Clean all facts"
69
73
  msgstr ""
70
74
 
71
- msgid "Execute rules against a discovered host"
72
- msgstr "検出されたホストに対してルールを実行"
75
+ msgid "Clean all reported facts during provisioning (except discovery facts)"
76
+ msgstr ""
73
77
 
74
- msgid "Host %{host} was provisioned with rule %{rule}"
75
- msgstr "ルール %{rule} でホスト %{host} がプロビジョニングされました"
78
+ msgid "Could not get facts from proxy %{url}: %{error}"
79
+ msgstr "プロキシー %{url} からファクトを取得できませんでした: %{error}"
76
80
 
77
- msgid "Unable to provision %{host}: %{errors}"
81
+ msgid "Create a discovered host for testing (use /facts to create new hosts)"
78
82
  msgstr ""
79
83
 
80
- msgid "No rule found for host %s"
81
- msgstr "ホスト %s のルールが見つかりませんでした"
84
+ msgid "Create a discovery rule"
85
+ msgstr "検出ルールの作成"
82
86
 
83
- msgid "Execute rules against all currently discovered hosts"
84
- msgstr "現在検出されているすべてのホストに対してルールを実行"
87
+ msgid "Create host"
88
+ msgstr ""
85
89
 
86
- msgid "Errors during auto provisioning: %s"
87
- msgstr "自動プロビジョニング時のエラー: %s"
90
+ msgid "Delete %s?"
91
+ msgstr "%s を削除しますか?"
88
92
 
89
- msgid "No discovered hosts to provision"
90
- msgstr "プロビジョニングする検出されたホストがありません"
93
+ msgid "Delete a discovered host"
94
+ msgstr "検出されたホストの削除"
91
95
 
92
- msgid "%s discovered hosts were provisioned"
96
+ msgid "Delete a rule"
97
+ msgstr "ルールの削除"
98
+
99
+ msgid "Delete hosts"
100
+ msgstr "ホストの削除"
101
+
102
+ msgid "Delete rule '%s'?"
93
103
  msgstr ""
94
104
 
95
- msgid "Refreshing the facts of a discovered host"
96
- msgstr "検出されたホストのファクトを更新中"
105
+ msgid "Destroyed selected hosts"
106
+ msgstr "破棄された選択ホスト"
97
107
 
98
- msgid "Rebooting a discovered host"
99
- msgstr "検出されたホストを再起動中"
108
+ msgid "Disable"
109
+ msgstr "無効にする"
100
110
 
101
- msgid "Rebooting all discovered hosts"
111
+ msgid "Disable rule '%s'?"
102
112
  msgstr ""
103
113
 
104
- msgid "Discovered hosts are rebooting now"
114
+ msgid "Discovered Hosts"
105
115
  msgstr ""
106
116
 
107
- msgid "List all discovery rules"
108
- msgstr "すべての検出ルールを一覧表示"
117
+ msgid "Discovered host: %s"
118
+ msgstr "検出されたホスト: %s"
109
119
 
110
- msgid "Show a discovery rule"
111
- msgstr "検出ルールの表示"
120
+ msgid "Discovered hosts"
121
+ msgstr "検出されたホスト"
112
122
 
113
- msgid "represents rule name shown to the users"
114
- msgstr ""
123
+ msgid "Discovered hosts are provisioning now"
124
+ msgstr "現在、検出されたホストのプロビジョニングが実行されています"
115
125
 
116
- msgid "query to match discovered hosts for the particular rule"
126
+ msgid "Discovered hosts are rebooting now"
117
127
  msgstr ""
118
128
 
119
- msgid "the hostgroup that is used to auto provision a host"
129
+ msgid "Discovered hosts from Foreman server at %{foreman_url}"
120
130
  msgstr ""
121
131
 
122
- msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
132
+ msgid "Discovered hosts summary"
123
133
  msgstr ""
124
134
 
125
- msgid "enables to limit maximum amount of provisioned hosts per rule"
126
- msgstr ""
135
+ msgid "Discovery Rules"
136
+ msgstr "検出ルール"
127
137
 
128
- msgid "puts the rules in order, low numbers go first. Must be greater then zero"
138
+ msgid "Discovery location"
129
139
  msgstr ""
130
140
 
131
- msgid "flag is used for temporary shutdown of rules"
141
+ msgid "Discovery organization"
132
142
  msgstr ""
133
143
 
134
- msgid "Create a discovery rule"
135
- msgstr "検出ルールの作成"
144
+ msgid "Discovery rules"
145
+ msgstr "検出ルール"
136
146
 
137
- msgid "Update a rule"
138
- msgstr "ルールの更新"
147
+ msgid "Discovery widget"
148
+ msgstr "検出ウィジェット"
139
149
 
140
- msgid "Delete a rule"
141
- msgstr "ルールの削除"
150
+ msgid "DiscoveryRule|Enabled"
151
+ msgstr "有効化"
142
152
 
143
- msgid "Unable to find a discovery rule, no host provided (check permissions)"
153
+ msgid "DiscoveryRule|Name"
154
+ msgstr "名前"
155
+
156
+ msgid "DiscoveryRule|Priority"
157
+ msgstr "優先度"
158
+
159
+ msgid "DiscoveryRule|Query"
160
+ msgstr "クエリー"
161
+
162
+ msgid "Disk count"
163
+ msgstr "ディスク数"
164
+
165
+ msgid "Disks size"
166
+ msgstr "ディスクサイズ"
167
+
168
+ msgid "Domain will be appended automatically. A hostname based on MAC address will be used when left blank."
144
169
  msgstr ""
145
170
 
146
- msgid "No hostgroup associated with rule '%s'"
171
+ msgid "Edit Discovery Rule"
172
+ msgstr "検出ルールの編集"
173
+
174
+ msgid "Enable"
175
+ msgstr "有効にする"
176
+
177
+ msgid "Enable rule '%s'?"
147
178
  msgstr ""
148
179
 
180
+ msgid "Errors during auto provisioning: %s"
181
+ msgstr "自動プロビジョニング時のエラー: %s"
182
+
149
183
  msgid "Errors during reboot: %s"
150
184
  msgstr ""
151
185
 
152
- msgid "No discovered hosts to reboot"
186
+ msgid "Execute rules against a discovered host"
187
+ msgstr "検出されたホストに対してルールを実行"
188
+
189
+ msgid "Execute rules against all currently discovered hosts"
190
+ msgstr "現在検出されているすべてのホストに対してルールを実行"
191
+
192
+ msgid "Expand All"
193
+ msgstr "すべて展開"
194
+
195
+ msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
153
196
  msgstr ""
154
197
 
155
- msgid "Facts refreshed for %s"
156
- msgstr "%s について更新されたファクト"
198
+ msgid "Extra facter columns to show in host lists (separate by comma)"
199
+ msgstr ""
157
200
 
158
- msgid "Failed to refresh facts for %s"
159
- msgstr "%s のファクトの更新に失敗しました"
201
+ msgid "Fact columns"
202
+ msgstr ""
160
203
 
161
- msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
204
+ msgid "Fact name to use for primary interface detection"
162
205
  msgstr ""
163
206
 
164
- msgid "Host of type %s can not be rebooted"
165
- msgstr "タイプ %s のホストは再起動できません"
207
+ msgid "Facts could not be imported"
208
+ msgstr ""
166
209
 
167
- msgid "Rebooting host %s"
168
- msgstr "ホスト %s を再起動中"
210
+ msgid "Facts refreshed for %s"
211
+ msgstr "%s について更新されたファクト"
212
+
213
+ msgid "Failed to auto provision host %s: %s"
214
+ msgstr "ホスト %s の自動プロビジョニングに失敗しました: %s"
169
215
 
170
216
  msgid "Failed to reboot host %s"
171
217
  msgstr "ホスト %s の再起動に失敗しました"
@@ -176,424 +222,450 @@ msgstr "エラー %{error_message} を出してホスト %{hostname} の再起
176
222
  msgid "Failed to reboot hosts with error %s"
177
223
  msgstr ""
178
224
 
179
- msgid "Destroyed selected hosts"
180
- msgstr "破棄された選択ホスト"
181
-
182
- msgid "The following hosts were not deleted: %s"
183
- msgstr "以下のホストが削除されました: %s"
225
+ msgid "Failed to refresh facts for %s"
226
+ msgstr "%s のファクトの更新に失敗しました"
184
227
 
185
- msgid "Failed to auto provision host %s: %s"
186
- msgstr "ホスト %s の自動プロビジョニングに失敗しました: %s"
228
+ msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
229
+ msgstr ""
187
230
 
188
- msgid "Discovered hosts are provisioning now"
189
- msgstr "現在、検出されたホストのプロビジョニングが実行されています"
231
+ msgid "Foreman discovered hosts summary"
232
+ msgstr ""
190
233
 
191
- msgid "No hosts were found with that id or name"
192
- msgstr "該当する ID または名前のホストが見つかりませんでした"
234
+ msgid "Hardware"
235
+ msgstr ""
193
236
 
194
- msgid "No hosts selected"
195
- msgstr "ホストが選択されていません"
237
+ msgid "Hardware facts"
238
+ msgstr ""
196
239
 
197
- msgid "Something went wrong while selecting hosts - %s"
198
- msgstr "ホストの選択中に問題が発生しました - %s"
240
+ msgid "Highlighted facts"
241
+ msgstr ""
199
242
 
200
- msgid "Rule disabled"
201
- msgstr "ルールの無効化"
243
+ msgid "Highlights"
244
+ msgstr ""
202
245
 
203
- msgid "Rule enabled"
204
- msgstr "ルールの有効化"
246
+ msgid "Host"
247
+ msgstr "ホスト"
205
248
 
206
- msgid "%s ago"
207
- msgstr "%s "
249
+ msgid "Host %{host} was provisioned with rule %{rule}"
250
+ msgstr "ルール %{rule} でホスト %{host} がプロビジョニングされました"
208
251
 
209
- msgid "Provision"
210
- msgstr "プロビジョニング"
252
+ msgid "Host group"
253
+ msgstr "ホストグループ"
211
254
 
212
- msgid "Auto Provision"
213
- msgstr "自動プロビジョニング"
255
+ msgid "Host group location %s must also be associated to the discovery rule"
256
+ msgid_plural "Host group locations %s must also be associated to the discovery rule"
257
+ msgstr[0] ""
258
+ msgstr[1] ""
214
259
 
215
- msgid "Refresh facts"
216
- msgstr "ファクトの更新"
260
+ msgid "Host group organization %s must also be associated to the discovery rule"
261
+ msgid_plural "Host group organizations %s must also be associated to the discovery rule"
262
+ msgstr[0] ""
263
+ msgstr[1] ""
217
264
 
218
- msgid "Reboot"
219
- msgstr "再起動"
265
+ msgid "Host of type %s can not be rebooted"
266
+ msgstr "タイプ %s のホストは再起動できません"
220
267
 
221
- msgid "Back"
268
+ msgid "Hostname facts"
222
269
  msgstr ""
223
270
 
224
- msgid "Select Action"
225
- msgstr "アクションの選択"
271
+ msgid "Hostname for provisioned hosts"
272
+ msgstr "プロビジョニングされたホストのホスト名"
226
273
 
227
- msgid "Expand All"
274
+ msgid "Hostname prefix"
228
275
  msgstr ""
229
276
 
230
- msgid "Delete"
231
- msgstr "削除"
277
+ msgid "Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
278
+ msgstr ""
232
279
 
233
- msgid "Are you sure?"
234
- msgstr "実行してもよろしいですか?"
280
+ msgid "Hosts limit"
281
+ msgstr "ホストの制限"
235
282
 
236
- msgid "Delete hosts"
237
- msgstr "ホストの削除"
283
+ msgid "Hosts/limit"
284
+ msgstr "ホスト/制限"
238
285
 
239
- msgid "Assign Organization"
240
- msgstr "組織の割り当て"
286
+ msgid "IP Address"
287
+ msgstr "IP アドレス"
241
288
 
242
- msgid "Assign Location"
243
- msgstr "ロケーションの割り当て"
289
+ msgid "IP address"
290
+ msgstr "IP アドレス"
244
291
 
245
- msgid "%s - The following hosts are about to be changed"
246
- msgstr "%s - 以下のホストはすぐに変更されます"
292
+ msgid "IPMI"
293
+ msgstr ""
247
294
 
248
- msgid "N/A"
249
- msgstr "N/A"
295
+ msgid "IPMI facts"
296
+ msgstr ""
250
297
 
251
- msgid "New in the last 24 hours"
298
+ msgid "Identifier"
299
+ msgstr "識別子"
300
+
301
+ msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
252
302
  msgstr ""
253
303
 
254
- msgid "Not reported in more than 7 days"
304
+ msgid "Image API returned HTTP/%{code} with '%{body}"
255
305
  msgstr ""
256
306
 
257
- msgid "Reported in the last 7 days"
307
+ msgid "In addition to @host attribute function rand for random integers is available. Examples:"
258
308
  msgstr ""
259
309
 
260
- msgid "Discovered Hosts"
310
+ msgid "Interface fact"
261
311
  msgstr ""
262
312
 
263
- msgid "Associated Hosts"
313
+ msgid "Interfaces"
264
314
  msgstr ""
265
315
 
266
- msgid "Disable rule '%s'?"
316
+ msgid "Invalid facts, must be a Hash"
317
+ msgstr "無効なファクトです。ハッシュにする必要があります"
318
+
319
+ msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
267
320
  msgstr ""
268
321
 
269
- msgid "Disable"
270
- msgstr "無効にする"
322
+ msgid "Invalid hostname: Could not normalize the hostname"
323
+ msgstr ""
271
324
 
272
- msgid "Enable"
273
- msgstr "有効にする"
325
+ msgid "Kexec template not associated with operating system"
326
+ msgstr ""
274
327
 
275
- msgid "Enable rule '%s'?"
328
+ msgid "Last facts upload"
329
+ msgstr "最終ファクトのアップロード"
330
+
331
+ msgid "List all discovered hosts"
332
+ msgstr "検出されたすべてのホストを一覧表示"
333
+
334
+ msgid "List all discovery rules"
335
+ msgstr "すべての検出ルールを一覧表示"
336
+
337
+ msgid "List all fact values of a given discovered host"
276
338
  msgstr ""
277
339
 
278
- msgid "Delete rule '%s'?"
340
+ msgid "List of facts to use for the hostname (separated by comma, first wins)"
279
341
  msgstr ""
280
342
 
281
- msgid "Must specify a user with email enabled"
343
+ msgid "Location"
344
+ msgstr "ロケーション"
345
+
346
+ msgid "Locations"
347
+ msgstr "公開する場所"
348
+
349
+ msgid "Lock PXE"
282
350
  msgstr ""
283
351
 
284
- msgid "Discovered hosts summary"
352
+ msgid "Locked template name"
285
353
  msgstr ""
286
354
 
287
- msgid "can't contain white spaces."
288
- msgstr "空白を含めることはできません。"
355
+ msgid "MAC address"
356
+ msgstr "MAC アドレス"
289
357
 
290
- msgid "must start with a letter or ERB."
291
- msgstr "文字または ERB で始まる必要があります。"
358
+ msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
359
+ msgstr "このルールでプロビジョニングされる最大ホスト数 (0 = 無制限)"
292
360
 
293
- msgid "Host group organization %s must also be associated to the discovery rule"
294
- msgid_plural "Host group organizations %s must also be associated to the discovery rule"
295
- msgstr[0] ""
296
- msgstr[1] ""
361
+ msgid "Medium not set for host/hostgroup"
362
+ msgstr ""
297
363
 
298
- msgid "Host group location %s must also be associated to the discovery rule"
299
- msgid_plural "Host group locations %s must also be associated to the discovery rule"
300
- msgstr[0] ""
301
- msgstr[1] ""
364
+ msgid "Memory"
365
+ msgstr "メモリー"
302
366
 
303
- msgid "Invalid facts, must be a Hash"
304
- msgstr "無効なファクトです。ハッシュにする必要があります"
367
+ msgid "Miscellaneous"
368
+ msgstr ""
305
369
 
306
- msgid ""
307
- "Expected discovery_fact '%s' is missing, unable to detect primary interface an"
308
- "d set hostname"
370
+ msgid "Model"
371
+ msgstr "モデル"
372
+
373
+ msgid "Must specify a user with email enabled"
374
+ msgstr "ユーザーに有効な電子メールを指定する必要があります"
375
+
376
+ msgid "N/A"
377
+ msgstr "N/A"
378
+
379
+ msgid "Name"
380
+ msgstr "名前"
381
+
382
+ msgid "Network"
309
383
  msgstr ""
310
384
 
311
- msgid ""
312
- "Invalid facts: hash does not contain a valid value for any of the facts in the"
313
- " discovery_hostname setting: %s"
385
+ msgid "Network facts"
314
386
  msgstr ""
315
387
 
316
- msgid "Unable to assign subnet, primary interface is missing IP address"
388
+ msgid "New Discovery Rule"
389
+ msgstr "新規検出ルール"
390
+
391
+ msgid "New Rule"
392
+ msgstr "新規ルール"
393
+
394
+ msgid "New in the last 24 hours"
317
395
  msgstr ""
318
396
 
319
- msgid "Could not get facts from proxy %{url}: %{error}"
320
- msgstr "プロキシー %{url} からファクトを取得できませんでした: %{error}"
397
+ msgid "No discovered hosts available"
398
+ msgstr "利用可能な検出されたホストがありません"
321
399
 
322
- msgid "Unable to reboot %{name} via %{url}: %{msg}"
400
+ msgid "No discovered hosts for the selected period"
323
401
  msgstr ""
324
402
 
325
- msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
403
+ msgid "No discovered hosts to provision"
404
+ msgstr "プロビジョニングする検出されたホストがありません"
405
+
406
+ msgid "No discovered hosts to reboot"
326
407
  msgstr ""
327
408
 
328
- msgid "Invalid hostname: Could not normalize the hostname"
409
+ msgid "No hostgroup associated with rule '%s'"
329
410
  msgstr ""
330
411
 
331
- msgid "Reloading kernel on %s"
412
+ msgid "No hosts selected"
413
+ msgstr "ホストが選択されていません"
414
+
415
+ msgid "No hosts were found with that id or name"
416
+ msgstr "該当する ID または名前のホストが見つかりませんでした"
417
+
418
+ msgid "No new discovered hosts for this period"
332
419
  msgstr ""
333
420
 
334
- msgid "Rebooting %s"
335
- msgstr "%s を再起動中"
421
+ msgid "No rule found for host %s"
422
+ msgstr "ホスト %s のルールが見つかりませんでした"
423
+
424
+ msgid "Not reported in more than 7 days"
425
+ msgstr ""
336
426
 
337
427
  msgid "Operating system not set for host/hostgroup"
338
428
  msgstr ""
339
429
 
340
- msgid "Medium not set for host/hostgroup"
341
- msgstr ""
430
+ msgid "Organization"
431
+ msgstr "組織"
432
+
433
+ msgid "Organizations"
434
+ msgstr "組織"
342
435
 
343
- msgid "Kexec template not associated with operating system"
436
+ msgid "PXE template to be used when pinning a host to discovery"
344
437
  msgstr ""
345
438
 
346
- msgid "Fact name to use for primary interface detection"
347
- msgstr ""
439
+ msgid "Please Confirm"
440
+ msgstr "確認してください"
348
441
 
349
- msgid "List of facts to use for the hostname (separated by comma, first wins)"
350
- msgstr ""
442
+ msgid "Primary"
443
+ msgstr "プライマリ"
351
444
 
352
- msgid ""
353
- "Automatically provision newly discovered hosts, according to the provisioning "
354
- "rules"
355
- msgstr "プロビジョニングルールに基づく新たに検出されたホストの自動プロビジョニング"
445
+ msgid "Provision"
446
+ msgstr "プロビジョニング"
356
447
 
357
- msgid "Automatically reboot discovered host during provisioning"
448
+ msgid "Provision a discovered host"
449
+ msgstr "検出されたホストのプロビジョニング"
450
+
451
+ msgid "Quick create"
358
452
  msgstr ""
359
453
 
360
- msgid "The default prefix to use for the host name, must start with a letter"
361
- msgstr "ホスト名に使用するデフォルトのプレフィックスは文字で始める必要があります"
454
+ msgid "Reboot"
455
+ msgstr "再起動"
362
456
 
363
- msgid "Extra facter columns to show in host lists (separate by comma)"
457
+ msgid "Reboot All"
364
458
  msgstr ""
365
459
 
366
- msgid "The default location to place discovered hosts in"
367
- msgstr "検出されたホストを配置するデフォルトのロケーション"
460
+ msgid "Rebooting %s"
461
+ msgstr "%s を再起動中"
368
462
 
369
- msgid "The default organization to place discovered hosts in"
370
- msgstr "検出されたホストを配置するデフォルトの組織"
463
+ msgid "Rebooting a discovered host"
464
+ msgstr "検出されたホストを再起動中"
371
465
 
372
- msgid "Regex to organize facts for highlights section"
466
+ msgid "Rebooting all discovered hosts"
373
467
  msgstr ""
374
468
 
375
- msgid "Regex to organize facts for storage section"
376
- msgstr ""
469
+ msgid "Rebooting host %s"
470
+ msgstr "ホスト %s を再起動中"
377
471
 
378
- msgid "Regex to organize facts for software section"
379
- msgstr ""
472
+ msgid "Refresh facts"
473
+ msgstr "ファクトの更新"
474
+
475
+ msgid "Refreshing the facts of a discovered host"
476
+ msgstr "検出されたホストのファクトを更新中"
380
477
 
381
478
  msgid "Regex to organize facts for hardware section"
382
479
  msgstr ""
383
480
 
384
- msgid "Regex to organize facts for network section"
481
+ msgid "Regex to organize facts for highlights section - e.g. ^(abc|cde)$"
385
482
  msgstr ""
386
483
 
387
484
  msgid "Regex to organize facts for ipmi section"
388
485
  msgstr ""
389
486
 
390
- msgid ""
391
- "Unable to detect primary interface using MAC '%{mac}' specified by discovery_f"
392
- "act '%{fact}'"
487
+ msgid "Regex to organize facts for network section"
393
488
  msgstr ""
394
489
 
395
- msgid "Image API returned HTTP/%{code} with '%{body}"
490
+ msgid "Regex to organize facts for software section"
396
491
  msgstr ""
397
492
 
398
- msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
493
+ msgid "Regex to organize facts for storage section"
399
494
  msgstr ""
400
495
 
401
- msgid "No discovered hosts available"
402
- msgstr "利用可能な検出されたホストがありません"
403
-
404
- msgid "Host"
405
- msgstr "ホスト"
496
+ msgid "Reloading kernel on %s"
497
+ msgstr ""
406
498
 
407
- msgid "Model"
408
- msgstr "モデル"
499
+ msgid "Reported in the last 7 days"
500
+ msgstr ""
409
501
 
410
- msgid "CPUs"
411
- msgstr "CPU"
502
+ msgid "Rule disabled"
503
+ msgstr "ルールの無効化"
412
504
 
413
- msgid "Memory"
414
- msgstr "メモリー"
505
+ msgid "Rule enabled"
506
+ msgstr "ルールの有効化"
415
507
 
416
- msgid "Discovered hosts"
417
- msgstr "検出されたホスト"
508
+ msgid "Rule priority (lower integer means higher priority)"
509
+ msgstr "ルールの優先度 (整数の値が低いほど優先度が高くなります)"
418
510
 
419
- msgid "items selected. Uncheck to Clear"
420
- msgstr "項目が選択されています。クリアするにはチェックを解除してください"
511
+ msgid "Select Action"
512
+ msgstr "アクションの選択"
421
513
 
422
514
  msgid "Select all items in this page"
423
515
  msgstr "このページのすべての項目を選択"
424
516
 
425
- msgid "Name"
426
- msgstr "名前"
517
+ msgid "Select initial host properties"
518
+ msgstr ""
427
519
 
428
- msgid "IP Address"
429
- msgstr "IP アドレス"
520
+ msgid "Select location"
521
+ msgstr "ロケーションの選択"
430
522
 
431
- msgid "Disk count"
432
- msgstr "ディスク数"
523
+ msgid "Select organization"
524
+ msgstr "組織の選択"
433
525
 
434
- msgid "Disks size"
435
- msgstr "ディスクサイズ"
526
+ msgid "Show a discovered host"
527
+ msgstr "検出されたホストの表示"
436
528
 
437
- msgid "Location"
438
- msgstr "ロケーション"
529
+ msgid "Show a discovery rule"
530
+ msgstr "検出ルールの表示"
439
531
 
440
- msgid "Organization"
441
- msgstr "組織"
532
+ msgid "Software"
533
+ msgstr ""
442
534
 
443
- msgid "Subnet"
444
- msgstr "サブネット"
535
+ msgid "Software facts"
536
+ msgstr ""
445
537
 
446
- msgid "Last facts upload"
447
- msgstr "最終ファクトのアップロード"
538
+ msgid "Something went wrong while selecting hosts - %s"
539
+ msgstr "ホストの選択中に問題が発生しました - %s"
448
540
 
449
- msgid "Delete %s?"
450
- msgstr "%s を削除しますか?"
541
+ msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
542
+ msgstr "プロビジョニングテンプレート (ERB) の場合と同じ構文のターゲットホスト名のテンプレートパターンを指定します。"
451
543
 
452
- msgid "Please Confirm"
453
- msgstr "確認してください"
544
+ msgid "Storage"
545
+ msgstr ""
454
546
 
455
- msgid "Cancel"
456
- msgstr "取り消し"
547
+ msgid "Storage facts"
548
+ msgstr ""
457
549
 
458
550
  msgid "Submit"
459
551
  msgstr "送信"
460
552
 
461
- msgid "Reboot All"
462
- msgstr ""
463
-
464
- msgid "Auto Provision All"
465
- msgstr "すべてを自動プロビジョニング"
466
-
467
- msgid "Warning"
468
- msgstr "警告"
553
+ msgid "Subnet"
554
+ msgstr "サブネット"
469
555
 
470
- msgid ""
471
- "This might take a while, as all hosts, facts and reports will be destroyed as "
472
- "well"
473
- msgstr "ホスト、ファクトおよびレポートがすべて破棄されるため、時間がかかる場合があります。"
556
+ msgid "Successfully provisioned %s"
557
+ msgstr ""
474
558
 
475
- msgid "Select location"
476
- msgstr "ロケーションの選択"
559
+ msgid "Summary from %{time} ago to %{now}"
560
+ msgstr ""
477
561
 
478
- msgid "Select organization"
479
- msgstr "組織の選択"
562
+ msgid "Summary report for discovered hosts from Foreman"
563
+ msgstr ""
480
564
 
481
- msgid "Discovered host: %s"
482
- msgstr "検出されたホスト: %s"
565
+ msgid "Target host group for this rule with all properties set"
566
+ msgstr "すべてのプロパティーセットを持つこのルールのターゲットホストグループ"
483
567
 
484
- msgid "Identifier"
485
- msgstr ""
568
+ msgid "Template"
569
+ msgstr "テンプレート"
486
570
 
487
- msgid "MAC address"
488
- msgstr ""
571
+ msgid "The default location to place discovered hosts in"
572
+ msgstr "検出されたホストを配置するデフォルトのロケーション"
489
573
 
490
- msgid "IP address"
491
- msgstr ""
574
+ msgid "The default organization to place discovered hosts in"
575
+ msgstr "検出されたホストを配置するデフォルトの組織"
492
576
 
493
- msgid "Summary report for discovered hosts from Foreman"
494
- msgstr ""
577
+ msgid "The default prefix to use for the host name, must start with a letter"
578
+ msgstr "ホスト名に使用するデフォルトのプレフィックスは文字で始める必要があります"
495
579
 
496
- msgid "<b>Foreman</b> Discovered hosts summary"
497
- msgstr ""
580
+ msgid "The following hosts were not deleted: %s"
581
+ msgstr "以下のホストが削除されました: %s"
498
582
 
499
- msgid "Summary from %{time} ago to %{now}"
500
- msgstr ""
583
+ msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
584
+ msgstr "ホスト、ファクトおよびレポートがすべて破棄されるため、時間がかかる場合があります。"
501
585
 
502
- msgid "Discovered hosts from Foreman server at %{foreman_url}"
503
- msgstr ""
586
+ msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
587
+ msgstr "オーケストレーションタスクの状態を追跡するための UUID。GET /api/orchestration/:UUID/tasks"
504
588
 
505
- msgid "No discovered hosts for the selected period"
589
+ msgid "Unable to assign subnet, primary interface is missing IP address"
506
590
  msgstr ""
507
591
 
508
- msgid "Foreman discovered hosts summary"
592
+ msgid "Unable to detect primary interface using MAC '%{mac}' specified by discovery_fact '%{fact}'"
509
593
  msgstr ""
510
594
 
511
- msgid "No new discovered hosts for this period"
595
+ msgid "Unable to find a discovery rule, no host provided (check permissions)"
512
596
  msgstr ""
513
597
 
514
- msgid "Primary"
598
+ msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
515
599
  msgstr ""
516
600
 
517
- msgid "Locations"
601
+ msgid "Unable to provision %{host}: %{errors}"
518
602
  msgstr ""
519
603
 
520
- msgid "Organizations"
604
+ msgid "Unable to reboot %{name} via %{url}: %{msg}"
521
605
  msgstr ""
522
606
 
523
- msgid "Target host group for this rule with all properties set"
524
- msgstr "すべてのプロパティーセットを持つこのルールのターゲットホストグループ"
607
+ msgid "Update a rule"
608
+ msgstr "ルールの更新"
525
609
 
526
- msgid "Template"
527
- msgstr "テンプレート"
610
+ msgid "Upload facts for a host, creating the host if required"
611
+ msgstr "ホストのファクトをアップロードし、必要な場合はホストを作成します"
528
612
 
529
- msgid ""
530
- "Specify target hostname template pattern in the same syntax as in Provisioning"
531
- " Templates (ERB)."
532
- msgstr "プロビジョニングテンプレート (ERB) の場合と同じ構文のターゲットホスト名のテンプレートパターンを指定します。"
613
+ msgid "Warning"
614
+ msgstr "警告"
533
615
 
534
- msgid ""
535
- "Domain will be appended automatically. A hostname based on MAC address will be"
536
- " used when left blank. In addition to @host attribute function rand for random"
537
- " integers is available. Examples:"
616
+ msgid "When creating hostname patterns, make sure the resulting host names are unique."
538
617
  msgstr ""
539
- "ドメインは自動的に追加されます。空白のままにすると、MAC アドレスに基づくホスト名が使用されます。@host 属性のほかに、整数の乱数の rand 関数が"
540
- "利用可能です。例:"
541
618
 
542
- msgid ""
543
- "When creating hostname patterns, make sure the resulting host names are unique"
544
- ". Hostnames must not start with numbers. A good approach is to use unique info"
545
- "rmation provided by facter (MAC address, BIOS or serial ID)."
546
- msgstr ""
547
- "ホスト名のパターンを作成する際に、作成されるホスト名が固有の名前であることを確認してください。ホスト名は数字で始めることができません。facter (MAC"
548
- " アドレス、BIOS、またはシリアル ID) で提供される固有情報を使用するのは良い方法です。"
619
+ msgid "can't contain white spaces."
620
+ msgstr "空白を含めることはできません。"
549
621
 
550
- msgid "Hostname for provisioned hosts"
551
- msgstr "プロビジョニングされたホストのホスト名"
622
+ msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
623
+ msgstr "ヒューマンリーダブルなホスト名を一致するホストに割り当てるパターンを定義します"
552
624
 
553
- msgid "Hosts limit"
554
- msgstr "ホストの制限"
625
+ msgid "enables to limit maximum amount of provisioned hosts per rule"
626
+ msgstr "ルールによってプロビジョニングされるホストの最大数量の制限を可能にします"
555
627
 
556
- msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
557
- msgstr "このルールでプロビジョニングされる最大ホスト数 (0 = 無制限)"
628
+ msgid "filter results"
629
+ msgstr "結果のフィルター"
558
630
 
559
- msgid "Rule priority (lower integer means higher priority)"
560
- msgstr "ルールの優先度 (整数の値が低いほど優先度が高くなります)"
631
+ msgid "flag is used for temporary shutdown of rules"
632
+ msgstr "フラグはルールの一時停止に使用されます"
561
633
 
562
- msgid "Edit Discovery Rule"
563
- msgstr "検出ルールの編集"
634
+ 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)"
635
+ msgstr ""
564
636
 
565
- msgid "Discovery Rules"
566
- msgstr "検出ルール"
637
+ msgid "items selected. Uncheck to Clear"
638
+ msgstr "項目が選択されています。クリアするにはチェックを解除してください"
567
639
 
568
- msgid "New Rule"
569
- msgstr "新規ルール"
640
+ msgid "must start with a letter or ERB."
641
+ msgstr "文字または ERB で始まる必要があります。"
570
642
 
571
- msgid "DiscoveryRule|Name"
572
- msgstr "名前"
643
+ msgid "not required if it's a virtual machine"
644
+ msgstr "仮想マシンの場合は不要です"
573
645
 
574
- msgid "DiscoveryRule|Priority"
575
- msgstr "優先度"
646
+ msgid "not required if using a subnet with DHCP proxy"
647
+ msgstr "DHCP プロキシーを使用するサブネットを使用する場合は不要です"
576
648
 
577
- msgid "DiscoveryRule|Query"
578
- msgstr "クエリー"
649
+ msgid "number of entries per request"
650
+ msgstr "要求ごとのエントリー数"
579
651
 
580
- msgid "Host group"
581
- msgstr "ホストグループ"
652
+ msgid "paginate results"
653
+ msgstr "結果のページネーション"
582
654
 
583
- msgid "Hosts/limit"
584
- msgstr "ホスト/制限"
655
+ msgid "puts the rules in order, low numbers go first. Must be greater then zero"
656
+ msgstr "ルールを順番に配置します。低い数字が先に来ます。数値はゼロより大きくなければなりません"
585
657
 
586
- msgid "DiscoveryRule|Enabled"
587
- msgstr "有効化"
658
+ msgid "query to match discovered hosts for the particular rule"
659
+ msgstr "特定のルールについて検出されたホストに一致するクエリー"
588
660
 
589
- msgid "New Discovery Rule"
590
- msgstr "新規検出ルール"
661
+ msgid "represents rule name shown to the users"
662
+ msgstr "ユーザーに表示されるルール名を表示します"
591
663
 
592
- msgid "A summary of discovered hosts"
593
- msgstr ""
664
+ msgid "required if value is not inherited from host group or default password in settings"
665
+ msgstr "値がホストグループから継承されていないか、または設定済みのデフォルトパスワードである場合に必要です"
594
666
 
595
- msgid "Discovery rules"
596
- msgstr ""
667
+ msgid "sort results"
668
+ msgstr "結果のソート"
597
669
 
598
- msgid "Discovery widget"
599
- msgstr ""
670
+ msgid "the hostgroup that is used to auto provision a host"
671
+ msgstr "ホストの自動プロビジョニングに使用されるホストグループ"