katello 3.17.0 → 3.18.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

Files changed (272) 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/capsule_content_controller.rb +2 -2
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
  8. data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
  9. data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
  10. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  11. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +17 -8
  12. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  13. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -71
  14. data/app/controllers/katello/api/v2/content_views_controller.rb +37 -26
  15. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  16. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  17. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  18. data/app/controllers/katello/api/v2/host_debs_controller.rb +1 -0
  19. data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
  20. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +35 -6
  21. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  22. data/app/controllers/katello/api/v2/products_controller.rb +9 -9
  23. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  24. data/app/controllers/katello/api/v2/repositories_controller.rb +10 -5
  25. data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
  26. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  28. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  29. data/app/controllers/katello/concerns/api/v2/authorization.rb +19 -5
  30. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
  31. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  32. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  33. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  34. data/app/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
  35. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  36. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  37. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  38. data/app/lib/actions/helpers/smart_proxy_sync_history_helper.rb +24 -0
  39. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
  40. data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
  41. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -7
  42. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  43. data/app/lib/actions/katello/content_view/publish.rb +9 -9
  44. data/app/lib/actions/katello/content_view_version/import.rb +8 -13
  45. data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  47. data/app/lib/actions/katello/host/hypervisors_update.rb +18 -0
  48. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  49. data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
  50. data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
  51. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  52. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  53. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  54. data/app/lib/actions/katello/product/content_create.rb +7 -6
  55. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  56. data/app/lib/actions/katello/repository/import_upload.rb +4 -1
  57. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  58. data/app/lib/actions/katello/repository/sync.rb +3 -1
  59. data/app/lib/actions/katello/repository/update.rb +5 -1
  60. data/app/lib/actions/katello/repository/upload_files.rb +1 -0
  61. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +15 -0
  62. data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
  63. data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
  64. data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
  65. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  66. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  67. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  68. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  69. data/app/lib/actions/pulp3/content_view_version/export.rb +7 -1
  70. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  71. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  72. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  73. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +38 -14
  74. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  75. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  76. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
  77. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  78. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  79. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  80. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  81. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  82. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  83. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  84. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  85. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  86. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  87. data/app/lib/katello/resources/registry.rb +3 -3
  88. data/app/models/katello/authorization/activation_key.rb +4 -0
  89. data/app/models/katello/authorization/content_view.rb +13 -0
  90. data/app/models/katello/authorization/content_view_component.rb +15 -0
  91. data/app/models/katello/authorization/content_view_filter.rb +15 -0
  92. data/app/models/katello/authorization/content_view_version.rb +25 -2
  93. data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
  94. data/app/models/katello/authorization/gpg_key.rb +12 -4
  95. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  96. data/app/models/katello/authorization/organization.rb +8 -0
  97. data/app/models/katello/authorization/sync_plan.rb +16 -0
  98. data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
  99. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  100. data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -4
  101. data/app/models/katello/content_migration_progress.rb +4 -0
  102. data/app/models/katello/content_view.rb +30 -4
  103. data/app/models/katello/content_view_component.rb +2 -0
  104. data/app/models/katello/content_view_filter.rb +5 -0
  105. data/app/models/katello/content_view_history.rb +2 -1
  106. data/app/models/katello/content_view_package_filter.rb +1 -1
  107. data/app/models/katello/content_view_puppet_module.rb +8 -0
  108. data/app/models/katello/content_view_repository.rb +13 -1
  109. data/app/models/katello/content_view_version_export_history.rb +8 -1
  110. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  111. data/app/models/katello/glue/pulp/repo.rb +8 -0
  112. data/app/models/katello/gpg_key.rb +1 -1
  113. data/app/models/katello/ping.rb +8 -3
  114. data/app/models/katello/repository.rb +33 -0
  115. data/app/models/katello/root_repository.rb +26 -1
  116. data/app/models/katello/smart_proxy_sync_history.rb +8 -0
  117. data/app/services/katello/candlepin/event_handler.rb +2 -0
  118. data/app/services/katello/candlepin/message_handler.rb +34 -0
  119. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  120. data/app/services/katello/host_status_manager.rb +9 -0
  121. data/app/services/katello/pulp3/api/apt.rb +57 -0
  122. data/app/services/katello/pulp3/api/core.rb +8 -0
  123. data/app/services/katello/pulp3/api/docker.rb +4 -0
  124. data/app/services/katello/pulp3/content_view_version/export.rb +125 -8
  125. data/app/services/katello/pulp3/content_view_version/import.rb +39 -34
  126. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
  127. data/app/services/katello/pulp3/content_view_version/import_validator.rb +114 -0
  128. data/app/services/katello/pulp3/deb.rb +38 -0
  129. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  130. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  131. data/app/services/katello/pulp3/migration.rb +51 -10
  132. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  133. data/app/services/katello/pulp3/repository.rb +10 -4
  134. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  135. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  136. data/app/services/katello/pulp3/repository/docker.rb +9 -0
  137. data/app/services/katello/pulp3/repository/yum.rb +14 -9
  138. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  139. data/app/services/katello/pulp3/task.rb +4 -0
  140. data/app/services/katello/pulp3/task_group.rb +4 -0
  141. data/app/services/katello/repository_type.rb +2 -1
  142. data/app/services/katello/smart_proxy_helper.rb +9 -0
  143. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  144. data/app/views/foreman/hosts/_registration.html.erb +12 -0
  145. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  146. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  147. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  148. data/app/views/katello/layouts/react.html.erb +3 -2
  149. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  150. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  151. data/config/routes/api/v2.rb +24 -2
  152. data/config/routes/overrides.rb +1 -0
  153. data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
  154. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  155. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  156. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  157. data/db/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
  158. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  159. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  160. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  161. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +6 -2
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +92 -19
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +8 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  199. data/lib/katello/engine.rb +2 -0
  200. data/lib/katello/permission_creator.rb +98 -69
  201. data/lib/katello/permissions/host_permissions.rb +1 -0
  202. data/lib/katello/plugin.rb +10 -2
  203. data/lib/katello/repository_types/deb.rb +9 -1
  204. data/lib/katello/tasks/pulp3_migration.rake +17 -3
  205. data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
  206. data/lib/katello/tasks/pulp3_migration_stats.rake +41 -0
  207. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  208. data/lib/katello/tasks/reset.rake +2 -1
  209. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  210. data/lib/katello/version.rb +1 -1
  211. data/locale/action_names.rb +51 -44
  212. data/locale/bn/katello.po +279 -55
  213. data/locale/cs/katello.po +278 -51
  214. data/locale/de/katello.po +279 -52
  215. data/locale/en/katello.po +278 -49
  216. data/locale/es/katello.po +279 -51
  217. data/locale/fr/katello.po +279 -51
  218. data/locale/gu/katello.po +279 -55
  219. data/locale/hi/katello.po +279 -55
  220. data/locale/it/katello.po +279 -51
  221. data/locale/ja/katello.po +279 -52
  222. data/locale/katello.pot +1379 -971
  223. data/locale/kn/katello.po +279 -55
  224. data/locale/ko/katello.po +279 -51
  225. data/locale/mr/katello.po +279 -55
  226. data/locale/or/katello.po +279 -55
  227. data/locale/pa/katello.po +279 -55
  228. data/locale/pt/katello.po +278 -52
  229. data/locale/pt_BR/katello.po +279 -51
  230. data/locale/ru/katello.po +279 -51
  231. data/locale/ta/katello.po +279 -55
  232. data/locale/te/katello.po +279 -55
  233. data/locale/zh_CN/katello.po +279 -51
  234. data/locale/zh_TW/katello.po +279 -52
  235. data/webpack/components/ActionableDetail.js +2 -1
  236. data/webpack/components/Search/Search.js +1 -1
  237. data/webpack/components/Table/MainTable.js +6 -2
  238. data/webpack/components/Table/TableWrapper.js +46 -9
  239. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  240. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  241. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  242. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  243. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  244. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  245. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  246. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  247. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  248. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  249. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  250. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  251. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  252. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  253. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  254. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  255. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  256. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +29 -19
  257. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  258. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  259. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  260. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  261. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  262. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  263. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  264. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  265. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  266. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  267. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  268. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  269. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  270. data/webpack/test-utils/react-testing-lib-wrapper.js +3 -0
  271. metadata +74 -13
  272. data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
@@ -20,6 +20,11 @@ msgstr ""
20
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
21
  "X-Generator: Zanata 3.6.2\n"
22
22
 
23
+ msgid ""
24
+ "\n"
25
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
26
+ msgstr ""
27
+
23
28
  msgid " %{errata_count} Errata"
24
29
  msgstr ""
25
30
 
@@ -404,6 +409,9 @@ msgstr ""
404
409
  msgid "Action with sub plans"
405
410
  msgstr ""
406
411
 
412
+ msgid "Activation Key(s)"
413
+ msgstr ""
414
+
407
415
  # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
408
416
  msgid "Activation Keys"
409
417
  msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
@@ -411,6 +419,9 @@ msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
411
419
  msgid "Activation key ID"
412
420
  msgstr ""
413
421
 
422
+ msgid "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
423
+ msgstr ""
424
+
414
425
  #, fuzzy
415
426
  msgid "Activation keys and subscriptions can be managed"
416
427
  msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀ '%s' ਬਣਾਈ ਗਈ ਹੈ।"
@@ -465,6 +476,9 @@ msgstr ""
465
476
  msgid "Adding content units"
466
477
  msgstr ""
467
478
 
479
+ 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}"
480
+ msgstr ""
481
+
468
482
  msgid "Addons"
469
483
  msgstr ""
470
484
 
@@ -569,6 +583,9 @@ msgstr ""
569
583
  msgid "Artifacts"
570
584
  msgstr ""
571
585
 
586
+ msgid "Assign system purpose attributes on one or more hosts"
587
+ msgstr ""
588
+
572
589
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
573
590
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
574
591
  msgstr[0] ""
@@ -617,9 +634,6 @@ msgstr ""
617
634
  msgid "Author"
618
635
  msgstr ""
619
636
 
620
- msgid "Auto Enablement may only be set on custom repositories."
621
- msgstr ""
622
-
623
637
  msgid "Auto Publish - Triggered by '%s'"
624
638
  msgstr ""
625
639
 
@@ -841,6 +855,9 @@ msgstr ""
841
855
  msgid "Cannot delete view while it exists in environments"
842
856
  msgstr "ਟੈਂਪਲਿਟ ਨੂੰ ਸੋਧ ਨਹੀਂ ਸਕਦਾ ਜੋ ਹੋਰ ਵਾਤਾਵਰਨ ਹੈ"
843
857
 
858
+ msgid "Cannot import a composite content view"
859
+ msgstr ""
860
+
844
861
  msgid "Cannot import a custom subscription from a redhat product."
845
862
  msgstr ""
846
863
 
@@ -896,12 +913,18 @@ msgstr ""
896
913
  msgid "Cannot upload Container Image content."
897
914
  msgstr ""
898
915
 
916
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
917
+ msgstr ""
918
+
899
919
  msgid "Cannot validate contents on non-yum/deb repositories."
900
920
  msgstr ""
901
921
 
902
922
  msgid "Check if a connection can be made to Red Hat Subscription Management."
903
923
  msgstr ""
904
924
 
925
+ msgid "Check if the specified organization is eligible for Simple Content Access"
926
+ msgstr ""
927
+
905
928
  msgid "Check services before actions"
906
929
  msgstr ""
907
930
 
@@ -936,7 +959,7 @@ msgstr ""
936
959
  msgid "Combined Profile Update for %s"
937
960
  msgstr ""
938
961
 
939
- msgid "Comma separated list of tags to sync for Container Image repository"
962
+ msgid "Comma-separated list of tags to sync for Container Image repository"
940
963
  msgstr ""
941
964
 
942
965
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
@@ -992,10 +1015,16 @@ msgstr ""
992
1015
  msgid "Content Download URL"
993
1016
  msgstr ""
994
1017
 
1018
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
1019
+ msgstr ""
1020
+
995
1021
  #, fuzzy
996
1022
  msgid "Content Hosts"
997
1023
  msgstr "ਸੰਖੇਪ"
998
1024
 
1025
+ msgid "Content Migration"
1026
+ msgstr ""
1027
+
999
1028
  msgid "Content Source"
1000
1029
  msgstr ""
1001
1030
 
@@ -1046,9 +1075,15 @@ msgstr ""
1046
1075
  msgid "Content View Version not set"
1047
1076
  msgstr ""
1048
1077
 
1078
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1079
+ msgstr ""
1080
+
1049
1081
  msgid "Content View and Environment not set for registration."
1050
1082
  msgstr ""
1051
1083
 
1084
+ msgid "Content View id"
1085
+ msgstr ""
1086
+
1052
1087
  #, fuzzy
1053
1088
  msgid "Content Views"
1054
1089
  msgstr "ਸੰਖੇਪ"
@@ -1087,6 +1122,9 @@ msgstr ""
1087
1122
  msgid "Content view numeric identifier"
1088
1123
  msgstr ""
1089
1124
 
1125
+ msgid "Content view version export history identifier"
1126
+ msgstr ""
1127
+
1090
1128
  msgid "Content view version identifier"
1091
1129
  msgstr ""
1092
1130
 
@@ -1109,13 +1147,13 @@ msgstr ""
1109
1147
  msgid "Copy an activation key"
1110
1148
  msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
1111
1149
 
1150
+ msgid "Copy version units to library"
1151
+ msgstr ""
1152
+
1112
1153
  #, fuzzy
1113
1154
  msgid "Cores: %s"
1114
1155
  msgstr "ਕਾਰਨ: %s"
1115
1156
 
1116
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1117
- msgstr ""
1118
-
1119
1157
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1120
1158
  msgid "Could not delete organization '%s'."
1121
1159
  msgstr "ਸੰਗਠਨ '%s' ਨੂੰ ਹਟਾ ਨਹੀਂ ਸਕਿਆ।"
@@ -1126,6 +1164,12 @@ msgstr ""
1126
1164
  msgid "Could not find %{count} errata. Only found: %{found}"
1127
1165
  msgstr ""
1128
1166
 
1167
+ msgid "Could not find %{name} resource with id %{id}"
1168
+ msgstr ""
1169
+
1170
+ msgid "Could not find %{name} resources with ids %{ids}"
1171
+ msgstr ""
1172
+
1129
1173
  msgid "Could not find Environment with ids: %s"
1130
1174
  msgstr ""
1131
1175
 
@@ -1159,9 +1203,6 @@ msgstr ""
1159
1203
  msgid "Couldn't find %{type} Filter with id %{id}"
1160
1204
  msgstr ""
1161
1205
 
1162
- msgid "Couldn't find Content Credential '%s'"
1163
- msgstr ""
1164
-
1165
1206
  #, fuzzy
1166
1207
  msgid "Couldn't find ContentViewFilter with id=%s"
1167
1208
  msgstr "id '%s' ਵਾਲਾ ਉਤਪਾਦ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
@@ -1217,13 +1258,6 @@ msgstr "ਵਾਤਾਵਰਨ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1217
1258
  msgid "Couldn't find errata ids '%s'"
1218
1259
  msgstr "ਸੰਗਠਨ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1219
1260
 
1220
- #, fuzzy
1221
- msgid "Couldn't find gpg key '%s'"
1222
- msgstr "GPG ਕੁੰਜੀ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1223
-
1224
- msgid "Couldn't find host '%s'"
1225
- msgstr ""
1226
-
1227
1261
  msgid "Couldn't find host collection '%s'"
1228
1262
  msgstr ""
1229
1263
 
@@ -1238,10 +1272,6 @@ msgstr "ਸੰਗਠਨ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1238
1272
  msgid "Couldn't find prior-environment '%s'"
1239
1273
  msgstr "ਵਾਤਾਵਰਨ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1240
1274
 
1241
- #, fuzzy
1242
- msgid "Couldn't find product '%s'"
1243
- msgstr "ਪਰੋਵਾਈਡਰ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1244
-
1245
1275
  # translation auto-copied from project CFSE, version sam-1.2, document app
1246
1276
  msgid "Couldn't find product with id '%s'"
1247
1277
  msgstr "id '%s' ਵਾਲਾ ਉਤਪਾਦ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
@@ -1250,30 +1280,13 @@ msgstr "id '%s' ਵਾਲਾ ਉਤਪਾਦ ਨਹੀਂ ਲੱਭ ਸਕਿਆ
1250
1280
  msgid "Couldn't find repository '%s'"
1251
1281
  msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1252
1282
 
1253
- #, fuzzy
1254
- msgid "Couldn't find repository set with id '%s'."
1255
- msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1256
-
1257
1283
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1258
1284
  msgstr ""
1259
1285
 
1260
- msgid "Couldn't find ssl ca cert '%s'"
1261
- msgstr ""
1262
-
1263
- msgid "Couldn't find ssl client cert '%s'"
1264
- msgstr ""
1265
-
1266
- msgid "Couldn't find ssl client key '%s'"
1267
- msgstr ""
1268
-
1269
1286
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1270
1287
  msgid "Couldn't find subject of synchronization"
1271
1288
  msgstr "ਸਮਕਾਲਤਾ ਦਾ ਵਿਸ਼ਾ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1272
1289
 
1273
- # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1274
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1275
- msgstr "ਸਮਕਾਲੀ ਪਲਾਨ '%{plan}' ਨੂੰ ਸੰਗਠਨ '%{org}' ਵਿੱਚ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1276
-
1277
1290
  msgid "Count"
1278
1291
  msgstr ""
1279
1292
 
@@ -1344,6 +1357,9 @@ msgstr ""
1344
1357
  msgid "Current organization not set."
1345
1358
  msgstr ""
1346
1359
 
1360
+ msgid "Custom"
1361
+ msgstr ""
1362
+
1347
1363
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1348
1364
  msgid "Custom Content Repositories"
1349
1365
  msgstr "ਮਨਪਸੰਦ ਸੰਖੇਪ ਪਰੋਵਾਈਡਰ"
@@ -1557,9 +1573,15 @@ msgstr ""
1557
1573
  msgid "Description of the repository"
1558
1574
  msgstr ""
1559
1575
 
1576
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1577
+ msgstr ""
1578
+
1560
1579
  msgid "Desired quantity of the pool"
1561
1580
  msgstr ""
1562
1581
 
1582
+ msgid "Destination Server name"
1583
+ msgstr ""
1584
+
1563
1585
  msgid "Destroy"
1564
1586
  msgstr ""
1565
1587
 
@@ -1611,6 +1633,9 @@ msgstr ""
1611
1633
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1612
1634
  msgstr ""
1613
1635
 
1636
+ msgid "Directory containing the exported Content View Version"
1637
+ msgstr ""
1638
+
1614
1639
  msgid "Disable"
1615
1640
  msgstr ""
1616
1641
 
@@ -1626,6 +1651,9 @@ msgstr ""
1626
1651
  msgid "Disable simple content access for a manifest"
1627
1652
  msgstr ""
1628
1653
 
1654
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1655
+ msgstr ""
1656
+
1629
1657
  msgid "Disconnected mode"
1630
1658
  msgstr ""
1631
1659
 
@@ -1710,6 +1738,9 @@ msgstr ""
1710
1738
  msgid "Enabled Repositories"
1711
1739
  msgstr ""
1712
1740
 
1741
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1742
+ msgstr ""
1743
+
1713
1744
  msgid "End Date"
1714
1745
  msgstr ""
1715
1746
 
@@ -1832,7 +1863,10 @@ msgstr ""
1832
1863
  msgid "Export CSV"
1833
1864
  msgstr ""
1834
1865
 
1835
- msgid "Export a content view version"
1866
+ msgid "Export Library"
1867
+ msgstr ""
1868
+
1869
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1836
1870
  msgstr ""
1837
1871
 
1838
1872
  msgid "Export a repository"
@@ -1841,9 +1875,15 @@ msgstr ""
1841
1875
  msgid "Export as CSV"
1842
1876
  msgstr ""
1843
1877
 
1878
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1879
+ msgstr ""
1880
+
1844
1881
  msgid "Export to ISO format"
1845
1882
  msgstr ""
1846
1883
 
1884
+ msgid "Export to ISO format."
1885
+ msgstr ""
1886
+
1847
1887
  msgid "Exported version"
1848
1888
  msgstr ""
1849
1889
 
@@ -1987,10 +2027,6 @@ msgstr ""
1987
2027
  msgid "GPG Key URL"
1988
2028
  msgstr ""
1989
2029
 
1990
- # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1991
- msgid "GPG Keys"
1992
- msgstr "GPG ਕੁੰਜੀਆਂ"
1993
-
1994
2030
  msgid "Generate and Download"
1995
2031
  msgstr ""
1996
2032
 
@@ -2097,6 +2133,9 @@ msgstr ""
2097
2133
  msgid "Host content and subscription details"
2098
2134
  msgstr ""
2099
2135
 
2136
+ 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."
2137
+ msgstr ""
2138
+
2100
2139
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2101
2140
  msgstr ""
2102
2141
 
@@ -2121,6 +2160,9 @@ msgstr ""
2121
2160
  msgid "Host id to list applicable packages for"
2122
2161
  msgstr ""
2123
2162
 
2163
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2164
+ msgstr ""
2165
+
2124
2166
  msgid "Host with ID %s already exists in the host collection."
2125
2167
  msgstr ""
2126
2168
 
@@ -2275,6 +2317,9 @@ msgstr ""
2275
2317
  msgid "Identifiers for Lifecycle Environment"
2276
2318
  msgstr ""
2277
2319
 
2320
+ msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
2321
+ msgstr ""
2322
+
2278
2323
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2279
2324
  msgstr ""
2280
2325
 
@@ -2317,6 +2362,15 @@ msgstr ""
2317
2362
  msgid "Immediate"
2318
2363
  msgstr ""
2319
2364
 
2365
+ msgid "Import"
2366
+ msgstr ""
2367
+
2368
+ msgid "Import Content View Version"
2369
+ msgstr ""
2370
+
2371
+ msgid "Import Default Content View"
2372
+ msgstr ""
2373
+
2320
2374
  #, fuzzy
2321
2375
  msgid "Import Manifest"
2322
2376
  msgstr "ਇੰਪੋਰਟ"
@@ -2339,6 +2393,12 @@ msgstr ""
2339
2393
  msgid "Import a Manifest using the manifest tab above."
2340
2394
  msgstr ""
2341
2395
 
2396
+ msgid "Import a content view version"
2397
+ msgstr ""
2398
+
2399
+ msgid "Import a content view version to the library"
2400
+ msgstr ""
2401
+
2342
2402
  #, fuzzy
2343
2403
  msgid "Import facts"
2344
2404
  msgstr "ਇੰਪੋਰਟ"
@@ -2346,6 +2406,15 @@ msgstr "ਇੰਪੋਰਟ"
2346
2406
  msgid "Import uploads into a repository"
2347
2407
  msgstr ""
2348
2408
 
2409
+ msgid "Import-only can not be changed after creation"
2410
+ msgstr ""
2411
+
2412
+ msgid "Import-only content views can not be published directly"
2413
+ msgstr ""
2414
+
2415
+ msgid "Import-only content views will be available in a future version."
2416
+ msgstr ""
2417
+
2349
2418
  msgid "Importing manifest into '%{subject}' failed."
2350
2419
  msgstr ""
2351
2420
 
@@ -2530,6 +2599,9 @@ msgstr ""
2530
2599
  msgid "Invalid params provided - date_type must be one of %s"
2531
2600
  msgstr ""
2532
2601
 
2602
+ msgid "Invalid path specified."
2603
+ msgstr ""
2604
+
2533
2605
  msgid ""
2534
2606
  "Invalid puppet module parameters specified. \\\n"
2535
2607
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2538,6 +2610,12 @@ msgstr ""
2538
2610
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2539
2611
  msgstr ""
2540
2612
 
2613
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2614
+ msgstr ""
2615
+
2616
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2617
+ msgstr ""
2618
+
2541
2619
  msgid "Invalid value specified for Container Image repositories."
2542
2620
  msgstr ""
2543
2621
 
@@ -2547,6 +2625,9 @@ msgstr ""
2547
2625
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2548
2626
  msgstr ""
2549
2627
 
2628
+ msgid "Katello"
2629
+ msgstr ""
2630
+
2550
2631
  msgid "Katello ID of local pool to update"
2551
2632
  msgstr ""
2552
2633
 
@@ -2607,9 +2688,6 @@ msgstr ""
2607
2688
  msgid "Learn more about adding Subscription Manifests"
2608
2689
  msgstr ""
2609
2690
 
2610
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2611
- msgstr ""
2612
-
2613
2691
  #, fuzzy
2614
2692
  msgid "Library lifecycle environments may not be deleted."
2615
2693
  msgstr "ਇਨਵਾਇਰਮੈਂਟ '%s' ਹਟਾਇਆ ਗਿਆ ਹੈ।"
@@ -2711,6 +2789,9 @@ msgstr ""
2711
2789
  msgid "List errata available for the content host"
2712
2790
  msgstr ""
2713
2791
 
2792
+ msgid "List export histories"
2793
+ msgstr ""
2794
+
2714
2795
  msgid "List filter rules"
2715
2796
  msgstr ""
2716
2797
 
@@ -2864,6 +2945,9 @@ msgstr ""
2864
2945
  msgid "List srpms"
2865
2946
  msgstr ""
2866
2947
 
2948
+ msgid "List subscriptions"
2949
+ msgstr ""
2950
+
2867
2951
  msgid "List sync plans"
2868
2952
  msgstr ""
2869
2953
 
@@ -2952,6 +3036,9 @@ msgstr "ਸੁਨੇਹਾ"
2952
3036
  msgid "Messaging connection"
2953
3037
  msgstr ""
2954
3038
 
3039
+ msgid "Metadata taken from the upstream export history for this Content View Version"
3040
+ msgstr ""
3041
+
2955
3042
  msgid "Mismatched"
2956
3043
  msgstr ""
2957
3044
 
@@ -3090,6 +3177,9 @@ msgstr ""
3090
3177
  msgid "No errors"
3091
3178
  msgstr "ਕੋਈ ਗਲਤੀ ਨਹੀਂ"
3092
3179
 
3180
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3181
+ msgstr ""
3182
+
3093
3183
  msgid "No file uploaded"
3094
3184
  msgstr ""
3095
3185
 
@@ -3102,12 +3192,18 @@ msgstr ""
3102
3192
  msgid "No hosts registered with subscription-manager found in selection."
3103
3193
  msgstr ""
3104
3194
 
3195
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3196
+ msgstr ""
3197
+
3105
3198
  msgid "No manifest file uploaded"
3106
3199
  msgstr ""
3107
3200
 
3108
3201
  msgid "No matching content views found"
3109
3202
  msgstr ""
3110
3203
 
3204
+ msgid "No matching repositories found"
3205
+ msgstr ""
3206
+
3111
3207
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3112
3208
  msgid "No new packages installed"
3113
3209
  msgstr "ਕੋਈ ਨਵਾਂ ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ"
@@ -3250,6 +3346,9 @@ msgstr ""
3250
3346
  msgid "On-disk location for exported repositories"
3251
3347
  msgstr ""
3252
3348
 
3349
+ msgid "On-disk location for pulp 3 exported repositories"
3350
+ msgstr ""
3351
+
3253
3352
  #, fuzzy
3254
3353
  msgid "One of parameters [ %s ] required but not specified."
3255
3354
  msgstr "organization_id ਲੋੜੀਂਦਾ ਹੈ ਪਰ ਦਿੱਤਾ ਨਹੀਂ।"
@@ -3283,6 +3382,9 @@ msgstr ""
3283
3382
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3284
3383
  msgstr ""
3285
3384
 
3385
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3386
+ msgstr ""
3387
+
3286
3388
  # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
3287
3389
  msgid "Organization"
3288
3390
  msgstr "ਸੰਗਠਨ"
@@ -3561,6 +3663,18 @@ msgstr ""
3561
3663
  msgid "Perform an Incremental Update on one or more Content View Versions"
3562
3664
  msgstr ""
3563
3665
 
3666
+ msgid "Performs a full-export of a content view version."
3667
+ msgstr ""
3668
+
3669
+ msgid "Performs a full-export of the repositories in library."
3670
+ msgstr ""
3671
+
3672
+ msgid "Performs an incremental-export of a content view version."
3673
+ msgstr ""
3674
+
3675
+ msgid "Performs an incremental-export of the repositories in library."
3676
+ msgstr ""
3677
+
3564
3678
  # translation auto-copied from project CFSE, version sam-1.2, document app
3565
3679
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3566
3680
  msgstr "ਮਨਜੂਰੀ ਨਹੀਂ। ਯੂਜ਼ਰ '%{user}' ਨੂੰ ਸੰਗਠਨ '%{org}' ਵਰਤਣ ਦੀ ਮਨਜੂਰੀ ਨਹੀਂ ਹੈ।"
@@ -3572,6 +3686,9 @@ msgstr "ਭੌਤਿਕ"
3572
3686
  msgid "Plan numeric identifier"
3573
3687
  msgstr ""
3574
3688
 
3689
+ msgid "Please add some repositories."
3690
+ msgstr ""
3691
+
3575
3692
  msgid "Please enter a positive number above zero"
3576
3693
  msgstr ""
3577
3694
 
@@ -3599,6 +3716,9 @@ msgstr ""
3599
3716
  msgid "Please select one from the list below and you will be redirected."
3600
3717
  msgstr ""
3601
3718
 
3719
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3720
+ msgstr ""
3721
+
3602
3722
  msgid "Processing metadata"
3603
3723
  msgstr ""
3604
3724
 
@@ -3705,6 +3825,9 @@ msgstr ""
3705
3825
  msgid "Pulp"
3706
3826
  msgstr ""
3707
3827
 
3828
+ msgid "Pulp 3 export destination filepath"
3829
+ msgstr ""
3830
+
3708
3831
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3709
3832
  msgstr ""
3710
3833
 
@@ -3759,6 +3882,12 @@ msgstr ""
3759
3882
  msgid "Pulp task error"
3760
3883
  msgstr ""
3761
3884
 
3885
+ msgid "Pulp user or group unable to read '%s'."
3886
+ msgstr ""
3887
+
3888
+ msgid "Pulp user or group unable to read content in '%s'."
3889
+ msgstr ""
3890
+
3762
3891
  msgid "Pulpcore"
3763
3892
  msgstr ""
3764
3893
 
@@ -3834,6 +3963,9 @@ msgstr ""
3834
3963
  msgid "Recommended Repositories"
3835
3964
  msgstr ""
3836
3965
 
3966
+ msgid "Red Hat"
3967
+ msgstr ""
3968
+
3837
3969
  #, fuzzy
3838
3970
  msgid "Red Hat CDN URL"
3839
3971
  msgstr "ਉਤਪਾਦ"
@@ -4069,6 +4201,9 @@ msgstr ""
4069
4201
  msgid "Resolve Traces"
4070
4202
  msgstr ""
4071
4203
 
4204
+ msgid "Resolve traces for one or more hosts"
4205
+ msgstr ""
4206
+
4072
4207
  msgid "Resource"
4073
4208
  msgstr ""
4074
4209
 
@@ -4148,6 +4283,9 @@ msgstr ""
4148
4283
  msgid "Role"
4149
4284
  msgstr ""
4150
4285
 
4286
+ msgid "Role of host"
4287
+ msgstr ""
4288
+
4151
4289
  msgid "Run Sync Plan:"
4152
4290
  msgstr ""
4153
4291
 
@@ -4252,6 +4390,9 @@ msgstr "ਸਰਵਿਸ ਲੈਵਲ %s"
4252
4390
  msgid "Service Level (SLA)"
4253
4391
  msgstr ""
4254
4392
 
4393
+ msgid "Service level of host"
4394
+ msgstr ""
4395
+
4255
4396
  msgid "Service level to be used for autoheal"
4256
4397
  msgstr ""
4257
4398
 
@@ -4355,6 +4496,15 @@ msgstr ""
4355
4496
  msgid "Simple Content Access"
4356
4497
  msgstr ""
4357
4498
 
4499
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4500
+ msgstr ""
4501
+
4502
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4503
+ msgstr ""
4504
+
4505
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4506
+ msgstr ""
4507
+
4358
4508
  msgid "Size of file to upload"
4359
4509
  msgstr ""
4360
4510
 
@@ -4389,6 +4539,9 @@ msgstr ""
4389
4539
  msgid "Specify the list of units in each repo"
4390
4540
  msgstr ""
4391
4541
 
4542
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4543
+ msgstr ""
4544
+
4392
4545
  msgid "Stacking ID"
4393
4546
  msgstr ""
4394
4547
 
@@ -4605,6 +4758,9 @@ msgstr ""
4605
4758
  msgid "Sync plan identifier to attach"
4606
4759
  msgstr ""
4607
4760
 
4761
+ msgid "Sync state"
4762
+ msgstr ""
4763
+
4608
4764
  msgid "Synced Content"
4609
4765
  msgstr ""
4610
4766
 
@@ -4670,6 +4826,9 @@ msgstr "'%s' ਇਨਵਾਇਰਮੈਂਟ ਵਿੱਚ ਚੇਂਜਸ਼ੀਟ
4670
4826
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4671
4827
  msgstr ""
4672
4828
 
4829
+ msgid "The TOC file specified in the metadata does not exist. %s "
4830
+ msgstr ""
4831
+
4673
4832
  msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
4674
4833
  msgstr ""
4675
4834
 
@@ -4711,15 +4870,26 @@ msgstr ""
4711
4870
  msgid "The erratum type must be an array. Invalid value provided"
4712
4871
  msgstr ""
4713
4872
 
4873
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4874
+ msgstr ""
4875
+
4714
4876
  msgid "The field to sort the data by. Defaults to the created date."
4715
4877
  msgstr ""
4716
4878
 
4717
4879
  msgid "The following hosts have errata that apply to them: "
4718
4880
  msgstr ""
4719
4881
 
4882
+ msgid ""
4883
+ "The following repositories provided in the import metadata are either not available in the Library or are of incorrect Respository Type. Please add or enable the repositories before importing\n"
4884
+ " %{repos}"
4885
+ msgstr ""
4886
+
4720
4887
  msgid "The id of the host to alter"
4721
4888
  msgstr ""
4722
4889
 
4890
+ msgid "The import path must be in a subdirectory under '%s'."
4891
+ msgstr ""
4892
+
4723
4893
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4724
4894
  msgstr ""
4725
4895
 
@@ -4769,6 +4939,9 @@ msgstr ""
4769
4939
  msgid "The requested resource does not belong to the specified organization"
4770
4940
  msgstr ""
4771
4941
 
4942
+ msgid "The requested traces were not found for this host"
4943
+ msgstr ""
4944
+
4772
4945
  msgid "The selected content source and lifecycle environment do not match"
4773
4946
  msgstr ""
4774
4947
 
@@ -4831,6 +5004,9 @@ msgstr ""
4831
5004
  msgid "There's no running synchronization for this smart proxy."
4832
5005
  msgstr ""
4833
5006
 
5007
+ msgid "This Content View must be set to Import-only before performing an import"
5008
+ msgstr ""
5009
+
4834
5010
  msgid "This Host is not currently registered with subscription-manager."
4835
5011
  msgstr ""
4836
5012
 
@@ -4840,6 +5016,9 @@ msgstr ""
4840
5016
  msgid "This action doesn't support package groups"
4841
5017
  msgstr ""
4842
5018
 
5019
+ msgid "This action will become available after the Pulp 3 content migration"
5020
+ msgstr ""
5021
+
4843
5022
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4844
5023
  msgstr ""
4845
5024
 
@@ -4970,10 +5149,16 @@ msgstr ""
4970
5149
  msgid "Unable to detect puppet path"
4971
5150
  msgstr ""
4972
5151
 
4973
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
5152
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4974
5153
  msgstr ""
4975
5154
 
4976
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5155
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5156
+ msgstr ""
5157
+
5158
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
5159
+ msgstr ""
5160
+
5161
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4977
5162
  msgstr ""
4978
5163
 
4979
5164
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -5189,6 +5374,12 @@ msgstr ""
5189
5374
  msgid "Updating Package..."
5190
5375
  msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਹੋ ਰਹੇ ਹਨ..."
5191
5376
 
5377
+ msgid "Updating System Purpose for host"
5378
+ msgstr ""
5379
+
5380
+ msgid "Updating System Purpose for host %s"
5381
+ msgstr ""
5382
+
5192
5383
  #, fuzzy
5193
5384
  msgid "Updating package group..."
5194
5385
  msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਹੋ ਰਿਹਾ ਹੈ..."
@@ -5246,9 +5437,15 @@ msgstr ""
5246
5437
  msgid "Usage Type"
5247
5438
  msgstr ""
5248
5439
 
5440
+ msgid "Usage of host"
5441
+ msgstr ""
5442
+
5249
5443
  msgid "Use remote execution by default"
5250
5444
  msgstr ""
5251
5445
 
5446
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5447
+ msgstr ""
5448
+
5252
5449
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5253
5450
  msgstr ""
5254
5451
 
@@ -5273,6 +5470,15 @@ msgstr ""
5273
5470
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5274
5471
  msgstr ""
5275
5472
 
5473
+ msgid "Verify checksum"
5474
+ msgstr ""
5475
+
5476
+ msgid "Verify checksum for one or more products"
5477
+ msgstr ""
5478
+
5479
+ msgid "Verify checksum of repository contents"
5480
+ msgstr ""
5481
+
5276
5482
  msgid "Version"
5277
5483
  msgstr ""
5278
5484
 
@@ -5290,7 +5496,7 @@ msgstr ""
5290
5496
  msgid "Virtual"
5291
5497
  msgstr "ਵਰਚੁਅਲ"
5292
5498
 
5293
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5499
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5294
5500
  msgstr ""
5295
5501
 
5296
5502
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5361,6 +5567,9 @@ msgstr "ਤੁਸੀਂ ਮੂਲ ਸੰਗਠਨ ਅਤੇ ਇਨਵਾਇਰ
5361
5567
  msgid "You currently don't have any Content Views."
5362
5568
  msgstr ""
5363
5569
 
5570
+ msgid "You currently don't have any repositories to add to this content view."
5571
+ msgstr ""
5572
+
5364
5573
  msgid "You do not have permissions to delete %s"
5365
5574
  msgstr ""
5366
5575
 
@@ -5477,6 +5686,9 @@ msgstr "ਸੰਗਠਨ"
5477
5686
  msgid "an ostree branch"
5478
5687
  msgstr ""
5479
5688
 
5689
+ msgid "are only allowed for Yum repositories."
5690
+ msgstr ""
5691
+
5480
5692
  msgid "attempted to sync without a feed URL"
5481
5693
  msgstr ""
5482
5694
 
@@ -5496,6 +5708,9 @@ msgstr ""
5496
5708
  msgid "can't be blank"
5497
5709
  msgstr "ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ"
5498
5710
 
5711
+ msgid "cannot add filter to import-only view"
5712
+ msgstr ""
5713
+
5499
5714
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5500
5715
  msgid "cannot be a binary file."
5501
5716
  msgstr "ਬਾਇਨਰੀ ਫਾਇਲ ਨਹੀਂ ਹੋ ਸਕਦੀ।"
@@ -5558,13 +5773,13 @@ msgstr ""
5558
5773
  msgid "checking Pulp task status"
5559
5774
  msgstr ""
5560
5775
 
5561
- msgid "comma separated list of architectures to be synched from deb-archive"
5776
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5562
5777
  msgstr ""
5563
5778
 
5564
- msgid "comma separated list of releases to be synched from deb-archive"
5779
+ msgid "comma-separated list of releases to be synced from deb-archive"
5565
5780
  msgstr ""
5566
5781
 
5567
- msgid "comma separated list of repo components to be synched from deb-archive"
5782
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5568
5783
  msgstr ""
5569
5784
 
5570
5785
  msgid "composite content view identifier"
@@ -5796,9 +6011,6 @@ msgstr ""
5796
6011
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5797
6012
  msgstr ""
5798
6013
 
5799
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5800
- msgstr ""
5801
-
5802
6014
  msgid "if true, will ignore the globally configured proxy when syncing"
5803
6015
  msgstr ""
5804
6016
 
@@ -5838,6 +6050,9 @@ msgstr ""
5838
6050
  msgid "invalid container image name"
5839
6051
  msgstr ""
5840
6052
 
6053
+ msgid "invalid: Repositories can only require one OS version."
6054
+ msgstr ""
6055
+
5841
6056
  msgid "is already attached to the capsule"
5842
6057
  msgstr ""
5843
6058
 
@@ -5878,6 +6093,9 @@ msgstr ""
5878
6093
  msgid "maximum size of each ISO in MB"
5879
6094
  msgstr ""
5880
6095
 
6096
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
6097
+ msgstr ""
6098
+
5881
6099
  msgid "may not be less than the number of hosts associated with the host collection."
5882
6100
  msgstr ""
5883
6101
 
@@ -5900,6 +6118,9 @@ msgstr "ਧਨਾਤਮਕ ਅੰਕ ਮੁੱਲ ਹੋਣਾ ਜਰੂਰੀ
5900
6118
  msgid "must be one of the following: %s"
5901
6119
  msgstr ""
5902
6120
 
6121
+ msgid "must be one of: %s"
6122
+ msgstr ""
6123
+
5903
6124
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5904
6125
  msgid "must be unique within one organization"
5905
6126
  msgstr "ਇੱਕ ਸੰਗਠਨ ਵਿੱਚ ਵੱਖਰਾਂ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
@@ -6164,6 +6385,9 @@ msgstr ""
6164
6385
  msgid "the uuid of the puppet module to associate"
6165
6386
  msgstr ""
6166
6387
 
6388
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6389
+ msgstr ""
6390
+
6167
6391
  msgid "true if the latest version of the component's content view is desired"
6168
6392
  msgstr ""
6169
6393