hammer_cli_katello 0.0.4 → 0.0.5

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 (38) hide show
  1. checksums.yaml +8 -8
  2. data/lib/hammer_cli_katello.rb +81 -15
  3. data/lib/hammer_cli_katello/activation_key.rb +34 -4
  4. data/lib/hammer_cli_katello/associating_commands.rb +3 -1
  5. data/lib/hammer_cli_katello/capsule.rb +8 -1
  6. data/lib/hammer_cli_katello/commands.rb +12 -0
  7. data/lib/hammer_cli_katello/content_host.rb +38 -5
  8. data/lib/hammer_cli_katello/content_host_errata.rb +39 -0
  9. data/lib/hammer_cli_katello/content_host_package.rb +58 -0
  10. data/lib/hammer_cli_katello/content_host_package_group.rb +38 -0
  11. data/lib/hammer_cli_katello/content_view.rb +19 -7
  12. data/lib/hammer_cli_katello/content_view_puppet_module.rb +11 -35
  13. data/lib/hammer_cli_katello/content_view_version.rb +46 -11
  14. data/lib/hammer_cli_katello/exception_handler.rb +7 -1
  15. data/lib/hammer_cli_katello/filter_rule.rb +0 -4
  16. data/lib/hammer_cli_katello/gpg_key.rb +1 -4
  17. data/lib/hammer_cli_katello/host_collection.rb +47 -9
  18. data/lib/hammer_cli_katello/id_resolver.rb +85 -10
  19. data/lib/hammer_cli_katello/lifecycle_environment.rb +19 -27
  20. data/lib/hammer_cli_katello/lifecycle_environment_name_resolvable.rb +33 -0
  21. data/lib/hammer_cli_katello/organization.rb +5 -4
  22. data/lib/hammer_cli_katello/output/fields.rb +15 -0
  23. data/lib/hammer_cli_katello/output/formatters.rb +34 -0
  24. data/lib/hammer_cli_katello/ping.rb +3 -6
  25. data/lib/hammer_cli_katello/product.rb +5 -8
  26. data/lib/hammer_cli_katello/puppet_module.rb +13 -10
  27. data/lib/hammer_cli_katello/repository.rb +112 -11
  28. data/lib/hammer_cli_katello/repository_scoped_to_product.rb +13 -0
  29. data/lib/hammer_cli_katello/repository_set.rb +0 -2
  30. data/lib/hammer_cli_katello/subscription.rb +14 -7
  31. data/lib/hammer_cli_katello/sync_plan.rb +0 -3
  32. data/lib/hammer_cli_katello/version.rb +1 -1
  33. data/locale/Makefile +65 -0
  34. data/locale/README.md +18 -0
  35. data/locale/en/LC_MESSAGES/hammer-cli-katello.mo +0 -0
  36. data/locale/en/hammer-cli-katello.po +1215 -0
  37. data/locale/hammer-cli-katello.pot +833 -639
  38. metadata +32 -5
@@ -0,0 +1,13 @@
1
+ module HammerCLIKatello
2
+
3
+ module RepositoryScopedToProduct
4
+
5
+ def self.included(base)
6
+ base.validate_options do
7
+ any(:option_product_name, :option_product_id).required if option(:option_name).exist?
8
+ end
9
+ end
10
+
11
+ end
12
+
13
+ end
@@ -83,6 +83,4 @@ module HammerCLIKatello
83
83
  autoload_subcommands
84
84
  end
85
85
 
86
- HammerCLI::MainCommand.subcommand("repository-set", _("manipulate repository sets on the server"),
87
- HammerCLIKatello::RepositorySetCommand)
88
86
  end
@@ -5,7 +5,9 @@ require 'hammer_cli_foreman/commands'
5
5
  module HammerCLIKatello
6
6
 
7
7
  class SubscriptionCommand < HammerCLI::AbstractCommand
8
+
8
9
  class ListCommand < HammerCLIKatello::ListCommand
10
+
9
11
  resource :subscriptions, :index
10
12
 
11
13
  output do
@@ -30,7 +32,9 @@ module HammerCLIKatello
30
32
  build_options
31
33
  end
32
34
 
33
- class UploadCommand < HammerCLIForemanTasks::AsyncCommand
35
+ class UploadCommand < HammerCLIKatello::Command
36
+ include HammerCLIForemanTasks::Async
37
+
34
38
  resource :subscriptions, :upload
35
39
  command_name "upload"
36
40
 
@@ -53,17 +57,23 @@ module HammerCLIKatello
53
57
  :required => true, :format => BinaryFile.new
54
58
  end
55
59
 
56
- class DeleteManfiestCommand < HammerCLIForemanTasks::AsyncCommand
60
+ class DeleteManfiestCommand < HammerCLIKatello::Command
61
+ include HammerCLIForemanTasks::Async
62
+
57
63
  resource :subscriptions, :delete_manifest
58
64
  command_name "delete-manifest"
59
65
 
60
66
  success_message _("Manifest is being deleted in task %{id}")
61
67
  failure_message _("Manifest deletion failed")
62
68
 
63
- build_options
69
+ build_options do |o|
70
+ o.expand.including(:systems)
71
+ end
64
72
  end
65
73
 
66
- class RefreshManfiestCommand < HammerCLIForemanTasks::AsyncCommand
74
+ class RefreshManfiestCommand < HammerCLIKatello::Command
75
+ include HammerCLIForemanTasks::Async
76
+
67
77
  resource :subscriptions, :refresh_manifest
68
78
  command_name "refresh-manifest"
69
79
 
@@ -89,6 +99,3 @@ module HammerCLIKatello
89
99
  autoload_subcommands
90
100
  end
91
101
  end
92
-
93
- HammerCLI::MainCommand.subcommand("subscription", _("Manipulate subscriptions."),
94
- HammerCLIKatello::SubscriptionCommand)
@@ -69,6 +69,3 @@ module HammerCLIKatello
69
69
  autoload_subcommands
70
70
  end
71
71
  end
72
-
73
- HammerCLI::MainCommand.subcommand 'sync-plan', _("Manipulate sync plans"),
74
- HammerCLIKatello::SyncPlan
@@ -1,5 +1,5 @@
1
1
  module HammerCLIKatello
2
2
  def self.version
3
- @version ||= Gem::Version.new('0.0.4')
3
+ @version ||= Gem::Version.new('0.0.5')
4
4
  end
5
5
  end
@@ -0,0 +1,65 @@
1
+ #
2
+ # Makefile for PO merging and MO generation. More info in the README.
3
+ #
4
+ # make all-mo (default) - generate MO files
5
+ # make check - check translations using translate-tool
6
+ # make tx-update - download and merge translations from Transifex
7
+ # make clean - clean everything
8
+ #
9
+ DOMAIN = hammer-cli-katello
10
+ VERSION = $(shell ruby -e 'require "rubygems";spec = Gem::Specification::load("../hammer_cli_katello.gemspec");puts spec.version')
11
+ POTFILE = $(DOMAIN).pot
12
+ MOFILE = $(DOMAIN).mo
13
+ POFILES = $(shell find . -name '*.po')
14
+ MOFILES = $(patsubst %.po,%.mo,$(POFILES))
15
+ POXFILES = $(patsubst %.po,%.pox,$(POFILES))
16
+
17
+ %.mo: %.po
18
+ mkdir -p $(shell dirname $@)/LC_MESSAGES
19
+ msgfmt -o $(shell dirname $@)/LC_MESSAGES/$(MOFILE) $<
20
+
21
+ # Generate MO files from PO files
22
+ all-mo: $(MOFILES)
23
+
24
+ # Check for malformed strings
25
+ %.pox: %.po
26
+ msgfmt -c $<
27
+ pofilter --nofuzzy -t variables -t blank -t urls -t emails -t long -t newlines \
28
+ -t endwhitespace -t endpunc -t puncspacing -t options -t printf -t validchars --gnome $< > $@
29
+ cat $@
30
+ ! grep -q msgid $@
31
+
32
+ check: $(POXFILES)
33
+ msgfmt -c ${POTFILE}
34
+
35
+ # Merge PO files
36
+ update-po:
37
+ for f in $(shell find ./ -name "*.po") ; do \
38
+ msgmerge -N --backup=none -U $$f ${POTFILE} ; \
39
+ done
40
+
41
+ # Unify duplicate translations
42
+ uniq-po:
43
+ for f in $(shell find ./ -name "*.po") ; do \
44
+ msguniq $$f -o $$f ; \
45
+ done
46
+
47
+ tx-pull:
48
+ tx pull -f
49
+ for f in $(POFILES) ; do \
50
+ sed -i 's/^\("Project-Id-Version: \).*$$/\1$(DOMAIN) $(VERSION)\\n"/' $$f; \
51
+ done
52
+ -git commit -a -m "i18n - extracting new, pulling from tx"
53
+
54
+ extract-strings:
55
+ bundle exec rake gettext:find
56
+
57
+ reset-po:
58
+ # merging po files is unnecessary when using transifex.com
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
64
+ git commit -a --amend -m "i18n - extracting new, pulling from tx"
65
+ -echo Changes commited!
@@ -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/katello/resource/hammer-cli-katello/). If so, do the following for each of the new languages:
5
+
6
+ ```
7
+ mkdir locale/<lang>
8
+ cp locale/hammer-cli-katello.pot locale/<lang>/hammer-cli-katello.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,1215 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: hammer-cli-katello 0.0.4\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2014-05-09 16:17-0400\n"
12
+ "PO-Revision-Date: 2014-03-10 15:12+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_katello/id_resolver.rb:7
22
+ #: lib/hammer_cli_katello/id_resolver.rb:12
23
+ msgid "Name to search by"
24
+ msgstr ""
25
+
26
+ #: lib/hammer_cli_katello/id_resolver.rb:8
27
+ msgid "Label to search by"
28
+ msgstr ""
29
+
30
+ #: lib/hammer_cli_katello/ping.rb:12 lib/hammer_cli_katello/ping.rb:19
31
+ #: lib/hammer_cli_katello/ping.rb:26 lib/hammer_cli_katello/ping.rb:33
32
+ #: lib/hammer_cli_katello/ping.rb:40 lib/hammer_cli_katello/ping.rb:47
33
+ #: lib/hammer_cli_katello/repository.rb:47
34
+ #: lib/hammer_cli_katello/subscription.rb:85
35
+ msgid "Status"
36
+ msgstr ""
37
+
38
+ #: lib/hammer_cli_katello/ping.rb:13 lib/hammer_cli_katello/ping.rb:20
39
+ #: lib/hammer_cli_katello/ping.rb:27 lib/hammer_cli_katello/ping.rb:34
40
+ #: lib/hammer_cli_katello/ping.rb:41 lib/hammer_cli_katello/ping.rb:48
41
+ msgid "Server Response"
42
+ msgstr ""
43
+
44
+ #: lib/hammer_cli_katello/ping.rb:58
45
+ msgid "FAIL"
46
+ msgstr ""
47
+
48
+ #: lib/hammer_cli_katello/ping.rb:73
49
+ msgid "Duration: %sms"
50
+ msgstr ""
51
+
52
+ #: lib/hammer_cli_katello/ping.rb:75
53
+ msgid "Message: %s"
54
+ msgstr ""
55
+
56
+ #: lib/hammer_cli_katello/ping.rb:81
57
+ msgid "get the status of the server"
58
+ msgstr ""
59
+
60
+ #: lib/hammer_cli_katello/organization.rb:10
61
+ #: lib/hammer_cli_katello/organization.rb:22
62
+ #: lib/hammer_cli_katello/repository.rb:22
63
+ #: lib/hammer_cli_katello/content_view.rb:14
64
+ #: lib/hammer_cli_katello/content_view.rb:26
65
+ #: lib/hammer_cli_katello/content_view.rb:37
66
+ #: lib/hammer_cli_katello/filter.rb:32
67
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:39
68
+ #: lib/hammer_cli_katello/content_view_version.rb:39
69
+ #: lib/hammer_cli_katello/content_view_version.rb:45
70
+ #: lib/hammer_cli_katello/product.rb:38
71
+ msgid "Label"
72
+ msgstr ""
73
+
74
+ #: lib/hammer_cli_katello/organization.rb:11
75
+ #: lib/hammer_cli_katello/organization.rb:23
76
+ #: lib/hammer_cli_katello/sync_plan.rb:20
77
+ #: lib/hammer_cli_katello/activation_key.rb:39
78
+ #: lib/hammer_cli_katello/puppet_module.rb:25
79
+ #: lib/hammer_cli_katello/content_view.rb:28
80
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:40
81
+ #: lib/hammer_cli_katello/host_collection.rb:11
82
+ #: lib/hammer_cli_katello/content_host.rb:23
83
+ #: lib/hammer_cli_katello/product.rb:39
84
+ msgid "Description"
85
+ msgstr ""
86
+
87
+ #: lib/hammer_cli_katello/organization.rb:24
88
+ msgid "Red Hat Repository URL"
89
+ msgstr ""
90
+
91
+ #: lib/hammer_cli_katello/organization.rb:34
92
+ msgid "Organization updated"
93
+ msgstr ""
94
+
95
+ #: lib/hammer_cli_katello/organization.rb:35
96
+ msgid "Could not update the organization"
97
+ msgstr ""
98
+
99
+ #: lib/hammer_cli_katello/organization.rb:43
100
+ msgid "Organization created"
101
+ msgstr ""
102
+
103
+ #: lib/hammer_cli_katello/organization.rb:44
104
+ msgid "Could not create the organization"
105
+ msgstr ""
106
+
107
+ #: lib/hammer_cli_katello/organization.rb:52
108
+ msgid "Organization deleted"
109
+ msgstr ""
110
+
111
+ #: lib/hammer_cli_katello/organization.rb:53
112
+ msgid "Could not delete the organization"
113
+ msgstr ""
114
+
115
+ #: lib/hammer_cli_katello/organization.rb:63
116
+ msgid "Manipulate organizations"
117
+ msgstr ""
118
+
119
+ #: lib/hammer_cli_katello/repository.rb:9
120
+ msgid "Id"
121
+ msgstr ""
122
+
123
+ #: lib/hammer_cli_katello/repository.rb:10
124
+ #: lib/hammer_cli_katello/repository.rb:21
125
+ #: lib/hammer_cli_katello/repository.rb:35
126
+ #: lib/hammer_cli_katello/repository.rb:42
127
+ #: lib/hammer_cli_katello/sync_plan.rb:9
128
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:13
129
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:24
130
+ #: lib/hammer_cli_katello/filter_rule.rb:14
131
+ #: lib/hammer_cli_katello/filter_rule.rb:31
132
+ #: lib/hammer_cli_katello/subscription.rb:12
133
+ #: lib/hammer_cli_katello/activation_key.rb:11
134
+ #: lib/hammer_cli_katello/activation_key.rb:37
135
+ #: lib/hammer_cli_katello/activation_key.rb:49
136
+ #: lib/hammer_cli_katello/activation_key.rb:79
137
+ #: lib/hammer_cli_katello/activation_key.rb:152
138
+ #: lib/hammer_cli_katello/puppet_module.rb:9
139
+ #: lib/hammer_cli_katello/puppet_module.rb:20
140
+ #: lib/hammer_cli_katello/content_view.rb:13
141
+ #: lib/hammer_cli_katello/content_view.rb:25
142
+ #: lib/hammer_cli_katello/content_view.rb:36
143
+ #: lib/hammer_cli_katello/content_view.rb:43
144
+ #: lib/hammer_cli_katello/content_view.rb:51
145
+ #: lib/hammer_cli_katello/content_view.rb:62
146
+ #: lib/hammer_cli_katello/filter.rb:14 lib/hammer_cli_katello/filter.rb:25
147
+ #: lib/hammer_cli_katello/filter.rb:31 lib/hammer_cli_katello/filter.rb:37
148
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:9
149
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:38
150
+ #: lib/hammer_cli_katello/repository_set.rb:11
151
+ #: lib/hammer_cli_katello/repository_set.rb:22
152
+ #: lib/hammer_cli_katello/repository_set.rb:26
153
+ #: lib/hammer_cli_katello/repository_set.rb:39
154
+ #: lib/hammer_cli_katello/host_collection.rb:9
155
+ #: lib/hammer_cli_katello/content_host.rb:10
156
+ #: lib/hammer_cli_katello/content_host.rb:20
157
+ #: lib/hammer_cli_katello/gpg_key.rb:11 lib/hammer_cli_katello/gpg_key.rb:21
158
+ #: lib/hammer_cli_katello/gpg_key.rb:28
159
+ #: lib/hammer_cli_katello/content_view_version.rb:11
160
+ #: lib/hammer_cli_katello/content_view_version.rb:27
161
+ #: lib/hammer_cli_katello/content_view_version.rb:38
162
+ #: lib/hammer_cli_katello/content_view_version.rb:44
163
+ #: lib/hammer_cli_katello/content_view_version.rb:50
164
+ #: lib/hammer_cli_katello/product.rb:9 lib/hammer_cli_katello/product.rb:37
165
+ msgid "Name"
166
+ msgstr ""
167
+
168
+ #: lib/hammer_cli_katello/repository.rb:11
169
+ #: lib/hammer_cli_katello/repository.rb:27
170
+ #: lib/hammer_cli_katello/gpg_key.rb:29
171
+ msgid "Content Type"
172
+ msgstr ""
173
+
174
+ #: lib/hammer_cli_katello/repository.rb:20
175
+ #: lib/hammer_cli_katello/repository.rb:34
176
+ #: lib/hammer_cli_katello/repository.rb:41
177
+ #: lib/hammer_cli_katello/sync_plan.rb:8
178
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:11
179
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:22
180
+ #: lib/hammer_cli_katello/subscription.rb:19
181
+ #: lib/hammer_cli_katello/activation_key.rb:10
182
+ #: lib/hammer_cli_katello/activation_key.rb:38
183
+ #: lib/hammer_cli_katello/activation_key.rb:48
184
+ #: lib/hammer_cli_katello/activation_key.rb:78
185
+ #: lib/hammer_cli_katello/activation_key.rb:151
186
+ #: lib/hammer_cli_katello/puppet_module.rb:8
187
+ #: lib/hammer_cli_katello/puppet_module.rb:19
188
+ #: lib/hammer_cli_katello/content_view.rb:24
189
+ #: lib/hammer_cli_katello/content_view.rb:35
190
+ #: lib/hammer_cli_katello/content_view.rb:41
191
+ #: lib/hammer_cli_katello/content_view.rb:50
192
+ #: lib/hammer_cli_katello/content_view.rb:55
193
+ #: lib/hammer_cli_katello/content_view.rb:61
194
+ #: lib/hammer_cli_katello/filter.rb:30 lib/hammer_cli_katello/filter.rb:36
195
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:8
196
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:37
197
+ #: lib/hammer_cli_katello/repository_set.rb:9
198
+ #: lib/hammer_cli_katello/repository_set.rb:21
199
+ #: lib/hammer_cli_katello/repository_set.rb:25
200
+ #: lib/hammer_cli_katello/host_collection.rb:8
201
+ #: lib/hammer_cli_katello/content_host.rb:9
202
+ #: lib/hammer_cli_katello/content_host.rb:21
203
+ #: lib/hammer_cli_katello/gpg_key.rb:10 lib/hammer_cli_katello/gpg_key.rb:20
204
+ #: lib/hammer_cli_katello/gpg_key.rb:27
205
+ #: lib/hammer_cli_katello/content_view_version.rb:10
206
+ #: lib/hammer_cli_katello/content_view_version.rb:26
207
+ #: lib/hammer_cli_katello/content_view_version.rb:37
208
+ #: lib/hammer_cli_katello/content_view_version.rb:43
209
+ #: lib/hammer_cli_katello/content_view_version.rb:49
210
+ #: lib/hammer_cli_katello/product.rb:8 lib/hammer_cli_katello/product.rb:36
211
+ msgid "ID"
212
+ msgstr ""
213
+
214
+ #: lib/hammer_cli_katello/repository.rb:24
215
+ #: lib/hammer_cli_katello/content_view.rb:31
216
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:42
217
+ #: lib/hammer_cli_katello/gpg_key.rb:23 lib/hammer_cli_katello/product.rb:12
218
+ #: lib/hammer_cli_katello/product.rb:55
219
+ msgid "Organization"
220
+ msgstr ""
221
+
222
+ #: lib/hammer_cli_katello/repository.rb:26
223
+ msgid "Red Hat Repository"
224
+ msgstr ""
225
+
226
+ #: lib/hammer_cli_katello/repository.rb:28
227
+ #: lib/hammer_cli_katello/product.rb:67
228
+ msgid "URL"
229
+ msgstr ""
230
+
231
+ #: lib/hammer_cli_katello/repository.rb:29
232
+ #: lib/hammer_cli_katello/repository.rb:123
233
+ #: lib/hammer_cli_katello/repository.rb:146
234
+ msgid "Publish Via HTTP"
235
+ msgstr ""
236
+
237
+ #: lib/hammer_cli_katello/repository.rb:30
238
+ msgid "Published At"
239
+ msgstr ""
240
+
241
+ #: lib/hammer_cli_katello/repository.rb:32
242
+ #: lib/hammer_cli_katello/subscription.rb:20
243
+ #: lib/hammer_cli_katello/gpg_key.rb:31
244
+ msgid "Product"
245
+ msgstr ""
246
+
247
+ #: lib/hammer_cli_katello/repository.rb:39
248
+ #: lib/hammer_cli_katello/product.rb:50
249
+ msgid "GPG Key"
250
+ msgstr ""
251
+
252
+ #: lib/hammer_cli_katello/repository.rb:46
253
+ msgid "Sync"
254
+ msgstr ""
255
+
256
+ #: lib/hammer_cli_katello/repository.rb:48
257
+ msgid "Last Sync Date"
258
+ msgstr ""
259
+
260
+ #: lib/hammer_cli_katello/repository.rb:51
261
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:26
262
+ #: lib/hammer_cli_katello/filter_rule.rb:39
263
+ #: lib/hammer_cli_katello/content_view.rb:45
264
+ #: lib/hammer_cli_katello/filter.rb:45
265
+ msgid "Created"
266
+ msgstr ""
267
+
268
+ #: lib/hammer_cli_katello/repository.rb:52
269
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:27
270
+ #: lib/hammer_cli_katello/filter_rule.rb:40
271
+ #: lib/hammer_cli_katello/content_view.rb:46
272
+ #: lib/hammer_cli_katello/filter.rb:46
273
+ msgid "Updated"
274
+ msgstr ""
275
+
276
+ #: lib/hammer_cli_katello/repository.rb:54
277
+ msgid "Content Counts"
278
+ msgstr ""
279
+
280
+ #: lib/hammer_cli_katello/repository.rb:55
281
+ msgid "Packages"
282
+ msgstr ""
283
+
284
+ #: lib/hammer_cli_katello/repository.rb:56
285
+ msgid "Package Groups"
286
+ msgstr ""
287
+
288
+ #: lib/hammer_cli_katello/repository.rb:57
289
+ msgid "Errata"
290
+ msgstr ""
291
+
292
+ #: lib/hammer_cli_katello/repository.rb:58
293
+ #: lib/hammer_cli_katello/content_view.rb:40
294
+ #: lib/hammer_cli_katello/content_view_version.rb:48
295
+ msgid "Puppet Modules"
296
+ msgstr ""
297
+
298
+ #: lib/hammer_cli_katello/repository.rb:64
299
+ #: lib/hammer_cli_katello/repository.rb:65
300
+ msgid "yes"
301
+ msgstr ""
302
+
303
+ #: lib/hammer_cli_katello/repository.rb:64
304
+ #: lib/hammer_cli_katello/repository.rb:65
305
+ msgid "no"
306
+ msgstr ""
307
+
308
+ #: lib/hammer_cli_katello/repository.rb:87
309
+ msgid "Failed"
310
+ msgstr ""
311
+
312
+ #: lib/hammer_cli_katello/repository.rb:88
313
+ msgid "Success"
314
+ msgstr ""
315
+
316
+ #: lib/hammer_cli_katello/repository.rb:89
317
+ msgid "Finished"
318
+ msgstr ""
319
+
320
+ #: lib/hammer_cli_katello/repository.rb:90
321
+ msgid "Error"
322
+ msgstr ""
323
+
324
+ #: lib/hammer_cli_katello/repository.rb:91
325
+ msgid "Running"
326
+ msgstr ""
327
+
328
+ #: lib/hammer_cli_katello/repository.rb:92
329
+ msgid "Waiting"
330
+ msgstr ""
331
+
332
+ #: lib/hammer_cli_katello/repository.rb:93
333
+ msgid "Canceled"
334
+ msgstr ""
335
+
336
+ #: lib/hammer_cli_katello/repository.rb:94
337
+ msgid "Not Synced"
338
+ msgstr ""
339
+
340
+ #: lib/hammer_cli_katello/repository.rb:111
341
+ msgid "Repository is being synchronized in task %{id}"
342
+ msgstr ""
343
+
344
+ #: lib/hammer_cli_katello/repository.rb:112
345
+ msgid "Could not synchronize the repository"
346
+ msgstr ""
347
+
348
+ #: lib/hammer_cli_katello/repository.rb:120
349
+ msgid "Repository created"
350
+ msgstr ""
351
+
352
+ #: lib/hammer_cli_katello/repository.rb:121
353
+ msgid "Could not create the repository"
354
+ msgstr ""
355
+
356
+ #: lib/hammer_cli_katello/repository.rb:142
357
+ msgid "Repository updated"
358
+ msgstr ""
359
+
360
+ #: lib/hammer_cli_katello/repository.rb:143
361
+ msgid "Could not update the repository"
362
+ msgstr ""
363
+
364
+ #: lib/hammer_cli_katello/repository.rb:154
365
+ msgid "Repository deleted"
366
+ msgstr ""
367
+
368
+ #: lib/hammer_cli_katello/repository.rb:155
369
+ msgid "Could not delete the Repository"
370
+ msgstr ""
371
+
372
+ #: lib/hammer_cli_katello/repository.rb:163
373
+ msgid "Manipulate repositories"
374
+ msgstr ""
375
+
376
+ #: lib/hammer_cli_katello/sync_plan.rb:10
377
+ #: lib/hammer_cli_katello/filter_rule.rb:19
378
+ #: lib/hammer_cli_katello/filter_rule.rb:36
379
+ #: lib/hammer_cli_katello/filter.rb:42
380
+ msgid "Start Date"
381
+ msgstr ""
382
+
383
+ #: lib/hammer_cli_katello/sync_plan.rb:11
384
+ msgid "Interval"
385
+ msgstr ""
386
+
387
+ #: lib/hammer_cli_katello/sync_plan.rb:21
388
+ msgid "Created at"
389
+ msgstr ""
390
+
391
+ #: lib/hammer_cli_katello/sync_plan.rb:22
392
+ msgid "Updated at"
393
+ msgstr ""
394
+
395
+ #: lib/hammer_cli_katello/sync_plan.rb:30
396
+ #: lib/hammer_cli_katello/sync_plan.rb:49
397
+ msgid "how often synchronization should run"
398
+ msgstr ""
399
+
400
+ #: lib/hammer_cli_katello/sync_plan.rb:37
401
+ msgid "start date and time of the synchronization defaults to now"
402
+ msgstr ""
403
+
404
+ #: lib/hammer_cli_katello/sync_plan.rb:41
405
+ msgid "Sync plan created"
406
+ msgstr ""
407
+
408
+ #: lib/hammer_cli_katello/sync_plan.rb:42
409
+ msgid "Could not create the sync plan"
410
+ msgstr ""
411
+
412
+ #: lib/hammer_cli_katello/sync_plan.rb:53
413
+ msgid "start date and time of the synchronization"
414
+ msgstr ""
415
+
416
+ #: lib/hammer_cli_katello/sync_plan.rb:56
417
+ msgid "Sync plan updated"
418
+ msgstr ""
419
+
420
+ #: lib/hammer_cli_katello/sync_plan.rb:57
421
+ msgid "Could not update the sync plan"
422
+ msgstr ""
423
+
424
+ #: lib/hammer_cli_katello/sync_plan.rb:63
425
+ msgid "Sync plan destroyed"
426
+ msgstr ""
427
+
428
+ #: lib/hammer_cli_katello/sync_plan.rb:64
429
+ msgid "Could not destroy the sync plan"
430
+ msgstr ""
431
+
432
+ #: lib/hammer_cli_katello/sync_plan.rb:73
433
+ msgid "Manipulate sync plans"
434
+ msgstr ""
435
+
436
+ #: lib/hammer_cli_katello/associating_commands.rb:11
437
+ msgid "The repository has been associated"
438
+ msgstr ""
439
+
440
+ #: lib/hammer_cli_katello/associating_commands.rb:12
441
+ msgid "Could not add repository"
442
+ msgstr ""
443
+
444
+ #: lib/hammer_cli_katello/associating_commands.rb:19
445
+ msgid "The repository has been removed"
446
+ msgstr ""
447
+
448
+ #: lib/hammer_cli_katello/associating_commands.rb:20
449
+ msgid "Could not remove repository"
450
+ msgstr ""
451
+
452
+ #: lib/hammer_cli_katello/associating_commands.rb:32
453
+ msgid "The host collection has been associated"
454
+ msgstr ""
455
+
456
+ #: lib/hammer_cli_katello/associating_commands.rb:33
457
+ msgid "Could not add host collection"
458
+ msgstr ""
459
+
460
+ #: lib/hammer_cli_katello/associating_commands.rb:40
461
+ msgid "The host collection has been removed"
462
+ msgstr ""
463
+
464
+ #: lib/hammer_cli_katello/associating_commands.rb:41
465
+ msgid "Could not remove host collection"
466
+ msgstr ""
467
+
468
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:12
469
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:23
470
+ #: lib/hammer_cli_katello/content_view.rb:42
471
+ #: lib/hammer_cli_katello/content_host.rb:22
472
+ msgid "UUID"
473
+ msgstr ""
474
+
475
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:14
476
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:25
477
+ #: lib/hammer_cli_katello/puppet_module.rb:11
478
+ #: lib/hammer_cli_katello/puppet_module.rb:22
479
+ #: lib/hammer_cli_katello/content_view.rb:44
480
+ #: lib/hammer_cli_katello/content_view_version.rb:51
481
+ msgid "Author"
482
+ msgstr ""
483
+
484
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:41
485
+ msgid "Puppet module added to content view"
486
+ msgstr ""
487
+
488
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:42
489
+ msgid "Could not add the puppet module"
490
+ msgstr ""
491
+
492
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:48
493
+ msgid "Puppet module updated for content view"
494
+ msgstr ""
495
+
496
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:49
497
+ msgid "Could not update the puppet module"
498
+ msgstr ""
499
+
500
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:62
501
+ msgid "Puppet module removed from content view"
502
+ msgstr ""
503
+
504
+ #: lib/hammer_cli_katello/content_view_puppet_module.rb:63
505
+ #: lib/hammer_cli_katello/filter.rb:69
506
+ msgid "Could not delete the filter"
507
+ msgstr ""
508
+
509
+ #: lib/hammer_cli_katello/filter_rule.rb:11
510
+ #: lib/hammer_cli_katello/filter_rule.rb:28
511
+ msgid "Rule ID"
512
+ msgstr ""
513
+
514
+ #: lib/hammer_cli_katello/filter_rule.rb:12
515
+ #: lib/hammer_cli_katello/filter_rule.rb:29
516
+ #: lib/hammer_cli_katello/filter.rb:13 lib/hammer_cli_katello/filter.rb:24
517
+ msgid "Filter ID"
518
+ msgstr ""
519
+
520
+ #: lib/hammer_cli_katello/filter_rule.rb:15
521
+ #: lib/hammer_cli_katello/filter_rule.rb:32
522
+ #: lib/hammer_cli_katello/puppet_module.rb:10
523
+ #: lib/hammer_cli_katello/puppet_module.rb:21
524
+ #: lib/hammer_cli_katello/content_view.rb:56
525
+ #: lib/hammer_cli_katello/filter.rb:38
526
+ #: lib/hammer_cli_katello/content_view_version.rb:12
527
+ #: lib/hammer_cli_katello/content_view_version.rb:28
528
+ #: lib/hammer_cli_katello/content_view_version.rb:52
529
+ msgid "Version"
530
+ msgstr ""
531
+
532
+ #: lib/hammer_cli_katello/filter_rule.rb:16
533
+ #: lib/hammer_cli_katello/filter_rule.rb:33
534
+ #: lib/hammer_cli_katello/filter.rb:39
535
+ msgid "Minimum Version"
536
+ msgstr ""
537
+
538
+ #: lib/hammer_cli_katello/filter_rule.rb:17
539
+ #: lib/hammer_cli_katello/filter_rule.rb:34
540
+ #: lib/hammer_cli_katello/filter.rb:40
541
+ msgid "Maximum Version"
542
+ msgstr ""
543
+
544
+ #: lib/hammer_cli_katello/filter_rule.rb:18
545
+ #: lib/hammer_cli_katello/filter_rule.rb:35
546
+ #: lib/hammer_cli_katello/filter.rb:41
547
+ msgid "Errata ID"
548
+ msgstr ""
549
+
550
+ #: lib/hammer_cli_katello/filter_rule.rb:20
551
+ #: lib/hammer_cli_katello/filter_rule.rb:37
552
+ #: lib/hammer_cli_katello/subscription.rb:18
553
+ #: lib/hammer_cli_katello/filter.rb:43
554
+ msgid "End Date"
555
+ msgstr ""
556
+
557
+ #: lib/hammer_cli_katello/filter_rule.rb:38
558
+ #: lib/hammer_cli_katello/filter.rb:44
559
+ msgid "Types"
560
+ msgstr ""
561
+
562
+ #: lib/hammer_cli_katello/filter_rule.rb:47
563
+ msgid "Filter rule created"
564
+ msgstr ""
565
+
566
+ #: lib/hammer_cli_katello/filter_rule.rb:48
567
+ msgid "Could not create the filter rule"
568
+ msgstr ""
569
+
570
+ #: lib/hammer_cli_katello/filter_rule.rb:54
571
+ msgid "Filter rule updated"
572
+ msgstr ""
573
+
574
+ #: lib/hammer_cli_katello/filter_rule.rb:55
575
+ msgid "Could not update the filter rule"
576
+ msgstr ""
577
+
578
+ #: lib/hammer_cli_katello/filter_rule.rb:61
579
+ msgid "Filter rule deleted"
580
+ msgstr ""
581
+
582
+ #: lib/hammer_cli_katello/filter_rule.rb:62
583
+ msgid "Could not delete the filter rule"
584
+ msgstr ""
585
+
586
+ #: lib/hammer_cli_katello/subscription.rb:13
587
+ msgid "Contract"
588
+ msgstr ""
589
+
590
+ #: lib/hammer_cli_katello/subscription.rb:14
591
+ msgid "Account"
592
+ msgstr ""
593
+
594
+ #: lib/hammer_cli_katello/subscription.rb:15
595
+ msgid "Support"
596
+ msgstr ""
597
+
598
+ #: lib/hammer_cli_katello/subscription.rb:16
599
+ #: lib/hammer_cli_katello/subscription.rb:21
600
+ msgid "Quantity"
601
+ msgstr ""
602
+
603
+ #: lib/hammer_cli_katello/subscription.rb:17
604
+ #: lib/hammer_cli_katello/activation_key.rb:12
605
+ msgid "Consumed"
606
+ msgstr ""
607
+
608
+ #: lib/hammer_cli_katello/subscription.rb:22
609
+ msgid "Attached"
610
+ msgstr ""
611
+
612
+ #: lib/hammer_cli_katello/subscription.rb:26
613
+ #: lib/hammer_cli_katello/activation_key.rb:25
614
+ msgid "Unlimited"
615
+ msgstr ""
616
+
617
+ #: lib/hammer_cli_katello/subscription.rb:51
618
+ msgid "Manifest is being uploaded in task %{id}"
619
+ msgstr ""
620
+
621
+ #: lib/hammer_cli_katello/subscription.rb:52
622
+ msgid "Manifest upload failed"
623
+ msgstr ""
624
+
625
+ #: lib/hammer_cli_katello/subscription.rb:55
626
+ msgid "Subscription manifest file"
627
+ msgstr ""
628
+
629
+ #: lib/hammer_cli_katello/subscription.rb:64
630
+ msgid "Manifest is being deleted in task %{id}"
631
+ msgstr ""
632
+
633
+ #: lib/hammer_cli_katello/subscription.rb:65
634
+ msgid "Manifest deletion failed"
635
+ msgstr ""
636
+
637
+ #: lib/hammer_cli_katello/subscription.rb:74
638
+ msgid "Manifest is being refreshed in task %{id}"
639
+ msgstr ""
640
+
641
+ #: lib/hammer_cli_katello/subscription.rb:75
642
+ msgid "Manifest refresh failed"
643
+ msgstr ""
644
+
645
+ #: lib/hammer_cli_katello/subscription.rb:86
646
+ msgid "Status Message"
647
+ msgstr ""
648
+
649
+ #: lib/hammer_cli_katello/subscription.rb:87
650
+ msgid "Time"
651
+ msgstr ""
652
+
653
+ #: lib/hammer_cli_katello/subscription.rb:97
654
+ msgid "Manipulate subscriptions."
655
+ msgstr ""
656
+
657
+ #: lib/hammer_cli_katello/activation_key.rb:14
658
+ #: lib/hammer_cli_katello/activation_key.rb:41
659
+ #: lib/hammer_cli_katello/content_host.rb:26
660
+ msgid "Lifecycle Environment"
661
+ msgstr ""
662
+
663
+ #: lib/hammer_cli_katello/activation_key.rb:17
664
+ #: lib/hammer_cli_katello/activation_key.rb:44
665
+ #: lib/hammer_cli_katello/content_host.rb:29
666
+ msgid "Content View"
667
+ msgstr ""
668
+
669
+ #: lib/hammer_cli_katello/activation_key.rb:22
670
+ msgid "%{consumed} of %{limit}"
671
+ msgstr ""
672
+
673
+ #: lib/hammer_cli_katello/activation_key.rb:47
674
+ msgid "Host Collections"
675
+ msgstr ""
676
+
677
+ #: lib/hammer_cli_katello/activation_key.rb:58
678
+ msgid "Activation key created"
679
+ msgstr ""
680
+
681
+ #: lib/hammer_cli_katello/activation_key.rb:59
682
+ msgid "Could not create the activation key"
683
+ msgstr ""
684
+
685
+ #: lib/hammer_cli_katello/activation_key.rb:66
686
+ msgid "Activation key updated"
687
+ msgstr ""
688
+
689
+ #: lib/hammer_cli_katello/activation_key.rb:67
690
+ msgid "Could not update the activation key"
691
+ msgstr ""
692
+
693
+ #: lib/hammer_cli_katello/activation_key.rb:74
694
+ msgid "List associated subscriptions"
695
+ msgstr ""
696
+
697
+ #: lib/hammer_cli_katello/activation_key.rb:82
698
+ #: lib/hammer_cli_katello/activation_key.rb:101
699
+ #: lib/hammer_cli_katello/activation_key.rb:127
700
+ #: lib/hammer_cli_katello/activation_key.rb:155
701
+ msgid "resource ID"
702
+ msgstr ""
703
+
704
+ #: lib/hammer_cli_katello/activation_key.rb:102
705
+ #: lib/hammer_cli_katello/activation_key.rb:128
706
+ msgid "subscription ID"
707
+ msgstr ""
708
+
709
+ #: lib/hammer_cli_katello/activation_key.rb:103
710
+ msgid "subscription quantity"
711
+ msgstr ""
712
+
713
+ #: lib/hammer_cli_katello/activation_key.rb:117
714
+ msgid "Subscription added to activation key"
715
+ msgstr ""
716
+
717
+ #: lib/hammer_cli_katello/activation_key.rb:118
718
+ msgid "Could not add subscription to activation key"
719
+ msgstr ""
720
+
721
+ #: lib/hammer_cli_katello/activation_key.rb:124
722
+ msgid "Remove subscription"
723
+ msgstr ""
724
+
725
+ #: lib/hammer_cli_katello/activation_key.rb:140
726
+ msgid "Subscription removed from activation key"
727
+ msgstr ""
728
+
729
+ #: lib/hammer_cli_katello/activation_key.rb:141
730
+ msgid "Could not remove subscription from activation key"
731
+ msgstr ""
732
+
733
+ #: lib/hammer_cli_katello/activation_key.rb:147
734
+ msgid "List associated host collections"
735
+ msgstr ""
736
+
737
+ #: lib/hammer_cli_katello/activation_key.rb:175
738
+ msgid "Manipulate activation keys."
739
+ msgstr ""
740
+
741
+ #: lib/hammer_cli_katello/puppet_module.rb:24
742
+ msgid "Summary"
743
+ msgstr ""
744
+
745
+ #: lib/hammer_cli_katello/puppet_module.rb:26
746
+ msgid "License"
747
+ msgstr ""
748
+
749
+ #: lib/hammer_cli_katello/puppet_module.rb:27
750
+ msgid "Project Page"
751
+ msgstr ""
752
+
753
+ #: lib/hammer_cli_katello/puppet_module.rb:28
754
+ msgid "Source"
755
+ msgstr ""
756
+
757
+ #: lib/hammer_cli_katello/puppet_module.rb:29
758
+ msgid "Dependencies"
759
+ msgstr ""
760
+
761
+ #: lib/hammer_cli_katello/puppet_module.rb:30
762
+ msgid "Checksums"
763
+ msgstr ""
764
+
765
+ #: lib/hammer_cli_katello/puppet_module.rb:31
766
+ msgid "Tag List"
767
+ msgstr ""
768
+
769
+ #: lib/hammer_cli_katello/content_view.rb:12
770
+ #: lib/hammer_cli_katello/content_view_version.rb:15
771
+ #: lib/hammer_cli_katello/content_view_version.rb:31
772
+ msgid "Content View ID"
773
+ msgstr ""
774
+
775
+ #: lib/hammer_cli_katello/content_view.rb:15
776
+ #: lib/hammer_cli_katello/content_view.rb:27
777
+ msgid "Composite"
778
+ msgstr ""
779
+
780
+ #: lib/hammer_cli_katello/content_view.rb:16
781
+ msgid "Repository IDs"
782
+ msgstr ""
783
+
784
+ #: lib/hammer_cli_katello/content_view.rb:34
785
+ #: lib/hammer_cli_katello/filter.rb:29
786
+ #: lib/hammer_cli_katello/repository_set.rb:24
787
+ #: lib/hammer_cli_katello/content_view_version.rb:42
788
+ #: lib/hammer_cli_katello/product.rb:15
789
+ msgid "Repositories"
790
+ msgstr ""
791
+
792
+ #: lib/hammer_cli_katello/content_view.rb:49
793
+ #: lib/hammer_cli_katello/content_view_version.rb:36
794
+ msgid "Environments"
795
+ msgstr ""
796
+
797
+ #: lib/hammer_cli_katello/content_view.rb:54
798
+ msgid "Versions"
799
+ msgstr ""
800
+
801
+ #: lib/hammer_cli_katello/content_view.rb:57
802
+ msgid "Published"
803
+ msgstr ""
804
+
805
+ #: lib/hammer_cli_katello/content_view.rb:60
806
+ msgid "Components"
807
+ msgstr ""
808
+
809
+ #: lib/hammer_cli_katello/content_view.rb:70
810
+ msgid "Content view created"
811
+ msgstr ""
812
+
813
+ #: lib/hammer_cli_katello/content_view.rb:71
814
+ msgid "Could not create the content view"
815
+ msgstr ""
816
+
817
+ #: lib/hammer_cli_katello/content_view.rb:73
818
+ msgid "Create a composite content view"
819
+ msgstr ""
820
+
821
+ #: lib/hammer_cli_katello/content_view.rb:85
822
+ msgid "Content view updated"
823
+ msgstr ""
824
+
825
+ #: lib/hammer_cli_katello/content_view.rb:86
826
+ msgid "Could not update the content view"
827
+ msgstr ""
828
+
829
+ #: lib/hammer_cli_katello/content_view.rb:95
830
+ #: lib/hammer_cli_katello/content_view_version.rb:73
831
+ msgid "Content view is being deleted with task %{id}"
832
+ msgstr ""
833
+
834
+ #: lib/hammer_cli_katello/content_view.rb:96
835
+ #: lib/hammer_cli_katello/content_view_version.rb:74
836
+ msgid "Could not delete the content view"
837
+ msgstr ""
838
+
839
+ #: lib/hammer_cli_katello/content_view.rb:105
840
+ msgid "Content view is being published with task %{id}"
841
+ msgstr ""
842
+
843
+ #: lib/hammer_cli_katello/content_view.rb:106
844
+ msgid "Could not publish the content view"
845
+ msgstr ""
846
+
847
+ #: lib/hammer_cli_katello/content_view.rb:115
848
+ msgid "Content view is being removed from environment with task %{id}"
849
+ msgstr ""
850
+
851
+ #: lib/hammer_cli_katello/content_view.rb:116
852
+ msgid "Could not remove the content view from environment"
853
+ msgstr ""
854
+
855
+ #: lib/hammer_cli_katello/content_view.rb:128
856
+ msgid "Comma separated list of version ids to remove"
857
+ msgstr ""
858
+
859
+ #: lib/hammer_cli_katello/content_view.rb:130
860
+ msgid "Comma separated list of environment ids to remove"
861
+ msgstr ""
862
+
863
+ #: lib/hammer_cli_katello/content_view.rb:140
864
+ msgid "Content view objects are being removed task %{id}"
865
+ msgstr ""
866
+
867
+ #: lib/hammer_cli_katello/content_view.rb:141
868
+ msgid "Could not remove objects from content view"
869
+ msgstr ""
870
+
871
+ #: lib/hammer_cli_katello/content_view.rb:156
872
+ msgid "The component version has been added"
873
+ msgstr ""
874
+
875
+ #: lib/hammer_cli_katello/content_view.rb:157
876
+ msgid "Could not add version"
877
+ msgstr ""
878
+
879
+ #: lib/hammer_cli_katello/content_view.rb:170
880
+ msgid "The component version has been removed"
881
+ msgstr ""
882
+
883
+ #: lib/hammer_cli_katello/content_view.rb:171
884
+ msgid "Could not remove version"
885
+ msgstr ""
886
+
887
+ #: lib/hammer_cli_katello/content_view.rb:192
888
+ msgid "Manipulate content views."
889
+ msgstr ""
890
+
891
+ #: lib/hammer_cli_katello/filter.rb:15 lib/hammer_cli_katello/filter.rb:26
892
+ #: lib/hammer_cli_katello/repository_set.rb:10
893
+ msgid "Type"
894
+ msgstr ""
895
+
896
+ #: lib/hammer_cli_katello/filter.rb:16 lib/hammer_cli_katello/filter.rb:27
897
+ msgid "Inclusion"
898
+ msgstr ""
899
+
900
+ #: lib/hammer_cli_katello/filter.rb:35
901
+ msgid "Rules"
902
+ msgstr ""
903
+
904
+ #: lib/hammer_cli_katello/filter.rb:54
905
+ msgid "Filter created"
906
+ msgstr ""
907
+
908
+ #: lib/hammer_cli_katello/filter.rb:55
909
+ msgid "Could not create the filter"
910
+ msgstr ""
911
+
912
+ #: lib/hammer_cli_katello/filter.rb:61
913
+ msgid "Filter updated"
914
+ msgstr ""
915
+
916
+ #: lib/hammer_cli_katello/filter.rb:62
917
+ msgid "Could not update the filter"
918
+ msgstr ""
919
+
920
+ #: lib/hammer_cli_katello/filter.rb:68
921
+ msgid "Filter deleted"
922
+ msgstr ""
923
+
924
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:10
925
+ msgid "Prior"
926
+ msgstr ""
927
+
928
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:21
929
+ msgid "Lifecycle Path"
930
+ msgstr ""
931
+
932
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:44
933
+ msgid "Library"
934
+ msgstr ""
935
+
936
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:45
937
+ msgid "Prior Lifecycle Environment"
938
+ msgstr ""
939
+
940
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:52
941
+ msgid "Environment created"
942
+ msgstr ""
943
+
944
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:53
945
+ msgid "Could not create environment"
946
+ msgstr ""
947
+
948
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:68
949
+ msgid "Environment updated"
950
+ msgstr ""
951
+
952
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:69
953
+ msgid "Could not update environment"
954
+ msgstr ""
955
+
956
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:84
957
+ msgid "Environment deleted"
958
+ msgstr ""
959
+
960
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:85
961
+ msgid "Could not delete environment"
962
+ msgstr ""
963
+
964
+ #: lib/hammer_cli_katello/lifecycle_environment.rb:94
965
+ msgid "manipulate lifecycle_environments on the server"
966
+ msgstr ""
967
+
968
+ #: lib/hammer_cli_katello/repository_set.rb:27
969
+ #: lib/hammer_cli_katello/repository_set.rb:44
970
+ msgid "Enabled"
971
+ msgstr ""
972
+
973
+ #: lib/hammer_cli_katello/repository_set.rb:41
974
+ msgid "Arch"
975
+ msgstr ""
976
+
977
+ #: lib/hammer_cli_katello/repository_set.rb:42
978
+ msgid "Release"
979
+ msgstr ""
980
+
981
+ #: lib/hammer_cli_katello/repository_set.rb:64
982
+ msgid "Repository enabled"
983
+ msgstr ""
984
+
985
+ #: lib/hammer_cli_katello/repository_set.rb:65
986
+ msgid "Could not enable repository"
987
+ msgstr ""
988
+
989
+ #: lib/hammer_cli_katello/repository_set.rb:74
990
+ msgid "Repository disabled"
991
+ msgstr ""
992
+
993
+ #: lib/hammer_cli_katello/repository_set.rb:75
994
+ msgid "Could not disable repository"
995
+ msgstr ""
996
+
997
+ #: lib/hammer_cli_katello/repository_set.rb:83
998
+ msgid "manipulate repository sets on the server"
999
+ msgstr ""
1000
+
1001
+ #: lib/hammer_cli_katello/host_collection.rb:10
1002
+ msgid "Limit"
1003
+ msgstr ""
1004
+
1005
+ #: lib/hammer_cli_katello/host_collection.rb:20
1006
+ #: lib/hammer_cli_katello/host_collection.rb:43
1007
+ msgid "Host collection created"
1008
+ msgstr ""
1009
+
1010
+ #: lib/hammer_cli_katello/host_collection.rb:21
1011
+ #: lib/hammer_cli_katello/host_collection.rb:44
1012
+ msgid "Could not create the host collection"
1013
+ msgstr ""
1014
+
1015
+ #: lib/hammer_cli_katello/host_collection.rb:30
1016
+ msgid "Total Content Hosts"
1017
+ msgstr ""
1018
+
1019
+ #: lib/hammer_cli_katello/host_collection.rb:31
1020
+ msgid "Max Content Hosts"
1021
+ msgstr ""
1022
+
1023
+ #: lib/hammer_cli_katello/host_collection.rb:56
1024
+ msgid "Host collection deleted"
1025
+ msgstr ""
1026
+
1027
+ #: lib/hammer_cli_katello/host_collection.rb:57
1028
+ msgid "Could not delete the host collection"
1029
+ msgstr ""
1030
+
1031
+ #: lib/hammer_cli_katello/host_collection.rb:66
1032
+ msgid "Manipulate host collections"
1033
+ msgstr ""
1034
+
1035
+ #: lib/hammer_cli_katello/content_host.rb:24
1036
+ msgid "Location"
1037
+ msgstr ""
1038
+
1039
+ #: lib/hammer_cli_katello/content_host.rb:31
1040
+ msgid "Entitlement Status"
1041
+ msgstr ""
1042
+
1043
+ #: lib/hammer_cli_katello/content_host.rb:32
1044
+ msgid "Release Version"
1045
+ msgstr ""
1046
+
1047
+ #: lib/hammer_cli_katello/content_host.rb:33
1048
+ msgid "Autoheal"
1049
+ msgstr ""
1050
+
1051
+ #: lib/hammer_cli_katello/content_host.rb:42
1052
+ msgid "Content host created"
1053
+ msgstr ""
1054
+
1055
+ #: lib/hammer_cli_katello/content_host.rb:43
1056
+ msgid "Could not create content host"
1057
+ msgstr ""
1058
+
1059
+ #: lib/hammer_cli_katello/content_host.rb:58
1060
+ msgid "Content host updated"
1061
+ msgstr ""
1062
+
1063
+ #: lib/hammer_cli_katello/content_host.rb:59
1064
+ msgid "Could not update content host"
1065
+ msgstr ""
1066
+
1067
+ #: lib/hammer_cli_katello/content_host.rb:67
1068
+ msgid "Content host deleted"
1069
+ msgstr ""
1070
+
1071
+ #: lib/hammer_cli_katello/content_host.rb:68
1072
+ msgid "Could not delete content host"
1073
+ msgstr ""
1074
+
1075
+ #: lib/hammer_cli_katello/content_host.rb:85
1076
+ msgid "manipulate content hosts on the server"
1077
+ msgstr ""
1078
+
1079
+ #: lib/hammer_cli_katello/gpg_key.rb:35 lib/hammer_cli_katello/product.rb:64
1080
+ msgid "Content"
1081
+ msgstr ""
1082
+
1083
+ #: lib/hammer_cli_katello/gpg_key.rb:42
1084
+ msgid "GPG Key created"
1085
+ msgstr ""
1086
+
1087
+ #: lib/hammer_cli_katello/gpg_key.rb:43
1088
+ msgid "Could not create GPG Key"
1089
+ msgstr ""
1090
+
1091
+ #: lib/hammer_cli_katello/gpg_key.rb:46 lib/hammer_cli_katello/gpg_key.rb:57
1092
+ msgid "GPG Key file"
1093
+ msgstr ""
1094
+
1095
+ #: lib/hammer_cli_katello/gpg_key.rb:53
1096
+ msgid "GPG Key updated"
1097
+ msgstr ""
1098
+
1099
+ #: lib/hammer_cli_katello/gpg_key.rb:54
1100
+ msgid "Could not update GPG Key"
1101
+ msgstr ""
1102
+
1103
+ #: lib/hammer_cli_katello/gpg_key.rb:63
1104
+ msgid "GPG Key deleted"
1105
+ msgstr ""
1106
+
1107
+ #: lib/hammer_cli_katello/gpg_key.rb:64
1108
+ msgid "Could not delete the GPG Key"
1109
+ msgstr ""
1110
+
1111
+ #: lib/hammer_cli_katello/gpg_key.rb:73
1112
+ msgid "manipulate GPG Key actions on the server"
1113
+ msgstr ""
1114
+
1115
+ #: lib/hammer_cli_katello/content_view_version.rb:16
1116
+ #: lib/hammer_cli_katello/content_view_version.rb:32
1117
+ msgid "Content View Name"
1118
+ msgstr ""
1119
+
1120
+ #: lib/hammer_cli_katello/content_view_version.rb:17
1121
+ #: lib/hammer_cli_katello/content_view_version.rb:33
1122
+ msgid "Content View Label"
1123
+ msgstr ""
1124
+
1125
+ #: lib/hammer_cli_katello/content_view_version.rb:63
1126
+ msgid "Content view is being promoted with task %{id}"
1127
+ msgstr ""
1128
+
1129
+ #: lib/hammer_cli_katello/content_view_version.rb:64
1130
+ msgid "Could not promote the content view"
1131
+ msgstr ""
1132
+
1133
+ #: lib/hammer_cli_katello/product.rb:18 lib/hammer_cli_katello/product.rb:42
1134
+ msgid "Sync State"
1135
+ msgstr ""
1136
+
1137
+ #: lib/hammer_cli_katello/product.rb:27
1138
+ msgid "Product created"
1139
+ msgstr ""
1140
+
1141
+ #: lib/hammer_cli_katello/product.rb:28
1142
+ msgid "Could not create the product"
1143
+ msgstr ""
1144
+
1145
+ #: lib/hammer_cli_katello/product.rb:45
1146
+ msgid "Sync Plan ID"
1147
+ msgstr ""
1148
+
1149
+ #: lib/hammer_cli_katello/product.rb:47
1150
+ msgid "GPG"
1151
+ msgstr ""
1152
+
1153
+ #: lib/hammer_cli_katello/product.rb:49
1154
+ msgid "GPG Key ID"
1155
+ msgstr ""
1156
+
1157
+ #: lib/hammer_cli_katello/product.rb:58
1158
+ msgid "Readonly"
1159
+ msgstr ""
1160
+
1161
+ #: lib/hammer_cli_katello/product.rb:61
1162
+ msgid "Deletable"
1163
+ msgstr ""
1164
+
1165
+ #: lib/hammer_cli_katello/product.rb:66
1166
+ msgid "Repo Name"
1167
+ msgstr ""
1168
+
1169
+ #: lib/hammer_cli_katello/product.rb:75
1170
+ msgid "Product updated"
1171
+ msgstr ""
1172
+
1173
+ #: lib/hammer_cli_katello/product.rb:76
1174
+ msgid "Could not update the product"
1175
+ msgstr ""
1176
+
1177
+ #: lib/hammer_cli_katello/product.rb:82
1178
+ msgid "Product destroyed"
1179
+ msgstr ""
1180
+
1181
+ #: lib/hammer_cli_katello/product.rb:83
1182
+ msgid "Could not destroy the product"
1183
+ msgstr ""
1184
+
1185
+ #: lib/hammer_cli_katello/product.rb:89
1186
+ msgid "Assign sync plan to product."
1187
+ msgstr ""
1188
+
1189
+ #: lib/hammer_cli_katello/product.rb:92
1190
+ msgid "Synchronization plan assigned."
1191
+ msgstr ""
1192
+
1193
+ #: lib/hammer_cli_katello/product.rb:93
1194
+ msgid "Could not assign synchronization plan."
1195
+ msgstr ""
1196
+
1197
+ #: lib/hammer_cli_katello/product.rb:99 lib/hammer_cli_katello/product.rb:114
1198
+ msgid "plan numeric identifier"
1199
+ msgstr ""
1200
+
1201
+ #: lib/hammer_cli_katello/product.rb:104
1202
+ msgid "Delete assignment sync plan and product."
1203
+ msgstr ""
1204
+
1205
+ #: lib/hammer_cli_katello/product.rb:107
1206
+ msgid "Synchronization plan removed."
1207
+ msgstr ""
1208
+
1209
+ #: lib/hammer_cli_katello/product.rb:108
1210
+ msgid "Could not remove synchronization plan."
1211
+ msgstr ""
1212
+
1213
+ #: lib/hammer_cli_katello/product.rb:122
1214
+ msgid "Manipulate products."
1215
+ msgstr ""