katello 3.17.3 → 3.18.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (193) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
  5. data/app/controllers/katello/api/v2/api_controller.rb +2 -1
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  8. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
  10. data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
  11. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  12. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  13. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  14. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
  15. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
  17. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  18. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  19. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  20. data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
  21. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  22. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  23. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  24. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  25. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  26. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  27. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
  28. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
  29. data/app/lib/actions/katello/content_view/publish.rb +3 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +4 -3
  31. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  32. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  33. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  34. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  35. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  36. data/app/lib/actions/katello/product/content_create.rb +7 -6
  37. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  38. data/app/lib/actions/katello/repository/import_upload.rb +2 -1
  39. data/app/lib/actions/katello/repository/update.rb +4 -1
  40. data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
  41. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  42. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  43. data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
  44. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  45. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
  46. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  47. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  48. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  49. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  50. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  51. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  52. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  53. data/app/lib/katello/resources/registry.rb +3 -3
  54. data/app/models/katello/authorization/activation_key.rb +4 -0
  55. data/app/models/katello/authorization/content_view.rb +13 -0
  56. data/app/models/katello/authorization/content_view_component.rb +15 -0
  57. data/app/models/katello/authorization/gpg_key.rb +12 -4
  58. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  59. data/app/models/katello/authorization/sync_plan.rb +16 -0
  60. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  61. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  62. data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
  63. data/app/models/katello/content_view_component.rb +2 -0
  64. data/app/models/katello/content_view_version_export_history.rb +2 -0
  65. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  66. data/app/models/katello/glue/pulp/repo.rb +8 -0
  67. data/app/models/katello/gpg_key.rb +1 -1
  68. data/app/models/katello/root_repository.rb +26 -1
  69. data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
  70. data/app/services/katello/candlepin/event_handler.rb +2 -0
  71. data/app/services/katello/candlepin/message_handler.rb +34 -0
  72. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  73. data/app/services/katello/host_status_manager.rb +9 -0
  74. data/app/services/katello/pulp3/api/apt.rb +57 -0
  75. data/app/services/katello/pulp3/api/core.rb +8 -0
  76. data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
  77. data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
  78. data/app/services/katello/pulp3/deb.rb +38 -0
  79. data/app/services/katello/pulp3/erratum.rb +1 -2
  80. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  81. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  82. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  83. data/app/services/katello/pulp3/repository/docker.rb +4 -0
  84. data/app/services/katello/pulp3/repository/yum.rb +2 -1
  85. data/app/services/katello/pulp3/repository.rb +11 -9
  86. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  87. data/app/services/katello/pulp3/task.rb +3 -3
  88. data/app/services/katello/pulp3/task_group.rb +0 -6
  89. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  90. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  91. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  92. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  93. data/config/routes/api/v2.rb +2 -0
  94. data/config/routes/overrides.rb +1 -0
  95. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  96. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
  97. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  98. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  99. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  100. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  101. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  102. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  104. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  105. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  123. data/lib/katello/engine.rb +1 -0
  124. data/lib/katello/permission_creator.rb +68 -59
  125. data/lib/katello/permissions/host_permissions.rb +1 -0
  126. data/lib/katello/plugin.rb +4 -1
  127. data/lib/katello/repository_types/deb.rb +9 -1
  128. data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
  129. data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
  130. data/lib/katello/tasks/reports.rake +1 -4
  131. data/lib/katello/tasks/reset.rake +2 -1
  132. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  133. data/lib/katello/version.rb +1 -1
  134. data/locale/action_names.rb +54 -47
  135. data/locale/bn/katello.po +165 -26
  136. data/locale/cs/katello.po +164 -24
  137. data/locale/de/katello.po +165 -26
  138. data/locale/en/katello.po +164 -23
  139. data/locale/es/katello.po +165 -25
  140. data/locale/fr/katello.po +165 -25
  141. data/locale/gu/katello.po +165 -26
  142. data/locale/hi/katello.po +165 -26
  143. data/locale/it/katello.po +165 -25
  144. data/locale/ja/katello.po +165 -26
  145. data/locale/katello.pot +1036 -802
  146. data/locale/kn/katello.po +165 -26
  147. data/locale/ko/katello.po +165 -25
  148. data/locale/mr/katello.po +165 -26
  149. data/locale/or/katello.po +165 -26
  150. data/locale/pa/katello.po +165 -26
  151. data/locale/pt/katello.po +164 -23
  152. data/locale/pt_BR/katello.po +165 -25
  153. data/locale/ru/katello.po +165 -25
  154. data/locale/ta/katello.po +165 -26
  155. data/locale/te/katello.po +165 -26
  156. data/locale/zh_CN/katello.po +165 -25
  157. data/locale/zh_TW/katello.po +165 -26
  158. data/webpack/components/ActionableDetail.js +2 -1
  159. data/webpack/components/Search/Search.js +1 -1
  160. data/webpack/components/Table/MainTable.js +6 -2
  161. data/webpack/components/Table/TableWrapper.js +46 -9
  162. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  163. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  164. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  165. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  166. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  167. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  168. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  169. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  170. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  171. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  172. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  173. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  174. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  175. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  176. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  177. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  178. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  179. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
  180. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  181. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  182. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  183. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  184. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  185. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  186. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  187. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  188. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  189. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  190. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  191. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  192. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  193. metadata +69 -26
data/locale/pt/katello.po CHANGED
@@ -393,6 +393,9 @@ msgstr ""
393
393
  msgid "Adding content units"
394
394
  msgstr ""
395
395
 
396
+ msgid "Adding multiple versions of the same Puppet Module is not supported by incremental update. The following Puppet Modules have duplicate versions in the incremental update content list: %{dup_list}"
397
+ msgstr ""
398
+
396
399
  msgid "Addons"
397
400
  msgstr ""
398
401
 
@@ -497,6 +500,9 @@ msgstr ""
497
500
  msgid "Artifacts"
498
501
  msgstr ""
499
502
 
503
+ msgid "Assign system purpose attributes on one or more hosts"
504
+ msgstr ""
505
+
500
506
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
501
507
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
502
508
  msgstr[0] ""
@@ -542,9 +548,6 @@ msgstr ""
542
548
  msgid "Author"
543
549
  msgstr ""
544
550
 
545
- msgid "Auto Enablement may only be set on custom repositories."
546
- msgstr ""
547
-
548
551
  msgid "Auto Publish - Triggered by '%s'"
549
552
  msgstr ""
550
553
 
@@ -749,6 +752,9 @@ msgstr ""
749
752
  msgid "Cannot delete view while it exists in environments"
750
753
  msgstr ""
751
754
 
755
+ msgid "Cannot import a composite content view"
756
+ msgstr ""
757
+
752
758
  msgid "Cannot import a custom subscription from a redhat product."
753
759
  msgstr ""
754
760
 
@@ -824,6 +830,9 @@ msgstr ""
824
830
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
825
831
  msgstr ""
826
832
 
833
+ msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
834
+ msgstr ""
835
+
827
836
  msgid "Click here to go to the tasks page for the task."
828
837
  msgstr ""
829
838
 
@@ -951,9 +960,15 @@ msgstr ""
951
960
  msgid "Content View Version not set"
952
961
  msgstr ""
953
962
 
963
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
964
+ msgstr ""
965
+
954
966
  msgid "Content View and Environment not set for registration."
955
967
  msgstr ""
956
968
 
969
+ msgid "Content View id"
970
+ msgstr ""
971
+
957
972
  msgid "Content Views"
958
973
  msgstr ""
959
974
 
@@ -1011,10 +1026,10 @@ msgstr ""
1011
1026
  msgid "Copy an activation key"
1012
1027
  msgstr ""
1013
1028
 
1014
- msgid "Cores: %s"
1029
+ msgid "Copy version units to library"
1015
1030
  msgstr ""
1016
1031
 
1017
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1032
+ msgid "Cores: %s"
1018
1033
  msgstr ""
1019
1034
 
1020
1035
  msgid "Could not delete organization '%s'."
@@ -1026,6 +1041,9 @@ msgstr ""
1026
1041
  msgid "Could not find %{count} errata. Only found: %{found}"
1027
1042
  msgstr ""
1028
1043
 
1044
+ msgid "Could not find %{name} resource with id %{id}"
1045
+ msgstr ""
1046
+
1029
1047
  msgid "Could not find Environment with ids: %s"
1030
1048
  msgstr ""
1031
1049
 
@@ -1059,9 +1077,6 @@ msgstr ""
1059
1077
  msgid "Couldn't find %{type} Filter with id %{id}"
1060
1078
  msgstr ""
1061
1079
 
1062
- msgid "Couldn't find Content Credential '%s'"
1063
- msgstr ""
1064
-
1065
1080
  #, fuzzy
1066
1081
  msgid "Couldn't find ContentViewFilter with id=%s"
1067
1082
  msgstr "Não foi possível encontrar modelo '%s'"
@@ -1171,9 +1186,6 @@ msgstr ""
1171
1186
  msgid "Couldn't find subject of synchronization"
1172
1187
  msgstr ""
1173
1188
 
1174
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1175
- msgstr ""
1176
-
1177
1189
  msgid "Count"
1178
1190
  msgstr ""
1179
1191
 
@@ -1460,6 +1472,15 @@ msgstr ""
1460
1472
  msgid "Desired quantity of the pool"
1461
1473
  msgstr ""
1462
1474
 
1475
+ msgid "Destination Server Name required for Pulp3 repositories"
1476
+ msgstr ""
1477
+
1478
+ msgid "Destination Server name"
1479
+ msgstr ""
1480
+
1481
+ msgid "Destination Server name, required for Pulp3"
1482
+ msgstr ""
1483
+
1463
1484
  msgid "Destroy"
1464
1485
  msgstr ""
1465
1486
 
@@ -1513,6 +1534,9 @@ msgstr ""
1513
1534
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1514
1535
  msgstr ""
1515
1536
 
1537
+ msgid "Directory containing the exported Content View Version"
1538
+ msgstr ""
1539
+
1516
1540
  msgid "Disable"
1517
1541
  msgstr ""
1518
1542
 
@@ -1528,6 +1552,9 @@ msgstr ""
1528
1552
  msgid "Disable simple content access for a manifest"
1529
1553
  msgstr ""
1530
1554
 
1555
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1556
+ msgstr ""
1557
+
1531
1558
  msgid "Disconnected mode"
1532
1559
  msgstr ""
1533
1560
 
@@ -1610,6 +1637,9 @@ msgstr ""
1610
1637
  msgid "Enabled Repositories"
1611
1638
  msgstr ""
1612
1639
 
1640
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1641
+ msgstr ""
1642
+
1613
1643
  msgid "End Date"
1614
1644
  msgstr ""
1615
1645
 
@@ -1727,6 +1757,9 @@ msgstr ""
1727
1757
  msgid "Export to ISO format"
1728
1758
  msgstr ""
1729
1759
 
1760
+ msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1761
+ msgstr ""
1762
+
1730
1763
  msgid "Exported version"
1731
1764
  msgstr ""
1732
1765
 
@@ -1868,9 +1901,6 @@ msgstr ""
1868
1901
  msgid "GPG Key URL"
1869
1902
  msgstr ""
1870
1903
 
1871
- msgid "GPG Keys"
1872
- msgstr ""
1873
-
1874
1904
  msgid "Generate and Download"
1875
1905
  msgstr ""
1876
1906
 
@@ -1976,6 +2006,9 @@ msgstr ""
1976
2006
  msgid "Host content and subscription details"
1977
2007
  msgstr ""
1978
2008
 
2009
+ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
2010
+ msgstr ""
2011
+
1979
2012
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
1980
2013
  msgstr ""
1981
2014
 
@@ -2196,6 +2229,12 @@ msgstr ""
2196
2229
  msgid "Immediate"
2197
2230
  msgstr ""
2198
2231
 
2232
+ msgid "Import"
2233
+ msgstr ""
2234
+
2235
+ msgid "Import Content View Version"
2236
+ msgstr ""
2237
+
2199
2238
  msgid "Import Manifest"
2200
2239
  msgstr ""
2201
2240
 
@@ -2217,6 +2256,9 @@ msgstr ""
2217
2256
  msgid "Import a Manifest using the manifest tab above."
2218
2257
  msgstr ""
2219
2258
 
2259
+ msgid "Import a content view version"
2260
+ msgstr ""
2261
+
2220
2262
  msgid "Import facts"
2221
2263
  msgstr ""
2222
2264
 
@@ -2382,6 +2424,9 @@ msgstr ""
2382
2424
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2383
2425
  msgstr ""
2384
2426
 
2427
+ msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2428
+ msgstr ""
2429
+
2385
2430
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2386
2431
  msgstr ""
2387
2432
 
@@ -2394,6 +2439,9 @@ msgstr ""
2394
2439
  msgid "Invalid params provided - date_type must be one of %s"
2395
2440
  msgstr ""
2396
2441
 
2442
+ msgid "Invalid path specified."
2443
+ msgstr ""
2444
+
2397
2445
  msgid ""
2398
2446
  "Invalid puppet module parameters specified. \\\n"
2399
2447
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2471,9 +2519,6 @@ msgstr ""
2471
2519
  msgid "Learn more about adding Subscription Manifests"
2472
2520
  msgstr ""
2473
2521
 
2474
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2475
- msgstr ""
2476
-
2477
2522
  msgid "Library lifecycle environments may not be deleted."
2478
2523
  msgstr ""
2479
2524
 
@@ -2734,6 +2779,9 @@ msgstr ""
2734
2779
  msgid "List srpms"
2735
2780
  msgstr ""
2736
2781
 
2782
+ msgid "List subscriptions"
2783
+ msgstr ""
2784
+
2737
2785
  msgid "List sync plans"
2738
2786
  msgstr ""
2739
2787
 
@@ -2821,6 +2869,9 @@ msgstr ""
2821
2869
  msgid "Messaging connection"
2822
2870
  msgstr ""
2823
2871
 
2872
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2873
+ msgstr ""
2874
+
2824
2875
  msgid "Mismatched"
2825
2876
  msgstr ""
2826
2877
 
@@ -2964,12 +3015,18 @@ msgstr ""
2964
3015
  msgid "No hosts registered with subscription-manager found in selection."
2965
3016
  msgstr ""
2966
3017
 
3018
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3019
+ msgstr ""
3020
+
2967
3021
  msgid "No manifest file uploaded"
2968
3022
  msgstr ""
2969
3023
 
2970
3024
  msgid "No matching content views found"
2971
3025
  msgstr ""
2972
3026
 
3027
+ msgid "No matching repositories found"
3028
+ msgstr ""
3029
+
2973
3030
  msgid "No new packages installed"
2974
3031
  msgstr ""
2975
3032
 
@@ -3105,6 +3162,9 @@ msgstr ""
3105
3162
  msgid "On-disk location for exported repositories"
3106
3163
  msgstr ""
3107
3164
 
3165
+ msgid "On-disk location for pulp 3 exported repositories"
3166
+ msgstr ""
3167
+
3108
3168
  msgid "One of parameters [ %s ] required but not specified."
3109
3169
  msgstr ""
3110
3170
 
@@ -3135,6 +3195,9 @@ msgstr ""
3135
3195
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3136
3196
  msgstr ""
3137
3197
 
3198
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3199
+ msgstr ""
3200
+
3138
3201
  msgid "Organization"
3139
3202
  msgstr ""
3140
3203
 
@@ -3374,6 +3437,9 @@ msgstr ""
3374
3437
  msgid "Plan numeric identifier"
3375
3438
  msgstr ""
3376
3439
 
3440
+ msgid "Please add some repositories."
3441
+ msgstr ""
3442
+
3377
3443
  msgid "Please enter a positive number above zero"
3378
3444
  msgstr ""
3379
3445
 
@@ -3509,6 +3575,9 @@ msgstr ""
3509
3575
  msgid "Pulp"
3510
3576
  msgstr ""
3511
3577
 
3578
+ msgid "Pulp 3 export destination filepath"
3579
+ msgstr ""
3580
+
3512
3581
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3513
3582
  msgstr ""
3514
3583
 
@@ -3563,6 +3632,12 @@ msgstr ""
3563
3632
  msgid "Pulp task error"
3564
3633
  msgstr ""
3565
3634
 
3635
+ msgid "Pulp user or group unable to read '%s'."
3636
+ msgstr ""
3637
+
3638
+ msgid "Pulp user or group unable to read content in '%s'."
3639
+ msgstr ""
3640
+
3566
3641
  msgid "Pulpcore"
3567
3642
  msgstr ""
3568
3643
 
@@ -3701,6 +3776,9 @@ msgstr ""
3701
3776
  msgid "Reload data"
3702
3777
  msgstr ""
3703
3778
 
3779
+ msgid "Remote action:"
3780
+ msgstr ""
3781
+
3704
3782
  msgid "Removal of package group(s) requested: %{groups}"
3705
3783
  msgstr ""
3706
3784
 
@@ -3789,6 +3867,9 @@ msgstr ""
3789
3867
  msgid "Repo Type"
3790
3868
  msgstr ""
3791
3869
 
3870
+ msgid "Report"
3871
+ msgstr ""
3872
+
3792
3873
  #, fuzzy
3793
3874
  msgid "Repositories"
3794
3875
  msgstr "Repositórios"
@@ -3865,6 +3946,9 @@ msgstr ""
3865
3946
  msgid "Resolve Traces"
3866
3947
  msgstr ""
3867
3948
 
3949
+ msgid "Resolve traces for one or more hosts"
3950
+ msgstr ""
3951
+
3868
3952
  msgid "Resource"
3869
3953
  msgstr ""
3870
3954
 
@@ -3943,6 +4027,9 @@ msgstr ""
3943
4027
  msgid "Role"
3944
4028
  msgstr ""
3945
4029
 
4030
+ msgid "Role of host"
4031
+ msgstr ""
4032
+
3946
4033
  msgid "Run Sync Plan:"
3947
4034
  msgstr ""
3948
4035
 
@@ -4042,6 +4129,9 @@ msgstr ""
4042
4129
  msgid "Service Level (SLA)"
4043
4130
  msgstr ""
4044
4131
 
4132
+ msgid "Service level of host"
4133
+ msgstr ""
4134
+
4045
4135
  msgid "Service level to be used for autoheal"
4046
4136
  msgstr ""
4047
4137
 
@@ -4138,6 +4228,9 @@ msgstr ""
4138
4228
  msgid "Show the available repository types"
4139
4229
  msgstr ""
4140
4230
 
4231
+ msgid "Show the export history for a content view version"
4232
+ msgstr ""
4233
+
4141
4234
  msgid "Shows status of Katello system and it's subcomponents"
4142
4235
  msgstr ""
4143
4236
 
@@ -4147,6 +4240,12 @@ msgstr ""
4147
4240
  msgid "Simple Content Access"
4148
4241
  msgstr ""
4149
4242
 
4243
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4244
+ msgstr ""
4245
+
4246
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4247
+ msgstr ""
4248
+
4150
4249
  msgid "Size of file to upload"
4151
4250
  msgstr ""
4152
4251
 
@@ -4383,6 +4482,9 @@ msgstr ""
4383
4482
  msgid "Sync plan identifier to attach"
4384
4483
  msgstr ""
4385
4484
 
4485
+ msgid "Sync state"
4486
+ msgstr ""
4487
+
4386
4488
  msgid "Synced Content"
4387
4489
  msgstr ""
4388
4490
 
@@ -4492,6 +4594,9 @@ msgstr ""
4492
4594
  msgid "The id of the host to alter"
4493
4595
  msgstr ""
4494
4596
 
4597
+ msgid "The import path must be in a subdirectory under '%s'."
4598
+ msgstr ""
4599
+
4495
4600
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4496
4601
  msgstr ""
4497
4602
 
@@ -4540,6 +4645,9 @@ msgstr ""
4540
4645
  msgid "The requested resource does not belong to the specified organization"
4541
4646
  msgstr ""
4542
4647
 
4648
+ msgid "The requested traces were not found for this host"
4649
+ msgstr ""
4650
+
4543
4651
  msgid "The selected content source and lifecycle environment do not match"
4544
4652
  msgstr ""
4545
4653
 
@@ -4602,6 +4710,9 @@ msgstr ""
4602
4710
  msgid "There's no running synchronization for this smart proxy."
4603
4711
  msgstr ""
4604
4712
 
4713
+ msgid "This API endpoint is only valid for Pulp 3 repositories."
4714
+ msgstr ""
4715
+
4605
4716
  msgid "This Host is not currently registered with subscription-manager."
4606
4717
  msgstr ""
4607
4718
 
@@ -4740,10 +4851,13 @@ msgstr ""
4740
4851
  msgid "Unable to detect puppet path"
4741
4852
  msgstr ""
4742
4853
 
4743
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4854
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4744
4855
  msgstr ""
4745
4856
 
4746
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4857
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4858
+ msgstr ""
4859
+
4860
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4747
4861
  msgstr ""
4748
4862
 
4749
4863
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -4959,6 +5073,12 @@ msgstr ""
4959
5073
  msgid "Updating Package..."
4960
5074
  msgstr ""
4961
5075
 
5076
+ msgid "Updating System Purpose for host"
5077
+ msgstr ""
5078
+
5079
+ msgid "Updating System Purpose for host %s"
5080
+ msgstr ""
5081
+
4962
5082
  msgid "Updating package group..."
4963
5083
  msgstr ""
4964
5084
 
@@ -5013,9 +5133,15 @@ msgstr ""
5013
5133
  msgid "Usage Type"
5014
5134
  msgstr ""
5015
5135
 
5136
+ msgid "Usage of host"
5137
+ msgstr ""
5138
+
5016
5139
  msgid "Use remote execution by default"
5017
5140
  msgstr ""
5018
5141
 
5142
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5143
+ msgstr ""
5144
+
5019
5145
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5020
5146
  msgstr ""
5021
5147
 
@@ -5040,6 +5166,15 @@ msgstr ""
5040
5166
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5041
5167
  msgstr ""
5042
5168
 
5169
+ msgid "Verify checksum"
5170
+ msgstr ""
5171
+
5172
+ msgid "Verify checksum for one or more products"
5173
+ msgstr ""
5174
+
5175
+ msgid "Verify checksum of repository contents"
5176
+ msgstr ""
5177
+
5043
5178
  msgid "Version"
5044
5179
  msgstr ""
5045
5180
 
@@ -5055,7 +5190,7 @@ msgstr ""
5055
5190
  msgid "Virtual"
5056
5191
  msgstr ""
5057
5192
 
5058
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5193
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5059
5194
  msgstr ""
5060
5195
 
5061
5196
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5124,6 +5259,9 @@ msgstr ""
5124
5259
  msgid "You currently don't have any Content Views."
5125
5260
  msgstr ""
5126
5261
 
5262
+ msgid "You currently don't have any repositories to add to this content view."
5263
+ msgstr ""
5264
+
5127
5265
  msgid "You do not have permissions to delete %s"
5128
5266
  msgstr ""
5129
5267
 
@@ -5540,9 +5678,6 @@ msgstr ""
5540
5678
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5541
5679
  msgstr ""
5542
5680
 
5543
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5544
- msgstr ""
5545
-
5546
5681
  msgid "if true, will ignore the globally configured proxy when syncing"
5547
5682
  msgstr ""
5548
5683
 
@@ -5616,6 +5751,9 @@ msgstr ""
5616
5751
  msgid "maximum size of each ISO in MB"
5617
5752
  msgstr ""
5618
5753
 
5754
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5755
+ msgstr ""
5756
+
5619
5757
  msgid "may not be less than the number of hosts associated with the host collection."
5620
5758
  msgstr ""
5621
5759
 
@@ -5897,6 +6035,9 @@ msgstr ""
5897
6035
  msgid "the uuid of the puppet module to associate"
5898
6036
  msgstr ""
5899
6037
 
6038
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6039
+ msgstr ""
6040
+
5900
6041
  msgid "true if the latest version of the component's content view is desired"
5901
6042
  msgstr ""
5902
6043