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