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