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/mr/katello.po CHANGED
@@ -463,6 +463,9 @@ msgstr ""
463
463
  msgid "Adding content units"
464
464
  msgstr ""
465
465
 
466
+ 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}"
467
+ msgstr ""
468
+
466
469
  msgid "Addons"
467
470
  msgstr ""
468
471
 
@@ -567,6 +570,9 @@ msgstr ""
567
570
  msgid "Artifacts"
568
571
  msgstr ""
569
572
 
573
+ msgid "Assign system purpose attributes on one or more hosts"
574
+ msgstr ""
575
+
570
576
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
571
577
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
572
578
  msgstr[0] ""
@@ -615,9 +621,6 @@ msgstr ""
615
621
  msgid "Author"
616
622
  msgstr ""
617
623
 
618
- msgid "Auto Enablement may only be set on custom repositories."
619
- msgstr ""
620
-
621
624
  msgid "Auto Publish - Triggered by '%s'"
622
625
  msgstr ""
623
626
 
@@ -840,6 +843,9 @@ msgstr ""
840
843
  msgid "Cannot delete view while it exists in environments"
841
844
  msgstr "दुसरे वातावरण असणारे टेम्प्लेट संपादित करणे अशक्य"
842
845
 
846
+ msgid "Cannot import a composite content view"
847
+ msgstr ""
848
+
843
849
  msgid "Cannot import a custom subscription from a redhat product."
844
850
  msgstr ""
845
851
 
@@ -916,6 +922,9 @@ msgstr ""
916
922
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
917
923
  msgstr ""
918
924
 
925
+ msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
926
+ msgstr ""
927
+
919
928
  msgid "Click here to go to the tasks page for the task."
920
929
  msgstr ""
921
930
 
@@ -1046,9 +1055,15 @@ msgstr ""
1046
1055
  msgid "Content View Version not set"
1047
1056
  msgstr ""
1048
1057
 
1058
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1059
+ msgstr ""
1060
+
1049
1061
  msgid "Content View and Environment not set for registration."
1050
1062
  msgstr ""
1051
1063
 
1064
+ msgid "Content View id"
1065
+ msgstr ""
1066
+
1052
1067
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1053
1068
  msgid "Content Views"
1054
1069
  msgstr "अंतर्भुत माहिती दृष्य"
@@ -1109,13 +1124,13 @@ msgstr ""
1109
1124
  msgid "Copy an activation key"
1110
1125
  msgstr "ॲक्टिवेशन किज्"
1111
1126
 
1127
+ msgid "Copy version units to library"
1128
+ msgstr ""
1129
+
1112
1130
  #, fuzzy
1113
1131
  msgid "Cores: %s"
1114
1132
  msgstr "कारण: %s"
1115
1133
 
1116
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1117
- msgstr ""
1118
-
1119
1134
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
1120
1135
  msgid "Could not delete organization '%s'."
1121
1136
  msgstr "संस्था '%s' नष्ट करणे अशक्य."
@@ -1126,6 +1141,9 @@ msgstr ""
1126
1141
  msgid "Could not find %{count} errata. Only found: %{found}"
1127
1142
  msgstr ""
1128
1143
 
1144
+ msgid "Could not find %{name} resource with id %{id}"
1145
+ msgstr ""
1146
+
1129
1147
  msgid "Could not find Environment with ids: %s"
1130
1148
  msgstr ""
1131
1149
 
@@ -1159,9 +1177,6 @@ msgstr ""
1159
1177
  msgid "Couldn't find %{type} Filter with id %{id}"
1160
1178
  msgstr ""
1161
1179
 
1162
- msgid "Couldn't find Content Credential '%s'"
1163
- msgstr ""
1164
-
1165
1180
  #, fuzzy
1166
1181
  msgid "Couldn't find ContentViewFilter with id=%s"
1167
1182
  msgstr "id '%s' सह उत्पादन आढळले नाही"
@@ -1272,10 +1287,6 @@ msgstr ""
1272
1287
  msgid "Couldn't find subject of synchronization"
1273
1288
  msgstr "सिंक्रोनाइजेशनचा विषय आढळले नाही"
1274
1289
 
1275
- # translation auto-copied from project CFSE, version sam-1.2, document app
1276
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1277
- msgstr "सिंक प्लॅन '%{plan}' शोधणे अशक्य, '%{org}' संस्थामध्ये"
1278
-
1279
1290
  msgid "Count"
1280
1291
  msgstr ""
1281
1292
 
@@ -1562,6 +1573,15 @@ msgstr ""
1562
1573
  msgid "Desired quantity of the pool"
1563
1574
  msgstr ""
1564
1575
 
1576
+ msgid "Destination Server Name required for Pulp3 repositories"
1577
+ msgstr ""
1578
+
1579
+ msgid "Destination Server name"
1580
+ msgstr ""
1581
+
1582
+ msgid "Destination Server name, required for Pulp3"
1583
+ msgstr ""
1584
+
1565
1585
  msgid "Destroy"
1566
1586
  msgstr ""
1567
1587
 
@@ -1613,6 +1633,9 @@ msgstr ""
1613
1633
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1614
1634
  msgstr ""
1615
1635
 
1636
+ msgid "Directory containing the exported Content View Version"
1637
+ msgstr ""
1638
+
1616
1639
  msgid "Disable"
1617
1640
  msgstr ""
1618
1641
 
@@ -1628,6 +1651,9 @@ msgstr ""
1628
1651
  msgid "Disable simple content access for a manifest"
1629
1652
  msgstr ""
1630
1653
 
1654
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1655
+ msgstr ""
1656
+
1631
1657
  msgid "Disconnected mode"
1632
1658
  msgstr ""
1633
1659
 
@@ -1712,6 +1738,9 @@ msgstr ""
1712
1738
  msgid "Enabled Repositories"
1713
1739
  msgstr ""
1714
1740
 
1741
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1742
+ msgstr ""
1743
+
1715
1744
  msgid "End Date"
1716
1745
  msgstr ""
1717
1746
 
@@ -1841,6 +1870,9 @@ msgstr ""
1841
1870
  msgid "Export to ISO format"
1842
1871
  msgstr ""
1843
1872
 
1873
+ msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1874
+ msgstr ""
1875
+
1844
1876
  msgid "Exported version"
1845
1877
  msgstr ""
1846
1878
 
@@ -1984,10 +2016,6 @@ msgstr ""
1984
2016
  msgid "GPG Key URL"
1985
2017
  msgstr ""
1986
2018
 
1987
- # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
1988
- msgid "GPG Keys"
1989
- msgstr "GPG किज्"
1990
-
1991
2019
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1992
2020
  msgid "Generate and Download"
1993
2021
  msgstr "निर्माण व डाऊनलोड करा"
@@ -2095,6 +2123,9 @@ msgstr ""
2095
2123
  msgid "Host content and subscription details"
2096
2124
  msgstr ""
2097
2125
 
2126
+ 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."
2127
+ msgstr ""
2128
+
2098
2129
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2099
2130
  msgstr ""
2100
2131
 
@@ -2315,6 +2346,12 @@ msgstr ""
2315
2346
  msgid "Immediate"
2316
2347
  msgstr ""
2317
2348
 
2349
+ msgid "Import"
2350
+ msgstr ""
2351
+
2352
+ msgid "Import Content View Version"
2353
+ msgstr ""
2354
+
2318
2355
  #, fuzzy
2319
2356
  msgid "Import Manifest"
2320
2357
  msgstr "आयात करा"
@@ -2337,6 +2374,9 @@ msgstr ""
2337
2374
  msgid "Import a Manifest using the manifest tab above."
2338
2375
  msgstr ""
2339
2376
 
2377
+ msgid "Import a content view version"
2378
+ msgstr ""
2379
+
2340
2380
  #, fuzzy
2341
2381
  msgid "Import facts"
2342
2382
  msgstr "आयात करा"
@@ -2514,6 +2554,9 @@ msgstr ""
2514
2554
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2515
2555
  msgstr ""
2516
2556
 
2557
+ msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2558
+ msgstr ""
2559
+
2517
2560
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
2518
2561
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2519
2562
  msgstr "या कार्यकरीता विनंतीमध्ये अवैध घटके पाठवले. कृपया प्रणाली प्रशासकाशी संपर्क करा."
@@ -2528,6 +2571,9 @@ msgstr ""
2528
2571
  msgid "Invalid params provided - date_type must be one of %s"
2529
2572
  msgstr ""
2530
2573
 
2574
+ msgid "Invalid path specified."
2575
+ msgstr ""
2576
+
2531
2577
  msgid ""
2532
2578
  "Invalid puppet module parameters specified. \\\n"
2533
2579
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2605,9 +2651,6 @@ msgstr ""
2605
2651
  msgid "Learn more about adding Subscription Manifests"
2606
2652
  msgstr ""
2607
2653
 
2608
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2609
- msgstr ""
2610
-
2611
2654
  #, fuzzy
2612
2655
  msgid "Library lifecycle environments may not be deleted."
2613
2656
  msgstr "वातावरण '%s' नष्ट केले."
@@ -2862,6 +2905,9 @@ msgstr ""
2862
2905
  msgid "List srpms"
2863
2906
  msgstr ""
2864
2907
 
2908
+ msgid "List subscriptions"
2909
+ msgstr ""
2910
+
2865
2911
  msgid "List sync plans"
2866
2912
  msgstr ""
2867
2913
 
@@ -2950,6 +2996,9 @@ msgstr "संदेश"
2950
2996
  msgid "Messaging connection"
2951
2997
  msgstr ""
2952
2998
 
2999
+ msgid "Metadata taken from the upstream export history for this Content View Version"
3000
+ msgstr ""
3001
+
2953
3002
  msgid "Mismatched"
2954
3003
  msgstr ""
2955
3004
 
@@ -3101,12 +3150,18 @@ msgstr ""
3101
3150
  msgid "No hosts registered with subscription-manager found in selection."
3102
3151
  msgstr ""
3103
3152
 
3153
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3154
+ msgstr ""
3155
+
3104
3156
  msgid "No manifest file uploaded"
3105
3157
  msgstr ""
3106
3158
 
3107
3159
  msgid "No matching content views found"
3108
3160
  msgstr ""
3109
3161
 
3162
+ msgid "No matching repositories found"
3163
+ msgstr ""
3164
+
3110
3165
  msgid "No new packages installed"
3111
3166
  msgstr "नवीन संकुले प्रतिष्ठापीत झाले नाही"
3112
3167
 
@@ -3246,6 +3301,9 @@ msgstr ""
3246
3301
  msgid "On-disk location for exported repositories"
3247
3302
  msgstr ""
3248
3303
 
3304
+ msgid "On-disk location for pulp 3 exported repositories"
3305
+ msgstr ""
3306
+
3249
3307
  #, fuzzy
3250
3308
  msgid "One of parameters [ %s ] required but not specified."
3251
3309
  msgstr "organization_id आवश्यक परंतु निर्देशीत केले नाही."
@@ -3279,6 +3337,9 @@ msgstr ""
3279
3337
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3280
3338
  msgstr ""
3281
3339
 
3340
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3341
+ msgstr ""
3342
+
3282
3343
  # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
3283
3344
  msgid "Organization"
3284
3345
  msgstr "संस्था"
@@ -3554,6 +3615,9 @@ msgstr "फिजिकल"
3554
3615
  msgid "Plan numeric identifier"
3555
3616
  msgstr ""
3556
3617
 
3618
+ msgid "Please add some repositories."
3619
+ msgstr ""
3620
+
3557
3621
  msgid "Please enter a positive number above zero"
3558
3622
  msgstr ""
3559
3623
 
@@ -3688,6 +3752,9 @@ msgstr ""
3688
3752
  msgid "Pulp"
3689
3753
  msgstr ""
3690
3754
 
3755
+ msgid "Pulp 3 export destination filepath"
3756
+ msgstr ""
3757
+
3691
3758
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3692
3759
  msgstr ""
3693
3760
 
@@ -3742,6 +3809,12 @@ msgstr ""
3742
3809
  msgid "Pulp task error"
3743
3810
  msgstr ""
3744
3811
 
3812
+ msgid "Pulp user or group unable to read '%s'."
3813
+ msgstr ""
3814
+
3815
+ msgid "Pulp user or group unable to read content in '%s'."
3816
+ msgstr ""
3817
+
3745
3818
  msgid "Pulpcore"
3746
3819
  msgstr ""
3747
3820
 
@@ -3884,6 +3957,9 @@ msgstr ""
3884
3957
  msgid "Reload data"
3885
3958
  msgstr ""
3886
3959
 
3960
+ msgid "Remote action:"
3961
+ msgstr ""
3962
+
3887
3963
  msgid "Removal of package group(s) requested: %{groups}"
3888
3964
  msgstr ""
3889
3965
 
@@ -3975,6 +4051,9 @@ msgstr "संकुल काढून टाकत आहे..."
3975
4051
  msgid "Repo Type"
3976
4052
  msgstr ""
3977
4053
 
4054
+ msgid "Report"
4055
+ msgstr ""
4056
+
3978
4057
  # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
3979
4058
  msgid "Repositories"
3980
4059
  msgstr "रेपॉजिटरिज्"
@@ -4053,6 +4132,9 @@ msgstr ""
4053
4132
  msgid "Resolve Traces"
4054
4133
  msgstr ""
4055
4134
 
4135
+ msgid "Resolve traces for one or more hosts"
4136
+ msgstr ""
4137
+
4056
4138
  msgid "Resource"
4057
4139
  msgstr ""
4058
4140
 
@@ -4132,6 +4214,9 @@ msgstr ""
4132
4214
  msgid "Role"
4133
4215
  msgstr ""
4134
4216
 
4217
+ msgid "Role of host"
4218
+ msgstr ""
4219
+
4135
4220
  msgid "Run Sync Plan:"
4136
4221
  msgstr ""
4137
4222
 
@@ -4236,6 +4321,9 @@ msgstr "सर्व्हिस स्तर %s"
4236
4321
  msgid "Service Level (SLA)"
4237
4322
  msgstr ""
4238
4323
 
4324
+ msgid "Service level of host"
4325
+ msgstr ""
4326
+
4239
4327
  msgid "Service level to be used for autoheal"
4240
4328
  msgstr ""
4241
4329
 
@@ -4330,6 +4418,9 @@ msgstr ""
4330
4418
  msgid "Show the available repository types"
4331
4419
  msgstr ""
4332
4420
 
4421
+ msgid "Show the export history for a content view version"
4422
+ msgstr ""
4423
+
4333
4424
  msgid "Shows status of Katello system and it's subcomponents"
4334
4425
  msgstr ""
4335
4426
 
@@ -4339,6 +4430,12 @@ msgstr ""
4339
4430
  msgid "Simple Content Access"
4340
4431
  msgstr ""
4341
4432
 
4433
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4434
+ msgstr ""
4435
+
4436
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4437
+ msgstr ""
4438
+
4342
4439
  msgid "Size of file to upload"
4343
4440
  msgstr ""
4344
4441
 
@@ -4589,6 +4686,9 @@ msgstr ""
4589
4686
  msgid "Sync plan identifier to attach"
4590
4687
  msgstr ""
4591
4688
 
4689
+ msgid "Sync state"
4690
+ msgstr ""
4691
+
4592
4692
  msgid "Synced Content"
4593
4693
  msgstr ""
4594
4694
 
@@ -4704,6 +4804,9 @@ msgstr ""
4704
4804
  msgid "The id of the host to alter"
4705
4805
  msgstr ""
4706
4806
 
4807
+ msgid "The import path must be in a subdirectory under '%s'."
4808
+ msgstr ""
4809
+
4707
4810
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4708
4811
  msgstr ""
4709
4812
 
@@ -4753,6 +4856,9 @@ msgstr ""
4753
4856
  msgid "The requested resource does not belong to the specified organization"
4754
4857
  msgstr ""
4755
4858
 
4859
+ msgid "The requested traces were not found for this host"
4860
+ msgstr ""
4861
+
4756
4862
  msgid "The selected content source and lifecycle environment do not match"
4757
4863
  msgstr ""
4758
4864
 
@@ -4816,6 +4922,9 @@ msgstr ""
4816
4922
  msgid "There's no running synchronization for this smart proxy."
4817
4923
  msgstr ""
4818
4924
 
4925
+ msgid "This API endpoint is only valid for Pulp 3 repositories."
4926
+ msgstr ""
4927
+
4819
4928
  msgid "This Host is not currently registered with subscription-manager."
4820
4929
  msgstr ""
4821
4930
 
@@ -4955,10 +5064,13 @@ msgstr ""
4955
5064
  msgid "Unable to detect puppet path"
4956
5065
  msgstr ""
4957
5066
 
4958
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
5067
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4959
5068
  msgstr ""
4960
5069
 
4961
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5070
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5071
+ msgstr ""
5072
+
5073
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4962
5074
  msgstr ""
4963
5075
 
4964
5076
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -5175,6 +5287,12 @@ msgstr ""
5175
5287
  msgid "Updating Package..."
5176
5288
  msgstr "संकुल सुधारित करत आहे..."
5177
5289
 
5290
+ msgid "Updating System Purpose for host"
5291
+ msgstr ""
5292
+
5293
+ msgid "Updating System Purpose for host %s"
5294
+ msgstr ""
5295
+
5178
5296
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
5179
5297
  msgid "Updating package group..."
5180
5298
  msgstr "संकुल गट सुधारित करत आहे..."
@@ -5232,9 +5350,15 @@ msgstr ""
5232
5350
  msgid "Usage Type"
5233
5351
  msgstr ""
5234
5352
 
5353
+ msgid "Usage of host"
5354
+ msgstr ""
5355
+
5235
5356
  msgid "Use remote execution by default"
5236
5357
  msgstr ""
5237
5358
 
5359
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5360
+ msgstr ""
5361
+
5238
5362
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5239
5363
  msgstr ""
5240
5364
 
@@ -5259,6 +5383,15 @@ msgstr ""
5259
5383
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5260
5384
  msgstr ""
5261
5385
 
5386
+ msgid "Verify checksum"
5387
+ msgstr ""
5388
+
5389
+ msgid "Verify checksum for one or more products"
5390
+ msgstr ""
5391
+
5392
+ msgid "Verify checksum of repository contents"
5393
+ msgstr ""
5394
+
5262
5395
  msgid "Version"
5263
5396
  msgstr ""
5264
5397
 
@@ -5275,7 +5408,7 @@ msgstr ""
5275
5408
  msgid "Virtual"
5276
5409
  msgstr "वर्चुअल"
5277
5410
 
5278
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5411
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5279
5412
  msgstr ""
5280
5413
 
5281
5414
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5346,6 +5479,9 @@ msgstr "वापरकर्ता %s करीता पूर्वनिर
5346
5479
  msgid "You currently don't have any Content Views."
5347
5480
  msgstr ""
5348
5481
 
5482
+ msgid "You currently don't have any repositories to add to this content view."
5483
+ msgstr ""
5484
+
5349
5485
  msgid "You do not have permissions to delete %s"
5350
5486
  msgstr ""
5351
5487
 
@@ -5781,9 +5917,6 @@ msgstr ""
5781
5917
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5782
5918
  msgstr ""
5783
5919
 
5784
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5785
- msgstr ""
5786
-
5787
5920
  msgid "if true, will ignore the globally configured proxy when syncing"
5788
5921
  msgstr ""
5789
5922
 
@@ -5861,6 +5994,9 @@ msgstr ""
5861
5994
  msgid "maximum size of each ISO in MB"
5862
5995
  msgstr ""
5863
5996
 
5997
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5998
+ msgstr ""
5999
+
5864
6000
  msgid "may not be less than the number of hosts associated with the host collection."
5865
6001
  msgstr ""
5866
6002
 
@@ -6144,6 +6280,9 @@ msgstr ""
6144
6280
  msgid "the uuid of the puppet module to associate"
6145
6281
  msgstr ""
6146
6282
 
6283
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6284
+ msgstr ""
6285
+
6147
6286
  msgid "true if the latest version of the component's content view is desired"
6148
6287
  msgstr ""
6149
6288