hammer_cli_foreman_discovery 0.0.3 → 1.0.0

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.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/lib/hammer_cli_foreman_discovery/discovery.rb +9 -0
  3. data/lib/hammer_cli_foreman_discovery/discovery_rule.rb +1 -0
  4. data/lib/hammer_cli_foreman_discovery/version.rb +1 -1
  5. data/lib/hammer_cli_foreman_discovery.rb +1 -1
  6. data/locale/ca/hammer_cli_foreman_discovery.edit.po +203 -0
  7. data/locale/ca/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  8. data/locale/de/hammer_cli_foreman_discovery.edit.po +204 -0
  9. data/locale/de/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  10. data/locale/en/hammer_cli_foreman_discovery.edit.po +197 -0
  11. data/locale/en/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  12. data/locale/en_GB/hammer_cli_foreman_discovery.edit.po +204 -0
  13. data/locale/en_GB/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  14. data/locale/es/hammer_cli_foreman_discovery.edit.po +203 -0
  15. data/locale/es/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  16. data/locale/fr/hammer_cli_foreman_discovery.edit.po +203 -0
  17. data/locale/fr/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  18. data/locale/it/hammer_cli_foreman_discovery.edit.po +202 -0
  19. data/locale/it/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  20. data/locale/ja/hammer_cli_foreman_discovery.edit.po +203 -0
  21. data/locale/ja/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  22. data/locale/ko/hammer_cli_foreman_discovery.edit.po +202 -0
  23. data/locale/ko/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  24. data/locale/pt_BR/hammer_cli_foreman_discovery.edit.po +204 -0
  25. data/locale/pt_BR/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  26. data/locale/ru/hammer_cli_foreman_discovery.edit.po +203 -0
  27. data/locale/ru/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  28. data/locale/zh_CN/hammer_cli_foreman_discovery.edit.po +202 -0
  29. data/locale/zh_CN/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  30. data/locale/zh_TW/hammer_cli_foreman_discovery.edit.po +202 -0
  31. data/locale/zh_TW/hammer_cli_foreman_discovery.po.time_stamp +0 -0
  32. metadata +29 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a2895d0c39e0846f037bf0f5f2abee4b98033032
4
- data.tar.gz: 6af194699553ece8db24a19e301f7e490adfb859
3
+ metadata.gz: e13bbfa0e59e0b9fe2706ef3adb1773bb138d714
4
+ data.tar.gz: 6b35b71861d67d2a8b888481bea73433d8429806
5
5
  SHA512:
6
- metadata.gz: 9055580e4449417b6eee1cb8815d9f6555ee7022d641859d93e824941c75d93c59ce109e472bf82879dc2cce3c5910a40a98b2fe278153430bd3455e292662dd
7
- data.tar.gz: bcf97e743fb8b3b76be01cff39f837debe09c2dde07b83a17172a411b794750fd15afc688c0fa2fd7ceade82dc12222c6760279c362c0ba85c7d7f418d479da2
6
+ metadata.gz: 52e9d9d328eb8bdb6808b2c4a87a1802a84b6afb6e80eadd6a9eba4c913e6cf376079f16390b86e1526fd66e70979dbc380d47438260f3949dc39dd50b1b8a64
7
+ data.tar.gz: 74c02e4bdef7b46ad99b4cf8e959a21c0659781b83102cd3fabab27731a2e950efe5d69733873f319fdfff325fcf1ca72f45e7220446363f34da048ff4a39a2f
@@ -53,6 +53,12 @@ module HammerCLIForemanDiscovery
53
53
  HammerCLIForeman::Fact::ListCommand.unhash_facts(super)
54
54
  end
55
55
 
56
+ def request_params
57
+ params = super
58
+ params['host_id'] = params.delete('discovered_host_id')
59
+ params
60
+ end
61
+
56
62
  build_options
57
63
  end
58
64
 
@@ -84,6 +90,8 @@ module HammerCLIForemanDiscovery
84
90
  option "--build", "BUILD", " ", bool_format
85
91
  bool_format[:format] = HammerCLI::Options::Normalizers::Bool.new
86
92
  option "--enabled", "ENABLED", " ", bool_format
93
+ bool_format[:format] = HammerCLI::Options::Normalizers::Bool.new
94
+ option "--overwrite", "OVERWRITE", " ", bool_format
87
95
 
88
96
  option "--parameters", "PARAMS", _("Host parameters"),
89
97
  :format => HammerCLI::Options::Normalizers::KeyValueList.new
@@ -105,6 +113,7 @@ module HammerCLIForemanDiscovery
105
113
 
106
114
  params['discovered_host']['ptable_id'] = option_partition_table_id unless option_partition_table_id.nil?
107
115
  params['discovered_host']['root_pass'] = option_root_password unless option_root_password.nil?
116
+ params['discovered_host']['overwrite'] = option_overwrite unless option_overwrite.nil?
108
117
 
109
118
  if option_ask_root_password
110
119
  params['discovered_host']['root_pass'] = ask_password
@@ -40,6 +40,7 @@ module HammerCLIForemanDiscovery
40
40
  output ListCommand.output_definition do
41
41
  field :hostname, _('Hostname template')
42
42
  HammerCLIForemanDiscovery::DiscoveryReferences.hosts(self)
43
+ HammerCLIForeman::References.taxonomies(self)
43
44
  end
44
45
 
45
46
  build_options
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForemanDiscovery
2
2
  def self.version
3
- @version ||= Gem::Version.new('0.0.3')
3
+ @version ||= Gem::Version.new('1.0.0')
4
4
  end
5
5
  end
@@ -8,7 +8,7 @@ module HammerCLIForemanDiscovery
8
8
  'HammerCLIForemanDiscovery::DiscoveredHost', 'hammer_cli_foreman_discovery/discovery'
9
9
  )
10
10
 
11
- HammerCLI::MainCommand.lazy_subcommand('discovery_rule', _("Manipulate discovered rules."),
11
+ HammerCLI::MainCommand.lazy_subcommand('discovery-rule', _("Manipulate discovered rules."),
12
12
  'HammerCLIForemanDiscovery::DiscoveryRule', 'hammer_cli_foreman_discovery/discovery_rule'
13
13
  )
14
14
 
@@ -0,0 +1,203 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ #
5
+ # Translators:
6
+ # Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>, 2015
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer_cli_foreman_discovery 0.0.2\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2015-03-19 15:06+0200\n"
12
+ "PO-Revision-Date: 2015-12-11 09:29+0000\n"
13
+ "Last-Translator: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>\n"
14
+ "Language-Team: Catalan (http://www.transifex.com/foreman/foreman/language/ca/)\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Language: ca\n"
19
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
+
21
+ #: lib/hammer_cli_foreman_discovery/discovery_references.rb:6
22
+ msgid "Hosts"
23
+ msgstr "Amfitrions"
24
+
25
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:12
26
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:23
27
+ msgid "ID"
28
+ msgstr "ID"
29
+
30
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:13
31
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:24
32
+ msgid "Name"
33
+ msgstr "Nom"
34
+
35
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:14
36
+ msgid "MAC"
37
+ msgstr "MAC"
38
+
39
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:15
40
+ msgid "Last report"
41
+ msgstr "Últim informe"
42
+
43
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:16
44
+ msgid "CPUs"
45
+ msgstr "Les CPU"
46
+
47
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:17
48
+ msgid "Memory"
49
+ msgstr "Memòria"
50
+
51
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:18
52
+ msgid "Disk count"
53
+ msgstr "Nombre de discs"
54
+
55
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:19
56
+ msgid "Disks size"
57
+ msgstr "Mida de disc"
58
+
59
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:20
60
+ msgid "Subnet"
61
+ msgstr "Subxarxa"
62
+
63
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:21
64
+ msgid "Last Report"
65
+ msgstr "Últim informe"
66
+
67
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:29
68
+ msgid "IP"
69
+ msgstr "IP"
70
+
71
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:30
72
+ msgid "Model"
73
+ msgstr "Model"
74
+
75
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:31
76
+ msgid "Organization"
77
+ msgstr "Organització"
78
+
79
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:32
80
+ msgid "Location"
81
+ msgstr "Ubicació"
82
+
83
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:42
84
+ msgid "Fact"
85
+ msgstr "Objecte d'interès"
86
+
87
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:43
88
+ msgid "Value"
89
+ msgstr "Valor"
90
+
91
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:60
92
+ msgid "Host deleted"
93
+ msgstr "S'ha suprimit l'amfitrió"
94
+
95
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:61
96
+ msgid "Could not delete the host"
97
+ msgstr "No s'ha pogut suprimir l'amfitrió"
98
+
99
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:69
100
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:123
101
+ msgid "Host created"
102
+ msgstr "S'ha creat l'amfitrió"
103
+
104
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:70
105
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:124
106
+ msgid "Could not create the host"
107
+ msgstr "No s'ha pogut crear l'amfitrió"
108
+
109
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:88
110
+ msgid "Host parameters"
111
+ msgstr "Paràmetres de l'amfitrió"
112
+
113
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:90
114
+ msgid "Interface parameters"
115
+ msgstr "Paràmetres de la interfície"
116
+
117
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:99
118
+ msgid "Enter the root password for the host:"
119
+ msgstr "Introduïu la contrasenya de root per a l'amfitrió:"
120
+
121
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:122
122
+ msgid "Auto provision a host"
123
+ msgstr "Auto aprovisiona un amfitrió"
124
+
125
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:132
126
+ msgid "Reboot a host"
127
+ msgstr "Reinicia un amfitrió"
128
+
129
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:133
130
+ msgid "Host reboot started"
131
+ msgstr "S'ha iniciat el reinici de l'amfitrió"
132
+
133
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:134
134
+ msgid "Could not reboot the host"
135
+ msgstr "No s'ha pogut reiniciar l'amfitrió"
136
+
137
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:142
138
+ msgid "Refresh the facts of a host"
139
+ msgstr "Refresca els objectes d'interès d'un amfitrió"
140
+
141
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:143
142
+ msgid "Host facts refreshed"
143
+ msgstr "S'han refrescat els objectes d'interès de l'amfitrió"
144
+
145
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:144
146
+ msgid "Could not refresh the facts of the host"
147
+ msgstr "No s'ha pogut refrescar els objectes d'interès de l'amfitrió"
148
+
149
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:25
150
+ msgid "Priority"
151
+ msgstr "Prioritat"
152
+
153
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:26
154
+ msgid "Search"
155
+ msgstr "Cerca"
156
+
157
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:27
158
+ msgid "Host Group"
159
+ msgstr "Grup dels amfitrions"
160
+
161
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:28
162
+ msgid "Hosts Limit"
163
+ msgstr "Límit d'amfitrions"
164
+
165
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:29
166
+ msgid "Enabled"
167
+ msgstr "Habilitat"
168
+
169
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:38
170
+ msgid "Hostname template"
171
+ msgstr "Plantilla de nom d'amfitrió"
172
+
173
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:46
174
+ msgid "Rule created"
175
+ msgstr "S'ha creat la regla"
176
+
177
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:47
178
+ msgid "Could not create the rule"
179
+ msgstr "No s'ha pogut crear la regla"
180
+
181
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:54
182
+ msgid "Rule updated"
183
+ msgstr "S'ha actualitzat la regla"
184
+
185
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:55
186
+ msgid "Could not update the rule"
187
+ msgstr "No s'ha pogut actualitzar la regla"
188
+
189
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:62
190
+ msgid "Rule deleted"
191
+ msgstr "S'ha suprimit la regla"
192
+
193
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:63
194
+ msgid "Could not delete the rule"
195
+ msgstr "No s'ha pogut suprimir la regla"
196
+
197
+ #: lib/hammer_cli_foreman_discovery.rb:7
198
+ msgid "Manipulate discovered hosts."
199
+ msgstr "Manipula els amfitrions descoberts."
200
+
201
+ #: lib/hammer_cli_foreman_discovery.rb:11
202
+ msgid "Manipulate discovered rules."
203
+ msgstr "Manipula les regles descobertes."
@@ -0,0 +1,204 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ #
5
+ # Translators:
6
+ # Christina Gurski <Gurski_christina@yahoo.de>, 2015
7
+ # Ettore Atalan <atalanttore@googlemail.com>, 2015
8
+ msgid ""
9
+ msgstr ""
10
+ "Project-Id-Version: Foreman\n"
11
+ "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2015-03-19 15:06+0200\n"
13
+ "PO-Revision-Date: 2016-08-22 15:07+0000\n"
14
+ "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>\n"
15
+ "Language-Team: German (http://www.transifex.com/foreman/foreman/language/de/)\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: de\n"
20
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
+
22
+ #: lib/hammer_cli_foreman_discovery/discovery_references.rb:6
23
+ msgid "Hosts"
24
+ msgstr "Hosts"
25
+
26
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:12
27
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:23
28
+ msgid "ID"
29
+ msgstr "Kennung"
30
+
31
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:13
32
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:24
33
+ msgid "Name"
34
+ msgstr "Name"
35
+
36
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:14
37
+ msgid "MAC"
38
+ msgstr "MAC"
39
+
40
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:15
41
+ msgid "Last report"
42
+ msgstr "Letzter Bericht"
43
+
44
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:16
45
+ msgid "CPUs"
46
+ msgstr "CPUs"
47
+
48
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:17
49
+ msgid "Memory"
50
+ msgstr "Speicher"
51
+
52
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:18
53
+ msgid "Disk count"
54
+ msgstr "Festplattenanzahl"
55
+
56
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:19
57
+ msgid "Disks size"
58
+ msgstr "Festplattengröße"
59
+
60
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:20
61
+ msgid "Subnet"
62
+ msgstr "Subnetz"
63
+
64
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:21
65
+ msgid "Last Report"
66
+ msgstr "Letzter Bericht"
67
+
68
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:29
69
+ msgid "IP"
70
+ msgstr "IP"
71
+
72
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:30
73
+ msgid "Model"
74
+ msgstr "Modell"
75
+
76
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:31
77
+ msgid "Organization"
78
+ msgstr "Organisation"
79
+
80
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:32
81
+ msgid "Location"
82
+ msgstr "Standort"
83
+
84
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:42
85
+ msgid "Fact"
86
+ msgstr "Fakt"
87
+
88
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:43
89
+ msgid "Value"
90
+ msgstr "Wert"
91
+
92
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:60
93
+ msgid "Host deleted"
94
+ msgstr "Host gelöscht"
95
+
96
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:61
97
+ msgid "Could not delete the host"
98
+ msgstr "Host konnte nicht gelöscht werden"
99
+
100
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:69
101
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:123
102
+ msgid "Host created"
103
+ msgstr "Host erstellt"
104
+
105
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:70
106
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:124
107
+ msgid "Could not create the host"
108
+ msgstr "Host konnte nicht erstellt werden"
109
+
110
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:88
111
+ msgid "Host parameters"
112
+ msgstr "Hostparameter"
113
+
114
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:90
115
+ msgid "Interface parameters"
116
+ msgstr "Schnittstellenparameter"
117
+
118
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:99
119
+ msgid "Enter the root password for the host:"
120
+ msgstr "Geben Sie das Root-Passwort für den Host ein:"
121
+
122
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:122
123
+ msgid "Auto provision a host"
124
+ msgstr "Host automatisch bereitstellen"
125
+
126
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:132
127
+ msgid "Reboot a host"
128
+ msgstr "Host neustarten"
129
+
130
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:133
131
+ msgid "Host reboot started"
132
+ msgstr "Host wird neu gestartet"
133
+
134
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:134
135
+ msgid "Could not reboot the host"
136
+ msgstr "Host konnte nicht neu gestartet werden"
137
+
138
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:142
139
+ msgid "Refresh the facts of a host"
140
+ msgstr "Aktualisieren Sie die Daten eines Hosts"
141
+
142
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:143
143
+ msgid "Host facts refreshed"
144
+ msgstr "Hostdaten aktualisiert"
145
+
146
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:144
147
+ msgid "Could not refresh the facts of the host"
148
+ msgstr "Daten des Hosts konnten nicht aktualisiert werden"
149
+
150
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:25
151
+ msgid "Priority"
152
+ msgstr "Priorität"
153
+
154
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:26
155
+ msgid "Search"
156
+ msgstr "Suche"
157
+
158
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:27
159
+ msgid "Host Group"
160
+ msgstr "Hostgruppe"
161
+
162
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:28
163
+ msgid "Hosts Limit"
164
+ msgstr "Hosts-Limit"
165
+
166
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:29
167
+ msgid "Enabled"
168
+ msgstr "Aktiviert"
169
+
170
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:38
171
+ msgid "Hostname template"
172
+ msgstr "Hostnamenvorlage"
173
+
174
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:46
175
+ msgid "Rule created"
176
+ msgstr "Regel erstellt"
177
+
178
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:47
179
+ msgid "Could not create the rule"
180
+ msgstr "Regel konnte nicht erstellt werden"
181
+
182
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:54
183
+ msgid "Rule updated"
184
+ msgstr "Regel aktualisiert"
185
+
186
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:55
187
+ msgid "Could not update the rule"
188
+ msgstr "Regel konnte nicht aktualisiert werden"
189
+
190
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:62
191
+ msgid "Rule deleted"
192
+ msgstr "Regel gelöscht"
193
+
194
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:63
195
+ msgid "Could not delete the rule"
196
+ msgstr "Regel konnte nicht gelöscht werden"
197
+
198
+ #: lib/hammer_cli_foreman_discovery.rb:7
199
+ msgid "Manipulate discovered hosts."
200
+ msgstr "Entdeckte Hosts bearbeiten"
201
+
202
+ #: lib/hammer_cli_foreman_discovery.rb:11
203
+ msgid "Manipulate discovered rules."
204
+ msgstr "Entdeckte Regeln bearbeiten"
@@ -0,0 +1,197 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer_cli_foreman_discovery package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: hammer_cli_foreman_discovery 0.0.2\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "PO-Revision-Date: 2015-01-21 12:06+0200\n"
11
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12
+ "Language-Team: LANGUAGE <LL@li.org>\n"
13
+ "Language: \n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
+
19
+ #: lib/hammer_cli_foreman_discovery.rb:7
20
+ msgid "Manipulate discovered hosts."
21
+ msgstr ""
22
+
23
+ #: lib/hammer_cli_foreman_discovery.rb:11
24
+ msgid "Manipulate discovered rules."
25
+ msgstr ""
26
+
27
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:12 lib/hammer_cli_foreman_discovery/discovery_rule.rb:23
28
+ msgid "ID"
29
+ msgstr ""
30
+
31
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:13 lib/hammer_cli_foreman_discovery/discovery_rule.rb:24
32
+ msgid "Name"
33
+ msgstr ""
34
+
35
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:14
36
+ msgid "MAC"
37
+ msgstr ""
38
+
39
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:15
40
+ msgid "Last report"
41
+ msgstr ""
42
+
43
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:16
44
+ msgid "CPUs"
45
+ msgstr ""
46
+
47
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:17
48
+ msgid "Memory"
49
+ msgstr ""
50
+
51
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:18
52
+ msgid "Disk count"
53
+ msgstr ""
54
+
55
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:19
56
+ msgid "Disks size"
57
+ msgstr ""
58
+
59
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:20
60
+ msgid "Subnet"
61
+ msgstr ""
62
+
63
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:21
64
+ msgid "Last Report"
65
+ msgstr ""
66
+
67
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:29
68
+ msgid "IP"
69
+ msgstr ""
70
+
71
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:30
72
+ msgid "Model"
73
+ msgstr ""
74
+
75
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:31
76
+ msgid "Organization"
77
+ msgstr ""
78
+
79
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:32
80
+ msgid "Location"
81
+ msgstr ""
82
+
83
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:42
84
+ msgid "Fact"
85
+ msgstr ""
86
+
87
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:43
88
+ msgid "Value"
89
+ msgstr ""
90
+
91
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:60
92
+ msgid "Host deleted"
93
+ msgstr ""
94
+
95
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:61
96
+ msgid "Could not delete the host"
97
+ msgstr ""
98
+
99
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:69 lib/hammer_cli_foreman_discovery/discovery.rb:123
100
+ msgid "Host created"
101
+ msgstr ""
102
+
103
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:70 lib/hammer_cli_foreman_discovery/discovery.rb:124
104
+ msgid "Could not create the host"
105
+ msgstr ""
106
+
107
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:88
108
+ msgid "Host parameters"
109
+ msgstr ""
110
+
111
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:90
112
+ msgid "Interface parameters"
113
+ msgstr ""
114
+
115
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:99
116
+ msgid "Enter the root password for the host:"
117
+ msgstr ""
118
+
119
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:122
120
+ msgid "Auto provision a host"
121
+ msgstr ""
122
+
123
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:132
124
+ msgid "Reboot a host"
125
+ msgstr ""
126
+
127
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:133
128
+ msgid "Host reboot started"
129
+ msgstr ""
130
+
131
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:134
132
+ msgid "Could not reboot the host"
133
+ msgstr ""
134
+
135
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:142
136
+ msgid "Refresh the facts of a host"
137
+ msgstr ""
138
+
139
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:143
140
+ msgid "Host facts refreshed"
141
+ msgstr ""
142
+
143
+ #: lib/hammer_cli_foreman_discovery/discovery.rb:144
144
+ msgid "Could not refresh the facts of the host"
145
+ msgstr ""
146
+
147
+ #: lib/hammer_cli_foreman_discovery/discovery_references.rb:6
148
+ msgid "Hosts"
149
+ msgstr ""
150
+
151
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:25
152
+ msgid "Priority"
153
+ msgstr ""
154
+
155
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:26
156
+ msgid "Search"
157
+ msgstr ""
158
+
159
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:27
160
+ msgid "Host Group"
161
+ msgstr ""
162
+
163
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:28
164
+ msgid "Hosts Limit"
165
+ msgstr ""
166
+
167
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:29
168
+ msgid "Enabled"
169
+ msgstr ""
170
+
171
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:38
172
+ msgid "Hostname template"
173
+ msgstr ""
174
+
175
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:46
176
+ msgid "Rule created"
177
+ msgstr ""
178
+
179
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:47
180
+ msgid "Could not create the rule"
181
+ msgstr ""
182
+
183
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:54
184
+ msgid "Rule updated"
185
+ msgstr ""
186
+
187
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:55
188
+ msgid "Could not update the rule"
189
+ msgstr ""
190
+
191
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:62
192
+ msgid "Rule deleted"
193
+ msgstr ""
194
+
195
+ #: lib/hammer_cli_foreman_discovery/discovery_rule.rb:63
196
+ msgid "Could not delete the rule"
197
+ msgstr ""