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
@@ -7,9 +7,9 @@
|
|
7
7
|
# caifti <caifti@gmail.com>, 2014
|
8
8
|
msgid ""
|
9
9
|
msgstr ""
|
10
|
-
"Project-Id-Version: foreman_discovery 16.
|
10
|
+
"Project-Id-Version: foreman_discovery 16.3.4\n"
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
12
|
-
"PO-Revision-Date:
|
12
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
13
13
|
"Last-Translator: Transifex Bot <>\n"
|
14
14
|
"Language-Team: Italian (http://www.transifex.com/foreman/foreman/language/it/)"
|
15
15
|
"\n"
|
@@ -22,9 +22,6 @@ msgstr ""
|
|
22
22
|
msgid "%s - The following hosts are about to be changed"
|
23
23
|
msgstr "%s - I seguenti host stanno per essere modificati"
|
24
24
|
|
25
|
-
msgid "%s ago"
|
26
|
-
msgstr "%s fa"
|
27
|
-
|
28
25
|
msgid "%s discovered hosts were provisioned"
|
29
26
|
msgstr ""
|
30
27
|
|
@@ -82,6 +79,12 @@ msgstr ""
|
|
82
79
|
msgid "Clean all reported facts during provisioning (except discovery facts)"
|
83
80
|
msgstr ""
|
84
81
|
|
82
|
+
msgid "Clone"
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
msgid "Clone %s"
|
86
|
+
msgstr ""
|
87
|
+
|
85
88
|
msgid "Collapse All"
|
86
89
|
msgstr "Comprimi tutto"
|
87
90
|
|
@@ -92,7 +95,7 @@ msgid "Could not get facts from proxy %{url}: %{error}"
|
|
92
95
|
msgstr "Impossibile ottenere gli eventi dal proxy %{url}: %{error}"
|
93
96
|
|
94
97
|
msgid "Create Host"
|
95
|
-
msgstr ""
|
98
|
+
msgstr "Crea Host"
|
96
99
|
|
97
100
|
msgid "Create Rule"
|
98
101
|
msgstr ""
|
@@ -147,9 +150,15 @@ msgstr[1] ""
|
|
147
150
|
msgid "Discovered Hosts"
|
148
151
|
msgstr ""
|
149
152
|
|
153
|
+
msgid "Discovered Rules"
|
154
|
+
msgstr ""
|
155
|
+
|
150
156
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
151
157
|
msgstr ""
|
152
158
|
|
159
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
160
|
+
msgstr ""
|
161
|
+
|
153
162
|
msgid "Discovered host: %s"
|
154
163
|
msgstr "Host trovati: %s"
|
155
164
|
|
@@ -162,6 +171,9 @@ msgstr ""
|
|
162
171
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
163
172
|
msgstr ""
|
164
173
|
|
174
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
175
|
+
msgstr ""
|
176
|
+
|
165
177
|
msgid "Discovered hosts summary"
|
166
178
|
msgstr ""
|
167
179
|
|
@@ -228,6 +240,9 @@ msgstr "Abilita"
|
|
228
240
|
msgid "Enable rule '%s'?"
|
229
241
|
msgstr ""
|
230
242
|
|
243
|
+
msgid "Error message goes here"
|
244
|
+
msgstr ""
|
245
|
+
|
231
246
|
msgid "Error on existing NIC"
|
232
247
|
msgstr ""
|
233
248
|
|
@@ -282,6 +297,9 @@ msgstr "Impossibile aggiornare gli eventi per %s"
|
|
282
297
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
283
298
|
msgstr ""
|
284
299
|
|
300
|
+
msgid "For more information please see "
|
301
|
+
msgstr ""
|
302
|
+
|
285
303
|
msgid "Force DNS"
|
286
304
|
msgstr ""
|
287
305
|
|
@@ -306,6 +324,9 @@ msgstr ""
|
|
306
324
|
msgid "Host"
|
307
325
|
msgstr "Host"
|
308
326
|
|
327
|
+
msgid "Host %s has been dicovered"
|
328
|
+
msgstr ""
|
329
|
+
|
309
330
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
310
331
|
msgstr "È stato eseguito il provisioning dell'host %{host} con la regola %{rule}"
|
311
332
|
|
@@ -326,10 +347,10 @@ msgid "Host of type %s can not be rebooted"
|
|
326
347
|
msgstr "Impossibile eseguire il riavvio sul tipo di host %s "
|
327
348
|
|
328
349
|
msgid "Host's owner type"
|
329
|
-
msgstr ""
|
350
|
+
msgstr "Tipo di proprietario dell'host"
|
330
351
|
|
331
352
|
msgid "Host's parameters (array or indexed hash)"
|
332
|
-
msgstr ""
|
353
|
+
msgstr "Parametri dell'host (array o hash indicizzato)"
|
333
354
|
|
334
355
|
msgid "Hostname facts"
|
335
356
|
msgstr ""
|
@@ -380,10 +401,10 @@ msgid "Image API returned HTTP/%{code} with '%{body}"
|
|
380
401
|
msgstr ""
|
381
402
|
|
382
403
|
msgid "Import Puppet classes"
|
383
|
-
msgstr ""
|
404
|
+
msgstr "Importa classi Puppet"
|
384
405
|
|
385
406
|
msgid "Import facts"
|
386
|
-
msgstr ""
|
407
|
+
msgstr "Importa gli eventi"
|
387
408
|
|
388
409
|
msgid "In addition to @host attribute function rand for random integers is available. Examples:"
|
389
410
|
msgstr ""
|
@@ -473,7 +494,7 @@ msgid "Name"
|
|
473
494
|
msgstr "Nome"
|
474
495
|
|
475
496
|
msgid "Name of the parameter"
|
476
|
-
msgstr ""
|
497
|
+
msgstr "Nome del parametro"
|
477
498
|
|
478
499
|
msgid "Network"
|
479
500
|
msgstr "Rete"
|
@@ -484,6 +505,9 @@ msgstr ""
|
|
484
505
|
msgid "New Discovery Rule"
|
485
506
|
msgstr "Nuova regola per la scoperta"
|
486
507
|
|
508
|
+
msgid "New hosts"
|
509
|
+
msgstr ""
|
510
|
+
|
487
511
|
msgid "New in the last 24 hours"
|
488
512
|
msgstr ""
|
489
513
|
|
@@ -536,7 +560,7 @@ msgid "PXELinux template to be used when pinning a host to discovery"
|
|
536
560
|
msgstr ""
|
537
561
|
|
538
562
|
msgid "Parameter value"
|
539
|
-
msgstr ""
|
563
|
+
msgstr "Valore parametro"
|
540
564
|
|
541
565
|
msgid "Please Confirm"
|
542
566
|
msgstr "Conferma"
|
@@ -602,7 +626,7 @@ msgid "Reloading kernel on %s"
|
|
602
626
|
msgstr ""
|
603
627
|
|
604
628
|
msgid "Remote action:"
|
605
|
-
msgstr ""
|
629
|
+
msgstr "Azione remota:"
|
606
630
|
|
607
631
|
msgid "Reported in the last 7 days"
|
608
632
|
msgstr ""
|
@@ -692,7 +716,7 @@ msgid "Type of name generator"
|
|
692
716
|
msgstr ""
|
693
717
|
|
694
718
|
msgid "Type of value"
|
695
|
-
msgstr ""
|
719
|
+
msgstr "Tipo di valore"
|
696
720
|
|
697
721
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
698
722
|
msgstr "UUID per controllare gli stati dei compiti d'orchestrazione, GET /api/orchestration/:UUID/tasks"
|
@@ -730,6 +754,9 @@ msgstr "non può avere spazi."
|
|
730
754
|
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
731
755
|
msgstr "definisce uno schema per assegnare gli hostname leggibili dall'utente agli host corrispondenti"
|
732
756
|
|
757
|
+
msgid "documentation"
|
758
|
+
msgstr ""
|
759
|
+
|
733
760
|
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
734
761
|
msgstr "permette di limitare la quantità massima di host con provisioning per regola"
|
735
762
|
|
@@ -779,13 +806,13 @@ msgid "represents rule name shown to the users"
|
|
779
806
|
msgstr "rappresenta il nome della regola da mostrare agli utenti"
|
780
807
|
|
781
808
|
msgid "required if host is managed and custom partition has not been defined"
|
782
|
-
msgstr ""
|
809
|
+
msgstr "necessario se l'host è gestito e la partizione personalizzata non è stata definita"
|
783
810
|
|
784
811
|
msgid "required if host is managed and value is not inherited from host group"
|
785
|
-
msgstr ""
|
812
|
+
msgstr "necessario se l'host è gestito ed il valore non è stato ereditato da un gruppo di host"
|
786
813
|
|
787
814
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
788
|
-
msgstr ""
|
815
|
+
msgstr "necessario se non è disponibile imaged based provisioning e l'host è gestito ed il valore non è stato ereditato dal gruppo di host"
|
789
816
|
|
790
817
|
msgid "required if value is not inherited from host group or default password in settings"
|
791
818
|
msgstr "necessario se il valore non è ereditato da un gruppo di host o password predefinita nelle impostazione"
|
Binary file
|
@@ -4,12 +4,14 @@
|
|
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
|
-
"
|
12
|
-
"
|
12
|
+
"POT-Creation-Date: 2021-05-03 08:46+0200\n"
|
13
|
+
"PO-Revision-Date: 2021-01-25 08:35+0000\n"
|
14
|
+
"Last-Translator: Amit Upadhye <aupadhye@redhat.com>\n"
|
13
15
|
"Language-Team: Japanese (http://www.transifex.com/foreman/foreman/language/ja/"
|
14
16
|
")\n"
|
15
17
|
"MIME-Version: 1.0\n"
|
@@ -56,7 +58,7 @@ msgstr "検出されたホストのプロビジョニング"
|
|
56
58
|
|
57
59
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:54 ../app/controllers/api/v2/discovered_hosts_controller.rb:57 ../app/controllers/api/v2/discovered_hosts_controller.rb:58 ../app/controllers/api/v2/discovered_hosts_controller.rb:61 ../app/controllers/api/v2/discovered_hosts_controller.rb:64
|
58
60
|
msgid "required if host is managed and value is not inherited from host group"
|
59
|
-
msgstr ""
|
61
|
+
msgstr "ホストが管理されており、値がホストグループから継承されていない場合に必須です。"
|
60
62
|
|
61
63
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:55
|
62
64
|
msgid "not required if using a subnet with DHCP proxy"
|
@@ -68,31 +70,31 @@ msgstr "仮想マシンの場合は不要です"
|
|
68
70
|
|
69
71
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:62
|
70
72
|
msgid "required if not imaged based provisioning and host is managed and value is not inherited from host group"
|
71
|
-
msgstr ""
|
73
|
+
msgstr "イメージベースのプロビジョニングでない場合で、ホストが管理されており、値がホストグループから継承されていない場合に必須です。"
|
72
74
|
|
73
75
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:63
|
74
76
|
msgid "required if host is managed and custom partition has not been defined"
|
75
|
-
msgstr ""
|
77
|
+
msgstr "ホストが管理されており、カスタムパーティションが定義されていない場合に必須です。"
|
76
78
|
|
77
79
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:69
|
78
80
|
msgid "Host's owner type"
|
79
|
-
msgstr ""
|
81
|
+
msgstr "ホストの所有者タイプ"
|
80
82
|
|
81
83
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:72
|
82
84
|
msgid "Host's parameters (array or indexed hash)"
|
83
|
-
msgstr ""
|
85
|
+
msgstr "ホストのパラメーター (配列またはインデックス化されたハッシュ)"
|
84
86
|
|
85
87
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:73
|
86
88
|
msgid "Name of the parameter"
|
87
|
-
msgstr ""
|
89
|
+
msgstr "パラメーター名"
|
88
90
|
|
89
91
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:74
|
90
92
|
msgid "Parameter value"
|
91
|
-
msgstr ""
|
93
|
+
msgstr "パラメーター値"
|
92
94
|
|
93
95
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:75
|
94
96
|
msgid "Type of value"
|
95
|
-
msgstr ""
|
97
|
+
msgstr "値のタイプ"
|
96
98
|
|
97
99
|
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:82
|
98
100
|
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
@@ -114,51 +116,51 @@ msgstr "ホストのファクトをアップロードし、必要な場合はホ
|
|
114
116
|
msgid "hash containing facts for the host with minimum set of facts: discovery_bootif, macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in case primary interface is named eth0)"
|
115
117
|
msgstr "ファクトの最小セットが設定されたホストのファクトを含むハッシュ : discovery_bootif、macaddress_eth0、ipaddress、ipaddress_eth0、 interfaces: eth0 (プライマリーインターフェースの名前が eth0 の場合の例)"
|
116
118
|
|
117
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
119
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:130
|
118
120
|
msgid "Execute rules against a discovered host"
|
119
121
|
msgstr "検出されたホストに対するルールの実行"
|
120
122
|
|
121
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
123
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:136 ../app/controllers/discovered_hosts_controller.rb:157
|
122
124
|
msgid "Host %{host} was provisioned with rule %{rule}"
|
123
125
|
msgstr "ホスト %{host} がルール %{rule} でプロビジョニングされています"
|
124
126
|
|
125
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
127
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:139
|
126
128
|
msgid "Unable to provision %{host}: %{errors}"
|
127
129
|
msgstr "%{host} をプロビジョニングできません: %{errors}"
|
128
130
|
|
129
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
131
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:145 ../app/controllers/discovered_hosts_controller.rb:164
|
130
132
|
msgid "No rule found for host %s"
|
131
133
|
msgstr "ホスト %s に対するルールは見つかりません"
|
132
134
|
|
133
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
135
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:152
|
134
136
|
msgid "Execute rules against all currently discovered hosts"
|
135
137
|
msgstr "現在検出されているすべてのホストに対するルールの実行"
|
136
138
|
|
137
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
139
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:156 ../app/controllers/discovered_hosts_controller.rb:170
|
138
140
|
msgid "Errors during auto provisioning: %s"
|
139
141
|
msgstr "自動プロビジョニング時のエラー: %s"
|
140
142
|
|
141
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
143
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:159 ../app/controllers/discovered_hosts_controller.rb:173
|
142
144
|
msgid "No discovered hosts to provision"
|
143
145
|
msgstr "プロビジョニングする検出されたホストがありません"
|
144
146
|
|
145
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
147
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:181
|
146
148
|
msgid "%s discovered hosts were provisioned"
|
147
|
-
msgstr "%s
|
149
|
+
msgstr "検出ホスト %s 台がプロビジョニングされました"
|
148
150
|
|
149
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
151
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:192
|
150
152
|
msgid "Refreshing the facts of a discovered host"
|
151
153
|
msgstr "検出されたホストのファクトの更新中"
|
152
154
|
|
153
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
155
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:201
|
154
156
|
msgid "Rebooting a discovered host"
|
155
157
|
msgstr "検出されたホストの再起動中"
|
156
158
|
|
157
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
159
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:210
|
158
160
|
msgid "Rebooting all discovered hosts"
|
159
161
|
msgstr "すべての検出されたホストの再起動中"
|
160
162
|
|
161
|
-
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:
|
163
|
+
#: ../app/controllers/api/v2/discovered_hosts_controller.rb:221 ../app/controllers/discovered_hosts_controller.rb:126
|
162
164
|
msgid "Discovered hosts are rebooting now"
|
163
165
|
msgstr "検出されたホストの再起動中"
|
164
166
|
|
@@ -238,119 +240,95 @@ msgstr "再起動時のエラー: %s"
|
|
238
240
|
msgid "No discovered hosts to reboot"
|
239
241
|
msgstr "再起動する検出されたホストがありません"
|
240
242
|
|
241
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
243
|
+
#: ../app/controllers/discovered_hosts_controller.rb:60
|
242
244
|
msgid "Successfully provisioned %s"
|
243
245
|
msgstr "%s が正常にプロビジョニングされました"
|
244
246
|
|
245
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
247
|
+
#: ../app/controllers/discovered_hosts_controller.rb:94
|
246
248
|
msgid "Facts refreshed for %s"
|
247
|
-
msgstr "%s
|
249
|
+
msgstr "%s の更新済みファクト"
|
248
250
|
|
249
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
251
|
+
#: ../app/controllers/discovered_hosts_controller.rb:96
|
250
252
|
msgid "Failed to refresh facts for %s"
|
251
253
|
msgstr "%s のファクトの更新に失敗しました"
|
252
254
|
|
253
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
255
|
+
#: ../app/controllers/discovered_hosts_controller.rb:99
|
254
256
|
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
255
|
-
msgstr "%{
|
257
|
+
msgstr "%{error_message} エラーで %{hostname} のファクトの更新に失敗しました"
|
256
258
|
|
257
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
259
|
+
#: ../app/controllers/discovered_hosts_controller.rb:106
|
258
260
|
msgid "Host of type %s can not be rebooted"
|
259
261
|
msgstr "タイプ %s のホストを再起動できません"
|
260
262
|
|
261
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
263
|
+
#: ../app/controllers/discovered_hosts_controller.rb:110
|
262
264
|
msgid "Rebooting host %s"
|
263
|
-
msgstr "ホスト %s
|
265
|
+
msgstr "ホスト %s の再起動"
|
264
266
|
|
265
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
267
|
+
#: ../app/controllers/discovered_hosts_controller.rb:112
|
266
268
|
msgid "Failed to reboot host %s"
|
267
269
|
msgstr "ホスト %s の再起動に失敗しました"
|
268
270
|
|
269
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
271
|
+
#: ../app/controllers/discovered_hosts_controller.rb:115
|
270
272
|
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
271
|
-
msgstr "ホスト %{hostname}
|
273
|
+
msgstr "ホスト %{hostname} は %{error_message} のエラーで再起動に失敗しました"
|
272
274
|
|
273
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
275
|
+
#: ../app/controllers/discovered_hosts_controller.rb:129
|
274
276
|
msgid "Failed to reboot hosts with error %s"
|
275
|
-
msgstr "
|
277
|
+
msgstr "ホストは %s のエラーで再起動に失敗しました"
|
276
278
|
|
277
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
279
|
+
#: ../app/controllers/discovered_hosts_controller.rb:147
|
278
280
|
msgid "Destroyed selected hosts"
|
279
|
-
msgstr "
|
281
|
+
msgstr "破棄済みの選択ホスト"
|
280
282
|
|
281
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
283
|
+
#: ../app/controllers/discovered_hosts_controller.rb:149
|
282
284
|
msgid "The following hosts were not deleted: %s"
|
283
|
-
msgstr "
|
285
|
+
msgstr "以下のホストは削除されませんでした: %s"
|
284
286
|
|
285
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
287
|
+
#: ../app/controllers/discovered_hosts_controller.rb:161
|
286
288
|
msgid "Failed to auto provision host %s: %s"
|
287
289
|
msgstr "ホスト %s の自動プロビジョニングに失敗しました: %s"
|
288
290
|
|
289
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
291
|
+
#: ../app/controllers/discovered_hosts_controller.rb:189
|
290
292
|
msgid "Discovered hosts are provisioning now"
|
291
293
|
msgstr "検出されたホストのプロビジョニング中"
|
292
294
|
|
293
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
294
|
-
msgid "
|
295
|
-
msgstr "
|
296
|
-
|
297
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
298
|
-
msgid "Storage"
|
299
|
-
msgstr "ストレージ"
|
300
|
-
|
301
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
302
|
-
msgid "Hardware"
|
303
|
-
msgstr "ハードウェア"
|
304
|
-
|
305
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
306
|
-
msgid "Network"
|
307
|
-
msgstr "ネットワーク"
|
308
|
-
|
309
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
310
|
-
msgid "Software"
|
311
|
-
msgstr "ソフトウェア"
|
312
|
-
|
313
|
-
#: ../app/controllers/discovered_hosts_controller.rb:226
|
314
|
-
msgid "IPMI"
|
315
|
-
msgstr "IPMI"
|
295
|
+
#: ../app/controllers/discovered_hosts_controller.rb:270
|
296
|
+
msgid "Discovered host reported from unknown subnet, communication will not be proxied."
|
297
|
+
msgstr ""
|
316
298
|
|
317
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
318
|
-
msgid "
|
319
|
-
msgstr "
|
299
|
+
#: ../app/controllers/discovered_hosts_controller.rb:275
|
300
|
+
msgid "Discovered hosts reported from unknown subnet are %s, communication will not be proxied."
|
301
|
+
msgstr ""
|
320
302
|
|
321
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
303
|
+
#: ../app/controllers/discovered_hosts_controller.rb:289
|
322
304
|
msgid "No hosts were found with that id or name"
|
323
305
|
msgstr "該当する ID または名前のホストが見つかりませんでした"
|
324
306
|
|
325
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
307
|
+
#: ../app/controllers/discovered_hosts_controller.rb:293
|
326
308
|
msgid "No hosts selected"
|
327
309
|
msgstr "ホストが選択されていません"
|
328
310
|
|
329
|
-
#: ../app/controllers/discovered_hosts_controller.rb:
|
311
|
+
#: ../app/controllers/discovered_hosts_controller.rb:299
|
330
312
|
msgid "Something went wrong while selecting hosts - %s"
|
331
|
-
msgstr "
|
313
|
+
msgstr "ホストの選択中に問題が発生しました: %s"
|
332
314
|
|
333
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
315
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
334
316
|
msgid "Rule enabled"
|
335
317
|
msgstr "有効にされたルール"
|
336
318
|
|
337
|
-
#: ../app/controllers/discovery_rules_controller.rb:
|
319
|
+
#: ../app/controllers/discovery_rules_controller.rb:79
|
338
320
|
msgid "Rule disabled"
|
339
321
|
msgstr "無効にされたルール"
|
340
322
|
|
341
|
-
#: ../app/helpers/discovered_hosts_helper.rb:
|
342
|
-
msgid "%s ago"
|
343
|
-
msgstr "%s 前"
|
344
|
-
|
345
|
-
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:37
|
323
|
+
#: ../app/helpers/discovered_hosts_helper.rb:14 ../app/helpers/discovered_hosts_helper.rb:29 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:40
|
346
324
|
msgid "Auto Provision"
|
347
325
|
msgstr "自動プロビジョニング"
|
348
326
|
|
349
|
-
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
327
|
+
#: ../app/helpers/discovered_hosts_helper.rb:15 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:41
|
350
328
|
msgid "Refresh facts"
|
351
329
|
msgstr "ファクトの更新"
|
352
330
|
|
353
|
-
#: ../app/helpers/discovered_hosts_helper.rb:16 ../app/helpers/discovered_hosts_helper.rb:30 ../app/models/setting/discovered.rb:24 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
331
|
+
#: ../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
|
354
332
|
msgid "Reboot"
|
355
333
|
msgstr "再起動"
|
356
334
|
|
@@ -362,7 +340,7 @@ msgstr "戻る"
|
|
362
340
|
msgid "Select Action"
|
363
341
|
msgstr "アクションの選択"
|
364
342
|
|
365
|
-
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
343
|
+
#: ../app/helpers/discovered_hosts_helper.rb:23 ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:43
|
366
344
|
msgid "Delete %s?"
|
367
345
|
msgstr "%s を削除しますか?"
|
368
346
|
|
@@ -372,7 +350,7 @@ msgstr "組織の割り当て"
|
|
372
350
|
|
373
351
|
#: ../app/helpers/discovered_hosts_helper.rb:32
|
374
352
|
msgid "Assign Location"
|
375
|
-
msgstr "
|
353
|
+
msgstr "ロケーションの割り当て"
|
376
354
|
|
377
355
|
#: ../app/helpers/discovered_hosts_helper.rb:33
|
378
356
|
msgid "Delete"
|
@@ -380,11 +358,11 @@ msgstr "削除"
|
|
380
358
|
|
381
359
|
#: ../app/helpers/discovered_hosts_helper.rb:37
|
382
360
|
msgid "%s - The following hosts are about to be changed"
|
383
|
-
msgstr "%s
|
361
|
+
msgstr "%s: 以下のホストはまもなく変更されます"
|
384
362
|
|
385
363
|
#: ../app/helpers/discovered_hosts_helper.rb:46 ../app/views/dashboard/_discovery_widget_host.html.erb:2
|
386
364
|
msgid "N/A"
|
387
|
-
msgstr "
|
365
|
+
msgstr "N/A"
|
388
366
|
|
389
367
|
#: ../app/helpers/discovered_hosts_helper.rb:58
|
390
368
|
msgid "New in the last 24 hours"
|
@@ -427,6 +405,10 @@ msgid "Enable rule '%s'?"
|
|
427
405
|
msgstr "ルール '%s' を有効にしますか?"
|
428
406
|
|
429
407
|
#: ../app/helpers/discovery_rules_helper.rb:33
|
408
|
+
msgid "Clone"
|
409
|
+
msgstr ""
|
410
|
+
|
411
|
+
#: ../app/helpers/discovery_rules_helper.rb:34
|
430
412
|
msgid "Delete rule '%s'?"
|
431
413
|
msgstr "ルール '%s' を削除しますか?"
|
432
414
|
|
@@ -450,17 +432,15 @@ msgstr "文字または ERB で開始する必要があります。"
|
|
450
432
|
msgid "must be present."
|
451
433
|
msgstr "必須です。"
|
452
434
|
|
453
|
-
#: ../app/models/discovery_rule.rb:
|
435
|
+
#: ../app/models/discovery_rule.rb:57
|
454
436
|
msgid "Host group organization %s must also be associated to the discovery rule"
|
455
437
|
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
456
|
-
msgstr[0] ""
|
457
|
-
msgstr[1] ""
|
438
|
+
msgstr[0] "ホストグループの組織 %s も検出ルールに関連付ける必要があります"
|
458
439
|
|
459
|
-
#: ../app/models/discovery_rule.rb:
|
440
|
+
#: ../app/models/discovery_rule.rb:61
|
460
441
|
msgid "Host group location %s must also be associated to the discovery rule"
|
461
442
|
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
462
|
-
msgstr[0] ""
|
463
|
-
msgstr[1] ""
|
443
|
+
msgstr[0] "ホストグループの場所 %s も検出ルールに関連付ける必要があります"
|
464
444
|
|
465
445
|
#: ../app/models/host/discovered.rb:40
|
466
446
|
msgid "Fact + prefix"
|
@@ -480,11 +460,11 @@ msgstr "無効なファクトです。ハッシュである必要があります
|
|
480
460
|
|
481
461
|
#: ../app/models/host/discovered.rb:60
|
482
462
|
msgid "Expected discovery_fact '%s' is missing, unable to detect primary interface and set hostname"
|
483
|
-
msgstr "
|
463
|
+
msgstr "必要な discovery_fact '%s' がありません。プライマリーインターフェースの検出やホスト名の設定ができません"
|
484
464
|
|
485
465
|
#: ../app/models/host/discovered.rb:73
|
486
466
|
msgid "Invalid facts: hash does not contain a valid value for any of the facts in the discovery_hostname setting: %s"
|
487
|
-
msgstr "無効なファクト:
|
467
|
+
msgstr "無効なファクト: discovery_hostname 設定の全ファクトで、ハッシュの値は無効です: %s"
|
488
468
|
|
489
469
|
#: ../app/models/host/discovered.rb:100
|
490
470
|
msgid "Facts could not be imported"
|
@@ -496,15 +476,15 @@ msgstr "プロキシー %{url} からファクトを取得できませんでし
|
|
496
476
|
|
497
477
|
#: ../app/models/host/discovered.rb:160
|
498
478
|
msgid "Unable to perform reboot on %{name} (%{url}): %{msg}"
|
499
|
-
msgstr ""
|
479
|
+
msgstr "%{name} の (%{url}) で再起動を実行できません: %{msg}"
|
500
480
|
|
501
481
|
#: ../app/models/host/discovered.rb:164 ../app/models/host/discovered.rb:183
|
502
482
|
msgid "Unable to perform %{action} on %{ips}"
|
503
|
-
msgstr ""
|
483
|
+
msgstr "%{ips} で %{action} を実行できません"
|
504
484
|
|
505
485
|
#: ../app/models/host/discovered.rb:179
|
506
486
|
msgid "Unable to perform kexec on %{name} (%{url}): %{msg}"
|
507
|
-
msgstr ""
|
487
|
+
msgstr "%{name} の (%{url}) で kexec を実行できません: %{msg}"
|
508
488
|
|
509
489
|
#: ../app/models/host/discovered.rb:203
|
510
490
|
msgid "Invalid hostname: Could not normalize the hostname"
|
@@ -720,15 +700,43 @@ msgstr "検出ファクト解析は、非検出ホスト '%{host}' では機能
|
|
720
700
|
|
721
701
|
#: ../app/services/foreman_discovery/fact_parser.rb:6
|
722
702
|
msgid "Discovered host '%{host}' has all NICs filtered out, filter: %{filter}"
|
723
|
-
msgstr "検出ホスト '%{host}'
|
703
|
+
msgstr "検出ホスト '%{host}' では全 NIC がフィルタリングされています。フィルター: %{filter}"
|
724
704
|
|
725
705
|
#: ../app/services/foreman_discovery/fact_parser.rb:12
|
726
706
|
msgid "Unable to find primary NIC with %{mac} specified via '%{fact}', NIC filter: %{filter}"
|
727
|
-
msgstr "%{mac} が
|
707
|
+
msgstr "%{mac} が %{fact} で指定されたプライマリー NIC を見つけることができません。NIC フィルター: %{filter}"
|
708
|
+
|
709
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:7
|
710
|
+
msgid "Highlights"
|
711
|
+
msgstr "ハイライト"
|
712
|
+
|
713
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:8
|
714
|
+
msgid "Storage"
|
715
|
+
msgstr "ストレージ"
|
716
|
+
|
717
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:9
|
718
|
+
msgid "Hardware"
|
719
|
+
msgstr "ハードウェア"
|
720
|
+
|
721
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:10
|
722
|
+
msgid "Network"
|
723
|
+
msgstr "ネットワーク"
|
724
|
+
|
725
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:11
|
726
|
+
msgid "Software"
|
727
|
+
msgstr "ソフトウェア"
|
728
|
+
|
729
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:12
|
730
|
+
msgid "IPMI"
|
731
|
+
msgstr "IPMI"
|
732
|
+
|
733
|
+
#: ../app/services/foreman_discovery/fact_to_category_resolver.rb:13
|
734
|
+
msgid "Miscellaneous"
|
735
|
+
msgstr "その他"
|
728
736
|
|
729
737
|
#: ../app/services/foreman_discovery/host_converter.rb:47
|
730
738
|
msgid "IPAM must be configured for subnet '%s'"
|
731
|
-
msgstr ""
|
739
|
+
msgstr "IPAM はサブネット '%s' 用に設定する必要があります"
|
732
740
|
|
733
741
|
#: ../app/services/foreman_discovery/node_api/node_resource.rb:76
|
734
742
|
msgid "Image API returned HTTP/%{code} with '%{body}"
|
@@ -736,13 +744,16 @@ msgstr "イメージ API で返された HTTP/%{code}: '%{body}"
|
|
736
744
|
|
737
745
|
#: ../app/services/foreman_discovery/node_api/node_resource.rb:79
|
738
746
|
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
739
|
-
msgstr "イメージ API
|
747
|
+
msgstr "イメージ API 処理エラー: %{msg} (HTTP/%{code}、ボディー: %{body})"
|
748
|
+
|
749
|
+
#: ../app/services/foreman_discovery/ui_notifications/new_host.rb:22
|
750
|
+
msgid "Host %s has been dicovered"
|
751
|
+
msgstr ""
|
740
752
|
|
741
753
|
#: ../app/views/dashboard/_discovery_widget.html.erb:5
|
742
754
|
msgid "Discovered Host"
|
743
755
|
msgid_plural "Discovered Hosts"
|
744
|
-
msgstr[0] ""
|
745
|
-
msgstr[1] ""
|
756
|
+
msgstr[0] "検出されたホスト"
|
746
757
|
|
747
758
|
#: ../app/views/dashboard/_discovery_widget.html.erb:9
|
748
759
|
msgid "No discovered hosts available"
|
@@ -752,15 +763,15 @@ msgstr "検出されたホストがありません"
|
|
752
763
|
msgid "Host"
|
753
764
|
msgstr "ホスト"
|
754
765
|
|
755
|
-
#: ../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
|
756
767
|
msgid "Model"
|
757
768
|
msgstr "モデル"
|
758
769
|
|
759
|
-
#: ../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
|
760
771
|
msgid "CPUs"
|
761
772
|
msgstr "CPU"
|
762
773
|
|
763
|
-
#: ../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
|
764
775
|
msgid "Memory"
|
765
776
|
msgstr "メモリー"
|
766
777
|
|
@@ -772,59 +783,59 @@ msgstr "ホストのカスタマイズ"
|
|
772
783
|
msgid "Create Host"
|
773
784
|
msgstr "ホストの作成"
|
774
785
|
|
775
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
786
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
776
787
|
msgid "Select all items in this page"
|
777
788
|
msgstr "このページのすべての項目を選択"
|
778
789
|
|
779
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
790
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:5
|
780
791
|
msgid "items selected. Uncheck to Clear"
|
781
792
|
msgstr "項目が選択されています。クリアするにはチェックを解除してください"
|
782
793
|
|
783
|
-
#: ../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
|
784
795
|
msgid "Name"
|
785
796
|
msgstr "名前"
|
786
797
|
|
787
|
-
#: ../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
|
788
799
|
msgid "IP Address"
|
789
800
|
msgstr "IP アドレス"
|
790
801
|
|
791
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
802
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:11
|
792
803
|
msgid "Disk Count"
|
793
804
|
msgstr "ディスク数"
|
794
805
|
|
795
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
806
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:12
|
796
807
|
msgid "Disks Size"
|
797
808
|
msgstr "ディスクサイズ"
|
798
809
|
|
799
|
-
#: ../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
|
800
811
|
msgid "Location"
|
801
|
-
msgstr "
|
812
|
+
msgstr "ロケーション"
|
802
813
|
|
803
|
-
#: ../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
|
804
815
|
msgid "Organization"
|
805
816
|
msgstr "組織"
|
806
817
|
|
807
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
818
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:18
|
808
819
|
msgid "Subnet"
|
809
820
|
msgstr "サブネット"
|
810
821
|
|
811
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
822
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:19
|
812
823
|
msgid "Last Facts Upload"
|
813
824
|
msgstr "最終ファクトのアップロード"
|
814
825
|
|
815
|
-
#: ../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
|
816
827
|
msgid "Actions"
|
817
828
|
msgstr "アクション"
|
818
829
|
|
819
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
830
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:55
|
820
831
|
msgid "Please Confirm"
|
821
832
|
msgstr "確認してください"
|
822
833
|
|
823
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
834
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:61
|
824
835
|
msgid "Cancel"
|
825
|
-
msgstr "
|
836
|
+
msgstr "取り消し"
|
826
837
|
|
827
|
-
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:
|
838
|
+
#: ../app/views/discovered_hosts/_discovered_hosts_list.html.erb:62
|
828
839
|
msgid "Submit"
|
829
840
|
msgstr "送信"
|
830
841
|
|
@@ -858,7 +869,7 @@ msgstr "タイプ"
|
|
858
869
|
|
859
870
|
#: ../app/views/discovered_hosts/show.html.erb:45
|
860
871
|
msgid "Identifier"
|
861
|
-
msgstr "
|
872
|
+
msgstr "ID"
|
862
873
|
|
863
874
|
#: ../app/views/discovered_hosts/show.html.erb:46
|
864
875
|
msgid "MAC address"
|
@@ -878,11 +889,11 @@ msgstr "Foreman の検出されたホストの概要レポート"
|
|
878
889
|
|
879
890
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:9
|
880
891
|
msgid "<b>Foreman</b> Discovered hosts summary"
|
881
|
-
msgstr "<b>Foreman</b>
|
892
|
+
msgstr "<b>Foreman</b> 検出されたホストの概要"
|
882
893
|
|
883
894
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:10 ../app/views/discovered_mailer/discovered_summary.text.erb:5
|
884
895
|
msgid "Summary from %{time} ago to %{now}"
|
885
|
-
msgstr "%{time}
|
896
|
+
msgstr "%{time} 前から %{now} までの概要"
|
886
897
|
|
887
898
|
#: ../app/views/discovered_mailer/discovered_summary.html.erb:11 ../app/views/discovered_mailer/discovered_summary.text.erb:3
|
888
899
|
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
@@ -922,7 +933,7 @@ msgstr "組織"
|
|
922
933
|
|
923
934
|
#: ../app/views/discovery_rules/_form.html.erb:22
|
924
935
|
msgid "Target host group for this rule with all properties set"
|
925
|
-
msgstr "
|
936
|
+
msgstr "このルールのターゲットホストグループ。全プロパティーを設定しておいてください。"
|
926
937
|
|
927
938
|
#: ../app/views/discovery_rules/_form.html.erb:25
|
928
939
|
msgid "Hostname for provisioned hosts"
|
@@ -934,11 +945,11 @@ msgstr "ホスト制限"
|
|
934
945
|
|
935
946
|
#: ../app/views/discovery_rules/_form.html.erb:26
|
936
947
|
msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
|
937
|
-
msgstr "
|
948
|
+
msgstr "このルールでプロビジョニングする最大ホスト数 (0 = 無制限)"
|
938
949
|
|
939
950
|
#: ../app/views/discovery_rules/_form.html.erb:27
|
940
951
|
msgid "Rule priority (lower integer means higher priority)"
|
941
|
-
msgstr "ルールの優先順位 (
|
952
|
+
msgstr "ルールの優先順位 (整数値が低いほど、優先順位が高い)"
|
942
953
|
|
943
954
|
#: ../app/views/discovery_rules/_template_inline.erb:2
|
944
955
|
msgid "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
|
@@ -954,12 +965,16 @@ msgstr "@host 属性のほかに、ランダムな整数の rand 関数を利用
|
|
954
965
|
|
955
966
|
#: ../app/views/discovery_rules/_template_inline.erb:8
|
956
967
|
msgid "When creating hostname patterns, make sure the resulting host names are unique."
|
957
|
-
msgstr "
|
968
|
+
msgstr "ホスト名パターンの作成時に、生成されるホスト名が一意であることを確認します。"
|
958
969
|
|
959
970
|
#: ../app/views/discovery_rules/_template_inline.erb:9
|
960
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)."
|
961
972
|
msgstr "ホスト名は数字で開始することができません。facter で提供される固有の情報 (MAC アドレス、BIOS またはシリアル ID) を使用することが適切な方法です。"
|
962
973
|
|
974
|
+
#: ../app/views/discovery_rules/clone.erb:1
|
975
|
+
msgid "Clone %s"
|
976
|
+
msgstr ""
|
977
|
+
|
963
978
|
#: ../app/views/discovery_rules/edit.html.erb:1
|
964
979
|
msgid "Edit %s"
|
965
980
|
msgstr "%s の編集"
|
@@ -968,7 +983,7 @@ msgstr "%s の編集"
|
|
968
983
|
msgid "Discovery Rules"
|
969
984
|
msgstr "検出ルール"
|
970
985
|
|
971
|
-
#: ../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
|
972
987
|
msgid "Create Rule"
|
973
988
|
msgstr "ルールの作成"
|
974
989
|
|
@@ -992,7 +1007,7 @@ msgstr "ホストグループ"
|
|
992
1007
|
msgid "Hosts/Limit"
|
993
1008
|
msgstr "ホスト/制限"
|
994
1009
|
|
995
|
-
#: ../app/views/discovery_rules/index.html.erb:
|
1010
|
+
#: ../app/views/discovery_rules/index.html.erb:13
|
996
1011
|
msgid "DiscoveryRule|Enabled"
|
997
1012
|
msgstr "有効化"
|
998
1013
|
|
@@ -1000,6 +1015,10 @@ msgstr "有効化"
|
|
1000
1015
|
msgid "New Discovery Rule"
|
1001
1016
|
msgstr "新規の検出ルール"
|
1002
1017
|
|
1018
|
+
#: ../app/views/discovery_rules/welcome.html.erb:8
|
1019
|
+
msgid "Discovered Rules"
|
1020
|
+
msgstr ""
|
1021
|
+
|
1003
1022
|
#: ../db/seeds.d/50_discovery_templates.rb:5
|
1004
1023
|
msgid "Command line options for kexec during PXE-less provisioning."
|
1005
1024
|
msgstr "PXE なしのプロビジョニング時に使用可能な kexec のコマンドラインオプション"
|
@@ -1009,8 +1028,8 @@ msgid "A summary of discovered hosts"
|
|
1009
1028
|
msgstr "検出されたホストの概要"
|
1010
1029
|
|
1011
1030
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:4
|
1012
|
-
msgid "
|
1013
|
-
msgstr "
|
1031
|
+
msgid "New hosts"
|
1032
|
+
msgstr ""
|
1014
1033
|
|
1015
1034
|
#: ../db/seeds.d/80_discovery_ui_notification.rb:6
|
1016
1035
|
msgid "One or more hosts have been discovered"
|
@@ -1020,43 +1039,54 @@ msgstr "1 つ以上のホストが検出されました"
|
|
1020
1039
|
msgid "Details"
|
1021
1040
|
msgstr "詳細"
|
1022
1041
|
|
1023
|
-
#: ../
|
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
|
1024
1051
|
msgid "Discovery Kexec template"
|
1025
1052
|
msgstr "検出 Kexec テンプレート"
|
1026
1053
|
|
1027
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1054
|
+
#: ../lib/foreman_discovery/engine.rb:185
|
1028
1055
|
msgid "Discovery Proxy"
|
1029
1056
|
msgstr "検出プロキシー"
|
1030
1057
|
|
1031
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1058
|
+
#: ../lib/foreman_discovery/engine.rb:186
|
1032
1059
|
msgid "Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1033
1060
|
msgstr "検出されたホストへの接続を管理するためにこのサブネット内で使用する検出プロキシー"
|
1034
1061
|
|
1035
|
-
#: ../lib/foreman_discovery/engine.rb:
|
1062
|
+
#: ../lib/foreman_discovery/engine.rb:187
|
1036
1063
|
msgid "ID of Discovery Proxy to use within this subnet for managing connection to discovered hosts"
|
1037
1064
|
msgstr "検出されたホストへの接続を管理するためにこのサブネット内で使用する検出プロキシーの ID"
|
1038
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
|
+
|
1039
1074
|
#: action_names.rb:2
|
1040
1075
|
msgid "Remote action:"
|
1041
|
-
msgstr ""
|
1076
|
+
msgstr "リモートアクション:"
|
1042
1077
|
|
1043
1078
|
#: action_names.rb:3
|
1044
1079
|
msgid "Import Puppet classes"
|
1045
|
-
msgstr ""
|
1080
|
+
msgstr "Puppet クラスのインポート"
|
1046
1081
|
|
1047
1082
|
#: action_names.rb:4
|
1048
|
-
msgid "
|
1049
|
-
msgstr ""
|
1083
|
+
msgid "Import facts"
|
1084
|
+
msgstr "ファクトのインポート"
|
1050
1085
|
|
1051
1086
|
#: action_names.rb:5
|
1052
|
-
msgid "
|
1053
|
-
msgstr ""
|
1087
|
+
msgid "Action with sub plans"
|
1088
|
+
msgstr "サブプランによるアクション"
|
1054
1089
|
|
1055
|
-
|
1056
|
-
#~
|
1057
|
-
#~
|
1058
|
-
#~ msgstr "このコンテキストで検出されたホストはありません。"
|
1059
|
-
#~ msgid ""
|
1060
|
-
#~ "This page shows discovered bare-metal or virtual nodes waiting to be provision"
|
1061
|
-
#~ "ed."
|
1062
|
-
#~ msgstr "このページでは、プロビジョニングする予定の検出されたベアメタルまたは仮想ノードを表示しています。"
|
1090
|
+
#: ../app/helpers/discovered_hosts_helper.rb:10
|
1091
|
+
#~ msgid "%s ago"
|
1092
|
+
#~ msgstr "%s 前"
|