foreman_discovery 1.4.0.rc1 → 1.4.0.rc2
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 +8 -8
- data/app/lib/puppet_fact_parser_extensions.rb +31 -0
- data/app/models/host/discovered.rb +1 -1
- data/lib/foreman_discovery/engine.rb +1 -0
- data/lib/foreman_discovery/version.rb +1 -1
- data/locale/de/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/de/foreman_discovery.po +24 -12
- data/locale/en_GB/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/en_GB/foreman_discovery.po +20 -9
- data/locale/es/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/es/foreman_discovery.po +20 -9
- data/locale/fr/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/fr/foreman_discovery.po +21 -10
- data/locale/gl/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/gl/foreman_discovery.po +20 -9
- data/locale/it/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/it/foreman_discovery.po +229 -0
- data/locale/ja/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ja/foreman_discovery.po +227 -0
- data/locale/ko/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ko/foreman_discovery.po +227 -0
- data/locale/pt_BR/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/pt_BR/foreman_discovery.po +23 -11
- data/locale/ru/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/ru/foreman_discovery.po +231 -0
- data/locale/sv_SE/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/sv_SE/foreman_discovery.po +23 -11
- data/locale/zh_CN/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_CN/foreman_discovery.po +227 -0
- data/locale/zh_TW/LC_MESSAGES/foreman_discovery.mo +0 -0
- data/locale/zh_TW/foreman_discovery.po +227 -0
- metadata +15 -6
- data/locale/en_GB/LC_MESSAGES/discovery.mo +0 -0
- data/locale/es/LC_MESSAGES/discovery.mo +0 -0
- data/locale/fr/LC_MESSAGES/discovery.mo +0 -0
- data/locale/sv_SE/LC_MESSAGES/discovery.mo +0 -0
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YjgxMDAyZjVkZWJkMjE2NDRmMDMwODUwNjI0YTQ1ZDA2NjgwNGRhMg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MDk1NDMyNDJhM2Q0MDk5ZjY3ODgwNzc4ZjE0MzVkODJiODI2YjdlMA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MzYyNzIyMGQxMWM1ZjM5MTMxMWI0ZDk3N2FkNjQ2YzI5MzBiNjgyZGJmYTRm
|
|
10
|
+
NTQ2MDg0M2FjODQzNDA5N2Y1ZGIyNmE1YmIwN2I4MDY2NzVkZTEwNWZjZmYx
|
|
11
|
+
N2NlYzZlOWYxODBlYTQ5YjA3NDZmZGU4MDBkYzJmMDE0OTBiZGY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NDBkMTU2Y2YwMmU2MzBiNGE1ZmY5Zjc0ZmM1MDhkYzg3YWU4NTVmNzYwNGQz
|
|
14
|
+
YjlkNjBjNDQ2NDE5YmQ0ZTBjYThhMTg5MTBmYTU5MmJlMDYzYmNkMTdjZmU4
|
|
15
|
+
NTM2ODliOTFjZjVmNzQ0ODliMWNlYTdmNjM0ODA4MmUxYmZiY2Y=
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
module PuppetFactParserExtensions
|
|
2
|
+
extend ActiveSupport::Concern
|
|
3
|
+
|
|
4
|
+
included do
|
|
5
|
+
alias_method_chain :primary_interface, :discovery_fact
|
|
6
|
+
alias_method_chain :ip, :discovery_fact
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
# we prefer discovery_bootif fact to choose right primary interface (interface used to boot the image)
|
|
10
|
+
def primary_interface_with_discovery_fact
|
|
11
|
+
mac = facts[discovery_mac_fact_name]
|
|
12
|
+
interfaces.each do |int, values|
|
|
13
|
+
return int.to_s if (values[:macaddress] == mac)
|
|
14
|
+
end
|
|
15
|
+
primary_interface_without_discovery_fact # fallback if we didn't find interface with such macaddress
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
# search for IP of interface with primary interface macaddress (ipaddress fact does not have to be interface used for boot)
|
|
19
|
+
def ip_with_discovery_fact
|
|
20
|
+
facts[:interfaces].split(',').each do |interface|
|
|
21
|
+
return facts["ipaddress_#{interface}"] if facts["macaddress_#{interface}"] == facts[discovery_mac_fact_name]
|
|
22
|
+
end
|
|
23
|
+
ip_without_discovery_fact # fallback if IP was not found
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
private
|
|
27
|
+
|
|
28
|
+
def discovery_mac_fact_name
|
|
29
|
+
Setting[:discovery_fact] || 'macaddress'
|
|
30
|
+
end
|
|
31
|
+
end
|
|
@@ -75,7 +75,7 @@ class Host::Discovered < ::Host::Base
|
|
|
75
75
|
super + [:ip]
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
def populate_fields_from_facts facts = self.facts_hash
|
|
78
|
+
def populate_fields_from_facts facts = self.facts_hash
|
|
79
79
|
importer = super
|
|
80
80
|
self.subnet = Subnet.subnet_for(importer.ip)
|
|
81
81
|
self.save
|
|
Binary file
|
|
@@ -5,14 +5,15 @@
|
|
|
5
5
|
#
|
|
6
6
|
# Translators:
|
|
7
7
|
# Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2014
|
|
8
|
+
# Ettore Atalan <atalanttore@googlemail.com>, 2014
|
|
8
9
|
# simon11 <simon.stieger.98@live.de>, 2014
|
|
9
10
|
msgid ""
|
|
10
11
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: foreman_discovery 1.
|
|
12
|
+
"Project-Id-Version: foreman_discovery 1.4.0.rc2\n"
|
|
12
13
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2014-08-
|
|
14
|
-
"PO-Revision-Date: 2014-
|
|
15
|
-
"Last-Translator:
|
|
14
|
+
"POT-Creation-Date: 2014-08-20 08:33+0100\n"
|
|
15
|
+
"PO-Revision-Date: 2014-09-16 16:47+0000\n"
|
|
16
|
+
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n"
|
|
16
17
|
"Language-Team: German (http://www.transifex.com/projects/p/foreman/language/de/)\n"
|
|
17
18
|
"MIME-Version: 1.0\n"
|
|
18
19
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -59,12 +60,18 @@ msgstr "Hosts löschen"
|
|
|
59
60
|
msgid "Destroyed selected hosts"
|
|
60
61
|
msgstr "Ausgewählte Hosts gelöscht"
|
|
61
62
|
|
|
63
|
+
msgid "Discovered Host Pool"
|
|
64
|
+
msgstr ""
|
|
65
|
+
|
|
62
66
|
msgid "Discovered host: %s"
|
|
63
67
|
msgstr "Entdeckter Host: %s"
|
|
64
68
|
|
|
65
69
|
msgid "Discovered hosts"
|
|
66
70
|
msgstr "Entdeckte Hosts"
|
|
67
71
|
|
|
72
|
+
msgid "Discovery widget"
|
|
73
|
+
msgstr ""
|
|
74
|
+
|
|
68
75
|
msgid "Fact"
|
|
69
76
|
msgstr "Fakt"
|
|
70
77
|
|
|
@@ -86,15 +93,15 @@ msgstr "Neustart fehlgeschlagen: %s"
|
|
|
86
93
|
msgid "Failed to refresh facts for %s"
|
|
87
94
|
msgstr "Fakten für %s konnten nicht erneuert werden"
|
|
88
95
|
|
|
89
|
-
msgid "Host Pool"
|
|
90
|
-
msgstr "Host-Pool"
|
|
91
|
-
|
|
92
96
|
msgid "Imported Host::Discovered"
|
|
93
97
|
msgstr "Host::Discovered wurde importiert"
|
|
94
98
|
|
|
95
99
|
msgid "Invalid facts, must be a Hash"
|
|
96
100
|
msgstr "Ungültige Fakten, es muss sich um einen Hash handeln"
|
|
97
101
|
|
|
102
|
+
msgid "Invalid facts: hash does not contain IP address"
|
|
103
|
+
msgstr ""
|
|
104
|
+
|
|
98
105
|
msgid "Invalid facts: hash does not contain the required fact '%s'"
|
|
99
106
|
msgstr "Ungültige Fakten: Der Hash enthält den benötigten Fakt nicht: %s"
|
|
100
107
|
|
|
@@ -113,11 +120,14 @@ msgstr "Modell"
|
|
|
113
120
|
msgid "Name"
|
|
114
121
|
msgstr "Name"
|
|
115
122
|
|
|
123
|
+
msgid "No discovered hosts available"
|
|
124
|
+
msgstr ""
|
|
125
|
+
|
|
116
126
|
msgid "No hosts selected"
|
|
117
127
|
msgstr "Keine Hosts ausgewählt"
|
|
118
128
|
|
|
119
129
|
msgid "No hosts were found with that id or name"
|
|
120
|
-
msgstr "Es wurden keine Systeme mit dieser
|
|
130
|
+
msgstr "Es wurden keine Systeme mit dieser Kennung oder diesem Namen gefunden"
|
|
121
131
|
|
|
122
132
|
msgid "Organization"
|
|
123
133
|
msgstr "Organisation"
|
|
@@ -178,13 +188,15 @@ msgid ""
|
|
|
178
188
|
"as well"
|
|
179
189
|
msgstr "Dies kann eine Weile dauern, weil alle Systeme, Fakten und Reporte auch gelöscht werden"
|
|
180
190
|
|
|
191
|
+
msgid "Total pool size"
|
|
192
|
+
msgid_plural "Total pool size"
|
|
193
|
+
msgstr[0] ""
|
|
194
|
+
msgstr[1] ""
|
|
195
|
+
|
|
181
196
|
msgid ""
|
|
182
197
|
"UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
|
183
198
|
msgstr ""
|
|
184
199
|
|
|
185
|
-
msgid "Unassigned hosts"
|
|
186
|
-
msgstr "Nicht zugeordnete Hosts"
|
|
187
|
-
|
|
188
200
|
msgid "Upload facts for a host, creating the host if required"
|
|
189
201
|
msgstr ""
|
|
190
202
|
|
|
@@ -216,4 +228,4 @@ msgid "paginate results"
|
|
|
216
228
|
msgstr ""
|
|
217
229
|
|
|
218
230
|
msgid "sort results"
|
|
219
|
-
msgstr ""
|
|
231
|
+
msgstr "Ergebnisse sortieren"
|
|
Binary file
|
|
@@ -7,10 +7,10 @@
|
|
|
7
7
|
# Dominic Cleal <dcleal@redhat.com>, 2013-2014
|
|
8
8
|
msgid ""
|
|
9
9
|
msgstr ""
|
|
10
|
-
"Project-Id-Version: foreman_discovery 1.
|
|
10
|
+
"Project-Id-Version: foreman_discovery 1.4.0.rc2\n"
|
|
11
11
|
"Report-Msgid-Bugs-To: \n"
|
|
12
|
-
"POT-Creation-Date: 2014-08-
|
|
13
|
-
"PO-Revision-Date: 2014-08-
|
|
12
|
+
"POT-Creation-Date: 2014-08-20 08:33+0100\n"
|
|
13
|
+
"PO-Revision-Date: 2014-08-22 09:57+0000\n"
|
|
14
14
|
"Last-Translator: Lukáš Zapletal\n"
|
|
15
15
|
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/foreman/language/en_GB/)\n"
|
|
16
16
|
"MIME-Version: 1.0\n"
|
|
@@ -58,12 +58,18 @@ msgstr "Delete hosts"
|
|
|
58
58
|
msgid "Destroyed selected hosts"
|
|
59
59
|
msgstr "Destroyed selected hosts"
|
|
60
60
|
|
|
61
|
+
msgid "Discovered Host Pool"
|
|
62
|
+
msgstr ""
|
|
63
|
+
|
|
61
64
|
msgid "Discovered host: %s"
|
|
62
65
|
msgstr "Discovered host: %s"
|
|
63
66
|
|
|
64
67
|
msgid "Discovered hosts"
|
|
65
68
|
msgstr "Discovered hosts"
|
|
66
69
|
|
|
70
|
+
msgid "Discovery widget"
|
|
71
|
+
msgstr ""
|
|
72
|
+
|
|
67
73
|
msgid "Fact"
|
|
68
74
|
msgstr "Fact"
|
|
69
75
|
|
|
@@ -85,15 +91,15 @@ msgstr "Failed to reboot: %s"
|
|
|
85
91
|
msgid "Failed to refresh facts for %s"
|
|
86
92
|
msgstr "Failed to refresh facts for %s"
|
|
87
93
|
|
|
88
|
-
msgid "Host Pool"
|
|
89
|
-
msgstr "Host Pool"
|
|
90
|
-
|
|
91
94
|
msgid "Imported Host::Discovered"
|
|
92
95
|
msgstr "Imported Host::Discovered"
|
|
93
96
|
|
|
94
97
|
msgid "Invalid facts, must be a Hash"
|
|
95
98
|
msgstr "Invalid facts, must be a Hash"
|
|
96
99
|
|
|
100
|
+
msgid "Invalid facts: hash does not contain IP address"
|
|
101
|
+
msgstr ""
|
|
102
|
+
|
|
97
103
|
msgid "Invalid facts: hash does not contain the required fact '%s'"
|
|
98
104
|
msgstr "Invalid facts: hash does not contain the required fact '%s'"
|
|
99
105
|
|
|
@@ -112,6 +118,9 @@ msgstr "Model"
|
|
|
112
118
|
msgid "Name"
|
|
113
119
|
msgstr "Name"
|
|
114
120
|
|
|
121
|
+
msgid "No discovered hosts available"
|
|
122
|
+
msgstr ""
|
|
123
|
+
|
|
115
124
|
msgid "No hosts selected"
|
|
116
125
|
msgstr "No hosts selected"
|
|
117
126
|
|
|
@@ -177,13 +186,15 @@ msgid ""
|
|
|
177
186
|
"as well"
|
|
178
187
|
msgstr "This might take a while, as all hosts, facts and reports will be destroyed as well"
|
|
179
188
|
|
|
189
|
+
msgid "Total pool size"
|
|
190
|
+
msgid_plural "Total pool size"
|
|
191
|
+
msgstr[0] ""
|
|
192
|
+
msgstr[1] ""
|
|
193
|
+
|
|
180
194
|
msgid ""
|
|
181
195
|
"UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
|
182
196
|
msgstr ""
|
|
183
197
|
|
|
184
|
-
msgid "Unassigned hosts"
|
|
185
|
-
msgstr "Unassigned hosts"
|
|
186
|
-
|
|
187
198
|
msgid "Upload facts for a host, creating the host if required"
|
|
188
199
|
msgstr ""
|
|
189
200
|
|
|
Binary file
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
# Sergio Ocón <sergio@redhat.com>, 2014
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: foreman_discovery 1.
|
|
11
|
+
"Project-Id-Version: foreman_discovery 1.4.0.rc2\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2014-08-
|
|
14
|
-
"PO-Revision-Date: 2014-08-
|
|
13
|
+
"POT-Creation-Date: 2014-08-20 08:33+0100\n"
|
|
14
|
+
"PO-Revision-Date: 2014-08-29 11:11+0000\n"
|
|
15
15
|
"Last-Translator: Sergio Ocón <sergio@redhat.com>\n"
|
|
16
16
|
"Language-Team: Spanish (http://www.transifex.com/projects/p/foreman/language/es/)\n"
|
|
17
17
|
"MIME-Version: 1.0\n"
|
|
@@ -59,12 +59,18 @@ msgstr "Borrar Equipos"
|
|
|
59
59
|
msgid "Destroyed selected hosts"
|
|
60
60
|
msgstr "Eliminados equipos seleccionados"
|
|
61
61
|
|
|
62
|
+
msgid "Discovered Host Pool"
|
|
63
|
+
msgstr "Pool de hosts descubierto"
|
|
64
|
+
|
|
62
65
|
msgid "Discovered host: %s"
|
|
63
66
|
msgstr "Equipo descubierto: %s"
|
|
64
67
|
|
|
65
68
|
msgid "Discovered hosts"
|
|
66
69
|
msgstr "Equipos descubiertos"
|
|
67
70
|
|
|
71
|
+
msgid "Discovery widget"
|
|
72
|
+
msgstr "Widget de descubrimiento"
|
|
73
|
+
|
|
68
74
|
msgid "Fact"
|
|
69
75
|
msgstr "Dato"
|
|
70
76
|
|
|
@@ -86,15 +92,15 @@ msgstr "Fallo al reiniciar: %s"
|
|
|
86
92
|
msgid "Failed to refresh facts for %s"
|
|
87
93
|
msgstr "Fallo al refrescar datos para %s"
|
|
88
94
|
|
|
89
|
-
msgid "Host Pool"
|
|
90
|
-
msgstr "Conjunto de equipos"
|
|
91
|
-
|
|
92
95
|
msgid "Imported Host::Discovered"
|
|
93
96
|
msgstr "Host Importado::Descubierto"
|
|
94
97
|
|
|
95
98
|
msgid "Invalid facts, must be a Hash"
|
|
96
99
|
msgstr "Datos no válidos, debe ser un Hash"
|
|
97
100
|
|
|
101
|
+
msgid "Invalid facts: hash does not contain IP address"
|
|
102
|
+
msgstr "Detalles inválidiso: el hash no contiene una dirección IP"
|
|
103
|
+
|
|
98
104
|
msgid "Invalid facts: hash does not contain the required fact '%s'"
|
|
99
105
|
msgstr "Datos no válidos: el hash debe contener '%s'"
|
|
100
106
|
|
|
@@ -113,6 +119,9 @@ msgstr "Modelo"
|
|
|
113
119
|
msgid "Name"
|
|
114
120
|
msgstr "Nombre"
|
|
115
121
|
|
|
122
|
+
msgid "No discovered hosts available"
|
|
123
|
+
msgstr "No hay hosts descubiertos disponibles"
|
|
124
|
+
|
|
116
125
|
msgid "No hosts selected"
|
|
117
126
|
msgstr "Ningún equipo seleccionado"
|
|
118
127
|
|
|
@@ -178,13 +187,15 @@ msgid ""
|
|
|
178
187
|
"as well"
|
|
179
188
|
msgstr "Esta acción puede tardar un rato, ya que se eliminarán todos los equipos, datos e informes."
|
|
180
189
|
|
|
190
|
+
msgid "Total pool size"
|
|
191
|
+
msgid_plural "Total pool size"
|
|
192
|
+
msgstr[0] "Tamaño total del pool"
|
|
193
|
+
msgstr[1] "Tamaño total del pool"
|
|
194
|
+
|
|
181
195
|
msgid ""
|
|
182
196
|
"UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
|
183
197
|
msgstr "UUID para seguir el estado de la tarea de orquestación, GET /api/orchestration/:UUID/tasks"
|
|
184
198
|
|
|
185
|
-
msgid "Unassigned hosts"
|
|
186
|
-
msgstr "Equipos sin asignar"
|
|
187
|
-
|
|
188
199
|
msgid "Upload facts for a host, creating the host if required"
|
|
189
200
|
msgstr "Subir detalles para un host, creando el host si es necesario"
|
|
190
201
|
|
|
Binary file
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
# Pierre-Emmanuel Dutang <dutangp@gmail.com>, 2014
|
|
9
9
|
msgid ""
|
|
10
10
|
msgstr ""
|
|
11
|
-
"Project-Id-Version: foreman_discovery 1.
|
|
11
|
+
"Project-Id-Version: foreman_discovery 1.4.0.rc2\n"
|
|
12
12
|
"Report-Msgid-Bugs-To: \n"
|
|
13
|
-
"POT-Creation-Date: 2014-08-
|
|
14
|
-
"PO-Revision-Date: 2014-08-
|
|
15
|
-
"Last-Translator:
|
|
13
|
+
"POT-Creation-Date: 2014-08-20 08:33+0100\n"
|
|
14
|
+
"PO-Revision-Date: 2014-08-25 08:30+0000\n"
|
|
15
|
+
"Last-Translator: Claer <transiblu@claer.hammock.fr>\n"
|
|
16
16
|
"Language-Team: French (http://www.transifex.com/projects/p/foreman/language/fr/)\n"
|
|
17
17
|
"MIME-Version: 1.0\n"
|
|
18
18
|
"Content-Type: text/plain; charset=UTF-8\n"
|
|
@@ -59,12 +59,18 @@ msgstr "Supprimer ces Hôtes"
|
|
|
59
59
|
msgid "Destroyed selected hosts"
|
|
60
60
|
msgstr "Hôtes sélectionnés détruits"
|
|
61
61
|
|
|
62
|
+
msgid "Discovered Host Pool"
|
|
63
|
+
msgstr "Pool d'hôtes détecté"
|
|
64
|
+
|
|
62
65
|
msgid "Discovered host: %s"
|
|
63
66
|
msgstr "Hôtes détectés : %s"
|
|
64
67
|
|
|
65
68
|
msgid "Discovered hosts"
|
|
66
69
|
msgstr "Hôtes détectés"
|
|
67
70
|
|
|
71
|
+
msgid "Discovery widget"
|
|
72
|
+
msgstr "Widget de détection"
|
|
73
|
+
|
|
68
74
|
msgid "Fact"
|
|
69
75
|
msgstr "Fact"
|
|
70
76
|
|
|
@@ -86,15 +92,15 @@ msgstr "Erreur de redémarrage : %s"
|
|
|
86
92
|
msgid "Failed to refresh facts for %s"
|
|
87
93
|
msgstr "Échec de rafraichissement des facts pour %s"
|
|
88
94
|
|
|
89
|
-
msgid "Host Pool"
|
|
90
|
-
msgstr "Regrouppement d'hôtes"
|
|
91
|
-
|
|
92
95
|
msgid "Imported Host::Discovered"
|
|
93
96
|
msgstr "Host::Discovered importé"
|
|
94
97
|
|
|
95
98
|
msgid "Invalid facts, must be a Hash"
|
|
96
99
|
msgstr "Facts invalides, doit être un hash"
|
|
97
100
|
|
|
101
|
+
msgid "Invalid facts: hash does not contain IP address"
|
|
102
|
+
msgstr "Facts invalides : le hash ne contient pas une adresse IP"
|
|
103
|
+
|
|
98
104
|
msgid "Invalid facts: hash does not contain the required fact '%s'"
|
|
99
105
|
msgstr "Facts invalides : le hash ne doit pas contenir le fact requis '%s'"
|
|
100
106
|
|
|
@@ -113,6 +119,9 @@ msgstr "Modèle"
|
|
|
113
119
|
msgid "Name"
|
|
114
120
|
msgstr "Nom"
|
|
115
121
|
|
|
122
|
+
msgid "No discovered hosts available"
|
|
123
|
+
msgstr "Aucun hôte détecté disponible"
|
|
124
|
+
|
|
116
125
|
msgid "No hosts selected"
|
|
117
126
|
msgstr "Aucun hôte sélectionné"
|
|
118
127
|
|
|
@@ -178,13 +187,15 @@ msgid ""
|
|
|
178
187
|
"as well"
|
|
179
188
|
msgstr "Cette action peut prendre un certain temps, pour tous les hôtes, les rapports et facts vont aussi être supprimés"
|
|
180
189
|
|
|
190
|
+
msgid "Total pool size"
|
|
191
|
+
msgid_plural "Total pool size"
|
|
192
|
+
msgstr[0] "Taille totale du pool"
|
|
193
|
+
msgstr[1] "Taille totale du pool"
|
|
194
|
+
|
|
181
195
|
msgid ""
|
|
182
196
|
"UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
|
183
197
|
msgstr "UUID pour surveiller l'état des tâches d'orchestration : GET /api/orchestration/:UUID/tasks"
|
|
184
198
|
|
|
185
|
-
msgid "Unassigned hosts"
|
|
186
|
-
msgstr "Hôtes non assignés"
|
|
187
|
-
|
|
188
199
|
msgid "Upload facts for a host, creating the host if required"
|
|
189
200
|
msgstr "Télécharge les facts d'un hôte, créé l'hôte si besoin"
|
|
190
201
|
|
|
Binary file
|
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
# Translators:
|
|
7
7
|
msgid ""
|
|
8
8
|
msgstr ""
|
|
9
|
-
"Project-Id-Version: foreman_discovery 1.
|
|
9
|
+
"Project-Id-Version: foreman_discovery 1.4.0.rc2\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2014-08-
|
|
12
|
-
"PO-Revision-Date: 2014-08-
|
|
11
|
+
"POT-Creation-Date: 2014-08-20 08:33+0100\n"
|
|
12
|
+
"PO-Revision-Date: 2014-08-22 09:57+0000\n"
|
|
13
13
|
"Last-Translator: Lukáš Zapletal\n"
|
|
14
14
|
"Language-Team: Galician (http://www.transifex.com/projects/p/foreman/language/gl/)\n"
|
|
15
15
|
"MIME-Version: 1.0\n"
|
|
@@ -57,12 +57,18 @@ msgstr ""
|
|
|
57
57
|
msgid "Destroyed selected hosts"
|
|
58
58
|
msgstr "Eliminados equipos seleccionados"
|
|
59
59
|
|
|
60
|
+
msgid "Discovered Host Pool"
|
|
61
|
+
msgstr ""
|
|
62
|
+
|
|
60
63
|
msgid "Discovered host: %s"
|
|
61
64
|
msgstr ""
|
|
62
65
|
|
|
63
66
|
msgid "Discovered hosts"
|
|
64
67
|
msgstr ""
|
|
65
68
|
|
|
69
|
+
msgid "Discovery widget"
|
|
70
|
+
msgstr ""
|
|
71
|
+
|
|
66
72
|
msgid "Fact"
|
|
67
73
|
msgstr ""
|
|
68
74
|
|
|
@@ -84,15 +90,15 @@ msgstr ""
|
|
|
84
90
|
msgid "Failed to refresh facts for %s"
|
|
85
91
|
msgstr ""
|
|
86
92
|
|
|
87
|
-
msgid "Host Pool"
|
|
88
|
-
msgstr ""
|
|
89
|
-
|
|
90
93
|
msgid "Imported Host::Discovered"
|
|
91
94
|
msgstr ""
|
|
92
95
|
|
|
93
96
|
msgid "Invalid facts, must be a Hash"
|
|
94
97
|
msgstr ""
|
|
95
98
|
|
|
99
|
+
msgid "Invalid facts: hash does not contain IP address"
|
|
100
|
+
msgstr ""
|
|
101
|
+
|
|
96
102
|
msgid "Invalid facts: hash does not contain the required fact '%s'"
|
|
97
103
|
msgstr ""
|
|
98
104
|
|
|
@@ -111,6 +117,9 @@ msgstr "Modelo"
|
|
|
111
117
|
msgid "Name"
|
|
112
118
|
msgstr "Nome"
|
|
113
119
|
|
|
120
|
+
msgid "No discovered hosts available"
|
|
121
|
+
msgstr ""
|
|
122
|
+
|
|
114
123
|
msgid "No hosts selected"
|
|
115
124
|
msgstr "Ningún equipo seleccionado"
|
|
116
125
|
|
|
@@ -176,13 +185,15 @@ msgid ""
|
|
|
176
185
|
"as well"
|
|
177
186
|
msgstr "Esta acción pode tardar un anaco, xa que se eliminarán tódolos equipos, datos e informes."
|
|
178
187
|
|
|
188
|
+
msgid "Total pool size"
|
|
189
|
+
msgid_plural "Total pool size"
|
|
190
|
+
msgstr[0] ""
|
|
191
|
+
msgstr[1] ""
|
|
192
|
+
|
|
179
193
|
msgid ""
|
|
180
194
|
"UUID to track orchestration tasks status, GET /api/orchestration/:UUID/tasks"
|
|
181
195
|
msgstr ""
|
|
182
196
|
|
|
183
|
-
msgid "Unassigned hosts"
|
|
184
|
-
msgstr ""
|
|
185
|
-
|
|
186
197
|
msgid "Upload facts for a host, creating the host if required"
|
|
187
198
|
msgstr ""
|
|
188
199
|
|