foreman_discovery 16.3.1 → 17.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/api/v2/discovered_hosts_controller.rb +1 -0
- data/app/controllers/discovered_hosts_controller.rb +24 -35
- data/app/controllers/discovery_rules_controller.rb +12 -1
- data/app/helpers/discovered_hosts_helper.rb +6 -1
- data/app/helpers/discovery_rules_helper.rb +1 -0
- data/app/models/discovery_rule.rb +10 -5
- data/app/services/foreman_discovery/fact_to_category_resolver.rb +106 -0
- data/app/services/foreman_discovery/ui_notifications/failed_discovery.rb +34 -0
- data/app/services/foreman_discovery/ui_notifications/new_host.rb +2 -1
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +44 -40
- data/app/views/discovered_hosts/welcome.html.erb +1 -2
- data/app/views/discovery_rules/clone.erb +3 -0
- data/app/views/discovery_rules/index.html.erb +4 -0
- data/app/views/discovery_rules/welcome.html.erb +15 -0
- data/app/views/foreman_discovery/debian_kexec.erb +1 -1
- data/app/views/foreman_discovery/redhat_kexec.erb +1 -1
- data/config/routes.rb +2 -0
- data/db/seeds.d/80_discovery_ui_notification.rb +11 -5
- data/lib/foreman_discovery/engine.rb +3 -7
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/ca/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ca/foreman_discovery.edit.po +136 -98
- data/locale/ca/foreman_discovery.po +36 -9
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +148 -112
- data/locale/de/foreman_discovery.po +45 -18
- data/locale/en/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en/foreman_discovery.edit.po +127 -91
- data/locale/en/foreman_discovery.po +31 -4
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +139 -109
- data/locale/en_GB/foreman_discovery.po +36 -9
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +172 -140
- data/locale/es/foreman_discovery.po +70 -41
- data/locale/foreman_discovery.pot +142 -97
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +179 -147
- data/locale/fr/foreman_discovery.po +76 -49
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.edit.po +133 -92
- data/locale/gl/foreman_discovery.po +32 -5
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +147 -106
- data/locale/it/foreman_discovery.po +44 -17
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +182 -152
- data/locale/ja/foreman_discovery.po +79 -54
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +146 -105
- data/locale/ko/foreman_discovery.po +43 -16
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +171 -136
- data/locale/pt_BR/foreman_discovery.po +69 -39
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +147 -106
- data/locale/ru/foreman_discovery.po +43 -16
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +135 -94
- data/locale/sv_SE/foreman_discovery.po +34 -7
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +217 -188
- data/locale/zh_CN/foreman_discovery.po +114 -90
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +146 -105
- data/locale/zh_TW/foreman_discovery.po +43 -16
- data/package.json +7 -7
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +9 -0
- data/test/functional/discovery_rules_controller_test.rb +6 -1
- data/test/integration/discovered_hosts_test.rb +53 -5
- data/test/test_helper_discovery.rb +5 -0
- data/test/unit/discovery_rule_test.rb +24 -2
- data/test/unit/fact_to_category_resolver_test.rb +41 -0
- data/test/unit/ui_notifications/destroy_host_test.rb +2 -9
- data/test/unit/ui_notifications/new_host_test.rb +3 -3
- data/webpack/__mocks__/foremanReact/common/I18n.js +3 -0
- data/webpack/__mocks__/foremanReact/common/helpers.js +1 -0
- data/webpack/__mocks__/foremanReact/common/index.js +5 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/DefaultEmptyState.js +69 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js +77 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePropTypes.js +29 -0
- data/webpack/__mocks__/foremanReact/components/common/EmptyState/index.js +5 -0
- data/webpack/index.js +9 -8
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/EmptyState.js +7 -7
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/EmptyState.test.js +12 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/__test__/__snapshots__/EmptyState.test.js.snap +16 -0
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/Components/EmptyState/index.js +1 -1
- data/webpack/src/ForemanDiscovery/DiscoveredHosts/index.js +3 -3
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js +34 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/index.js +1 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/EmptyState.test.js +19 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/Components/__test__/__snapshots__/EmptyState.test.js.snap +22 -0
- data/webpack/src/ForemanDiscovery/DiscoveryRules/index.js +6 -0
- data/webpack/src/reducers.js +0 -2
- metadata +39 -17
@@ -4,12 +4,13 @@
|
|
4
4
|
#
|
5
5
|
# Translators:
|
6
6
|
# 山田 修司 🍣 Shuji Yamada <uzy.exe@gmail.com>, 2015
|
7
|
+
# 山田 修司 🍣 Shuji Yamada <uzy.exe@gmail.com>, 2015
|
7
8
|
msgid ""
|
8
9
|
msgstr ""
|
9
|
-
"Project-Id-Version: foreman_discovery 16.
|
10
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
10
11
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"PO-Revision-Date:
|
12
|
-
"Last-Translator:
|
12
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
13
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
|
13
14
|
"Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/"
|
14
15
|
")\n"
|
15
16
|
"MIME-Version: 1.0\n"
|
@@ -19,28 +20,25 @@ msgstr ""
|
|
19
20
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
20
21
|
|
21
22
|
msgid "%s - The following hosts are about to be changed"
|
22
|
-
msgstr "%s
|
23
|
-
|
24
|
-
msgid "%s ago"
|
25
|
-
msgstr "%s 前"
|
23
|
+
msgstr "%s: 以下のホストはまもなく変更されます"
|
26
24
|
|
27
25
|
msgid "%s discovered hosts were provisioned"
|
28
|
-
msgstr "%s
|
26
|
+
msgstr "検出ホスト %s 台がプロビジョニングされました"
|
29
27
|
|
30
28
|
msgid "<b>Foreman</b> Discovered hosts summary"
|
31
|
-
msgstr "<b>Foreman</b>
|
29
|
+
msgstr "<b>Foreman</b> 検出されたホストの概要"
|
32
30
|
|
33
31
|
msgid "A summary of discovered hosts"
|
34
32
|
msgstr "検出されたホストの概要"
|
35
33
|
|
36
34
|
msgid "Action with sub plans"
|
37
|
-
msgstr ""
|
35
|
+
msgstr "サブプランによるアクション"
|
38
36
|
|
39
37
|
msgid "Actions"
|
40
38
|
msgstr "アクション"
|
41
39
|
|
42
40
|
msgid "Assign Location"
|
43
|
-
msgstr "
|
41
|
+
msgstr "ロケーションの割り当て"
|
44
42
|
|
45
43
|
msgid "Assign Organization"
|
46
44
|
msgstr "組織の割り当て"
|
@@ -73,7 +71,7 @@ msgid "CPUs"
|
|
73
71
|
msgstr "CPU"
|
74
72
|
|
75
73
|
msgid "Cancel"
|
76
|
-
msgstr "
|
74
|
+
msgstr "取り消し"
|
77
75
|
|
78
76
|
msgid "Clean all facts"
|
79
77
|
msgstr "すべてのファクトのクリーニング"
|
@@ -81,6 +79,12 @@ msgstr "すべてのファクトのクリーニング"
|
|
81
79
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
82
80
|
msgstr "プロビジョニング時に報告されたすべてのファクトをクリーニング (検出ファクトを除く)"
|
83
81
|
|
82
|
+
msgid "Clone"
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
msgid "Clone %s"
|
86
|
+
msgstr ""
|
87
|
+
|
84
88
|
msgid "Collapse All"
|
85
89
|
msgstr "すべて折りたたむ"
|
86
90
|
|
@@ -127,7 +131,7 @@ msgid "Delete rule '%s'?"
|
|
127
131
|
msgstr "ルール '%s' を削除しますか?"
|
128
132
|
|
129
133
|
msgid "Destroyed selected hosts"
|
130
|
-
msgstr "
|
134
|
+
msgstr "破棄済みの選択ホスト"
|
131
135
|
|
132
136
|
msgid "Details"
|
133
137
|
msgstr "詳細"
|
@@ -140,14 +144,19 @@ msgstr "ルール '%s' を無効にしますか?"
|
|
140
144
|
|
141
145
|
msgid "Discovered Host"
|
142
146
|
msgid_plural "Discovered Hosts"
|
143
|
-
msgstr[0] ""
|
144
|
-
msgstr[1] ""
|
147
|
+
msgstr[0] "検出されたホスト"
|
145
148
|
|
146
149
|
msgid "Discovered Hosts"
|
147
150
|
msgstr "検出されたホスト"
|
148
151
|
|
152
|
+
msgid "Discovered Rules"
|
153
|
+
msgstr ""
|
154
|
+
|
149
155
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
150
|
-
msgstr "検出ホスト '%{host}'
|
156
|
+
msgstr "検出ホスト '%{host}' では全 NIC がフィルタリングされています。フィルター: %{filter}"
|
157
|
+
|
158
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
159
|
+
msgstr ""
|
151
160
|
|
152
161
|
msgid "Discovered host: %s"
|
153
162
|
msgstr "検出されたホスト: %s"
|
@@ -161,6 +170,9 @@ msgstr "検出されたホストの再起動中"
|
|
161
170
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
162
171
|
msgstr "Foreman サーバーの検出されたホスト: %{foreman_url}"
|
163
172
|
|
173
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
174
|
+
msgstr ""
|
175
|
+
|
164
176
|
msgid "Discovered hosts summary"
|
165
177
|
msgstr "検出されたホストの概要"
|
166
178
|
|
@@ -227,6 +239,9 @@ msgstr "有効化"
|
|
227
239
|
msgid "Enable rule '%s'?"
|
228
240
|
msgstr "ルール '%s' を有効にしますか?"
|
229
241
|
|
242
|
+
msgid "Error message goes here"
|
243
|
+
msgstr ""
|
244
|
+
|
230
245
|
msgid "Error on existing NIC"
|
231
246
|
msgstr "既存の NIC でのエラー"
|
232
247
|
|
@@ -243,7 +258,7 @@ msgid "Execute rules against all currently discovered hosts"
|
|
243
258
|
msgstr "現在検出されているすべてのホストに対するルールの実行"
|
244
259
|
|
245
260
|
msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
|
246
|
-
msgstr "
|
261
|
+
msgstr "必要な discovery_fact '%s' がありません。プライマリーインターフェースの検出やホスト名の設定ができません"
|
247
262
|
|
248
263
|
msgid "Extra facter columns to show in host lists (separate by comma)"
|
249
264
|
msgstr "ホスト一覧に表示される追加の facter 列 (コンマ区切り)"
|
@@ -261,7 +276,7 @@ msgid "Facts could not be imported"
|
|
261
276
|
msgstr "ファクトをインポートできませんでした"
|
262
277
|
|
263
278
|
msgid "Facts refreshed for %s"
|
264
|
-
msgstr "%s
|
279
|
+
msgstr "%s の更新済みファクト"
|
265
280
|
|
266
281
|
msgid "Failed to auto provision host %s: %s"
|
267
282
|
msgstr "ホスト %s の自動プロビジョニングに失敗しました: %s"
|
@@ -270,16 +285,19 @@ msgid "Failed to reboot host %s"
|
|
270
285
|
msgstr "ホスト %s の再起動に失敗しました"
|
271
286
|
|
272
287
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
273
|
-
msgstr "ホスト %{hostname}
|
288
|
+
msgstr "ホスト %{hostname} は %{error_message} のエラーで再起動に失敗しました"
|
274
289
|
|
275
290
|
msgid "Failed to reboot hosts with error %s"
|
276
|
-
msgstr "
|
291
|
+
msgstr "ホストは %s のエラーで再起動に失敗しました"
|
277
292
|
|
278
293
|
msgid "Failed to refresh facts for %s"
|
279
294
|
msgstr "%s のファクトの更新に失敗しました"
|
280
295
|
|
281
296
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
282
|
-
msgstr "%{
|
297
|
+
msgstr "%{error_message} エラーで %{hostname} のファクトの更新に失敗しました"
|
298
|
+
|
299
|
+
msgid "For more information please see "
|
300
|
+
msgstr "詳細は、以下を参照してください: "
|
283
301
|
|
284
302
|
msgid "Force DNS"
|
285
303
|
msgstr "DNS の強制的な実行"
|
@@ -305,6 +323,9 @@ msgstr "ハイライト"
|
|
305
323
|
msgid "Host"
|
306
324
|
msgstr "ホスト"
|
307
325
|
|
326
|
+
msgid "Host %s has been dicovered"
|
327
|
+
msgstr ""
|
328
|
+
|
308
329
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
309
330
|
msgstr "ホスト %{host} がルール %{rule} でプロビジョニングされています"
|
310
331
|
|
@@ -313,22 +334,20 @@ msgstr "ホストグループ"
|
|
313
334
|
|
314
335
|
msgid "Host group location %s must also be associated to the discovery rule"
|
315
336
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
316
|
-
msgstr[0] ""
|
317
|
-
msgstr[1] ""
|
337
|
+
msgstr[0] "ホストグループの場所 %s も検出ルールに関連付ける必要があります"
|
318
338
|
|
319
339
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
320
340
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
321
|
-
msgstr[0] ""
|
322
|
-
msgstr[1] ""
|
341
|
+
msgstr[0] "ホストグループの組織 %s も検出ルールに関連付ける必要があります"
|
323
342
|
|
324
343
|
msgid "Host of type %s can not be rebooted"
|
325
344
|
msgstr "タイプ %s のホストを再起動できません"
|
326
345
|
|
327
346
|
msgid "Host's owner type"
|
328
|
-
msgstr ""
|
347
|
+
msgstr "ホストの所有者タイプ"
|
329
348
|
|
330
349
|
msgid "Host's parameters (array or indexed hash)"
|
331
|
-
msgstr ""
|
350
|
+
msgstr "ホストのパラメーター (配列またはインデックス化されたハッシュ)"
|
332
351
|
|
333
352
|
msgid "Hostname facts"
|
334
353
|
msgstr "ホスト名ファクト"
|
@@ -361,7 +380,7 @@ msgid "IP address"
|
|
361
380
|
msgstr "IP アドレス"
|
362
381
|
|
363
382
|
msgid "IPAM must be configured for subnet '%s'"
|
364
|
-
msgstr ""
|
383
|
+
msgstr "IPAM はサブネット '%s' 用に設定する必要があります"
|
365
384
|
|
366
385
|
msgid "IPMI"
|
367
386
|
msgstr "IPMI"
|
@@ -370,19 +389,19 @@ msgid "IPMI facts"
|
|
370
389
|
msgstr "IPMI ファクト"
|
371
390
|
|
372
391
|
msgid "Identifier"
|
373
|
-
msgstr "
|
392
|
+
msgstr "ID"
|
374
393
|
|
375
394
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
376
|
-
msgstr "イメージ API
|
395
|
+
msgstr "イメージ API 処理エラー: %{msg} (HTTP/%{code}、ボディー: %{body})"
|
377
396
|
|
378
397
|
msgid "Image API returned HTTP/%{code} with '%{body}"
|
379
398
|
msgstr "イメージ API で返された HTTP/%{code}: '%{body}"
|
380
399
|
|
381
400
|
msgid "Import Puppet classes"
|
382
|
-
msgstr ""
|
401
|
+
msgstr "Puppet クラスのインポート"
|
383
402
|
|
384
403
|
msgid "Import facts"
|
385
|
-
msgstr ""
|
404
|
+
msgstr "ファクトのインポート"
|
386
405
|
|
387
406
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
388
407
|
msgstr "@host 属性のほかに、ランダムな整数の rand 関数を利用できます。例:"
|
@@ -400,7 +419,7 @@ msgid "Invalid facts, must be a Hash"
|
|
400
419
|
msgstr "無効なファクトです。ハッシュである必要があります。"
|
401
420
|
|
402
421
|
msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
|
403
|
-
msgstr "無効なファクト:
|
422
|
+
msgstr "無効なファクト: discovery_hostname 設定の全ファクトで、ハッシュの値は無効です: %s"
|
404
423
|
|
405
424
|
msgid "Invalid hostname: Could not normalize the hostname"
|
406
425
|
msgstr "無効なホスト名: ホスト名を正規化できませんでした"
|
@@ -430,7 +449,7 @@ msgid "List of facts to use for the hostname (separated by comma, first wins)"
|
|
430
449
|
msgstr "ホスト名に使用するファクトの一覧 (コンマ区切り、first wins)"
|
431
450
|
|
432
451
|
msgid "Location"
|
433
|
-
msgstr "
|
452
|
+
msgstr "ロケーション"
|
434
453
|
|
435
454
|
msgid "Locations"
|
436
455
|
msgstr "ロケーション"
|
@@ -454,7 +473,7 @@ msgid "MAC-based name"
|
|
454
473
|
msgstr "MAC ベースの名前"
|
455
474
|
|
456
475
|
msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
|
457
|
-
msgstr "
|
476
|
+
msgstr "このルールでプロビジョニングする最大ホスト数 (0 = 無制限)"
|
458
477
|
|
459
478
|
msgid "Memory"
|
460
479
|
msgstr "メモリー"
|
@@ -466,13 +485,13 @@ msgid "Model"
|
|
466
485
|
msgstr "モデル"
|
467
486
|
|
468
487
|
msgid "N/A"
|
469
|
-
msgstr "
|
488
|
+
msgstr "N/A"
|
470
489
|
|
471
490
|
msgid "Name"
|
472
491
|
msgstr "名前"
|
473
492
|
|
474
493
|
msgid "Name of the parameter"
|
475
|
-
msgstr ""
|
494
|
+
msgstr "パラメーター名"
|
476
495
|
|
477
496
|
msgid "Network"
|
478
497
|
msgstr "ネットワーク"
|
@@ -483,6 +502,9 @@ msgstr "ネットワークファクト"
|
|
483
502
|
msgid "New Discovery Rule"
|
484
503
|
msgstr "新規の検出ルール"
|
485
504
|
|
505
|
+
msgid "New hosts"
|
506
|
+
msgstr ""
|
507
|
+
|
486
508
|
msgid "New in the last 24 hours"
|
487
509
|
msgstr "過去 24 時間以内の新規"
|
488
510
|
|
@@ -535,7 +557,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
|
|
535
557
|
msgstr "ホストを検出に固定する際に使用される PXELinux テンプレート"
|
536
558
|
|
537
559
|
msgid "Parameter value"
|
538
|
-
msgstr ""
|
560
|
+
msgstr "パラメーター値"
|
539
561
|
|
540
562
|
msgid "Please Confirm"
|
541
563
|
msgstr "確認してください"
|
@@ -568,7 +590,7 @@ msgid "Rebooting all discovered hosts"
|
|
568
590
|
msgstr "すべての検出されたホストの再起動中"
|
569
591
|
|
570
592
|
msgid "Rebooting host %s"
|
571
|
-
msgstr "ホスト %s
|
593
|
+
msgstr "ホスト %s の再起動"
|
572
594
|
|
573
595
|
msgid "Rebuild DNS for %s"
|
574
596
|
msgstr "%s の DNS の再構築"
|
@@ -601,7 +623,7 @@ msgid "Reloading kernel on %s"
|
|
601
623
|
msgstr "カーネルを %s にリロード中"
|
602
624
|
|
603
625
|
msgid "Remote action:"
|
604
|
-
msgstr ""
|
626
|
+
msgstr "リモートアクション:"
|
605
627
|
|
606
628
|
msgid "Reported in the last 7 days"
|
607
629
|
msgstr "過去 7 日以内に報告あり"
|
@@ -613,7 +635,7 @@ msgid "Rule enabled"
|
|
613
635
|
msgstr "有効にされたルール"
|
614
636
|
|
615
637
|
msgid "Rule priority (lower integer means higher priority)"
|
616
|
-
msgstr "ルールの優先順位 (
|
638
|
+
msgstr "ルールの優先順位 (整数値が低いほど、優先順位が高い)"
|
617
639
|
|
618
640
|
msgid "Select Action"
|
619
641
|
msgstr "アクションの選択"
|
@@ -640,7 +662,7 @@ msgid "Software facts"
|
|
640
662
|
msgstr "ソフトウェアファクト"
|
641
663
|
|
642
664
|
msgid "Something went wrong while selecting hosts - %s"
|
643
|
-
msgstr "
|
665
|
+
msgstr "ホストの選択中に問題が発生しました: %s"
|
644
666
|
|
645
667
|
msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
|
646
668
|
msgstr "プロビジョニングテンプレート (ERB) と同じ構文のターゲットホスト名テンプレートのパターンを指定します。"
|
@@ -661,13 +683,13 @@ msgid "Successfully provisioned %s"
|
|
661
683
|
msgstr "%s が正常にプロビジョニングされました"
|
662
684
|
|
663
685
|
msgid "Summary from %{time} ago to %{now}"
|
664
|
-
msgstr "%{time}
|
686
|
+
msgstr "%{time} 前から %{now} までの概要"
|
665
687
|
|
666
688
|
msgid "Summary report for discovered hosts from Foreman"
|
667
689
|
msgstr "Foreman の検出されたホストの概要レポート"
|
668
690
|
|
669
691
|
msgid "Target host group for this rule with all properties set"
|
670
|
-
msgstr "
|
692
|
+
msgstr "このルールのターゲットホストグループ。全プロパティーを設定しておいてください。"
|
671
693
|
|
672
694
|
msgid "The default location to place discovered hosts in"
|
673
695
|
msgstr "検出されたホストを配置するデフォルトの場所"
|
@@ -679,7 +701,7 @@ msgid "The default prefix to use for the host name, must start with a letter"
|
|
679
701
|
msgstr "ホスト名に使用するデフォルトのプレフィックスは文字で開始する必要があります"
|
680
702
|
|
681
703
|
msgid "The following hosts were not deleted: %s"
|
682
|
-
msgstr "
|
704
|
+
msgstr "以下のホストは削除されませんでした: %s"
|
683
705
|
|
684
706
|
msgid "This might take a while, as all hosts, facts and reports will be destroyed as well"
|
685
707
|
msgstr "ホスト、ファクト、およびレポートもすべて破棄されるため、時間がかかる場合があります。"
|
@@ -691,7 +713,7 @@ msgid "Type of name generator"
|
|
691
713
|
msgstr "名前ジェネレーターのタイプ"
|
692
714
|
|
693
715
|
msgid "Type of value"
|
694
|
-
msgstr ""
|
716
|
+
msgstr "値のタイプ"
|
695
717
|
|
696
718
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
697
719
|
msgstr "オーケストレーションタスクの状態を追跡するための UUID。GET /api/orchestration/:UUID/tasks"
|
@@ -700,16 +722,16 @@ msgid "Unable to find a discovery rule, no host provided (check permissions)"
|
|
700
722
|
msgstr "検出ルールを見つけることができません。指定されるホストがありません (パーミッションを確認してください)"
|
701
723
|
|
702
724
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
703
|
-
msgstr "%{mac} が
|
725
|
+
msgstr "%{mac} が %{fact} で指定されたプライマリー NIC を見つけることができません。NIC フィルター: %{filter}"
|
704
726
|
|
705
727
|
msgid "Unable to perform %{action} on %{ips}"
|
706
|
-
msgstr ""
|
728
|
+
msgstr "%{ips} で %{action} を実行できません"
|
707
729
|
|
708
730
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
709
|
-
msgstr ""
|
731
|
+
msgstr "%{name} の (%{url}) で kexec を実行できません: %{msg}"
|
710
732
|
|
711
733
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
712
|
-
msgstr ""
|
734
|
+
msgstr "%{name} の (%{url}) で再起動を実行できません: %{msg}"
|
713
735
|
|
714
736
|
msgid "Unable to provision %{host}: %{errors}"
|
715
737
|
msgstr "%{host} をプロビジョニングできません: %{errors}"
|
@@ -721,7 +743,7 @@ msgid "Upload facts for a host, creating the host if required"
|
|
721
743
|
msgstr "ホストのファクトをアップロードし、必要な場合はホストを作成します"
|
722
744
|
|
723
745
|
msgid "When creating hostname patterns, make sure the resulting host names are unique."
|
724
|
-
msgstr "
|
746
|
+
msgstr "ホスト名パターンの作成時に、生成されるホスト名が一意であることを確認します。"
|
725
747
|
|
726
748
|
msgid "can't contain white spaces."
|
727
749
|
msgstr "空白を含めることができません。"
|
@@ -729,6 +751,9 @@ msgstr "空白を含めることができません。"
|
|
729
751
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
730
752
|
msgstr "人が判読できるホスト名を一致するホストに割り当てるパターンの定義"
|
731
753
|
|
754
|
+
msgid "documentation"
|
755
|
+
msgstr "ドキュメント"
|
756
|
+
|
732
757
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
733
758
|
msgstr "ルール別のプロビジョニングされたホストの最大数の制限を許可"
|
734
759
|
|
@@ -778,13 +803,13 @@ msgid "represents rule name shown to the users"
|
|
778
803
|
msgstr "ユーザーに表示されるルール名の表示"
|
779
804
|
|
780
805
|
msgid "required if host is managed and custom partition has not been defined"
|
781
|
-
msgstr ""
|
806
|
+
msgstr "ホストが管理されており、カスタムパーティションが定義されていない場合に必須です。"
|
782
807
|
|
783
808
|
msgid "required if host is managed and value is not inherited from host group"
|
784
|
-
msgstr ""
|
809
|
+
msgstr "ホストが管理されており、値がホストグループから継承されていない場合に必須です。"
|
785
810
|
|
786
811
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
787
|
-
msgstr ""
|
812
|
+
msgstr "イメージベースのプロビジョニングでない場合で、ホストが管理されており、値がホストグループから継承されていない場合に必須です。"
|
788
813
|
|
789
814
|
msgid "required if value is not inherited from host group or default password in settings"
|
790
815
|
msgstr "値がホストグループから継承されていないか、または設定済みのデフォルトパスワードである場合に必須です。"
|
Binary file
|
@@ -5,9 +5,10 @@
|
|
5
5
|
# Translators:
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: foreman_discovery 16.
|
8
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"
|
10
|
+
"POT-Creation-Date: 2021-05-03 08:46+0200\n"
|
11
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
11
12
|
"Last-Translator: Transifex Bot <>\n"
|
12
13
|
"Language-Team: Korean (http://www.transifex.com/foreman/foreman/language/ko/)\n"
|
13
14
|
"MIME-Version: 1.0\n"
|
@@ -54,7 +55,7 @@ msgstr "검색된 호스트 프로비저닝 "
|
|
54
55
|
|
55
56
|
#: ../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
|
56
57
|
msgid "required if host is managed and value is not inherited from host group"
|
57
|
-
msgstr ""
|
58
|
+
msgstr "호스트가 관리되고 있으며 값이 호스트 그룹에서 상속되지 않은 경우에 필요합니다 "
|
58
59
|
|
59
60
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
|
60
61
|
msgid "not required if using a subnet with DHCP proxy"
|
@@ -66,27 +67,27 @@ msgstr "가상 머신의 경우 필요하지 않습니다 "
|
|
66
67
|
|
67
68
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
|
68
69
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
69
|
-
msgstr ""
|
70
|
+
msgstr "이미지 기반의 프로비저닝이 아니고 호스트가 관리되어 값이 호스트 그룹에서 상속되지 않은 경우에 필요합니다 "
|
70
71
|
|
71
72
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
|
72
73
|
msgid "required if host is managed and custom partition has not been defined"
|
73
|
-
msgstr ""
|
74
|
+
msgstr "호스트가 관리되고 있으며 사용자 정의 파티션이 정의되고 있지 않은 경우에 필요합니다 "
|
74
75
|
|
75
76
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
|
76
77
|
msgid "Host's owner type"
|
77
|
-
msgstr ""
|
78
|
+
msgstr "호스트의 소유자 유형"
|
78
79
|
|
79
80
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
|
80
81
|
msgid "Host's parameters (array or indexed hash)"
|
81
|
-
msgstr ""
|
82
|
+
msgstr "호스트의 매개 변수(배열 또는 인덱싱된 해시)"
|
82
83
|
|
83
84
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
|
84
85
|
msgid "Name of the parameter"
|
85
|
-
msgstr ""
|
86
|
+
msgstr "매개 변수의 이름"
|
86
87
|
|
87
88
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
|
88
89
|
msgid "Parameter value"
|
89
|
-
msgstr ""
|
90
|
+
msgstr "매개 변수 값"
|
90
91
|
|
91
92
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
|
92
93
|
msgid "Type of value"
|
@@ -112,51 +113,51 @@ msgstr "호스트의 팩트를 업로드하고 필요한 경우 호스트를 생
|
|
112
113
|
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)"
|
113
114
|
msgstr "최소 세트의 팩트가 있는 호스트의 팩트가 포함된 해시: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, 인터페이스: eth0(기본 인터페이스의 이름이 eth0인 경우의 예)"
|
114
115
|
|
115
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
116
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
116
117
|
msgid "Execute rules against a discovered host"
|
117
118
|
msgstr "검색된 호스트에 대해 규칙 실행 "
|
118
119
|
|
119
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
120
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
|
120
121
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
121
122
|
msgstr "호스트 %{host}은/는 %{rule}으(로) 프로비저닝됩니다 "
|
122
123
|
|
123
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
124
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
124
125
|
msgid "Unable to provision %{host}: %{errors}"
|
125
126
|
msgstr "%{host}을(를) 프로비저닝할 수 없습니다: %{errors}"
|
126
127
|
|
127
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
128
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
|
128
129
|
msgid "No rule found for host %s"
|
129
130
|
msgstr "호스트 %s에 대한 규칙을 찾을 수 없습니다 "
|
130
131
|
|
131
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
132
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
132
133
|
msgid "Execute rules against all currently discovered hosts"
|
133
134
|
msgstr "현재 검색된 모든 호스트에 대해 규칙 실행 "
|
134
135
|
|
135
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
136
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
|
136
137
|
msgid "Errors during auto provisioning: %s"
|
137
138
|
msgstr "자동 프로비저닝 도중 오류 발생: %s"
|
138
139
|
|
139
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
140
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
|
140
141
|
msgid "No discovered hosts to provision"
|
141
142
|
msgstr "프로비저닝할 검색된 호스트가 없습니다 "
|
142
143
|
|
143
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
144
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
144
145
|
msgid "%s discovered hosts were provisioned"
|
145
146
|
msgstr "%s개의 검색된 호스트를 프로비저닝했습니다."
|
146
147
|
|
147
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
148
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
148
149
|
msgid "Refreshing the facts of a discovered host"
|
149
150
|
msgstr "검색된 호스트의 팩트를 새로고침 중 "
|
150
151
|
|
151
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
152
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
152
153
|
msgid "Rebooting a discovered host"
|
153
154
|
msgstr "검색된 호스트를 재부팅 중 "
|
154
155
|
|
155
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
156
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
156
157
|
msgid "Rebooting all discovered hosts"
|
157
158
|
msgstr "검색된 모든 호스트를 재부팅 중"
|
158
159
|
|
159
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
160
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
|
160
161
|
msgid "Discovered hosts are rebooting now"
|
161
162
|
msgstr "현재 검색된 호스트를 재부팅하고 있습니다."
|
162
163
|
|
@@ -236,119 +237,95 @@ msgstr "재부팅 도중 오류가 발생했습니다: %s"
|
|
236
237
|
msgid "No discovered hosts to reboot"
|
237
238
|
msgstr "재부팅할 검색된 호스트가 없습니다."
|
238
239
|
|
239
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
240
|
+
#: ../app/controllers/discovered_hosts_controller.rb:60
|
240
241
|
msgid "Successfully provisioned %s"
|
241
242
|
msgstr ""
|
242
243
|
|
243
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
244
|
+
#: ../app/controllers/discovered_hosts_controller.rb:94
|
244
245
|
msgid "Facts refreshed for %s"
|
245
246
|
msgstr "%s에 대해 업데이트된 팩트"
|
246
247
|
|
247
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
248
|
+
#: ../app/controllers/discovered_hosts_controller.rb:96
|
248
249
|
msgid "Failed to refresh facts for %s"
|
249
250
|
msgstr "%s에 대한 팩트를 새로고침하는데 실패했습니다 "
|
250
251
|
|
251
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
252
|
+
#: ../app/controllers/discovered_hosts_controller.rb:99
|
252
253
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
253
254
|
msgstr "%{error_message} 오류가 발생하여 %{hostname}의 팩트를 새로 고치지 못했습니다."
|
254
255
|
|
255
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
256
|
+
#: ../app/controllers/discovered_hosts_controller.rb:106
|
256
257
|
msgid "Host of type %s can not be rebooted"
|
257
258
|
msgstr "호스트 유형 %s은(는) 재부팅할 수 없습니다 "
|
258
259
|
|
259
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
260
|
+
#: ../app/controllers/discovered_hosts_controller.rb:110
|
260
261
|
msgid "Rebooting host %s"
|
261
262
|
msgstr "호스트 %s 재부팅 중 "
|
262
263
|
|
263
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
264
|
+
#: ../app/controllers/discovered_hosts_controller.rb:112
|
264
265
|
msgid "Failed to reboot host %s"
|
265
266
|
msgstr "호스트 %s 재부팅에 실패했습니다 "
|
266
267
|
|
267
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
268
|
+
#: ../app/controllers/discovered_hosts_controller.rb:115
|
268
269
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
269
270
|
msgstr "오류 %{error_message}를 표시하는 호스트 %{hostname} 재부팅에 실패했습니다 "
|
270
271
|
|
271
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
272
|
+
#: ../app/controllers/discovered_hosts_controller.rb:129
|
272
273
|
msgid "Failed to reboot hosts with error %s"
|
273
274
|
msgstr "%s 오류가 발생하여 호스트를 재부팅하지 못했습니다."
|
274
275
|
|
275
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
276
|
+
#: ../app/controllers/discovered_hosts_controller.rb:147
|
276
277
|
msgid "Destroyed selected hosts"
|
277
278
|
msgstr "선택된 호스트 삭제"
|
278
279
|
|
279
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
280
|
+
#: ../app/controllers/discovered_hosts_controller.rb:149
|
280
281
|
msgid "The following hosts were not deleted: %s"
|
281
282
|
msgstr "다음 호스트가 삭제되지 않았습니다: %s"
|
282
283
|
|
283
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
284
|
+
#: ../app/controllers/discovered_hosts_controller.rb:161
|
284
285
|
msgid "Failed to auto provision host %s: %s"
|
285
286
|
msgstr "호스트 %s의 자동 프로비저닝에 실패했습니다: %s"
|
286
287
|
|
287
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
288
|
+
#: ../app/controllers/discovered_hosts_controller.rb:189
|
288
289
|
msgid "Discovered hosts are provisioning now"
|
289
290
|
msgstr "현재 검색된 호스트를 프로비저닝하고 있습니다"
|
290
291
|
|
291
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
292
|
-
msgid "
|
292
|
+
#: ../app/controllers/discovered_hosts_controller.rb:270
|
293
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
293
294
|
msgstr ""
|
294
295
|
|
295
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
296
|
-
msgid "
|
297
|
-
msgstr "
|
298
|
-
|
299
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
300
|
-
msgid "Hardware"
|
301
|
-
msgstr "하드웨어"
|
302
|
-
|
303
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
304
|
-
msgid "Network"
|
305
|
-
msgstr "네트워크"
|
306
|
-
|
307
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
308
|
-
msgid "Software"
|
309
|
-
msgstr "소프트웨어"
|
310
|
-
|
311
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
312
|
-
msgid "IPMI"
|
313
|
-
msgstr "IPMI"
|
314
|
-
|
315
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
316
|
-
msgid "Miscellaneous"
|
317
|
-
msgstr "기타"
|
296
|
+
#: ../app/controllers/discovered_hosts_controller.rb:275
|
297
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
298
|
+
msgstr ""
|
318
299
|
|
319
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
300
|
+
#: ../app/controllers/discovered_hosts_controller.rb:289
|
320
301
|
msgid "No hosts were found with that id or name"
|
321
302
|
msgstr "해당 ID 또는 이름의 호스트를 찾을 수 없습니다 "
|
322
303
|
|
323
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
304
|
+
#: ../app/controllers/discovered_hosts_controller.rb:293
|
324
305
|
msgid "No hosts selected"
|
325
306
|
msgstr "선택된 호스트가 없음 "
|
326
307
|
|
327
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
308
|
+
#: ../app/controllers/discovered_hosts_controller.rb:299
|
328
309
|
msgid "Something went wrong while selecting hosts - %s"
|
329
310
|
msgstr "호스트를 선택하는 도중 문제가 발생했습니다 - %s"
|
330
311
|
|
331
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
312
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
332
313
|
msgid "Rule enabled"
|
333
314
|
msgstr "규칙 비활성화 "
|
334
315
|
|
335
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
316
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
336
317
|
msgid "Rule disabled"
|
337
318
|
msgstr "규칙 비활성화 "
|
338
319
|
|
339
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
340
|
-
msgid "%s ago"
|
341
|
-
msgstr "%s 전 "
|
342
|
-
|
343
|
-
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
|
320
|
+
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
344
321
|
msgid "Auto Provision"
|
345
322
|
msgstr "자동 프로비저닝 "
|
346
323
|
|
347
|
-
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
324
|
+
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:41
|
348
325
|
msgid "Refresh facts"
|
349
326
|
msgstr "팩트 새로고침 "
|
350
327
|
|
351
|
-
#: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
328
|
+
#: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:42
|
352
329
|
msgid "Reboot"
|
353
330
|
msgstr "다시 시작"
|
354
331
|
|
@@ -360,7 +337,7 @@ msgstr "뒤로 "
|
|
360
337
|
msgid "Select Action"
|
361
338
|
msgstr "작업 선택 "
|
362
339
|
|
363
|
-
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
340
|
+
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
|
364
341
|
msgid "Delete %s?"
|
365
342
|
msgstr "%s 을(를) 삭제하시겠습니까?"
|
366
343
|
|
@@ -425,6 +402,10 @@ msgid "Enable rule '%s'?"
|
|
425
402
|
msgstr ""
|
426
403
|
|
427
404
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
405
|
+
msgid "Clone"
|
406
|
+
msgstr ""
|
407
|
+
|
408
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
428
409
|
msgid "Delete rule '%s'?"
|
429
410
|
msgstr ""
|
430
411
|
|
@@ -448,13 +429,13 @@ msgstr "문자 또는 ERB로 시작해야 합니다. "
|
|
448
429
|
msgid "must be present."
|
449
430
|
msgstr ""
|
450
431
|
|
451
|
-
#: ../app/models/discovery_rule.rb:
|
432
|
+
#: ../app/models/discovery_rule.rb:57
|
452
433
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
453
434
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
454
435
|
msgstr[0] ""
|
455
436
|
msgstr[1] ""
|
456
437
|
|
457
|
-
#: ../app/models/discovery_rule.rb:
|
438
|
+
#: ../app/models/discovery_rule.rb:61
|
458
439
|
msgid "Host group location %s must also be associated to the discovery rule"
|
459
440
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
460
441
|
msgstr[0] ""
|
@@ -724,6 +705,34 @@ msgstr ""
|
|
724
705
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
725
706
|
msgstr ""
|
726
707
|
|
708
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
709
|
+
msgid "Highlights"
|
710
|
+
msgstr ""
|
711
|
+
|
712
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
713
|
+
msgid "Storage"
|
714
|
+
msgstr "스토리지"
|
715
|
+
|
716
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
717
|
+
msgid "Hardware"
|
718
|
+
msgstr "하드웨어"
|
719
|
+
|
720
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
721
|
+
msgid "Network"
|
722
|
+
msgstr "네트워크"
|
723
|
+
|
724
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
725
|
+
msgid "Software"
|
726
|
+
msgstr "소프트웨어"
|
727
|
+
|
728
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
729
|
+
msgid "IPMI"
|
730
|
+
msgstr "IPMI"
|
731
|
+
|
732
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
733
|
+
msgid "Miscellaneous"
|
734
|
+
msgstr "기타"
|
735
|
+
|
727
736
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
728
737
|
msgid "IPAM must be configured for subnet '%s'"
|
729
738
|
msgstr ""
|
@@ -736,6 +745,10 @@ msgstr "이미지 API에서 '%{body}'이(가) 포함된 HTTP/%{code}을(를) 반
|
|
736
745
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
737
746
|
msgstr "이미지 API 처리 오류: %{msg}(HTTP/%{code}, 본문: %{body})"
|
738
747
|
|
748
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
749
|
+
msgid "Host %s has been dicovered"
|
750
|
+
msgstr ""
|
751
|
+
|
739
752
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
740
753
|
msgid "Discovered Host"
|
741
754
|
msgid_plural "Discovered Hosts"
|
@@ -750,15 +763,15 @@ msgstr "사용 가능한 검색된 호스트가 없습니다 "
|
|
750
763
|
msgid "Host"
|
751
764
|
msgstr "호스트"
|
752
765
|
|
753
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
766
|
+
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:4 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:7 ../app/views/discovered_hosts/_selected_hosts.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:18 ../app/views/discovered_mailer/discovered_summary.text.erb:10
|
754
767
|
msgid "Model"
|
755
768
|
msgstr "모델 "
|
756
769
|
|
757
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
770
|
+
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:5 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:9 ../app/views/discovered_mailer/discovered_summary.html.erb:20 ../app/views/discovered_mailer/discovered_summary.text.erb:12
|
758
771
|
msgid "CPUs"
|
759
772
|
msgstr "CPU"
|
760
773
|
|
761
|
-
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
774
|
+
#: ../app/views/dashboard/_discovery_widget_host_list.html.erb:6 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:10 ../app/views/discovered_mailer/discovered_summary.html.erb:21 ../app/views/discovered_mailer/discovered_summary.text.erb:13
|
762
775
|
msgid "Memory"
|
763
776
|
msgstr "메모리"
|
764
777
|
|
@@ -770,59 +783,59 @@ msgstr ""
|
|
770
783
|
msgid "Create Host"
|
771
784
|
msgstr ""
|
772
785
|
|
773
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
786
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
774
787
|
msgid "Select all items in this page"
|
775
788
|
msgstr "이 페이지에 있는 모든 항목을 선택 "
|
776
789
|
|
777
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
790
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
778
791
|
msgid "items selected. Uncheck to Clear"
|
779
792
|
msgstr "항목이 선택되어 있습니다. 삭제하려면 선택 해제합니다 "
|
780
793
|
|
781
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
794
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:6 ../app/views/discovered_hosts/_selected_hosts.html.erb:7 ../app/views/discovered_mailer/discovered_summary.html.erb:17 ../app/views/discovered_mailer/discovered_summary.text.erb:9
|
782
795
|
msgid "Name"
|
783
796
|
msgstr "이름 "
|
784
797
|
|
785
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
798
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:8 ../app/views/discovered_mailer/discovered_summary.html.erb:19 ../app/views/discovered_mailer/discovered_summary.text.erb:11
|
786
799
|
msgid "IP Address"
|
787
800
|
msgstr "IP 주소 "
|
788
801
|
|
789
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
802
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
|
790
803
|
msgid "Disk Count"
|
791
804
|
msgstr "디스크 수"
|
792
805
|
|
793
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
806
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
|
794
807
|
msgid "Disks Size"
|
795
808
|
msgstr ""
|
796
809
|
|
797
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
810
|
+
#: ../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
811
|
msgid "Location"
|
799
812
|
msgstr "위치 "
|
800
813
|
|
801
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
814
|
+
#: ../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
815
|
msgid "Organization"
|
803
816
|
msgstr "조직 "
|
804
817
|
|
805
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
818
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
|
806
819
|
msgid "Subnet"
|
807
820
|
msgstr "서브넷 "
|
808
821
|
|
809
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
822
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
|
810
823
|
msgid "Last Facts Upload"
|
811
824
|
msgstr ""
|
812
825
|
|
813
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
826
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:20 ../app/views/discovery_rules/index.html.erb:14
|
814
827
|
msgid "Actions"
|
815
828
|
msgstr "동작 "
|
816
829
|
|
817
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
830
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:55
|
818
831
|
msgid "Please Confirm"
|
819
832
|
msgstr "확인해 주십시오 "
|
820
833
|
|
821
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
834
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:61
|
822
835
|
msgid "Cancel"
|
823
836
|
msgstr "취소 "
|
824
837
|
|
825
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
838
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:62
|
826
839
|
msgid "Submit"
|
827
840
|
msgstr "제출 "
|
828
841
|
|
@@ -958,6 +971,10 @@ msgstr ""
|
|
958
971
|
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
972
|
msgstr ""
|
960
973
|
|
974
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
975
|
+
msgid "Clone %s"
|
976
|
+
msgstr ""
|
977
|
+
|
961
978
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
962
979
|
msgid "Edit %s"
|
963
980
|
msgstr "%s 편집 "
|
@@ -966,7 +983,7 @@ msgstr "%s 편집 "
|
|
966
983
|
msgid "Discovery Rules"
|
967
984
|
msgstr "검색 규칙 "
|
968
985
|
|
969
|
-
#: ../app/views/discovery_rules/index.html.erb:2
|
986
|
+
#: ../app/views/discovery_rules/index.html.erb:2 ../webpack/src/ForemanDiscovery/DiscoveryRules/Components/EmptyState/EmptyState.js:9
|
970
987
|
msgid "Create Rule"
|
971
988
|
msgstr ""
|
972
989
|
|
@@ -990,7 +1007,7 @@ msgstr "호스트 그룹 "
|
|
990
1007
|
msgid "Hosts/Limit"
|
991
1008
|
msgstr ""
|
992
1009
|
|
993
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1010
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
994
1011
|
msgid "DiscoveryRule|Enabled"
|
995
1012
|
msgstr "활성화 "
|
996
1013
|
|
@@ -998,6 +1015,10 @@ msgstr "활성화 "
|
|
998
1015
|
msgid "New Discovery Rule"
|
999
1016
|
msgstr "새 검색 규칙 "
|
1000
1017
|
|
1018
|
+
#: ../app/views/discovery_rules/welcome.html.erb:8
|
1019
|
+
msgid "Discovered Rules"
|
1020
|
+
msgstr ""
|
1021
|
+
|
1001
1022
|
#: ../db/seeds.d/50_discovery_templates.rb:5
|
1002
1023
|
msgid "Command line options for kexec during PXE-less provisioning."
|
1003
1024
|
msgstr ""
|
@@ -1007,8 +1028,8 @@ msgid "A summary of discovered hosts"
|
|
1007
1028
|
msgstr ""
|
1008
1029
|
|
1009
1030
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1010
|
-
msgid "
|
1011
|
-
msgstr "
|
1031
|
+
msgid "New hosts"
|
1032
|
+
msgstr ""
|
1012
1033
|
|
1013
1034
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1014
1035
|
msgid "One or more hosts have been discovered"
|
@@ -1018,34 +1039,54 @@ msgstr ""
|
|
1018
1039
|
msgid "Details"
|
1019
1040
|
msgstr "상세 정보 "
|
1020
1041
|
|
1021
|
-
#: ../
|
1042
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:18
|
1043
|
+
msgid "Hosts"
|
1044
|
+
msgstr "호스트"
|
1045
|
+
|
1046
|
+
#: ../db/seeds.d/80_discovery_ui_notification.rb:20
|
1047
|
+
msgid "Error message goes here"
|
1048
|
+
msgstr ""
|
1049
|
+
|
1050
|
+
#: ../lib/foreman_discovery/engine.rb:176
|
1022
1051
|
msgid "Discovery Kexec template"
|
1023
1052
|
msgstr ""
|
1024
1053
|
|
1025
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1054
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1026
1055
|
msgid "Discovery Proxy"
|
1027
1056
|
msgstr ""
|
1028
1057
|
|
1029
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1058
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1030
1059
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1031
1060
|
msgstr ""
|
1032
1061
|
|
1033
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1062
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1034
1063
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1035
1064
|
msgstr ""
|
1036
1065
|
|
1066
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:33
|
1067
|
+
msgid "For more information please see "
|
1068
|
+
msgstr ""
|
1069
|
+
|
1070
|
+
#: ../webpack/__mocks__/foremanReact/components/common/EmptyState/EmptyStatePattern.js:34
|
1071
|
+
msgid "documentation"
|
1072
|
+
msgstr ""
|
1073
|
+
|
1037
1074
|
#: action_names.rb:2
|
1038
1075
|
msgid "Remote action:"
|
1039
|
-
msgstr ""
|
1076
|
+
msgstr "원격 작업:"
|
1040
1077
|
|
1041
1078
|
#: action_names.rb:3
|
1042
1079
|
msgid "Import Puppet classes"
|
1043
|
-
msgstr ""
|
1080
|
+
msgstr "Puppet 클래스 가져오기"
|
1044
1081
|
|
1045
1082
|
#: action_names.rb:4
|
1046
|
-
msgid "
|
1047
|
-
msgstr ""
|
1083
|
+
msgid "Import facts"
|
1084
|
+
msgstr "팩트 불러오기"
|
1048
1085
|
|
1049
1086
|
#: action_names.rb:5
|
1050
|
-
msgid "
|
1051
|
-
msgstr ""
|
1087
|
+
msgid "Action with sub plans"
|
1088
|
+
msgstr "하위 계획이 있는 작업"
|
1089
|
+
|
1090
|
+
#: ../app/helpers/discovered_hosts_helper.rb:10
|
1091
|
+
#~ msgid "%s ago"
|
1092
|
+
#~ msgstr "%s 전 "
|