hammer_cli_katello 0.17.1 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53e2f4ceb875e5146dc941c0c2f6ba8a00095e525c1a8a99ad0252ed92f8cf60
4
- data.tar.gz: '01080c7f6a9e503fcf2446d41f20b131ca2293aeb849e08243da25ccfc1e5cbc'
3
+ metadata.gz: 54e72239ee798a8de0f21c8590e82f8bec7b7afa6226a7fca79fa86eb98cac93
4
+ data.tar.gz: 7422feeb5d60c975d7588bbf85b33893f48b05811f11b462c4999fb50fc818d8
5
5
  SHA512:
6
- metadata.gz: 0d4ce299d3e164363f6209a127d8425bbbfdf7571fc38771e8ce52c671e2b550659fb6af5cc97fd066f50b3af81935802c832e585aa7c280136e75b0acc561b5
7
- data.tar.gz: 666a449b3d17c960642fdbb498cc8367e6049dab07a58d640322672798d8937338a78bf089e2e59c5db42d68afa652db1af2fa861ac1b5e54a5470e05a95bd09
6
+ metadata.gz: 9977229efb0e161dddda02cd32b59a0721b2165b6f63c16438ad722782d9d9b68d733a21a9ac50c9c39f962c2e35dbac866a6bbd812d48ff9eea6324b9da36f5
7
+ data.tar.gz: 3dc3a3c27f3574dd96a2136d227456717a43b3e2695e55e58b54e7f37ae1c7f3acf7386b632be94be2c3a3e4cf1a1d5cab0f35636f57c071507450d1fa515803
@@ -169,12 +169,24 @@ module HammerCLIKatello
169
169
  organization_options = [:option_organization_id, :option_organization_name, \
170
170
  :option_organization_label]
171
171
 
172
- if option(:option_name).exist?
172
+ if option(:option_name).exist? || option(:option_product_name).exist?
173
173
  any(*organization_options).required
174
174
  end
175
+
176
+ product_options = [:option_product_id, :option_product_name]
177
+ if option(:option_repository_ids).exist?
178
+ any(*product_options).rejected
179
+ option(:option_repository_names).rejected
180
+ end
181
+
182
+ if option(:option_repository_names).exist?
183
+ any(*product_options).required
184
+ end
175
185
  end
176
186
 
177
- build_options
187
+ build_options do |o|
188
+ o.expand.including(:products)
189
+ end
178
190
  end
179
191
 
180
192
  class DeleteCommand < HammerCLIKatello::DeleteCommand
@@ -291,6 +291,7 @@ module HammerCLIKatello
291
291
  cv = show(:content_views, 'id' => cvv['content_view_id'])
292
292
 
293
293
  composite = cv["composite"]
294
+
294
295
  export_json_options = { :cvv => cvv }
295
296
 
296
297
  if composite
@@ -301,13 +302,11 @@ module HammerCLIKatello
301
302
  export_json_options[:repositories] = []
302
303
  else
303
304
  repositories = fetch_cvv_repositories(cvv)
305
+ puppet_check(cvv)
304
306
  check_repo_type(repositories)
305
307
  check_repo_download_policy(repositories)
308
+ collect_packages(repositories)
306
309
 
307
- repositories.each do |repo|
308
- repo['packages'] = index(:packages, 'repository_id' => repo['id'], :full_result => true)
309
- repo['errata'] = index(:errata, 'repository_id' => repo['id'], :full_result => true)
310
- end
311
310
  export_json_options[:repositories] = repositories
312
311
  end
313
312
 
@@ -349,32 +348,6 @@ module HammerCLIKatello
349
348
  FileUtils.rm_rf(export_prefix)
350
349
  end
351
350
  end
352
-
353
- def check_repo_type(repositories)
354
- repositories.select do |repo|
355
- if repo['content_type'] != 'yum'
356
- raise _("The Repository '#{repo['name']}' is a non-yum repository."\
357
- " Only Yum is supported at this time."\
358
- " Please remove the repository from the Content View,"\
359
- " republish and try the export again.")
360
- end
361
- end
362
- end
363
-
364
- def check_repo_download_policy(repositories)
365
- non_immediate = repositories.select do |repo|
366
- show(:repositories, 'id' => repo['library_instance_id'])['download_policy'] != 'immediate'
367
- end
368
- return true if non_immediate.empty?
369
-
370
- non_immediate_names = repositories.collect { |repo| repo['name'] }
371
- msg = <<~MSG
372
- All exported repositories must be set to an immediate download policy and re-synced.
373
- The following repositories need action:
374
- #{non_immediate_names.join(', ')}
375
- MSG
376
- raise _(msg)
377
- end
378
351
  end
379
352
 
380
353
  class ImportCommand < HammerCLIForeman::Command
@@ -1,3 +1,4 @@
1
+ # rubocop:disable Metrics/ModuleLength
1
2
  module HammerCLIKatello
2
3
  module CVImportExportHelper
3
4
  PUBLISHED_REPOS_DIR = "/var/lib/pulp/published/yum/https/repos/".freeze
@@ -22,6 +23,61 @@ module HammerCLIKatello
22
23
  found_composite_version.first['id']
23
24
  end
24
25
 
26
+ def puppet_check(cvv)
27
+ unless cvv['puppet_modules'].empty?
28
+ raise _("The Content View '#{cvv['content_view']['label']}'"\
29
+ " contains Puppet modules, this is not supported at this time."\
30
+ " Please remove the modules, publish a new version"\
31
+ " and try the export again.")
32
+ end
33
+ end
34
+
35
+ def check_repo_type(repositories)
36
+ repositories.select do |repo|
37
+ if repo['content_type'] != 'yum'
38
+ raise _("The Repository '#{repo['name']}' is a non-yum repository."\
39
+ " Only Yum is supported at this time."\
40
+ " Please remove the repository from the Content View,"\
41
+ " republish and try the export again.")
42
+ end
43
+ end
44
+ end
45
+
46
+ def check_repo_download_policy(repositories)
47
+ non_immediate = repositories.select do |repo|
48
+ show(:repositories, 'id' => repo['library_instance_id'])['download_policy'] != 'immediate'
49
+ end
50
+ unless non_immediate.empty?
51
+ non_immediate_names = repositories.collect { |repo| repo['name'] }
52
+ msg = <<~MSG
53
+ All exported repositories must be set to an immediate download policy and re-synced.
54
+ The following repositories need action:
55
+ #{non_immediate_names.join(', ')}
56
+ MSG
57
+ raise _(msg)
58
+ end
59
+ end
60
+
61
+ def collect_packages(repositories)
62
+ repositories.each do |repo|
63
+ per_page = 50
64
+ repo['packages'] = []
65
+ repo['errata'] = []
66
+ repo_packages = repo['content_counts']['rpm']
67
+ errata_count = repo['content_counts']['erratum']
68
+ pkg_pages = (repo_packages / per_page.to_f).ceil
69
+ errata_pages = (errata_count / per_page.to_f).ceil
70
+ (1..pkg_pages).each do |page|
71
+ repo['packages'] += index(:packages, 'repository_id' => repo['id'],
72
+ :page => page, :per_page => 50)
73
+ end
74
+ (1..errata_pages).each do |page|
75
+ repo['errata'] += index(:errata, 'repository_id' => repo['id'],
76
+ :page => page, :per_page => 50)
77
+ end
78
+ end
79
+ end
80
+
25
81
  def import_checks(cv, import_cv, major, minor)
26
82
  version = "#{major}.#{minor}".to_f
27
83
 
@@ -83,5 +83,9 @@ module HammerCLIKatello
83
83
  def create_images_search_options(options, mode = nil)
84
84
  create_search_options_without_katello_api(options, api.resource(:images), mode)
85
85
  end
86
+
87
+ def create_users_search_options(options, mode = nil)
88
+ create_search_options_without_katello_api(options, api.resource(:users), mode)
89
+ end
86
90
  end
87
91
  end
@@ -26,7 +26,6 @@ module HammerCLIKatello
26
26
  :subscription => [s_name(_("Subscription name to search by"))],
27
27
  :sync_plan => [s_name(_("Sync plan name to search by"))],
28
28
  :task => [s_name(_("Task name to search by"))],
29
- :user => [s_name(_("User name to search by"))],
30
29
  :content_view_puppet_module => [
31
30
  s_name(_("Puppet module name to search by")),
32
31
  s("author", _("Puppet module's author to search by")),
@@ -8,7 +8,6 @@ module HammerCLIKatello
8
8
 
9
9
  output do
10
10
  field :label, _("Label")
11
- field :description, _("Description")
12
11
  end
13
12
 
14
13
  build_options
@@ -55,6 +55,7 @@ module HammerCLIKatello
55
55
  field :license, _("License")
56
56
  field :relativepath, _("Relative Path")
57
57
  field :description, _("Description")
58
+ field :modular, _("Modular"), Fields::Boolean
58
59
  end
59
60
 
60
61
  build_options
@@ -90,6 +90,10 @@ module HammerCLIKatello
90
90
  end
91
91
 
92
92
  def extend_data(data)
93
+ if data["content_type"] != "docker"
94
+ data.delete("docker_tags_whitelist")
95
+ end
96
+
93
97
  if data["content_type"] == "yum" && data["gpg_key"]
94
98
  data["gpg_key_name"] = data["gpg_key"]["name"]
95
99
  end
@@ -33,6 +33,8 @@ module HammerCLIKatello
33
33
  _("Physical")
34
34
  elsif data["host"]
35
35
  _("Guests of %s" % data['host']['name'])
36
+ elsif data["hypervisor"]
37
+ _("Guests of %s" % data['hypervisor']['name'])
36
38
  elsif data["unmapper_guest"]
37
39
  _("Temporary")
38
40
  else
@@ -1,5 +1,5 @@
1
1
  module HammerCLIKatello
2
2
  def self.version
3
- @version ||= Gem::Version.new('0.17.1')
3
+ @version ||= Gem::Version.new('0.18.0')
4
4
  end
5
5
  end
@@ -6,10 +6,10 @@
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: hammer-cli-katello 0.11.0\n"
9
+ "Project-Id-Version: hammer-cli-katello 0.18.pre.master\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2018-03-12 16:35-0400\n"
12
- "PO-Revision-Date: 2018-03-12 16:35-0400\n"
11
+ "POT-Creation-Date: 2019-02-27 08:32-0500\n"
12
+ "PO-Revision-Date: 2019-02-27 08:32-0500\n"
13
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
14
  "Language-Team: LANGUAGE <LL@li.org>\n"
15
15
  "Language: \n"
@@ -18,87 +18,91 @@ msgstr ""
18
18
  "Content-Transfer-Encoding: 8bit\n"
19
19
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
20
20
 
21
- #: ../lib/hammer_cli_katello.rb:31
22
- msgid "Manipulate activation keys."
21
+ #: ../lib/hammer_cli_katello.rb:35
22
+ msgid "Manipulate activation keys"
23
23
  msgstr ""
24
24
 
25
- #: ../lib/hammer_cli_katello.rb:36
25
+ #: ../lib/hammer_cli_katello.rb:40
26
26
  msgid "Manipulate organizations"
27
27
  msgstr ""
28
28
 
29
- #: ../lib/hammer_cli_katello.rb:41
29
+ #: ../lib/hammer_cli_katello.rb:45
30
30
  msgid "Manipulate GPG Key actions on the server"
31
31
  msgstr ""
32
32
 
33
- #: ../lib/hammer_cli_katello.rb:47
33
+ #: ../lib/hammer_cli_katello.rb:51
34
34
  msgid "Manipulate lifecycle_environments on the server"
35
35
  msgstr ""
36
36
 
37
- #: ../lib/hammer_cli_katello.rb:52
37
+ #: ../lib/hammer_cli_katello.rb:56
38
38
  msgid "Get the status of the server"
39
39
  msgstr ""
40
40
 
41
- #: ../lib/hammer_cli_katello.rb:57
42
- msgid "Manipulate products."
41
+ #: ../lib/hammer_cli_katello.rb:61
42
+ msgid "Manipulate products"
43
43
  msgstr ""
44
44
 
45
- #: ../lib/hammer_cli_katello.rb:62
46
- msgid "View Puppet Module details."
45
+ #: ../lib/hammer_cli_katello.rb:66
46
+ msgid "View Puppet Module details"
47
47
  msgstr ""
48
48
 
49
- #: ../lib/hammer_cli_katello.rb:67
49
+ #: ../lib/hammer_cli_katello.rb:71
50
50
  msgid "Manipulate repositories"
51
51
  msgstr ""
52
52
 
53
- #: ../lib/hammer_cli_katello.rb:73
53
+ #: ../lib/hammer_cli_katello.rb:77
54
54
  msgid "Manipulate repository sets on the server"
55
55
  msgstr ""
56
56
 
57
- #: ../lib/hammer_cli_katello.rb:78
58
- msgid "Manipulate subscriptions."
57
+ #: ../lib/hammer_cli_katello.rb:82
58
+ msgid "Manipulate subscriptions"
59
59
  msgstr ""
60
60
 
61
- #: ../lib/hammer_cli_katello.rb:83
61
+ #: ../lib/hammer_cli_katello.rb:87
62
62
  msgid "Manipulate sync plans"
63
63
  msgstr ""
64
64
 
65
- #: ../lib/hammer_cli_katello.rb:88
65
+ #: ../lib/hammer_cli_katello.rb:92
66
66
  msgid "Manipulate host collections"
67
67
  msgstr ""
68
68
 
69
- #: ../lib/hammer_cli_katello.rb:93
70
- msgid "Manipulate content views."
69
+ #: ../lib/hammer_cli_katello.rb:97
70
+ msgid "Manipulate content views"
71
71
  msgstr ""
72
72
 
73
- #: ../lib/hammer_cli_katello.rb:99
73
+ #: ../lib/hammer_cli_katello.rb:103
74
74
  msgid "Manipulate capsule"
75
75
  msgstr ""
76
76
 
77
- #: ../lib/hammer_cli_katello.rb:104
78
- msgid "Manipulate packages."
77
+ #: ../lib/hammer_cli_katello.rb:108
78
+ msgid "Manipulate packages"
79
79
  msgstr ""
80
80
 
81
- #: ../lib/hammer_cli_katello.rb:109
81
+ #: ../lib/hammer_cli_katello.rb:113
82
82
  msgid "Manipulate package groups"
83
83
  msgstr ""
84
84
 
85
- #: ../lib/hammer_cli_katello.rb:114
85
+ #: ../lib/hammer_cli_katello.rb:118
86
86
  msgid "Manipulate errata"
87
87
  msgstr ""
88
88
 
89
- #: ../lib/hammer_cli_katello.rb:119
89
+ #: ../lib/hammer_cli_katello.rb:123
90
90
  msgid "Manipulate ostree branches"
91
91
  msgstr ""
92
92
 
93
- #: ../lib/hammer_cli_katello.rb:124
93
+ #: ../lib/hammer_cli_katello.rb:128
94
94
  msgid "Manipulate files"
95
95
  msgstr ""
96
96
 
97
+ #: ../lib/hammer_cli_katello.rb:133
98
+ msgid "View Module Streams"
99
+ msgstr ""
100
+
97
101
  #: ../lib/hammer_cli_katello/activation_key.rb:14
98
102
  #: ../lib/hammer_cli_katello/activation_key.rb:56
99
- #: ../lib/hammer_cli_katello/activation_key.rb:68
100
- #: ../lib/hammer_cli_katello/activation_key.rb:144
101
- #: ../lib/hammer_cli_katello/activation_key.rb:224
103
+ #: ../lib/hammer_cli_katello/activation_key.rb:70
104
+ #: ../lib/hammer_cli_katello/activation_key.rb:146
105
+ #: ../lib/hammer_cli_katello/activation_key.rb:232
102
106
  #: ../lib/hammer_cli_katello/capsule.rb:16
103
107
  #: ../lib/hammer_cli_katello/capsule.rb:31
104
108
  #: ../lib/hammer_cli_katello/content_view.rb:30
@@ -109,60 +113,66 @@ msgstr ""
109
113
  #: ../lib/hammer_cli_katello/content_view.rb:67
110
114
  #: ../lib/hammer_cli_katello/content_view.rb:72
111
115
  #: ../lib/hammer_cli_katello/content_view.rb:78
112
- #: ../lib/hammer_cli_katello/content_view_version.rb:9
113
- #: ../lib/hammer_cli_katello/content_view_version.rb:29
114
- #: ../lib/hammer_cli_katello/content_view_version.rb:41
115
- #: ../lib/hammer_cli_katello/content_view_version.rb:47
116
- #: ../lib/hammer_cli_katello/content_view_version.rb:53
117
- #: ../lib/hammer_cli_katello/erratum.rb:7
118
- #: ../lib/hammer_cli_katello/erratum.rb:29 ../lib/hammer_cli_katello/file.rb:7
119
- #: ../lib/hammer_cli_katello/file.rb:33 ../lib/hammer_cli_katello/filter.rb:36
116
+ #: ../lib/hammer_cli_katello/content_view_version.rb:11
117
+ #: ../lib/hammer_cli_katello/content_view_version.rb:31
118
+ #: ../lib/hammer_cli_katello/content_view_version.rb:43
119
+ #: ../lib/hammer_cli_katello/content_view_version.rb:49
120
+ #: ../lib/hammer_cli_katello/content_view_version.rb:55
121
+ #: ../lib/hammer_cli_katello/erratum.rb:13
122
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:10
123
+ #: ../lib/hammer_cli_katello/file.rb:11 ../lib/hammer_cli_katello/file.rb:31
124
+ #: ../lib/hammer_cli_katello/filter.rb:36
120
125
  #: ../lib/hammer_cli_katello/filter.rb:42
121
126
  #: ../lib/hammer_cli_katello/gpg_key.rb:7
122
127
  #: ../lib/hammer_cli_katello/gpg_key.rb:16
123
128
  #: ../lib/hammer_cli_katello/gpg_key.rb:23
124
129
  #: ../lib/hammer_cli_katello/host_collection.rb:31
125
130
  #: ../lib/hammer_cli_katello/host_collection.rb:102
126
- #: ../lib/hammer_cli_katello/host_errata.rb:20
127
- #: ../lib/hammer_cli_katello/host_errata.rb:39
128
- #: ../lib/hammer_cli_katello/host_extensions.rb:37
129
- #: ../lib/hammer_cli_katello/host_extensions.rb:42
130
- #: ../lib/hammer_cli_katello/host_extensions.rb:47
131
- #: ../lib/hammer_cli_katello/host_extensions.rb:52
132
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:73
133
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:78
134
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:83
135
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:88
131
+ #: ../lib/hammer_cli_katello/host_errata.rb:22
132
+ #: ../lib/hammer_cli_katello/host_extensions.rb:40
133
+ #: ../lib/hammer_cli_katello/host_extensions.rb:45
134
+ #: ../lib/hammer_cli_katello/host_extensions.rb:50
135
+ #: ../lib/hammer_cli_katello/host_extensions.rb:55
136
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:51
137
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:56
138
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:61
139
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:66
136
140
  #: ../lib/hammer_cli_katello/lifecycle_environment.rb:32
137
141
  #: ../lib/hammer_cli_katello/lifecycle_environment.rb:60
138
- #: ../lib/hammer_cli_katello/ostree_branch.rb:7
139
- #: ../lib/hammer_cli_katello/ostree_branch.rb:19
142
+ #: ../lib/hammer_cli_katello/module_stream.rb:13
143
+ #: ../lib/hammer_cli_katello/module_stream.rb:33
144
+ #: ../lib/hammer_cli_katello/module_stream.rb:42
145
+ #: ../lib/hammer_cli_katello/module_stream.rb:48
146
+ #: ../lib/hammer_cli_katello/module_stream.rb:53
147
+ #: ../lib/hammer_cli_katello/module_stream.rb:56
148
+ #: ../lib/hammer_cli_katello/ostree_branch.rb:11
149
+ #: ../lib/hammer_cli_katello/ostree_branch.rb:23
140
150
  #: ../lib/hammer_cli_katello/package.rb:7
141
151
  #: ../lib/hammer_cli_katello/package.rb:45
142
- #: ../lib/hammer_cli_katello/package_group.rb:7
143
- #: ../lib/hammer_cli_katello/package_group.rb:25
152
+ #: ../lib/hammer_cli_katello/package_group.rb:11
153
+ #: ../lib/hammer_cli_katello/package_group.rb:29
144
154
  #: ../lib/hammer_cli_katello/product.rb:7
145
155
  #: ../lib/hammer_cli_katello/product.rb:31
146
156
  #: ../lib/hammer_cli_katello/product_content.rb:10
147
- #: ../lib/hammer_cli_katello/puppet_module.rb:7
148
- #: ../lib/hammer_cli_katello/puppet_module.rb:21
149
- #: ../lib/hammer_cli_katello/repository.rb:24
150
- #: ../lib/hammer_cli_katello/repository.rb:50
151
- #: ../lib/hammer_cli_katello/repository.rb:57
152
- #: ../lib/hammer_cli_katello/repository_set.rb:7
153
- #: ../lib/hammer_cli_katello/repository_set.rb:19
154
- #: ../lib/hammer_cli_katello/repository_set.rb:27
157
+ #: ../lib/hammer_cli_katello/puppet_module.rb:11
158
+ #: ../lib/hammer_cli_katello/puppet_module.rb:25
159
+ #: ../lib/hammer_cli_katello/repository.rb:26
160
+ #: ../lib/hammer_cli_katello/repository.rb:55
161
+ #: ../lib/hammer_cli_katello/repository.rb:62
162
+ #: ../lib/hammer_cli_katello/repository_set.rb:21
163
+ #: ../lib/hammer_cli_katello/repository_set.rb:40
164
+ #: ../lib/hammer_cli_katello/repository_set.rb:48
155
165
  #: ../lib/hammer_cli_katello/subscription.rb:11
156
166
  #: ../lib/hammer_cli_katello/sync_plan.rb:7
157
- #: ../lib/hammer_cli_katello/sync_plan.rb:24
167
+ #: ../lib/hammer_cli_katello/sync_plan.rb:26
158
168
  msgid "ID"
159
169
  msgstr ""
160
170
 
161
171
  #: ../lib/hammer_cli_katello/activation_key.rb:15
162
172
  #: ../lib/hammer_cli_katello/activation_key.rb:55
163
- #: ../lib/hammer_cli_katello/activation_key.rb:69
164
- #: ../lib/hammer_cli_katello/activation_key.rb:145
165
- #: ../lib/hammer_cli_katello/activation_key.rb:225
173
+ #: ../lib/hammer_cli_katello/activation_key.rb:71
174
+ #: ../lib/hammer_cli_katello/activation_key.rb:147
175
+ #: ../lib/hammer_cli_katello/activation_key.rb:233
166
176
  #: ../lib/hammer_cli_katello/capsule.rb:17
167
177
  #: ../lib/hammer_cli_katello/capsule.rb:32
168
178
  #: ../lib/hammer_cli_katello/capsule.rb:146
@@ -177,12 +187,13 @@ msgstr ""
177
187
  #: ../lib/hammer_cli_katello/content_view.rb:79
178
188
  #: ../lib/hammer_cli_katello/content_view_component.rb:88
179
189
  #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:12
180
- #: ../lib/hammer_cli_katello/content_view_version.rb:10
181
- #: ../lib/hammer_cli_katello/content_view_version.rb:30
182
- #: ../lib/hammer_cli_katello/content_view_version.rb:42
183
- #: ../lib/hammer_cli_katello/content_view_version.rb:48
184
- #: ../lib/hammer_cli_katello/content_view_version.rb:54
185
- #: ../lib/hammer_cli_katello/file.rb:8 ../lib/hammer_cli_katello/file.rb:34
190
+ #: ../lib/hammer_cli_katello/content_view_version.rb:12
191
+ #: ../lib/hammer_cli_katello/content_view_version.rb:32
192
+ #: ../lib/hammer_cli_katello/content_view_version.rb:44
193
+ #: ../lib/hammer_cli_katello/content_view_version.rb:50
194
+ #: ../lib/hammer_cli_katello/content_view_version.rb:56
195
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:20
196
+ #: ../lib/hammer_cli_katello/file.rb:12 ../lib/hammer_cli_katello/file.rb:32
186
197
  #: ../lib/hammer_cli_katello/filter.rb:15
187
198
  #: ../lib/hammer_cli_katello/filter.rb:30
188
199
  #: ../lib/hammer_cli_katello/filter.rb:37
@@ -194,37 +205,41 @@ msgstr ""
194
205
  #: ../lib/hammer_cli_katello/gpg_key.rb:24
195
206
  #: ../lib/hammer_cli_katello/host_collection.rb:32
196
207
  #: ../lib/hammer_cli_katello/host_collection.rb:103
197
- #: ../lib/hammer_cli_katello/host_extensions.rb:38
198
- #: ../lib/hammer_cli_katello/host_extensions.rb:43
199
- #: ../lib/hammer_cli_katello/host_extensions.rb:48
200
- #: ../lib/hammer_cli_katello/host_extensions.rb:53
201
- #: ../lib/hammer_cli_katello/host_extensions.rb:86
202
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:74
203
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:79
204
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:84
205
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:89
208
+ #: ../lib/hammer_cli_katello/host_extensions.rb:41
209
+ #: ../lib/hammer_cli_katello/host_extensions.rb:46
210
+ #: ../lib/hammer_cli_katello/host_extensions.rb:51
211
+ #: ../lib/hammer_cli_katello/host_extensions.rb:56
212
+ #: ../lib/hammer_cli_katello/host_extensions.rb:89
213
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:52
214
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:57
215
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:62
216
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:67
206
217
  #: ../lib/hammer_cli_katello/lifecycle_environment.rb:33
207
218
  #: ../lib/hammer_cli_katello/lifecycle_environment.rb:61
208
- #: ../lib/hammer_cli_katello/ostree_branch.rb:8
209
- #: ../lib/hammer_cli_katello/ostree_branch.rb:20
219
+ #: ../lib/hammer_cli_katello/module_stream.rb:43
220
+ #: ../lib/hammer_cli_katello/module_stream.rb:49
221
+ #: ../lib/hammer_cli_katello/module_stream.rb:54
222
+ #: ../lib/hammer_cli_katello/module_stream.rb:57
223
+ #: ../lib/hammer_cli_katello/ostree_branch.rb:12
224
+ #: ../lib/hammer_cli_katello/ostree_branch.rb:24
210
225
  #: ../lib/hammer_cli_katello/package.rb:46
211
226
  #: ../lib/hammer_cli_katello/product.rb:8
212
227
  #: ../lib/hammer_cli_katello/product.rb:32
213
228
  #: ../lib/hammer_cli_katello/product_content.rb:11
214
- #: ../lib/hammer_cli_katello/puppet_module.rb:8
215
- #: ../lib/hammer_cli_katello/puppet_module.rb:22
216
- #: ../lib/hammer_cli_katello/puppet_module.rb:44
229
+ #: ../lib/hammer_cli_katello/puppet_module.rb:12
230
+ #: ../lib/hammer_cli_katello/puppet_module.rb:26
231
+ #: ../lib/hammer_cli_katello/puppet_module.rb:48
217
232
  #: ../lib/hammer_cli_katello/repository.rb:8
218
- #: ../lib/hammer_cli_katello/repository.rb:25
219
- #: ../lib/hammer_cli_katello/repository.rb:51
220
- #: ../lib/hammer_cli_katello/repository.rb:58
221
- #: ../lib/hammer_cli_katello/repository_set.rb:9
222
- #: ../lib/hammer_cli_katello/repository_set.rb:20
223
- #: ../lib/hammer_cli_katello/repository_set.rb:28
224
- #: ../lib/hammer_cli_katello/repository_set.rb:40
233
+ #: ../lib/hammer_cli_katello/repository.rb:27
234
+ #: ../lib/hammer_cli_katello/repository.rb:56
235
+ #: ../lib/hammer_cli_katello/repository.rb:63
236
+ #: ../lib/hammer_cli_katello/repository_set.rb:23
237
+ #: ../lib/hammer_cli_katello/repository_set.rb:41
238
+ #: ../lib/hammer_cli_katello/repository_set.rb:49
239
+ #: ../lib/hammer_cli_katello/repository_set.rb:64
225
240
  #: ../lib/hammer_cli_katello/subscription.rb:13
226
241
  #: ../lib/hammer_cli_katello/sync_plan.rb:8
227
- #: ../lib/hammer_cli_katello/sync_plan.rb:25
242
+ #: ../lib/hammer_cli_katello/sync_plan.rb:27
228
243
  msgid "Name"
229
244
  msgstr ""
230
245
 
@@ -234,23 +249,23 @@ msgid "Host Limit"
234
249
  msgstr ""
235
250
 
236
251
  #: ../lib/hammer_cli_katello/activation_key.rb:18
237
- #: ../lib/hammer_cli_katello/activation_key.rb:61
238
- #: ../lib/hammer_cli_katello/host_extensions.rb:27
239
- #: ../lib/hammer_cli_katello/host_extensions.rb:41
240
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:77
252
+ #: ../lib/hammer_cli_katello/activation_key.rb:63
253
+ #: ../lib/hammer_cli_katello/host_extensions.rb:30
254
+ #: ../lib/hammer_cli_katello/host_extensions.rb:44
255
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:55
241
256
  msgid "Lifecycle Environment"
242
257
  msgstr ""
243
258
 
244
259
  #: ../lib/hammer_cli_katello/activation_key.rb:21
245
- #: ../lib/hammer_cli_katello/activation_key.rb:64
246
- #: ../lib/hammer_cli_katello/host_extensions.rb:26
247
- #: ../lib/hammer_cli_katello/host_extensions.rb:36
248
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:72
260
+ #: ../lib/hammer_cli_katello/activation_key.rb:66
261
+ #: ../lib/hammer_cli_katello/host_extensions.rb:29
262
+ #: ../lib/hammer_cli_katello/host_extensions.rb:39
263
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:50
249
264
  msgid "Content View"
250
265
  msgstr ""
251
266
 
252
267
  #: ../lib/hammer_cli_katello/activation_key.rb:26
253
- #: ../lib/hammer_cli_katello/activation_key.rb:75
268
+ #: ../lib/hammer_cli_katello/activation_key.rb:77
254
269
  #: ../lib/hammer_cli_katello/subscription.rb:24
255
270
  msgid "Unlimited"
256
271
  msgstr ""
@@ -261,20 +276,19 @@ msgstr ""
261
276
 
262
277
  #: ../lib/hammer_cli_katello/activation_key.rb:57
263
278
  #: ../lib/hammer_cli_katello/content_view.rb:34
264
- #: ../lib/hammer_cli_katello/content_view_version.rb:32
265
- #: ../lib/hammer_cli_katello/erratum.rb:36
279
+ #: ../lib/hammer_cli_katello/content_view_version.rb:34
280
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:8
266
281
  #: ../lib/hammer_cli_katello/filter.rb:33
267
282
  #: ../lib/hammer_cli_katello/host_collection.rb:34
268
- #: ../lib/hammer_cli_katello/host_errata.rb:37
269
283
  #: ../lib/hammer_cli_katello/lifecycle_environment.rb:63
270
284
  #: ../lib/hammer_cli_katello/organization.rb:11
271
285
  #: ../lib/hammer_cli_katello/organization.rb:23
272
286
  #: ../lib/hammer_cli_katello/package.rb:57
273
- #: ../lib/hammer_cli_katello/package_group.rb:29
287
+ #: ../lib/hammer_cli_katello/package_group.rb:33
274
288
  #: ../lib/hammer_cli_katello/product.rb:9
275
289
  #: ../lib/hammer_cli_katello/product.rb:34
276
- #: ../lib/hammer_cli_katello/puppet_module.rb:28
277
- #: ../lib/hammer_cli_katello/sync_plan.rb:19
290
+ #: ../lib/hammer_cli_katello/puppet_module.rb:32
291
+ #: ../lib/hammer_cli_katello/sync_plan.rb:21
278
292
  msgid "Description"
279
293
  msgstr ""
280
294
 
@@ -282,61 +296,71 @@ msgstr ""
282
296
  msgid "Auto Attach"
283
297
  msgstr ""
284
298
 
285
- #: ../lib/hammer_cli_katello/activation_key.rb:67
286
- #: ../lib/hammer_cli_katello/host_extensions.rb:84
299
+ #: ../lib/hammer_cli_katello/activation_key.rb:60
300
+ #: ../lib/hammer_cli_katello/host_extensions.rb:76
301
+ msgid "Service Level"
302
+ msgstr ""
303
+
304
+ #: ../lib/hammer_cli_katello/activation_key.rb:61
305
+ #: ../lib/hammer_cli_katello/host_extensions.rb:77
306
+ msgid "Release Version"
307
+ msgstr ""
308
+
309
+ #: ../lib/hammer_cli_katello/activation_key.rb:69
310
+ #: ../lib/hammer_cli_katello/host_extensions.rb:87
287
311
  msgid "Host Collections"
288
312
  msgstr ""
289
313
 
290
- #: ../lib/hammer_cli_katello/activation_key.rb:86
291
- msgid "Activation key created"
314
+ #: ../lib/hammer_cli_katello/activation_key.rb:88
315
+ msgid "Activation key created."
292
316
  msgstr ""
293
317
 
294
- #: ../lib/hammer_cli_katello/activation_key.rb:87
318
+ #: ../lib/hammer_cli_katello/activation_key.rb:89
295
319
  msgid "Could not create the activation key"
296
320
  msgstr ""
297
321
 
298
- #: ../lib/hammer_cli_katello/activation_key.rb:103
322
+ #: ../lib/hammer_cli_katello/activation_key.rb:105
299
323
  msgid "Copy an activation key"
300
324
  msgstr ""
301
325
 
302
- #: ../lib/hammer_cli_katello/activation_key.rb:108
303
- msgid "Activation key copied"
326
+ #: ../lib/hammer_cli_katello/activation_key.rb:110
327
+ msgid "Activation key copied."
304
328
  msgstr ""
305
329
 
306
- #: ../lib/hammer_cli_katello/activation_key.rb:109
330
+ #: ../lib/hammer_cli_katello/activation_key.rb:111
307
331
  msgid "Could not copy the activation key"
308
332
  msgstr ""
309
333
 
310
- #: ../lib/hammer_cli_katello/activation_key.rb:116
311
- msgid "Activation key updated"
334
+ #: ../lib/hammer_cli_katello/activation_key.rb:118
335
+ msgid "Activation key updated."
312
336
  msgstr ""
313
337
 
314
- #: ../lib/hammer_cli_katello/activation_key.rb:117
338
+ #: ../lib/hammer_cli_katello/activation_key.rb:119
315
339
  msgid "Could not update the activation key"
316
340
  msgstr ""
317
341
 
318
- #: ../lib/hammer_cli_katello/activation_key.rb:132
319
- msgid "Activation key deleted"
342
+ #: ../lib/hammer_cli_katello/activation_key.rb:134
343
+ msgid "Activation key deleted."
320
344
  msgstr ""
321
345
 
322
- #: ../lib/hammer_cli_katello/activation_key.rb:133
346
+ #: ../lib/hammer_cli_katello/activation_key.rb:135
323
347
  msgid "Could not delete the activation key"
324
348
  msgstr ""
325
349
 
326
- #: ../lib/hammer_cli_katello/activation_key.rb:140
350
+ #: ../lib/hammer_cli_katello/activation_key.rb:142
327
351
  msgid "List associated subscriptions"
328
352
  msgstr ""
329
353
 
330
- #: ../lib/hammer_cli_katello/activation_key.rb:146
354
+ #: ../lib/hammer_cli_katello/activation_key.rb:148
331
355
  msgid "Attached"
332
356
  msgstr ""
333
357
 
334
- #: ../lib/hammer_cli_katello/activation_key.rb:147
358
+ #: ../lib/hammer_cli_katello/activation_key.rb:149
335
359
  #: ../lib/hammer_cli_katello/subscription.rb:19
336
360
  msgid "Quantity"
337
361
  msgstr ""
338
362
 
339
- #: ../lib/hammer_cli_katello/activation_key.rb:148
363
+ #: ../lib/hammer_cli_katello/activation_key.rb:150
340
364
  #: ../lib/hammer_cli_katello/filter.rb:48
341
365
  #: ../lib/hammer_cli_katello/filter_rule.rb:20
342
366
  #: ../lib/hammer_cli_katello/filter_rule.rb:40
@@ -344,7 +368,7 @@ msgstr ""
344
368
  msgid "Start Date"
345
369
  msgstr ""
346
370
 
347
- #: ../lib/hammer_cli_katello/activation_key.rb:149
371
+ #: ../lib/hammer_cli_katello/activation_key.rb:151
348
372
  #: ../lib/hammer_cli_katello/filter.rb:49
349
373
  #: ../lib/hammer_cli_katello/filter_rule.rb:21
350
374
  #: ../lib/hammer_cli_katello/filter_rule.rb:41
@@ -352,114 +376,120 @@ msgstr ""
352
376
  msgid "End Date"
353
377
  msgstr ""
354
378
 
355
- #: ../lib/hammer_cli_katello/activation_key.rb:150
379
+ #: ../lib/hammer_cli_katello/activation_key.rb:152
356
380
  #: ../lib/hammer_cli_katello/subscription.rb:17
357
381
  msgid "Support"
358
382
  msgstr ""
359
383
 
360
- #: ../lib/hammer_cli_katello/activation_key.rb:151
384
+ #: ../lib/hammer_cli_katello/activation_key.rb:153
361
385
  #: ../lib/hammer_cli_katello/subscription.rb:15
362
386
  msgid "Contract"
363
387
  msgstr ""
364
388
 
365
- #: ../lib/hammer_cli_katello/activation_key.rb:152
389
+ #: ../lib/hammer_cli_katello/activation_key.rb:154
366
390
  #: ../lib/hammer_cli_katello/subscription.rb:16
367
391
  msgid "Account"
368
392
  msgstr ""
369
393
 
370
- #: ../lib/hammer_cli_katello/activation_key.rb:155
394
+ #: ../lib/hammer_cli_katello/activation_key.rb:158
395
+ msgid ""
396
+ "#{data['consumed']} out of #{data['quantity'] == -1 ? 'Unlimited' : data['quan"
397
+ "tity']}"
398
+ msgstr ""
399
+
400
+ #: ../lib/hammer_cli_katello/activation_key.rb:163
371
401
  msgid "ID of the activation key"
372
402
  msgstr ""
373
403
 
374
- #: ../lib/hammer_cli_katello/activation_key.rb:157
404
+ #: ../lib/hammer_cli_katello/activation_key.rb:165
375
405
  #: ../lib/hammer_cli_katello/id_resolver.rb:6
376
406
  msgid "Activation key name to search by"
377
407
  msgstr ""
378
408
 
379
- #: ../lib/hammer_cli_katello/activation_key.rb:173
380
- #: ../lib/hammer_cli_katello/activation_key.rb:191
409
+ #: ../lib/hammer_cli_katello/activation_key.rb:181
410
+ #: ../lib/hammer_cli_katello/activation_key.rb:199
381
411
  #: ../lib/hammer_cli_katello/host_subscription.rb:39
382
412
  #: ../lib/hammer_cli_katello/host_subscription.rb:77
383
413
  msgid "ID of subscription"
384
414
  msgstr ""
385
415
 
386
- #: ../lib/hammer_cli_katello/activation_key.rb:181
387
- msgid "Subscription added to activation key"
416
+ #: ../lib/hammer_cli_katello/activation_key.rb:189
417
+ msgid "Subscription added to activation key."
388
418
  msgstr ""
389
419
 
390
- #: ../lib/hammer_cli_katello/activation_key.rb:182
420
+ #: ../lib/hammer_cli_katello/activation_key.rb:190
391
421
  msgid "Could not add subscription to activation key"
392
422
  msgstr ""
393
423
 
394
- #: ../lib/hammer_cli_katello/activation_key.rb:188
424
+ #: ../lib/hammer_cli_katello/activation_key.rb:196
395
425
  msgid "Remove subscription"
396
426
  msgstr ""
397
427
 
398
- #: ../lib/hammer_cli_katello/activation_key.rb:199
399
- msgid "Subscription removed from activation key"
428
+ #: ../lib/hammer_cli_katello/activation_key.rb:207
429
+ msgid "Subscription removed from activation key."
400
430
  msgstr ""
401
431
 
402
- #: ../lib/hammer_cli_katello/activation_key.rb:200
432
+ #: ../lib/hammer_cli_katello/activation_key.rb:208
403
433
  msgid "Could not remove subscription from activation key"
404
434
  msgstr ""
405
435
 
406
- #: ../lib/hammer_cli_katello/activation_key.rb:220
436
+ #: ../lib/hammer_cli_katello/activation_key.rb:228
407
437
  msgid "List associated host collections"
408
438
  msgstr ""
409
439
 
410
- #: ../lib/hammer_cli_katello/activation_key.rb:228
440
+ #: ../lib/hammer_cli_katello/activation_key.rb:236
411
441
  msgid "ID of activation key"
412
442
  msgstr ""
413
443
 
414
- #: ../lib/hammer_cli_katello/activation_key.rb:230
444
+ #: ../lib/hammer_cli_katello/activation_key.rb:238
415
445
  msgid "Name of activation key"
416
446
  msgstr ""
417
447
 
418
- #: ../lib/hammer_cli_katello/associating_commands.rb:36
419
- msgid "The repository has been associated"
448
+ #: ../lib/hammer_cli_katello/associating_commands.rb:38
449
+ msgid "The repository has been associated."
420
450
  msgstr ""
421
451
 
422
- #: ../lib/hammer_cli_katello/associating_commands.rb:37
452
+ #: ../lib/hammer_cli_katello/associating_commands.rb:39
423
453
  msgid "Could not add repository"
424
454
  msgstr ""
425
455
 
426
- #: ../lib/hammer_cli_katello/associating_commands.rb:52
427
- msgid "The repository has been removed"
456
+ #: ../lib/hammer_cli_katello/associating_commands.rb:56
457
+ msgid "The repository has been removed."
428
458
  msgstr ""
429
459
 
430
- #: ../lib/hammer_cli_katello/associating_commands.rb:53
460
+ #: ../lib/hammer_cli_katello/associating_commands.rb:57
431
461
  msgid "Could not remove repository"
432
462
  msgstr ""
433
463
 
434
- #: ../lib/hammer_cli_katello/associating_commands.rb:64
435
- msgid "The host collection has been associated"
464
+ #: ../lib/hammer_cli_katello/associating_commands.rb:68
465
+ msgid "The host collection has been associated."
436
466
  msgstr ""
437
467
 
438
- #: ../lib/hammer_cli_katello/associating_commands.rb:65
468
+ #: ../lib/hammer_cli_katello/associating_commands.rb:69
439
469
  msgid "Could not add host collection"
440
470
  msgstr ""
441
471
 
442
- #: ../lib/hammer_cli_katello/associating_commands.rb:72
443
- msgid "The host collection has been removed"
472
+ #: ../lib/hammer_cli_katello/associating_commands.rb:76
473
+ msgid "The host collection has been removed."
444
474
  msgstr ""
445
475
 
446
- #: ../lib/hammer_cli_katello/associating_commands.rb:73
476
+ #: ../lib/hammer_cli_katello/associating_commands.rb:77
447
477
  msgid "Could not remove host collection"
448
478
  msgstr ""
449
479
 
450
- #: ../lib/hammer_cli_katello/associating_commands.rb:84
451
- msgid "The host has been added"
480
+ #: ../lib/hammer_cli_katello/associating_commands.rb:88
481
+ msgid "The host has been added."
452
482
  msgstr ""
453
483
 
454
- #: ../lib/hammer_cli_katello/associating_commands.rb:85
484
+ #: ../lib/hammer_cli_katello/associating_commands.rb:89
455
485
  msgid "Could not add host"
456
486
  msgstr ""
457
487
 
458
- #: ../lib/hammer_cli_katello/associating_commands.rb:92
459
- msgid "The host has been removed"
488
+ #: ../lib/hammer_cli_katello/associating_commands.rb:96
489
+ msgid "The host has been removed."
460
490
  msgstr ""
461
491
 
462
- #: ../lib/hammer_cli_katello/associating_commands.rb:93
492
+ #: ../lib/hammer_cli_katello/associating_commands.rb:97
463
493
  msgid "Could not remove host"
464
494
  msgstr ""
465
495
 
@@ -475,12 +505,12 @@ msgstr ""
475
505
  #: ../lib/hammer_cli_katello/lifecycle_environment.rb:65
476
506
  #: ../lib/hammer_cli_katello/product.rb:12
477
507
  #: ../lib/hammer_cli_katello/product.rb:50
478
- #: ../lib/hammer_cli_katello/repository.rb:28
508
+ #: ../lib/hammer_cli_katello/repository.rb:30
479
509
  msgid "Organization"
480
510
  msgstr ""
481
511
 
482
512
  #: ../lib/hammer_cli_katello/capsule.rb:46
483
- msgid "Lifecycle environment successfully added to the capsule"
513
+ msgid "Lifecycle environment successfully added to the capsule."
484
514
  msgstr ""
485
515
 
486
516
  #: ../lib/hammer_cli_katello/capsule.rb:47
@@ -500,7 +530,7 @@ msgid "Organization name"
500
530
  msgstr ""
501
531
 
502
532
  #: ../lib/hammer_cli_katello/capsule.rb:61
503
- msgid "Lifecycle environment successfully removed from the capsule"
533
+ msgid "Lifecycle environment successfully removed from the capsule."
504
534
  msgstr ""
505
535
 
506
536
  #: ../lib/hammer_cli_katello/capsule.rb:62
@@ -508,7 +538,7 @@ msgid "Could not remove the lifecycle environment from the capsule"
508
538
  msgstr ""
509
539
 
510
540
  #: ../lib/hammer_cli_katello/capsule.rb:77
511
- msgid "Capsule content is being synchronized in task %{id}"
541
+ msgid "Capsule content is being synchronized in task %{id}."
512
542
  msgstr ""
513
543
 
514
544
  #: ../lib/hammer_cli_katello/capsule.rb:78
@@ -520,12 +550,12 @@ msgid "Last sync"
520
550
  msgstr ""
521
551
 
522
552
  #: ../lib/hammer_cli_katello/capsule.rb:93
523
- #: ../lib/hammer_cli_katello/host_errata.rb:38
553
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:9
524
554
  #: ../lib/hammer_cli_katello/ping.rb:9 ../lib/hammer_cli_katello/ping.rb:16
525
555
  #: ../lib/hammer_cli_katello/ping.rb:23 ../lib/hammer_cli_katello/ping.rb:30
526
556
  #: ../lib/hammer_cli_katello/ping.rb:37
527
- #: ../lib/hammer_cli_katello/repository.rb:63
528
- #: ../lib/hammer_cli_katello/subscription.rb:98
557
+ #: ../lib/hammer_cli_katello/repository.rb:68
558
+ #: ../lib/hammer_cli_katello/subscription.rb:100
529
559
  msgid "Status"
530
560
  msgstr ""
531
561
 
@@ -560,8 +590,8 @@ msgstr ""
560
590
 
561
591
  #: ../lib/hammer_cli_katello/capsule.rb:145
562
592
  #: ../lib/hammer_cli_katello/content_view.rb:66
563
- #: ../lib/hammer_cli_katello/content_view_version.rb:12
564
- #: ../lib/hammer_cli_katello/content_view_version.rb:40
593
+ #: ../lib/hammer_cli_katello/content_view_version.rb:14
594
+ #: ../lib/hammer_cli_katello/content_view_version.rb:42
565
595
  msgid "Lifecycle Environments"
566
596
  msgstr ""
567
597
 
@@ -591,7 +621,7 @@ msgid "Hosts"
591
621
  msgstr ""
592
622
 
593
623
  #: ../lib/hammer_cli_katello/capsule.rb:155
594
- #: ../lib/hammer_cli_katello/sync_plan.rb:23
624
+ #: ../lib/hammer_cli_katello/sync_plan.rb:25
595
625
  msgid "Products"
596
626
  msgstr ""
597
627
 
@@ -600,12 +630,13 @@ msgid "Yum repos"
600
630
  msgstr ""
601
631
 
602
632
  #: ../lib/hammer_cli_katello/capsule.rb:157
603
- msgid "Docker repos"
633
+ msgid "Container Image repos"
604
634
  msgstr ""
605
635
 
606
636
  #: ../lib/hammer_cli_katello/capsule.rb:158
607
- #: ../lib/hammer_cli_katello/host_errata.rb:46
608
- #: ../lib/hammer_cli_katello/repository.rb:71
637
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:17
638
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:22
639
+ #: ../lib/hammer_cli_katello/repository.rb:76
609
640
  msgid "Packages"
610
641
  msgstr ""
611
642
 
@@ -614,7 +645,7 @@ msgid "Package groups"
614
645
  msgstr ""
615
646
 
616
647
  #: ../lib/hammer_cli_katello/capsule.rb:160
617
- #: ../lib/hammer_cli_katello/repository.rb:74
648
+ #: ../lib/hammer_cli_katello/repository.rb:79
618
649
  msgid "Errata"
619
650
  msgstr ""
620
651
 
@@ -631,7 +662,7 @@ msgid "Override product content defaults"
631
662
  msgstr ""
632
663
 
633
664
  #: ../lib/hammer_cli_katello/content_override.rb:8
634
- msgid "Updated content override"
665
+ msgid "Updated content override."
635
666
  msgstr ""
636
667
 
637
668
  #: ../lib/hammer_cli_katello/content_override.rb:9
@@ -658,7 +689,7 @@ msgid "Remove a content override"
658
689
  msgstr ""
659
690
 
660
691
  #: ../lib/hammer_cli_katello/content_view.rb:15
661
- #: ../lib/hammer_cli_katello/content_view_version.rb:35
692
+ #: ../lib/hammer_cli_katello/content_view_version.rb:37
662
693
  msgid "Content View ID"
663
694
  msgstr ""
664
695
 
@@ -667,16 +698,17 @@ msgstr ""
667
698
  #: ../lib/hammer_cli_katello/content_view.rb:44
668
699
  #: ../lib/hammer_cli_katello/content_view.rb:50
669
700
  #: ../lib/hammer_cli_katello/content_view.rb:56
670
- #: ../lib/hammer_cli_katello/content_view_version.rb:43
671
- #: ../lib/hammer_cli_katello/content_view_version.rb:49
701
+ #: ../lib/hammer_cli_katello/content_view_version.rb:45
702
+ #: ../lib/hammer_cli_katello/content_view_version.rb:51
672
703
  #: ../lib/hammer_cli_katello/filter.rb:38
673
704
  #: ../lib/hammer_cli_katello/lifecycle_environment.rb:62
705
+ #: ../lib/hammer_cli_katello/module_stream.rb:44
674
706
  #: ../lib/hammer_cli_katello/organization.rb:10
675
707
  #: ../lib/hammer_cli_katello/organization.rb:22
676
708
  #: ../lib/hammer_cli_katello/product.rb:33
677
709
  #: ../lib/hammer_cli_katello/product_content.rb:15
678
- #: ../lib/hammer_cli_katello/repository.rb:26
679
- #: ../lib/hammer_cli_katello/repository_set.rb:24
710
+ #: ../lib/hammer_cli_katello/repository.rb:28
711
+ #: ../lib/hammer_cli_katello/repository_set.rb:45
680
712
  msgid "Label"
681
713
  msgstr ""
682
714
 
@@ -693,7 +725,7 @@ msgid "Yum Repositories"
693
725
  msgstr ""
694
726
 
695
727
  #: ../lib/hammer_cli_katello/content_view.rb:47
696
- msgid "Docker Repositories"
728
+ msgid "Container Image Repositories"
697
729
  msgstr ""
698
730
 
699
731
  #: ../lib/hammer_cli_katello/content_view.rb:53
@@ -701,27 +733,29 @@ msgid "OSTree Repositories"
701
733
  msgstr ""
702
734
 
703
735
  #: ../lib/hammer_cli_katello/content_view.rb:59
704
- #: ../lib/hammer_cli_katello/content_view_version.rb:52
705
- #: ../lib/hammer_cli_katello/repository.rb:75
736
+ #: ../lib/hammer_cli_katello/content_view_version.rb:54
737
+ #: ../lib/hammer_cli_katello/repository.rb:80
706
738
  msgid "Puppet Modules"
707
739
  msgstr ""
708
740
 
709
741
  #: ../lib/hammer_cli_katello/content_view.rb:61
710
742
  #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:11
711
- #: ../lib/hammer_cli_katello/file.rb:36
712
- #: ../lib/hammer_cli_katello/host_extensions.rb:71
713
- #: ../lib/hammer_cli_katello/package_group.rb:10
714
- #: ../lib/hammer_cli_katello/package_group.rb:28
743
+ #: ../lib/hammer_cli_katello/file.rb:34
744
+ #: ../lib/hammer_cli_katello/host_extensions.rb:74
745
+ #: ../lib/hammer_cli_katello/module_stream.rb:16
746
+ #: ../lib/hammer_cli_katello/module_stream.rb:36
747
+ #: ../lib/hammer_cli_katello/package_group.rb:14
748
+ #: ../lib/hammer_cli_katello/package_group.rb:32
715
749
  #: ../lib/hammer_cli_katello/subscription.rb:12
716
750
  msgid "UUID"
717
751
  msgstr ""
718
752
 
719
753
  #: ../lib/hammer_cli_katello/content_view.rb:63
720
754
  #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:13
721
- #: ../lib/hammer_cli_katello/content_view_version.rb:55
755
+ #: ../lib/hammer_cli_katello/content_view_version.rb:57
722
756
  #: ../lib/hammer_cli_katello/package.rb:51
723
- #: ../lib/hammer_cli_katello/puppet_module.rb:9
724
- #: ../lib/hammer_cli_katello/puppet_module.rb:24
757
+ #: ../lib/hammer_cli_katello/puppet_module.rb:13
758
+ #: ../lib/hammer_cli_katello/puppet_module.rb:28
725
759
  msgid "Author"
726
760
  msgstr ""
727
761
 
@@ -732,17 +766,19 @@ msgstr ""
732
766
  #: ../lib/hammer_cli_katello/content_view.rb:73
733
767
  #: ../lib/hammer_cli_katello/content_view_component.rb:89
734
768
  #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:14
735
- #: ../lib/hammer_cli_katello/content_view_version.rb:11
736
- #: ../lib/hammer_cli_katello/content_view_version.rb:31
737
- #: ../lib/hammer_cli_katello/content_view_version.rb:56
769
+ #: ../lib/hammer_cli_katello/content_view_version.rb:13
770
+ #: ../lib/hammer_cli_katello/content_view_version.rb:33
771
+ #: ../lib/hammer_cli_katello/content_view_version.rb:58
772
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:7
738
773
  #: ../lib/hammer_cli_katello/filter.rb:44
739
774
  #: ../lib/hammer_cli_katello/filter_rule.rb:15
740
775
  #: ../lib/hammer_cli_katello/filter_rule.rb:35
741
- #: ../lib/hammer_cli_katello/host_errata.rb:36
742
- #: ../lib/hammer_cli_katello/ostree_branch.rb:21
776
+ #: ../lib/hammer_cli_katello/module_stream.rb:17
777
+ #: ../lib/hammer_cli_katello/module_stream.rb:37
778
+ #: ../lib/hammer_cli_katello/ostree_branch.rb:25
743
779
  #: ../lib/hammer_cli_katello/package.rb:47
744
- #: ../lib/hammer_cli_katello/puppet_module.rb:10
745
- #: ../lib/hammer_cli_katello/puppet_module.rb:23
780
+ #: ../lib/hammer_cli_katello/puppet_module.rb:14
781
+ #: ../lib/hammer_cli_katello/puppet_module.rb:27
746
782
  msgid "Version"
747
783
  msgstr ""
748
784
 
@@ -759,7 +795,7 @@ msgid "Activation Keys"
759
795
  msgstr ""
760
796
 
761
797
  #: ../lib/hammer_cli_katello/content_view.rb:101
762
- msgid "Content view created"
798
+ msgid "Content view created."
763
799
  msgstr ""
764
800
 
765
801
  #: ../lib/hammer_cli_katello/content_view.rb:102
@@ -784,7 +820,7 @@ msgid "New content view name"
784
820
  msgstr ""
785
821
 
786
822
  #: ../lib/hammer_cli_katello/content_view.rb:158
787
- msgid "Content view copied"
823
+ msgid "Content view copied."
788
824
  msgstr ""
789
825
 
790
826
  #: ../lib/hammer_cli_katello/content_view.rb:159
@@ -792,7 +828,7 @@ msgid "Could not copy the content view"
792
828
  msgstr ""
793
829
 
794
830
  #: ../lib/hammer_cli_katello/content_view.rb:165
795
- msgid "Content view updated"
831
+ msgid "Content view updated."
796
832
  msgstr ""
797
833
 
798
834
  #: ../lib/hammer_cli_katello/content_view.rb:166
@@ -800,17 +836,17 @@ msgid "Could not update the content view"
800
836
  msgstr ""
801
837
 
802
838
  #: ../lib/hammer_cli_katello/content_view.rb:187
803
- #: ../lib/hammer_cli_katello/content_view_version.rb:132
804
- msgid "Content view is being deleted with task %{id}"
839
+ #: ../lib/hammer_cli_katello/content_view_version.rb:134
840
+ msgid "Content view is being deleted with task %{id}."
805
841
  msgstr ""
806
842
 
807
843
  #: ../lib/hammer_cli_katello/content_view.rb:188
808
- #: ../lib/hammer_cli_katello/content_view_version.rb:133
844
+ #: ../lib/hammer_cli_katello/content_view_version.rb:135
809
845
  msgid "Could not delete the content view"
810
846
  msgstr ""
811
847
 
812
848
  #: ../lib/hammer_cli_katello/content_view.rb:209
813
- msgid "Content view is being published with task %{id}"
849
+ msgid "Content view is being published with task %{id}."
814
850
  msgstr ""
815
851
 
816
852
  #: ../lib/hammer_cli_katello/content_view.rb:210
@@ -818,7 +854,7 @@ msgid "Could not publish the content view"
818
854
  msgstr ""
819
855
 
820
856
  #: ../lib/hammer_cli_katello/content_view.rb:224
821
- msgid "Content view is being removed from environment with task %{id}"
857
+ msgid "Content view is being removed from environment with task %{id}."
822
858
  msgstr ""
823
859
 
824
860
  #: ../lib/hammer_cli_katello/content_view.rb:225
@@ -833,35 +869,35 @@ msgstr ""
833
869
  msgid "Environment ids to remove"
834
870
  msgstr ""
835
871
 
836
- #: ../lib/hammer_cli_katello/content_view.rb:273
837
- msgid "Content view objects are being removed task %{id}"
872
+ #: ../lib/hammer_cli_katello/content_view.rb:276
873
+ msgid "Content view objects are being removed task %{id}."
838
874
  msgstr ""
839
875
 
840
- #: ../lib/hammer_cli_katello/content_view.rb:274
876
+ #: ../lib/hammer_cli_katello/content_view.rb:277
841
877
  msgid "Could not remove objects from content view"
842
878
  msgstr ""
843
879
 
844
- #: ../lib/hammer_cli_katello/content_view.rb:283
880
+ #: ../lib/hammer_cli_katello/content_view.rb:286
845
881
  msgid "Add a content view version to a composite view"
846
882
  msgstr ""
847
883
 
848
- #: ../lib/hammer_cli_katello/content_view.rb:310
849
- msgid "The component version has been added"
884
+ #: ../lib/hammer_cli_katello/content_view.rb:313
885
+ msgid "The component version has been added."
850
886
  msgstr ""
851
887
 
852
- #: ../lib/hammer_cli_katello/content_view.rb:311
888
+ #: ../lib/hammer_cli_katello/content_view.rb:314
853
889
  msgid "Could not add version"
854
890
  msgstr ""
855
891
 
856
- #: ../lib/hammer_cli_katello/content_view.rb:318
892
+ #: ../lib/hammer_cli_katello/content_view.rb:321
857
893
  msgid "Remove a content view version from a composite view"
858
894
  msgstr ""
859
895
 
860
- #: ../lib/hammer_cli_katello/content_view.rb:345
861
- msgid "The component version has been removed"
896
+ #: ../lib/hammer_cli_katello/content_view.rb:348
897
+ msgid "The component version has been removed."
862
898
  msgstr ""
863
899
 
864
- #: ../lib/hammer_cli_katello/content_view.rb:346
900
+ #: ../lib/hammer_cli_katello/content_view.rb:349
865
901
  msgid "Could not remove version"
866
902
  msgstr ""
867
903
 
@@ -898,8 +934,8 @@ msgid ""
898
934
  msgstr ""
899
935
 
900
936
  #: ../lib/hammer_cli_katello/content_view_component.rb:87
901
- #: ../lib/hammer_cli_katello/host_extensions.rb:85
902
- #: ../lib/hammer_cli_katello/puppet_module.rb:43
937
+ #: ../lib/hammer_cli_katello/host_extensions.rb:88
938
+ #: ../lib/hammer_cli_katello/puppet_module.rb:47
903
939
  #: ../lib/hammer_cli_katello/repository.rb:7
904
940
  msgid "Id"
905
941
  msgstr ""
@@ -921,7 +957,7 @@ msgid "No Published Version"
921
957
  msgstr ""
922
958
 
923
959
  #: ../lib/hammer_cli_katello/content_view_component.rb:131
924
- msgid "Component added to content view"
960
+ msgid "Component added to content view."
925
961
  msgstr ""
926
962
 
927
963
  #: ../lib/hammer_cli_katello/content_view_component.rb:132
@@ -929,7 +965,7 @@ msgid "Could not add the component"
929
965
  msgstr ""
930
966
 
931
967
  #: ../lib/hammer_cli_katello/content_view_component.rb:144
932
- msgid "Content view component updated"
968
+ msgid "Content view component updated."
933
969
  msgstr ""
934
970
 
935
971
  #: ../lib/hammer_cli_katello/content_view_component.rb:145
@@ -949,7 +985,7 @@ msgid ""
949
985
  msgstr ""
950
986
 
951
987
  #: ../lib/hammer_cli_katello/content_view_component.rb:190
952
- msgid "Components removed from content view"
988
+ msgid "Components removed from content view."
953
989
  msgstr ""
954
990
 
955
991
  #: ../lib/hammer_cli_katello/content_view_component.rb:191
@@ -961,207 +997,295 @@ msgid "Latest(Currently %s)"
961
997
  msgstr ""
962
998
 
963
999
  #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:34
964
- msgid "Puppet module added to content view"
1000
+ msgid "Puppet module added to content view."
965
1001
  msgstr ""
966
1002
 
967
1003
  #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:35
968
1004
  msgid "Could not add the puppet module"
969
1005
  msgstr ""
970
1006
 
971
- #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:53
972
- msgid "Puppet module removed from content view"
1007
+ #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:52
1008
+ msgid "Puppet module removed from content view."
973
1009
  msgstr ""
974
1010
 
975
- #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:54
1011
+ #: ../lib/hammer_cli_katello/content_view_puppet_module.rb:53
976
1012
  msgid "Couldn't remove puppet module from the content view"
977
1013
  msgstr ""
978
1014
 
979
- #: ../lib/hammer_cli_katello/content_view_purge.rb:9
1015
+ #: ../lib/hammer_cli_katello/content_view_purge.rb:10
980
1016
  msgid "Content View numeric identifier"
981
1017
  msgstr ""
982
1018
 
983
- #: ../lib/hammer_cli_katello/content_view_purge.rb:10
1019
+ #: ../lib/hammer_cli_katello/content_view_purge.rb:11
984
1020
  msgid "Content View name"
985
1021
  msgstr ""
986
1022
 
987
- #: ../lib/hammer_cli_katello/content_view_purge.rb:11
1023
+ #: ../lib/hammer_cli_katello/content_view_purge.rb:12
988
1024
  msgid "count of unused versions to keep"
989
1025
  msgstr ""
990
1026
 
991
- #: ../lib/hammer_cli_katello/content_view_purge.rb:57
1027
+ #: ../lib/hammer_cli_katello/content_view_purge.rb:53
992
1028
  msgid "Invalid value for --count option: value must be 0 or greater."
993
1029
  msgstr ""
994
1030
 
995
- #: ../lib/hammer_cli_katello/content_view_purge.rb:63
1031
+ #: ../lib/hammer_cli_katello/content_view_purge.rb:59
996
1032
  msgid "No versions to delete."
997
1033
  msgstr ""
998
1034
 
999
- #: ../lib/hammer_cli_katello/content_view_purge.rb:78
1035
+ #: ../lib/hammer_cli_katello/content_view_purge.rb:74
1000
1036
  msgid ""
1001
1037
  "Version '%{version}' of content view '%{view}' scheduled for deletion in task "
1002
1038
  "'%{task_id}'."
1003
1039
  msgstr ""
1004
1040
 
1005
- #: ../lib/hammer_cli_katello/content_view_purge.rb:83
1041
+ #: ../lib/hammer_cli_katello/content_view_purge.rb:79
1006
1042
  msgid "Version '%{version}' of content view '%{view}' deleted."
1007
1043
  msgstr ""
1008
1044
 
1009
- #: ../lib/hammer_cli_katello/content_view_version.rb:36
1045
+ #: ../lib/hammer_cli_katello/content_view_version.rb:38
1010
1046
  msgid "Content View Name"
1011
1047
  msgstr ""
1012
1048
 
1013
- #: ../lib/hammer_cli_katello/content_view_version.rb:37
1049
+ #: ../lib/hammer_cli_katello/content_view_version.rb:39
1014
1050
  msgid "Content View Label"
1015
1051
  msgstr ""
1016
1052
 
1017
- #: ../lib/hammer_cli_katello/content_view_version.rb:46
1053
+ #: ../lib/hammer_cli_katello/content_view_version.rb:48
1018
1054
  #: ../lib/hammer_cli_katello/filter.rb:35
1055
+ #: ../lib/hammer_cli_katello/module_stream.rb:41
1019
1056
  #: ../lib/hammer_cli_katello/product.rb:15
1020
- #: ../lib/hammer_cli_katello/puppet_module.rb:42
1057
+ #: ../lib/hammer_cli_katello/puppet_module.rb:46
1021
1058
  msgid "Repositories"
1022
1059
  msgstr ""
1023
1060
 
1024
- #: ../lib/hammer_cli_katello/content_view_version.rb:71
1025
- msgid "Content View Version is being republished with task %{id}"
1061
+ #: ../lib/hammer_cli_katello/content_view_version.rb:73
1062
+ msgid "Content View Version is being republished with task %{id}."
1026
1063
  msgstr ""
1027
1064
 
1028
- #: ../lib/hammer_cli_katello/content_view_version.rb:72
1065
+ #: ../lib/hammer_cli_katello/content_view_version.rb:74
1029
1066
  msgid "Could not republish the Content View"
1030
1067
  msgstr ""
1031
1068
 
1032
- #: ../lib/hammer_cli_katello/content_view_version.rb:84
1033
- msgid "Content view is being promoted with task %{id}"
1069
+ #: ../lib/hammer_cli_katello/content_view_version.rb:86
1070
+ msgid "Content view is being promoted with task %{id}."
1034
1071
  msgstr ""
1035
1072
 
1036
- #: ../lib/hammer_cli_katello/content_view_version.rb:85
1073
+ #: ../lib/hammer_cli_katello/content_view_version.rb:87
1037
1074
  msgid "Could not promote the content view"
1038
1075
  msgstr ""
1039
1076
 
1040
- #: ../lib/hammer_cli_katello/content_view_version.rb:89
1077
+ #: ../lib/hammer_cli_katello/content_view_version.rb:91
1041
1078
  msgid "force content view promotion and bypass lifecycle environment restriction"
1042
1079
  msgstr ""
1043
1080
 
1044
- #: ../lib/hammer_cli_katello/content_view_version.rb:92
1081
+ #: ../lib/hammer_cli_katello/content_view_version.rb:94
1045
1082
  msgid "Name of the target environment"
1046
1083
  msgstr ""
1047
1084
 
1048
- #: ../lib/hammer_cli_katello/content_view_version.rb:94
1085
+ #: ../lib/hammer_cli_katello/content_view_version.rb:96
1049
1086
  msgid "Id of the target environment"
1050
1087
  msgstr ""
1051
1088
 
1052
- #: ../lib/hammer_cli_katello/content_view_version.rb:96
1089
+ #: ../lib/hammer_cli_katello/content_view_version.rb:98
1053
1090
  msgid ""
1054
1091
  "Environment name from where to promote its version from (if version is unknown"
1055
1092
  ")"
1056
1093
  msgstr ""
1057
1094
 
1058
- #: ../lib/hammer_cli_katello/content_view_version.rb:99
1095
+ #: ../lib/hammer_cli_katello/content_view_version.rb:101
1059
1096
  msgid "Id of the environment from where to promote its version "
1060
1097
  msgstr ""
1061
1098
 
1062
- #: ../lib/hammer_cli_katello/content_view_version.rb:146
1063
- msgid "Incremental update is being performed with task %{id}"
1099
+ #: ../lib/hammer_cli_katello/content_view_version.rb:148
1100
+ msgid "Incremental update is being performed with task %{id}."
1064
1101
  msgstr ""
1065
1102
 
1066
- #: ../lib/hammer_cli_katello/content_view_version.rb:147
1103
+ #: ../lib/hammer_cli_katello/content_view_version.rb:149
1067
1104
  msgid "An error occurred incrementally updating the content view"
1068
1105
  msgstr ""
1069
1106
 
1070
- #: ../lib/hammer_cli_katello/content_view_version.rb:151
1107
+ #: ../lib/hammer_cli_katello/content_view_version.rb:153
1071
1108
  msgid "list of lifecycle environment IDs to update the content view version in"
1072
1109
  msgstr ""
1073
1110
 
1074
- #: ../lib/hammer_cli_katello/content_view_version.rb:157
1111
+ #: ../lib/hammer_cli_katello/content_view_version.rb:159
1075
1112
  msgid "list of lifecycle environment names to update the content view version in"
1076
1113
  msgstr ""
1077
1114
 
1078
- #: ../lib/hammer_cli_katello/content_view_version.rb:164
1115
+ #: ../lib/hammer_cli_katello/content_view_version.rb:166
1079
1116
  msgid "Organization name for resolving lifecycle environment names"
1080
1117
  msgstr ""
1081
1118
 
1082
- #: ../lib/hammer_cli_katello/content_view_version.rb:170
1119
+ #: ../lib/hammer_cli_katello/content_view_version.rb:172
1083
1120
  msgid "Organization id for resolving lifecycle environment names"
1084
1121
  msgstr ""
1085
1122
 
1086
- #: ../lib/hammer_cli_katello/content_view_version.rb:175
1123
+ #: ../lib/hammer_cli_katello/content_view_version.rb:177
1087
1124
  msgid ""
1088
1125
  "Update all editable and applicable hosts within the specified Content View and"
1089
1126
  " \\\n"
1090
1127
  " Lifecycle Environments"
1091
1128
  msgstr ""
1092
1129
 
1093
- #: ../lib/hammer_cli_katello/content_view_version.rb:182
1130
+ #: ../lib/hammer_cli_katello/content_view_version.rb:184
1094
1131
  msgid "IDs of hosts to update"
1095
1132
  msgstr ""
1096
1133
 
1097
- #: ../lib/hammer_cli_katello/content_view_version.rb:254
1098
- msgid "Content view is being exported in task %{id}"
1134
+ #: ../lib/hammer_cli_katello/content_view_version.rb:252
1135
+ msgid "Export a content view (deprecated)"
1099
1136
  msgstr ""
1100
1137
 
1101
- #: ../lib/hammer_cli_katello/content_view_version.rb:255
1138
+ #: ../lib/hammer_cli_katello/content_view_version.rb:257
1139
+ msgid "Content view is being exported in task %{id}."
1140
+ msgstr ""
1141
+
1142
+ #: ../lib/hammer_cli_katello/content_view_version.rb:258
1143
+ #: ../lib/hammer_cli_katello/content_view_version.rb:277
1102
1144
  msgid "Could not export the content view"
1103
1145
  msgstr ""
1104
1146
 
1105
- #: ../lib/hammer_cli_katello/erratum.rb:8
1106
- #: ../lib/hammer_cli_katello/erratum.rb:30
1147
+ #: ../lib/hammer_cli_katello/content_view_version.rb:272
1148
+ msgid "Export a content view version"
1149
+ msgstr ""
1150
+
1151
+ #: ../lib/hammer_cli_katello/content_view_version.rb:276
1152
+ msgid "Content view export is available in %{directory}."
1153
+ msgstr ""
1154
+
1155
+ #: ../lib/hammer_cli_katello/content_view_version.rb:279
1156
+ msgid "Content View Version numeric identifier"
1157
+ msgstr ""
1158
+
1159
+ #: ../lib/hammer_cli_katello/content_view_version.rb:280
1160
+ msgid "Directory to put content view version export into."
1161
+ msgstr ""
1162
+
1163
+ #: ../lib/hammer_cli_katello/content_view_version.rb:356
1164
+ msgid ""
1165
+ "The Repository '#{repo['name']}' is a non-yum repository. Only Yum is supporte"
1166
+ "d at this time. Please remove the repository from the Content View, republish "
1167
+ "and try the export again."
1168
+ msgstr ""
1169
+
1170
+ #: ../lib/hammer_cli_katello/content_view_version.rb:388
1171
+ msgid "Import a content view version"
1172
+ msgstr ""
1173
+
1174
+ #: ../lib/hammer_cli_katello/content_view_version.rb:392
1175
+ msgid "Content view imported."
1176
+ msgstr ""
1177
+
1178
+ #: ../lib/hammer_cli_katello/content_view_version.rb:393
1179
+ msgid "Could not import the content view"
1180
+ msgstr ""
1181
+
1182
+ #: ../lib/hammer_cli_katello/content_view_version.rb:395
1183
+ msgid "Organization numeric identifier"
1184
+ msgstr ""
1185
+
1186
+ #: ../lib/hammer_cli_katello/content_view_version.rb:398
1187
+ msgid "Location of export tar on disk"
1188
+ msgstr ""
1189
+
1190
+ #: ../lib/hammer_cli_katello/content_view_version.rb:411
1191
+ msgid "Export tar #{options['option_export_tar']} does not exist."
1192
+ msgstr ""
1193
+
1194
+ #: ../lib/hammer_cli_katello/content_view_version.rb:459
1195
+ msgid "Unable to sync repositories, no library repository found for %s"
1196
+ msgstr ""
1197
+
1198
+ #: ../lib/hammer_cli_katello/cv_import_export_helper.rb:19
1199
+ msgid ""
1200
+ "Unable to find CV version %{cvv} on system. Please ensure it is already import"
1201
+ "ed."
1202
+ msgstr ""
1203
+
1204
+ #: ../lib/hammer_cli_katello/cv_import_export_helper.rb:29
1205
+ msgid ""
1206
+ "The Content View #{cv['name']} is not present on this server, please create th"
1207
+ "e Content View and try the import again."
1208
+ msgstr ""
1209
+
1210
+ #: ../lib/hammer_cli_katello/cv_import_export_helper.rb:34
1211
+ msgid ""
1212
+ "The latest version (#{import_cv['latest_version']}) of the Content View '#{cv["
1213
+ "'name']}' is greater or equal to the version you are trying to import (#{versi"
1214
+ "on})"
1215
+ msgstr ""
1216
+
1217
+ #: ../lib/hammer_cli_katello/cv_import_export_helper.rb:45
1218
+ msgid ""
1219
+ "The Repository '#{repo['name']}' is set with Mirror-on-Sync to YES. Please cha"
1220
+ "nge Mirror-on-Sync to NO and try the import again."
1221
+ msgstr ""
1222
+
1223
+ #: ../lib/hammer_cli_katello/erratum.rb:14
1224
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:11
1107
1225
  #: ../lib/hammer_cli_katello/filter.rb:47
1108
1226
  #: ../lib/hammer_cli_katello/filter_rule.rb:19
1109
1227
  #: ../lib/hammer_cli_katello/filter_rule.rb:39
1110
- #: ../lib/hammer_cli_katello/host_errata.rb:40
1111
1228
  msgid "Errata ID"
1112
1229
  msgstr ""
1113
1230
 
1114
- #: ../lib/hammer_cli_katello/erratum.rb:9
1115
- #: ../lib/hammer_cli_katello/erratum.rb:32
1231
+ #: ../lib/hammer_cli_katello/erratum.rb:15
1116
1232
  #: ../lib/hammer_cli_katello/filter.rb:16
1117
1233
  #: ../lib/hammer_cli_katello/filter.rb:31
1118
- #: ../lib/hammer_cli_katello/host_errata.rb:22
1234
+ #: ../lib/hammer_cli_katello/host_errata.rb:24
1119
1235
  #: ../lib/hammer_cli_katello/product_content.rb:12
1120
- #: ../lib/hammer_cli_katello/repository_set.rb:8
1121
- #: ../lib/hammer_cli_katello/repository_set.rb:21
1236
+ #: ../lib/hammer_cli_katello/repository_set.rb:22
1237
+ #: ../lib/hammer_cli_katello/repository_set.rb:42
1122
1238
  #: ../lib/hammer_cli_katello/subscription.rb:14
1123
1239
  msgid "Type"
1124
1240
  msgstr ""
1125
1241
 
1126
- #: ../lib/hammer_cli_katello/erratum.rb:10
1127
- #: ../lib/hammer_cli_katello/erratum.rb:31
1128
- #: ../lib/hammer_cli_katello/host_errata.rb:23
1129
- #: ../lib/hammer_cli_katello/host_errata.rb:35
1242
+ #: ../lib/hammer_cli_katello/erratum.rb:16
1243
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:6
1244
+ #: ../lib/hammer_cli_katello/host_errata.rb:25
1130
1245
  msgid "Title"
1131
1246
  msgstr ""
1132
1247
 
1133
- #: ../lib/hammer_cli_katello/erratum.rb:33
1134
- msgid "Severity"
1135
- msgstr ""
1136
-
1137
- #: ../lib/hammer_cli_katello/erratum.rb:34
1138
- #: ../lib/hammer_cli_katello/host_errata.rb:43
1139
- msgid "Issued"
1248
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:12
1249
+ msgid "Reboot Suggested"
1140
1250
  msgstr ""
1141
1251
 
1142
- #: ../lib/hammer_cli_katello/erratum.rb:35
1252
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:13
1143
1253
  #: ../lib/hammer_cli_katello/filter.rb:52
1144
1254
  #: ../lib/hammer_cli_katello/filter_rule.rb:45
1145
- #: ../lib/hammer_cli_katello/host_errata.rb:42
1146
- #: ../lib/hammer_cli_katello/repository.rb:68
1255
+ #: ../lib/hammer_cli_katello/repository.rb:73
1147
1256
  msgid "Updated"
1148
1257
  msgstr ""
1149
1258
 
1150
- #: ../lib/hammer_cli_katello/erratum.rb:37
1151
- #: ../lib/hammer_cli_katello/puppet_module.rb:27
1152
- msgid "Summary"
1259
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:14
1260
+ msgid "Issued"
1153
1261
  msgstr ""
1154
1262
 
1155
- #: ../lib/hammer_cli_katello/erratum.rb:38
1156
- #: ../lib/hammer_cli_katello/host_errata.rb:45
1263
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:15
1264
+ #: ../lib/hammer_cli_katello/package.rb:50
1265
+ #: ../lib/hammer_cli_katello/repository_set.rb:67
1266
+ msgid "Release"
1267
+ msgstr ""
1268
+
1269
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:16
1157
1270
  msgid "Solution"
1158
1271
  msgstr ""
1159
1272
 
1160
- #: ../lib/hammer_cli_katello/file.rb:9 ../lib/hammer_cli_katello/file.rb:35
1273
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:19
1274
+ #: ../lib/hammer_cli_katello/repository.rb:88
1275
+ msgid "Module Streams"
1276
+ msgstr ""
1277
+
1278
+ #: ../lib/hammer_cli_katello/erratum_info_command.rb:21
1279
+ #: ../lib/hammer_cli_katello/module_stream.rb:15
1280
+ #: ../lib/hammer_cli_katello/module_stream.rb:35
1281
+ msgid "Stream"
1282
+ msgstr ""
1283
+
1284
+ #: ../lib/hammer_cli_katello/file.rb:13 ../lib/hammer_cli_katello/file.rb:33
1161
1285
  msgid "Path"
1162
1286
  msgstr ""
1163
1287
 
1164
- #: ../lib/hammer_cli_katello/file.rb:37
1288
+ #: ../lib/hammer_cli_katello/file.rb:35
1165
1289
  msgid "Checksum"
1166
1290
  msgstr ""
1167
1291
 
@@ -1200,12 +1324,12 @@ msgstr ""
1200
1324
 
1201
1325
  #: ../lib/hammer_cli_katello/filter.rb:51
1202
1326
  #: ../lib/hammer_cli_katello/filter_rule.rb:44
1203
- #: ../lib/hammer_cli_katello/repository.rb:67
1327
+ #: ../lib/hammer_cli_katello/repository.rb:72
1204
1328
  msgid "Created"
1205
1329
  msgstr ""
1206
1330
 
1207
1331
  #: ../lib/hammer_cli_katello/filter.rb:64
1208
- msgid "Filter created"
1332
+ msgid "Filter created."
1209
1333
  msgstr ""
1210
1334
 
1211
1335
  #: ../lib/hammer_cli_katello/filter.rb:65
@@ -1213,7 +1337,7 @@ msgid "Could not create the filter"
1213
1337
  msgstr ""
1214
1338
 
1215
1339
  #: ../lib/hammer_cli_katello/filter.rb:90
1216
- msgid "Filter updated"
1340
+ msgid "Filter updated."
1217
1341
  msgstr ""
1218
1342
 
1219
1343
  #: ../lib/hammer_cli_katello/filter.rb:91
@@ -1221,7 +1345,7 @@ msgid "Could not update the filter"
1221
1345
  msgstr ""
1222
1346
 
1223
1347
  #: ../lib/hammer_cli_katello/filter.rb:102
1224
- msgid "Filter deleted"
1348
+ msgid "Filter deleted."
1225
1349
  msgstr ""
1226
1350
 
1227
1351
  #: ../lib/hammer_cli_katello/filter.rb:103
@@ -1235,6 +1359,8 @@ msgstr ""
1235
1359
 
1236
1360
  #: ../lib/hammer_cli_katello/filter_rule.rb:18
1237
1361
  #: ../lib/hammer_cli_katello/filter_rule.rb:38
1362
+ #: ../lib/hammer_cli_katello/module_stream.rb:18
1363
+ #: ../lib/hammer_cli_katello/module_stream.rb:38
1238
1364
  #: ../lib/hammer_cli_katello/package.rb:48
1239
1365
  msgid "Architecture"
1240
1366
  msgstr ""
@@ -1244,7 +1370,7 @@ msgid "Date Type"
1244
1370
  msgstr ""
1245
1371
 
1246
1372
  #: ../lib/hammer_cli_katello/filter_rule.rb:54
1247
- msgid "Filter rule created"
1373
+ msgid "Filter rule created."
1248
1374
  msgstr ""
1249
1375
 
1250
1376
  #: ../lib/hammer_cli_katello/filter_rule.rb:55
@@ -1256,7 +1382,7 @@ msgid "Package and package group names"
1256
1382
  msgstr ""
1257
1383
 
1258
1384
  #: ../lib/hammer_cli_katello/filter_rule.rb:70
1259
- msgid "Filter rule updated"
1385
+ msgid "Filter rule updated."
1260
1386
  msgstr ""
1261
1387
 
1262
1388
  #: ../lib/hammer_cli_katello/filter_rule.rb:71
@@ -1264,7 +1390,7 @@ msgid "Could not update the filter rule"
1264
1390
  msgstr ""
1265
1391
 
1266
1392
  #: ../lib/hammer_cli_katello/filter_rule.rb:79
1267
- msgid "Filter rule deleted"
1393
+ msgid "Filter rule deleted."
1268
1394
  msgstr ""
1269
1395
 
1270
1396
  #: ../lib/hammer_cli_katello/filter_rule.rb:80
@@ -1274,18 +1400,18 @@ msgstr ""
1274
1400
  #: ../lib/hammer_cli_katello/gpg_key.rb:25
1275
1401
  #: ../lib/hammer_cli_katello/product.rb:63
1276
1402
  #: ../lib/hammer_cli_katello/repository.rb:12
1277
- #: ../lib/hammer_cli_katello/repository.rb:31
1403
+ #: ../lib/hammer_cli_katello/repository.rb:33
1278
1404
  msgid "Content Type"
1279
1405
  msgstr ""
1280
1406
 
1281
1407
  #: ../lib/hammer_cli_katello/gpg_key.rb:27
1282
1408
  #: ../lib/hammer_cli_katello/repository.rb:10
1283
- #: ../lib/hammer_cli_katello/repository.rb:48
1409
+ #: ../lib/hammer_cli_katello/repository.rb:53
1284
1410
  msgid "Product"
1285
1411
  msgstr ""
1286
1412
 
1287
1413
  #: ../lib/hammer_cli_katello/gpg_key.rb:38
1288
- msgid "GPG Key created"
1414
+ msgid "GPG Key created."
1289
1415
  msgstr ""
1290
1416
 
1291
1417
  #: ../lib/hammer_cli_katello/gpg_key.rb:39
@@ -1298,7 +1424,7 @@ msgid "GPG Key file"
1298
1424
  msgstr ""
1299
1425
 
1300
1426
  #: ../lib/hammer_cli_katello/gpg_key.rb:49
1301
- msgid "GPG Key updated"
1427
+ msgid "GPG Key updated."
1302
1428
  msgstr ""
1303
1429
 
1304
1430
  #: ../lib/hammer_cli_katello/gpg_key.rb:50
@@ -1306,7 +1432,7 @@ msgid "Could not update GPG Key"
1306
1432
  msgstr ""
1307
1433
 
1308
1434
  #: ../lib/hammer_cli_katello/gpg_key.rb:59
1309
- msgid "GPG Key deleted"
1435
+ msgid "GPG Key deleted."
1310
1436
  msgstr ""
1311
1437
 
1312
1438
  #: ../lib/hammer_cli_katello/gpg_key.rb:60
@@ -1318,7 +1444,7 @@ msgid "Limit"
1318
1444
  msgstr ""
1319
1445
 
1320
1446
  #: ../lib/hammer_cli_katello/host_collection.rb:50
1321
- msgid "Host collection created"
1447
+ msgid "Host collection created."
1322
1448
  msgstr ""
1323
1449
 
1324
1450
  #: ../lib/hammer_cli_katello/host_collection.rb:51
@@ -1348,7 +1474,7 @@ msgid "New host collection name"
1348
1474
  msgstr ""
1349
1475
 
1350
1476
  #: ../lib/hammer_cli_katello/host_collection.rb:116
1351
- msgid "New host collection created"
1477
+ msgid "New host collection created."
1352
1478
  msgstr ""
1353
1479
 
1354
1480
  #: ../lib/hammer_cli_katello/host_collection.rb:117
@@ -1356,7 +1482,7 @@ msgid "Could not create the new host collection"
1356
1482
  msgstr ""
1357
1483
 
1358
1484
  #: ../lib/hammer_cli_katello/host_collection.rb:130
1359
- msgid "Host collection updated"
1485
+ msgid "Host collection updated."
1360
1486
  msgstr ""
1361
1487
 
1362
1488
  #: ../lib/hammer_cli_katello/host_collection.rb:131
@@ -1364,7 +1490,7 @@ msgid "Could not update the the host collection"
1364
1490
  msgstr ""
1365
1491
 
1366
1492
  #: ../lib/hammer_cli_katello/host_collection.rb:139
1367
- msgid "Host collection deleted"
1493
+ msgid "Host collection deleted."
1368
1494
  msgstr ""
1369
1495
 
1370
1496
  #: ../lib/hammer_cli_katello/host_collection.rb:140
@@ -1372,7 +1498,7 @@ msgid "Could not delete the host collection"
1372
1498
  msgstr ""
1373
1499
 
1374
1500
  #: ../lib/hammer_cli_katello/host_collection.rb:151
1375
- msgid "The host(s) has been added"
1501
+ msgid "The host(s) has been added."
1376
1502
  msgstr ""
1377
1503
 
1378
1504
  #: ../lib/hammer_cli_katello/host_collection.rb:152
@@ -1380,7 +1506,7 @@ msgid "Could not add host(s)"
1380
1506
  msgstr ""
1381
1507
 
1382
1508
  #: ../lib/hammer_cli_katello/host_collection.rb:163
1383
- msgid "The host(s) has been removed"
1509
+ msgid "The host(s) has been removed."
1384
1510
  msgstr ""
1385
1511
 
1386
1512
  #: ../lib/hammer_cli_katello/host_collection.rb:164
@@ -1396,7 +1522,7 @@ msgid "Install errata on content hosts contained within a host collection"
1396
1522
  msgstr ""
1397
1523
 
1398
1524
  #: ../lib/hammer_cli_katello/host_collection_erratum.rb:8
1399
- msgid "Successfully scheduled installation of errata"
1525
+ msgid "Successfully scheduled installation of errata."
1400
1526
  msgstr ""
1401
1527
 
1402
1528
  #: ../lib/hammer_cli_katello/host_collection_erratum.rb:9
@@ -1420,7 +1546,7 @@ msgid "Install packages on content hosts contained within a host collection"
1420
1546
  msgstr ""
1421
1547
 
1422
1548
  #: ../lib/hammer_cli_katello/host_collection_package.rb:24
1423
- msgid "Successfully scheduled installation of package(s)"
1549
+ msgid "Successfully scheduled installation of package(s)."
1424
1550
  msgstr ""
1425
1551
 
1426
1552
  #: ../lib/hammer_cli_katello/host_collection_package.rb:25
@@ -1432,7 +1558,7 @@ msgid "Update packages on content hosts contained within a host collection"
1432
1558
  msgstr ""
1433
1559
 
1434
1560
  #: ../lib/hammer_cli_katello/host_collection_package.rb:31
1435
- msgid "Successfully scheduled update of package(s)"
1561
+ msgid "Successfully scheduled update of package(s)."
1436
1562
  msgstr ""
1437
1563
 
1438
1564
  #: ../lib/hammer_cli_katello/host_collection_package.rb:32
@@ -1444,7 +1570,7 @@ msgid "Remove packages on content hosts contained within a host collection"
1444
1570
  msgstr ""
1445
1571
 
1446
1572
  #: ../lib/hammer_cli_katello/host_collection_package.rb:38
1447
- msgid "Successfully scheduled removal of package(s)"
1573
+ msgid "Successfully scheduled removal of package(s)."
1448
1574
  msgstr ""
1449
1575
 
1450
1576
  #: ../lib/hammer_cli_katello/host_collection_package.rb:39
@@ -1464,7 +1590,7 @@ msgid "Install package-groups on content hosts contained within a host collectio
1464
1590
  msgstr ""
1465
1591
 
1466
1592
  #: ../lib/hammer_cli_katello/host_collection_package_group.rb:24
1467
- msgid "Successfully scheduled installation of package-group(s)"
1593
+ msgid "Successfully scheduled installation of package-group(s)."
1468
1594
  msgstr ""
1469
1595
 
1470
1596
  #: ../lib/hammer_cli_katello/host_collection_package_group.rb:25
@@ -1476,7 +1602,7 @@ msgid "Update package-groups on content hosts contained within a host collection
1476
1602
  msgstr ""
1477
1603
 
1478
1604
  #: ../lib/hammer_cli_katello/host_collection_package_group.rb:31
1479
- msgid "Successfully scheduled update of package-groups(s)"
1605
+ msgid "Successfully scheduled update of package-groups(s)."
1480
1606
  msgstr ""
1481
1607
 
1482
1608
  #: ../lib/hammer_cli_katello/host_collection_package_group.rb:32
@@ -1488,7 +1614,7 @@ msgid "Remove package-groups on content hosts contained within a host collection
1488
1614
  msgstr ""
1489
1615
 
1490
1616
  #: ../lib/hammer_cli_katello/host_collection_package_group.rb:38
1491
- msgid "Successfully scheduled removal of package-groups(s)"
1617
+ msgid "Successfully scheduled removal of package-groups(s)."
1492
1618
  msgstr ""
1493
1619
 
1494
1620
  #: ../lib/hammer_cli_katello/host_collection_package_group.rb:39
@@ -1499,99 +1625,90 @@ msgstr ""
1499
1625
  msgid "Content Source name "
1500
1626
  msgstr ""
1501
1627
 
1502
- #: ../lib/hammer_cli_katello/host_errata.rb:9
1503
- msgid "Errata is being applied with task %{id}"
1628
+ #: ../lib/hammer_cli_katello/host_content_source_options.rb:24
1629
+ #: ../lib/hammer_cli_katello/host_extensions.rb:49
1630
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:60
1631
+ msgid "Content Source"
1632
+ msgstr ""
1633
+
1634
+ #: ../lib/hammer_cli_katello/host_errata.rb:11
1635
+ msgid "Errata is being applied with task %{id}."
1504
1636
  msgstr ""
1505
1637
 
1506
- #: ../lib/hammer_cli_katello/host_errata.rb:10
1638
+ #: ../lib/hammer_cli_katello/host_errata.rb:12
1507
1639
  msgid "Could not apply errata"
1508
1640
  msgstr ""
1509
1641
 
1510
- #: ../lib/hammer_cli_katello/host_errata.rb:21
1642
+ #: ../lib/hammer_cli_katello/host_errata.rb:23
1511
1643
  msgid "Erratum ID"
1512
1644
  msgstr ""
1513
1645
 
1514
- #: ../lib/hammer_cli_katello/host_errata.rb:24
1646
+ #: ../lib/hammer_cli_katello/host_errata.rb:26
1515
1647
  msgid "Installable"
1516
1648
  msgstr ""
1517
1649
 
1518
1650
  #: ../lib/hammer_cli_katello/host_errata.rb:41
1519
- msgid "Reboot Suggested"
1651
+ msgid "Errata recalculated with task %{id}."
1520
1652
  msgstr ""
1521
1653
 
1522
- #: ../lib/hammer_cli_katello/host_errata.rb:44
1523
- #: ../lib/hammer_cli_katello/package.rb:50
1524
- #: ../lib/hammer_cli_katello/repository_set.rb:43
1525
- msgid "Release"
1654
+ #: ../lib/hammer_cli_katello/host_errata.rb:42
1655
+ msgid "Could not recalculate errata"
1526
1656
  msgstr ""
1527
1657
 
1528
- #: ../lib/hammer_cli_katello/host_extensions.rb:34
1658
+ #: ../lib/hammer_cli_katello/host_extensions.rb:37
1529
1659
  msgid "Content Information"
1530
1660
  msgstr ""
1531
1661
 
1532
- #: ../lib/hammer_cli_katello/host_extensions.rb:46
1533
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:82
1534
- msgid "Content Source"
1535
- msgstr ""
1536
-
1537
- #: ../lib/hammer_cli_katello/host_extensions.rb:51
1538
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:87
1662
+ #: ../lib/hammer_cli_katello/host_extensions.rb:54
1663
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:65
1539
1664
  msgid "Kickstart Repository"
1540
1665
  msgstr ""
1541
1666
 
1542
- #: ../lib/hammer_cli_katello/host_extensions.rb:56
1667
+ #: ../lib/hammer_cli_katello/host_extensions.rb:59
1543
1668
  msgid "Applicable Packages"
1544
1669
  msgstr ""
1545
1670
 
1546
- #: ../lib/hammer_cli_katello/host_extensions.rb:57
1671
+ #: ../lib/hammer_cli_katello/host_extensions.rb:60
1547
1672
  msgid "Upgradable Packages"
1548
1673
  msgstr ""
1549
1674
 
1550
- #: ../lib/hammer_cli_katello/host_extensions.rb:59
1675
+ #: ../lib/hammer_cli_katello/host_extensions.rb:62
1551
1676
  msgid "Applicable Errata"
1552
1677
  msgstr ""
1553
1678
 
1554
- #: ../lib/hammer_cli_katello/host_extensions.rb:61
1679
+ #: ../lib/hammer_cli_katello/host_extensions.rb:64
1555
1680
  msgid "Enhancement"
1556
1681
  msgstr ""
1557
1682
 
1558
- #: ../lib/hammer_cli_katello/host_extensions.rb:62
1683
+ #: ../lib/hammer_cli_katello/host_extensions.rb:65
1559
1684
  msgid "Bug Fix"
1560
1685
  msgstr ""
1561
1686
 
1562
- #: ../lib/hammer_cli_katello/host_extensions.rb:63
1687
+ #: ../lib/hammer_cli_katello/host_extensions.rb:66
1563
1688
  msgid "Security"
1564
1689
  msgstr ""
1565
1690
 
1566
- #: ../lib/hammer_cli_katello/host_extensions.rb:69
1691
+ #: ../lib/hammer_cli_katello/host_extensions.rb:72
1567
1692
  msgid "Subscription Information"
1568
1693
  msgstr ""
1569
1694
 
1570
- #: ../lib/hammer_cli_katello/host_extensions.rb:72
1695
+ #: ../lib/hammer_cli_katello/host_extensions.rb:75
1571
1696
  msgid "Last Checkin"
1572
1697
  msgstr ""
1573
1698
 
1574
- #: ../lib/hammer_cli_katello/host_extensions.rb:73
1575
- msgid "Service Level"
1576
- msgstr ""
1577
-
1578
- #: ../lib/hammer_cli_katello/host_extensions.rb:74
1579
- msgid "Release Version"
1580
- msgstr ""
1581
-
1582
- #: ../lib/hammer_cli_katello/host_extensions.rb:75
1699
+ #: ../lib/hammer_cli_katello/host_extensions.rb:78
1583
1700
  msgid "Autoheal"
1584
1701
  msgstr ""
1585
1702
 
1586
- #: ../lib/hammer_cli_katello/host_extensions.rb:76
1703
+ #: ../lib/hammer_cli_katello/host_extensions.rb:79
1587
1704
  msgid "Registered To"
1588
1705
  msgstr ""
1589
1706
 
1590
- #: ../lib/hammer_cli_katello/host_extensions.rb:77
1707
+ #: ../lib/hammer_cli_katello/host_extensions.rb:80
1591
1708
  msgid "Registered At"
1592
1709
  msgstr ""
1593
1710
 
1594
- #: ../lib/hammer_cli_katello/host_extensions.rb:78
1711
+ #: ../lib/hammer_cli_katello/host_extensions.rb:81
1595
1712
  msgid "Registered by Activation Keys"
1596
1713
  msgstr ""
1597
1714
 
@@ -1618,7 +1735,7 @@ msgid "NVRA"
1618
1735
  msgstr ""
1619
1736
 
1620
1737
  #: ../lib/hammer_cli_katello/host_subscription.rb:12
1621
- msgid "Host unregistered"
1738
+ msgid "Host unregistered."
1622
1739
  msgstr ""
1623
1740
 
1624
1741
  #: ../lib/hammer_cli_katello/host_subscription.rb:13
@@ -1626,7 +1743,7 @@ msgid "Could not unregister the host"
1626
1743
  msgstr ""
1627
1744
 
1628
1745
  #: ../lib/hammer_cli_katello/host_subscription.rb:24
1629
- msgid "Host successfully registered"
1746
+ msgid "Host successfully registered."
1630
1747
  msgstr ""
1631
1748
 
1632
1749
  #: ../lib/hammer_cli_katello/host_subscription.rb:25
@@ -1634,7 +1751,7 @@ msgid "Failed to register host"
1634
1751
  msgstr ""
1635
1752
 
1636
1753
  #: ../lib/hammer_cli_katello/host_subscription.rb:36
1637
- msgid "Subscription attached to the host successfully"
1754
+ msgid "Subscription attached to the host successfully."
1638
1755
  msgstr ""
1639
1756
 
1640
1757
  #: ../lib/hammer_cli_katello/host_subscription.rb:37
@@ -1646,7 +1763,7 @@ msgid "Quantity of this subscriptions to add. Defaults to 1"
1646
1763
  msgstr ""
1647
1764
 
1648
1765
  #: ../lib/hammer_cli_katello/host_subscription.rb:65
1649
- msgid "Auto attached subscriptions to the host successfully"
1766
+ msgid "Auto attached subscriptions to the host successfully."
1650
1767
  msgstr ""
1651
1768
 
1652
1769
  #: ../lib/hammer_cli_katello/host_subscription.rb:66
@@ -1654,7 +1771,7 @@ msgid "Failed to auto attach subscriptions to the host"
1654
1771
  msgstr ""
1655
1772
 
1656
1773
  #: ../lib/hammer_cli_katello/host_subscription.rb:74
1657
- msgid "Subscription removed from the host successfully"
1774
+ msgid "Subscription removed from the host successfully."
1658
1775
  msgstr ""
1659
1776
 
1660
1777
  #: ../lib/hammer_cli_katello/host_subscription.rb:75
@@ -1665,19 +1782,19 @@ msgstr ""
1665
1782
  msgid "Remove the first instance of a subscription with matching id and quantity"
1666
1783
  msgstr ""
1667
1784
 
1668
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:32
1785
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:10
1669
1786
  #: ../lib/hammer_cli_katello/organization_options.rb:5
1670
1787
  msgid "Organization ID to search by"
1671
1788
  msgstr ""
1672
1789
 
1673
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:34
1674
- #: ../lib/hammer_cli_katello/id_resolver.rb:16
1790
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:12
1791
+ #: ../lib/hammer_cli_katello/id_resolver.rb:18
1675
1792
  #: ../lib/hammer_cli_katello/organization_options.rb:7
1676
1793
  msgid "Organization name to search by"
1677
1794
  msgstr ""
1678
1795
 
1679
- #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:36
1680
- #: ../lib/hammer_cli_katello/id_resolver.rb:17
1796
+ #: ../lib/hammer_cli_katello/hostgroup_extensions.rb:14
1797
+ #: ../lib/hammer_cli_katello/id_resolver.rb:19
1681
1798
  #: ../lib/hammer_cli_katello/organization_options.rb:9
1682
1799
  msgid "Organization label to search by"
1683
1800
  msgstr ""
@@ -1695,70 +1812,71 @@ msgid "Content View Version ID"
1695
1812
  msgstr ""
1696
1813
 
1697
1814
  #: ../lib/hammer_cli_katello/id_resolver.rb:12
1815
+ #: ../lib/hammer_cli_katello/id_resolver.rb:14
1698
1816
  msgid "Repository ID"
1699
1817
  msgstr ""
1700
1818
 
1701
1819
  #: ../lib/hammer_cli_katello/id_resolver.rb:13
1820
+ msgid "Module stream name to search by"
1821
+ msgstr ""
1822
+
1823
+ #: ../lib/hammer_cli_katello/id_resolver.rb:15
1702
1824
  msgid "Gpg key name to search by"
1703
1825
  msgstr ""
1704
1826
 
1705
- #: ../lib/hammer_cli_katello/id_resolver.rb:14
1827
+ #: ../lib/hammer_cli_katello/id_resolver.rb:16
1706
1828
  msgid "Host collection name to search by"
1707
1829
  msgstr ""
1708
1830
 
1709
- #: ../lib/hammer_cli_katello/id_resolver.rb:15
1831
+ #: ../lib/hammer_cli_katello/id_resolver.rb:17
1710
1832
  msgid "Lifecycle environment name to search by"
1711
1833
  msgstr ""
1712
1834
 
1713
- #: ../lib/hammer_cli_katello/id_resolver.rb:20
1835
+ #: ../lib/hammer_cli_katello/id_resolver.rb:22
1714
1836
  msgid "Product name to search by"
1715
1837
  msgstr ""
1716
1838
 
1717
- #: ../lib/hammer_cli_katello/id_resolver.rb:21
1839
+ #: ../lib/hammer_cli_katello/id_resolver.rb:23
1718
1840
  msgid "Operating system title"
1719
1841
  msgstr ""
1720
1842
 
1721
- #: ../lib/hammer_cli_katello/id_resolver.rb:22
1843
+ #: ../lib/hammer_cli_katello/id_resolver.rb:24
1722
1844
  msgid "Repository name to search by"
1723
1845
  msgstr ""
1724
1846
 
1725
- #: ../lib/hammer_cli_katello/id_resolver.rb:23
1847
+ #: ../lib/hammer_cli_katello/id_resolver.rb:25
1726
1848
  msgid "Repository set name to search by"
1727
1849
  msgstr ""
1728
1850
 
1729
- #: ../lib/hammer_cli_katello/id_resolver.rb:24
1851
+ #: ../lib/hammer_cli_katello/id_resolver.rb:26
1730
1852
  msgid "Subscription name to search by"
1731
1853
  msgstr ""
1732
1854
 
1733
- #: ../lib/hammer_cli_katello/id_resolver.rb:25
1855
+ #: ../lib/hammer_cli_katello/id_resolver.rb:27
1734
1856
  msgid "Sync plan name to search by"
1735
1857
  msgstr ""
1736
1858
 
1737
- #: ../lib/hammer_cli_katello/id_resolver.rb:26
1859
+ #: ../lib/hammer_cli_katello/id_resolver.rb:28
1738
1860
  msgid "Task name to search by"
1739
1861
  msgstr ""
1740
1862
 
1741
- #: ../lib/hammer_cli_katello/id_resolver.rb:27
1742
- msgid "User name to search by"
1743
- msgstr ""
1744
-
1745
- #: ../lib/hammer_cli_katello/id_resolver.rb:29
1863
+ #: ../lib/hammer_cli_katello/id_resolver.rb:30
1746
1864
  msgid "Puppet module name to search by"
1747
1865
  msgstr ""
1748
1866
 
1749
- #: ../lib/hammer_cli_katello/id_resolver.rb:30
1867
+ #: ../lib/hammer_cli_katello/id_resolver.rb:31
1750
1868
  msgid "Puppet module's author to search by"
1751
1869
  msgstr ""
1752
1870
 
1753
- #: ../lib/hammer_cli_katello/id_resolver.rb:31
1871
+ #: ../lib/hammer_cli_katello/id_resolver.rb:32
1754
1872
  msgid "Puppet module's UUID to search by"
1755
1873
  msgstr ""
1756
1874
 
1757
- #: ../lib/hammer_cli_katello/id_resolver.rb:33
1875
+ #: ../lib/hammer_cli_katello/id_resolver.rb:34
1758
1876
  msgid "Content view version number"
1759
1877
  msgstr ""
1760
1878
 
1761
- #: ../lib/hammer_cli_katello/id_resolver.rb:36
1879
+ #: ../lib/hammer_cli_katello/id_resolver.rb:37
1762
1880
  msgid "Name to search by"
1763
1881
  msgstr ""
1764
1882
 
@@ -1782,30 +1900,60 @@ msgstr ""
1782
1900
  msgid "Prior Lifecycle Environment"
1783
1901
  msgstr ""
1784
1902
 
1785
- #: ../lib/hammer_cli_katello/lifecycle_environment.rb:79
1786
- msgid "Environment created"
1903
+ #: ../lib/hammer_cli_katello/lifecycle_environment.rb:71
1904
+ msgid "Unauthenticated Pull"
1787
1905
  msgstr ""
1788
1906
 
1789
- #: ../lib/hammer_cli_katello/lifecycle_environment.rb:80
1907
+ #: ../lib/hammer_cli_katello/lifecycle_environment.rb:72
1908
+ msgid "Registry Name Pattern"
1909
+ msgstr ""
1910
+
1911
+ #: ../lib/hammer_cli_katello/lifecycle_environment.rb:81
1912
+ msgid "Environment created."
1913
+ msgstr ""
1914
+
1915
+ #: ../lib/hammer_cli_katello/lifecycle_environment.rb:82
1790
1916
  msgid "Could not create environment"
1791
1917
  msgstr ""
1792
1918
 
1793
- #: ../lib/hammer_cli_katello/lifecycle_environment.rb:86
1794
- msgid "Environment updated"
1919
+ #: ../lib/hammer_cli_katello/lifecycle_environment.rb:88
1920
+ msgid "Environment updated."
1795
1921
  msgstr ""
1796
1922
 
1797
- #: ../lib/hammer_cli_katello/lifecycle_environment.rb:87
1923
+ #: ../lib/hammer_cli_katello/lifecycle_environment.rb:89
1798
1924
  msgid "Could not update environment"
1799
1925
  msgstr ""
1800
1926
 
1801
- #: ../lib/hammer_cli_katello/lifecycle_environment.rb:93
1802
- msgid "Environment deleted"
1927
+ #: ../lib/hammer_cli_katello/lifecycle_environment.rb:95
1928
+ msgid "Environment deleted."
1803
1929
  msgstr ""
1804
1930
 
1805
- #: ../lib/hammer_cli_katello/lifecycle_environment.rb:94
1931
+ #: ../lib/hammer_cli_katello/lifecycle_environment.rb:96
1806
1932
  msgid "Could not delete environment"
1807
1933
  msgstr ""
1808
1934
 
1935
+ #: ../lib/hammer_cli_katello/module_stream.rb:14
1936
+ #: ../lib/hammer_cli_katello/module_stream.rb:34
1937
+ msgid "Module Stream Name"
1938
+ msgstr ""
1939
+
1940
+ #: ../lib/hammer_cli_katello/module_stream.rb:19
1941
+ #: ../lib/hammer_cli_katello/module_stream.rb:39
1942
+ msgid "Context"
1943
+ msgstr ""
1944
+
1945
+ #: ../lib/hammer_cli_katello/module_stream.rb:47
1946
+ msgid "Artifacts"
1947
+ msgstr ""
1948
+
1949
+ #: ../lib/hammer_cli_katello/module_stream.rb:52
1950
+ msgid "Profiles"
1951
+ msgstr ""
1952
+
1953
+ #: ../lib/hammer_cli_katello/module_stream.rb:55
1954
+ msgid "RPMs"
1955
+ msgstr ""
1956
+
1809
1957
  #: ../lib/hammer_cli_katello/organization.rb:24
1810
1958
  msgid "Red Hat Repository URL"
1811
1959
  msgstr ""
@@ -1815,7 +1963,7 @@ msgid "Service Levels"
1815
1963
  msgstr ""
1816
1964
 
1817
1965
  #: ../lib/hammer_cli_katello/organization.rb:35
1818
- msgid "Organization updated"
1966
+ msgid "Organization updated."
1819
1967
  msgstr ""
1820
1968
 
1821
1969
  #: ../lib/hammer_cli_katello/organization.rb:36
@@ -1823,7 +1971,7 @@ msgid "Could not update the organization"
1823
1971
  msgstr ""
1824
1972
 
1825
1973
  #: ../lib/hammer_cli_katello/organization.rb:44
1826
- msgid "Organization created"
1974
+ msgid "Organization created."
1827
1975
  msgstr ""
1828
1976
 
1829
1977
  #: ../lib/hammer_cli_katello/organization.rb:45
@@ -1831,22 +1979,22 @@ msgid "Could not create the organization"
1831
1979
  msgstr ""
1832
1980
 
1833
1981
  #: ../lib/hammer_cli_katello/organization.rb:55
1834
- msgid "Organization deleted"
1982
+ msgid "Organization deleted."
1835
1983
  msgstr ""
1836
1984
 
1837
1985
  #: ../lib/hammer_cli_katello/organization.rb:56
1838
1986
  msgid "Could not delete the organization"
1839
1987
  msgstr ""
1840
1988
 
1841
- #: ../lib/hammer_cli_katello/ostree_branch.rb:9
1989
+ #: ../lib/hammer_cli_katello/ostree_branch.rb:13
1842
1990
  msgid "version"
1843
1991
  msgstr ""
1844
1992
 
1845
- #: ../lib/hammer_cli_katello/ostree_branch.rb:22
1993
+ #: ../lib/hammer_cli_katello/ostree_branch.rb:26
1846
1994
  msgid "Commit"
1847
1995
  msgstr ""
1848
1996
 
1849
- #: ../lib/hammer_cli_katello/ostree_branch.rb:23
1997
+ #: ../lib/hammer_cli_katello/ostree_branch.rb:27
1850
1998
  msgid "Date"
1851
1999
  msgstr ""
1852
2000
 
@@ -1876,38 +2024,38 @@ msgid "Vendor"
1876
2024
  msgstr ""
1877
2025
 
1878
2026
  #: ../lib/hammer_cli_katello/package.rb:55
1879
- #: ../lib/hammer_cli_katello/puppet_module.rb:29
2027
+ #: ../lib/hammer_cli_katello/puppet_module.rb:33
1880
2028
  msgid "License"
1881
2029
  msgstr ""
1882
2030
 
1883
2031
  #: ../lib/hammer_cli_katello/package.rb:56
1884
- #: ../lib/hammer_cli_katello/repository.rb:37
2032
+ #: ../lib/hammer_cli_katello/repository.rb:39
1885
2033
  msgid "Relative Path"
1886
2034
  msgstr ""
1887
2035
 
1888
- #: ../lib/hammer_cli_katello/package_group.rb:8
1889
- #: ../lib/hammer_cli_katello/package_group.rb:26
2036
+ #: ../lib/hammer_cli_katello/package_group.rb:12
2037
+ #: ../lib/hammer_cli_katello/package_group.rb:30
1890
2038
  msgid "Package Group Name"
1891
2039
  msgstr ""
1892
2040
 
1893
- #: ../lib/hammer_cli_katello/package_group.rb:9
1894
- #: ../lib/hammer_cli_katello/package_group.rb:27
2041
+ #: ../lib/hammer_cli_katello/package_group.rb:13
2042
+ #: ../lib/hammer_cli_katello/package_group.rb:31
1895
2043
  msgid "Repository Name"
1896
2044
  msgstr ""
1897
2045
 
1898
- #: ../lib/hammer_cli_katello/package_group.rb:30
2046
+ #: ../lib/hammer_cli_katello/package_group.rb:34
1899
2047
  msgid "Default Packages"
1900
2048
  msgstr ""
1901
2049
 
1902
- #: ../lib/hammer_cli_katello/package_group.rb:31
2050
+ #: ../lib/hammer_cli_katello/package_group.rb:35
1903
2051
  msgid "Mandatory Packages"
1904
2052
  msgstr ""
1905
2053
 
1906
- #: ../lib/hammer_cli_katello/package_group.rb:32
2054
+ #: ../lib/hammer_cli_katello/package_group.rb:36
1907
2055
  msgid "Conditional Packages"
1908
2056
  msgstr ""
1909
2057
 
1910
- #: ../lib/hammer_cli_katello/package_group.rb:33
2058
+ #: ../lib/hammer_cli_katello/package_group.rb:37
1911
2059
  msgid "Optional Packages"
1912
2060
  msgstr ""
1913
2061
 
@@ -1935,7 +2083,7 @@ msgid "Sync State"
1935
2083
  msgstr ""
1936
2084
 
1937
2085
  #: ../lib/hammer_cli_katello/product.rb:23
1938
- msgid "Product created"
2086
+ msgid "Product created."
1939
2087
  msgstr ""
1940
2088
 
1941
2089
  #: ../lib/hammer_cli_katello/product.rb:24
@@ -1956,8 +2104,8 @@ msgstr ""
1956
2104
 
1957
2105
  #: ../lib/hammer_cli_katello/product.rb:45
1958
2106
  #: ../lib/hammer_cli_katello/product_content.rb:14
1959
- #: ../lib/hammer_cli_katello/repository.rb:55
1960
- #: ../lib/hammer_cli_katello/repository_set.rb:23
2107
+ #: ../lib/hammer_cli_katello/repository.rb:60
2108
+ #: ../lib/hammer_cli_katello/repository_set.rb:44
1961
2109
  msgid "GPG Key"
1962
2110
  msgstr ""
1963
2111
 
@@ -1976,13 +2124,13 @@ msgstr ""
1976
2124
  #: ../lib/hammer_cli_katello/product.rb:62
1977
2125
  #: ../lib/hammer_cli_katello/product_content.rb:13
1978
2126
  #: ../lib/hammer_cli_katello/repository.rb:13
1979
- #: ../lib/hammer_cli_katello/repository.rb:34
1980
- #: ../lib/hammer_cli_katello/repository_set.rb:22
2127
+ #: ../lib/hammer_cli_katello/repository.rb:36
2128
+ #: ../lib/hammer_cli_katello/repository_set.rb:43
1981
2129
  msgid "URL"
1982
2130
  msgstr ""
1983
2131
 
1984
2132
  #: ../lib/hammer_cli_katello/product.rb:72
1985
- msgid "Product updated"
2133
+ msgid "Product updated."
1986
2134
  msgstr ""
1987
2135
 
1988
2136
  #: ../lib/hammer_cli_katello/product.rb:73
@@ -1990,7 +2138,7 @@ msgid "Could not update the product"
1990
2138
  msgstr ""
1991
2139
 
1992
2140
  #: ../lib/hammer_cli_katello/product.rb:79
1993
- msgid "Product destroyed"
2141
+ msgid "Product destroyed."
1994
2142
  msgstr ""
1995
2143
 
1996
2144
  #: ../lib/hammer_cli_katello/product.rb:80
@@ -1998,7 +2146,7 @@ msgid "Could not destroy the product"
1998
2146
  msgstr ""
1999
2147
 
2000
2148
  #: ../lib/hammer_cli_katello/product.rb:91
2001
- msgid "Product repositories are being synchronized in task %{id}"
2149
+ msgid "Product repositories are being synchronized in task %{id}."
2002
2150
  msgstr ""
2003
2151
 
2004
2152
  #: ../lib/hammer_cli_katello/product.rb:92
@@ -2006,7 +2154,7 @@ msgid "Could not synchronize the product repositories"
2006
2154
  msgstr ""
2007
2155
 
2008
2156
  #: ../lib/hammer_cli_katello/product.rb:98
2009
- msgid "Assign sync plan to product."
2157
+ msgid "Assign sync plan to product"
2010
2158
  msgstr ""
2011
2159
 
2012
2160
  #: ../lib/hammer_cli_katello/product.rb:101
@@ -2014,11 +2162,11 @@ msgid "Synchronization plan assigned."
2014
2162
  msgstr ""
2015
2163
 
2016
2164
  #: ../lib/hammer_cli_katello/product.rb:102
2017
- msgid "Could not assign synchronization plan."
2165
+ msgid "Could not assign synchronization plan"
2018
2166
  msgstr ""
2019
2167
 
2020
2168
  #: ../lib/hammer_cli_katello/product.rb:110
2021
- msgid "Delete assignment sync plan and product."
2169
+ msgid "Delete assignment sync plan and product"
2022
2170
  msgstr ""
2023
2171
 
2024
2172
  #: ../lib/hammer_cli_katello/product.rb:113
@@ -2026,7 +2174,7 @@ msgid "Synchronization plan removed."
2026
2174
  msgstr ""
2027
2175
 
2028
2176
  #: ../lib/hammer_cli_katello/product.rb:114
2029
- msgid "Could not remove synchronization plan."
2177
+ msgid "Could not remove synchronization plan"
2030
2178
  msgstr ""
2031
2179
 
2032
2180
  #: ../lib/hammer_cli_katello/product_content.rb:5
@@ -2041,275 +2189,316 @@ msgstr ""
2041
2189
  msgid "Override"
2042
2190
  msgstr ""
2043
2191
 
2044
- #: ../lib/hammer_cli_katello/puppet_module.rb:11
2045
- #: ../lib/hammer_cli_katello/puppet_module.rb:25
2192
+ #: ../lib/hammer_cli_katello/puppet_module.rb:15
2193
+ #: ../lib/hammer_cli_katello/puppet_module.rb:29
2046
2194
  msgid "Uuid"
2047
2195
  msgstr ""
2048
2196
 
2049
- #: ../lib/hammer_cli_katello/puppet_module.rb:30
2197
+ #: ../lib/hammer_cli_katello/puppet_module.rb:31
2198
+ msgid "Summary"
2199
+ msgstr ""
2200
+
2201
+ #: ../lib/hammer_cli_katello/puppet_module.rb:34
2050
2202
  msgid "Project Page"
2051
2203
  msgstr ""
2052
2204
 
2053
- #: ../lib/hammer_cli_katello/puppet_module.rb:31
2205
+ #: ../lib/hammer_cli_katello/puppet_module.rb:35
2054
2206
  msgid "Source"
2055
2207
  msgstr ""
2056
2208
 
2057
- #: ../lib/hammer_cli_katello/puppet_module.rb:33
2209
+ #: ../lib/hammer_cli_katello/puppet_module.rb:37
2058
2210
  msgid "Dependencies"
2059
2211
  msgstr ""
2060
2212
 
2061
- #: ../lib/hammer_cli_katello/puppet_module.rb:36
2213
+ #: ../lib/hammer_cli_katello/puppet_module.rb:40
2062
2214
  msgid "File checksums"
2063
2215
  msgstr ""
2064
2216
 
2065
- #: ../lib/hammer_cli_katello/puppet_module.rb:40
2217
+ #: ../lib/hammer_cli_katello/puppet_module.rb:44
2066
2218
  msgid "Tag List"
2067
2219
  msgstr ""
2068
2220
 
2069
- #: ../lib/hammer_cli_katello/repository.rb:30
2221
+ #: ../lib/hammer_cli_katello/repository.rb:32
2070
2222
  msgid "Red Hat Repository"
2071
2223
  msgstr ""
2072
2224
 
2073
- #: ../lib/hammer_cli_katello/repository.rb:32
2225
+ #: ../lib/hammer_cli_katello/repository.rb:34
2074
2226
  msgid "Checksum Type"
2075
2227
  msgstr ""
2076
2228
 
2077
- #: ../lib/hammer_cli_katello/repository.rb:33
2229
+ #: ../lib/hammer_cli_katello/repository.rb:35
2078
2230
  msgid "Mirror on Sync"
2079
2231
  msgstr ""
2080
2232
 
2081
- #: ../lib/hammer_cli_katello/repository.rb:35
2082
- #: ../lib/hammer_cli_katello/repository.rb:174
2083
- #: ../lib/hammer_cli_katello/repository.rb:200
2233
+ #: ../lib/hammer_cli_katello/repository.rb:37
2234
+ #: ../lib/hammer_cli_katello/repository.rb:188
2235
+ #: ../lib/hammer_cli_katello/repository.rb:223
2084
2236
  msgid "Publish Via HTTP"
2085
2237
  msgstr ""
2086
2238
 
2087
- #: ../lib/hammer_cli_katello/repository.rb:36
2239
+ #: ../lib/hammer_cli_katello/repository.rb:38
2088
2240
  msgid "Published At"
2089
2241
  msgstr ""
2090
2242
 
2091
- #: ../lib/hammer_cli_katello/repository.rb:38
2243
+ #: ../lib/hammer_cli_katello/repository.rb:40
2092
2244
  msgid "Download Policy"
2093
2245
  msgstr ""
2094
2246
 
2095
- #: ../lib/hammer_cli_katello/repository.rb:39
2247
+ #: ../lib/hammer_cli_katello/repository.rb:41
2096
2248
  msgid "OSTree Upstream Sync Policy"
2097
2249
  msgstr ""
2098
2250
 
2099
- #: ../lib/hammer_cli_katello/repository.rb:41
2251
+ #: ../lib/hammer_cli_katello/repository.rb:43
2100
2252
  msgid "OSTree Upstream Sync Depth"
2101
2253
  msgstr ""
2102
2254
 
2103
- #: ../lib/hammer_cli_katello/repository.rb:43
2255
+ #: ../lib/hammer_cli_katello/repository.rb:45
2104
2256
  msgid "Upstream Repository Name"
2105
2257
  msgstr ""
2106
2258
 
2107
- #: ../lib/hammer_cli_katello/repository.rb:45
2259
+ #: ../lib/hammer_cli_katello/repository.rb:47
2260
+ msgid "Container Image Tags Filter"
2261
+ msgstr ""
2262
+
2263
+ #: ../lib/hammer_cli_katello/repository.rb:49
2108
2264
  msgid "Container Repository Name"
2109
2265
  msgstr ""
2110
2266
 
2111
- #: ../lib/hammer_cli_katello/repository.rb:62
2267
+ #: ../lib/hammer_cli_katello/repository.rb:51
2268
+ msgid "Ignorable Content Units"
2269
+ msgstr ""
2270
+
2271
+ #: ../lib/hammer_cli_katello/repository.rb:67
2112
2272
  msgid "Sync"
2113
2273
  msgstr ""
2114
2274
 
2115
- #: ../lib/hammer_cli_katello/repository.rb:64
2275
+ #: ../lib/hammer_cli_katello/repository.rb:69
2116
2276
  msgid "Last Sync Date"
2117
2277
  msgstr ""
2118
2278
 
2119
- #: ../lib/hammer_cli_katello/repository.rb:70
2279
+ #: ../lib/hammer_cli_katello/repository.rb:75
2120
2280
  msgid "Content Counts"
2121
2281
  msgstr ""
2122
2282
 
2123
- #: ../lib/hammer_cli_katello/repository.rb:72
2283
+ #: ../lib/hammer_cli_katello/repository.rb:77
2124
2284
  msgid "Source RPMS"
2125
2285
  msgstr ""
2126
2286
 
2127
- #: ../lib/hammer_cli_katello/repository.rb:73
2287
+ #: ../lib/hammer_cli_katello/repository.rb:78
2128
2288
  msgid "Package Groups"
2129
2289
  msgstr ""
2130
2290
 
2131
- #: ../lib/hammer_cli_katello/repository.rb:76
2132
- msgid "Docker Manifest Lists"
2291
+ #: ../lib/hammer_cli_katello/repository.rb:81
2292
+ msgid "Container Image Manifest Lists"
2133
2293
  msgstr ""
2134
2294
 
2135
- #: ../lib/hammer_cli_katello/repository.rb:78
2136
- msgid "Docker Manifests"
2295
+ #: ../lib/hammer_cli_katello/repository.rb:83
2296
+ msgid "Container Image Manifests"
2137
2297
  msgstr ""
2138
2298
 
2139
- #: ../lib/hammer_cli_katello/repository.rb:79
2140
- msgid "Docker Tags"
2299
+ #: ../lib/hammer_cli_katello/repository.rb:85
2300
+ msgid "Container Image Tags"
2141
2301
  msgstr ""
2142
2302
 
2143
- #: ../lib/hammer_cli_katello/repository.rb:80
2303
+ #: ../lib/hammer_cli_katello/repository.rb:86
2144
2304
  msgid "OSTree Branches"
2145
2305
  msgstr ""
2146
2306
 
2147
- #: ../lib/hammer_cli_katello/repository.rb:81
2307
+ #: ../lib/hammer_cli_katello/repository.rb:87
2148
2308
  msgid "Files"
2149
2309
  msgstr ""
2150
2310
 
2151
- #: ../lib/hammer_cli_katello/repository.rb:97
2152
- #: ../lib/hammer_cli_katello/repository.rb:98
2153
- #: ../lib/hammer_cli_katello/repository.rb:99
2311
+ #: ../lib/hammer_cli_katello/repository.rb:108
2312
+ #: ../lib/hammer_cli_katello/repository.rb:109
2313
+ #: ../lib/hammer_cli_katello/repository.rb:110
2154
2314
  msgid "yes"
2155
2315
  msgstr ""
2156
2316
 
2157
- #: ../lib/hammer_cli_katello/repository.rb:97
2158
- #: ../lib/hammer_cli_katello/repository.rb:98
2159
- #: ../lib/hammer_cli_katello/repository.rb:99
2317
+ #: ../lib/hammer_cli_katello/repository.rb:108
2318
+ #: ../lib/hammer_cli_katello/repository.rb:109
2319
+ #: ../lib/hammer_cli_katello/repository.rb:110
2160
2320
  msgid "no"
2161
2321
  msgstr ""
2162
2322
 
2163
- #: ../lib/hammer_cli_katello/repository.rb:107
2164
- #: ../lib/hammer_cli_katello/repository.rb:144
2323
+ #: ../lib/hammer_cli_katello/repository.rb:118
2324
+ #: ../lib/hammer_cli_katello/repository.rb:156
2165
2325
  msgid "Not Synced"
2166
2326
  msgstr ""
2167
2327
 
2168
- #: ../lib/hammer_cli_katello/repository.rb:142
2328
+ #: ../lib/hammer_cli_katello/repository.rb:154
2169
2329
  msgid "Failed"
2170
2330
  msgstr ""
2171
2331
 
2172
- #: ../lib/hammer_cli_katello/repository.rb:142
2332
+ #: ../lib/hammer_cli_katello/repository.rb:154
2173
2333
  msgid "Success"
2174
2334
  msgstr ""
2175
2335
 
2176
- #: ../lib/hammer_cli_katello/repository.rb:142
2336
+ #: ../lib/hammer_cli_katello/repository.rb:154
2177
2337
  msgid "Finished"
2178
2338
  msgstr ""
2179
2339
 
2180
- #: ../lib/hammer_cli_katello/repository.rb:143
2340
+ #: ../lib/hammer_cli_katello/repository.rb:155
2181
2341
  msgid "Error"
2182
2342
  msgstr ""
2183
2343
 
2184
- #: ../lib/hammer_cli_katello/repository.rb:143
2344
+ #: ../lib/hammer_cli_katello/repository.rb:155
2185
2345
  msgid "Running"
2186
2346
  msgstr ""
2187
2347
 
2188
- #: ../lib/hammer_cli_katello/repository.rb:143
2348
+ #: ../lib/hammer_cli_katello/repository.rb:155
2189
2349
  msgid "Waiting"
2190
2350
  msgstr ""
2191
2351
 
2192
- #: ../lib/hammer_cli_katello/repository.rb:144
2352
+ #: ../lib/hammer_cli_katello/repository.rb:156
2193
2353
  msgid "Canceled"
2194
2354
  msgstr ""
2195
2355
 
2196
- #: ../lib/hammer_cli_katello/repository.rb:162
2197
- msgid "Repository is being synchronized in task %{id}"
2356
+ #: ../lib/hammer_cli_katello/repository.rb:176
2357
+ msgid "Repository is being synchronized in task %{id}."
2198
2358
  msgstr ""
2199
2359
 
2200
- #: ../lib/hammer_cli_katello/repository.rb:163
2360
+ #: ../lib/hammer_cli_katello/repository.rb:177
2201
2361
  msgid "Could not synchronize the repository"
2202
2362
  msgstr ""
2203
2363
 
2204
- #: ../lib/hammer_cli_katello/repository.rb:171
2205
- msgid "Repository created"
2364
+ #: ../lib/hammer_cli_katello/repository.rb:185
2365
+ msgid "Repository created."
2206
2366
  msgstr ""
2207
2367
 
2208
- #: ../lib/hammer_cli_katello/repository.rb:172
2368
+ #: ../lib/hammer_cli_katello/repository.rb:186
2209
2369
  msgid "Could not create the repository"
2210
2370
  msgstr ""
2211
2371
 
2212
- #: ../lib/hammer_cli_katello/repository.rb:185
2213
- msgid "Repository updated"
2372
+ #: ../lib/hammer_cli_katello/repository.rb:201
2373
+ msgid "Repository updated."
2214
2374
  msgstr ""
2215
2375
 
2216
- #: ../lib/hammer_cli_katello/repository.rb:186
2376
+ #: ../lib/hammer_cli_katello/repository.rb:202
2217
2377
  msgid "Could not update the repository"
2218
2378
  msgstr ""
2219
2379
 
2220
- #: ../lib/hammer_cli_katello/repository.rb:209
2221
- msgid "Repository deleted"
2380
+ #: ../lib/hammer_cli_katello/repository.rb:214
2381
+ msgid "--docker-digest required with --docker-tag"
2382
+ msgstr ""
2383
+
2384
+ #: ../lib/hammer_cli_katello/repository.rb:216
2385
+ msgid "--docker-tag required with --docker-digest"
2386
+ msgstr ""
2387
+
2388
+ #: ../lib/hammer_cli_katello/repository.rb:227
2389
+ msgid "Optional custom Container Image tag to specify the value of the Docker digest"
2390
+ msgstr ""
2391
+
2392
+ #: ../lib/hammer_cli_katello/repository.rb:228
2393
+ msgid "Container Image manifest digest"
2394
+ msgstr ""
2395
+
2396
+ #: ../lib/hammer_cli_katello/repository.rb:255
2397
+ msgid "Repository updated"
2398
+ msgstr ""
2399
+
2400
+ #: ../lib/hammer_cli_katello/repository.rb:259
2401
+ msgid "Failed to upload tag '%s' to repository."
2222
2402
  msgstr ""
2223
2403
 
2224
- #: ../lib/hammer_cli_katello/repository.rb:210
2404
+ #: ../lib/hammer_cli_katello/repository.rb:287
2405
+ msgid "Repository deleted."
2406
+ msgstr ""
2407
+
2408
+ #: ../lib/hammer_cli_katello/repository.rb:288
2225
2409
  msgid "Could not delete the Repository"
2226
2410
  msgstr ""
2227
2411
 
2228
- #: ../lib/hammer_cli_katello/repository.rb:249
2412
+ #: ../lib/hammer_cli_katello/repository.rb:328
2229
2413
  msgid "Could not find any files matching PATH"
2230
2414
  msgstr ""
2231
2415
 
2232
- #: ../lib/hammer_cli_katello/repository.rb:279
2416
+ #: ../lib/hammer_cli_katello/repository.rb:358
2233
2417
  msgid "Cannot specify both product options and repository ID."
2234
2418
  msgstr ""
2235
2419
 
2236
- #: ../lib/hammer_cli_katello/repository.rb:287
2237
- msgid "Repository content uploaded"
2420
+ #: ../lib/hammer_cli_katello/repository.rb:366
2421
+ msgid "Repository content uploaded."
2238
2422
  msgstr ""
2239
2423
 
2240
- #: ../lib/hammer_cli_katello/repository.rb:288
2424
+ #: ../lib/hammer_cli_katello/repository.rb:367
2241
2425
  msgid "Could not upload the content"
2242
2426
  msgstr ""
2243
2427
 
2244
- #: ../lib/hammer_cli_katello/repository.rb:293
2428
+ #: ../lib/hammer_cli_katello/repository.rb:372
2245
2429
  msgid ""
2246
2430
  "Upload file, directory of files, or glob of files as content for a repository."
2247
2431
  "\n"
2248
- "Globs must be escaped by single or double quotes."
2432
+ "Globs must be escaped by single or double quotes"
2249
2433
  msgstr ""
2250
2434
 
2251
- #: ../lib/hammer_cli_katello/repository.rb:320
2252
- msgid "Successfully uploaded file '%s'."
2435
+ #: ../lib/hammer_cli_katello/repository.rb:403
2436
+ msgid "Failed to upload file '%s' to repository. Please check the file and try again."
2253
2437
  msgstr ""
2254
2438
 
2255
- #: ../lib/hammer_cli_katello/repository.rb:323
2256
- msgid "Failed to upload file '%s' to repository. Please check the file and try again."
2439
+ #: ../lib/hammer_cli_katello/repository.rb:449
2440
+ #: ../lib/hammer_cli_katello/repository.rb:460
2441
+ msgid "Successfully uploaded file '%{name}'"
2257
2442
  msgstr ""
2258
2443
 
2259
- #: ../lib/hammer_cli_katello/repository.rb:371
2444
+ #: ../lib/hammer_cli_katello/repository.rb:457
2445
+ msgid "Successfully uploaded manifest file '%{name}' with digest '%{digest}'"
2446
+ msgstr ""
2447
+
2448
+ #: ../lib/hammer_cli_katello/repository.rb:487
2260
2449
  msgid "Remove content from a repository"
2261
2450
  msgstr ""
2262
2451
 
2263
- #: ../lib/hammer_cli_katello/repository.rb:373
2264
- msgid "Repository content removed"
2452
+ #: ../lib/hammer_cli_katello/repository.rb:489
2453
+ msgid "Repository content removed."
2265
2454
  msgstr ""
2266
2455
 
2267
- #: ../lib/hammer_cli_katello/repository.rb:374
2456
+ #: ../lib/hammer_cli_katello/repository.rb:490
2268
2457
  msgid "Could not remove content"
2269
2458
  msgstr ""
2270
2459
 
2271
- #: ../lib/hammer_cli_katello/repository.rb:397
2460
+ #: ../lib/hammer_cli_katello/repository.rb:514
2272
2461
  msgid "Export content from a repository to the configured directory"
2273
2462
  msgstr ""
2274
2463
 
2275
- #: ../lib/hammer_cli_katello/repository.rb:399
2276
- msgid "Repository is being exported in task %{id}"
2464
+ #: ../lib/hammer_cli_katello/repository.rb:516
2465
+ msgid "Repository is being exported in task %{id}."
2277
2466
  msgstr ""
2278
2467
 
2279
- #: ../lib/hammer_cli_katello/repository.rb:400
2468
+ #: ../lib/hammer_cli_katello/repository.rb:517
2280
2469
  msgid "Could not export the repository"
2281
2470
  msgstr ""
2282
2471
 
2283
- #: ../lib/hammer_cli_katello/repository_set.rb:26
2472
+ #: ../lib/hammer_cli_katello/repository_set.rb:47
2284
2473
  msgid "Enabled Repositories"
2285
2474
  msgstr ""
2286
2475
 
2287
- #: ../lib/hammer_cli_katello/repository_set.rb:42
2476
+ #: ../lib/hammer_cli_katello/repository_set.rb:66
2288
2477
  msgid "Arch"
2289
2478
  msgstr ""
2290
2479
 
2291
- #: ../lib/hammer_cli_katello/repository_set.rb:45
2480
+ #: ../lib/hammer_cli_katello/repository_set.rb:69
2292
2481
  msgid "Registry Name"
2293
2482
  msgstr ""
2294
2483
 
2295
- #: ../lib/hammer_cli_katello/repository_set.rb:46
2484
+ #: ../lib/hammer_cli_katello/repository_set.rb:70
2296
2485
  #: ../lib/hammer_cli_katello/sync_plan.rb:11
2297
2486
  msgid "Enabled"
2298
2487
  msgstr ""
2299
2488
 
2300
- #: ../lib/hammer_cli_katello/repository_set.rb:66
2301
- msgid "Repository enabled"
2489
+ #: ../lib/hammer_cli_katello/repository_set.rb:95
2490
+ msgid "Repository enabled."
2302
2491
  msgstr ""
2303
2492
 
2304
- #: ../lib/hammer_cli_katello/repository_set.rb:67
2493
+ #: ../lib/hammer_cli_katello/repository_set.rb:96
2305
2494
  msgid "Could not enable repository"
2306
2495
  msgstr ""
2307
2496
 
2308
- #: ../lib/hammer_cli_katello/repository_set.rb:76
2309
- msgid "Repository disabled"
2497
+ #: ../lib/hammer_cli_katello/repository_set.rb:108
2498
+ msgid "Repository disabled."
2310
2499
  msgstr ""
2311
2500
 
2312
- #: ../lib/hammer_cli_katello/repository_set.rb:77
2501
+ #: ../lib/hammer_cli_katello/repository_set.rb:109
2313
2502
  msgid "Could not disable repository"
2314
2503
  msgstr ""
2315
2504
 
@@ -2322,50 +2511,51 @@ msgid "Physical"
2322
2511
  msgstr ""
2323
2512
 
2324
2513
  #: ../lib/hammer_cli_katello/subscription.rb:35
2514
+ #: ../lib/hammer_cli_katello/subscription.rb:37
2325
2515
  msgid "Guests of %s"
2326
2516
  msgstr ""
2327
2517
 
2328
- #: ../lib/hammer_cli_katello/subscription.rb:37
2518
+ #: ../lib/hammer_cli_katello/subscription.rb:39
2329
2519
  msgid "Temporary"
2330
2520
  msgstr ""
2331
2521
 
2332
- #: ../lib/hammer_cli_katello/subscription.rb:39
2522
+ #: ../lib/hammer_cli_katello/subscription.rb:41
2333
2523
  msgid "Virtual"
2334
2524
  msgstr ""
2335
2525
 
2336
- #: ../lib/hammer_cli_katello/subscription.rb:60
2337
- msgid "Manifest is being uploaded in task %{id}"
2526
+ #: ../lib/hammer_cli_katello/subscription.rb:62
2527
+ msgid "Manifest is being uploaded in task %{id}."
2338
2528
  msgstr ""
2339
2529
 
2340
- #: ../lib/hammer_cli_katello/subscription.rb:61
2530
+ #: ../lib/hammer_cli_katello/subscription.rb:63
2341
2531
  msgid "Manifest upload failed"
2342
2532
  msgstr ""
2343
2533
 
2344
- #: ../lib/hammer_cli_katello/subscription.rb:64
2534
+ #: ../lib/hammer_cli_katello/subscription.rb:66
2345
2535
  msgid "Subscription manifest file"
2346
2536
  msgstr ""
2347
2537
 
2348
- #: ../lib/hammer_cli_katello/subscription.rb:75
2349
- msgid "Manifest is being deleted in task %{id}"
2538
+ #: ../lib/hammer_cli_katello/subscription.rb:77
2539
+ msgid "Manifest is being deleted in task %{id}."
2350
2540
  msgstr ""
2351
2541
 
2352
- #: ../lib/hammer_cli_katello/subscription.rb:76
2542
+ #: ../lib/hammer_cli_katello/subscription.rb:78
2353
2543
  msgid "Manifest deletion failed"
2354
2544
  msgstr ""
2355
2545
 
2356
- #: ../lib/hammer_cli_katello/subscription.rb:87
2357
- msgid "Manifest is being refreshed in task %{id}"
2546
+ #: ../lib/hammer_cli_katello/subscription.rb:89
2547
+ msgid "Manifest is being refreshed in task %{id}."
2358
2548
  msgstr ""
2359
2549
 
2360
- #: ../lib/hammer_cli_katello/subscription.rb:88
2550
+ #: ../lib/hammer_cli_katello/subscription.rb:90
2361
2551
  msgid "Manifest refresh failed"
2362
2552
  msgstr ""
2363
2553
 
2364
- #: ../lib/hammer_cli_katello/subscription.rb:99
2554
+ #: ../lib/hammer_cli_katello/subscription.rb:101
2365
2555
  msgid "Status Message"
2366
2556
  msgstr ""
2367
2557
 
2368
- #: ../lib/hammer_cli_katello/subscription.rb:100
2558
+ #: ../lib/hammer_cli_katello/subscription.rb:102
2369
2559
  msgid "Time"
2370
2560
  msgstr ""
2371
2561
 
@@ -2373,49 +2563,61 @@ msgstr ""
2373
2563
  msgid "Interval"
2374
2564
  msgstr ""
2375
2565
 
2376
- #: ../lib/hammer_cli_katello/sync_plan.rb:20
2566
+ #: ../lib/hammer_cli_katello/sync_plan.rb:12
2567
+ msgid "Cron Expression"
2568
+ msgstr ""
2569
+
2570
+ #: ../lib/hammer_cli_katello/sync_plan.rb:13
2571
+ msgid "Recurring Logic ID"
2572
+ msgstr ""
2573
+
2574
+ #: ../lib/hammer_cli_katello/sync_plan.rb:22
2377
2575
  msgid "Created at"
2378
2576
  msgstr ""
2379
2577
 
2380
- #: ../lib/hammer_cli_katello/sync_plan.rb:21
2578
+ #: ../lib/hammer_cli_katello/sync_plan.rb:23
2381
2579
  msgid "Updated at"
2382
2580
  msgstr ""
2383
2581
 
2384
- #: ../lib/hammer_cli_katello/sync_plan.rb:33
2385
- #: ../lib/hammer_cli_katello/sync_plan.rb:50
2582
+ #: ../lib/hammer_cli_katello/sync_plan.rb:35
2583
+ #: ../lib/hammer_cli_katello/sync_plan.rb:51
2386
2584
  msgid "how often synchronization should run"
2387
2585
  msgstr ""
2388
2586
 
2389
- #: ../lib/hammer_cli_katello/sync_plan.rb:39
2587
+ #: ../lib/hammer_cli_katello/sync_plan.rb:37
2588
+ msgid "set this when interval is custom cron"
2589
+ msgstr ""
2590
+
2591
+ #: ../lib/hammer_cli_katello/sync_plan.rb:40
2390
2592
  msgid ""
2391
2593
  "Start date and time for the sync plan.Time is optional, if kept blank current "
2392
2594
  "system time will be considered"
2393
2595
  msgstr ""
2394
2596
 
2395
- #: ../lib/hammer_cli_katello/sync_plan.rb:43
2396
- msgid "Sync plan created"
2597
+ #: ../lib/hammer_cli_katello/sync_plan.rb:44
2598
+ msgid "Sync plan created."
2397
2599
  msgstr ""
2398
2600
 
2399
- #: ../lib/hammer_cli_katello/sync_plan.rb:44
2601
+ #: ../lib/hammer_cli_katello/sync_plan.rb:45
2400
2602
  msgid "Could not create the sync plan"
2401
2603
  msgstr ""
2402
2604
 
2403
- #: ../lib/hammer_cli_katello/sync_plan.rb:54
2605
+ #: ../lib/hammer_cli_katello/sync_plan.rb:53
2404
2606
  msgid "start date and time of the synchronization"
2405
2607
  msgstr ""
2406
2608
 
2407
- #: ../lib/hammer_cli_katello/sync_plan.rb:57
2408
- msgid "Sync plan updated"
2609
+ #: ../lib/hammer_cli_katello/sync_plan.rb:56
2610
+ msgid "Sync plan updated."
2409
2611
  msgstr ""
2410
2612
 
2411
- #: ../lib/hammer_cli_katello/sync_plan.rb:58
2613
+ #: ../lib/hammer_cli_katello/sync_plan.rb:57
2412
2614
  msgid "Could not update the sync plan"
2413
2615
  msgstr ""
2414
2616
 
2415
- #: ../lib/hammer_cli_katello/sync_plan.rb:64
2416
- msgid "Sync plan destroyed"
2617
+ #: ../lib/hammer_cli_katello/sync_plan.rb:63
2618
+ msgid "Sync plan destroyed."
2417
2619
  msgstr ""
2418
2620
 
2419
- #: ../lib/hammer_cli_katello/sync_plan.rb:65
2621
+ #: ../lib/hammer_cli_katello/sync_plan.rb:64
2420
2622
  msgid "Could not destroy the sync plan"
2421
2623
  msgstr ""