hammer_cli_foreman 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of hammer_cli_foreman might be problematic. Click here for more details.

Files changed (92) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -3
  3. data/doc/developer_docs.md +13 -0
  4. data/doc/name_id_resolution.md +50 -0
  5. data/doc/option_builder.md +48 -0
  6. data/doc/release_notes.md +64 -0
  7. data/lib/hammer_cli_foreman.rb +100 -23
  8. data/lib/hammer_cli_foreman/architecture.rb +0 -1
  9. data/lib/hammer_cli_foreman/associating_commands.rb +71 -0
  10. data/lib/hammer_cli_foreman/auth.rb +0 -1
  11. data/lib/hammer_cli_foreman/commands.rb +112 -80
  12. data/lib/hammer_cli_foreman/common_parameter.rb +5 -3
  13. data/lib/hammer_cli_foreman/compute_resource.rb +0 -2
  14. data/lib/hammer_cli_foreman/dependency_resolver.rb +32 -0
  15. data/lib/hammer_cli_foreman/domain.rb +0 -1
  16. data/lib/hammer_cli_foreman/environment.rb +0 -2
  17. data/lib/hammer_cli_foreman/exception_handler.rb +3 -3
  18. data/lib/hammer_cli_foreman/fact.rb +1 -1
  19. data/lib/hammer_cli_foreman/filter.rb +102 -0
  20. data/lib/hammer_cli_foreman/host.rb +5 -7
  21. data/lib/hammer_cli_foreman/hostgroup.rb +4 -3
  22. data/lib/hammer_cli_foreman/id_resolver.rb +60 -51
  23. data/lib/hammer_cli_foreman/image.rb +0 -1
  24. data/lib/hammer_cli_foreman/location.rb +7 -3
  25. data/lib/hammer_cli_foreman/media.rb +1 -1
  26. data/lib/hammer_cli_foreman/model.rb +1 -1
  27. data/lib/hammer_cli_foreman/operating_system.rb +4 -6
  28. data/lib/hammer_cli_foreman/option_builders.rb +285 -0
  29. data/lib/hammer_cli_foreman/organization.rb +7 -3
  30. data/lib/hammer_cli_foreman/param_filters.rb +61 -0
  31. data/lib/hammer_cli_foreman/parameter.rb +5 -3
  32. data/lib/hammer_cli_foreman/partition_table.rb +1 -1
  33. data/lib/hammer_cli_foreman/puppet_class.rb +1 -1
  34. data/lib/hammer_cli_foreman/references.rb +16 -0
  35. data/lib/hammer_cli_foreman/report.rb +1 -1
  36. data/lib/hammer_cli_foreman/role.rb +78 -0
  37. data/lib/hammer_cli_foreman/smart_class_parameter.rb +1 -1
  38. data/lib/hammer_cli_foreman/smart_proxy.rb +17 -2
  39. data/lib/hammer_cli_foreman/smart_variables.rb +111 -0
  40. data/lib/hammer_cli_foreman/subnet.rb +1 -1
  41. data/lib/hammer_cli_foreman/template.rb +10 -4
  42. data/lib/hammer_cli_foreman/user.rb +5 -1
  43. data/lib/hammer_cli_foreman/usergroup.rb +58 -0
  44. data/lib/hammer_cli_foreman/version.rb +1 -1
  45. data/locale/Makefile +12 -11
  46. data/locale/README.md +18 -0
  47. data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  48. data/locale/en/hammer-cli-foreman.po +1584 -0
  49. data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  50. data/locale/en_GB/hammer-cli-foreman.po +1975 -0
  51. data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  52. data/locale/es/hammer-cli-foreman.po +1976 -0
  53. data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
  54. data/locale/fr/hammer-cli-foreman.po +1976 -0
  55. data/locale/hammer-cli-foreman.pot +1197 -787
  56. data/test/unit/api_test.rb +25 -0
  57. data/test/unit/architecture_test.rb +1 -0
  58. data/test/unit/commands_test.rb +18 -0
  59. data/test/unit/common_parameter_test.rb +1 -0
  60. data/test/unit/compute_resource_test.rb +1 -0
  61. data/test/unit/data/1.6/foreman_api.json +1 -0
  62. data/test/unit/dependency_resolver_test.rb +42 -0
  63. data/test/unit/domain_test.rb +1 -0
  64. data/test/unit/environment_test.rb +1 -0
  65. data/test/unit/fact_test.rb +1 -0
  66. data/test/unit/filter_test.rb +133 -0
  67. data/test/unit/helpers/command.rb +0 -13
  68. data/test/unit/host_test.rb +3 -0
  69. data/test/unit/hostgroup_test.rb +1 -0
  70. data/test/unit/id_resolver_test.rb +21 -68
  71. data/test/unit/image_test.rb +1 -1
  72. data/test/unit/location_test.rb +2 -0
  73. data/test/unit/media_test.rb +2 -0
  74. data/test/unit/model_test.rb +1 -0
  75. data/test/unit/operating_system_test.rb +1 -0
  76. data/test/unit/option_builders_test.rb +543 -0
  77. data/test/unit/organization_test.rb +1 -0
  78. data/test/unit/param_filters_test.rb +143 -0
  79. data/test/unit/partition_table_test.rb +1 -0
  80. data/test/unit/puppet_class_test.rb +1 -0
  81. data/test/unit/report_test.rb +1 -0
  82. data/test/unit/role_test.rb +94 -0
  83. data/test/unit/smart_class_parameter_test.rb +1 -0
  84. data/test/unit/smart_proxy_test.rb +14 -1
  85. data/test/unit/subnet_test.rb +1 -0
  86. data/test/unit/template_test.rb +1 -0
  87. data/test/unit/test_helper.rb +1 -1
  88. data/test/unit/user_test.rb +1 -0
  89. data/test/unit/usergroup_test.rb +80 -0
  90. metadata +50 -7
  91. data/lib/hammer_cli_foreman/searchables_option_builder.rb +0 -99
  92. data/test/unit/searchables_option_builder_test.rb +0 -172
@@ -28,6 +28,8 @@ module HammerCLIForeman
28
28
  field :admin, _("Admin"), Fields::Boolean
29
29
  field :auth_source_internal, _("Authorized by"), Fields::Reference
30
30
  field :last_login_on, _("Last login"), Fields::Date
31
+ HammerCLIForeman::References.roles(self)
32
+ HammerCLIForeman::References.usergroups(self)
31
33
  HammerCLIForeman::References.taxonomies(self)
32
34
  HammerCLIForeman::References.timestamps(self)
33
35
  end
@@ -64,9 +66,11 @@ module HammerCLIForeman
64
66
  build_options
65
67
  end
66
68
 
69
+ HammerCLIForeman::AssociatingCommands::Role.extend_command(self)
70
+
67
71
  autoload_subcommands
68
72
  end
69
73
 
70
74
  end
71
75
 
72
- HammerCLI::MainCommand.subcommand 'user', _("Manipulate users."), HammerCLIForeman::User
76
+
@@ -0,0 +1,58 @@
1
+ module HammerCLIForeman
2
+
3
+ class Usergroup < HammerCLIForeman::Command
4
+
5
+ resource :usergroups
6
+
7
+ class ListCommand < HammerCLIForeman::ListCommand
8
+ output do
9
+ field :id, _("Id")
10
+ field :name, _("Name")
11
+ end
12
+
13
+ build_options
14
+ end
15
+
16
+ class InfoCommand < HammerCLIForeman::InfoCommand
17
+ output ListCommand.output_definition do
18
+ HammerCLIForeman::References.users(self)
19
+ HammerCLIForeman::References.usergroups(self)
20
+ HammerCLIForeman::References.roles(self)
21
+ HammerCLIForeman::References.timestamps(self)
22
+ end
23
+
24
+ build_options
25
+ end
26
+
27
+ class CreateCommand < HammerCLIForeman::CreateCommand
28
+ success_message _("User group [%<name>s] created")
29
+ failure_message _("Could not create the user group")
30
+
31
+ build_options
32
+ end
33
+
34
+ class UpdateCommand < HammerCLIForeman::UpdateCommand
35
+ success_message _("User group [%<name>s] updated")
36
+ failure_message _("Could not update the user group")
37
+
38
+ build_options
39
+ end
40
+
41
+ class DeleteCommand < HammerCLIForeman::DeleteCommand
42
+ success_message _("User group [%<name>s] deleted")
43
+ failure_message _("Could not delete the user group")
44
+
45
+ build_options
46
+ end
47
+
48
+ HammerCLIForeman::AssociatingCommands::Role.extend_command(self)
49
+ HammerCLIForeman::AssociatingCommands::User.extend_command(self)
50
+ HammerCLIForeman::AssociatingCommands::Usergroup.extend_command(self)
51
+
52
+ autoload_subcommands
53
+ end
54
+
55
+ end
56
+
57
+
58
+
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForeman
2
2
  def self.version
3
- @version ||= Gem::Version.new '0.1.1'
3
+ @version ||= Gem::Version.new '0.1.2'
4
4
  end
5
5
  end
data/locale/Makefile CHANGED
@@ -1,5 +1,5 @@
1
1
  #
2
- # Makefile for PO merging and MO generation.
2
+ # Makefile for PO merging and MO generation. More info in the README.
3
3
  #
4
4
  # make all-mo (default) - generate MO files
5
5
  # make check - check translations using translate-tool
@@ -7,6 +7,7 @@
7
7
  # make clean - clean everything
8
8
  #
9
9
  DOMAIN = hammer-cli-foreman
10
+ VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load("../hammer_cli_foreman.gemspec");puts spec.version')
10
11
  POTFILE = $(DOMAIN).pot
11
12
  MOFILE = $(DOMAIN).mo
12
13
  POFILES = $(shell find . -name '*.po')
@@ -45,20 +46,20 @@ uniq-po:
45
46
 
46
47
  tx-pull:
47
48
  tx pull -f
49
+ for f in $(POFILES) ; do \
50
+ sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
51
+ done
48
52
  -git commit -a -m "i18n - extracting new, pulling from tx"
49
53
 
50
54
  extract-strings:
51
- bundle exec rake locale:find DOMAIN=$(DOMAIN) SKIP_MODEL=1
55
+ bundle exec rake gettext:find
52
56
 
53
- tx-update: tx-pull extract-strings
54
- # merging po files is unnecessary when using transifex.com (amend that)
57
+ reset-po:
58
+ # merging po files is unnecessary when using transifex.com
55
59
  git checkout -- ../locale/*/*po
60
+
61
+ tx-update: tx-pull extract-strings reset-po $(MOFILES)
62
+ # amend mo files
63
+ git add ../locale/*/LC_MESSAGES
56
64
  git commit -a --amend -m "i18n - extracting new, pulling from tx"
57
65
  -echo Changes commited!
58
-
59
- # Remove all MO files
60
- clean:
61
- -rm -f messages.mo
62
- find . \( -name "*.mo" -o -name "*.pox" \) -exec rm -f '{}' ';'
63
- find . -path *LC_MESSAGES | xargs rm -rf
64
-
data/locale/README.md ADDED
@@ -0,0 +1,18 @@
1
+ Updating the translations
2
+ -------------------------
3
+
4
+ 1. Check if there are any new languages with progress more than 50% on [transifex](https://www.transifex.com/projects/p/foreman/resource/hammer-cli-foreman/). If so, do the following for each of the new languages:
5
+
6
+ ```
7
+ mkdir locale/<lang>
8
+ cp locale/hammer-cli-foreman.pot locale/<lang>/hammer-cli-foreman.po
9
+ ```
10
+ 2. Make sure you have `transifex-client` installed
11
+
12
+ 3. Update the translations. From GIT repo root directory run:
13
+
14
+ ```
15
+ make -C locale tx-update
16
+ ```
17
+
18
+ It will download translations from transifex, generates `mo` files, updates strings in `pot` file and wraps all the changes in a new commit. Transifex automatically updates its strings when the commit is pushed to Github.
@@ -0,0 +1,1584 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the hammer-cli-foreman package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer-cli-foreman 0.1.2\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2014-05-09 16:14-0400\n"
12
+ "PO-Revision-Date: 2014-03-04 16:47+0000\n"
13
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
+ "Language-Team: LANGUAGE <LL@li.org>\n"
15
+ "Language: \n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
+
21
+ #: lib/hammer_cli_foreman/host.rb:36
22
+ msgid "Host parameters."
23
+ msgstr ""
24
+
25
+ #: lib/hammer_cli_foreman/host.rb:38
26
+ msgid "Compute resource attributes."
27
+ msgstr ""
28
+
29
+ #: lib/hammer_cli_foreman/host.rb:40
30
+ msgid "Volume parameters"
31
+ msgstr ""
32
+
33
+ #: lib/hammer_cli_foreman/host.rb:42
34
+ msgid "Interface parameters."
35
+ msgstr ""
36
+
37
+ #: lib/hammer_cli_foreman/host.rb:124 lib/hammer_cli_foreman/host.rb:194
38
+ #: lib/hammer_cli_foreman/host.rb:207
39
+ #: lib/hammer_cli_foreman/puppet_class.rb:12
40
+ #: lib/hammer_cli_foreman/image.rb:30 lib/hammer_cli_foreman/subnet.rb:10
41
+ #: lib/hammer_cli_foreman/organization.rb:13
42
+ #: lib/hammer_cli_foreman/compute_resource.rb:11
43
+ #: lib/hammer_cli_foreman/environment.rb:14
44
+ #: lib/hammer_cli_foreman/hostgroup.rb:22
45
+ #: lib/hammer_cli_foreman/operating_system.rb:10
46
+ #: lib/hammer_cli_foreman/smart_proxy.rb:13 lib/hammer_cli_foreman/model.rb:10
47
+ #: lib/hammer_cli_foreman/architecture.rb:10
48
+ #: lib/hammer_cli_foreman/location.rb:13 lib/hammer_cli_foreman/media.rb:9
49
+ #: lib/hammer_cli_foreman/template.rb:25 lib/hammer_cli_foreman/report.rb:10
50
+ #: lib/hammer_cli_foreman/report.rb:30
51
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:8
52
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:67
53
+ #: lib/hammer_cli_foreman/partition_table.rb:10
54
+ #: lib/hammer_cli_foreman/domain.rb:10 lib/hammer_cli_foreman/user.rb:10
55
+ msgid "Id"
56
+ msgstr ""
57
+
58
+ #: lib/hammer_cli_foreman/host.rb:125 lib/hammer_cli_foreman/host.rb:195
59
+ #: lib/hammer_cli_foreman/host.rb:208
60
+ #: lib/hammer_cli_foreman/puppet_class.rb:13
61
+ #: lib/hammer_cli_foreman/image.rb:31 lib/hammer_cli_foreman/image.rb:72
62
+ #: lib/hammer_cli_foreman/subnet.rb:11
63
+ #: lib/hammer_cli_foreman/organization.rb:14
64
+ #: lib/hammer_cli_foreman/compute_resource.rb:12
65
+ #: lib/hammer_cli_foreman/environment.rb:15
66
+ #: lib/hammer_cli_foreman/common_parameter.rb:12
67
+ #: lib/hammer_cli_foreman/hostgroup.rb:23
68
+ #: lib/hammer_cli_foreman/operating_system.rb:11
69
+ #: lib/hammer_cli_foreman/smart_proxy.rb:14 lib/hammer_cli_foreman/model.rb:11
70
+ #: lib/hammer_cli_foreman/architecture.rb:11
71
+ #: lib/hammer_cli_foreman/location.rb:14 lib/hammer_cli_foreman/media.rb:10
72
+ #: lib/hammer_cli_foreman/template.rb:26 lib/hammer_cli_foreman/template.rb:73
73
+ #: lib/hammer_cli_foreman/partition_table.rb:11
74
+ #: lib/hammer_cli_foreman/domain.rb:11 lib/hammer_cli_foreman/user.rb:12
75
+ msgid "Name"
76
+ msgstr ""
77
+
78
+ #: lib/hammer_cli_foreman/host.rb:126 lib/hammer_cli_foreman/image.rb:32
79
+ #: lib/hammer_cli_foreman/hostgroup.rb:25
80
+ msgid "Operating System Id"
81
+ msgstr ""
82
+
83
+ #: lib/hammer_cli_foreman/host.rb:127
84
+ msgid "Host Group Id"
85
+ msgstr ""
86
+
87
+ #: lib/hammer_cli_foreman/host.rb:128 lib/hammer_cli_foreman/host.rb:196
88
+ #: lib/hammer_cli_foreman/host.rb:209
89
+ msgid "IP"
90
+ msgstr ""
91
+
92
+ #: lib/hammer_cli_foreman/host.rb:129 lib/hammer_cli_foreman/host.rb:197
93
+ #: lib/hammer_cli_foreman/host.rb:210
94
+ msgid "MAC"
95
+ msgstr ""
96
+
97
+ #: lib/hammer_cli_foreman/host.rb:149 lib/hammer_cli_foreman/image.rb:34
98
+ #: lib/hammer_cli_foreman/image.rb:73
99
+ #: lib/hammer_cli_foreman/compute_resource.rb:23
100
+ #: lib/hammer_cli_foreman/compute_resource.rb:29
101
+ msgid "UUID"
102
+ msgstr ""
103
+
104
+ #: lib/hammer_cli_foreman/host.rb:150
105
+ msgid "Cert name"
106
+ msgstr ""
107
+
108
+ #: lib/hammer_cli_foreman/host.rb:152
109
+ msgid "Environment"
110
+ msgstr ""
111
+
112
+ #: lib/hammer_cli_foreman/host.rb:153 lib/hammer_cli_foreman/hostgroup.rb:33
113
+ msgid "Environment Id"
114
+ msgstr ""
115
+
116
+ #: lib/hammer_cli_foreman/host.rb:155
117
+ msgid "Managed"
118
+ msgstr ""
119
+
120
+ #: lib/hammer_cli_foreman/host.rb:156
121
+ msgid "Enabled"
122
+ msgstr ""
123
+
124
+ #: lib/hammer_cli_foreman/host.rb:157
125
+ msgid "Build"
126
+ msgstr ""
127
+
128
+ #: lib/hammer_cli_foreman/host.rb:159
129
+ msgid "Use image"
130
+ msgstr ""
131
+
132
+ #: lib/hammer_cli_foreman/host.rb:160
133
+ msgid "Disk"
134
+ msgstr ""
135
+
136
+ #: lib/hammer_cli_foreman/host.rb:161
137
+ msgid "Image file"
138
+ msgstr ""
139
+
140
+ #: lib/hammer_cli_foreman/host.rb:163
141
+ msgid "SP Name"
142
+ msgstr ""
143
+
144
+ #: lib/hammer_cli_foreman/host.rb:164
145
+ msgid "SP IP"
146
+ msgstr ""
147
+
148
+ #: lib/hammer_cli_foreman/host.rb:165
149
+ msgid "SP MAC"
150
+ msgstr ""
151
+
152
+ #: lib/hammer_cli_foreman/host.rb:166
153
+ msgid "SP Subnet"
154
+ msgstr ""
155
+
156
+ #: lib/hammer_cli_foreman/host.rb:167
157
+ msgid "SP Subnet Id"
158
+ msgstr ""
159
+
160
+ #: lib/hammer_cli_foreman/host.rb:169 lib/hammer_cli_foreman/image.rb:48
161
+ #: lib/hammer_cli_foreman/organization.rb:27
162
+ #: lib/hammer_cli_foreman/compute_resource.rb:46
163
+ #: lib/hammer_cli_foreman/environment.rb:24
164
+ #: lib/hammer_cli_foreman/smart_proxy.rb:28 lib/hammer_cli_foreman/model.rb:23
165
+ #: lib/hammer_cli_foreman/architecture.rb:22
166
+ #: lib/hammer_cli_foreman/location.rb:27 lib/hammer_cli_foreman/media.rb:22
167
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:73
168
+ #: lib/hammer_cli_foreman/partition_table.rb:21
169
+ #: lib/hammer_cli_foreman/domain.rb:23 lib/hammer_cli_foreman/user.rb:29
170
+ msgid "Created at"
171
+ msgstr ""
172
+
173
+ #: lib/hammer_cli_foreman/host.rb:170 lib/hammer_cli_foreman/image.rb:49
174
+ #: lib/hammer_cli_foreman/organization.rb:28
175
+ #: lib/hammer_cli_foreman/compute_resource.rb:47
176
+ #: lib/hammer_cli_foreman/environment.rb:25
177
+ #: lib/hammer_cli_foreman/smart_proxy.rb:29 lib/hammer_cli_foreman/model.rb:24
178
+ #: lib/hammer_cli_foreman/architecture.rb:23
179
+ #: lib/hammer_cli_foreman/location.rb:28 lib/hammer_cli_foreman/media.rb:23
180
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:74
181
+ #: lib/hammer_cli_foreman/partition_table.rb:22
182
+ #: lib/hammer_cli_foreman/domain.rb:24 lib/hammer_cli_foreman/user.rb:30
183
+ msgid "Updated at"
184
+ msgstr ""
185
+
186
+ #: lib/hammer_cli_foreman/host.rb:171
187
+ msgid "Installed at"
188
+ msgstr ""
189
+
190
+ #: lib/hammer_cli_foreman/host.rb:172 lib/hammer_cli_foreman/report.rb:12
191
+ msgid "Last report"
192
+ msgstr ""
193
+
194
+ #: lib/hammer_cli_foreman/host.rb:174 lib/hammer_cli_foreman/hostgroup.rb:31
195
+ msgid "Puppet CA Proxy Id"
196
+ msgstr ""
197
+
198
+ #: lib/hammer_cli_foreman/host.rb:175 lib/hammer_cli_foreman/hostgroup.rb:30
199
+ msgid "Medium Id"
200
+ msgstr ""
201
+
202
+ #: lib/hammer_cli_foreman/host.rb:176
203
+ msgid "Model Id"
204
+ msgstr ""
205
+
206
+ #: lib/hammer_cli_foreman/host.rb:177
207
+ msgid "Owner Id"
208
+ msgstr ""
209
+
210
+ #: lib/hammer_cli_foreman/host.rb:178 lib/hammer_cli_foreman/host.rb:200
211
+ #: lib/hammer_cli_foreman/host.rb:213 lib/hammer_cli_foreman/hostgroup.rb:26
212
+ msgid "Subnet Id"
213
+ msgstr ""
214
+
215
+ #: lib/hammer_cli_foreman/host.rb:179 lib/hammer_cli_foreman/host.rb:198
216
+ #: lib/hammer_cli_foreman/host.rb:211 lib/hammer_cli_foreman/hostgroup.rb:27
217
+ msgid "Domain Id"
218
+ msgstr ""
219
+
220
+ #: lib/hammer_cli_foreman/host.rb:180
221
+ msgid "Puppet Proxy Id"
222
+ msgstr ""
223
+
224
+ #: lib/hammer_cli_foreman/host.rb:181
225
+ msgid "Owner Type"
226
+ msgstr ""
227
+
228
+ #: lib/hammer_cli_foreman/host.rb:182 lib/hammer_cli_foreman/hostgroup.rb:29
229
+ msgid "Partition Table Id"
230
+ msgstr ""
231
+
232
+ #: lib/hammer_cli_foreman/host.rb:183 lib/hammer_cli_foreman/image.rb:46
233
+ #: lib/hammer_cli_foreman/hostgroup.rb:28
234
+ msgid "Architecture Id"
235
+ msgstr ""
236
+
237
+ #: lib/hammer_cli_foreman/host.rb:184
238
+ msgid "Image Id"
239
+ msgstr ""
240
+
241
+ #: lib/hammer_cli_foreman/host.rb:185
242
+ msgid "Compute Resource Id"
243
+ msgstr ""
244
+
245
+ #: lib/hammer_cli_foreman/host.rb:187
246
+ msgid "Comment"
247
+ msgstr ""
248
+
249
+ #: lib/hammer_cli_foreman/host.rb:189 lib/hammer_cli_foreman/hostgroup.rb:45
250
+ #: lib/hammer_cli_foreman/operating_system.rb:32
251
+ #: lib/hammer_cli_foreman/domain.rb:25
252
+ msgid "Parameters"
253
+ msgstr ""
254
+
255
+ #: lib/hammer_cli_foreman/host.rb:193
256
+ msgid "BMC Network Interfaces"
257
+ msgstr ""
258
+
259
+ #: lib/hammer_cli_foreman/host.rb:199 lib/hammer_cli_foreman/host.rb:212
260
+ msgid "Domain Name"
261
+ msgstr ""
262
+
263
+ #: lib/hammer_cli_foreman/host.rb:201 lib/hammer_cli_foreman/host.rb:214
264
+ msgid "Subnet Name"
265
+ msgstr ""
266
+
267
+ #: lib/hammer_cli_foreman/host.rb:202
268
+ msgid "BMC Username"
269
+ msgstr ""
270
+
271
+ #: lib/hammer_cli_foreman/host.rb:203
272
+ msgid "BMC Password"
273
+ msgstr ""
274
+
275
+ #: lib/hammer_cli_foreman/host.rb:206
276
+ msgid "Managed Network Interfaces"
277
+ msgstr ""
278
+
279
+ #: lib/hammer_cli_foreman/host.rb:228
280
+ msgid "Status"
281
+ msgstr ""
282
+
283
+ #: lib/hammer_cli_foreman/host.rb:229
284
+ msgid "Power"
285
+ msgstr ""
286
+
287
+ #: lib/hammer_cli_foreman/host.rb:265
288
+ msgid "Puppet run triggered"
289
+ msgstr ""
290
+
291
+ #: lib/hammer_cli_foreman/host.rb:278 lib/hammer_cli_foreman/fact.rb:13
292
+ msgid "Fact"
293
+ msgstr ""
294
+
295
+ #: lib/hammer_cli_foreman/host.rb:279
296
+ #: lib/hammer_cli_foreman/common_parameter.rb:13
297
+ #: lib/hammer_cli_foreman/fact.rb:14
298
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:66
299
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:69
300
+ msgid "Value"
301
+ msgstr ""
302
+
303
+ #: lib/hammer_cli_foreman/host.rb:316
304
+ msgid "Host created"
305
+ msgstr ""
306
+
307
+ #: lib/hammer_cli_foreman/host.rb:317
308
+ msgid "Could not create the host"
309
+ msgstr ""
310
+
311
+ #: lib/hammer_cli_foreman/host.rb:338
312
+ msgid "Host updated"
313
+ msgstr ""
314
+
315
+ #: lib/hammer_cli_foreman/host.rb:339
316
+ msgid "Could not update the host"
317
+ msgstr ""
318
+
319
+ #: lib/hammer_cli_foreman/host.rb:346
320
+ msgid "Host deleted"
321
+ msgstr ""
322
+
323
+ #: lib/hammer_cli_foreman/host.rb:347
324
+ msgid "Could not delete the host"
325
+ msgstr ""
326
+
327
+ #: lib/hammer_cli_foreman/host.rb:354
328
+ msgid "Create or update parameter for a host."
329
+ msgstr ""
330
+
331
+ #: lib/hammer_cli_foreman/host.rb:356
332
+ msgid "Host parameter updated"
333
+ msgstr ""
334
+
335
+ #: lib/hammer_cli_foreman/host.rb:357
336
+ msgid "New host parameter created"
337
+ msgstr ""
338
+
339
+ #: lib/hammer_cli_foreman/host.rb:358
340
+ msgid "Could not set host parameter"
341
+ msgstr ""
342
+
343
+ #: lib/hammer_cli_foreman/host.rb:370
344
+ msgid "Delete parameter for a host."
345
+ msgstr ""
346
+
347
+ #: lib/hammer_cli_foreman/host.rb:372
348
+ msgid "Host parameter deleted"
349
+ msgstr ""
350
+
351
+ #: lib/hammer_cli_foreman/host.rb:387
352
+ msgid "Power a host on"
353
+ msgstr ""
354
+
355
+ #: lib/hammer_cli_foreman/host.rb:388
356
+ msgid "The host is starting."
357
+ msgstr ""
358
+
359
+ #: lib/hammer_cli_foreman/host.rb:405
360
+ msgid "Force turning off a host"
361
+ msgstr ""
362
+
363
+ #: lib/hammer_cli_foreman/host.rb:410
364
+ msgid "Power a host off"
365
+ msgstr ""
366
+
367
+ #: lib/hammer_cli_foreman/host.rb:422
368
+ msgid "Power off forced."
369
+ msgstr ""
370
+
371
+ #: lib/hammer_cli_foreman/host.rb:424
372
+ msgid "Powering the host off."
373
+ msgstr ""
374
+
375
+ #: lib/hammer_cli_foreman/host.rb:441
376
+ msgid "Reboot a host"
377
+ msgstr ""
378
+
379
+ #: lib/hammer_cli_foreman/host.rb:442
380
+ msgid "Host reboot started."
381
+ msgstr ""
382
+
383
+ #: lib/hammer_cli_foreman/id_resolver.rb:22
384
+ msgid "User's login to search by"
385
+ msgstr ""
386
+
387
+ #: lib/hammer_cli_foreman/id_resolver.rb:27
388
+ msgid "Name to search by"
389
+ msgstr ""
390
+
391
+ #: lib/hammer_cli_foreman/id_resolver.rb:117
392
+ msgid "%s not found"
393
+ msgstr ""
394
+
395
+ #: lib/hammer_cli_foreman/id_resolver.rb:118
396
+ msgid "%s found more than once"
397
+ msgstr ""
398
+
399
+ #: lib/hammer_cli_foreman/id_resolver.rb:124
400
+ msgid "Missing options to search %s"
401
+ msgstr ""
402
+
403
+ #: lib/hammer_cli_foreman/puppet_class.rb:34
404
+ msgid "Smart variables"
405
+ msgstr ""
406
+
407
+ #: lib/hammer_cli_foreman/puppet_class.rb:36
408
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:10
409
+ msgid "Parameter"
410
+ msgstr ""
411
+
412
+ #: lib/hammer_cli_foreman/puppet_class.rb:37
413
+ msgid "Default value"
414
+ msgstr ""
415
+
416
+ #: lib/hammer_cli_foreman/puppet_class.rb:57
417
+ msgid "Search puppet modules."
418
+ msgstr ""
419
+
420
+ #: lib/hammer_cli_foreman/auth.rb:7
421
+ msgid "Set credentials"
422
+ msgstr ""
423
+
424
+ #: lib/hammer_cli_foreman/auth.rb:20
425
+ msgid "Wipe your credentials"
426
+ msgstr ""
427
+
428
+ #: lib/hammer_cli_foreman/auth.rb:26
429
+ msgid "Credentials deleted."
430
+ msgstr ""
431
+
432
+ #: lib/hammer_cli_foreman/auth.rb:33
433
+ msgid "Information about current connections"
434
+ msgstr ""
435
+
436
+ #: lib/hammer_cli_foreman/auth.rb:37
437
+ msgid "You are logged in as '%s'"
438
+ msgstr ""
439
+
440
+ #: lib/hammer_cli_foreman/auth.rb:39
441
+ msgid ""
442
+ "You are currently not logged in to any service.\\nUse the service to set "
443
+ "credentials."
444
+ msgstr ""
445
+
446
+ #: lib/hammer_cli_foreman/auth.rb:48
447
+ msgid "Foreman connection login/logout."
448
+ msgstr ""
449
+
450
+ #: lib/hammer_cli_foreman/image.rb:9
451
+ msgid "View and manage compute resource's images"
452
+ msgstr ""
453
+
454
+ #: lib/hammer_cli_foreman/image.rb:33
455
+ msgid "Username"
456
+ msgstr ""
457
+
458
+ #: lib/hammer_cli_foreman/image.rb:47
459
+ msgid "IAM role"
460
+ msgstr ""
461
+
462
+ #: lib/hammer_cli_foreman/image.rb:58
463
+ msgid "Show images available for addition"
464
+ msgstr ""
465
+
466
+ #: lib/hammer_cli_foreman/image.rb:83
467
+ msgid "Image created"
468
+ msgstr ""
469
+
470
+ #: lib/hammer_cli_foreman/image.rb:84
471
+ msgid "Could not create the image"
472
+ msgstr ""
473
+
474
+ #: lib/hammer_cli_foreman/image.rb:92
475
+ msgid "Image updated"
476
+ msgstr ""
477
+
478
+ #: lib/hammer_cli_foreman/image.rb:93
479
+ msgid "Could not update the image"
480
+ msgstr ""
481
+
482
+ #: lib/hammer_cli_foreman/image.rb:101
483
+ msgid "Image deleted"
484
+ msgstr ""
485
+
486
+ #: lib/hammer_cli_foreman/image.rb:102
487
+ msgid "Could not delete the image"
488
+ msgstr ""
489
+
490
+ #: lib/hammer_cli_foreman/subnet.rb:12
491
+ msgid "Network"
492
+ msgstr ""
493
+
494
+ #: lib/hammer_cli_foreman/subnet.rb:13
495
+ msgid "Mask"
496
+ msgstr ""
497
+
498
+ #: lib/hammer_cli_foreman/subnet.rb:23
499
+ msgid "Priority"
500
+ msgstr ""
501
+
502
+ #: lib/hammer_cli_foreman/subnet.rb:24
503
+ msgid "DNS id"
504
+ msgstr ""
505
+
506
+ #: lib/hammer_cli_foreman/subnet.rb:25
507
+ msgid "DNS"
508
+ msgstr ""
509
+
510
+ #: lib/hammer_cli_foreman/subnet.rb:26
511
+ msgid "Primary DNS"
512
+ msgstr ""
513
+
514
+ #: lib/hammer_cli_foreman/subnet.rb:27
515
+ msgid "Secondary DNS"
516
+ msgstr ""
517
+
518
+ #: lib/hammer_cli_foreman/subnet.rb:28
519
+ msgid "Domain ids"
520
+ msgstr ""
521
+
522
+ #: lib/hammer_cli_foreman/subnet.rb:29
523
+ msgid "TFTP"
524
+ msgstr ""
525
+
526
+ #: lib/hammer_cli_foreman/subnet.rb:30
527
+ msgid "TFTP id"
528
+ msgstr ""
529
+
530
+ #: lib/hammer_cli_foreman/subnet.rb:31
531
+ msgid "DHCP"
532
+ msgstr ""
533
+
534
+ #: lib/hammer_cli_foreman/subnet.rb:32
535
+ msgid "DHCP id"
536
+ msgstr ""
537
+
538
+ #: lib/hammer_cli_foreman/subnet.rb:33
539
+ msgid "vlan id"
540
+ msgstr ""
541
+
542
+ #: lib/hammer_cli_foreman/subnet.rb:34
543
+ msgid "Gateway"
544
+ msgstr ""
545
+
546
+ #: lib/hammer_cli_foreman/subnet.rb:35
547
+ msgid "From"
548
+ msgstr ""
549
+
550
+ #: lib/hammer_cli_foreman/subnet.rb:36
551
+ msgid "To"
552
+ msgstr ""
553
+
554
+ #: lib/hammer_cli_foreman/subnet.rb:45
555
+ msgid "Subnet created"
556
+ msgstr ""
557
+
558
+ #: lib/hammer_cli_foreman/subnet.rb:46
559
+ msgid "Could not create the subnet"
560
+ msgstr ""
561
+
562
+ #: lib/hammer_cli_foreman/subnet.rb:54
563
+ msgid "Subnet updated"
564
+ msgstr ""
565
+
566
+ #: lib/hammer_cli_foreman/subnet.rb:55
567
+ msgid "Could not update the subnet"
568
+ msgstr ""
569
+
570
+ #: lib/hammer_cli_foreman/subnet.rb:63
571
+ msgid "Subnet deleted"
572
+ msgstr ""
573
+
574
+ #: lib/hammer_cli_foreman/subnet.rb:64
575
+ msgid "Could not delete the subnet"
576
+ msgstr ""
577
+
578
+ #: lib/hammer_cli_foreman/subnet.rb:74
579
+ msgid "Manipulate subnets."
580
+ msgstr ""
581
+
582
+ #: lib/hammer_cli_foreman/organization.rb:38
583
+ msgid "Organization created"
584
+ msgstr ""
585
+
586
+ #: lib/hammer_cli_foreman/organization.rb:39
587
+ msgid "Could not create the organization"
588
+ msgstr ""
589
+
590
+ #: lib/hammer_cli_foreman/organization.rb:50
591
+ msgid "Organization updated"
592
+ msgstr ""
593
+
594
+ #: lib/hammer_cli_foreman/organization.rb:51
595
+ msgid "Could not update the organization"
596
+ msgstr ""
597
+
598
+ #: lib/hammer_cli_foreman/organization.rb:62
599
+ msgid "Organization deleted"
600
+ msgstr ""
601
+
602
+ #: lib/hammer_cli_foreman/organization.rb:63
603
+ msgid "Could not delete the organization"
604
+ msgstr ""
605
+
606
+ #: lib/hammer_cli_foreman/organization.rb:84
607
+ msgid "Manipulate organizations."
608
+ msgstr ""
609
+
610
+ #: lib/hammer_cli_foreman/compute_resource.rb:13
611
+ msgid "Provider"
612
+ msgstr ""
613
+
614
+ #: lib/hammer_cli_foreman/compute_resource.rb:26
615
+ #: lib/hammer_cli_foreman/compute_resource.rb:36
616
+ msgid "Region"
617
+ msgstr ""
618
+
619
+ #: lib/hammer_cli_foreman/compute_resource.rb:30
620
+ msgid "Server"
621
+ msgstr ""
622
+
623
+ #: lib/hammer_cli_foreman/compute_resource.rb:33
624
+ msgid "Tenant"
625
+ msgstr ""
626
+
627
+ #: lib/hammer_cli_foreman/compute_resource.rb:43
628
+ msgid "Url"
629
+ msgstr ""
630
+
631
+ #: lib/hammer_cli_foreman/compute_resource.rb:44
632
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:53
633
+ #: lib/hammer_cli_foreman/domain.rb:21
634
+ msgid "Description"
635
+ msgstr ""
636
+
637
+ #: lib/hammer_cli_foreman/compute_resource.rb:45
638
+ msgid "User"
639
+ msgstr ""
640
+
641
+ #: lib/hammer_cli_foreman/compute_resource.rb:62
642
+ msgid "Compute resource created"
643
+ msgstr ""
644
+
645
+ #: lib/hammer_cli_foreman/compute_resource.rb:63
646
+ msgid "Could not create the compute resource"
647
+ msgstr ""
648
+
649
+ #: lib/hammer_cli_foreman/compute_resource.rb:74
650
+ msgid "Compute resource updated"
651
+ msgstr ""
652
+
653
+ #: lib/hammer_cli_foreman/compute_resource.rb:75
654
+ msgid "Could not update the compute resource"
655
+ msgstr ""
656
+
657
+ #: lib/hammer_cli_foreman/compute_resource.rb:82
658
+ msgid "Compute resource deleted"
659
+ msgstr ""
660
+
661
+ #: lib/hammer_cli_foreman/compute_resource.rb:83
662
+ msgid "Could not delete the compute resource"
663
+ msgstr ""
664
+
665
+ #: lib/hammer_cli_foreman/compute_resource.rb:95
666
+ msgid "Manipulate compute resources."
667
+ msgstr ""
668
+
669
+ #: lib/hammer_cli_foreman/environment.rb:33
670
+ msgid "Environment created"
671
+ msgstr ""
672
+
673
+ #: lib/hammer_cli_foreman/environment.rb:34
674
+ msgid "Could not create the environment"
675
+ msgstr ""
676
+
677
+ #: lib/hammer_cli_foreman/environment.rb:41
678
+ msgid "Environment updated"
679
+ msgstr ""
680
+
681
+ #: lib/hammer_cli_foreman/environment.rb:42
682
+ msgid "Could not update the environment"
683
+ msgstr ""
684
+
685
+ #: lib/hammer_cli_foreman/environment.rb:49
686
+ msgid "Environment deleted"
687
+ msgstr ""
688
+
689
+ #: lib/hammer_cli_foreman/environment.rb:50
690
+ msgid "Could not delete the environment"
691
+ msgstr ""
692
+
693
+ #: lib/hammer_cli_foreman/associating_commands.rb:175
694
+ msgid "Operating system has been associated"
695
+ msgstr ""
696
+
697
+ #: lib/hammer_cli_foreman/associating_commands.rb:176
698
+ msgid "Could not associate the operating system"
699
+ msgstr ""
700
+
701
+ #: lib/hammer_cli_foreman/associating_commands.rb:183
702
+ msgid "Operating system has been disassociated"
703
+ msgstr ""
704
+
705
+ #: lib/hammer_cli_foreman/associating_commands.rb:184
706
+ msgid "Could not disassociate the operating system"
707
+ msgstr ""
708
+
709
+ #: lib/hammer_cli_foreman/associating_commands.rb:194
710
+ msgid "Architecture has been associated"
711
+ msgstr ""
712
+
713
+ #: lib/hammer_cli_foreman/associating_commands.rb:195
714
+ msgid "Could not associate the architecture"
715
+ msgstr ""
716
+
717
+ #: lib/hammer_cli_foreman/associating_commands.rb:202
718
+ msgid "Architecture has been disassociated"
719
+ msgstr ""
720
+
721
+ #: lib/hammer_cli_foreman/associating_commands.rb:203
722
+ msgid "Could not disassociate the architecture"
723
+ msgstr ""
724
+
725
+ #: lib/hammer_cli_foreman/associating_commands.rb:213
726
+ msgid "Partition table has been associated"
727
+ msgstr ""
728
+
729
+ #: lib/hammer_cli_foreman/associating_commands.rb:214
730
+ msgid "Could not associate the partition table"
731
+ msgstr ""
732
+
733
+ #: lib/hammer_cli_foreman/associating_commands.rb:221
734
+ msgid "Partition table has been disassociated"
735
+ msgstr ""
736
+
737
+ #: lib/hammer_cli_foreman/associating_commands.rb:222
738
+ msgid "Could not disassociate the partition table"
739
+ msgstr ""
740
+
741
+ #: lib/hammer_cli_foreman/common_parameter.rb:22
742
+ msgid "Set a global parameter."
743
+ msgstr ""
744
+
745
+ #: lib/hammer_cli_foreman/common_parameter.rb:24
746
+ msgid "Created parameter [%{name}] with value [%{value}]."
747
+ msgstr ""
748
+
749
+ #: lib/hammer_cli_foreman/common_parameter.rb:25
750
+ msgid "Parameter [%{name}] updated to [%{value}]."
751
+ msgstr ""
752
+
753
+ #: lib/hammer_cli_foreman/common_parameter.rb:27
754
+ #: lib/hammer_cli_foreman/parameter.rb:57
755
+ #: lib/hammer_cli_foreman/parameter.rb:104
756
+ msgid "parameter name"
757
+ msgstr ""
758
+
759
+ #: lib/hammer_cli_foreman/common_parameter.rb:28
760
+ #: lib/hammer_cli_foreman/parameter.rb:58
761
+ msgid "parameter value"
762
+ msgstr ""
763
+
764
+ #: lib/hammer_cli_foreman/common_parameter.rb:55
765
+ msgid "Global parameter [%{name}] deleted."
766
+ msgstr ""
767
+
768
+ #: lib/hammer_cli_foreman/common_parameter.rb:56
769
+ msgid "Could not delete the global parameter [%{name}]"
770
+ msgstr ""
771
+
772
+ #: lib/hammer_cli_foreman/common_parameter.rb:65
773
+ msgid "Manipulate global parameters."
774
+ msgstr ""
775
+
776
+ #: lib/hammer_cli_foreman/exception_handler.rb:41
777
+ msgid "Forbidden - server refused to process the request"
778
+ msgstr ""
779
+
780
+ #: lib/hammer_cli_foreman/exception_handler.rb:75
781
+ msgid ""
782
+ "Could not load API description from the server\\n - is your server down?\\n"
783
+ "\\\\n \" - was \\\"#{rake_command}\\\" run on the server when "
784
+ "using apipie cache? (typical production settings))\\n\""
785
+ msgstr ""
786
+
787
+ #: lib/hammer_cli_foreman/hostgroup.rb:24
788
+ msgid "Label"
789
+ msgstr ""
790
+
791
+ #: lib/hammer_cli_foreman/hostgroup.rb:32
792
+ msgid "Puppet Master Proxy Id"
793
+ msgstr ""
794
+
795
+ #: lib/hammer_cli_foreman/hostgroup.rb:34
796
+ msgid "Puppetclass Ids"
797
+ msgstr ""
798
+
799
+ #: lib/hammer_cli_foreman/hostgroup.rb:35
800
+ msgid "Ancestry"
801
+ msgstr ""
802
+
803
+ #: lib/hammer_cli_foreman/hostgroup.rb:66
804
+ msgid "Hostgroup created"
805
+ msgstr ""
806
+
807
+ #: lib/hammer_cli_foreman/hostgroup.rb:67
808
+ msgid "Could not create the hostgroup"
809
+ msgstr ""
810
+
811
+ #: lib/hammer_cli_foreman/hostgroup.rb:79
812
+ msgid "Hostgroup updated"
813
+ msgstr ""
814
+
815
+ #: lib/hammer_cli_foreman/hostgroup.rb:80
816
+ msgid "Could not update the hostgroup"
817
+ msgstr ""
818
+
819
+ #: lib/hammer_cli_foreman/hostgroup.rb:87
820
+ msgid "Hostgroup deleted"
821
+ msgstr ""
822
+
823
+ #: lib/hammer_cli_foreman/hostgroup.rb:88
824
+ msgid "Could not delete the hostgroup"
825
+ msgstr ""
826
+
827
+ #: lib/hammer_cli_foreman/hostgroup.rb:115
828
+ msgid "Create or update parameter for a hostgroup."
829
+ msgstr ""
830
+
831
+ #: lib/hammer_cli_foreman/hostgroup.rb:117
832
+ msgid "Hostgroup parameter updated"
833
+ msgstr ""
834
+
835
+ #: lib/hammer_cli_foreman/hostgroup.rb:118
836
+ msgid "New hostgroup parameter created"
837
+ msgstr ""
838
+
839
+ #: lib/hammer_cli_foreman/hostgroup.rb:119
840
+ msgid "Could not set hostgroup parameter"
841
+ msgstr ""
842
+
843
+ #: lib/hammer_cli_foreman/hostgroup.rb:126
844
+ msgid "Delete parameter for a hostgroup."
845
+ msgstr ""
846
+
847
+ #: lib/hammer_cli_foreman/hostgroup.rb:128
848
+ msgid "Hostgroup parameter deleted"
849
+ msgstr ""
850
+
851
+ #: lib/hammer_cli_foreman/hostgroup.rb:144
852
+ msgid "Manipulate hostgroups."
853
+ msgstr ""
854
+
855
+ #: lib/hammer_cli_foreman/credentials.rb:10
856
+ msgid "[Foreman] username: "
857
+ msgstr ""
858
+
859
+ #: lib/hammer_cli_foreman/credentials.rb:15
860
+ msgid "[Foreman] password for %s: "
861
+ msgstr ""
862
+
863
+ #: lib/hammer_cli_foreman/operating_system.rb:12
864
+ msgid "Release name"
865
+ msgstr ""
866
+
867
+ #: lib/hammer_cli_foreman/operating_system.rb:13
868
+ msgid "Family"
869
+ msgstr ""
870
+
871
+ #: lib/hammer_cli_foreman/operating_system.rb:27
872
+ msgid "Installation media"
873
+ msgstr ""
874
+
875
+ #: lib/hammer_cli_foreman/operating_system.rb:28
876
+ msgid "Architectures"
877
+ msgstr ""
878
+
879
+ #: lib/hammer_cli_foreman/operating_system.rb:29
880
+ msgid "Partition tables"
881
+ msgstr ""
882
+
883
+ #: lib/hammer_cli_foreman/operating_system.rb:30
884
+ msgid "Config templates"
885
+ msgstr ""
886
+
887
+ #: lib/hammer_cli_foreman/operating_system.rb:31
888
+ msgid "Default OS templates"
889
+ msgstr ""
890
+
891
+ #: lib/hammer_cli_foreman/operating_system.rb:59
892
+ #: lib/hammer_cli_foreman/operating_system.rb:86
893
+ msgid "set associated architectures"
894
+ msgstr ""
895
+
896
+ #: lib/hammer_cli_foreman/operating_system.rb:61
897
+ #: lib/hammer_cli_foreman/operating_system.rb:88
898
+ msgid "set associated templates"
899
+ msgstr ""
900
+
901
+ #: lib/hammer_cli_foreman/operating_system.rb:63
902
+ #: lib/hammer_cli_foreman/operating_system.rb:90
903
+ msgid "set associated installation media"
904
+ msgstr ""
905
+
906
+ #: lib/hammer_cli_foreman/operating_system.rb:65
907
+ #: lib/hammer_cli_foreman/operating_system.rb:92
908
+ msgid "set associated partition tables"
909
+ msgstr ""
910
+
911
+ #: lib/hammer_cli_foreman/operating_system.rb:68
912
+ msgid "Operating system created"
913
+ msgstr ""
914
+
915
+ #: lib/hammer_cli_foreman/operating_system.rb:69
916
+ msgid "Could not create the operating system"
917
+ msgstr ""
918
+
919
+ #: lib/hammer_cli_foreman/operating_system.rb:95
920
+ msgid "Operating system updated"
921
+ msgstr ""
922
+
923
+ #: lib/hammer_cli_foreman/operating_system.rb:96
924
+ msgid "Could not update the operating system"
925
+ msgstr ""
926
+
927
+ #: lib/hammer_cli_foreman/operating_system.rb:112
928
+ msgid "Operating system deleted"
929
+ msgstr ""
930
+
931
+ #: lib/hammer_cli_foreman/operating_system.rb:113
932
+ msgid "Could not delete the operating system"
933
+ msgstr ""
934
+
935
+ #: lib/hammer_cli_foreman/operating_system.rb:120
936
+ msgid "Create or update parameter for an operating system."
937
+ msgstr ""
938
+
939
+ #: lib/hammer_cli_foreman/operating_system.rb:122
940
+ msgid "Operating system parameter updated"
941
+ msgstr ""
942
+
943
+ #: lib/hammer_cli_foreman/operating_system.rb:123
944
+ msgid "New operating system parameter created"
945
+ msgstr ""
946
+
947
+ #: lib/hammer_cli_foreman/operating_system.rb:124
948
+ msgid "Could not set operating system parameter"
949
+ msgstr ""
950
+
951
+ #: lib/hammer_cli_foreman/operating_system.rb:136
952
+ msgid "Delete parameter for an operating system."
953
+ msgstr ""
954
+
955
+ #: lib/hammer_cli_foreman/operating_system.rb:138
956
+ msgid "operating system parameter deleted"
957
+ msgstr ""
958
+
959
+ #: lib/hammer_cli_foreman/operating_system.rb:153
960
+ #: lib/hammer_cli_foreman/operating_system.rb:219
961
+ msgid "operatingsystem id"
962
+ msgstr ""
963
+
964
+ #: lib/hammer_cli_foreman/operating_system.rb:154
965
+ msgid "config template id to be set"
966
+ msgstr ""
967
+
968
+ #: lib/hammer_cli_foreman/operating_system.rb:157
969
+ msgid ""
970
+ "[%{config_template_name}] was set as default %{template_kind_name} template"
971
+ msgstr ""
972
+
973
+ #: lib/hammer_cli_foreman/operating_system.rb:158
974
+ msgid "Could not set the os default template"
975
+ msgstr ""
976
+
977
+ #: lib/hammer_cli_foreman/operating_system.rb:220
978
+ msgid "Type of the config template"
979
+ msgstr ""
980
+
981
+ #: lib/hammer_cli_foreman/operating_system.rb:222
982
+ msgid "Default template deleted"
983
+ msgstr ""
984
+
985
+ #: lib/hammer_cli_foreman/operating_system.rb:223
986
+ msgid "Could not delete the default template"
987
+ msgstr ""
988
+
989
+ #: lib/hammer_cli_foreman/operating_system.rb:230
990
+ msgid "\"Default template of type #{option_type} not found\""
991
+ msgstr ""
992
+
993
+ #: lib/hammer_cli_foreman/smart_proxy.rb:15
994
+ msgid "URL"
995
+ msgstr ""
996
+
997
+ #: lib/hammer_cli_foreman/smart_proxy.rb:27
998
+ msgid "Features"
999
+ msgstr ""
1000
+
1001
+ #: lib/hammer_cli_foreman/smart_proxy.rb:45
1002
+ msgid "Smart proxy created"
1003
+ msgstr ""
1004
+
1005
+ #: lib/hammer_cli_foreman/smart_proxy.rb:46
1006
+ msgid "Could not create the proxy"
1007
+ msgstr ""
1008
+
1009
+ #: lib/hammer_cli_foreman/smart_proxy.rb:56
1010
+ msgid "Smart proxy updated"
1011
+ msgstr ""
1012
+
1013
+ #: lib/hammer_cli_foreman/smart_proxy.rb:57
1014
+ msgid "Could not update the proxy"
1015
+ msgstr ""
1016
+
1017
+ #: lib/hammer_cli_foreman/smart_proxy.rb:67
1018
+ msgid "Smart proxy deleted"
1019
+ msgstr ""
1020
+
1021
+ #: lib/hammer_cli_foreman/smart_proxy.rb:68
1022
+ msgid "Could not delete the proxy"
1023
+ msgstr ""
1024
+
1025
+ #: lib/hammer_cli_foreman/smart_proxy.rb:79
1026
+ msgid "Puppet classes were imported"
1027
+ msgstr ""
1028
+
1029
+ #: lib/hammer_cli_foreman/smart_proxy.rb:80
1030
+ msgid "Import of puppet classes failed"
1031
+ msgstr ""
1032
+
1033
+ #: lib/hammer_cli_foreman/smart_proxy.rb:82
1034
+ msgid "Do not run the import"
1035
+ msgstr ""
1036
+
1037
+ #: lib/hammer_cli_foreman/smart_proxy.rb:98
1038
+ msgid "Manipulate smart proxies."
1039
+ msgstr ""
1040
+
1041
+ #: lib/hammer_cli_foreman/model.rb:12
1042
+ msgid "Vendor class"
1043
+ msgstr ""
1044
+
1045
+ #: lib/hammer_cli_foreman/model.rb:13
1046
+ msgid "HW model"
1047
+ msgstr ""
1048
+
1049
+ #: lib/hammer_cli_foreman/model.rb:22
1050
+ msgid "Info"
1051
+ msgstr ""
1052
+
1053
+ #: lib/hammer_cli_foreman/model.rb:32
1054
+ msgid "Hardware model created"
1055
+ msgstr ""
1056
+
1057
+ #: lib/hammer_cli_foreman/model.rb:33
1058
+ msgid "Could not create the hardware model"
1059
+ msgstr ""
1060
+
1061
+ #: lib/hammer_cli_foreman/model.rb:39
1062
+ msgid "Hardware model deleted"
1063
+ msgstr ""
1064
+
1065
+ #: lib/hammer_cli_foreman/model.rb:40
1066
+ msgid "Could not delete the hardware model"
1067
+ msgstr ""
1068
+
1069
+ #: lib/hammer_cli_foreman/model.rb:47
1070
+ msgid "Hardware model updated"
1071
+ msgstr ""
1072
+
1073
+ #: lib/hammer_cli_foreman/model.rb:48
1074
+ msgid "Could not update the hardware model"
1075
+ msgstr ""
1076
+
1077
+ #: lib/hammer_cli_foreman/model.rb:59
1078
+ msgid "Manipulate hardware models."
1079
+ msgstr ""
1080
+
1081
+ #: lib/hammer_cli_foreman/fact.rb:12 lib/hammer_cli_foreman/report.rb:11
1082
+ #: lib/hammer_cli_foreman/report.rb:31
1083
+ msgid "Host"
1084
+ msgstr ""
1085
+
1086
+ #: lib/hammer_cli_foreman/fact.rb:36
1087
+ msgid "Search facts."
1088
+ msgstr ""
1089
+
1090
+ #: lib/hammer_cli_foreman/architecture.rb:21
1091
+ #: lib/hammer_cli_foreman/template.rb:48
1092
+ msgid "OS ids"
1093
+ msgstr ""
1094
+
1095
+ #: lib/hammer_cli_foreman/architecture.rb:31
1096
+ msgid "Architecture created"
1097
+ msgstr ""
1098
+
1099
+ #: lib/hammer_cli_foreman/architecture.rb:32
1100
+ msgid "Could not create the architecture"
1101
+ msgstr ""
1102
+
1103
+ #: lib/hammer_cli_foreman/architecture.rb:39
1104
+ msgid "Architecture deleted"
1105
+ msgstr ""
1106
+
1107
+ #: lib/hammer_cli_foreman/architecture.rb:40
1108
+ msgid "Could not delete the architecture"
1109
+ msgstr ""
1110
+
1111
+ #: lib/hammer_cli_foreman/architecture.rb:47
1112
+ msgid "Architecture updated"
1113
+ msgstr ""
1114
+
1115
+ #: lib/hammer_cli_foreman/architecture.rb:48
1116
+ msgid "Could not update the architecture"
1117
+ msgstr ""
1118
+
1119
+ #: lib/hammer_cli_foreman/architecture.rb:60
1120
+ msgid "Manipulate architectures."
1121
+ msgstr ""
1122
+
1123
+ #: lib/hammer_cli_foreman/location.rb:24 lib/hammer_cli_foreman/location.rb:48
1124
+ #: lib/hammer_cli_foreman/location.rb:60
1125
+ msgid "Location numeric id to search by"
1126
+ msgstr ""
1127
+
1128
+ #: lib/hammer_cli_foreman/location.rb:38
1129
+ msgid "Location created"
1130
+ msgstr ""
1131
+
1132
+ #: lib/hammer_cli_foreman/location.rb:39
1133
+ msgid "Could not create the location"
1134
+ msgstr ""
1135
+
1136
+ #: lib/hammer_cli_foreman/location.rb:50
1137
+ msgid "Location updated"
1138
+ msgstr ""
1139
+
1140
+ #: lib/hammer_cli_foreman/location.rb:51
1141
+ msgid "Could not update the location"
1142
+ msgstr ""
1143
+
1144
+ #: lib/hammer_cli_foreman/location.rb:62
1145
+ msgid "Location deleted"
1146
+ msgstr ""
1147
+
1148
+ #: lib/hammer_cli_foreman/location.rb:63
1149
+ msgid "Could not delete the location"
1150
+ msgstr ""
1151
+
1152
+ #: lib/hammer_cli_foreman/location.rb:84
1153
+ msgid "Manipulate locations."
1154
+ msgstr ""
1155
+
1156
+ #: lib/hammer_cli_foreman/commands.rb:55
1157
+ msgid "Received data of unknown format"
1158
+ msgstr ""
1159
+
1160
+ #: lib/hammer_cli_foreman/commands.rb:170
1161
+ msgid "List next page? (%s): "
1162
+ msgstr ""
1163
+
1164
+ #: lib/hammer_cli_foreman/commands.rb:408
1165
+ msgid "Associate a resource"
1166
+ msgstr ""
1167
+
1168
+ #: lib/hammer_cli_foreman/commands.rb:429
1169
+ msgid "Disassociate a resource"
1170
+ msgstr ""
1171
+
1172
+ #: lib/hammer_cli_foreman/media.rb:11
1173
+ msgid "Path"
1174
+ msgstr ""
1175
+
1176
+ #: lib/hammer_cli_foreman/media.rb:20
1177
+ #: lib/hammer_cli_foreman/partition_table.rb:12
1178
+ msgid "OS Family"
1179
+ msgstr ""
1180
+
1181
+ #: lib/hammer_cli_foreman/media.rb:21
1182
+ msgid "OS IDs"
1183
+ msgstr ""
1184
+
1185
+ #: lib/hammer_cli_foreman/media.rb:37
1186
+ msgid "Installation medium created"
1187
+ msgstr ""
1188
+
1189
+ #: lib/hammer_cli_foreman/media.rb:38
1190
+ msgid "Could not create the installation medium"
1191
+ msgstr ""
1192
+
1193
+ #: lib/hammer_cli_foreman/media.rb:46
1194
+ msgid "Installation medium updated"
1195
+ msgstr ""
1196
+
1197
+ #: lib/hammer_cli_foreman/media.rb:47
1198
+ msgid "Could not update the installation media"
1199
+ msgstr ""
1200
+
1201
+ #: lib/hammer_cli_foreman/media.rb:55
1202
+ msgid "Installation medium deleted"
1203
+ msgstr ""
1204
+
1205
+ #: lib/hammer_cli_foreman/media.rb:56
1206
+ msgid "Could not delete the installation media"
1207
+ msgstr ""
1208
+
1209
+ #: lib/hammer_cli_foreman/media.rb:69
1210
+ msgid "Manipulate installation media."
1211
+ msgstr ""
1212
+
1213
+ #: lib/hammer_cli_foreman/template.rb:27
1214
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:54
1215
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:59
1216
+ msgid "Type"
1217
+ msgstr ""
1218
+
1219
+ #: lib/hammer_cli_foreman/template.rb:70
1220
+ msgid "List available config template kinds."
1221
+ msgstr ""
1222
+
1223
+ #: lib/hammer_cli_foreman/template.rb:89
1224
+ msgid "View config template content."
1225
+ msgstr ""
1226
+
1227
+ #: lib/hammer_cli_foreman/template.rb:101
1228
+ #: lib/hammer_cli_foreman/template.rb:116
1229
+ msgid "Path to a file that contains the template"
1230
+ msgstr ""
1231
+
1232
+ #: lib/hammer_cli_foreman/template.rb:103
1233
+ #: lib/hammer_cli_foreman/template.rb:118
1234
+ msgid "Template type. Eg. snippet, script, provision"
1235
+ msgstr ""
1236
+
1237
+ #: lib/hammer_cli_foreman/template.rb:105
1238
+ msgid "Config template created"
1239
+ msgstr ""
1240
+
1241
+ #: lib/hammer_cli_foreman/template.rb:106
1242
+ msgid "Could not create the config template"
1243
+ msgstr ""
1244
+
1245
+ #: lib/hammer_cli_foreman/template.rb:120
1246
+ msgid "Config template updated"
1247
+ msgstr ""
1248
+
1249
+ #: lib/hammer_cli_foreman/template.rb:121
1250
+ msgid "Could not update the config template"
1251
+ msgstr ""
1252
+
1253
+ #: lib/hammer_cli_foreman/template.rb:131
1254
+ msgid "Config template deleted"
1255
+ msgstr ""
1256
+
1257
+ #: lib/hammer_cli_foreman/template.rb:132
1258
+ msgid "Could not delete the config template"
1259
+ msgstr ""
1260
+
1261
+ #: lib/hammer_cli_foreman/template.rb:147
1262
+ msgid "Manipulate config templates."
1263
+ msgstr ""
1264
+
1265
+ #: lib/hammer_cli_foreman/report.rb:14 lib/hammer_cli_foreman/report.rb:35
1266
+ msgid "Applied"
1267
+ msgstr ""
1268
+
1269
+ #: lib/hammer_cli_foreman/report.rb:15 lib/hammer_cli_foreman/report.rb:36
1270
+ msgid "Restarted"
1271
+ msgstr ""
1272
+
1273
+ #: lib/hammer_cli_foreman/report.rb:16 lib/hammer_cli_foreman/report.rb:37
1274
+ msgid "Failed"
1275
+ msgstr ""
1276
+
1277
+ #: lib/hammer_cli_foreman/report.rb:17 lib/hammer_cli_foreman/report.rb:38
1278
+ msgid "Restart Failures"
1279
+ msgstr ""
1280
+
1281
+ #: lib/hammer_cli_foreman/report.rb:18 lib/hammer_cli_foreman/report.rb:39
1282
+ msgid "Skipped"
1283
+ msgstr ""
1284
+
1285
+ #: lib/hammer_cli_foreman/report.rb:19 lib/hammer_cli_foreman/report.rb:40
1286
+ msgid "Pending"
1287
+ msgstr ""
1288
+
1289
+ #: lib/hammer_cli_foreman/report.rb:32
1290
+ msgid "Reported at"
1291
+ msgstr ""
1292
+
1293
+ #: lib/hammer_cli_foreman/report.rb:33
1294
+ msgid "Report status"
1295
+ msgstr ""
1296
+
1297
+ #: lib/hammer_cli_foreman/report.rb:43
1298
+ msgid "Report metrics"
1299
+ msgstr ""
1300
+
1301
+ #: lib/hammer_cli_foreman/report.rb:46
1302
+ msgid "config_retrieval"
1303
+ msgstr ""
1304
+
1305
+ #: lib/hammer_cli_foreman/report.rb:47
1306
+ msgid "exec"
1307
+ msgstr ""
1308
+
1309
+ #: lib/hammer_cli_foreman/report.rb:48
1310
+ msgid "file"
1311
+ msgstr ""
1312
+
1313
+ #: lib/hammer_cli_foreman/report.rb:49
1314
+ msgid "package"
1315
+ msgstr ""
1316
+
1317
+ #: lib/hammer_cli_foreman/report.rb:50
1318
+ msgid "service"
1319
+ msgstr ""
1320
+
1321
+ #: lib/hammer_cli_foreman/report.rb:51
1322
+ msgid "user"
1323
+ msgstr ""
1324
+
1325
+ #: lib/hammer_cli_foreman/report.rb:52
1326
+ msgid "yumrepo"
1327
+ msgstr ""
1328
+
1329
+ #: lib/hammer_cli_foreman/report.rb:53
1330
+ msgid "filebucket"
1331
+ msgstr ""
1332
+
1333
+ #: lib/hammer_cli_foreman/report.rb:54
1334
+ msgid "cron"
1335
+ msgstr ""
1336
+
1337
+ #: lib/hammer_cli_foreman/report.rb:55
1338
+ msgid "total"
1339
+ msgstr ""
1340
+
1341
+ #: lib/hammer_cli_foreman/report.rb:59
1342
+ msgid "Logs"
1343
+ msgstr ""
1344
+
1345
+ #: lib/hammer_cli_foreman/report.rb:62
1346
+ msgid "Resource"
1347
+ msgstr ""
1348
+
1349
+ #: lib/hammer_cli_foreman/report.rb:65
1350
+ msgid "Message"
1351
+ msgstr ""
1352
+
1353
+ #: lib/hammer_cli_foreman/report.rb:76
1354
+ msgid "Report has been deleted"
1355
+ msgstr ""
1356
+
1357
+ #: lib/hammer_cli_foreman/report.rb:77
1358
+ msgid "Could not delete the report"
1359
+ msgstr ""
1360
+
1361
+ #: lib/hammer_cli_foreman/report.rb:88
1362
+ msgid "Browse and read reports."
1363
+ msgstr ""
1364
+
1365
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:11
1366
+ msgid "Default Value"
1367
+ msgstr ""
1368
+
1369
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:12
1370
+ msgid "Override"
1371
+ msgstr ""
1372
+
1373
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:33
1374
+ msgid "Puppet class"
1375
+ msgstr ""
1376
+
1377
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:34
1378
+ msgid "Class Id"
1379
+ msgstr ""
1380
+
1381
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:55
1382
+ msgid "Required"
1383
+ msgstr ""
1384
+
1385
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:56
1386
+ msgid "Environments"
1387
+ msgstr ""
1388
+
1389
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:57
1390
+ msgid "Environment Ids"
1391
+ msgstr ""
1392
+
1393
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:58
1394
+ msgid "Validator"
1395
+ msgstr ""
1396
+
1397
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:60
1398
+ msgid "Rule"
1399
+ msgstr ""
1400
+
1401
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:62
1402
+ msgid "Override values"
1403
+ msgstr ""
1404
+
1405
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:63
1406
+ msgid "Order"
1407
+ msgstr ""
1408
+
1409
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:64
1410
+ msgid "Count"
1411
+ msgstr ""
1412
+
1413
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:68
1414
+ msgid "Match"
1415
+ msgstr ""
1416
+
1417
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:89
1418
+ msgid "Parameter updated"
1419
+ msgstr ""
1420
+
1421
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:90
1422
+ msgid "Could not update the parameter"
1423
+ msgstr ""
1424
+
1425
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:94
1426
+ msgid "Override this parameter."
1427
+ msgstr ""
1428
+
1429
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:96
1430
+ msgid "This parameter is required."
1431
+ msgstr ""
1432
+
1433
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:98
1434
+ msgid "Type of the parameter."
1435
+ msgstr ""
1436
+
1437
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:101
1438
+ msgid "Type of the validator."
1439
+ msgstr ""
1440
+
1441
+ #: lib/hammer_cli_foreman/smart_class_parameter.rb:110
1442
+ msgid "Manipulate smart class parameters."
1443
+ msgstr ""
1444
+
1445
+ #: lib/hammer_cli_foreman/resource_supported_test.rb:11
1446
+ msgid "The server does not support such operation."
1447
+ msgstr ""
1448
+
1449
+ #: lib/hammer_cli_foreman/partition_table.rb:31
1450
+ msgid "View partition table content."
1451
+ msgstr ""
1452
+
1453
+ #: lib/hammer_cli_foreman/partition_table.rb:43
1454
+ #: lib/hammer_cli_foreman/partition_table.rb:54
1455
+ msgid "Path to a file that contains the partition layout"
1456
+ msgstr ""
1457
+
1458
+ #: lib/hammer_cli_foreman/partition_table.rb:46
1459
+ msgid "Partition table created"
1460
+ msgstr ""
1461
+
1462
+ #: lib/hammer_cli_foreman/partition_table.rb:47
1463
+ msgid "Could not create the partition table"
1464
+ msgstr ""
1465
+
1466
+ #: lib/hammer_cli_foreman/partition_table.rb:57
1467
+ msgid "Partition table updated"
1468
+ msgstr ""
1469
+
1470
+ #: lib/hammer_cli_foreman/partition_table.rb:58
1471
+ msgid "Could not update the partition table"
1472
+ msgstr ""
1473
+
1474
+ #: lib/hammer_cli_foreman/partition_table.rb:65
1475
+ msgid "Partition table deleted"
1476
+ msgstr ""
1477
+
1478
+ #: lib/hammer_cli_foreman/partition_table.rb:66
1479
+ msgid "Could not delete the partition table"
1480
+ msgstr ""
1481
+
1482
+ #: lib/hammer_cli_foreman/partition_table.rb:80
1483
+ msgid "Manipulate partition tables."
1484
+ msgstr ""
1485
+
1486
+ #: lib/hammer_cli_foreman/domain.rb:22
1487
+ msgid "DNS Id"
1488
+ msgstr ""
1489
+
1490
+ #: lib/hammer_cli_foreman/domain.rb:41
1491
+ msgid "Domain [%{name}] created"
1492
+ msgstr ""
1493
+
1494
+ #: lib/hammer_cli_foreman/domain.rb:42
1495
+ msgid "Could not create the domain"
1496
+ msgstr ""
1497
+
1498
+ #: lib/hammer_cli_foreman/domain.rb:44 lib/hammer_cli_foreman/domain.rb:54
1499
+ msgid "Full name describing the domain"
1500
+ msgstr ""
1501
+
1502
+ #: lib/hammer_cli_foreman/domain.rb:51
1503
+ msgid "Domain [%{name}] updated"
1504
+ msgstr ""
1505
+
1506
+ #: lib/hammer_cli_foreman/domain.rb:52
1507
+ msgid "Could not update the domain"
1508
+ msgstr ""
1509
+
1510
+ #: lib/hammer_cli_foreman/domain.rb:61
1511
+ msgid "Domain [%{name}] deleted"
1512
+ msgstr ""
1513
+
1514
+ #: lib/hammer_cli_foreman/domain.rb:62
1515
+ msgid "Could not delete the domain"
1516
+ msgstr ""
1517
+
1518
+ #: lib/hammer_cli_foreman/domain.rb:69
1519
+ msgid "Create or update parameter for a domain."
1520
+ msgstr ""
1521
+
1522
+ #: lib/hammer_cli_foreman/domain.rb:71
1523
+ msgid "Domain parameter updated"
1524
+ msgstr ""
1525
+
1526
+ #: lib/hammer_cli_foreman/domain.rb:72
1527
+ msgid "New domain parameter created"
1528
+ msgstr ""
1529
+
1530
+ #: lib/hammer_cli_foreman/domain.rb:73
1531
+ msgid "Could not set domain parameter"
1532
+ msgstr ""
1533
+
1534
+ #: lib/hammer_cli_foreman/domain.rb:85
1535
+ msgid "Delete parameter for a domain."
1536
+ msgstr ""
1537
+
1538
+ #: lib/hammer_cli_foreman/domain.rb:87
1539
+ msgid "Domain parameter deleted"
1540
+ msgstr ""
1541
+
1542
+ #: lib/hammer_cli_foreman/domain.rb:102
1543
+ msgid "Manipulate domains."
1544
+ msgstr ""
1545
+
1546
+ #: lib/hammer_cli_foreman/user.rb:11
1547
+ msgid "Login"
1548
+ msgstr ""
1549
+
1550
+ #: lib/hammer_cli_foreman/user.rb:13
1551
+ msgid "Email"
1552
+ msgstr ""
1553
+
1554
+ #: lib/hammer_cli_foreman/user.rb:28
1555
+ msgid "Last login"
1556
+ msgstr ""
1557
+
1558
+ #: lib/hammer_cli_foreman/user.rb:43
1559
+ msgid "User created"
1560
+ msgstr ""
1561
+
1562
+ #: lib/hammer_cli_foreman/user.rb:44
1563
+ msgid "Could not create the user"
1564
+ msgstr ""
1565
+
1566
+ #: lib/hammer_cli_foreman/user.rb:51
1567
+ msgid "User updated"
1568
+ msgstr ""
1569
+
1570
+ #: lib/hammer_cli_foreman/user.rb:52
1571
+ msgid "Could not update the user"
1572
+ msgstr ""
1573
+
1574
+ #: lib/hammer_cli_foreman/user.rb:59
1575
+ msgid "User deleted"
1576
+ msgstr ""
1577
+
1578
+ #: lib/hammer_cli_foreman/user.rb:60
1579
+ msgid "Could not delete the user"
1580
+ msgstr ""
1581
+
1582
+ #: lib/hammer_cli_foreman/user.rb:70
1583
+ msgid "Manipulate users."
1584
+ msgstr ""