hammer_cli_foreman 0.1.4 → 0.2.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 (85) hide show
  1. checksums.yaml +4 -4
  2. data/config/foreman.yml +16 -0
  3. data/doc/host_create.md +102 -54
  4. data/doc/release_notes.md +20 -0
  5. data/lib/hammer_cli_foreman.rb +8 -0
  6. data/lib/hammer_cli_foreman/commands.rb +33 -9
  7. data/lib/hammer_cli_foreman/compute_resource.rb +13 -2
  8. data/lib/hammer_cli_foreman/domain.rb +24 -1
  9. data/lib/hammer_cli_foreman/environment.rb +1 -2
  10. data/lib/hammer_cli_foreman/host.rb +131 -73
  11. data/lib/hammer_cli_foreman/hostgroup.rb +18 -8
  12. data/lib/hammer_cli_foreman/i18n.rb +2 -6
  13. data/lib/hammer_cli_foreman/id_resolver.rb +41 -6
  14. data/lib/hammer_cli_foreman/interface.rb +165 -0
  15. data/lib/hammer_cli_foreman/output/fields.rb +7 -0
  16. data/lib/hammer_cli_foreman/output/formatters.rb +3 -5
  17. data/lib/hammer_cli_foreman/puppet_class.rb +16 -2
  18. data/lib/hammer_cli_foreman/settings.rb +37 -0
  19. data/lib/hammer_cli_foreman/smart_class_parameter.rb +75 -11
  20. data/lib/hammer_cli_foreman/smart_variable.rb +146 -0
  21. data/lib/hammer_cli_foreman/user.rb +9 -3
  22. data/lib/hammer_cli_foreman/version.rb +1 -1
  23. data/locale/Makefile +9 -17
  24. data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  25. data/locale/de/hammer-cli-foreman.edit.po +2403 -0
  26. data/locale/de/hammer-cli-foreman.po +302 -355
  27. data/locale/de/hammer-cli-foreman.po.time_stamp +0 -0
  28. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  29. data/locale/en/hammer-cli-foreman.edit.po +2260 -0
  30. data/locale/en/hammer-cli-foreman.po +946 -823
  31. data/locale/en/hammer-cli-foreman.po.time_stamp +0 -0
  32. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  33. data/locale/en_GB/hammer-cli-foreman.edit.po +2267 -0
  34. data/locale/en_GB/hammer-cli-foreman.po +297 -351
  35. data/locale/en_GB/hammer-cli-foreman.po.time_stamp +0 -0
  36. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  37. data/locale/es/hammer-cli-foreman.edit.po +2427 -0
  38. data/locale/es/hammer-cli-foreman.po +301 -354
  39. data/locale/es/hammer-cli-foreman.po.time_stamp +0 -0
  40. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  41. data/locale/fr/hammer-cli-foreman.edit.po +2427 -0
  42. data/locale/fr/hammer-cli-foreman.po +299 -353
  43. data/locale/fr/hammer-cli-foreman.po.time_stamp +0 -0
  44. data/locale/hammer-cli-foreman.pot +1413 -1112
  45. data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  46. data/locale/it/hammer-cli-foreman.edit.po +2402 -0
  47. data/locale/it/hammer-cli-foreman.po +299 -353
  48. data/locale/it/hammer-cli-foreman.po.time_stamp +0 -0
  49. data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  50. data/locale/ja/hammer-cli-foreman.edit.po +2401 -0
  51. data/locale/ja/hammer-cli-foreman.po +338 -391
  52. data/locale/ja/hammer-cli-foreman.po.time_stamp +0 -0
  53. data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  54. data/locale/ko/hammer-cli-foreman.edit.po +2401 -0
  55. data/locale/ko/hammer-cli-foreman.po +299 -353
  56. data/locale/ko/hammer-cli-foreman.po.time_stamp +0 -0
  57. data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  58. data/locale/pt_BR/hammer-cli-foreman.edit.po +2417 -0
  59. data/locale/pt_BR/hammer-cli-foreman.po +312 -365
  60. data/locale/pt_BR/hammer-cli-foreman.po.time_stamp +0 -0
  61. data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  62. data/locale/ru/hammer-cli-foreman.edit.po +2401 -0
  63. data/locale/ru/hammer-cli-foreman.po +300 -354
  64. data/locale/ru/hammer-cli-foreman.po.time_stamp +0 -0
  65. data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  66. data/locale/zh_CN/hammer-cli-foreman.edit.po +2400 -0
  67. data/locale/zh_CN/hammer-cli-foreman.po +299 -353
  68. data/locale/zh_CN/hammer-cli-foreman.po.time_stamp +0 -0
  69. data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  70. data/locale/zh_TW/hammer-cli-foreman.edit.po +2400 -0
  71. data/locale/zh_TW/hammer-cli-foreman.po +299 -353
  72. data/locale/zh_TW/hammer-cli-foreman.po.time_stamp +0 -0
  73. data/test/unit/apipie_resource_mock.rb +7 -0
  74. data/test/unit/commands_test.rb +42 -0
  75. data/test/unit/data/1.7/foreman_api.json +1 -0
  76. data/test/unit/dependency_resolver_test.rb +4 -2
  77. data/test/unit/environment_test.rb +2 -2
  78. data/test/unit/host_test.rb +50 -27
  79. data/test/unit/hostgroup_test.rb +19 -3
  80. data/test/unit/media_test.rb +2 -2
  81. data/test/unit/puppet_class_test.rb +17 -2
  82. data/test/unit/smart_class_parameter_test.rb +26 -2
  83. data/test/unit/smart_variable_test.rb +134 -0
  84. data/test/unit/test_helper.rb +1 -1
  85. metadata +36 -4
File without changes
@@ -6,10 +6,10 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: hammer-cli-foreman 0.1.4\n"
9
+ "Project-Id-Version: hammer-cli-foreman 0.2.0\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2014-12-11 13:21+0100\n"
12
- "PO-Revision-Date: 2014-03-04 16:47+0000\n"
11
+ "POT-Creation-Date: 2015-04-23 17:25+0200\n"
12
+ "PO-Revision-Date: 2015-04-23 17:25+0200\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -18,2096 +18,2397 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- #: lib/hammer_cli_foreman/report.rb:10 lib/hammer_cli_foreman/report.rb:30
22
- #: lib/hammer_cli_foreman/external_usergroup.rb:10
23
- #: lib/hammer_cli_foreman/organization.rb:13
24
- #: lib/hammer_cli_foreman/subnet.rb:10 lib/hammer_cli_foreman/model.rb:10
25
- #: lib/hammer_cli_foreman/role.rb:11 lib/hammer_cli_foreman/media.rb:9
26
- #: lib/hammer_cli_foreman/compute_resource.rb:11
27
- #: lib/hammer_cli_foreman/hostgroup.rb:46
28
- #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/host.rb:128
29
- #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
30
- #: lib/hammer_cli_foreman/operating_system.rb:10
31
- #: lib/hammer_cli_foreman/smart_proxy.rb:11
32
- #: lib/hammer_cli_foreman/environment.rb:14
33
- #: lib/hammer_cli_foreman/puppet_class.rb:12
34
- #: lib/hammer_cli_foreman/domain.rb:10
35
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:8
36
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:66
37
- #: lib/hammer_cli_foreman/usergroup.rb:11 lib/hammer_cli_foreman/image.rb:29
38
- #: lib/hammer_cli_foreman/partition_table.rb:10
39
- #: lib/hammer_cli_foreman/user.rb:10 lib/hammer_cli_foreman/filter.rb:9
40
- #: lib/hammer_cli_foreman/filter.rb:72 lib/hammer_cli_foreman/location.rb:13
41
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:13
42
- #: lib/hammer_cli_foreman/architecture.rb:10
43
- msgid "Id"
21
+ #: ../lib/hammer_cli_foreman.rb:30
22
+ msgid "Foreman connection login/logout."
44
23
  msgstr ""
45
24
 
46
- #: lib/hammer_cli_foreman/report.rb:11 lib/hammer_cli_foreman/report.rb:31
47
- #: lib/hammer_cli_foreman/fact.rb:12
48
- msgid "Host"
25
+ #: ../lib/hammer_cli_foreman.rb:34
26
+ msgid "Manipulate architectures."
49
27
  msgstr ""
50
28
 
51
- #: lib/hammer_cli_foreman/report.rb:12 lib/hammer_cli_foreman/host.rb:181
52
- msgid "Last report"
29
+ #: ../lib/hammer_cli_foreman.rb:38
30
+ msgid "Manipulate auth sources."
53
31
  msgstr ""
54
32
 
55
- #: lib/hammer_cli_foreman/report.rb:14 lib/hammer_cli_foreman/report.rb:35
56
- msgid "Applied"
33
+ #: ../lib/hammer_cli_foreman.rb:42
34
+ msgid "Manipulate compute resources."
57
35
  msgstr ""
58
36
 
59
- #: lib/hammer_cli_foreman/report.rb:15 lib/hammer_cli_foreman/report.rb:36
60
- msgid "Restarted"
37
+ #: ../lib/hammer_cli_foreman.rb:46
38
+ msgid "Manipulate domains."
61
39
  msgstr ""
62
40
 
63
- #: lib/hammer_cli_foreman/report.rb:16 lib/hammer_cli_foreman/report.rb:37
64
- msgid "Failed"
41
+ #: ../lib/hammer_cli_foreman.rb:50
42
+ msgid "Manipulate environments."
65
43
  msgstr ""
66
44
 
67
- #: lib/hammer_cli_foreman/report.rb:17 lib/hammer_cli_foreman/report.rb:38
68
- msgid "Restart Failures"
45
+ #: ../lib/hammer_cli_foreman.rb:54
46
+ msgid "Search facts."
69
47
  msgstr ""
70
48
 
71
- #: lib/hammer_cli_foreman/report.rb:18 lib/hammer_cli_foreman/report.rb:39
72
- msgid "Skipped"
49
+ #: ../lib/hammer_cli_foreman.rb:58
50
+ msgid "Manage permission filters."
73
51
  msgstr ""
74
52
 
75
- #: lib/hammer_cli_foreman/report.rb:19 lib/hammer_cli_foreman/report.rb:40
76
- msgid "Pending"
53
+ #: ../lib/hammer_cli_foreman.rb:62
54
+ msgid "Manipulate hosts."
77
55
  msgstr ""
78
56
 
79
- #: lib/hammer_cli_foreman/report.rb:32
80
- msgid "Reported at"
57
+ #: ../lib/hammer_cli_foreman.rb:66
58
+ msgid "Manipulate hostgroups."
81
59
  msgstr ""
82
60
 
83
- #: lib/hammer_cli_foreman/report.rb:33
84
- msgid "Report status"
61
+ #: ../lib/hammer_cli_foreman.rb:70
62
+ msgid "Manipulate locations."
85
63
  msgstr ""
86
64
 
87
- #: lib/hammer_cli_foreman/report.rb:43
88
- msgid "Report metrics"
65
+ #: ../lib/hammer_cli_foreman.rb:74
66
+ msgid "Manipulate installation media."
89
67
  msgstr ""
90
68
 
91
- #: lib/hammer_cli_foreman/report.rb:46
92
- msgid "config_retrieval"
69
+ #: ../lib/hammer_cli_foreman.rb:78
70
+ msgid "Manipulate hardware models."
93
71
  msgstr ""
94
72
 
95
- #: lib/hammer_cli_foreman/report.rb:47
96
- msgid "exec"
73
+ #: ../lib/hammer_cli_foreman.rb:82
74
+ msgid "Manipulate operating system."
97
75
  msgstr ""
98
76
 
99
- #: lib/hammer_cli_foreman/report.rb:48
100
- msgid "file"
77
+ #: ../lib/hammer_cli_foreman.rb:86
78
+ msgid "Manipulate organizations."
101
79
  msgstr ""
102
80
 
103
- #: lib/hammer_cli_foreman/report.rb:49
104
- msgid "package"
81
+ #: ../lib/hammer_cli_foreman.rb:90
82
+ msgid "Manipulate partition tables."
105
83
  msgstr ""
106
84
 
107
- #: lib/hammer_cli_foreman/report.rb:50
108
- msgid "service"
85
+ #: ../lib/hammer_cli_foreman.rb:94
86
+ msgid "Search puppet modules."
109
87
  msgstr ""
110
88
 
111
- #: lib/hammer_cli_foreman/report.rb:51
112
- msgid "user"
89
+ #: ../lib/hammer_cli_foreman.rb:98
90
+ msgid "Browse and read reports."
113
91
  msgstr ""
114
92
 
115
- #: lib/hammer_cli_foreman/report.rb:52
116
- msgid "yumrepo"
93
+ #: ../lib/hammer_cli_foreman.rb:102
94
+ msgid "Manage user roles."
117
95
  msgstr ""
118
96
 
119
- #: lib/hammer_cli_foreman/report.rb:53
120
- msgid "filebucket"
97
+ #: ../lib/hammer_cli_foreman.rb:106
98
+ msgid "Manipulate smart class parameters."
121
99
  msgstr ""
122
100
 
123
- #: lib/hammer_cli_foreman/report.rb:54
124
- msgid "cron"
101
+ #: ../lib/hammer_cli_foreman.rb:110
102
+ msgid "Manipulate smart variables."
125
103
  msgstr ""
126
104
 
127
- #: lib/hammer_cli_foreman/report.rb:55
128
- msgid "total"
105
+ #: ../lib/hammer_cli_foreman.rb:114
106
+ msgid "Manipulate smart proxies."
129
107
  msgstr ""
130
108
 
131
- #: lib/hammer_cli_foreman/report.rb:59
132
- msgid "Logs"
109
+ #: ../lib/hammer_cli_foreman.rb:118
110
+ msgid "Change server settings."
133
111
  msgstr ""
134
112
 
135
- #: lib/hammer_cli_foreman/report.rb:62 lib/hammer_cli_foreman/filter.rb:74
136
- msgid "Resource"
113
+ #: ../lib/hammer_cli_foreman.rb:122
114
+ msgid "Manipulate subnets."
137
115
  msgstr ""
138
116
 
139
- #: lib/hammer_cli_foreman/report.rb:65
140
- msgid "Message"
117
+ #: ../lib/hammer_cli_foreman.rb:126
118
+ msgid "Manipulate config templates."
141
119
  msgstr ""
142
120
 
143
- #: lib/hammer_cli_foreman/report.rb:76
144
- msgid "Report has been deleted"
121
+ #: ../lib/hammer_cli_foreman.rb:130
122
+ msgid "Manipulate users."
145
123
  msgstr ""
146
124
 
147
- #: lib/hammer_cli_foreman/report.rb:77
148
- msgid "Could not delete the report"
125
+ #: ../lib/hammer_cli_foreman.rb:134
126
+ msgid "Manage user groups."
149
127
  msgstr ""
150
128
 
151
- #: lib/hammer_cli_foreman/external_usergroup.rb:6
152
- msgid "View and manage user group's external user groups"
129
+ #: ../lib/hammer_cli_foreman/architecture.rb:10
130
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:13
131
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:20
132
+ #: ../lib/hammer_cli_foreman/domain.rb:31
133
+ #: ../lib/hammer_cli_foreman/environment.rb:14
134
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:10
135
+ #: ../lib/hammer_cli_foreman/filter.rb:9 ../lib/hammer_cli_foreman/filter.rb:72
136
+ #: ../lib/hammer_cli_foreman/host.rb:163 ../lib/hammer_cli_foreman/host.rb:200
137
+ #: ../lib/hammer_cli_foreman/host.rb:231
138
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:47
139
+ #: ../lib/hammer_cli_foreman/image.rb:29
140
+ #: ../lib/hammer_cli_foreman/interface.rb:23
141
+ #: ../lib/hammer_cli_foreman/interface.rb:43
142
+ #: ../lib/hammer_cli_foreman/location.rb:13
143
+ #: ../lib/hammer_cli_foreman/media.rb:9 ../lib/hammer_cli_foreman/model.rb:10
144
+ #: ../lib/hammer_cli_foreman/operating_system.rb:10
145
+ #: ../lib/hammer_cli_foreman/organization.rb:13
146
+ #: ../lib/hammer_cli_foreman/partition_table.rb:10
147
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:13
148
+ #: ../lib/hammer_cli_foreman/report.rb:10
149
+ #: ../lib/hammer_cli_foreman/report.rb:30 ../lib/hammer_cli_foreman/role.rb:11
150
+ #: ../lib/hammer_cli_foreman/settings.rb:11
151
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:8
152
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:74
153
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:11
154
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:8
155
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:62
156
+ #: ../lib/hammer_cli_foreman/subnet.rb:10
157
+ #: ../lib/hammer_cli_foreman/template.rb:25
158
+ #: ../lib/hammer_cli_foreman/user.rb:10
159
+ #: ../lib/hammer_cli_foreman/usergroup.rb:11
160
+ msgid "Id"
153
161
  msgstr ""
154
162
 
155
- #: lib/hammer_cli_foreman/external_usergroup.rb:11
156
- #: lib/hammer_cli_foreman/external_usergroup.rb:42
157
- #: lib/hammer_cli_foreman/organization.rb:14
158
- #: lib/hammer_cli_foreman/common_parameter.rb:12
159
- #: lib/hammer_cli_foreman/subnet.rb:11 lib/hammer_cli_foreman/model.rb:11
160
- #: lib/hammer_cli_foreman/role.rb:12 lib/hammer_cli_foreman/media.rb:10
161
- #: lib/hammer_cli_foreman/compute_resource.rb:12
162
- #: lib/hammer_cli_foreman/hostgroup.rb:47
163
- #: lib/hammer_cli_foreman/template.rb:26 lib/hammer_cli_foreman/template.rb:74
164
- #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:200
165
- #: lib/hammer_cli_foreman/host.rb:213
166
- #: lib/hammer_cli_foreman/operating_system.rb:22
167
- #: lib/hammer_cli_foreman/smart_proxy.rb:12
168
- #: lib/hammer_cli_foreman/environment.rb:15
169
- #: lib/hammer_cli_foreman/puppet_class.rb:13
170
- #: lib/hammer_cli_foreman/domain.rb:11 lib/hammer_cli_foreman/usergroup.rb:12
171
- #: lib/hammer_cli_foreman/image.rb:30 lib/hammer_cli_foreman/image.rb:70
172
- #: lib/hammer_cli_foreman/partition_table.rb:11
173
- #: lib/hammer_cli_foreman/user.rb:12 lib/hammer_cli_foreman/filter.rb:73
174
- #: lib/hammer_cli_foreman/filter.rb:90 lib/hammer_cli_foreman/location.rb:14
175
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:14
176
- #: lib/hammer_cli_foreman/architecture.rb:11
163
+ #: ../lib/hammer_cli_foreman/architecture.rb:11
164
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:14
165
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:12
166
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:21
167
+ #: ../lib/hammer_cli_foreman/domain.rb:32
168
+ #: ../lib/hammer_cli_foreman/environment.rb:15
169
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:11
170
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:42
171
+ #: ../lib/hammer_cli_foreman/filter.rb:73
172
+ #: ../lib/hammer_cli_foreman/filter.rb:90 ../lib/hammer_cli_foreman/host.rb:164
173
+ #: ../lib/hammer_cli_foreman/host.rb:202
174
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:48
175
+ #: ../lib/hammer_cli_foreman/image.rb:30 ../lib/hammer_cli_foreman/image.rb:70
176
+ #: ../lib/hammer_cli_foreman/location.rb:14
177
+ #: ../lib/hammer_cli_foreman/media.rb:10 ../lib/hammer_cli_foreman/model.rb:11
178
+ #: ../lib/hammer_cli_foreman/operating_system.rb:22
179
+ #: ../lib/hammer_cli_foreman/organization.rb:14
180
+ #: ../lib/hammer_cli_foreman/partition_table.rb:11
181
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:14
182
+ #: ../lib/hammer_cli_foreman/role.rb:12
183
+ #: ../lib/hammer_cli_foreman/settings.rb:12
184
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:12
185
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:10
186
+ #: ../lib/hammer_cli_foreman/subnet.rb:11
187
+ #: ../lib/hammer_cli_foreman/template.rb:26
188
+ #: ../lib/hammer_cli_foreman/template.rb:74
189
+ #: ../lib/hammer_cli_foreman/user.rb:12
190
+ #: ../lib/hammer_cli_foreman/usergroup.rb:12
177
191
  msgid "Name"
178
192
  msgstr ""
179
193
 
180
- #: lib/hammer_cli_foreman/external_usergroup.rb:12
181
- #: lib/hammer_cli_foreman/external_usergroup.rb:43
182
- msgid "Auth source"
194
+ #: ../lib/hammer_cli_foreman/architecture.rb:31
195
+ msgid "Architecture created"
183
196
  msgstr ""
184
197
 
185
- #: lib/hammer_cli_foreman/external_usergroup.rb:39
186
- msgid "Refresh external user group"
198
+ #: ../lib/hammer_cli_foreman/architecture.rb:32
199
+ msgid "Could not create the architecture"
187
200
  msgstr ""
188
201
 
189
- #: lib/hammer_cli_foreman/external_usergroup.rb:57
190
- msgid "External user group created"
202
+ #: ../lib/hammer_cli_foreman/architecture.rb:39
203
+ msgid "Architecture deleted"
191
204
  msgstr ""
192
205
 
193
- #: lib/hammer_cli_foreman/external_usergroup.rb:58
194
- msgid "Could not create external user group"
206
+ #: ../lib/hammer_cli_foreman/architecture.rb:40
207
+ msgid "Could not delete the architecture"
195
208
  msgstr ""
196
209
 
197
- #: lib/hammer_cli_foreman/external_usergroup.rb:65
198
- msgid "External user group updated"
210
+ #: ../lib/hammer_cli_foreman/architecture.rb:47
211
+ msgid "Architecture updated"
199
212
  msgstr ""
200
213
 
201
- #: lib/hammer_cli_foreman/external_usergroup.rb:66
202
- msgid "Could not update external user group"
214
+ #: ../lib/hammer_cli_foreman/architecture.rb:48
215
+ msgid "Could not update the architecture"
203
216
  msgstr ""
204
217
 
205
- #: lib/hammer_cli_foreman/external_usergroup.rb:73
206
- msgid "External user group deleted"
218
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:41
219
+ msgid "Associate a hostgroup"
207
220
  msgstr ""
208
221
 
209
- #: lib/hammer_cli_foreman/external_usergroup.rb:74
210
- msgid "Could not delete the external user group"
222
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:46
223
+ msgid "Disassociate a hostgroup"
211
224
  msgstr ""
212
225
 
213
- #: lib/hammer_cli_foreman/organization.rb:37
214
- #: lib/hammer_cli_foreman/references.rb:15
215
- msgid "Locations"
226
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:55
227
+ msgid "Associate an environment"
216
228
  msgstr ""
217
229
 
218
- #: lib/hammer_cli_foreman/organization.rb:53
219
- msgid "Organization created"
230
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:60
231
+ msgid "Disassociate an environment"
220
232
  msgstr ""
221
233
 
222
- #: lib/hammer_cli_foreman/organization.rb:54
223
- msgid "Could not create the organization"
234
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:69
235
+ msgid "Associate a domain"
224
236
  msgstr ""
225
237
 
226
- #: lib/hammer_cli_foreman/organization.rb:65
227
- msgid "Organization updated"
238
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:74
239
+ msgid "Disassociate a domain"
228
240
  msgstr ""
229
241
 
230
- #: lib/hammer_cli_foreman/organization.rb:66
231
- msgid "Could not update the organization"
242
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:83
243
+ msgid "Associate a medium"
232
244
  msgstr ""
233
245
 
234
- #: lib/hammer_cli_foreman/organization.rb:77
235
- msgid "Organization deleted"
246
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:88
247
+ msgid "Disassociate a medium"
236
248
  msgstr ""
237
249
 
238
- #: lib/hammer_cli_foreman/organization.rb:78
239
- msgid "Could not delete the organization"
250
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:97
251
+ msgid "Associate a subnet"
252
+ msgstr ""
253
+
254
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:102
255
+ msgid "Disassociate a subnet"
256
+ msgstr ""
257
+
258
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:111
259
+ msgid "Associate a compute resource"
260
+ msgstr ""
261
+
262
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:116
263
+ msgid "Disassociate a compute resource"
264
+ msgstr ""
265
+
266
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:125
267
+ msgid "Associate a smart proxy"
268
+ msgstr ""
269
+
270
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:134
271
+ msgid "Disassociate a smart proxy"
272
+ msgstr ""
273
+
274
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:147
275
+ msgid "Associate an user"
276
+ msgstr ""
277
+
278
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:155
279
+ msgid "Disassociate an user"
280
+ msgstr ""
281
+
282
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:167
283
+ msgid "Associate an user group"
284
+ msgstr ""
285
+
286
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:177
287
+ msgid "Disassociate an user group"
288
+ msgstr ""
289
+
290
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:191
291
+ msgid "Associate a configuration template"
292
+ msgstr ""
293
+
294
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:196
295
+ msgid "Disassociate a configuration template"
296
+ msgstr ""
297
+
298
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:205
299
+ msgid "Associate an organization"
300
+ msgstr ""
301
+
302
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:210
303
+ msgid "Disassociate an organization"
304
+ msgstr ""
305
+
306
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:219
307
+ msgid "Associate an operating system"
308
+ msgstr ""
309
+
310
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:221
311
+ msgid "Operating system has been associated"
312
+ msgstr ""
313
+
314
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:222
315
+ msgid "Could not associate the operating system"
316
+ msgstr ""
317
+
318
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:228
319
+ msgid "Disassociate an operating system"
320
+ msgstr ""
321
+
322
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:230
323
+ msgid "Operating system has been disassociated"
240
324
  msgstr ""
241
325
 
242
- #: lib/hammer_cli_foreman/common_parameter.rb:13
243
- #: lib/hammer_cli_foreman/fact.rb:14 lib/hammer_cli_foreman/host.rb:286
244
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:65
245
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:68
326
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:231
327
+ msgid "Could not disassociate the operating system"
328
+ msgstr ""
329
+
330
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:240
331
+ msgid "Associate an architecture"
332
+ msgstr ""
333
+
334
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:242
335
+ msgid "Architecture has been associated"
336
+ msgstr ""
337
+
338
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:243
339
+ msgid "Could not associate the architecture"
340
+ msgstr ""
341
+
342
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:249
343
+ msgid "Disassociate an architecture"
344
+ msgstr ""
345
+
346
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:251
347
+ msgid "Architecture has been disassociated"
348
+ msgstr ""
349
+
350
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:252
351
+ msgid "Could not disassociate the architecture"
352
+ msgstr ""
353
+
354
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:261
355
+ msgid "Associate a partition table"
356
+ msgstr ""
357
+
358
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:263
359
+ msgid "Partition table has been associated"
360
+ msgstr ""
361
+
362
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:264
363
+ msgid "Could not associate the partition table"
364
+ msgstr ""
365
+
366
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:270
367
+ msgid "Disassociate a partition table"
368
+ msgstr ""
369
+
370
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:272
371
+ msgid "Partition table has been disassociated"
372
+ msgstr ""
373
+
374
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:273
375
+ msgid "Could not disassociate the partition table"
376
+ msgstr ""
377
+
378
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:282
379
+ msgid "Assign a user role"
380
+ msgstr ""
381
+
382
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:284
383
+ msgid "User role has been assigned"
384
+ msgstr ""
385
+
386
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:285
387
+ msgid "Could not assign the user role"
388
+ msgstr ""
389
+
390
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:291
391
+ msgid "Remove a user role"
392
+ msgstr ""
393
+
394
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:293
395
+ msgid "User role has been removed"
396
+ msgstr ""
397
+
398
+ #: ../lib/hammer_cli_foreman/associating_commands.rb:294
399
+ msgid "Could not remove the user role"
400
+ msgstr ""
401
+
402
+ #: ../lib/hammer_cli_foreman/auth.rb:7
403
+ msgid "Set credentials"
404
+ msgstr ""
405
+
406
+ #: ../lib/hammer_cli_foreman/auth.rb:20
407
+ msgid "Wipe your credentials"
408
+ msgstr ""
409
+
410
+ #: ../lib/hammer_cli_foreman/auth.rb:26
411
+ msgid "Credentials deleted."
412
+ msgstr ""
413
+
414
+ #: ../lib/hammer_cli_foreman/auth.rb:33
415
+ msgid "Information about current connections"
416
+ msgstr ""
417
+
418
+ #: ../lib/hammer_cli_foreman/auth.rb:37
419
+ msgid "You are logged in as '%s'"
420
+ msgstr ""
421
+
422
+ #: ../lib/hammer_cli_foreman/auth.rb:39
423
+ msgid ""
424
+ "You are currently not logged in to any service.\n"
425
+ "Use the service to set credentials."
426
+ msgstr ""
427
+
428
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:7
429
+ msgid "Manage LDAP auth sources."
430
+ msgstr ""
431
+
432
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:15
433
+ msgid "LDAPS?"
434
+ msgstr ""
435
+
436
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:16
437
+ msgid "Port"
438
+ msgstr ""
439
+
440
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:17
441
+ msgid "Server Type"
442
+ msgstr ""
443
+
444
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:27
445
+ msgid "Account Username"
446
+ msgstr ""
447
+
448
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:28
449
+ msgid "Base DN"
450
+ msgstr ""
451
+
452
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:29
453
+ msgid "LDAP filter"
454
+ msgstr ""
455
+
456
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:30
457
+ msgid "Automatically Create Accounts?"
458
+ msgstr ""
459
+
460
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:31
461
+ msgid "Login Name Attribute"
462
+ msgstr ""
463
+
464
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:32
465
+ msgid "First Name Attribute"
466
+ msgstr ""
467
+
468
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:33
469
+ msgid "Last Name Attribute"
470
+ msgstr ""
471
+
472
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:34
473
+ msgid "Email Address Attribute"
474
+ msgstr ""
475
+
476
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:35
477
+ msgid "Photo Attribute"
478
+ msgstr ""
479
+
480
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:43
481
+ msgid "Auth source created"
482
+ msgstr ""
483
+
484
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:44
485
+ msgid "Could not create the Auth Source"
486
+ msgstr ""
487
+
488
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:51
489
+ msgid "Auth source deleted"
490
+ msgstr ""
491
+
492
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:52
493
+ msgid "Could not delete the Auth Source"
494
+ msgstr ""
495
+
496
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:59
497
+ msgid "Auth source updated"
498
+ msgstr ""
499
+
500
+ #: ../lib/hammer_cli_foreman/auth_source_ldap.rb:60
501
+ msgid "Could not update the Auth Source"
502
+ msgstr ""
503
+
504
+ #: ../lib/hammer_cli_foreman/commands.rb:83
505
+ msgid "Received data of unknown format"
506
+ msgstr ""
507
+
508
+ #: ../lib/hammer_cli_foreman/commands.rb:191
509
+ msgid ""
510
+ "Could not find %{resource}. Some search options were missing, please see --hel"
511
+ "p."
512
+ msgstr ""
513
+
514
+ #: ../lib/hammer_cli_foreman/commands.rb:193
515
+ msgid "Could not find %{resource}, please set option %{switches}."
516
+ msgstr ""
517
+
518
+ #: ../lib/hammer_cli_foreman/commands.rb:195
519
+ msgid "Could not find %{resource}, please set one of options %{switches}."
520
+ msgstr ""
521
+
522
+ #: ../lib/hammer_cli_foreman/commands.rb:313
523
+ msgid "List next page? (%s): "
524
+ msgstr ""
525
+
526
+ #: ../lib/hammer_cli_foreman/commands.rb:516
527
+ msgid "Associate a resource"
528
+ msgstr ""
529
+
530
+ #: ../lib/hammer_cli_foreman/commands.rb:538
531
+ msgid "Disassociate a resource"
532
+ msgstr ""
533
+
534
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:13
535
+ #: ../lib/hammer_cli_foreman/fact.rb:14 ../lib/hammer_cli_foreman/host.rb:327
536
+ #: ../lib/hammer_cli_foreman/settings.rb:13
537
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:76
538
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:64
246
539
  msgid "Value"
247
540
  msgstr ""
248
541
 
249
- #: lib/hammer_cli_foreman/common_parameter.rb:22
542
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:22
250
543
  msgid "Set a global parameter."
251
544
  msgstr ""
252
545
 
253
- #: lib/hammer_cli_foreman/common_parameter.rb:24
546
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:24
254
547
  msgid "Created parameter [%{name}] with value [%{value}]."
255
548
  msgstr ""
256
549
 
257
- #: lib/hammer_cli_foreman/common_parameter.rb:25
550
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:25
258
551
  msgid "Parameter [%{name}] updated to [%{value}]."
259
552
  msgstr ""
260
553
 
261
- #: lib/hammer_cli_foreman/common_parameter.rb:27
262
- #: lib/hammer_cli_foreman/parameter.rb:49
263
- #: lib/hammer_cli_foreman/parameter.rb:96
554
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:27
555
+ #: ../lib/hammer_cli_foreman/parameter.rb:49
556
+ #: ../lib/hammer_cli_foreman/parameter.rb:96
264
557
  msgid "parameter name"
265
558
  msgstr ""
266
559
 
267
- #: lib/hammer_cli_foreman/common_parameter.rb:28
268
- #: lib/hammer_cli_foreman/parameter.rb:50
560
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:28
561
+ #: ../lib/hammer_cli_foreman/parameter.rb:50
269
562
  msgid "parameter value"
270
563
  msgstr ""
271
564
 
272
- #: lib/hammer_cli_foreman/common_parameter.rb:53
565
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:53
273
566
  msgid "Global parameter [%{name}] deleted."
274
567
  msgstr ""
275
568
 
276
- #: lib/hammer_cli_foreman/common_parameter.rb:54
569
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:54
277
570
  msgid "Could not delete the global parameter [%{name}]"
278
571
  msgstr ""
279
572
 
280
- #: lib/hammer_cli_foreman/common_parameter.rb:67
281
- msgid "Manipulate global parameters."
573
+ #: ../lib/hammer_cli_foreman/common_parameter.rb:67
574
+ msgid "Manipulate global parameters."
575
+ msgstr ""
576
+
577
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:22
578
+ #: ../lib/hammer_cli_foreman/interface.rb:60
579
+ msgid "Provider"
580
+ msgstr ""
581
+
582
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:34
583
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:40
584
+ #: ../lib/hammer_cli_foreman/host.rb:201 ../lib/hammer_cli_foreman/image.rb:33
585
+ #: ../lib/hammer_cli_foreman/image.rb:71
586
+ msgid "UUID"
587
+ msgstr ""
588
+
589
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:37
590
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:47
591
+ msgid "Region"
592
+ msgstr ""
593
+
594
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:41
595
+ msgid "Server"
596
+ msgstr ""
597
+
598
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:44
599
+ msgid "Tenant"
600
+ msgstr ""
601
+
602
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:54
603
+ msgid "Url"
604
+ msgstr ""
605
+
606
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:55
607
+ #: ../lib/hammer_cli_foreman/domain.rb:42
608
+ #: ../lib/hammer_cli_foreman/settings.rb:14
609
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:61
610
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:51
611
+ msgid "Description"
612
+ msgstr ""
613
+
614
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:56
615
+ msgid "User"
616
+ msgstr ""
617
+
618
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:73
619
+ msgid "Compute resource created"
620
+ msgstr ""
621
+
622
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:74
623
+ msgid "Could not create the compute resource"
624
+ msgstr ""
625
+
626
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:85
627
+ msgid "Compute resource updated"
628
+ msgstr ""
629
+
630
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:86
631
+ msgid "Could not update the compute resource"
632
+ msgstr ""
633
+
634
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:93
635
+ msgid "Compute resource deleted"
636
+ msgstr ""
637
+
638
+ #: ../lib/hammer_cli_foreman/compute_resource.rb:94
639
+ msgid "Could not delete the compute resource"
640
+ msgstr ""
641
+
642
+ #: ../lib/hammer_cli_foreman/credentials.rb:26
643
+ msgid "[Foreman] Username: "
644
+ msgstr ""
645
+
646
+ #: ../lib/hammer_cli_foreman/credentials.rb:33
647
+ msgid "[Foreman] Password for %s: "
648
+ msgstr ""
649
+
650
+ #: ../lib/hammer_cli_foreman/domain.rb:6
651
+ msgid "ID of DNS proxy to use within this domain"
652
+ msgstr ""
653
+
654
+ #: ../lib/hammer_cli_foreman/domain.rb:7
655
+ msgid "Name of DNS proxy to use within this domain"
656
+ msgstr ""
657
+
658
+ #: ../lib/hammer_cli_foreman/domain.rb:43
659
+ msgid "DNS Id"
660
+ msgstr ""
661
+
662
+ #: ../lib/hammer_cli_foreman/domain.rb:57
663
+ msgid "Domain [%{name}] created"
664
+ msgstr ""
665
+
666
+ #: ../lib/hammer_cli_foreman/domain.rb:58
667
+ msgid "Could not create the domain"
668
+ msgstr ""
669
+
670
+ #: ../lib/hammer_cli_foreman/domain.rb:60
671
+ #: ../lib/hammer_cli_foreman/domain.rb:71
672
+ msgid "Full name describing the domain"
673
+ msgstr ""
674
+
675
+ #: ../lib/hammer_cli_foreman/domain.rb:68
676
+ msgid "Domain [%{name}] updated"
677
+ msgstr ""
678
+
679
+ #: ../lib/hammer_cli_foreman/domain.rb:69
680
+ msgid "Could not update the domain"
681
+ msgstr ""
682
+
683
+ #: ../lib/hammer_cli_foreman/domain.rb:78
684
+ msgid "Domain [%{name}] deleted"
685
+ msgstr ""
686
+
687
+ #: ../lib/hammer_cli_foreman/domain.rb:79
688
+ msgid "Could not delete the domain"
282
689
  msgstr ""
283
690
 
284
- #: lib/hammer_cli_foreman/subnet.rb:12
285
- msgid "Network"
691
+ #: ../lib/hammer_cli_foreman/domain.rb:86
692
+ msgid "Create or update parameter for a domain."
286
693
  msgstr ""
287
694
 
288
- #: lib/hammer_cli_foreman/subnet.rb:13
289
- msgid "Mask"
695
+ #: ../lib/hammer_cli_foreman/domain.rb:88
696
+ msgid "Domain parameter updated"
290
697
  msgstr ""
291
698
 
292
- #: lib/hammer_cli_foreman/subnet.rb:23
293
- msgid "Priority"
699
+ #: ../lib/hammer_cli_foreman/domain.rb:89
700
+ msgid "New domain parameter created"
294
701
  msgstr ""
295
702
 
296
- #: lib/hammer_cli_foreman/subnet.rb:24
297
- msgid "DNS"
703
+ #: ../lib/hammer_cli_foreman/domain.rb:90
704
+ msgid "Could not set domain parameter"
298
705
  msgstr ""
299
706
 
300
- #: lib/hammer_cli_foreman/subnet.rb:25
301
- msgid "Primary DNS"
707
+ #: ../lib/hammer_cli_foreman/domain.rb:102
708
+ msgid "Delete parameter for a domain."
302
709
  msgstr ""
303
710
 
304
- #: lib/hammer_cli_foreman/subnet.rb:26
305
- msgid "Secondary DNS"
711
+ #: ../lib/hammer_cli_foreman/domain.rb:104
712
+ msgid "Domain parameter deleted"
306
713
  msgstr ""
307
714
 
308
- #: lib/hammer_cli_foreman/subnet.rb:27
309
- msgid "TFTP"
715
+ #: ../lib/hammer_cli_foreman/environment.rb:34
716
+ msgid "Environment created"
310
717
  msgstr ""
311
718
 
312
- #: lib/hammer_cli_foreman/subnet.rb:28
313
- msgid "DHCP"
719
+ #: ../lib/hammer_cli_foreman/environment.rb:35
720
+ msgid "Could not create the environment"
314
721
  msgstr ""
315
722
 
316
- #: lib/hammer_cli_foreman/subnet.rb:30
317
- msgid "VLAN ID"
723
+ #: ../lib/hammer_cli_foreman/environment.rb:42
724
+ msgid "Environment updated"
318
725
  msgstr ""
319
726
 
320
- #: lib/hammer_cli_foreman/subnet.rb:31
321
- msgid "Gateway"
727
+ #: ../lib/hammer_cli_foreman/environment.rb:43
728
+ msgid "Could not update the environment"
322
729
  msgstr ""
323
730
 
324
- #: lib/hammer_cli_foreman/subnet.rb:32
325
- msgid "From"
731
+ #: ../lib/hammer_cli_foreman/environment.rb:50
732
+ msgid "Environment deleted"
326
733
  msgstr ""
327
734
 
328
- #: lib/hammer_cli_foreman/subnet.rb:33
329
- msgid "To"
735
+ #: ../lib/hammer_cli_foreman/environment.rb:51
736
+ msgid "Could not delete the environment"
330
737
  msgstr ""
331
738
 
332
- #: lib/hammer_cli_foreman/subnet.rb:44
333
- msgid "Subnet created"
739
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:41
740
+ msgid "Forbidden - server refused to process the request"
334
741
  msgstr ""
335
742
 
336
- #: lib/hammer_cli_foreman/subnet.rb:45
337
- msgid "Could not create the subnet"
743
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:75
744
+ msgid "Could not load the API description from the server"
338
745
  msgstr ""
339
746
 
340
- #: lib/hammer_cli_foreman/subnet.rb:53
341
- msgid "Subnet updated"
747
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:76
748
+ msgid "is the server down?"
342
749
  msgstr ""
343
750
 
344
- #: lib/hammer_cli_foreman/subnet.rb:54
345
- msgid "Could not update the subnet"
751
+ #: ../lib/hammer_cli_foreman/exception_handler.rb:77
752
+ msgid ""
753
+ "was '%s' run on the server when using apipie cache? (typical production settin"
754
+ "gs)"
346
755
  msgstr ""
347
756
 
348
- #: lib/hammer_cli_foreman/subnet.rb:62
349
- msgid "Subnet deleted"
757
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:6
758
+ msgid "View and manage user group's external user groups"
350
759
  msgstr ""
351
760
 
352
- #: lib/hammer_cli_foreman/subnet.rb:63
353
- msgid "Could not delete the subnet"
761
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:12
762
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:43
763
+ msgid "Auth source"
354
764
  msgstr ""
355
765
 
356
- #: lib/hammer_cli_foreman/model.rb:12
357
- msgid "Vendor class"
766
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:39
767
+ msgid "Refresh external user group"
358
768
  msgstr ""
359
769
 
360
- #: lib/hammer_cli_foreman/model.rb:13
361
- msgid "HW model"
770
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:57
771
+ msgid "External user group created"
362
772
  msgstr ""
363
773
 
364
- #: lib/hammer_cli_foreman/model.rb:22
365
- msgid "Info"
774
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:58
775
+ msgid "Could not create external user group"
366
776
  msgstr ""
367
777
 
368
- #: lib/hammer_cli_foreman/model.rb:31
369
- msgid "Hardware model created"
778
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:65
779
+ msgid "External user group updated"
370
780
  msgstr ""
371
781
 
372
- #: lib/hammer_cli_foreman/model.rb:32
373
- msgid "Could not create the hardware model"
782
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:66
783
+ msgid "Could not update external user group"
374
784
  msgstr ""
375
785
 
376
- #: lib/hammer_cli_foreman/model.rb:38
377
- msgid "Hardware model deleted"
786
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:73
787
+ msgid "External user group deleted"
378
788
  msgstr ""
379
789
 
380
- #: lib/hammer_cli_foreman/model.rb:39
381
- msgid "Could not delete the hardware model"
790
+ #: ../lib/hammer_cli_foreman/external_usergroup.rb:74
791
+ msgid "Could not delete the external user group"
382
792
  msgstr ""
383
793
 
384
- #: lib/hammer_cli_foreman/model.rb:46
385
- msgid "Hardware model updated"
794
+ #: ../lib/hammer_cli_foreman/fact.rb:12 ../lib/hammer_cli_foreman/report.rb:11
795
+ #: ../lib/hammer_cli_foreman/report.rb:31
796
+ msgid "Host"
386
797
  msgstr ""
387
798
 
388
- #: lib/hammer_cli_foreman/model.rb:47
389
- msgid "Could not update the hardware model"
799
+ #: ../lib/hammer_cli_foreman/fact.rb:13 ../lib/hammer_cli_foreman/host.rb:326
800
+ msgid "Fact"
390
801
  msgstr ""
391
802
 
392
- #: lib/hammer_cli_foreman/role.rb:23
393
- msgid "User role id"
803
+ #: ../lib/hammer_cli_foreman/filter.rb:10
804
+ msgid "Resource type"
394
805
  msgstr ""
395
806
 
396
- #: lib/hammer_cli_foreman/role.rb:33 lib/hammer_cli_foreman/filter.rb:18
397
- #: lib/hammer_cli_foreman/filter.rb:34 lib/hammer_cli_foreman/filter.rb:78
398
- msgid "(Miscellaneous)"
807
+ #: ../lib/hammer_cli_foreman/filter.rb:11
808
+ msgid "Search"
399
809
  msgstr ""
400
810
 
401
- #: lib/hammer_cli_foreman/role.rb:34 lib/hammer_cli_foreman/filter.rb:19
402
- #: lib/hammer_cli_foreman/filter.rb:35
403
- msgid "none"
811
+ #: ../lib/hammer_cli_foreman/filter.rb:12
812
+ msgid "Unlimited?"
404
813
  msgstr ""
405
814
 
406
- #: lib/hammer_cli_foreman/role.rb:47
407
- msgid "User role [%<name>s] created"
815
+ #: ../lib/hammer_cli_foreman/filter.rb:13
816
+ msgid "Role"
408
817
  msgstr ""
409
818
 
410
- #: lib/hammer_cli_foreman/role.rb:48
411
- msgid "Could not create the user role"
819
+ #: ../lib/hammer_cli_foreman/filter.rb:14
820
+ msgid "Permissions"
412
821
  msgstr ""
413
822
 
414
- #: lib/hammer_cli_foreman/role.rb:55
415
- msgid "User role [%<name>s] updated"
823
+ #: ../lib/hammer_cli_foreman/filter.rb:18
824
+ #: ../lib/hammer_cli_foreman/filter.rb:34
825
+ #: ../lib/hammer_cli_foreman/filter.rb:78 ../lib/hammer_cli_foreman/role.rb:33
826
+ msgid "(Miscellaneous)"
416
827
  msgstr ""
417
828
 
418
- #: lib/hammer_cli_foreman/role.rb:56
419
- msgid "Could not update the user role"
829
+ #: ../lib/hammer_cli_foreman/filter.rb:19
830
+ #: ../lib/hammer_cli_foreman/filter.rb:35 ../lib/hammer_cli_foreman/role.rb:34
831
+ msgid "none"
420
832
  msgstr ""
421
833
 
422
- #: lib/hammer_cli_foreman/role.rb:63
423
- msgid "User role [%<name>s] deleted"
834
+ #: ../lib/hammer_cli_foreman/filter.rb:44
835
+ msgid "Permission filter for [%<resource_type>s] created"
424
836
  msgstr ""
425
837
 
426
- #: lib/hammer_cli_foreman/role.rb:64
427
- msgid "Could not delete the user roles"
838
+ #: ../lib/hammer_cli_foreman/filter.rb:45
839
+ msgid "Could not create the permission filter"
428
840
  msgstr ""
429
841
 
430
- #: lib/hammer_cli_foreman/fact.rb:13 lib/hammer_cli_foreman/host.rb:285
431
- msgid "Fact"
842
+ #: ../lib/hammer_cli_foreman/filter.rb:52
843
+ msgid "Permission filter for [%<resource_type>s] updated"
432
844
  msgstr ""
433
845
 
434
- #: lib/hammer_cli_foreman/media.rb:11
435
- msgid "Path"
846
+ #: ../lib/hammer_cli_foreman/filter.rb:53
847
+ msgid "Could not update the permission filter"
436
848
  msgstr ""
437
849
 
438
- #: lib/hammer_cli_foreman/media.rb:20
439
- #: lib/hammer_cli_foreman/partition_table.rb:12
440
- msgid "OS Family"
850
+ #: ../lib/hammer_cli_foreman/filter.rb:60
851
+ msgid "Permission filter deleted"
441
852
  msgstr ""
442
853
 
443
- #: lib/hammer_cli_foreman/media.rb:32
444
- msgid "Installation medium created"
854
+ #: ../lib/hammer_cli_foreman/filter.rb:61
855
+ msgid "Could not delete the permission filter"
445
856
  msgstr ""
446
857
 
447
- #: lib/hammer_cli_foreman/media.rb:33
448
- msgid "Could not create the installation medium"
858
+ #: ../lib/hammer_cli_foreman/filter.rb:74
859
+ #: ../lib/hammer_cli_foreman/report.rb:62
860
+ msgid "Resource"
449
861
  msgstr ""
450
862
 
451
- #: lib/hammer_cli_foreman/media.rb:41
452
- msgid "Installation medium updated"
863
+ #: ../lib/hammer_cli_foreman/host.rb:15
864
+ msgid "Login of the owner"
453
865
  msgstr ""
454
866
 
455
- #: lib/hammer_cli_foreman/media.rb:42
456
- msgid "Could not update the installation media"
867
+ #: ../lib/hammer_cli_foreman/host.rb:17
868
+ msgid "ID of the owner"
457
869
  msgstr ""
458
870
 
459
- #: lib/hammer_cli_foreman/media.rb:50
460
- msgid "Installation medium deleted"
871
+ #: ../lib/hammer_cli_foreman/host.rb:42
872
+ msgid "Host parameters."
461
873
  msgstr ""
462
874
 
463
- #: lib/hammer_cli_foreman/media.rb:51
464
- msgid "Could not delete the installation media"
875
+ #: ../lib/hammer_cli_foreman/host.rb:44
876
+ msgid "Compute resource attributes."
465
877
  msgstr ""
466
878
 
467
- #: lib/hammer_cli_foreman/exception_handler.rb:41
468
- msgid "Forbidden - server refused to process the request"
879
+ #: ../lib/hammer_cli_foreman/host.rb:46
880
+ msgid "Volume parameters"
469
881
  msgstr ""
470
882
 
471
- #: lib/hammer_cli_foreman/exception_handler.rb:75
472
- msgid "Could not load the API description from the server"
883
+ #: ../lib/hammer_cli_foreman/host.rb:48
884
+ msgid "Interface parameters."
473
885
  msgstr ""
474
886
 
475
- #: lib/hammer_cli_foreman/exception_handler.rb:76
476
- msgid "is the server down?"
887
+ #: ../lib/hammer_cli_foreman/host.rb:146
888
+ msgid "At least one interface must be set as primary"
477
889
  msgstr ""
478
890
 
479
- #: lib/hammer_cli_foreman/exception_handler.rb:77
480
- msgid ""
481
- "was '%s' run on the server when using apipie cache? (typical production "
482
- "settings)"
891
+ #: ../lib/hammer_cli_foreman/host.rb:149
892
+ msgid "At least one interface must be set as provision"
483
893
  msgstr ""
484
894
 
485
- #: lib/hammer_cli_foreman/compute_resource.rb:13
486
- msgid "Provider"
895
+ #: ../lib/hammer_cli_foreman/host.rb:165 ../lib/hammer_cli_foreman/host.rb:241
896
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:50
897
+ #: ../lib/hammer_cli_foreman/image.rb:31
898
+ msgid "Operating System"
487
899
  msgstr ""
488
900
 
489
- #: lib/hammer_cli_foreman/compute_resource.rb:23
490
- #: lib/hammer_cli_foreman/compute_resource.rb:29
491
- #: lib/hammer_cli_foreman/host.rb:161 lib/hammer_cli_foreman/image.rb:33
492
- #: lib/hammer_cli_foreman/image.rb:71
493
- msgid "UUID"
901
+ #: ../lib/hammer_cli_foreman/host.rb:166 ../lib/hammer_cli_foreman/host.rb:205
902
+ msgid "Host Group"
494
903
  msgstr ""
495
904
 
496
- #: lib/hammer_cli_foreman/compute_resource.rb:26
497
- #: lib/hammer_cli_foreman/compute_resource.rb:36
498
- msgid "Region"
905
+ #: ../lib/hammer_cli_foreman/host.rb:167 ../lib/hammer_cli_foreman/host.rb:218
906
+ msgid "IP"
499
907
  msgstr ""
500
908
 
501
- #: lib/hammer_cli_foreman/compute_resource.rb:30
502
- msgid "Server"
909
+ #: ../lib/hammer_cli_foreman/host.rb:168 ../lib/hammer_cli_foreman/host.rb:219
910
+ msgid "MAC"
503
911
  msgstr ""
504
912
 
505
- #: lib/hammer_cli_foreman/compute_resource.rb:33
506
- msgid "Tenant"
913
+ #: ../lib/hammer_cli_foreman/host.rb:178
914
+ msgid "Bare Metal"
507
915
  msgstr ""
508
916
 
509
- #: lib/hammer_cli_foreman/compute_resource.rb:43
510
- msgid "Url"
917
+ #: ../lib/hammer_cli_foreman/host.rb:203
918
+ msgid "Organization"
511
919
  msgstr ""
512
920
 
513
- #: lib/hammer_cli_foreman/compute_resource.rb:44
514
- #: lib/hammer_cli_foreman/domain.rb:21
515
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
516
- msgid "Description"
921
+ #: ../lib/hammer_cli_foreman/host.rb:204
922
+ msgid "Location"
517
923
  msgstr ""
518
924
 
519
- #: lib/hammer_cli_foreman/compute_resource.rb:45
520
- msgid "User"
925
+ #: ../lib/hammer_cli_foreman/host.rb:206
926
+ msgid "Compute Resource"
521
927
  msgstr ""
522
928
 
523
- #: lib/hammer_cli_foreman/compute_resource.rb:62
524
- msgid "Compute resource created"
929
+ #: ../lib/hammer_cli_foreman/host.rb:207
930
+ msgid "Compute Profile"
525
931
  msgstr ""
526
932
 
527
- #: lib/hammer_cli_foreman/compute_resource.rb:63
528
- msgid "Could not create the compute resource"
933
+ #: ../lib/hammer_cli_foreman/host.rb:208
934
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:51
935
+ msgid "Environment"
529
936
  msgstr ""
530
937
 
531
- #: lib/hammer_cli_foreman/compute_resource.rb:74
532
- msgid "Compute resource updated"
938
+ #: ../lib/hammer_cli_foreman/host.rb:209
939
+ msgid "Puppet CA Id"
533
940
  msgstr ""
534
941
 
535
- #: lib/hammer_cli_foreman/compute_resource.rb:75
536
- msgid "Could not update the compute resource"
942
+ #: ../lib/hammer_cli_foreman/host.rb:210
943
+ msgid "Puppet Master Id"
537
944
  msgstr ""
538
945
 
539
- #: lib/hammer_cli_foreman/compute_resource.rb:82
540
- msgid "Compute resource deleted"
946
+ #: ../lib/hammer_cli_foreman/host.rb:211
947
+ msgid "Cert name"
541
948
  msgstr ""
542
949
 
543
- #: lib/hammer_cli_foreman/compute_resource.rb:83
544
- msgid "Could not delete the compute resource"
950
+ #: ../lib/hammer_cli_foreman/host.rb:212
951
+ #: ../lib/hammer_cli_foreman/interface.rb:51
952
+ msgid "Managed"
545
953
  msgstr ""
546
954
 
547
- #: lib/hammer_cli_foreman/associating_commands.rb:41
548
- msgid "Associate a hostgroup"
955
+ #: ../lib/hammer_cli_foreman/host.rb:214
956
+ msgid "Installed at"
549
957
  msgstr ""
550
958
 
551
- #: lib/hammer_cli_foreman/associating_commands.rb:46
552
- msgid "Disassociate a hostgroup"
959
+ #: ../lib/hammer_cli_foreman/host.rb:215 ../lib/hammer_cli_foreman/report.rb:12
960
+ msgid "Last report"
553
961
  msgstr ""
554
962
 
555
- #: lib/hammer_cli_foreman/associating_commands.rb:55
556
- msgid "Associate an environment"
963
+ #: ../lib/hammer_cli_foreman/host.rb:217 ../lib/hammer_cli_foreman/subnet.rb:12
964
+ msgid "Network"
557
965
  msgstr ""
558
966
 
559
- #: lib/hammer_cli_foreman/associating_commands.rb:60
560
- msgid "Disassociate an environment"
967
+ #: ../lib/hammer_cli_foreman/host.rb:220
968
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:62
969
+ #: ../lib/hammer_cli_foreman/interface.rb:49
970
+ msgid "Subnet"
561
971
  msgstr ""
562
972
 
563
- #: lib/hammer_cli_foreman/associating_commands.rb:69
564
- msgid "Associate a domain"
973
+ #: ../lib/hammer_cli_foreman/host.rb:221
974
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:64
975
+ #: ../lib/hammer_cli_foreman/interface.rb:50
976
+ msgid "Domain"
565
977
  msgstr ""
566
978
 
567
- #: lib/hammer_cli_foreman/associating_commands.rb:74
568
- msgid "Disassociate a domain"
979
+ #: ../lib/hammer_cli_foreman/host.rb:222
980
+ msgid "Service provider"
569
981
  msgstr ""
570
982
 
571
- #: lib/hammer_cli_foreman/associating_commands.rb:83
572
- msgid "Associate a medium"
983
+ #: ../lib/hammer_cli_foreman/host.rb:223
984
+ msgid "SP Name"
573
985
  msgstr ""
574
986
 
575
- #: lib/hammer_cli_foreman/associating_commands.rb:88
576
- msgid "Disassociate a medium"
987
+ #: ../lib/hammer_cli_foreman/host.rb:224
988
+ msgid "SP IP"
577
989
  msgstr ""
578
990
 
579
- #: lib/hammer_cli_foreman/associating_commands.rb:97
580
- msgid "Associate a subnet"
991
+ #: ../lib/hammer_cli_foreman/host.rb:225
992
+ msgid "SP MAC"
581
993
  msgstr ""
582
994
 
583
- #: lib/hammer_cli_foreman/associating_commands.rb:102
584
- msgid "Disassociate a subnet"
995
+ #: ../lib/hammer_cli_foreman/host.rb:226
996
+ msgid "SP Subnet"
585
997
  msgstr ""
586
998
 
587
- #: lib/hammer_cli_foreman/associating_commands.rb:111
588
- msgid "Associate a compute resource"
999
+ #: ../lib/hammer_cli_foreman/host.rb:230
1000
+ msgid "Network interfaces"
589
1001
  msgstr ""
590
1002
 
591
- #: lib/hammer_cli_foreman/associating_commands.rb:116
592
- msgid "Disassociate a compute resource"
1003
+ #: ../lib/hammer_cli_foreman/host.rb:232
1004
+ #: ../lib/hammer_cli_foreman/interface.rb:24
1005
+ #: ../lib/hammer_cli_foreman/interface.rb:44
1006
+ msgid "Identifier"
593
1007
  msgstr ""
594
1008
 
595
- #: lib/hammer_cli_foreman/associating_commands.rb:125
596
- msgid "Associate a smart proxy"
1009
+ #: ../lib/hammer_cli_foreman/host.rb:233
1010
+ #: ../lib/hammer_cli_foreman/interface.rb:25
1011
+ #: ../lib/hammer_cli_foreman/interface.rb:45
1012
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:62
1013
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:66
1014
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:12
1015
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:54
1016
+ #: ../lib/hammer_cli_foreman/template.rb:27
1017
+ msgid "Type"
597
1018
  msgstr ""
598
1019
 
599
- #: lib/hammer_cli_foreman/associating_commands.rb:134
600
- msgid "Disassociate a smart proxy"
1020
+ #: ../lib/hammer_cli_foreman/host.rb:234
1021
+ #: ../lib/hammer_cli_foreman/interface.rb:26
1022
+ #: ../lib/hammer_cli_foreman/interface.rb:46
1023
+ msgid "MAC address"
601
1024
  msgstr ""
602
1025
 
603
- #: lib/hammer_cli_foreman/associating_commands.rb:147
604
- msgid "Associate an user"
1026
+ #: ../lib/hammer_cli_foreman/host.rb:235
1027
+ #: ../lib/hammer_cli_foreman/interface.rb:27
1028
+ #: ../lib/hammer_cli_foreman/interface.rb:47
1029
+ msgid "IP address"
605
1030
  msgstr ""
606
1031
 
607
- #: lib/hammer_cli_foreman/associating_commands.rb:155
608
- msgid "Disassociate an user"
1032
+ #: ../lib/hammer_cli_foreman/host.rb:236
1033
+ msgid "FQDN"
609
1034
  msgstr ""
610
1035
 
611
- #: lib/hammer_cli_foreman/associating_commands.rb:167
612
- msgid "Associate an user group"
1036
+ #: ../lib/hammer_cli_foreman/host.rb:239
1037
+ msgid "Operating system"
613
1038
  msgstr ""
614
1039
 
615
- #: lib/hammer_cli_foreman/associating_commands.rb:177
616
- msgid "Disassociate an user group"
1040
+ #: ../lib/hammer_cli_foreman/host.rb:240
1041
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:65
1042
+ #: ../lib/hammer_cli_foreman/image.rb:45
1043
+ msgid "Architecture"
617
1044
  msgstr ""
618
1045
 
619
- #: lib/hammer_cli_foreman/associating_commands.rb:191
620
- msgid "Associate a configuration template"
1046
+ #: ../lib/hammer_cli_foreman/host.rb:244
1047
+ msgid "Build"
621
1048
  msgstr ""
622
1049
 
623
- #: lib/hammer_cli_foreman/associating_commands.rb:196
624
- msgid "Disassociate a configuration template"
1050
+ #: ../lib/hammer_cli_foreman/host.rb:245
1051
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:67
1052
+ msgid "Medium"
625
1053
  msgstr ""
626
1054
 
627
- #: lib/hammer_cli_foreman/associating_commands.rb:205
628
- msgid "Associate an organization"
1055
+ #: ../lib/hammer_cli_foreman/host.rb:246
1056
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:66
1057
+ msgid "Partition Table"
629
1058
  msgstr ""
630
1059
 
631
- #: lib/hammer_cli_foreman/associating_commands.rb:210
632
- msgid "Disassociate an organization"
1060
+ #: ../lib/hammer_cli_foreman/host.rb:247
1061
+ msgid "Custom partition table"
633
1062
  msgstr ""
634
1063
 
635
- #: lib/hammer_cli_foreman/associating_commands.rb:219
636
- msgid "Associate an operating system"
1064
+ #: ../lib/hammer_cli_foreman/host.rb:250
1065
+ msgid "Image"
637
1066
  msgstr ""
638
1067
 
639
- #: lib/hammer_cli_foreman/associating_commands.rb:221
640
- msgid "Operating system has been associated"
1068
+ #: ../lib/hammer_cli_foreman/host.rb:251
1069
+ msgid "Image file"
641
1070
  msgstr ""
642
1071
 
643
- #: lib/hammer_cli_foreman/associating_commands.rb:222
644
- msgid "Could not associate the operating system"
1072
+ #: ../lib/hammer_cli_foreman/host.rb:252
1073
+ msgid "Use image"
645
1074
  msgstr ""
646
1075
 
647
- #: lib/hammer_cli_foreman/associating_commands.rb:228
648
- msgid "Disassociate an operating system"
1076
+ #: ../lib/hammer_cli_foreman/host.rb:258
1077
+ msgid "Additional info"
649
1078
  msgstr ""
650
1079
 
651
- #: lib/hammer_cli_foreman/associating_commands.rb:230
652
- msgid "Operating system has been disassociated"
1080
+ #: ../lib/hammer_cli_foreman/host.rb:259
1081
+ msgid "Owner Id"
653
1082
  msgstr ""
654
1083
 
655
- #: lib/hammer_cli_foreman/associating_commands.rb:231
656
- msgid "Could not disassociate the operating system"
1084
+ #: ../lib/hammer_cli_foreman/host.rb:260
1085
+ msgid "Owner Type"
657
1086
  msgstr ""
658
1087
 
659
- #: lib/hammer_cli_foreman/associating_commands.rb:240
660
- msgid "Associate an architecture"
1088
+ #: ../lib/hammer_cli_foreman/host.rb:261
1089
+ msgid "Enabled"
661
1090
  msgstr ""
662
1091
 
663
- #: lib/hammer_cli_foreman/associating_commands.rb:242
664
- msgid "Architecture has been associated"
1092
+ #: ../lib/hammer_cli_foreman/host.rb:262
1093
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:52
1094
+ msgid "Model"
665
1095
  msgstr ""
666
1096
 
667
- #: lib/hammer_cli_foreman/associating_commands.rb:243
668
- msgid "Could not associate the architecture"
1097
+ #: ../lib/hammer_cli_foreman/host.rb:263
1098
+ msgid "Comment"
669
1099
  msgstr ""
670
1100
 
671
- #: lib/hammer_cli_foreman/associating_commands.rb:249
672
- msgid "Disassociate an architecture"
1101
+ #: ../lib/hammer_cli_foreman/host.rb:276
1102
+ msgid "Status"
673
1103
  msgstr ""
674
1104
 
675
- #: lib/hammer_cli_foreman/associating_commands.rb:251
676
- msgid "Architecture has been disassociated"
1105
+ #: ../lib/hammer_cli_foreman/host.rb:277
1106
+ msgid "Power"
677
1107
  msgstr ""
678
1108
 
679
- #: lib/hammer_cli_foreman/associating_commands.rb:252
680
- msgid "Could not disassociate the architecture"
1109
+ #: ../lib/hammer_cli_foreman/host.rb:313
1110
+ msgid "Puppet run triggered"
681
1111
  msgstr ""
682
1112
 
683
- #: lib/hammer_cli_foreman/associating_commands.rb:261
684
- msgid "Associate a partition table"
1113
+ #: ../lib/hammer_cli_foreman/host.rb:366
1114
+ msgid "Host created"
685
1115
  msgstr ""
686
1116
 
687
- #: lib/hammer_cli_foreman/associating_commands.rb:263
688
- msgid "Partition table has been associated"
1117
+ #: ../lib/hammer_cli_foreman/host.rb:367
1118
+ msgid "Could not create the host"
689
1119
  msgstr ""
690
1120
 
691
- #: lib/hammer_cli_foreman/associating_commands.rb:264
692
- msgid "Could not associate the partition table"
1121
+ #: ../lib/hammer_cli_foreman/host.rb:388
1122
+ msgid "Host updated"
693
1123
  msgstr ""
694
1124
 
695
- #: lib/hammer_cli_foreman/associating_commands.rb:270
696
- msgid "Disassociate a partition table"
1125
+ #: ../lib/hammer_cli_foreman/host.rb:389
1126
+ msgid "Could not update the host"
697
1127
  msgstr ""
698
1128
 
699
- #: lib/hammer_cli_foreman/associating_commands.rb:272
700
- msgid "Partition table has been disassociated"
1129
+ #: ../lib/hammer_cli_foreman/host.rb:396
1130
+ msgid "Host deleted"
701
1131
  msgstr ""
702
1132
 
703
- #: lib/hammer_cli_foreman/associating_commands.rb:273
704
- msgid "Could not disassociate the partition table"
1133
+ #: ../lib/hammer_cli_foreman/host.rb:397
1134
+ msgid "Could not delete the host"
705
1135
  msgstr ""
706
1136
 
707
- #: lib/hammer_cli_foreman/associating_commands.rb:282
708
- msgid "Assign a user role"
1137
+ #: ../lib/hammer_cli_foreman/host.rb:404
1138
+ msgid "Create or update parameter for a host."
709
1139
  msgstr ""
710
1140
 
711
- #: lib/hammer_cli_foreman/associating_commands.rb:284
712
- msgid "User role has been assigned"
1141
+ #: ../lib/hammer_cli_foreman/host.rb:406
1142
+ msgid "Host parameter updated"
713
1143
  msgstr ""
714
1144
 
715
- #: lib/hammer_cli_foreman/associating_commands.rb:285
716
- msgid "Could not assign the user role"
1145
+ #: ../lib/hammer_cli_foreman/host.rb:407
1146
+ msgid "New host parameter created"
717
1147
  msgstr ""
718
1148
 
719
- #: lib/hammer_cli_foreman/associating_commands.rb:291
720
- msgid "Remove a user role"
1149
+ #: ../lib/hammer_cli_foreman/host.rb:408
1150
+ msgid "Could not set host parameter"
721
1151
  msgstr ""
722
1152
 
723
- #: lib/hammer_cli_foreman/associating_commands.rb:293
724
- msgid "User role has been removed"
1153
+ #: ../lib/hammer_cli_foreman/host.rb:420
1154
+ msgid "Delete parameter for a host."
725
1155
  msgstr ""
726
1156
 
727
- #: lib/hammer_cli_foreman/associating_commands.rb:294
728
- msgid "Could not remove the user role"
1157
+ #: ../lib/hammer_cli_foreman/host.rb:422
1158
+ msgid "Host parameter deleted"
729
1159
  msgstr ""
730
1160
 
731
- #: lib/hammer_cli_foreman/hostgroup.rb:9
732
- msgid "List of puppetclass ids"
1161
+ #: ../lib/hammer_cli_foreman/host.rb:437
1162
+ msgid "Power a host on"
733
1163
  msgstr ""
734
1164
 
735
- #: lib/hammer_cli_foreman/hostgroup.rb:11
736
- msgid "Name of puppet CA proxy"
1165
+ #: ../lib/hammer_cli_foreman/host.rb:438
1166
+ msgid "The host is starting."
737
1167
  msgstr ""
738
1168
 
739
- #: lib/hammer_cli_foreman/hostgroup.rb:12
740
- msgid "Name of puppet proxy"
1169
+ #: ../lib/hammer_cli_foreman/host.rb:455
1170
+ msgid "Force turning off a host"
741
1171
  msgstr ""
742
1172
 
743
- #: lib/hammer_cli_foreman/hostgroup.rb:13
744
- msgid "Name of parent hostgroup"
1173
+ #: ../lib/hammer_cli_foreman/host.rb:460
1174
+ msgid "Power a host off"
745
1175
  msgstr ""
746
1176
 
747
- #: lib/hammer_cli_foreman/hostgroup.rb:48
748
- #: lib/hammer_cli_foreman/operating_system.rb:11
749
- msgid "Title"
1177
+ #: ../lib/hammer_cli_foreman/host.rb:472
1178
+ msgid "Power off forced."
750
1179
  msgstr ""
751
1180
 
752
- #: lib/hammer_cli_foreman/hostgroup.rb:49 lib/hammer_cli_foreman/host.rb:130
753
- #: lib/hammer_cli_foreman/image.rb:31
754
- msgid "Operating System"
1181
+ #: ../lib/hammer_cli_foreman/host.rb:474
1182
+ msgid "Powering the host off."
755
1183
  msgstr ""
756
1184
 
757
- #: lib/hammer_cli_foreman/hostgroup.rb:50 lib/hammer_cli_foreman/host.rb:164
758
- msgid "Environment"
1185
+ #: ../lib/hammer_cli_foreman/host.rb:491
1186
+ msgid "Reboot a host"
759
1187
  msgstr ""
760
1188
 
761
- #: lib/hammer_cli_foreman/hostgroup.rb:51 lib/hammer_cli_foreman/host.rb:185
762
- msgid "Model"
1189
+ #: ../lib/hammer_cli_foreman/host.rb:492
1190
+ msgid "Host reboot started."
763
1191
  msgstr ""
764
1192
 
765
- #: lib/hammer_cli_foreman/hostgroup.rb:61 lib/hammer_cli_foreman/host.rb:187
766
- msgid "Subnet"
1193
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:10
1194
+ msgid "List of puppetclass ids"
767
1195
  msgstr ""
768
1196
 
769
- #: lib/hammer_cli_foreman/hostgroup.rb:63 lib/hammer_cli_foreman/host.rb:188
770
- msgid "Domain"
1197
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:12
1198
+ msgid "Name of puppet CA proxy"
771
1199
  msgstr ""
772
1200
 
773
- #: lib/hammer_cli_foreman/hostgroup.rb:64 lib/hammer_cli_foreman/host.rb:192
774
- #: lib/hammer_cli_foreman/image.rb:45
775
- msgid "Architecture"
1201
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:13
1202
+ msgid "Name of puppet proxy"
776
1203
  msgstr ""
777
1204
 
778
- #: lib/hammer_cli_foreman/hostgroup.rb:65 lib/hammer_cli_foreman/host.rb:191
779
- msgid "Partition Table"
1205
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:14
1206
+ msgid "Name of parent hostgroup"
780
1207
  msgstr ""
781
1208
 
782
- #: lib/hammer_cli_foreman/hostgroup.rb:66 lib/hammer_cli_foreman/host.rb:184
783
- msgid "Medium"
1209
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:49
1210
+ #: ../lib/hammer_cli_foreman/operating_system.rb:11
1211
+ msgid "Title"
784
1212
  msgstr ""
785
1213
 
786
- #: lib/hammer_cli_foreman/hostgroup.rb:67 lib/hammer_cli_foreman/host.rb:183
1214
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:68
787
1215
  msgid "Puppet CA Proxy Id"
788
1216
  msgstr ""
789
1217
 
790
- #: lib/hammer_cli_foreman/hostgroup.rb:68
1218
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:69
791
1219
  msgid "Puppet Master Proxy Id"
792
1220
  msgstr ""
793
1221
 
794
- #: lib/hammer_cli_foreman/hostgroup.rb:69
1222
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:70
795
1223
  msgid "ComputeProfile"
796
1224
  msgstr ""
797
1225
 
798
- #: lib/hammer_cli_foreman/hostgroup.rb:73
1226
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:74
799
1227
  msgid "Parent Id"
800
1228
  msgstr ""
801
1229
 
802
- #: lib/hammer_cli_foreman/hostgroup.rb:83
1230
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:84
803
1231
  msgid "Hostgroup created"
804
1232
  msgstr ""
805
1233
 
806
- #: lib/hammer_cli_foreman/hostgroup.rb:84
1234
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:85
807
1235
  msgid "Could not create the hostgroup"
808
1236
  msgstr ""
809
1237
 
810
- #: lib/hammer_cli_foreman/hostgroup.rb:93
1238
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:94
811
1239
  msgid "Hostgroup updated"
812
1240
  msgstr ""
813
1241
 
814
- #: lib/hammer_cli_foreman/hostgroup.rb:94
1242
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:95
815
1243
  msgid "Could not update the hostgroup"
816
1244
  msgstr ""
817
1245
 
818
- #: lib/hammer_cli_foreman/hostgroup.rb:101
1246
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:102
819
1247
  msgid "Hostgroup deleted"
820
1248
  msgstr ""
821
1249
 
822
- #: lib/hammer_cli_foreman/hostgroup.rb:102
1250
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:103
823
1251
  msgid "Could not delete the hostgroup"
824
1252
  msgstr ""
825
1253
 
826
- #: lib/hammer_cli_foreman/hostgroup.rb:129
1254
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:127
827
1255
  msgid "Create or update parameter for a hostgroup."
828
1256
  msgstr ""
829
1257
 
830
- #: lib/hammer_cli_foreman/hostgroup.rb:131
1258
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:129
831
1259
  msgid "Hostgroup parameter updated"
832
1260
  msgstr ""
833
1261
 
834
- #: lib/hammer_cli_foreman/hostgroup.rb:132
1262
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:130
835
1263
  msgid "New hostgroup parameter created"
836
1264
  msgstr ""
837
1265
 
838
- #: lib/hammer_cli_foreman/hostgroup.rb:133
1266
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:131
839
1267
  msgid "Could not set hostgroup parameter"
840
1268
  msgstr ""
841
1269
 
842
- #: lib/hammer_cli_foreman/hostgroup.rb:140
1270
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:138
843
1271
  msgid "Delete parameter for a hostgroup."
844
1272
  msgstr ""
845
1273
 
846
- #: lib/hammer_cli_foreman/hostgroup.rb:142
1274
+ #: ../lib/hammer_cli_foreman/hostgroup.rb:140
847
1275
  msgid "Hostgroup parameter deleted"
848
1276
  msgstr ""
849
1277
 
850
- #: lib/hammer_cli_foreman/template.rb:27
851
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
852
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
853
- msgid "Type"
854
- msgstr ""
855
-
856
- #: lib/hammer_cli_foreman/template.rb:71
857
- msgid "List available config template kinds."
858
- msgstr ""
859
-
860
- #: lib/hammer_cli_foreman/template.rb:90
861
- msgid "View config template content."
862
- msgstr ""
863
-
864
- #: lib/hammer_cli_foreman/template.rb:102
865
- #: lib/hammer_cli_foreman/template.rb:120
866
- msgid "Path to a file that contains the template"
867
- msgstr ""
868
-
869
- #: lib/hammer_cli_foreman/template.rb:104
870
- #: lib/hammer_cli_foreman/template.rb:122
871
- msgid "Template type. Eg. snippet, script, provision"
872
- msgstr ""
873
-
874
- #: lib/hammer_cli_foreman/template.rb:106
875
- msgid "Config template created"
876
- msgstr ""
877
-
878
- #: lib/hammer_cli_foreman/template.rb:107
879
- msgid "Could not create the config template"
880
- msgstr ""
881
-
882
- #: lib/hammer_cli_foreman/template.rb:124
883
- msgid "Config template updated"
884
- msgstr ""
885
-
886
- #: lib/hammer_cli_foreman/template.rb:125
887
- msgid "Could not update the config template"
888
- msgstr ""
889
-
890
- #: lib/hammer_cli_foreman/template.rb:138
891
- msgid "Config template deleted"
1278
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:36
1279
+ msgid "Architecture name"
892
1280
  msgstr ""
893
1281
 
894
- #: lib/hammer_cli_foreman/template.rb:139
895
- msgid "Could not delete the config template"
1282
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:37
1283
+ msgid "Compute resource name"
896
1284
  msgstr ""
897
1285
 
898
- #: lib/hammer_cli_foreman/host.rb:12
899
- msgid "Login of the owner"
1286
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:38
1287
+ msgid "Domain name"
900
1288
  msgstr ""
901
1289
 
902
- #: lib/hammer_cli_foreman/host.rb:14
903
- msgid "ID of the owner"
1290
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:39
1291
+ msgid "Environment name"
904
1292
  msgstr ""
905
1293
 
906
- #: lib/hammer_cli_foreman/host.rb:39
907
- msgid "Host parameters."
1294
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:42
1295
+ msgid "Host name"
908
1296
  msgstr ""
909
1297
 
910
- #: lib/hammer_cli_foreman/host.rb:41
911
- msgid "Compute resource attributes."
1298
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1299
+ msgid "Hostgroup title"
912
1300
  msgstr ""
913
1301
 
914
- #: lib/hammer_cli_foreman/host.rb:43
915
- msgid "Volume parameters"
1302
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:43
1303
+ msgid "Hostgroup name"
916
1304
  msgstr ""
917
1305
 
918
- #: lib/hammer_cli_foreman/host.rb:45
919
- msgid "Interface parameters."
1306
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:46
1307
+ msgid "Location name"
920
1308
  msgstr ""
921
1309
 
922
- #: lib/hammer_cli_foreman/host.rb:131
923
- msgid "Host Group"
1310
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:47
1311
+ msgid "Medium name"
924
1312
  msgstr ""
925
1313
 
926
- #: lib/hammer_cli_foreman/host.rb:132 lib/hammer_cli_foreman/host.rb:201
927
- #: lib/hammer_cli_foreman/host.rb:214
928
- msgid "IP"
1314
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:48
1315
+ msgid "Model name"
929
1316
  msgstr ""
930
1317
 
931
- #: lib/hammer_cli_foreman/host.rb:133 lib/hammer_cli_foreman/host.rb:202
932
- #: lib/hammer_cli_foreman/host.rb:215
933
- msgid "MAC"
1318
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:49
1319
+ msgid "Organization name"
934
1320
  msgstr ""
935
1321
 
936
- #: lib/hammer_cli_foreman/host.rb:162
937
- msgid "Cert name"
1322
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:50
1323
+ msgid "Operating system title"
938
1324
  msgstr ""
939
1325
 
940
- #: lib/hammer_cli_foreman/host.rb:166
941
- msgid "Managed"
1326
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:52
1327
+ msgid "Partition table name"
942
1328
  msgstr ""
943
1329
 
944
- #: lib/hammer_cli_foreman/host.rb:167
945
- msgid "Enabled"
1330
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:53
1331
+ msgid "Proxy name"
946
1332
  msgstr ""
947
1333
 
948
- #: lib/hammer_cli_foreman/host.rb:168
949
- msgid "Build"
1334
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:54
1335
+ msgid "Puppet class name"
950
1336
  msgstr ""
951
1337
 
952
- #: lib/hammer_cli_foreman/host.rb:170
953
- msgid "Use image"
1338
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:55
1339
+ msgid "Report name"
954
1340
  msgstr ""
955
1341
 
956
- #: lib/hammer_cli_foreman/host.rb:171
957
- msgid "Disk"
1342
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:56
1343
+ msgid "User role name"
958
1344
  msgstr ""
959
1345
 
960
- #: lib/hammer_cli_foreman/host.rb:172
961
- msgid "Image file"
1346
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:57
1347
+ msgid "Setting name"
962
1348
  msgstr ""
963
1349
 
964
- #: lib/hammer_cli_foreman/host.rb:174
965
- msgid "SP Name"
1350
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:58
1351
+ msgid "Subnet name"
966
1352
  msgstr ""
967
1353
 
968
- #: lib/hammer_cli_foreman/host.rb:175
969
- msgid "SP IP"
1354
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:60
1355
+ msgid "User's login to search by"
970
1356
  msgstr ""
971
1357
 
972
- #: lib/hammer_cli_foreman/host.rb:176
973
- msgid "SP MAC"
1358
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:61
1359
+ msgid "Common parameter name"
974
1360
  msgstr ""
975
1361
 
976
- #: lib/hammer_cli_foreman/host.rb:178
977
- msgid "SP Subnet"
1362
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:62
1363
+ msgid "Smart class parameter name"
978
1364
  msgstr ""
979
1365
 
980
- #: lib/hammer_cli_foreman/host.rb:180
981
- msgid "Installed at"
1366
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:63
1367
+ msgid "Smart variable name"
982
1368
  msgstr ""
983
1369
 
984
- #: lib/hammer_cli_foreman/host.rb:186
985
- msgid "Owner Id"
1370
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:65
1371
+ msgid "Name to search by"
986
1372
  msgstr ""
987
1373
 
988
- #: lib/hammer_cli_foreman/host.rb:189
989
- msgid "Puppet Proxy Id"
1374
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:153
1375
+ msgid "one of %s not found"
990
1376
  msgstr ""
991
1377
 
992
- #: lib/hammer_cli_foreman/host.rb:190
993
- msgid "Owner Type"
1378
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:200
1379
+ msgid "%s not found"
994
1380
  msgstr ""
995
1381
 
996
- #: lib/hammer_cli_foreman/host.rb:193
997
- msgid "Image"
1382
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:201
1383
+ msgid "%s found more than once"
998
1384
  msgstr ""
999
1385
 
1000
- #: lib/hammer_cli_foreman/host.rb:194
1001
- msgid "Compute Resource"
1386
+ #: ../lib/hammer_cli_foreman/id_resolver.rb:212
1387
+ msgid "Missing options to search %s"
1002
1388
  msgstr ""
1003
1389
 
1004
- #: lib/hammer_cli_foreman/host.rb:196
1005
- msgid "Comment"
1390
+ #: ../lib/hammer_cli_foreman/image.rb:8
1391
+ msgid "View and manage compute resource's images"
1006
1392
  msgstr ""
1007
1393
 
1008
- #: lib/hammer_cli_foreman/host.rb:198
1009
- msgid "BMC Network Interfaces"
1394
+ #: ../lib/hammer_cli_foreman/image.rb:32
1395
+ #: ../lib/hammer_cli_foreman/interface.rb:59
1396
+ msgid "Username"
1010
1397
  msgstr ""
1011
1398
 
1012
- #: lib/hammer_cli_foreman/host.rb:203 lib/hammer_cli_foreman/host.rb:216
1013
- msgid "Domain Id"
1399
+ #: ../lib/hammer_cli_foreman/image.rb:46
1400
+ msgid "IAM role"
1014
1401
  msgstr ""
1015
1402
 
1016
- #: lib/hammer_cli_foreman/host.rb:204 lib/hammer_cli_foreman/host.rb:217
1017
- msgid "Domain Name"
1403
+ #: ../lib/hammer_cli_foreman/image.rb:56
1404
+ msgid "Show images available for addition"
1018
1405
  msgstr ""
1019
1406
 
1020
- #: lib/hammer_cli_foreman/host.rb:205 lib/hammer_cli_foreman/host.rb:218
1021
- msgid "Subnet Id"
1407
+ #: ../lib/hammer_cli_foreman/image.rb:81
1408
+ msgid "Image created"
1022
1409
  msgstr ""
1023
1410
 
1024
- #: lib/hammer_cli_foreman/host.rb:206 lib/hammer_cli_foreman/host.rb:219
1025
- msgid "Subnet Name"
1411
+ #: ../lib/hammer_cli_foreman/image.rb:82
1412
+ msgid "Could not create the image"
1026
1413
  msgstr ""
1027
1414
 
1028
- #: lib/hammer_cli_foreman/host.rb:207
1029
- msgid "BMC Username"
1415
+ #: ../lib/hammer_cli_foreman/image.rb:90
1416
+ msgid "Image updated"
1030
1417
  msgstr ""
1031
1418
 
1032
- #: lib/hammer_cli_foreman/host.rb:208
1033
- msgid "BMC Password"
1419
+ #: ../lib/hammer_cli_foreman/image.rb:91
1420
+ msgid "Could not update the image"
1034
1421
  msgstr ""
1035
1422
 
1036
- #: lib/hammer_cli_foreman/host.rb:211
1037
- msgid "Managed Network Interfaces"
1423
+ #: ../lib/hammer_cli_foreman/image.rb:99
1424
+ msgid "Image deleted"
1038
1425
  msgstr ""
1039
1426
 
1040
- #: lib/hammer_cli_foreman/host.rb:235
1041
- msgid "Status"
1427
+ #: ../lib/hammer_cli_foreman/image.rb:100
1428
+ msgid "Could not delete the image"
1042
1429
  msgstr ""
1043
1430
 
1044
- #: lib/hammer_cli_foreman/host.rb:236
1045
- msgid "Power"
1431
+ #: ../lib/hammer_cli_foreman/interface.rb:6
1432
+ msgid "View and manage host's network interfaces"
1046
1433
  msgstr ""
1047
1434
 
1048
- #: lib/hammer_cli_foreman/host.rb:272
1049
- msgid "Puppet run triggered"
1435
+ #: ../lib/hammer_cli_foreman/interface.rb:10
1436
+ msgid "primary"
1050
1437
  msgstr ""
1051
1438
 
1052
- #: lib/hammer_cli_foreman/host.rb:323
1053
- msgid "Host created"
1439
+ #: ../lib/hammer_cli_foreman/interface.rb:11
1440
+ msgid "provision"
1054
1441
  msgstr ""
1055
1442
 
1056
- #: lib/hammer_cli_foreman/host.rb:324
1057
- msgid "Could not create the host"
1443
+ #: ../lib/hammer_cli_foreman/interface.rb:28
1444
+ #: ../lib/hammer_cli_foreman/interface.rb:48
1445
+ msgid "DNS name"
1058
1446
  msgstr ""
1059
1447
 
1060
- #: lib/hammer_cli_foreman/host.rb:345
1061
- msgid "Host updated"
1448
+ #: ../lib/hammer_cli_foreman/interface.rb:52
1449
+ msgid "Primary"
1062
1450
  msgstr ""
1063
1451
 
1064
- #: lib/hammer_cli_foreman/host.rb:346
1065
- msgid "Could not update the host"
1452
+ #: ../lib/hammer_cli_foreman/interface.rb:53
1453
+ msgid "Provision"
1066
1454
  msgstr ""
1067
1455
 
1068
- #: lib/hammer_cli_foreman/host.rb:353
1069
- msgid "Host deleted"
1456
+ #: ../lib/hammer_cli_foreman/interface.rb:54
1457
+ msgid "Virtual"
1070
1458
  msgstr ""
1071
1459
 
1072
- #: lib/hammer_cli_foreman/host.rb:354
1073
- msgid "Could not delete the host"
1460
+ #: ../lib/hammer_cli_foreman/interface.rb:55
1461
+ msgid "Tag"
1074
1462
  msgstr ""
1075
1463
 
1076
- #: lib/hammer_cli_foreman/host.rb:361
1077
- msgid "Create or update parameter for a host."
1464
+ #: ../lib/hammer_cli_foreman/interface.rb:56
1465
+ msgid "Attached to"
1078
1466
  msgstr ""
1079
1467
 
1080
- #: lib/hammer_cli_foreman/host.rb:363
1081
- msgid "Host parameter updated"
1468
+ #: ../lib/hammer_cli_foreman/interface.rb:58
1469
+ msgid "BMC"
1082
1470
  msgstr ""
1083
1471
 
1084
- #: lib/hammer_cli_foreman/host.rb:364
1085
- msgid "New host parameter created"
1472
+ #: ../lib/hammer_cli_foreman/interface.rb:63
1473
+ msgid "Bond"
1086
1474
  msgstr ""
1087
1475
 
1088
- #: lib/hammer_cli_foreman/host.rb:365
1089
- msgid "Could not set host parameter"
1476
+ #: ../lib/hammer_cli_foreman/interface.rb:64
1477
+ msgid "Mode"
1090
1478
  msgstr ""
1091
1479
 
1092
- #: lib/hammer_cli_foreman/host.rb:377
1093
- msgid "Delete parameter for a host."
1480
+ #: ../lib/hammer_cli_foreman/interface.rb:65
1481
+ msgid "Attached devices"
1094
1482
  msgstr ""
1095
1483
 
1096
- #: lib/hammer_cli_foreman/host.rb:379
1097
- msgid "Host parameter deleted"
1484
+ #: ../lib/hammer_cli_foreman/interface.rb:66
1485
+ msgid "Bond options"
1098
1486
  msgstr ""
1099
1487
 
1100
- #: lib/hammer_cli_foreman/host.rb:394
1101
- msgid "Power a host on"
1488
+ #: ../lib/hammer_cli_foreman/interface.rb:77
1489
+ msgid ""
1490
+ "Should this interface be used for constructing the FQDN of the host? Each mana"
1491
+ "ged hosts needs to have one primary interface."
1102
1492
  msgstr ""
1103
1493
 
1104
- #: lib/hammer_cli_foreman/host.rb:395
1105
- msgid "The host is starting."
1494
+ #: ../lib/hammer_cli_foreman/interface.rb:78
1495
+ msgid ""
1496
+ "Should this interface be used for TFTP of PXELinux (or SSH for image-based hos"
1497
+ "ts)? Each managed hosts needs to have one provision interface."
1106
1498
  msgstr ""
1107
1499
 
1108
- #: lib/hammer_cli_foreman/host.rb:412
1109
- msgid "Force turning off a host"
1500
+ #: ../lib/hammer_cli_foreman/interface.rb:128
1501
+ msgid "Interface created"
1110
1502
  msgstr ""
1111
1503
 
1112
- #: lib/hammer_cli_foreman/host.rb:417
1113
- msgid "Power a host off"
1504
+ #: ../lib/hammer_cli_foreman/interface.rb:129
1505
+ msgid "Could not create the interface"
1114
1506
  msgstr ""
1115
1507
 
1116
- #: lib/hammer_cli_foreman/host.rb:429
1117
- msgid "Power off forced."
1508
+ #: ../lib/hammer_cli_foreman/interface.rb:131
1509
+ #: ../lib/hammer_cli_foreman/interface.rb:144
1510
+ msgid "Compute resource specific attributes."
1118
1511
  msgstr ""
1119
1512
 
1120
- #: lib/hammer_cli_foreman/host.rb:431
1121
- msgid "Powering the host off."
1513
+ #: ../lib/hammer_cli_foreman/interface.rb:141
1514
+ msgid "Interface updated"
1122
1515
  msgstr ""
1123
1516
 
1124
- #: lib/hammer_cli_foreman/host.rb:448
1125
- msgid "Reboot a host"
1517
+ #: ../lib/hammer_cli_foreman/interface.rb:142
1518
+ msgid "Could not update the interface"
1126
1519
  msgstr ""
1127
1520
 
1128
- #: lib/hammer_cli_foreman/host.rb:449
1129
- msgid "Host reboot started."
1521
+ #: ../lib/hammer_cli_foreman/interface.rb:154
1522
+ msgid "Interface deleted"
1130
1523
  msgstr ""
1131
1524
 
1132
- #: lib/hammer_cli_foreman/commands.rb:83
1133
- msgid "Received data of unknown format"
1525
+ #: ../lib/hammer_cli_foreman/interface.rb:155
1526
+ msgid "Could not delete the interface"
1134
1527
  msgstr ""
1135
1528
 
1136
- #: lib/hammer_cli_foreman/commands.rb:185
1137
- msgid ""
1138
- "Could not find %{resource}. Some search options were missing, please see --"
1139
- "help."
1529
+ #: ../lib/hammer_cli_foreman/location.rb:24
1530
+ #: ../lib/hammer_cli_foreman/location.rb:62
1531
+ #: ../lib/hammer_cli_foreman/location.rb:74
1532
+ msgid "Location numeric id to search by"
1140
1533
  msgstr ""
1141
1534
 
1142
- #: lib/hammer_cli_foreman/commands.rb:187
1143
- msgid "Could not find %{resource}, please set option %{switches}."
1535
+ #: ../lib/hammer_cli_foreman/location.rb:37
1536
+ #: ../lib/hammer_cli_foreman/references.rb:18
1537
+ msgid "Organizations"
1144
1538
  msgstr ""
1145
1539
 
1146
- #: lib/hammer_cli_foreman/commands.rb:189
1147
- msgid "Could not find %{resource}, please set one of options %{switches}."
1540
+ #: ../lib/hammer_cli_foreman/location.rb:52
1541
+ msgid "Location created"
1148
1542
  msgstr ""
1149
1543
 
1150
- #: lib/hammer_cli_foreman/commands.rb:288
1151
- msgid "List next page? (%s): "
1544
+ #: ../lib/hammer_cli_foreman/location.rb:53
1545
+ msgid "Could not create the location"
1152
1546
  msgstr ""
1153
1547
 
1154
- #: lib/hammer_cli_foreman/commands.rb:492
1155
- msgid "Associate a resource"
1548
+ #: ../lib/hammer_cli_foreman/location.rb:64
1549
+ msgid "Location updated"
1156
1550
  msgstr ""
1157
1551
 
1158
- #: lib/hammer_cli_foreman/commands.rb:514
1159
- msgid "Disassociate a resource"
1552
+ #: ../lib/hammer_cli_foreman/location.rb:65
1553
+ msgid "Could not update the location"
1160
1554
  msgstr ""
1161
1555
 
1162
- #: lib/hammer_cli_foreman/references.rb:8
1163
- msgid "Created at"
1556
+ #: ../lib/hammer_cli_foreman/location.rb:76
1557
+ msgid "Location deleted"
1164
1558
  msgstr ""
1165
1559
 
1166
- #: lib/hammer_cli_foreman/references.rb:9
1167
- msgid "Updated at"
1560
+ #: ../lib/hammer_cli_foreman/location.rb:77
1561
+ msgid "Could not delete the location"
1168
1562
  msgstr ""
1169
1563
 
1170
- #: lib/hammer_cli_foreman/references.rb:18
1171
- #: lib/hammer_cli_foreman/location.rb:37
1172
- msgid "Organizations"
1564
+ #: ../lib/hammer_cli_foreman/media.rb:11
1565
+ msgid "Path"
1173
1566
  msgstr ""
1174
1567
 
1175
- #: lib/hammer_cli_foreman/references.rb:26
1176
- msgid "Users"
1568
+ #: ../lib/hammer_cli_foreman/media.rb:20
1569
+ #: ../lib/hammer_cli_foreman/partition_table.rb:12
1570
+ msgid "OS Family"
1177
1571
  msgstr ""
1178
1572
 
1179
- #: lib/hammer_cli_foreman/references.rb:34
1180
- msgid "User groups"
1573
+ #: ../lib/hammer_cli_foreman/media.rb:32
1574
+ msgid "Installation medium created"
1181
1575
  msgstr ""
1182
1576
 
1183
- #: lib/hammer_cli_foreman/references.rb:42
1184
- msgid "Smart proxies"
1577
+ #: ../lib/hammer_cli_foreman/media.rb:33
1578
+ msgid "Could not create the installation medium"
1185
1579
  msgstr ""
1186
1580
 
1187
- #: lib/hammer_cli_foreman/references.rb:50
1188
- msgid "Compute resources"
1581
+ #: ../lib/hammer_cli_foreman/media.rb:41
1582
+ msgid "Installation medium updated"
1189
1583
  msgstr ""
1190
1584
 
1191
- #: lib/hammer_cli_foreman/references.rb:58
1192
- msgid "Installation media"
1585
+ #: ../lib/hammer_cli_foreman/media.rb:42
1586
+ msgid "Could not update the installation media"
1193
1587
  msgstr ""
1194
1588
 
1195
- #: lib/hammer_cli_foreman/references.rb:66
1196
- msgid "Templates"
1589
+ #: ../lib/hammer_cli_foreman/media.rb:50
1590
+ msgid "Installation medium deleted"
1197
1591
  msgstr ""
1198
1592
 
1199
- #: lib/hammer_cli_foreman/references.rb:74
1200
- msgid "Domains"
1593
+ #: ../lib/hammer_cli_foreman/media.rb:51
1594
+ msgid "Could not delete the installation media"
1201
1595
  msgstr ""
1202
1596
 
1203
- #: lib/hammer_cli_foreman/references.rb:82
1204
- msgid "Environments"
1597
+ #: ../lib/hammer_cli_foreman/model.rb:12
1598
+ msgid "Vendor class"
1205
1599
  msgstr ""
1206
1600
 
1207
- #: lib/hammer_cli_foreman/references.rb:90
1208
- msgid "Hostgroups"
1601
+ #: ../lib/hammer_cli_foreman/model.rb:13
1602
+ msgid "HW model"
1209
1603
  msgstr ""
1210
1604
 
1211
- #: lib/hammer_cli_foreman/references.rb:98
1212
- msgid "Subnets"
1605
+ #: ../lib/hammer_cli_foreman/model.rb:22
1606
+ msgid "Info"
1213
1607
  msgstr ""
1214
1608
 
1215
- #: lib/hammer_cli_foreman/references.rb:107
1216
- msgid "Parameters"
1609
+ #: ../lib/hammer_cli_foreman/model.rb:31
1610
+ msgid "Hardware model created"
1217
1611
  msgstr ""
1218
1612
 
1219
- #: lib/hammer_cli_foreman/references.rb:115
1220
- msgid "Puppetclasses"
1613
+ #: ../lib/hammer_cli_foreman/model.rb:32
1614
+ msgid "Could not create the hardware model"
1221
1615
  msgstr ""
1222
1616
 
1223
- #: lib/hammer_cli_foreman/references.rb:123
1224
- msgid "Operating systems"
1617
+ #: ../lib/hammer_cli_foreman/model.rb:38
1618
+ msgid "Hardware model deleted"
1225
1619
  msgstr ""
1226
1620
 
1227
- #: lib/hammer_cli_foreman/references.rb:131
1228
- msgid "Roles"
1621
+ #: ../lib/hammer_cli_foreman/model.rb:39
1622
+ msgid "Could not delete the hardware model"
1229
1623
  msgstr ""
1230
1624
 
1231
- #: lib/hammer_cli_foreman/references.rb:139
1232
- msgid "External user groups"
1625
+ #: ../lib/hammer_cli_foreman/model.rb:46
1626
+ msgid "Hardware model updated"
1233
1627
  msgstr ""
1234
1628
 
1235
- #: lib/hammer_cli_foreman/resource_supported_test.rb:11
1236
- msgid "The server does not support such operation."
1629
+ #: ../lib/hammer_cli_foreman/model.rb:47
1630
+ msgid "Could not update the hardware model"
1237
1631
  msgstr ""
1238
1632
 
1239
- #: lib/hammer_cli_foreman/operating_system.rb:12
1633
+ #: ../lib/hammer_cli_foreman/operating_system.rb:12
1240
1634
  msgid "Release name"
1241
1635
  msgstr ""
1242
1636
 
1243
- #: lib/hammer_cli_foreman/operating_system.rb:13
1637
+ #: ../lib/hammer_cli_foreman/operating_system.rb:13
1244
1638
  msgid "Family"
1245
1639
  msgstr ""
1246
1640
 
1247
- #: lib/hammer_cli_foreman/operating_system.rb:23
1641
+ #: ../lib/hammer_cli_foreman/operating_system.rb:23
1248
1642
  msgid "Major version"
1249
1643
  msgstr ""
1250
1644
 
1251
- #: lib/hammer_cli_foreman/operating_system.rb:24
1645
+ #: ../lib/hammer_cli_foreman/operating_system.rb:24
1252
1646
  msgid "Minor version"
1253
1647
  msgstr ""
1254
1648
 
1255
- #: lib/hammer_cli_foreman/operating_system.rb:25
1649
+ #: ../lib/hammer_cli_foreman/operating_system.rb:25
1256
1650
  msgid "Partition tables"
1257
1651
  msgstr ""
1258
1652
 
1259
- #: lib/hammer_cli_foreman/operating_system.rb:28
1653
+ #: ../lib/hammer_cli_foreman/operating_system.rb:28
1260
1654
  msgid "Default templates"
1261
1655
  msgstr ""
1262
1656
 
1263
- #: lib/hammer_cli_foreman/operating_system.rb:31
1657
+ #: ../lib/hammer_cli_foreman/operating_system.rb:31
1264
1658
  msgid "Architectures"
1265
1659
  msgstr ""
1266
1660
 
1267
- #: lib/hammer_cli_foreman/operating_system.rb:44
1661
+ #: ../lib/hammer_cli_foreman/operating_system.rb:44
1268
1662
  msgid "Operating system created"
1269
1663
  msgstr ""
1270
1664
 
1271
- #: lib/hammer_cli_foreman/operating_system.rb:45
1665
+ #: ../lib/hammer_cli_foreman/operating_system.rb:45
1272
1666
  msgid "Could not create the operating system"
1273
1667
  msgstr ""
1274
1668
 
1275
- #: lib/hammer_cli_foreman/operating_system.rb:52
1669
+ #: ../lib/hammer_cli_foreman/operating_system.rb:52
1276
1670
  msgid "Operating system updated"
1277
1671
  msgstr ""
1278
1672
 
1279
- #: lib/hammer_cli_foreman/operating_system.rb:53
1673
+ #: ../lib/hammer_cli_foreman/operating_system.rb:53
1280
1674
  msgid "Could not update the operating system"
1281
1675
  msgstr ""
1282
1676
 
1283
- #: lib/hammer_cli_foreman/operating_system.rb:60
1677
+ #: ../lib/hammer_cli_foreman/operating_system.rb:60
1284
1678
  msgid "Operating system deleted"
1285
1679
  msgstr ""
1286
1680
 
1287
- #: lib/hammer_cli_foreman/operating_system.rb:61
1681
+ #: ../lib/hammer_cli_foreman/operating_system.rb:61
1288
1682
  msgid "Could not delete the operating system"
1289
1683
  msgstr ""
1290
1684
 
1291
- #: lib/hammer_cli_foreman/operating_system.rb:68
1685
+ #: ../lib/hammer_cli_foreman/operating_system.rb:68
1292
1686
  msgid "Create or update parameter for an operating system."
1293
1687
  msgstr ""
1294
1688
 
1295
- #: lib/hammer_cli_foreman/operating_system.rb:70
1689
+ #: ../lib/hammer_cli_foreman/operating_system.rb:70
1296
1690
  msgid "Operating system parameter updated"
1297
1691
  msgstr ""
1298
1692
 
1299
- #: lib/hammer_cli_foreman/operating_system.rb:71
1693
+ #: ../lib/hammer_cli_foreman/operating_system.rb:71
1300
1694
  msgid "New operating system parameter created"
1301
1695
  msgstr ""
1302
1696
 
1303
- #: lib/hammer_cli_foreman/operating_system.rb:72
1697
+ #: ../lib/hammer_cli_foreman/operating_system.rb:72
1304
1698
  msgid "Could not set operating system parameter"
1305
1699
  msgstr ""
1306
1700
 
1307
- #: lib/hammer_cli_foreman/operating_system.rb:84
1701
+ #: ../lib/hammer_cli_foreman/operating_system.rb:84
1308
1702
  msgid "Delete parameter for an operating system."
1309
1703
  msgstr ""
1310
1704
 
1311
- #: lib/hammer_cli_foreman/operating_system.rb:86
1705
+ #: ../lib/hammer_cli_foreman/operating_system.rb:86
1312
1706
  msgid "operating system parameter deleted"
1313
1707
  msgstr ""
1314
1708
 
1315
- #: lib/hammer_cli_foreman/operating_system.rb:101
1316
- #: lib/hammer_cli_foreman/operating_system.rb:167
1709
+ #: ../lib/hammer_cli_foreman/operating_system.rb:101
1710
+ #: ../lib/hammer_cli_foreman/operating_system.rb:167
1317
1711
  msgid "operatingsystem id"
1318
1712
  msgstr ""
1319
1713
 
1320
- #: lib/hammer_cli_foreman/operating_system.rb:102
1714
+ #: ../lib/hammer_cli_foreman/operating_system.rb:102
1321
1715
  msgid "config template id to be set"
1322
1716
  msgstr ""
1323
1717
 
1324
- #: lib/hammer_cli_foreman/operating_system.rb:105
1325
- msgid ""
1326
- "[%{config_template_name}] was set as default %{template_kind_name} template"
1718
+ #: ../lib/hammer_cli_foreman/operating_system.rb:105
1719
+ msgid "[%{config_template_name}] was set as default %{template_kind_name} template"
1327
1720
  msgstr ""
1328
1721
 
1329
- #: lib/hammer_cli_foreman/operating_system.rb:106
1722
+ #: ../lib/hammer_cli_foreman/operating_system.rb:106
1330
1723
  msgid "Could not set the os default template"
1331
1724
  msgstr ""
1332
1725
 
1333
- #: lib/hammer_cli_foreman/operating_system.rb:168
1726
+ #: ../lib/hammer_cli_foreman/operating_system.rb:168
1334
1727
  msgid "Type of the config template"
1335
1728
  msgstr ""
1336
1729
 
1337
- #: lib/hammer_cli_foreman/operating_system.rb:170
1730
+ #: ../lib/hammer_cli_foreman/operating_system.rb:170
1338
1731
  msgid "Default template deleted"
1339
1732
  msgstr ""
1340
1733
 
1341
- #: lib/hammer_cli_foreman/operating_system.rb:171
1734
+ #: ../lib/hammer_cli_foreman/operating_system.rb:171
1342
1735
  msgid "Could not delete the default template"
1343
1736
  msgstr ""
1344
1737
 
1345
- #: lib/hammer_cli_foreman/operating_system.rb:178
1738
+ #: ../lib/hammer_cli_foreman/operating_system.rb:178
1346
1739
  msgid "Default template of type %s not found"
1347
1740
  msgstr ""
1348
1741
 
1349
- #: lib/hammer_cli_foreman/smart_proxy.rb:13
1350
- msgid "URL"
1351
- msgstr ""
1352
-
1353
- #: lib/hammer_cli_foreman/smart_proxy.rb:14
1354
- #: lib/hammer_cli_foreman/smart_proxy.rb:29
1355
- msgid "Features"
1356
- msgstr ""
1357
-
1358
- #: lib/hammer_cli_foreman/smart_proxy.rb:41
1359
- msgid "Smart proxy created"
1360
- msgstr ""
1361
-
1362
- #: lib/hammer_cli_foreman/smart_proxy.rb:42
1363
- msgid "Could not create the proxy"
1364
- msgstr ""
1365
-
1366
- #: lib/hammer_cli_foreman/smart_proxy.rb:49
1367
- msgid "Smart proxy updated"
1742
+ #: ../lib/hammer_cli_foreman/organization.rb:37
1743
+ #: ../lib/hammer_cli_foreman/references.rb:15
1744
+ msgid "Locations"
1368
1745
  msgstr ""
1369
1746
 
1370
- #: lib/hammer_cli_foreman/smart_proxy.rb:50
1371
- msgid "Could not update the proxy"
1747
+ #: ../lib/hammer_cli_foreman/organization.rb:53
1748
+ msgid "Organization created"
1372
1749
  msgstr ""
1373
1750
 
1374
- #: lib/hammer_cli_foreman/smart_proxy.rb:57
1375
- msgid "Smart proxy deleted"
1751
+ #: ../lib/hammer_cli_foreman/organization.rb:54
1752
+ msgid "Could not create the organization"
1376
1753
  msgstr ""
1377
1754
 
1378
- #: lib/hammer_cli_foreman/smart_proxy.rb:58
1379
- msgid "Could not delete the proxy"
1755
+ #: ../lib/hammer_cli_foreman/organization.rb:65
1756
+ msgid "Organization updated"
1380
1757
  msgstr ""
1381
1758
 
1382
- #: lib/hammer_cli_foreman/smart_proxy.rb:69
1383
- msgid "Puppet classes were imported"
1759
+ #: ../lib/hammer_cli_foreman/organization.rb:66
1760
+ msgid "Could not update the organization"
1384
1761
  msgstr ""
1385
1762
 
1386
- #: lib/hammer_cli_foreman/smart_proxy.rb:70
1387
- msgid "Import of puppet classes failed"
1763
+ #: ../lib/hammer_cli_foreman/organization.rb:77
1764
+ msgid "Organization deleted"
1388
1765
  msgstr ""
1389
1766
 
1390
- #: lib/hammer_cli_foreman/smart_proxy.rb:72
1391
- msgid "Do not run the import"
1767
+ #: ../lib/hammer_cli_foreman/organization.rb:78
1768
+ msgid "Could not delete the organization"
1392
1769
  msgstr ""
1393
1770
 
1394
- #: lib/hammer_cli_foreman/smart_proxy.rb:92
1395
- msgid "Smart proxy features were refreshed"
1771
+ #: ../lib/hammer_cli_foreman/partition_table.rb:31
1772
+ msgid "View partition table content."
1396
1773
  msgstr ""
1397
1774
 
1398
- #: lib/hammer_cli_foreman/smart_proxy.rb:93
1399
- msgid "Refresh of smart proxy features failed"
1775
+ #: ../lib/hammer_cli_foreman/partition_table.rb:43
1776
+ #: ../lib/hammer_cli_foreman/partition_table.rb:54
1777
+ msgid "Path to a file that contains the partition layout"
1400
1778
  msgstr ""
1401
1779
 
1402
- #: lib/hammer_cli_foreman/environment.rb:34
1403
- msgid "Environment created"
1780
+ #: ../lib/hammer_cli_foreman/partition_table.rb:46
1781
+ msgid "Partition table created"
1404
1782
  msgstr ""
1405
1783
 
1406
- #: lib/hammer_cli_foreman/environment.rb:35
1407
- msgid "Could not create the environment"
1784
+ #: ../lib/hammer_cli_foreman/partition_table.rb:47
1785
+ msgid "Could not create the partition table"
1408
1786
  msgstr ""
1409
1787
 
1410
- #: lib/hammer_cli_foreman/environment.rb:42
1411
- msgid "Environment updated"
1788
+ #: ../lib/hammer_cli_foreman/partition_table.rb:57
1789
+ msgid "Partition table updated"
1412
1790
  msgstr ""
1413
1791
 
1414
- #: lib/hammer_cli_foreman/environment.rb:43
1415
- msgid "Could not update the environment"
1792
+ #: ../lib/hammer_cli_foreman/partition_table.rb:58
1793
+ msgid "Could not update the partition table"
1416
1794
  msgstr ""
1417
1795
 
1418
- #: lib/hammer_cli_foreman/environment.rb:50
1419
- msgid "Environment deleted"
1796
+ #: ../lib/hammer_cli_foreman/partition_table.rb:65
1797
+ msgid "Partition table deleted"
1420
1798
  msgstr ""
1421
1799
 
1422
- #: lib/hammer_cli_foreman/environment.rb:51
1423
- msgid "Could not delete the environment"
1800
+ #: ../lib/hammer_cli_foreman/partition_table.rb:66
1801
+ msgid "Could not delete the partition table"
1424
1802
  msgstr ""
1425
1803
 
1426
- #: lib/hammer_cli_foreman/puppet_class.rb:33
1804
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:34
1427
1805
  msgid "Smart variables"
1428
1806
  msgstr ""
1429
1807
 
1430
- #: lib/hammer_cli_foreman/puppet_class.rb:34
1431
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
1808
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:35
1809
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:10
1432
1810
  msgid "Parameter"
1433
1811
  msgstr ""
1434
1812
 
1435
- #: lib/hammer_cli_foreman/puppet_class.rb:35
1813
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:36
1436
1814
  msgid "Default value"
1437
1815
  msgstr ""
1438
1816
 
1439
- #: lib/hammer_cli_foreman/puppet_class.rb:37
1817
+ #: ../lib/hammer_cli_foreman/puppet_class.rb:38
1440
1818
  msgid "Smart class parameters"
1441
1819
  msgstr ""
1442
1820
 
1443
- #: lib/hammer_cli_foreman/domain.rb:22
1444
- msgid "DNS Id"
1445
- msgstr ""
1446
-
1447
- #: lib/hammer_cli_foreman/domain.rb:35
1448
- msgid "Domain [%{name}] created"
1449
- msgstr ""
1450
-
1451
- #: lib/hammer_cli_foreman/domain.rb:36
1452
- msgid "Could not create the domain"
1453
- msgstr ""
1454
-
1455
- #: lib/hammer_cli_foreman/domain.rb:38 lib/hammer_cli_foreman/domain.rb:48
1456
- msgid "Full name describing the domain"
1457
- msgstr ""
1458
-
1459
- #: lib/hammer_cli_foreman/domain.rb:45
1460
- msgid "Domain [%{name}] updated"
1461
- msgstr ""
1462
-
1463
- #: lib/hammer_cli_foreman/domain.rb:46
1464
- msgid "Could not update the domain"
1465
- msgstr ""
1466
-
1467
- #: lib/hammer_cli_foreman/domain.rb:55
1468
- msgid "Domain [%{name}] deleted"
1469
- msgstr ""
1470
-
1471
- #: lib/hammer_cli_foreman/domain.rb:56
1472
- msgid "Could not delete the domain"
1473
- msgstr ""
1474
-
1475
- #: lib/hammer_cli_foreman/domain.rb:63
1476
- msgid "Create or update parameter for a domain."
1477
- msgstr ""
1478
-
1479
- #: lib/hammer_cli_foreman/domain.rb:65
1480
- msgid "Domain parameter updated"
1481
- msgstr ""
1482
-
1483
- #: lib/hammer_cli_foreman/domain.rb:66
1484
- msgid "New domain parameter created"
1485
- msgstr ""
1486
-
1487
- #: lib/hammer_cli_foreman/domain.rb:67
1488
- msgid "Could not set domain parameter"
1489
- msgstr ""
1490
-
1491
- #: lib/hammer_cli_foreman/domain.rb:79
1492
- msgid "Delete parameter for a domain."
1493
- msgstr ""
1494
-
1495
- #: lib/hammer_cli_foreman/domain.rb:81
1496
- msgid "Domain parameter deleted"
1497
- msgstr ""
1498
-
1499
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
1500
- msgid "Default Value"
1501
- msgstr ""
1502
-
1503
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
1504
- msgid "Override"
1505
- msgstr ""
1506
-
1507
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
1508
- msgid "Puppet class"
1509
- msgstr ""
1510
-
1511
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
1512
- msgid "Class Id"
1513
- msgstr ""
1514
-
1515
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
1516
- msgid "Required"
1517
- msgstr ""
1518
-
1519
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
1520
- msgid "Validator"
1521
- msgstr ""
1522
-
1523
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
1524
- msgid "Rule"
1525
- msgstr ""
1526
-
1527
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:61
1528
- msgid "Override values"
1529
- msgstr ""
1530
-
1531
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
1532
- msgid "Order"
1533
- msgstr ""
1534
-
1535
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
1536
- msgid "Count"
1537
- msgstr ""
1538
-
1539
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
1540
- msgid "Match"
1541
- msgstr ""
1542
-
1543
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:86
1544
- msgid "Parameter updated"
1821
+ #: ../lib/hammer_cli_foreman/references.rb:8
1822
+ msgid "Created at"
1545
1823
  msgstr ""
1546
1824
 
1547
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:87
1548
- msgid "Could not update the parameter"
1825
+ #: ../lib/hammer_cli_foreman/references.rb:9
1826
+ msgid "Updated at"
1549
1827
  msgstr ""
1550
1828
 
1551
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:91
1552
- msgid "Override this parameter."
1829
+ #: ../lib/hammer_cli_foreman/references.rb:26
1830
+ msgid "Users"
1553
1831
  msgstr ""
1554
1832
 
1555
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:93
1556
- msgid "This parameter is required."
1833
+ #: ../lib/hammer_cli_foreman/references.rb:34
1834
+ msgid "User groups"
1557
1835
  msgstr ""
1558
1836
 
1559
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:95
1560
- msgid "Type of the parameter."
1837
+ #: ../lib/hammer_cli_foreman/references.rb:42
1838
+ msgid "Smart proxies"
1561
1839
  msgstr ""
1562
1840
 
1563
- #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
1564
- msgid "Type of the validator."
1841
+ #: ../lib/hammer_cli_foreman/references.rb:50
1842
+ msgid "Compute resources"
1565
1843
  msgstr ""
1566
1844
 
1567
- #: lib/hammer_cli_foreman/auth.rb:7
1568
- msgid "Set credentials"
1845
+ #: ../lib/hammer_cli_foreman/references.rb:58
1846
+ msgid "Installation media"
1569
1847
  msgstr ""
1570
1848
 
1571
- #: lib/hammer_cli_foreman/auth.rb:20
1572
- msgid "Wipe your credentials"
1849
+ #: ../lib/hammer_cli_foreman/references.rb:66
1850
+ msgid "Templates"
1573
1851
  msgstr ""
1574
1852
 
1575
- #: lib/hammer_cli_foreman/auth.rb:26
1576
- msgid "Credentials deleted."
1853
+ #: ../lib/hammer_cli_foreman/references.rb:74
1854
+ msgid "Domains"
1577
1855
  msgstr ""
1578
1856
 
1579
- #: lib/hammer_cli_foreman/auth.rb:33
1580
- msgid "Information about current connections"
1857
+ #: ../lib/hammer_cli_foreman/references.rb:82
1858
+ msgid "Environments"
1581
1859
  msgstr ""
1582
1860
 
1583
- #: lib/hammer_cli_foreman/auth.rb:37
1584
- msgid "You are logged in as '%s'"
1861
+ #: ../lib/hammer_cli_foreman/references.rb:90
1862
+ msgid "Hostgroups"
1585
1863
  msgstr ""
1586
1864
 
1587
- #: lib/hammer_cli_foreman/auth.rb:39
1588
- msgid ""
1589
- "You are currently not logged in to any service.\\nUse the service to set "
1590
- "credentials."
1865
+ #: ../lib/hammer_cli_foreman/references.rb:98
1866
+ msgid "Subnets"
1591
1867
  msgstr ""
1592
1868
 
1593
- #: lib/hammer_cli_foreman/usergroup.rb:31
1594
- msgid "User group [%<name>s] created"
1869
+ #: ../lib/hammer_cli_foreman/references.rb:107
1870
+ msgid "Parameters"
1595
1871
  msgstr ""
1596
1872
 
1597
- #: lib/hammer_cli_foreman/usergroup.rb:32
1598
- msgid "Could not create the user group"
1873
+ #: ../lib/hammer_cli_foreman/references.rb:115
1874
+ msgid "Puppetclasses"
1599
1875
  msgstr ""
1600
1876
 
1601
- #: lib/hammer_cli_foreman/usergroup.rb:38
1602
- msgid "User group [%<name>s] updated"
1877
+ #: ../lib/hammer_cli_foreman/references.rb:123
1878
+ msgid "Operating systems"
1603
1879
  msgstr ""
1604
1880
 
1605
- #: lib/hammer_cli_foreman/usergroup.rb:39
1606
- msgid "Could not update the user group"
1881
+ #: ../lib/hammer_cli_foreman/references.rb:131
1882
+ msgid "Roles"
1607
1883
  msgstr ""
1608
1884
 
1609
- #: lib/hammer_cli_foreman/usergroup.rb:45
1610
- msgid "User group [%<name>s] deleted"
1885
+ #: ../lib/hammer_cli_foreman/references.rb:139
1886
+ msgid "External user groups"
1611
1887
  msgstr ""
1612
1888
 
1613
- #: lib/hammer_cli_foreman/usergroup.rb:46
1614
- msgid "Could not delete the user group"
1889
+ #: ../lib/hammer_cli_foreman/report.rb:14
1890
+ #: ../lib/hammer_cli_foreman/report.rb:35
1891
+ msgid "Applied"
1615
1892
  msgstr ""
1616
1893
 
1617
- #: lib/hammer_cli_foreman/image.rb:8
1618
- msgid "View and manage compute resource's images"
1894
+ #: ../lib/hammer_cli_foreman/report.rb:15
1895
+ #: ../lib/hammer_cli_foreman/report.rb:36
1896
+ msgid "Restarted"
1619
1897
  msgstr ""
1620
1898
 
1621
- #: lib/hammer_cli_foreman/image.rb:32
1622
- msgid "Username"
1899
+ #: ../lib/hammer_cli_foreman/report.rb:16
1900
+ #: ../lib/hammer_cli_foreman/report.rb:37
1901
+ msgid "Failed"
1623
1902
  msgstr ""
1624
1903
 
1625
- #: lib/hammer_cli_foreman/image.rb:46
1626
- msgid "IAM role"
1904
+ #: ../lib/hammer_cli_foreman/report.rb:17
1905
+ #: ../lib/hammer_cli_foreman/report.rb:38
1906
+ msgid "Restart Failures"
1627
1907
  msgstr ""
1628
1908
 
1629
- #: lib/hammer_cli_foreman/image.rb:56
1630
- msgid "Show images available for addition"
1909
+ #: ../lib/hammer_cli_foreman/report.rb:18
1910
+ #: ../lib/hammer_cli_foreman/report.rb:39
1911
+ msgid "Skipped"
1631
1912
  msgstr ""
1632
1913
 
1633
- #: lib/hammer_cli_foreman/image.rb:81
1634
- msgid "Image created"
1914
+ #: ../lib/hammer_cli_foreman/report.rb:19
1915
+ #: ../lib/hammer_cli_foreman/report.rb:40
1916
+ msgid "Pending"
1635
1917
  msgstr ""
1636
1918
 
1637
- #: lib/hammer_cli_foreman/image.rb:82
1638
- msgid "Could not create the image"
1919
+ #: ../lib/hammer_cli_foreman/report.rb:32
1920
+ msgid "Reported at"
1639
1921
  msgstr ""
1640
1922
 
1641
- #: lib/hammer_cli_foreman/image.rb:90
1642
- msgid "Image updated"
1923
+ #: ../lib/hammer_cli_foreman/report.rb:33
1924
+ msgid "Report status"
1643
1925
  msgstr ""
1644
1926
 
1645
- #: lib/hammer_cli_foreman/image.rb:91
1646
- msgid "Could not update the image"
1927
+ #: ../lib/hammer_cli_foreman/report.rb:43
1928
+ msgid "Report metrics"
1647
1929
  msgstr ""
1648
1930
 
1649
- #: lib/hammer_cli_foreman/image.rb:99
1650
- msgid "Image deleted"
1931
+ #: ../lib/hammer_cli_foreman/report.rb:46
1932
+ msgid "config_retrieval"
1651
1933
  msgstr ""
1652
1934
 
1653
- #: lib/hammer_cli_foreman/image.rb:100
1654
- msgid "Could not delete the image"
1935
+ #: ../lib/hammer_cli_foreman/report.rb:47
1936
+ msgid "exec"
1655
1937
  msgstr ""
1656
1938
 
1657
- #: lib/hammer_cli_foreman/partition_table.rb:31
1658
- msgid "View partition table content."
1939
+ #: ../lib/hammer_cli_foreman/report.rb:48
1940
+ msgid "file"
1659
1941
  msgstr ""
1660
1942
 
1661
- #: lib/hammer_cli_foreman/partition_table.rb:43
1662
- #: lib/hammer_cli_foreman/partition_table.rb:54
1663
- msgid "Path to a file that contains the partition layout"
1943
+ #: ../lib/hammer_cli_foreman/report.rb:49
1944
+ msgid "package"
1664
1945
  msgstr ""
1665
1946
 
1666
- #: lib/hammer_cli_foreman/partition_table.rb:46
1667
- msgid "Partition table created"
1947
+ #: ../lib/hammer_cli_foreman/report.rb:50
1948
+ msgid "service"
1668
1949
  msgstr ""
1669
1950
 
1670
- #: lib/hammer_cli_foreman/partition_table.rb:47
1671
- msgid "Could not create the partition table"
1951
+ #: ../lib/hammer_cli_foreman/report.rb:51
1952
+ msgid "user"
1672
1953
  msgstr ""
1673
1954
 
1674
- #: lib/hammer_cli_foreman/partition_table.rb:57
1675
- msgid "Partition table updated"
1955
+ #: ../lib/hammer_cli_foreman/report.rb:52
1956
+ msgid "yumrepo"
1676
1957
  msgstr ""
1677
1958
 
1678
- #: lib/hammer_cli_foreman/partition_table.rb:58
1679
- msgid "Could not update the partition table"
1959
+ #: ../lib/hammer_cli_foreman/report.rb:53
1960
+ msgid "filebucket"
1680
1961
  msgstr ""
1681
1962
 
1682
- #: lib/hammer_cli_foreman/partition_table.rb:65
1683
- msgid "Partition table deleted"
1963
+ #: ../lib/hammer_cli_foreman/report.rb:54
1964
+ msgid "cron"
1684
1965
  msgstr ""
1685
1966
 
1686
- #: lib/hammer_cli_foreman/partition_table.rb:66
1687
- msgid "Could not delete the partition table"
1967
+ #: ../lib/hammer_cli_foreman/report.rb:55
1968
+ msgid "total"
1688
1969
  msgstr ""
1689
1970
 
1690
- #: lib/hammer_cli_foreman/credentials.rb:26
1691
- msgid "[Foreman] Username: "
1971
+ #: ../lib/hammer_cli_foreman/report.rb:59
1972
+ msgid "Logs"
1692
1973
  msgstr ""
1693
1974
 
1694
- #: lib/hammer_cli_foreman/credentials.rb:33
1695
- msgid "[Foreman] Password for %s: "
1975
+ #: ../lib/hammer_cli_foreman/report.rb:65
1976
+ msgid "Message"
1696
1977
  msgstr ""
1697
1978
 
1698
- #: lib/hammer_cli_foreman/id_resolver.rb:36
1699
- msgid "Architecture name"
1979
+ #: ../lib/hammer_cli_foreman/report.rb:76
1980
+ msgid "Report has been deleted"
1700
1981
  msgstr ""
1701
1982
 
1702
- #: lib/hammer_cli_foreman/id_resolver.rb:37
1703
- msgid "Compute resource name"
1983
+ #: ../lib/hammer_cli_foreman/report.rb:77
1984
+ msgid "Could not delete the report"
1704
1985
  msgstr ""
1705
1986
 
1706
- #: lib/hammer_cli_foreman/id_resolver.rb:38
1707
- msgid "Domain name"
1987
+ #: ../lib/hammer_cli_foreman/resource_supported_test.rb:11
1988
+ msgid "The server does not support such operation."
1708
1989
  msgstr ""
1709
1990
 
1710
- #: lib/hammer_cli_foreman/id_resolver.rb:39
1711
- msgid "Environment name"
1991
+ #: ../lib/hammer_cli_foreman/role.rb:23
1992
+ msgid "User role id"
1712
1993
  msgstr ""
1713
1994
 
1714
- #: lib/hammer_cli_foreman/id_resolver.rb:42
1715
- msgid "Host name"
1995
+ #: ../lib/hammer_cli_foreman/role.rb:47
1996
+ msgid "User role [%<name>s] created"
1716
1997
  msgstr ""
1717
1998
 
1718
- #: lib/hammer_cli_foreman/id_resolver.rb:43
1719
- msgid "Hostgroup name"
1999
+ #: ../lib/hammer_cli_foreman/role.rb:48
2000
+ msgid "Could not create the user role"
1720
2001
  msgstr ""
1721
2002
 
1722
- #: lib/hammer_cli_foreman/id_resolver.rb:45
1723
- msgid "Location name"
2003
+ #: ../lib/hammer_cli_foreman/role.rb:55
2004
+ msgid "User role [%<name>s] updated"
1724
2005
  msgstr ""
1725
2006
 
1726
- #: lib/hammer_cli_foreman/id_resolver.rb:46
1727
- msgid "Medium name"
2007
+ #: ../lib/hammer_cli_foreman/role.rb:56
2008
+ msgid "Could not update the user role"
1728
2009
  msgstr ""
1729
2010
 
1730
- #: lib/hammer_cli_foreman/id_resolver.rb:47
1731
- msgid "Model name"
2011
+ #: ../lib/hammer_cli_foreman/role.rb:63
2012
+ msgid "User role [%<name>s] deleted"
1732
2013
  msgstr ""
1733
2014
 
1734
- #: lib/hammer_cli_foreman/id_resolver.rb:48
1735
- msgid "Organization name"
2015
+ #: ../lib/hammer_cli_foreman/role.rb:64
2016
+ msgid "Could not delete the user roles"
1736
2017
  msgstr ""
1737
2018
 
1738
- #: lib/hammer_cli_foreman/id_resolver.rb:49
1739
- msgid "Operating system title"
2019
+ #: ../lib/hammer_cli_foreman/settings.rb:28
2020
+ msgid "Setting [%{name}] updated to [%{value}]"
1740
2021
  msgstr ""
1741
2022
 
1742
- #: lib/hammer_cli_foreman/id_resolver.rb:50
1743
- msgid "Partition table name"
2023
+ #: ../lib/hammer_cli_foreman/settings.rb:29
2024
+ msgid "Could not update the setting"
1744
2025
  msgstr ""
1745
2026
 
1746
- #: lib/hammer_cli_foreman/id_resolver.rb:51
1747
- msgid "Proxy name"
2027
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:11
2028
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:11
2029
+ msgid "Default Value"
1748
2030
  msgstr ""
1749
2031
 
1750
- #: lib/hammer_cli_foreman/id_resolver.rb:52
1751
- msgid "Puppet class name"
2032
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:12
2033
+ msgid "Override"
1752
2034
  msgstr ""
1753
2035
 
1754
- #: lib/hammer_cli_foreman/id_resolver.rb:53
1755
- msgid "Report name"
2036
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:36
2037
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:27
2038
+ msgid "Puppet class"
1756
2039
  msgstr ""
1757
2040
 
1758
- #: lib/hammer_cli_foreman/id_resolver.rb:54
1759
- msgid "User role name"
2041
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:37
2042
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:28
2043
+ msgid "Class Id"
1760
2044
  msgstr ""
1761
2045
 
1762
- #: lib/hammer_cli_foreman/id_resolver.rb:55
1763
- msgid "Subnet name"
2046
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:63
2047
+ msgid "Required"
1764
2048
  msgstr ""
1765
2049
 
1766
- #: lib/hammer_cli_foreman/id_resolver.rb:57
1767
- msgid "User's login to search by"
2050
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:65
2051
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:53
2052
+ msgid "Validator"
1768
2053
  msgstr ""
1769
2054
 
1770
- #: lib/hammer_cli_foreman/id_resolver.rb:58
1771
- msgid "Common parameter name"
2055
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:67
2056
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:55
2057
+ msgid "Rule"
1772
2058
  msgstr ""
1773
2059
 
1774
- #: lib/hammer_cli_foreman/id_resolver.rb:59
1775
- msgid "Smart class parameter name"
2060
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:69
2061
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:57
2062
+ msgid "Override values"
1776
2063
  msgstr ""
1777
2064
 
1778
- #: lib/hammer_cli_foreman/id_resolver.rb:61
1779
- msgid "Name to search by"
2065
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:70
2066
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:58
2067
+ msgid "Merge overrides"
1780
2068
  msgstr ""
1781
2069
 
1782
- #: lib/hammer_cli_foreman/id_resolver.rb:149
1783
- msgid "one of %s not found"
2070
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:71
2071
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:59
2072
+ msgid "Avoid duplicates"
1784
2073
  msgstr ""
1785
2074
 
1786
- #: lib/hammer_cli_foreman/id_resolver.rb:191
1787
- msgid "%s not found"
2075
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:72
2076
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:60
2077
+ msgid "Order"
1788
2078
  msgstr ""
1789
2079
 
1790
- #: lib/hammer_cli_foreman/id_resolver.rb:192
1791
- msgid "%s found more than once"
2080
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:73
2081
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:61
2082
+ msgid "Values"
1792
2083
  msgstr ""
1793
2084
 
1794
- #: lib/hammer_cli_foreman/id_resolver.rb:203
1795
- msgid "Missing options to search %s"
2085
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:75
2086
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:63
2087
+ msgid "Match"
1796
2088
  msgstr ""
1797
2089
 
1798
- #: lib/hammer_cli_foreman/user.rb:11
1799
- msgid "Login"
2090
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:102
2091
+ msgid "Parameter updated"
1800
2092
  msgstr ""
1801
2093
 
1802
- #: lib/hammer_cli_foreman/user.rb:13
1803
- msgid "Email"
2094
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:103
2095
+ msgid "Could not update the parameter"
1804
2096
  msgstr ""
1805
2097
 
1806
- #: lib/hammer_cli_foreman/user.rb:28
1807
- msgid "Admin"
2098
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:110
2099
+ msgid "Override this parameter."
1808
2100
  msgstr ""
1809
2101
 
1810
- #: lib/hammer_cli_foreman/user.rb:29
1811
- msgid "Authorized by"
2102
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:112
2103
+ msgid "This parameter is required."
1812
2104
  msgstr ""
1813
2105
 
1814
- #: lib/hammer_cli_foreman/user.rb:30
1815
- msgid "Last login"
2106
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:114
2107
+ msgid "Type of the parameter."
1816
2108
  msgstr ""
1817
2109
 
1818
- #: lib/hammer_cli_foreman/user.rb:47
1819
- msgid "User created"
2110
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:117
2111
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:89
2112
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:103
2113
+ msgid "Type of the validator."
1820
2114
  msgstr ""
1821
2115
 
1822
- #: lib/hammer_cli_foreman/user.rb:48
1823
- msgid "Could not create the user"
2116
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:131
2117
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:121
2118
+ msgid "Override value created"
1824
2119
  msgstr ""
1825
2120
 
1826
- #: lib/hammer_cli_foreman/user.rb:55
1827
- msgid "User updated"
2121
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:132
2122
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:122
2123
+ msgid "Could not create the override_value"
1828
2124
  msgstr ""
1829
2125
 
1830
- #: lib/hammer_cli_foreman/user.rb:56
1831
- msgid "Could not update the user"
2126
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:151
2127
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:134
2128
+ msgid "Override value deleted"
1832
2129
  msgstr ""
1833
2130
 
1834
- #: lib/hammer_cli_foreman/user.rb:63
1835
- msgid "User deleted"
2131
+ #: ../lib/hammer_cli_foreman/smart_class_parameter.rb:152
2132
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:135
2133
+ msgid "Could not delete the override value"
1836
2134
  msgstr ""
1837
2135
 
1838
- #: lib/hammer_cli_foreman/user.rb:64
1839
- msgid "Could not delete the user"
2136
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:13
2137
+ msgid "URL"
1840
2138
  msgstr ""
1841
2139
 
1842
- #: lib/hammer_cli_foreman/filter.rb:10
1843
- msgid "Resource type"
2140
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:14
2141
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:29
2142
+ msgid "Features"
1844
2143
  msgstr ""
1845
2144
 
1846
- #: lib/hammer_cli_foreman/filter.rb:11
1847
- msgid "Search"
2145
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:41
2146
+ msgid "Smart proxy created"
1848
2147
  msgstr ""
1849
2148
 
1850
- #: lib/hammer_cli_foreman/filter.rb:12
1851
- msgid "Unlimited?"
2149
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:42
2150
+ msgid "Could not create the proxy"
1852
2151
  msgstr ""
1853
2152
 
1854
- #: lib/hammer_cli_foreman/filter.rb:13
1855
- msgid "Role"
2153
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:49
2154
+ msgid "Smart proxy updated"
1856
2155
  msgstr ""
1857
2156
 
1858
- #: lib/hammer_cli_foreman/filter.rb:14
1859
- msgid "Permissions"
2157
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:50
2158
+ msgid "Could not update the proxy"
1860
2159
  msgstr ""
1861
2160
 
1862
- #: lib/hammer_cli_foreman/filter.rb:44
1863
- msgid "Permission filter for [%<resource_type>s] created"
2161
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:57
2162
+ msgid "Smart proxy deleted"
1864
2163
  msgstr ""
1865
2164
 
1866
- #: lib/hammer_cli_foreman/filter.rb:45
1867
- msgid "Could not create the permission filter"
2165
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:58
2166
+ msgid "Could not delete the proxy"
1868
2167
  msgstr ""
1869
2168
 
1870
- #: lib/hammer_cli_foreman/filter.rb:52
1871
- msgid "Permission filter for [%<resource_type>s] updated"
2169
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:69
2170
+ msgid "Puppet classes were imported"
1872
2171
  msgstr ""
1873
2172
 
1874
- #: lib/hammer_cli_foreman/filter.rb:53
1875
- msgid "Could not update the permission filter"
2173
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:70
2174
+ msgid "Import of puppet classes failed"
1876
2175
  msgstr ""
1877
2176
 
1878
- #: lib/hammer_cli_foreman/filter.rb:60
1879
- msgid "Permission filter deleted"
2177
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:72
2178
+ msgid "Do not run the import"
1880
2179
  msgstr ""
1881
2180
 
1882
- #: lib/hammer_cli_foreman/filter.rb:61
1883
- msgid "Could not delete the permission filter"
2181
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:92
2182
+ msgid "Smart proxy features were refreshed"
1884
2183
  msgstr ""
1885
2184
 
1886
- #: lib/hammer_cli_foreman/location.rb:24 lib/hammer_cli_foreman/location.rb:62
1887
- #: lib/hammer_cli_foreman/location.rb:74
1888
- msgid "Location numeric id to search by"
2185
+ #: ../lib/hammer_cli_foreman/smart_proxy.rb:93
2186
+ msgid "Refresh of smart proxy features failed"
1889
2187
  msgstr ""
1890
2188
 
1891
- #: lib/hammer_cli_foreman/location.rb:52
1892
- msgid "Location created"
2189
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:81
2190
+ msgid "Smart variable [%{variable}] created"
1893
2191
  msgstr ""
1894
2192
 
1895
- #: lib/hammer_cli_foreman/location.rb:53
1896
- msgid "Could not create the location"
2193
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:82
2194
+ msgid "Could not create the smart variable"
1897
2195
  msgstr ""
1898
2196
 
1899
- #: lib/hammer_cli_foreman/location.rb:64
1900
- msgid "Location updated"
2197
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:86
2198
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:100
2199
+ msgid "Type of the variable."
1901
2200
  msgstr ""
1902
2201
 
1903
- #: lib/hammer_cli_foreman/location.rb:65
1904
- msgid "Could not update the location"
2202
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:95
2203
+ msgid "Smart variable [%{variable}] updated"
1905
2204
  msgstr ""
1906
2205
 
1907
- #: lib/hammer_cli_foreman/location.rb:76
1908
- msgid "Location deleted"
2206
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:96
2207
+ msgid "Could not update the smart variable"
1909
2208
  msgstr ""
1910
2209
 
1911
- #: lib/hammer_cli_foreman/location.rb:77
1912
- msgid "Could not delete the location"
2210
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:110
2211
+ msgid "Smart variable [%{variable}] deleted"
1913
2212
  msgstr ""
1914
2213
 
1915
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:7
1916
- msgid "Manage LDAP auth sources."
2214
+ #: ../lib/hammer_cli_foreman/smart_variable.rb:111
2215
+ msgid "Could not delete the smart variable"
1917
2216
  msgstr ""
1918
2217
 
1919
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:15
1920
- msgid "LDAPS?"
2218
+ #: ../lib/hammer_cli_foreman/subnet.rb:13
2219
+ msgid "Mask"
1921
2220
  msgstr ""
1922
2221
 
1923
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:16
1924
- msgid "Port"
2222
+ #: ../lib/hammer_cli_foreman/subnet.rb:23
2223
+ msgid "Priority"
1925
2224
  msgstr ""
1926
2225
 
1927
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:17
1928
- msgid "Server Type"
2226
+ #: ../lib/hammer_cli_foreman/subnet.rb:24
2227
+ msgid "DNS"
1929
2228
  msgstr ""
1930
2229
 
1931
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:27
1932
- msgid "Account Username"
2230
+ #: ../lib/hammer_cli_foreman/subnet.rb:25
2231
+ msgid "Primary DNS"
1933
2232
  msgstr ""
1934
2233
 
1935
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:28
1936
- msgid "Base DN"
2234
+ #: ../lib/hammer_cli_foreman/subnet.rb:26
2235
+ msgid "Secondary DNS"
1937
2236
  msgstr ""
1938
2237
 
1939
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:29
1940
- msgid "LDAP filter"
2238
+ #: ../lib/hammer_cli_foreman/subnet.rb:27
2239
+ msgid "TFTP"
1941
2240
  msgstr ""
1942
2241
 
1943
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:30
1944
- msgid "Automatically Create Accounts?"
2242
+ #: ../lib/hammer_cli_foreman/subnet.rb:28
2243
+ msgid "DHCP"
1945
2244
  msgstr ""
1946
2245
 
1947
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:31
1948
- msgid "Login Name Attribute"
2246
+ #: ../lib/hammer_cli_foreman/subnet.rb:30
2247
+ msgid "VLAN ID"
1949
2248
  msgstr ""
1950
2249
 
1951
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:32
1952
- msgid "First Name Attribute"
2250
+ #: ../lib/hammer_cli_foreman/subnet.rb:31
2251
+ msgid "Gateway"
1953
2252
  msgstr ""
1954
2253
 
1955
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:33
1956
- msgid "Last Name Attribute"
2254
+ #: ../lib/hammer_cli_foreman/subnet.rb:32
2255
+ msgid "From"
1957
2256
  msgstr ""
1958
2257
 
1959
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:34
1960
- msgid "Email Address Attribute"
2258
+ #: ../lib/hammer_cli_foreman/subnet.rb:33
2259
+ msgid "To"
1961
2260
  msgstr ""
1962
2261
 
1963
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:35
1964
- msgid "Photo Attribute"
2262
+ #: ../lib/hammer_cli_foreman/subnet.rb:44
2263
+ msgid "Subnet created"
1965
2264
  msgstr ""
1966
2265
 
1967
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:43
1968
- msgid "Auth source created"
2266
+ #: ../lib/hammer_cli_foreman/subnet.rb:45
2267
+ msgid "Could not create the subnet"
1969
2268
  msgstr ""
1970
2269
 
1971
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:44
1972
- msgid "Could not create the Auth Source"
2270
+ #: ../lib/hammer_cli_foreman/subnet.rb:53
2271
+ msgid "Subnet updated"
1973
2272
  msgstr ""
1974
2273
 
1975
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:51
1976
- msgid "Auth source deleted"
2274
+ #: ../lib/hammer_cli_foreman/subnet.rb:54
2275
+ msgid "Could not update the subnet"
1977
2276
  msgstr ""
1978
2277
 
1979
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:52
1980
- msgid "Could not delete the Auth Source"
2278
+ #: ../lib/hammer_cli_foreman/subnet.rb:62
2279
+ msgid "Subnet deleted"
1981
2280
  msgstr ""
1982
2281
 
1983
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:59
1984
- msgid "Auth source updated"
2282
+ #: ../lib/hammer_cli_foreman/subnet.rb:63
2283
+ msgid "Could not delete the subnet"
1985
2284
  msgstr ""
1986
2285
 
1987
- #: lib/hammer_cli_foreman/auth_source_ldap.rb:60
1988
- msgid "Could not update the Auth Source"
2286
+ #: ../lib/hammer_cli_foreman/template.rb:71
2287
+ msgid "List available config template kinds."
1989
2288
  msgstr ""
1990
2289
 
1991
- #: lib/hammer_cli_foreman/architecture.rb:31
1992
- msgid "Architecture created"
2290
+ #: ../lib/hammer_cli_foreman/template.rb:90
2291
+ msgid "View config template content."
1993
2292
  msgstr ""
1994
2293
 
1995
- #: lib/hammer_cli_foreman/architecture.rb:32
1996
- msgid "Could not create the architecture"
2294
+ #: ../lib/hammer_cli_foreman/template.rb:102
2295
+ #: ../lib/hammer_cli_foreman/template.rb:120
2296
+ msgid "Path to a file that contains the template"
1997
2297
  msgstr ""
1998
2298
 
1999
- #: lib/hammer_cli_foreman/architecture.rb:39
2000
- msgid "Architecture deleted"
2299
+ #: ../lib/hammer_cli_foreman/template.rb:104
2300
+ #: ../lib/hammer_cli_foreman/template.rb:122
2301
+ msgid "Template type. Eg. snippet, script, provision"
2001
2302
  msgstr ""
2002
2303
 
2003
- #: lib/hammer_cli_foreman/architecture.rb:40
2004
- msgid "Could not delete the architecture"
2304
+ #: ../lib/hammer_cli_foreman/template.rb:106
2305
+ msgid "Config template created"
2005
2306
  msgstr ""
2006
2307
 
2007
- #: lib/hammer_cli_foreman/architecture.rb:47
2008
- msgid "Architecture updated"
2308
+ #: ../lib/hammer_cli_foreman/template.rb:107
2309
+ msgid "Could not create the config template"
2009
2310
  msgstr ""
2010
2311
 
2011
- #: lib/hammer_cli_foreman/architecture.rb:48
2012
- msgid "Could not update the architecture"
2312
+ #: ../lib/hammer_cli_foreman/template.rb:124
2313
+ msgid "Config template updated"
2013
2314
  msgstr ""
2014
2315
 
2015
- #: lib/hammer_cli_foreman.rb:30
2016
- msgid "Foreman connection login/logout."
2316
+ #: ../lib/hammer_cli_foreman/template.rb:125
2317
+ msgid "Could not update the config template"
2017
2318
  msgstr ""
2018
2319
 
2019
- #: lib/hammer_cli_foreman.rb:34
2020
- msgid "Manipulate architectures."
2320
+ #: ../lib/hammer_cli_foreman/template.rb:138
2321
+ msgid "Config template deleted"
2021
2322
  msgstr ""
2022
2323
 
2023
- #: lib/hammer_cli_foreman.rb:38
2024
- msgid "Manipulate auth sources."
2324
+ #: ../lib/hammer_cli_foreman/template.rb:139
2325
+ msgid "Could not delete the config template"
2025
2326
  msgstr ""
2026
2327
 
2027
- #: lib/hammer_cli_foreman.rb:42
2028
- msgid "Manipulate compute resources."
2328
+ #: ../lib/hammer_cli_foreman/user.rb:11
2329
+ msgid "Login"
2029
2330
  msgstr ""
2030
2331
 
2031
- #: lib/hammer_cli_foreman.rb:46
2032
- msgid "Manipulate domains."
2332
+ #: ../lib/hammer_cli_foreman/user.rb:13
2333
+ msgid "Email"
2033
2334
  msgstr ""
2034
2335
 
2035
- #: lib/hammer_cli_foreman.rb:50
2036
- msgid "Manipulate environments."
2336
+ #: ../lib/hammer_cli_foreman/user.rb:28
2337
+ msgid "Admin"
2037
2338
  msgstr ""
2038
2339
 
2039
- #: lib/hammer_cli_foreman.rb:54
2040
- msgid "Search facts."
2340
+ #: ../lib/hammer_cli_foreman/user.rb:29
2341
+ msgid "Authorized by"
2041
2342
  msgstr ""
2042
2343
 
2043
- #: lib/hammer_cli_foreman.rb:58
2044
- msgid "Manage permission filters."
2344
+ #: ../lib/hammer_cli_foreman/user.rb:30
2345
+ msgid "Locale"
2045
2346
  msgstr ""
2046
2347
 
2047
- #: lib/hammer_cli_foreman.rb:62
2048
- msgid "Manipulate hosts."
2348
+ #: ../lib/hammer_cli_foreman/user.rb:31
2349
+ msgid "Timezone"
2049
2350
  msgstr ""
2050
2351
 
2051
- #: lib/hammer_cli_foreman.rb:66
2052
- msgid "Manipulate hostgroups."
2352
+ #: ../lib/hammer_cli_foreman/user.rb:32
2353
+ msgid "Last login"
2053
2354
  msgstr ""
2054
2355
 
2055
- #: lib/hammer_cli_foreman.rb:70
2056
- msgid "Manipulate locations."
2356
+ #: ../lib/hammer_cli_foreman/user.rb:33
2357
+ msgid "Default organization"
2057
2358
  msgstr ""
2058
2359
 
2059
- #: lib/hammer_cli_foreman.rb:74
2060
- msgid "Manipulate installation media."
2360
+ #: ../lib/hammer_cli_foreman/user.rb:34
2361
+ msgid "Default location"
2061
2362
  msgstr ""
2062
2363
 
2063
- #: lib/hammer_cli_foreman.rb:78
2064
- msgid "Manipulate hardware models."
2364
+ #: ../lib/hammer_cli_foreman/user.rb:42 ../lib/hammer_cli_foreman/user.rb:43
2365
+ msgid "default"
2065
2366
  msgstr ""
2066
2367
 
2067
- #: lib/hammer_cli_foreman.rb:82
2068
- msgid "Manipulate operating system."
2368
+ #: ../lib/hammer_cli_foreman/user.rb:53
2369
+ msgid "User [%{login}] created"
2069
2370
  msgstr ""
2070
2371
 
2071
- #: lib/hammer_cli_foreman.rb:86
2072
- msgid "Manipulate organizations."
2372
+ #: ../lib/hammer_cli_foreman/user.rb:54
2373
+ msgid "Could not create the user"
2073
2374
  msgstr ""
2074
2375
 
2075
- #: lib/hammer_cli_foreman.rb:90
2076
- msgid "Manipulate partition tables."
2376
+ #: ../lib/hammer_cli_foreman/user.rb:61
2377
+ msgid "User [%{login}] updated"
2077
2378
  msgstr ""
2078
2379
 
2079
- #: lib/hammer_cli_foreman.rb:94
2080
- msgid "Search puppet modules."
2380
+ #: ../lib/hammer_cli_foreman/user.rb:62
2381
+ msgid "Could not update the user"
2081
2382
  msgstr ""
2082
2383
 
2083
- #: lib/hammer_cli_foreman.rb:98
2084
- msgid "Browse and read reports."
2384
+ #: ../lib/hammer_cli_foreman/user.rb:69
2385
+ msgid "User [%{login}] deleted"
2085
2386
  msgstr ""
2086
2387
 
2087
- #: lib/hammer_cli_foreman.rb:102
2088
- msgid "Manage user roles."
2388
+ #: ../lib/hammer_cli_foreman/user.rb:70
2389
+ msgid "Could not delete the user"
2089
2390
  msgstr ""
2090
2391
 
2091
- #: lib/hammer_cli_foreman.rb:106
2092
- msgid "Manipulate smart class parameters."
2392
+ #: ../lib/hammer_cli_foreman/usergroup.rb:31
2393
+ msgid "User group [%<name>s] created"
2093
2394
  msgstr ""
2094
2395
 
2095
- #: lib/hammer_cli_foreman.rb:110
2096
- msgid "Manipulate smart proxies."
2396
+ #: ../lib/hammer_cli_foreman/usergroup.rb:32
2397
+ msgid "Could not create the user group"
2097
2398
  msgstr ""
2098
2399
 
2099
- #: lib/hammer_cli_foreman.rb:114
2100
- msgid "Manipulate subnets."
2400
+ #: ../lib/hammer_cli_foreman/usergroup.rb:38
2401
+ msgid "User group [%<name>s] updated"
2101
2402
  msgstr ""
2102
2403
 
2103
- #: lib/hammer_cli_foreman.rb:118
2104
- msgid "Manipulate config templates."
2404
+ #: ../lib/hammer_cli_foreman/usergroup.rb:39
2405
+ msgid "Could not update the user group"
2105
2406
  msgstr ""
2106
2407
 
2107
- #: lib/hammer_cli_foreman.rb:122
2108
- msgid "Manipulate users."
2408
+ #: ../lib/hammer_cli_foreman/usergroup.rb:45
2409
+ msgid "User group [%<name>s] deleted"
2109
2410
  msgstr ""
2110
2411
 
2111
- #: lib/hammer_cli_foreman.rb:126
2112
- msgid "Manage user groups."
2412
+ #: ../lib/hammer_cli_foreman/usergroup.rb:46
2413
+ msgid "Could not delete the user group"
2113
2414
  msgstr ""