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/hi/katello.po CHANGED
@@ -464,6 +464,9 @@ msgstr ""
464
464
  msgid "Adding content units"
465
465
  msgstr ""
466
466
 
467
+ 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}"
468
+ msgstr ""
469
+
467
470
  msgid "Addons"
468
471
  msgstr ""
469
472
 
@@ -568,6 +571,9 @@ msgstr ""
568
571
  msgid "Artifacts"
569
572
  msgstr ""
570
573
 
574
+ msgid "Assign system purpose attributes on one or more hosts"
575
+ msgstr ""
576
+
571
577
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
572
578
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
573
579
  msgstr[0] ""
@@ -616,9 +622,6 @@ msgstr ""
616
622
  msgid "Author"
617
623
  msgstr ""
618
624
 
619
- msgid "Auto Enablement may only be set on custom repositories."
620
- msgstr ""
621
-
622
625
  msgid "Auto Publish - Triggered by '%s'"
623
626
  msgstr ""
624
627
 
@@ -841,6 +844,9 @@ msgstr ""
841
844
  msgid "Cannot delete view while it exists in environments"
842
845
  msgstr "दूसरे वातावरण के नमूने को बदल नहीं सकते हैं"
843
846
 
847
+ msgid "Cannot import a composite content view"
848
+ msgstr ""
849
+
844
850
  msgid "Cannot import a custom subscription from a redhat product."
845
851
  msgstr ""
846
852
 
@@ -917,6 +923,9 @@ msgstr ""
917
923
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
918
924
  msgstr ""
919
925
 
926
+ msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
927
+ msgstr ""
928
+
920
929
  msgid "Click here to go to the tasks page for the task."
921
930
  msgstr ""
922
931
 
@@ -1048,9 +1057,15 @@ msgstr ""
1048
1057
  msgid "Content View Version not set"
1049
1058
  msgstr ""
1050
1059
 
1060
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1061
+ msgstr ""
1062
+
1051
1063
  msgid "Content View and Environment not set for registration."
1052
1064
  msgstr ""
1053
1065
 
1066
+ msgid "Content View id"
1067
+ msgstr ""
1068
+
1054
1069
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1055
1070
  msgid "Content Views"
1056
1071
  msgstr "सामग्री दृश्य"
@@ -1111,13 +1126,13 @@ msgstr ""
1111
1126
  msgid "Copy an activation key"
1112
1127
  msgstr "सक्रियकरण कुंजी"
1113
1128
 
1129
+ msgid "Copy version units to library"
1130
+ msgstr ""
1131
+
1114
1132
  #, fuzzy
1115
1133
  msgid "Cores: %s"
1116
1134
  msgstr "कारण: %s"
1117
1135
 
1118
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1119
- msgstr ""
1120
-
1121
1136
  # translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
1122
1137
  msgid "Could not delete organization '%s'."
1123
1138
  msgstr "'%s' संगठन मिटा नहीं सका."
@@ -1128,6 +1143,9 @@ msgstr ""
1128
1143
  msgid "Could not find %{count} errata. Only found: %{found}"
1129
1144
  msgstr ""
1130
1145
 
1146
+ msgid "Could not find %{name} resource with id %{id}"
1147
+ msgstr ""
1148
+
1131
1149
  msgid "Could not find Environment with ids: %s"
1132
1150
  msgstr ""
1133
1151
 
@@ -1161,9 +1179,6 @@ msgstr ""
1161
1179
  msgid "Couldn't find %{type} Filter with id %{id}"
1162
1180
  msgstr ""
1163
1181
 
1164
- msgid "Couldn't find Content Credential '%s'"
1165
- msgstr ""
1166
-
1167
1182
  #, fuzzy
1168
1183
  msgid "Couldn't find ContentViewFilter with id=%s"
1169
1184
  msgstr "आईडी '%s' के साथ उत्पाद नहीं ढूँढ़ सका"
@@ -1274,10 +1289,6 @@ msgstr ""
1274
1289
  msgid "Couldn't find subject of synchronization"
1275
1290
  msgstr "तुल्यकालन का विषय नहीं मिल सका"
1276
1291
 
1277
- # translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
1278
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1279
- msgstr "सिंक योजना '%{plan}' को संगठन '%{org}' में नहीं ढूँढ़ सका"
1280
-
1281
1292
  msgid "Count"
1282
1293
  msgstr ""
1283
1294
 
@@ -1564,6 +1575,15 @@ msgstr ""
1564
1575
  msgid "Desired quantity of the pool"
1565
1576
  msgstr ""
1566
1577
 
1578
+ msgid "Destination Server Name required for Pulp3 repositories"
1579
+ msgstr ""
1580
+
1581
+ msgid "Destination Server name"
1582
+ msgstr ""
1583
+
1584
+ msgid "Destination Server name, required for Pulp3"
1585
+ msgstr ""
1586
+
1567
1587
  msgid "Destroy"
1568
1588
  msgstr ""
1569
1589
 
@@ -1615,6 +1635,9 @@ msgstr ""
1615
1635
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1616
1636
  msgstr ""
1617
1637
 
1638
+ msgid "Directory containing the exported Content View Version"
1639
+ msgstr ""
1640
+
1618
1641
  msgid "Disable"
1619
1642
  msgstr ""
1620
1643
 
@@ -1630,6 +1653,9 @@ msgstr ""
1630
1653
  msgid "Disable simple content access for a manifest"
1631
1654
  msgstr ""
1632
1655
 
1656
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1657
+ msgstr ""
1658
+
1633
1659
  msgid "Disconnected mode"
1634
1660
  msgstr ""
1635
1661
 
@@ -1714,6 +1740,9 @@ msgstr ""
1714
1740
  msgid "Enabled Repositories"
1715
1741
  msgstr ""
1716
1742
 
1743
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1744
+ msgstr ""
1745
+
1717
1746
  msgid "End Date"
1718
1747
  msgstr ""
1719
1748
 
@@ -1849,6 +1878,9 @@ msgstr ""
1849
1878
  msgid "Export to ISO format"
1850
1879
  msgstr ""
1851
1880
 
1881
+ msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1882
+ msgstr ""
1883
+
1852
1884
  msgid "Exported version"
1853
1885
  msgstr ""
1854
1886
 
@@ -1992,10 +2024,6 @@ msgstr ""
1992
2024
  msgid "GPG Key URL"
1993
2025
  msgstr ""
1994
2026
 
1995
- # translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
1996
- msgid "GPG Keys"
1997
- msgstr "जीपीजी कुंजी"
1998
-
1999
2027
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
2000
2028
  msgid "Generate and Download"
2001
2029
  msgstr "उत्पन्न करें और डाउनलोड़ करें"
@@ -2103,6 +2131,9 @@ msgstr ""
2103
2131
  msgid "Host content and subscription details"
2104
2132
  msgstr ""
2105
2133
 
2134
+ 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."
2135
+ msgstr ""
2136
+
2106
2137
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2107
2138
  msgstr ""
2108
2139
 
@@ -2323,6 +2354,12 @@ msgstr ""
2323
2354
  msgid "Immediate"
2324
2355
  msgstr ""
2325
2356
 
2357
+ msgid "Import"
2358
+ msgstr ""
2359
+
2360
+ msgid "Import Content View Version"
2361
+ msgstr ""
2362
+
2326
2363
  #, fuzzy
2327
2364
  msgid "Import Manifest"
2328
2365
  msgstr "आयात करें"
@@ -2345,6 +2382,9 @@ msgstr ""
2345
2382
  msgid "Import a Manifest using the manifest tab above."
2346
2383
  msgstr ""
2347
2384
 
2385
+ msgid "Import a content view version"
2386
+ msgstr ""
2387
+
2348
2388
  #, fuzzy
2349
2389
  msgid "Import facts"
2350
2390
  msgstr "आयात करें"
@@ -2522,6 +2562,9 @@ msgstr ""
2522
2562
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2523
2563
  msgstr ""
2524
2564
 
2565
+ msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2566
+ msgstr ""
2567
+
2525
2568
  # translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
2526
2569
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2527
2570
  msgstr "इस ऑपरेशन के लिए आग्रह में अवैध पैरामीटर प्रेषित. किसी तंत्र प्रशासक को संपर्क करें."
@@ -2536,6 +2579,9 @@ msgstr ""
2536
2579
  msgid "Invalid params provided - date_type must be one of %s"
2537
2580
  msgstr ""
2538
2581
 
2582
+ msgid "Invalid path specified."
2583
+ msgstr ""
2584
+
2539
2585
  msgid ""
2540
2586
  "Invalid puppet module parameters specified. \\\n"
2541
2587
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2613,9 +2659,6 @@ msgstr ""
2613
2659
  msgid "Learn more about adding Subscription Manifests"
2614
2660
  msgstr ""
2615
2661
 
2616
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2617
- msgstr ""
2618
-
2619
2662
  #, fuzzy
2620
2663
  msgid "Library lifecycle environments may not be deleted."
2621
2664
  msgstr "वातावरण '%s' मिटाया गया था."
@@ -2870,6 +2913,9 @@ msgstr ""
2870
2913
  msgid "List srpms"
2871
2914
  msgstr ""
2872
2915
 
2916
+ msgid "List subscriptions"
2917
+ msgstr ""
2918
+
2873
2919
  msgid "List sync plans"
2874
2920
  msgstr ""
2875
2921
 
@@ -2958,6 +3004,9 @@ msgstr "संदेश"
2958
3004
  msgid "Messaging connection"
2959
3005
  msgstr ""
2960
3006
 
3007
+ msgid "Metadata taken from the upstream export history for this Content View Version"
3008
+ msgstr ""
3009
+
2961
3010
  msgid "Mismatched"
2962
3011
  msgstr ""
2963
3012
 
@@ -3109,12 +3158,18 @@ msgstr ""
3109
3158
  msgid "No hosts registered with subscription-manager found in selection."
3110
3159
  msgstr ""
3111
3160
 
3161
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3162
+ msgstr ""
3163
+
3112
3164
  msgid "No manifest file uploaded"
3113
3165
  msgstr ""
3114
3166
 
3115
3167
  msgid "No matching content views found"
3116
3168
  msgstr ""
3117
3169
 
3170
+ msgid "No matching repositories found"
3171
+ msgstr ""
3172
+
3118
3173
  # translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
3119
3174
  msgid "No new packages installed"
3120
3175
  msgstr "कोई नया संकुल संस्थापित नहीं किया गया"
@@ -3257,6 +3312,9 @@ msgstr ""
3257
3312
  msgid "On-disk location for exported repositories"
3258
3313
  msgstr ""
3259
3314
 
3315
+ msgid "On-disk location for pulp 3 exported repositories"
3316
+ msgstr ""
3317
+
3260
3318
  #, fuzzy
3261
3319
  msgid "One of parameters [ %s ] required but not specified."
3262
3320
  msgstr "organization_id जरूरी लेकिन निर्दिष्ट नहीं."
@@ -3290,6 +3348,9 @@ msgstr ""
3290
3348
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3291
3349
  msgstr ""
3292
3350
 
3351
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3352
+ msgstr ""
3353
+
3293
3354
  # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
3294
3355
  msgid "Organization"
3295
3356
  msgstr "संगठन"
@@ -3580,6 +3641,9 @@ msgstr "भौतिक"
3580
3641
  msgid "Plan numeric identifier"
3581
3642
  msgstr ""
3582
3643
 
3644
+ msgid "Please add some repositories."
3645
+ msgstr ""
3646
+
3583
3647
  msgid "Please enter a positive number above zero"
3584
3648
  msgstr ""
3585
3649
 
@@ -3714,6 +3778,9 @@ msgstr ""
3714
3778
  msgid "Pulp"
3715
3779
  msgstr ""
3716
3780
 
3781
+ msgid "Pulp 3 export destination filepath"
3782
+ msgstr ""
3783
+
3717
3784
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3718
3785
  msgstr ""
3719
3786
 
@@ -3768,6 +3835,12 @@ msgstr ""
3768
3835
  msgid "Pulp task error"
3769
3836
  msgstr ""
3770
3837
 
3838
+ msgid "Pulp user or group unable to read '%s'."
3839
+ msgstr ""
3840
+
3841
+ msgid "Pulp user or group unable to read content in '%s'."
3842
+ msgstr ""
3843
+
3771
3844
  msgid "Pulpcore"
3772
3845
  msgstr ""
3773
3846
 
@@ -3910,6 +3983,9 @@ msgstr ""
3910
3983
  msgid "Reload data"
3911
3984
  msgstr ""
3912
3985
 
3986
+ msgid "Remote action:"
3987
+ msgstr ""
3988
+
3913
3989
  msgid "Removal of package group(s) requested: %{groups}"
3914
3990
  msgstr ""
3915
3991
 
@@ -4001,6 +4077,9 @@ msgstr "संकुल समूह हटा रहा है..."
4001
4077
  msgid "Repo Type"
4002
4078
  msgstr ""
4003
4079
 
4080
+ msgid "Report"
4081
+ msgstr ""
4082
+
4004
4083
  # translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
4005
4084
  msgid "Repositories"
4006
4085
  msgstr "रिपॉजिटरी"
@@ -4079,6 +4158,9 @@ msgstr ""
4079
4158
  msgid "Resolve Traces"
4080
4159
  msgstr ""
4081
4160
 
4161
+ msgid "Resolve traces for one or more hosts"
4162
+ msgstr ""
4163
+
4082
4164
  msgid "Resource"
4083
4165
  msgstr ""
4084
4166
 
@@ -4158,6 +4240,9 @@ msgstr ""
4158
4240
  msgid "Role"
4159
4241
  msgstr ""
4160
4242
 
4243
+ msgid "Role of host"
4244
+ msgstr ""
4245
+
4161
4246
  msgid "Run Sync Plan:"
4162
4247
  msgstr ""
4163
4248
 
@@ -4262,6 +4347,9 @@ msgstr "सेवा स्तर %s"
4262
4347
  msgid "Service Level (SLA)"
4263
4348
  msgstr ""
4264
4349
 
4350
+ msgid "Service level of host"
4351
+ msgstr ""
4352
+
4265
4353
  msgid "Service level to be used for autoheal"
4266
4354
  msgstr ""
4267
4355
 
@@ -4356,6 +4444,9 @@ msgstr ""
4356
4444
  msgid "Show the available repository types"
4357
4445
  msgstr ""
4358
4446
 
4447
+ msgid "Show the export history for a content view version"
4448
+ msgstr ""
4449
+
4359
4450
  msgid "Shows status of Katello system and it's subcomponents"
4360
4451
  msgstr ""
4361
4452
 
@@ -4365,6 +4456,12 @@ msgstr ""
4365
4456
  msgid "Simple Content Access"
4366
4457
  msgstr ""
4367
4458
 
4459
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4460
+ msgstr ""
4461
+
4462
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4463
+ msgstr ""
4464
+
4368
4465
  msgid "Size of file to upload"
4369
4466
  msgstr ""
4370
4467
 
@@ -4615,6 +4712,9 @@ msgstr ""
4615
4712
  msgid "Sync plan identifier to attach"
4616
4713
  msgstr ""
4617
4714
 
4715
+ msgid "Sync state"
4716
+ msgstr ""
4717
+
4618
4718
  msgid "Synced Content"
4619
4719
  msgstr ""
4620
4720
 
@@ -4730,6 +4830,9 @@ msgstr ""
4730
4830
  msgid "The id of the host to alter"
4731
4831
  msgstr ""
4732
4832
 
4833
+ msgid "The import path must be in a subdirectory under '%s'."
4834
+ msgstr ""
4835
+
4733
4836
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4734
4837
  msgstr ""
4735
4838
 
@@ -4779,6 +4882,9 @@ msgstr ""
4779
4882
  msgid "The requested resource does not belong to the specified organization"
4780
4883
  msgstr ""
4781
4884
 
4885
+ msgid "The requested traces were not found for this host"
4886
+ msgstr ""
4887
+
4782
4888
  msgid "The selected content source and lifecycle environment do not match"
4783
4889
  msgstr ""
4784
4890
 
@@ -4842,6 +4948,9 @@ msgstr ""
4842
4948
  msgid "There's no running synchronization for this smart proxy."
4843
4949
  msgstr ""
4844
4950
 
4951
+ msgid "This API endpoint is only valid for Pulp 3 repositories."
4952
+ msgstr ""
4953
+
4845
4954
  msgid "This Host is not currently registered with subscription-manager."
4846
4955
  msgstr ""
4847
4956
 
@@ -4981,10 +5090,13 @@ msgstr ""
4981
5090
  msgid "Unable to detect puppet path"
4982
5091
  msgstr ""
4983
5092
 
4984
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
5093
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4985
5094
  msgstr ""
4986
5095
 
4987
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5096
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5097
+ msgstr ""
5098
+
5099
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4988
5100
  msgstr ""
4989
5101
 
4990
5102
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -5201,6 +5313,12 @@ msgstr ""
5201
5313
  msgid "Updating Package..."
5202
5314
  msgstr "संकुल अद्यतन कर रहा है..."
5203
5315
 
5316
+ msgid "Updating System Purpose for host"
5317
+ msgstr ""
5318
+
5319
+ msgid "Updating System Purpose for host %s"
5320
+ msgstr ""
5321
+
5204
5322
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
5205
5323
  msgid "Updating package group..."
5206
5324
  msgstr "संकुल समूह अद्यतन कर रहा है..."
@@ -5258,9 +5376,15 @@ msgstr ""
5258
5376
  msgid "Usage Type"
5259
5377
  msgstr ""
5260
5378
 
5379
+ msgid "Usage of host"
5380
+ msgstr ""
5381
+
5261
5382
  msgid "Use remote execution by default"
5262
5383
  msgstr ""
5263
5384
 
5385
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5386
+ msgstr ""
5387
+
5264
5388
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5265
5389
  msgstr ""
5266
5390
 
@@ -5285,6 +5409,15 @@ msgstr ""
5285
5409
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5286
5410
  msgstr ""
5287
5411
 
5412
+ msgid "Verify checksum"
5413
+ msgstr ""
5414
+
5415
+ msgid "Verify checksum for one or more products"
5416
+ msgstr ""
5417
+
5418
+ msgid "Verify checksum of repository contents"
5419
+ msgstr ""
5420
+
5288
5421
  msgid "Version"
5289
5422
  msgstr ""
5290
5423
 
@@ -5302,7 +5435,7 @@ msgstr ""
5302
5435
  msgid "Virtual"
5303
5436
  msgstr "आभासी"
5304
5437
 
5305
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5438
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5306
5439
  msgstr ""
5307
5440
 
5308
5441
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5373,6 +5506,9 @@ msgstr "आपके पास उपयोक्ता %s के लिए त
5373
5506
  msgid "You currently don't have any Content Views."
5374
5507
  msgstr ""
5375
5508
 
5509
+ msgid "You currently don't have any repositories to add to this content view."
5510
+ msgstr ""
5511
+
5376
5512
  msgid "You do not have permissions to delete %s"
5377
5513
  msgstr ""
5378
5514
 
@@ -5810,9 +5946,6 @@ msgstr ""
5810
5946
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5811
5947
  msgstr ""
5812
5948
 
5813
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5814
- msgstr ""
5815
-
5816
5949
  msgid "if true, will ignore the globally configured proxy when syncing"
5817
5950
  msgstr ""
5818
5951
 
@@ -5892,6 +6025,9 @@ msgstr ""
5892
6025
  msgid "maximum size of each ISO in MB"
5893
6026
  msgstr ""
5894
6027
 
6028
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
6029
+ msgstr ""
6030
+
5895
6031
  msgid "may not be less than the number of hosts associated with the host collection."
5896
6032
  msgstr ""
5897
6033
 
@@ -6177,6 +6313,9 @@ msgstr ""
6177
6313
  msgid "the uuid of the puppet module to associate"
6178
6314
  msgstr ""
6179
6315
 
6316
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6317
+ msgstr ""
6318
+
6180
6319
  msgid "true if the latest version of the component's content view is desired"
6181
6320
  msgstr ""
6182
6321