foreman_discovery 5.0.0 → 5.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 +41 -51
- data/app/controllers/concerns/foreman/controller/discovered_extensions.rb +20 -23
- data/app/controllers/discovered_hosts_controller.rb +50 -46
- data/app/helpers/concerns/foreman_discovery/settings_helper_extensions.rb +34 -0
- data/app/helpers/discovery_rules_helper.rb +5 -6
- data/app/mailers/discovered_mailer.rb +19 -0
- data/app/models/discovery_rule.rb +3 -3
- data/app/models/host/discovered.rb +33 -11
- data/app/models/host/managed_extensions.rb +10 -0
- data/app/models/hostgroup_extensions.rb +1 -1
- data/app/models/setting/discovered.rb +17 -11
- data/app/services/foreman_discovery/fact_parser.rb +16 -0
- data/app/services/foreman_discovery/host_converter.rb +0 -4
- data/app/services/foreman_discovery/node_api/power.rb +3 -3
- data/app/views/discovered_hosts/_discovered_host.html.erb +4 -2
- data/app/views/discovered_hosts/_discovered_hosts_list.html.erb +1 -1
- data/app/views/discovered_mailer/_discovered_host.html.erb +10 -0
- data/app/views/discovered_mailer/discovered_summary.html.erb +35 -0
- data/app/views/discovered_mailer/discovered_summary.text.erb +24 -0
- data/config/routes.rb +3 -3
- data/db/seeds.d/70_discovery_mail_notification.rb +9 -0
- data/lib/foreman_discovery/engine.rb +12 -9
- 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 +780 -0
- data/locale/ca/foreman_discovery.po +358 -261
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.edit.po +774 -0
- data/locale/de/foreman_discovery.po +418 -311
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.edit.po +779 -0
- data/locale/en_GB/foreman_discovery.po +423 -313
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.edit.po +781 -0
- data/locale/es/foreman_discovery.po +425 -313
- data/locale/foreman_discovery.pot +496 -159
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.edit.po +778 -0
- data/locale/fr/foreman_discovery.po +458 -322
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.edit.po +757 -0
- data/locale/gl/foreman_discovery.po +306 -215
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.edit.po +771 -0
- data/locale/it/foreman_discovery.po +411 -301
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.edit.po +770 -0
- data/locale/ja/foreman_discovery.po +395 -300
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.edit.po +768 -0
- data/locale/ko/foreman_discovery.po +393 -299
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.edit.po +780 -0
- data/locale/pt_BR/foreman_discovery.po +438 -309
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.edit.po +775 -0
- data/locale/ru/foreman_discovery.po +413 -308
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.edit.po +766 -0
- data/locale/sv_SE/foreman_discovery.po +321 -232
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.edit.po +769 -0
- data/locale/zh_CN/foreman_discovery.po +393 -302
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.edit.po +769 -0
- data/locale/zh_TW/foreman_discovery.po +395 -302
- data/test/functional/api/v2/discovered_hosts_controller_test.rb +8 -0
- data/test/functional/api/v2/discovery_rules_controller_test.rb +9 -0
- data/test/functional/discovered_hosts_controller_test.rb +26 -17
- data/test/functional/discovery_rules_controller_test.rb +9 -8
- data/test/test_helper.rb +0 -4
- data/test/test_helper_discovery.rb +24 -0
- data/test/unit/discovered_extensions_test.rb +31 -0
- data/test/unit/discovered_mailer_test.rb +44 -0
- data/test/unit/discovery_attribute_set_test.rb +12 -0
- data/test/unit/discovery_rule_test.rb +20 -0
- data/test/unit/{puppet_fact_parser_extensions_test.rb → fact_parser_test.rb} +3 -16
- data/test/unit/host_discovered_test.rb +56 -11
- metadata +29 -5
- data/app/lib/puppet_fact_parser_extensions.rb +0 -29
@@ -1,509 +1,619 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
2
|
# Copyright (C) 2015 Foreman developers
|
3
3
|
# This file is distributed under the same license as the foreman_discovery package.
|
4
|
-
#
|
4
|
+
#
|
5
5
|
# Translators:
|
6
6
|
# Andi Chandler <andi@gowling.com>, 2015
|
7
|
-
# Dominic Cleal <
|
7
|
+
# Dominic Cleal <dominic@cleal.org>, 2013-2015
|
8
8
|
# Lukáš Zapletal, 2015
|
9
9
|
# Lukáš Zapletal, 2015
|
10
10
|
msgid ""
|
11
11
|
msgstr ""
|
12
|
-
"Project-Id-Version:
|
12
|
+
"Project-Id-Version: Foreman\n"
|
13
13
|
"Report-Msgid-Bugs-To: foreman-dev@googlegroups.com\n"
|
14
|
-
"
|
15
|
-
"
|
16
|
-
"
|
17
|
-
"
|
14
|
+
"PO-Revision-Date: 2015-12-27 01:18+0000\n"
|
15
|
+
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
|
16
|
+
"Language-Team: English (United Kingdom) (http://www.transifex.com/foreman/fore"
|
17
|
+
"man/language/en_GB/)\n"
|
18
18
|
"MIME-Version: 1.0\n"
|
19
19
|
"Content-Type: text/plain; charset=UTF-8\n"
|
20
20
|
"Content-Transfer-Encoding: 8bit\n"
|
21
21
|
"Language: en_GB\n"
|
22
22
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
23
23
|
|
24
|
-
msgid "
|
25
|
-
msgstr "
|
24
|
+
msgid "List all discovered hosts"
|
25
|
+
msgstr "List all discovered hosts"
|
26
26
|
|
27
|
-
msgid "
|
28
|
-
msgstr "
|
27
|
+
msgid "filter results"
|
28
|
+
msgstr "filter results"
|
29
29
|
|
30
|
-
msgid "
|
31
|
-
msgstr ""
|
30
|
+
msgid "sort results"
|
31
|
+
msgstr "sort results"
|
32
32
|
|
33
|
-
msgid "
|
34
|
-
msgstr "
|
33
|
+
msgid "paginate results"
|
34
|
+
msgstr "paginate results"
|
35
35
|
|
36
|
-
msgid "
|
37
|
-
msgstr "
|
36
|
+
msgid "number of entries per request"
|
37
|
+
msgstr "number of entries per request"
|
38
38
|
|
39
|
-
msgid "
|
40
|
-
msgstr "
|
39
|
+
msgid "Show a discovered host"
|
40
|
+
msgstr "Show a discovered host"
|
41
41
|
|
42
|
-
msgid "
|
43
|
-
msgstr "
|
42
|
+
msgid "Create a discovered host for testing (use /facts to create new hosts)"
|
43
|
+
msgstr "Create a discovered host for testing (use /facts to create new hosts)"
|
44
44
|
|
45
|
-
msgid "
|
46
|
-
msgstr "
|
45
|
+
msgid "Provision a discovered host"
|
46
|
+
msgstr "Provision a discovered host"
|
47
47
|
|
48
|
-
msgid ""
|
49
|
-
"
|
50
|
-
"provisioning rules"
|
51
|
-
msgstr "Automatically provision newly discovered hosts, according to the provisioning rules"
|
48
|
+
msgid "not required if using a subnet with DHCP proxy"
|
49
|
+
msgstr "not required if using a subnet with DHCP proxy"
|
52
50
|
|
53
|
-
msgid "
|
54
|
-
msgstr ""
|
51
|
+
msgid "not required if it's a virtual machine"
|
52
|
+
msgstr "not required if it's a virtual machine"
|
55
53
|
|
56
|
-
msgid "
|
57
|
-
msgstr "
|
54
|
+
msgid "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
55
|
+
msgstr "UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
58
56
|
|
59
|
-
msgid "
|
60
|
-
|
57
|
+
msgid ""
|
58
|
+
"required if value is not inherited from host group or default password in sett"
|
59
|
+
"ings"
|
60
|
+
msgstr ""
|
61
|
+
"required if value is not inherited from host group or default password in sett"
|
62
|
+
"ings"
|
61
63
|
|
62
|
-
msgid "
|
63
|
-
msgstr "
|
64
|
+
msgid "Delete a discovered host"
|
65
|
+
msgstr "Delete a discovered host"
|
64
66
|
|
65
|
-
msgid "
|
66
|
-
msgstr ""
|
67
|
+
msgid "Upload facts for a host, creating the host if required"
|
68
|
+
msgstr "Upload facts for a host, creating the host if required"
|
67
69
|
|
68
|
-
msgid "
|
69
|
-
|
70
|
+
msgid ""
|
71
|
+
"hash containing facts for the host with minimum set of facts: discovery_bootif"
|
72
|
+
", macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in cas"
|
73
|
+
"e primary interface is named eth0)"
|
74
|
+
msgstr ""
|
75
|
+
"hash containing facts for the host with minimum set of facts: discovery_bootif"
|
76
|
+
", macaddress_eth0, ipaddress, ipaddress_eth0, interfaces: eth0 (example in cas"
|
77
|
+
"e primary interface is named eth0)"
|
70
78
|
|
71
|
-
msgid "
|
72
|
-
msgstr "
|
79
|
+
msgid "Execute rules against a discovered host"
|
80
|
+
msgstr "Execute rules against a discovered host"
|
73
81
|
|
74
|
-
msgid "
|
75
|
-
msgstr "
|
82
|
+
msgid "Host %{host} was provisioned with rule %{rule}"
|
83
|
+
msgstr "Host %{host} was provisioned with rule %{rule}"
|
76
84
|
|
77
|
-
msgid "
|
78
|
-
msgstr "
|
85
|
+
msgid "Unable to provision %{host}: %{errors}"
|
86
|
+
msgstr "Unable to provision %{host}: %{errors}"
|
79
87
|
|
80
|
-
msgid "
|
81
|
-
msgstr "
|
88
|
+
msgid "No rule found for host %s"
|
89
|
+
msgstr "No rule found for host %s"
|
82
90
|
|
83
|
-
msgid "
|
84
|
-
msgstr "
|
91
|
+
msgid "Execute rules against all currently discovered hosts"
|
92
|
+
msgstr "Execute rules against all currently discovered hosts"
|
85
93
|
|
86
|
-
msgid "
|
87
|
-
msgstr "
|
94
|
+
msgid "Errors during auto provisioning: %s"
|
95
|
+
msgstr "Errors during auto provisioning: %s"
|
88
96
|
|
89
|
-
msgid "
|
90
|
-
msgstr "
|
97
|
+
msgid "No discovered hosts to provision"
|
98
|
+
msgstr "No discovered hosts to provision"
|
91
99
|
|
92
|
-
msgid "
|
93
|
-
msgstr "
|
100
|
+
msgid "%s discovered hosts were provisioned"
|
101
|
+
msgstr "%s discovered hosts were provisioned"
|
94
102
|
|
95
|
-
msgid "
|
96
|
-
msgstr "
|
103
|
+
msgid "Refreshing the facts of a discovered host"
|
104
|
+
msgstr "Refreshing the facts of a discovered host"
|
97
105
|
|
98
|
-
msgid "
|
99
|
-
msgstr "
|
106
|
+
msgid "Rebooting a discovered host"
|
107
|
+
msgstr "Rebooting a discovered host"
|
100
108
|
|
101
|
-
msgid "
|
102
|
-
msgstr "
|
109
|
+
msgid "Rebooting all discovered hosts"
|
110
|
+
msgstr "Rebooting all discovered hosts"
|
103
111
|
|
104
112
|
msgid "Discovered hosts are rebooting now"
|
105
|
-
msgstr ""
|
113
|
+
msgstr "Discovered hosts are rebooting now"
|
106
114
|
|
107
|
-
msgid "
|
108
|
-
msgstr "
|
115
|
+
msgid "List all discovery rules"
|
116
|
+
msgstr "List all discovery rules"
|
109
117
|
|
110
|
-
msgid "
|
111
|
-
msgstr "
|
118
|
+
msgid "Show a discovery rule"
|
119
|
+
msgstr "Show a discovery rule"
|
112
120
|
|
113
|
-
msgid "
|
114
|
-
msgstr "
|
121
|
+
msgid "represents rule name shown to the users"
|
122
|
+
msgstr "represents rule name shown to the users"
|
115
123
|
|
116
|
-
msgid "
|
117
|
-
msgstr "
|
124
|
+
msgid "query to match discovered hosts for the particular rule"
|
125
|
+
msgstr "query to match discovered hosts for the particular rule"
|
118
126
|
|
119
|
-
msgid "
|
120
|
-
msgstr "
|
127
|
+
msgid "the hostgroup that is used to auto provision a host"
|
128
|
+
msgstr "the hostgroup that is used to auto provision a host"
|
121
129
|
|
122
|
-
msgid "
|
123
|
-
msgstr "
|
130
|
+
msgid "defines a pattern to assign human-readable hostnames to the matching hosts"
|
131
|
+
msgstr "defines a pattern to assign human-readable hostnames to the matching hosts"
|
124
132
|
|
125
|
-
msgid "
|
126
|
-
msgstr "
|
133
|
+
msgid "enables to limit maximum amount of provisioned hosts per rule"
|
134
|
+
msgstr "enables to limit maximum amount of provisioned hosts per rule"
|
127
135
|
|
128
|
-
msgid ""
|
129
|
-
"
|
130
|
-
"be used when left blank. In addition to @host attribute function rand for "
|
131
|
-
"random integers is available. Examples:"
|
132
|
-
msgstr "Domain will be appended automatically. A hostname based on MAC address will be used when left blank. In addition to @host attribute function rand for random integers is available. Examples:"
|
136
|
+
msgid "puts the rules in order, low numbers go first. Must be greater then zero"
|
137
|
+
msgstr "puts the rules in order, low numbers go first. Must be greater then zero"
|
133
138
|
|
134
|
-
msgid "
|
135
|
-
msgstr "
|
139
|
+
msgid "flag is used for temporary shutdown of rules"
|
140
|
+
msgstr "flag is used for temporary shutdown of rules"
|
136
141
|
|
137
|
-
msgid "
|
138
|
-
msgstr "
|
142
|
+
msgid "Create a discovery rule"
|
143
|
+
msgstr "Create a discovery rule"
|
139
144
|
|
140
|
-
msgid "
|
141
|
-
msgstr "
|
145
|
+
msgid "Update a rule"
|
146
|
+
msgstr "Update a rule"
|
142
147
|
|
143
|
-
msgid "
|
144
|
-
msgstr "
|
148
|
+
msgid "Delete a rule"
|
149
|
+
msgstr "Delete a rule"
|
145
150
|
|
146
|
-
msgid "
|
151
|
+
msgid "Unable to find a discovery rule, no host provided (check permissions)"
|
152
|
+
msgstr "Unable to find a discovery rule, no host provided (check permissions)"
|
153
|
+
|
154
|
+
msgid "No hostgroup associated with rule '%s'"
|
147
155
|
msgstr ""
|
148
156
|
|
149
|
-
msgid "
|
150
|
-
msgstr "
|
157
|
+
msgid "Errors during reboot: %s"
|
158
|
+
msgstr "Errors during reboot: %s"
|
151
159
|
|
152
|
-
msgid "
|
153
|
-
msgstr "
|
160
|
+
msgid "No discovered hosts to reboot"
|
161
|
+
msgstr "No discovered hosts to reboot"
|
154
162
|
|
155
|
-
msgid ""
|
156
|
-
"
|
157
|
-
"and set hostname"
|
158
|
-
msgstr ""
|
163
|
+
msgid "Facts refreshed for %s"
|
164
|
+
msgstr "Facts refreshed for %s"
|
159
165
|
|
160
|
-
msgid "
|
166
|
+
msgid "Failed to refresh facts for %s"
|
167
|
+
msgstr "Failed to refresh facts for %s"
|
168
|
+
|
169
|
+
msgid "Failed to refresh facts for %{hostname} with error %{error_message}"
|
161
170
|
msgstr ""
|
162
171
|
|
163
|
-
msgid "
|
164
|
-
msgstr "
|
172
|
+
msgid "Host of type %s can not be rebooted"
|
173
|
+
msgstr "Host of type %s can not be rebooted"
|
174
|
+
|
175
|
+
msgid "Rebooting host %s"
|
176
|
+
msgstr "Rebooting host %s"
|
165
177
|
|
166
|
-
msgid "
|
178
|
+
msgid "Failed to reboot host %s"
|
179
|
+
msgstr "Failed to reboot host %s"
|
180
|
+
|
181
|
+
msgid "Failed to reboot host %{hostname} with error %{error_message}"
|
182
|
+
msgstr "Failed to reboot host %{hostname} with error %{error_message}"
|
183
|
+
|
184
|
+
msgid "Failed to reboot hosts with error %s"
|
167
185
|
msgstr ""
|
168
186
|
|
169
|
-
msgid "
|
170
|
-
msgstr "
|
187
|
+
msgid "Destroyed selected hosts"
|
188
|
+
msgstr "Destroyed selected hosts"
|
171
189
|
|
172
|
-
msgid "
|
173
|
-
msgstr "
|
190
|
+
msgid "The following hosts were not deleted: %s"
|
191
|
+
msgstr "The following hosts were not deleted: %s"
|
174
192
|
|
175
193
|
msgid "Failed to auto provision host %s: %s"
|
176
194
|
msgstr "Failed to auto provision host %s: %s"
|
177
195
|
|
178
|
-
msgid "
|
179
|
-
msgstr "
|
196
|
+
msgid "Discovered hosts are provisioning now"
|
197
|
+
msgstr "Discovered hosts are provisioning now"
|
180
198
|
|
181
|
-
msgid "
|
182
|
-
msgstr "
|
199
|
+
msgid "No hosts were found with that id or name"
|
200
|
+
msgstr "No hosts were found with that id or name"
|
183
201
|
|
184
|
-
msgid "
|
185
|
-
msgstr "
|
202
|
+
msgid "No hosts selected"
|
203
|
+
msgstr "No hosts selected"
|
186
204
|
|
187
|
-
msgid "
|
188
|
-
msgstr "
|
205
|
+
msgid "Something went wrong while selecting hosts - %s"
|
206
|
+
msgstr "Something went wrong while selecting hosts - %s"
|
189
207
|
|
190
|
-
msgid "
|
191
|
-
msgstr "
|
208
|
+
msgid "Rule disabled"
|
209
|
+
msgstr "Rule disabled"
|
192
210
|
|
193
|
-
msgid "
|
194
|
-
msgstr "
|
211
|
+
msgid "Rule enabled"
|
212
|
+
msgstr "Rule enabled"
|
195
213
|
|
196
|
-
msgid "
|
197
|
-
|
198
|
-
"Host group locations %s must also be associated to the discovery rule"
|
199
|
-
msgstr[0] ""
|
200
|
-
msgstr[1] ""
|
214
|
+
msgid "%s ago"
|
215
|
+
msgstr "%s ago"
|
201
216
|
|
202
|
-
msgid ""
|
203
|
-
|
204
|
-
msgid_plural ""
|
205
|
-
"Host group organizations %s must also be associated to the discovery rule"
|
206
|
-
msgstr[0] "Host group organisation %s must also be associated to the discovery rule"
|
207
|
-
msgstr[1] "Host group organisations %s must also be associated to the discovery rule"
|
217
|
+
msgid "Provision"
|
218
|
+
msgstr "Provision"
|
208
219
|
|
209
|
-
msgid "
|
210
|
-
msgstr "
|
220
|
+
msgid "Auto Provision"
|
221
|
+
msgstr "Auto Provision"
|
211
222
|
|
212
|
-
msgid "
|
213
|
-
msgstr "
|
223
|
+
msgid "Refresh facts"
|
224
|
+
msgstr "Refresh facts"
|
214
225
|
|
215
|
-
msgid "
|
216
|
-
msgstr "
|
226
|
+
msgid "Reboot"
|
227
|
+
msgstr "Reboot"
|
217
228
|
|
218
|
-
msgid "
|
219
|
-
msgstr "
|
229
|
+
msgid "Back"
|
230
|
+
msgstr ""
|
220
231
|
|
221
|
-
msgid "
|
222
|
-
msgstr "
|
232
|
+
msgid "Select Action"
|
233
|
+
msgstr "Select Action"
|
223
234
|
|
224
|
-
msgid "
|
235
|
+
msgid "Expand All"
|
225
236
|
msgstr ""
|
226
237
|
|
227
|
-
msgid "
|
238
|
+
msgid "Delete"
|
239
|
+
msgstr "Delete"
|
240
|
+
|
241
|
+
msgid "Are you sure?"
|
242
|
+
msgstr "Are you sure?"
|
243
|
+
|
244
|
+
msgid "Delete hosts"
|
245
|
+
msgstr "Delete hosts"
|
246
|
+
|
247
|
+
msgid "Assign Organization"
|
248
|
+
msgstr "Assign Organisation"
|
249
|
+
|
250
|
+
msgid "Assign Location"
|
251
|
+
msgstr "Assign Location"
|
252
|
+
|
253
|
+
msgid "%s - The following hosts are about to be changed"
|
254
|
+
msgstr "%s - The following hosts are about to be changed"
|
255
|
+
|
256
|
+
msgid "N/A"
|
257
|
+
msgstr "N/A"
|
258
|
+
|
259
|
+
msgid "New in the last 24 hours"
|
260
|
+
msgstr "New in the last 24 hours"
|
261
|
+
|
262
|
+
msgid "Not reported in more than 7 days"
|
263
|
+
msgstr "Not reported in more than 7 days"
|
264
|
+
|
265
|
+
msgid "Reported in the last 7 days"
|
266
|
+
msgstr "Reported in the last 7 days"
|
267
|
+
|
268
|
+
msgid "Discovered Hosts"
|
228
269
|
msgstr ""
|
229
270
|
|
230
|
-
msgid "
|
271
|
+
msgid "Associated Hosts"
|
231
272
|
msgstr ""
|
232
273
|
|
233
|
-
msgid "
|
234
|
-
msgstr "
|
274
|
+
msgid "Disable rule '%s'?"
|
275
|
+
msgstr ""
|
235
276
|
|
236
|
-
msgid "
|
237
|
-
msgstr "
|
277
|
+
msgid "Disable"
|
278
|
+
msgstr "Disable"
|
238
279
|
|
239
|
-
msgid "
|
240
|
-
msgstr "
|
280
|
+
msgid "Enable"
|
281
|
+
msgstr "Enable"
|
241
282
|
|
242
|
-
msgid "
|
243
|
-
msgstr "
|
283
|
+
msgid "Enable rule '%s'?"
|
284
|
+
msgstr ""
|
244
285
|
|
245
|
-
msgid "
|
246
|
-
msgstr "
|
286
|
+
msgid "Delete rule '%s'?"
|
287
|
+
msgstr ""
|
247
288
|
|
248
|
-
msgid "
|
289
|
+
msgid "Must specify a user with email enabled"
|
249
290
|
msgstr ""
|
250
291
|
|
251
|
-
msgid "
|
252
|
-
msgstr "
|
292
|
+
msgid "Discovered hosts summary"
|
293
|
+
msgstr ""
|
253
294
|
|
254
|
-
msgid "
|
255
|
-
msgstr "
|
295
|
+
msgid "can't contain white spaces."
|
296
|
+
msgstr "can't contain white spaces."
|
256
297
|
|
257
|
-
msgid "
|
258
|
-
msgstr "
|
298
|
+
msgid "must start with a letter or ERB."
|
299
|
+
msgstr "must start with a letter or ERB."
|
259
300
|
|
260
|
-
msgid "
|
261
|
-
|
301
|
+
msgid "Host group organization %s must also be associated to the discovery rule"
|
302
|
+
msgid_plural "Host group organizations %s must also be associated to the discovery rule"
|
303
|
+
msgstr[0] "Host group organisation %s must also be associated to the discovery rule"
|
304
|
+
msgstr[1] "Host group organisations %s must also be associated to the discovery rule"
|
262
305
|
|
263
|
-
msgid "
|
264
|
-
|
306
|
+
msgid "Host group location %s must also be associated to the discovery rule"
|
307
|
+
msgid_plural "Host group locations %s must also be associated to the discovery rule"
|
308
|
+
msgstr[0] "Host group location %s must also be associated to the discovery rule"
|
309
|
+
msgstr[1] "Host group locations %s must also be associated to the discovery rule"
|
265
310
|
|
266
|
-
msgid "
|
267
|
-
msgstr "
|
311
|
+
msgid "Invalid facts, must be a Hash"
|
312
|
+
msgstr "Invalid facts, must be a Hash"
|
313
|
+
|
314
|
+
msgid ""
|
315
|
+
"Expected discovery_fact '%s' is missing, unable to detect primary interface an"
|
316
|
+
"d set hostname"
|
317
|
+
msgstr ""
|
318
|
+
"Expected discovery_fact '%s' is missing, unable to detect primary interface an"
|
319
|
+
"d set hostname"
|
320
|
+
|
321
|
+
msgid ""
|
322
|
+
"Invalid facts: hash does not contain a valid value for any of the facts in the"
|
323
|
+
" discovery_hostname setting: %s"
|
324
|
+
msgstr ""
|
325
|
+
|
326
|
+
msgid "Unable to assign subnet, primary interface is missing IP address"
|
327
|
+
msgstr "Unable to assign subnet, primary interface is missing IP address"
|
328
|
+
|
329
|
+
msgid "Could not get facts from proxy %{url}: %{error}"
|
330
|
+
msgstr "Could not get facts from proxy %{url}: %{error}"
|
331
|
+
|
332
|
+
msgid "Unable to reboot %{name} via %{url}: %{msg}"
|
333
|
+
msgstr "Unable to reboot %{name} via %{url}: %{msg}"
|
268
334
|
|
269
|
-
msgid "
|
270
|
-
msgstr "
|
335
|
+
msgid "Unable to perform kexec on %{name} via %{url}: %{msg}"
|
336
|
+
msgstr "Unable to perform kexec on %{name} via %{url}: %{msg}"
|
271
337
|
|
272
|
-
msgid "
|
338
|
+
msgid "Invalid hostname: Could not normalize the hostname"
|
273
339
|
msgstr ""
|
274
340
|
|
275
|
-
msgid "
|
276
|
-
msgstr "
|
341
|
+
msgid "Reloading kernel on %s"
|
342
|
+
msgstr "Reloading kernel on %s"
|
277
343
|
|
278
|
-
msgid "
|
279
|
-
msgstr "
|
344
|
+
msgid "Rebooting %s"
|
345
|
+
msgstr "Rebooting %s"
|
280
346
|
|
281
|
-
msgid "
|
347
|
+
msgid "Operating system not set for host/hostgroup"
|
282
348
|
msgstr ""
|
283
349
|
|
284
|
-
msgid "
|
285
|
-
msgstr "
|
350
|
+
msgid "Medium not set for host/hostgroup"
|
351
|
+
msgstr ""
|
286
352
|
|
287
|
-
msgid "
|
288
|
-
msgstr "
|
353
|
+
msgid "Kexec template not associated with operating system"
|
354
|
+
msgstr ""
|
289
355
|
|
290
|
-
msgid "
|
291
|
-
msgstr "
|
356
|
+
msgid "Fact name to use for primary interface detection"
|
357
|
+
msgstr ""
|
292
358
|
|
293
|
-
msgid "
|
359
|
+
msgid "List of facts to use for the hostname (separated by comma, first wins)"
|
294
360
|
msgstr ""
|
295
361
|
|
296
|
-
msgid "
|
297
|
-
|
362
|
+
msgid ""
|
363
|
+
"Automatically provision newly discovered hosts, according to the provisioning "
|
364
|
+
"rules"
|
365
|
+
msgstr ""
|
366
|
+
"Automatically provision newly discovered hosts, according to the provisioning "
|
367
|
+
"rules"
|
298
368
|
|
299
|
-
msgid "
|
300
|
-
msgstr "
|
369
|
+
msgid "Automatically reboot discovered host during provisioning"
|
370
|
+
msgstr "Automatically reboot discovered host during provisioning"
|
301
371
|
|
302
|
-
msgid "
|
303
|
-
msgstr "
|
372
|
+
msgid "The default prefix to use for the host name, must start with a letter"
|
373
|
+
msgstr "The default prefix to use for the host name, must start with a letter"
|
304
374
|
|
305
|
-
msgid "
|
306
|
-
msgstr ""
|
375
|
+
msgid "Extra facter columns to show in host lists (separate by comma)"
|
376
|
+
msgstr "Extra facter columns to show in host lists (separate by comma)"
|
307
377
|
|
308
|
-
msgid "
|
309
|
-
msgstr "
|
378
|
+
msgid "The default location to place discovered hosts in"
|
379
|
+
msgstr "The default location to place discovered hosts in"
|
310
380
|
|
311
|
-
msgid "
|
312
|
-
msgstr "
|
381
|
+
msgid "The default organization to place discovered hosts in"
|
382
|
+
msgstr "The default organisation to place discovered hosts in"
|
313
383
|
|
314
|
-
msgid "
|
315
|
-
msgstr "
|
384
|
+
msgid "Regex to organize facts for highlights section"
|
385
|
+
msgstr ""
|
316
386
|
|
317
|
-
msgid "
|
387
|
+
msgid "Regex to organize facts for storage section"
|
318
388
|
msgstr ""
|
319
389
|
|
320
|
-
msgid "
|
321
|
-
msgstr "
|
390
|
+
msgid "Regex to organize facts for software section"
|
391
|
+
msgstr ""
|
322
392
|
|
323
|
-
msgid "
|
324
|
-
msgstr "
|
393
|
+
msgid "Regex to organize facts for hardware section"
|
394
|
+
msgstr ""
|
325
395
|
|
326
|
-
msgid "
|
396
|
+
msgid "Regex to organize facts for network section"
|
327
397
|
msgstr ""
|
328
398
|
|
329
|
-
msgid "
|
330
|
-
msgstr "
|
399
|
+
msgid "Regex to organize facts for ipmi section"
|
400
|
+
msgstr ""
|
331
401
|
|
332
|
-
msgid "
|
333
|
-
|
402
|
+
msgid ""
|
403
|
+
"Unable to detect primary interface using MAC '%{mac}' specified by discovery_f"
|
404
|
+
"act '%{fact}'"
|
405
|
+
msgstr ""
|
406
|
+
"Unable to detect primary interface using MAC '%{mac}' specified by discovery_f"
|
407
|
+
"act '%{fact}'"
|
334
408
|
|
335
|
-
msgid "
|
336
|
-
msgstr "
|
409
|
+
msgid "Image API returned HTTP/%{code} with '%{body}"
|
410
|
+
msgstr "Image API returned HTTP/%{code} with '%{body}"
|
337
411
|
|
338
|
-
msgid "
|
339
|
-
msgstr ""
|
412
|
+
msgid "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
413
|
+
msgstr "Image API processing error: %{msg} (HTTP/%{code}, body: %{body})"
|
340
414
|
|
341
|
-
msgid "
|
342
|
-
msgstr ""
|
415
|
+
msgid "No discovered hosts available"
|
416
|
+
msgstr "No discovered hosts available"
|
343
417
|
|
344
|
-
msgid "
|
345
|
-
msgstr "
|
418
|
+
msgid "Host"
|
419
|
+
msgstr "Host"
|
346
420
|
|
347
|
-
msgid "
|
348
|
-
msgstr "
|
421
|
+
msgid "Model"
|
422
|
+
msgstr "Model"
|
349
423
|
|
350
|
-
msgid "
|
351
|
-
msgstr "
|
424
|
+
msgid "CPUs"
|
425
|
+
msgstr "CPUs"
|
352
426
|
|
353
|
-
msgid "
|
354
|
-
msgstr "
|
427
|
+
msgid "Memory"
|
428
|
+
msgstr "Memory"
|
429
|
+
|
430
|
+
msgid "Discovered hosts"
|
431
|
+
msgstr "Discovered hosts"
|
432
|
+
|
433
|
+
msgid "items selected. Uncheck to Clear"
|
434
|
+
msgstr "items selected. Uncheck to Clear"
|
355
435
|
|
356
436
|
msgid "Select all items in this page"
|
357
437
|
msgstr "Select all items in this page"
|
358
438
|
|
359
|
-
msgid "
|
360
|
-
msgstr "
|
361
|
-
|
362
|
-
msgid "Select organization"
|
363
|
-
msgstr "Select organisation"
|
439
|
+
msgid "Name"
|
440
|
+
msgstr "Name"
|
364
441
|
|
365
|
-
msgid "
|
366
|
-
msgstr "
|
442
|
+
msgid "IP Address"
|
443
|
+
msgstr "IP Address"
|
367
444
|
|
368
|
-
msgid "
|
369
|
-
msgstr "
|
445
|
+
msgid "Disk count"
|
446
|
+
msgstr "Disk count"
|
370
447
|
|
371
|
-
msgid "
|
372
|
-
msgstr "
|
448
|
+
msgid "Disks size"
|
449
|
+
msgstr "Disks size"
|
373
450
|
|
374
|
-
msgid ""
|
375
|
-
|
376
|
-
"Provisioning Templates (ERB)."
|
377
|
-
msgstr "Specify target hostname template pattern in the same syntax as in Provisioning Templates (ERB)."
|
451
|
+
msgid "Location"
|
452
|
+
msgstr "Location"
|
378
453
|
|
379
|
-
msgid "
|
380
|
-
msgstr "
|
454
|
+
msgid "Organization"
|
455
|
+
msgstr "Organisation"
|
381
456
|
|
382
457
|
msgid "Subnet"
|
383
458
|
msgstr "Subnet"
|
384
459
|
|
385
|
-
msgid "
|
386
|
-
msgstr "
|
460
|
+
msgid "Last facts upload"
|
461
|
+
msgstr "Last facts upload"
|
387
462
|
|
388
|
-
msgid "
|
389
|
-
msgstr "
|
463
|
+
msgid "Delete %s?"
|
464
|
+
msgstr "Delete %s?"
|
390
465
|
|
391
|
-
msgid "
|
392
|
-
msgstr "
|
466
|
+
msgid "Please Confirm"
|
467
|
+
msgstr "Please Confirm"
|
393
468
|
|
394
|
-
msgid "
|
395
|
-
msgstr "
|
469
|
+
msgid "Cancel"
|
470
|
+
msgstr "Cancel"
|
396
471
|
|
397
|
-
msgid "
|
398
|
-
msgstr "
|
472
|
+
msgid "Submit"
|
473
|
+
msgstr "Submit"
|
399
474
|
|
400
|
-
msgid "
|
401
|
-
msgstr "
|
475
|
+
msgid "Reboot All"
|
476
|
+
msgstr "Reboot All"
|
402
477
|
|
403
|
-
msgid ""
|
404
|
-
"
|
405
|
-
|
406
|
-
|
478
|
+
msgid "Auto Provision All"
|
479
|
+
msgstr "Auto Provision All"
|
480
|
+
|
481
|
+
msgid "Warning"
|
482
|
+
msgstr "Warning"
|
407
483
|
|
408
484
|
msgid ""
|
409
|
-
"
|
410
|
-
|
485
|
+
"This might take a while, as all hosts, facts and reports will be destroyed as "
|
486
|
+
"well"
|
487
|
+
msgstr ""
|
488
|
+
"This might take a while, as all hosts, facts and reports will be destroyed as "
|
489
|
+
"well"
|
411
490
|
|
412
|
-
msgid "
|
491
|
+
msgid "Select location"
|
492
|
+
msgstr "Select location"
|
493
|
+
|
494
|
+
msgid "Select organization"
|
495
|
+
msgstr "Select organisation"
|
496
|
+
|
497
|
+
msgid "Discovered host: %s"
|
498
|
+
msgstr "Discovered host: %s"
|
499
|
+
|
500
|
+
msgid "Identifier"
|
413
501
|
msgstr ""
|
414
502
|
|
415
|
-
msgid ""
|
416
|
-
"Unable to detect primary interface using MAC '%{mac}' specified by "
|
417
|
-
"discovery_fact '%{fact}'"
|
503
|
+
msgid "MAC address"
|
418
504
|
msgstr ""
|
419
505
|
|
420
|
-
msgid "
|
506
|
+
msgid "IP address"
|
421
507
|
msgstr ""
|
422
508
|
|
423
|
-
msgid "
|
509
|
+
msgid "Summary report for discovered hosts from Foreman"
|
424
510
|
msgstr ""
|
425
511
|
|
426
|
-
msgid "
|
512
|
+
msgid "<b>Foreman</b> Discovered hosts summary"
|
427
513
|
msgstr ""
|
428
514
|
|
429
|
-
msgid "
|
515
|
+
msgid "Summary from %{time} ago to %{now}"
|
430
516
|
msgstr ""
|
431
517
|
|
432
|
-
msgid "
|
433
|
-
msgstr "
|
518
|
+
msgid "Discovered hosts from Foreman server at %{foreman_url}"
|
519
|
+
msgstr ""
|
434
520
|
|
435
|
-
msgid "
|
436
|
-
msgstr "
|
521
|
+
msgid "No discovered hosts for the selected period"
|
522
|
+
msgstr ""
|
437
523
|
|
438
|
-
msgid "
|
439
|
-
msgstr "
|
524
|
+
msgid "Foreman discovered hosts summary"
|
525
|
+
msgstr ""
|
440
526
|
|
441
|
-
msgid "
|
442
|
-
msgstr "
|
527
|
+
msgid "No new discovered hosts for this period"
|
528
|
+
msgstr ""
|
443
529
|
|
444
|
-
msgid ""
|
445
|
-
|
446
|
-
"unique. Hostnames must not start with numbers. A good approach is to use "
|
447
|
-
"unique information provided by facter (MAC address, BIOS or serial ID)."
|
448
|
-
msgstr "When creating hostname patterns, make sure the resulting host names are unique. Hostnames must not start with numbers. A good approach is to use unique information provided by facter (MAC address, BIOS or serial ID)."
|
530
|
+
msgid "Primary"
|
531
|
+
msgstr "Primary"
|
449
532
|
|
450
|
-
msgid "
|
451
|
-
msgstr "
|
533
|
+
msgid "Locations"
|
534
|
+
msgstr "Locations"
|
452
535
|
|
453
|
-
msgid ""
|
454
|
-
|
455
|
-
msgstr ""
|
536
|
+
msgid "Organizations"
|
537
|
+
msgstr "Organisations"
|
456
538
|
|
457
|
-
msgid "
|
458
|
-
msgstr ""
|
539
|
+
msgid "Target host group for this rule with all properties set"
|
540
|
+
msgstr "Target host group for this rule with all properties set"
|
459
541
|
|
460
|
-
msgid "
|
461
|
-
msgstr "
|
542
|
+
msgid "Template"
|
543
|
+
msgstr "Template"
|
462
544
|
|
463
|
-
msgid "
|
545
|
+
msgid ""
|
546
|
+
"Specify target hostname template pattern in the same syntax as in Provisioning"
|
547
|
+
" Templates (ERB)."
|
464
548
|
msgstr ""
|
549
|
+
"Specify target hostname template pattern in the same syntax as in Provisioning"
|
550
|
+
" Templates (ERB)."
|
465
551
|
|
466
552
|
msgid ""
|
467
|
-
"
|
468
|
-
"
|
469
|
-
"
|
553
|
+
"Domain will be appended automatically. A hostname based on MAC address will be"
|
554
|
+
" used when left blank. In addition to @host attribute function rand for random"
|
555
|
+
" integers is available. Examples:"
|
470
556
|
msgstr ""
|
557
|
+
"Domain will be appended automatically. A hostname based on MAC address will be"
|
558
|
+
" used when left blank. In addition to @host attribute function rand for random"
|
559
|
+
" integers is available. Examples:"
|
471
560
|
|
472
|
-
msgid "
|
473
|
-
|
561
|
+
msgid ""
|
562
|
+
"When creating hostname patterns, make sure the resulting host names are unique"
|
563
|
+
". Hostnames must not start with numbers. A good approach is to use unique info"
|
564
|
+
"rmation provided by facter (MAC address, BIOS or serial ID)."
|
565
|
+
msgstr ""
|
566
|
+
"When creating hostname patterns, make sure the resulting host names are unique"
|
567
|
+
". Hostnames must not start with numbers. A good approach is to use unique info"
|
568
|
+
"rmation provided by facter (MAC address, BIOS or serial ID)."
|
474
569
|
|
475
|
-
msgid "
|
476
|
-
msgstr "
|
570
|
+
msgid "Hostname for provisioned hosts"
|
571
|
+
msgstr "Hostname for provisioned hosts"
|
477
572
|
|
478
|
-
msgid "
|
479
|
-
msgstr "
|
573
|
+
msgid "Hosts limit"
|
574
|
+
msgstr "Hosts limit"
|
480
575
|
|
481
|
-
msgid "
|
482
|
-
msgstr "
|
576
|
+
msgid "Maximum hosts provisioned with this rule (0 = unlimited)"
|
577
|
+
msgstr "Maximum hosts provisioned with this rule (0 = unlimited)"
|
483
578
|
|
484
|
-
msgid "
|
485
|
-
msgstr "
|
579
|
+
msgid "Rule priority (lower integer means higher priority)"
|
580
|
+
msgstr "Rule priority (lower integer means higher priority)"
|
486
581
|
|
487
|
-
msgid "
|
488
|
-
msgstr "
|
582
|
+
msgid "Edit Discovery Rule"
|
583
|
+
msgstr "Edit Discovery Rule"
|
489
584
|
|
490
|
-
msgid ""
|
491
|
-
"
|
492
|
-
msgstr ""
|
585
|
+
msgid "Discovery Rules"
|
586
|
+
msgstr "Discovery Rules"
|
493
587
|
|
494
|
-
msgid "
|
495
|
-
msgstr ""
|
588
|
+
msgid "New Rule"
|
589
|
+
msgstr "New Rule"
|
496
590
|
|
497
|
-
msgid "
|
498
|
-
msgstr ""
|
591
|
+
msgid "DiscoveryRule|Name"
|
592
|
+
msgstr "Name"
|
499
593
|
|
500
|
-
msgid ""
|
501
|
-
|
502
|
-
"settings"
|
503
|
-
msgstr "required if value is not inherited from host group or default password in settings"
|
594
|
+
msgid "DiscoveryRule|Priority"
|
595
|
+
msgstr "Priority"
|
504
596
|
|
505
|
-
msgid "
|
506
|
-
msgstr "
|
597
|
+
msgid "DiscoveryRule|Query"
|
598
|
+
msgstr "Query"
|
507
599
|
|
508
|
-
msgid "
|
600
|
+
msgid "Host group"
|
601
|
+
msgstr "Host group"
|
602
|
+
|
603
|
+
msgid "Hosts/limit"
|
604
|
+
msgstr "Hosts/limit"
|
605
|
+
|
606
|
+
msgid "DiscoveryRule|Enabled"
|
607
|
+
msgstr "Enabled"
|
608
|
+
|
609
|
+
msgid "New Discovery Rule"
|
610
|
+
msgstr "New Discovery Rule"
|
611
|
+
|
612
|
+
msgid "A summary of discovered hosts"
|
613
|
+
msgstr ""
|
614
|
+
|
615
|
+
msgid "Discovery rules"
|
616
|
+
msgstr ""
|
617
|
+
|
618
|
+
msgid "Discovery widget"
|
509
619
|
msgstr ""
|