katello 3.17.0.rc1 → 3.17.0.rc2

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 (293) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +5 -3
  3. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +1 -1
  4. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -2
  5. data/app/controllers/katello/api/v2/api_controller.rb +1 -1
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/content_uploads_controller.rb +5 -5
  8. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +47 -0
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +50 -19
  10. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +1 -1
  11. data/app/controllers/katello/api/v2/host_tracer_controller.rb +0 -5
  12. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +15 -0
  13. data/app/controllers/katello/api/v2/repositories_controller.rb +24 -14
  14. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  15. data/app/controllers/katello/concerns/api/v2/{associations_permission_check.rb → authorization.rb} +20 -2
  16. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +11 -5
  17. data/app/helpers/katello/content_view_helper.rb +1 -1
  18. data/app/lib/actions/candlepin/product/content_add.rb +1 -2
  19. data/app/lib/actions/katello/capsule_content/refresh_repos.rb +1 -1
  20. data/app/lib/actions/katello/capsule_content/sync.rb +2 -2
  21. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +17 -3
  22. data/app/lib/actions/katello/content_view/capsule_sync.rb +1 -1
  23. data/app/lib/actions/katello/content_view/destroy.rb +2 -2
  24. data/app/lib/actions/katello/content_view/incremental_updates.rb +1 -1
  25. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -0
  26. data/app/lib/actions/katello/content_view/publish.rb +12 -7
  27. data/app/lib/actions/katello/content_view_puppet_environment/clone.rb +1 -1
  28. data/app/lib/actions/katello/content_view_puppet_environment/create.rb +2 -2
  29. data/app/lib/actions/katello/content_view_version/incremental_update.rb +4 -4
  30. data/app/lib/actions/katello/organization/manifest_delete.rb +1 -0
  31. data/app/lib/actions/katello/organization/manifest_import.rb +1 -0
  32. data/app/lib/actions/katello/organization/manifest_refresh.rb +1 -0
  33. data/app/lib/actions/katello/product/content_create.rb +3 -3
  34. data/app/lib/actions/katello/product/destroy.rb +25 -4
  35. data/app/lib/actions/katello/repository/clone_contents.rb +3 -3
  36. data/app/lib/actions/katello/repository/clone_to_environment.rb +2 -2
  37. data/app/lib/actions/katello/repository/clone_to_version.rb +1 -1
  38. data/app/lib/actions/katello/repository/create.rb +1 -1
  39. data/app/lib/actions/katello/repository/destroy.rb +10 -4
  40. data/app/lib/actions/katello/repository/export.rb +3 -3
  41. data/app/lib/actions/katello/repository/finish_upload.rb +2 -2
  42. data/app/lib/actions/katello/repository/import_upload.rb +3 -3
  43. data/app/lib/actions/katello/repository/metadata_generate.rb +1 -1
  44. data/app/lib/actions/katello/repository/multi_clone_contents.rb +6 -10
  45. data/app/lib/actions/katello/repository/purge_empty_content.rb +1 -1
  46. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  47. data/app/lib/actions/katello/repository/sync.rb +35 -25
  48. data/app/lib/actions/katello/repository/update.rb +30 -19
  49. data/app/lib/actions/katello/repository/update_http_proxy_details.rb +1 -1
  50. data/app/lib/actions/katello/repository/update_metadata_sync.rb +1 -1
  51. data/app/lib/actions/katello/repository/upload_files.rb +2 -2
  52. data/app/lib/actions/katello/repository/verify_checksum.rb +28 -0
  53. data/app/lib/actions/pulp/content_view_puppet_environment/copy_contents.rb +1 -1
  54. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +1 -1
  55. data/app/lib/actions/pulp/orchestration/repository/sync.rb +2 -1
  56. data/app/lib/actions/pulp/repository/copy_all_units.rb +1 -1
  57. data/app/lib/actions/pulp/repository/copy_units.rb +1 -1
  58. data/app/lib/actions/pulp/repository/create.rb +1 -1
  59. data/app/lib/actions/pulp/repository/destroy.rb +1 -1
  60. data/app/lib/actions/pulp/repository/remove_units.rb +2 -2
  61. data/app/lib/actions/pulp/repository/sync.rb +3 -2
  62. data/app/lib/actions/pulp3/capsule_content/sync.rb +3 -1
  63. data/app/lib/actions/pulp3/content_guard/refresh_all_distributions.rb +19 -0
  64. data/app/lib/actions/pulp3/content_migration.rb +3 -3
  65. data/app/lib/actions/pulp3/content_view_version/create_exporter.rb +20 -0
  66. data/app/lib/actions/pulp3/content_view_version/destroy_exporter.rb +16 -0
  67. data/app/lib/actions/pulp3/content_view_version/export.rb +19 -0
  68. data/app/lib/actions/pulp3/import_migration.rb +3 -3
  69. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +69 -0
  70. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -2
  71. data/app/lib/actions/pulp3/orchestration/repository/create.rb +1 -1
  72. data/app/lib/actions/pulp3/orchestration/repository/sync.rb +3 -1
  73. data/app/lib/actions/pulp3/orchestration/repository/trigger_update_repo_cert_guard.rb +22 -0
  74. data/app/lib/actions/pulp3/orchestration/repository/upload_content.rb +1 -1
  75. data/app/lib/actions/pulp3/repository/copy_content.rb +0 -1
  76. data/app/lib/actions/pulp3/repository/multi_copy_units.rb +2 -2
  77. data/app/lib/actions/pulp3/repository/presenters/repair_presenter.rb +85 -0
  78. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +11 -5
  79. data/app/lib/actions/pulp3/repository/repair.rb +29 -0
  80. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  81. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  82. data/app/lib/actions/pulp3/repository/save_version.rb +20 -16
  83. data/app/lib/actions/pulp3/repository/save_versions.rb +1 -1
  84. data/app/lib/actions/pulp3/repository/sync.rb +1 -1
  85. data/app/lib/actions/pulp3/repository/update_cv_repository_cert_guard.rb +6 -2
  86. data/app/lib/actions/pulp3/repository/upload_file.rb +2 -2
  87. data/app/lib/katello/concerns/base_template_scope_extensions.rb +5 -3
  88. data/app/lib/katello/concerns/permission_extensions.rb +14 -0
  89. data/app/lib/katello/foreman.rb +1 -1
  90. data/app/lib/katello/resources/candlepin/product.rb +0 -11
  91. data/app/lib/katello/resources/registry.rb +3 -3
  92. data/app/models/katello/authorization/content_view_version_export_history.rb +11 -0
  93. data/app/models/katello/authorization/product.rb +4 -0
  94. data/app/models/katello/authorization/repository.rb +8 -0
  95. data/app/models/katello/concerns/content_facet_host_extensions.rb +2 -1
  96. data/app/models/katello/concerns/organization_extensions.rb +6 -1
  97. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  98. data/app/models/katello/concerns/redhat_extensions.rb +4 -2
  99. data/app/models/katello/concerns/smart_proxy_extensions.rb +33 -16
  100. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -1
  101. data/app/models/katello/content_view.rb +1 -1
  102. data/app/models/katello/content_view_package_filter.rb +1 -1
  103. data/app/models/katello/content_view_puppet_environment.rb +1 -1
  104. data/app/models/katello/content_view_version.rb +3 -1
  105. data/app/models/katello/content_view_version_export_history.rb +22 -0
  106. data/app/models/katello/docker_meta_tag.rb +1 -1
  107. data/app/models/katello/errata_status.rb +21 -12
  108. data/app/models/katello/erratum.rb +1 -1
  109. data/app/models/katello/glue/candlepin/owner.rb +4 -2
  110. data/app/models/katello/glue/pulp/repo.rb +3 -1
  111. data/app/models/katello/host/content_facet.rb +8 -0
  112. data/app/models/katello/kt_environment.rb +1 -1
  113. data/app/models/katello/package_group.rb +1 -1
  114. data/app/models/katello/ping.rb +8 -3
  115. data/app/models/katello/pulp3/content_guard.rb +1 -1
  116. data/app/models/katello/purpose_status.rb +2 -2
  117. data/app/models/katello/repository.rb +23 -15
  118. data/app/models/katello/rhsm_fact_parser.rb +1 -1
  119. data/app/models/katello/root_repository.rb +2 -15
  120. data/app/models/katello/sync_plan.rb +8 -0
  121. data/app/models/setting/content.rb +3 -1
  122. data/app/services/cert/certs.rb +10 -2
  123. data/app/services/katello/candlepin/event_handler.rb +1 -0
  124. data/app/services/katello/host_status_manager.rb +7 -0
  125. data/app/services/katello/pulp/content.rb +1 -1
  126. data/app/services/katello/pulp/repository.rb +7 -7
  127. data/app/services/katello/pulp/repository/deb.rb +2 -2
  128. data/app/services/katello/pulp/repository/docker.rb +5 -5
  129. data/app/services/katello/pulp/repository/file.rb +2 -2
  130. data/app/services/katello/pulp/repository/ostree.rb +2 -2
  131. data/app/services/katello/pulp/repository/puppet.rb +2 -2
  132. data/app/services/katello/pulp/repository/yum.rb +5 -6
  133. data/app/services/katello/pulp/smart_proxy_repository.rb +1 -1
  134. data/app/services/katello/pulp3/ansible_collection.rb +2 -2
  135. data/app/services/katello/pulp3/api/core.rb +16 -0
  136. data/app/services/katello/pulp3/content.rb +3 -3
  137. data/app/services/katello/pulp3/content_view_version/export.rb +71 -0
  138. data/app/services/katello/pulp3/distribution.rb +2 -2
  139. data/app/services/katello/pulp3/docker_blob.rb +2 -2
  140. data/app/services/katello/pulp3/docker_manifest.rb +2 -2
  141. data/app/services/katello/pulp3/docker_manifest_list.rb +2 -2
  142. data/app/services/katello/pulp3/docker_tag.rb +2 -2
  143. data/app/services/katello/pulp3/erratum.rb +2 -2
  144. data/app/services/katello/pulp3/file_unit.rb +2 -2
  145. data/app/services/katello/pulp3/migration.rb +139 -34
  146. data/app/services/katello/pulp3/migration_plan.rb +50 -14
  147. data/app/services/katello/pulp3/migration_switchover.rb +41 -9
  148. data/app/services/katello/pulp3/module_stream.rb +2 -2
  149. data/app/services/katello/pulp3/package_group.rb +2 -2
  150. data/app/services/katello/pulp3/repository.rb +9 -9
  151. data/app/services/katello/pulp3/repository/docker.rb +18 -10
  152. data/app/services/katello/pulp3/repository/yum.rb +25 -13
  153. data/app/services/katello/pulp3/repository_mirror.rb +2 -1
  154. data/app/services/katello/pulp3/rpm.rb +2 -2
  155. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +2 -2
  156. data/app/services/katello/pulp3/smart_proxy_repository.rb +1 -1
  157. data/app/services/katello/pulp3/srpm.rb +2 -2
  158. data/app/services/katello/pulp3/task_group.rb +1 -1
  159. data/app/services/katello/pulp3/yum_metadata_file.rb +2 -2
  160. data/app/services/katello/registration_manager.rb +9 -3
  161. data/app/services/katello/repository_type.rb +1 -1
  162. data/app/services/katello/smart_proxy_helper.rb +14 -17
  163. data/app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb +10 -2
  164. data/app/views/katello/api/v2/content_view_repositories/show_all.json.rabl +8 -0
  165. data/app/views/katello/api/v2/content_view_version_export_histories/index.json.rabl +7 -0
  166. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +13 -0
  167. data/app/views/katello/api/v2/package_groups/show.json.rabl +1 -1
  168. data/app/views/katello/api/v2/packages/show.json.rabl +1 -1
  169. data/app/views/katello/api/v2/repositories/base.json.rabl +2 -1
  170. data/app/views/katello/api/v2/srpms/show.json.rabl +1 -1
  171. data/app/views/katello/api/v2/sync_plans/show.json.rabl +2 -1
  172. data/config/routes/api/rhsm.rb +1 -0
  173. data/config/routes/api/v2.rb +8 -1
  174. data/db/migrate/20200818040551_add_content_view_version_export_history.rb +13 -0
  175. data/db/migrate/20200818192230_update_system_purpose_status.rb +12 -0
  176. data/db/migrate/20200820145217_add_download_concurrency_to_katello_root_repositories.rb +5 -0
  177. data/db/migrate/20200910140340_remove_distribution_uuid.rb +5 -0
  178. data/db/migrate/20200914200906_remove_auto_enabled.rb +5 -0
  179. data/engines/bastion/app/assets/javascripts/bastion/bastion.js +1 -0
  180. data/engines/bastion/app/assets/javascripts/bastion/routing.module.js +1 -1
  181. data/engines/bastion/vendor/assets/javascripts/bastion/angular-ui-router/stateEvents.js +300 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-keys.controller.js +1 -1
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-add-subscriptions.controller.js +1 -1
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js +1 -1
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-subscriptions.controller.js +1 -1
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-products.controller.js +1 -1
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-repositories.controller.js +1 -1
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +1 -1
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-host-collections-modal.controller.js +1 -1
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-module-streams-modal.controller.js +1 -1
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-repository-sets-modal.controller.js +1 -1
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-subscriptions-modal.controller.js +1 -1
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-traces-modal.controller.js +1 -1
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts-helper.service.js +1 -1
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +1 -1
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +1 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -1
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-applicable.controller.js +1 -1
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -1
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -1
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-host-collections.controller.js +1 -1
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-subscriptions.controller.js +1 -1
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details-info.controller.js +4 -2
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-host-collections.controller.js +1 -1
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-subscriptions.controller.js +1 -1
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +2 -2
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +1 -1
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +1 -1
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +1 -1
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +1 -1
  212. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +1 -1
  213. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +1 -1
  214. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +1 -1
  215. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +1 -1
  216. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +1 -1
  217. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +1 -1
  218. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-names.controller.js +1 -1
  219. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js +1 -1
  220. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js +1 -1
  221. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +1 -1
  222. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/debs.controller.js +1 -1
  223. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb-content-views.controller.js +1 -1
  224. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb-repositories.controller.js +1 -1
  225. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +1 -1
  226. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-repositories.controller.js +1 -1
  227. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/files/details/file-content-views.controller.js +1 -1
  228. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/files/details/file-repositories.controller.js +1 -1
  229. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/files/files.controller.js +1 -1
  230. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js +1 -1
  231. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +57 -12
  232. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +45 -8
  233. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +42 -5
  234. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +36 -0
  235. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +36 -0
  236. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +36 -0
  237. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +45 -8
  238. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +36 -0
  239. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +36 -0
  240. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +36 -0
  241. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +4 -4
  242. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/fenced-pages.service.js +11 -2
  243. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organization-selector.controller.js +5 -14
  244. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch-repositories.controller.js +1 -1
  245. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package-repositories.controller.js +1 -1
  246. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.controller.js +1 -1
  247. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/product-bulk-action.factory.js +1 -0
  248. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-sync-plan-modal.controller.js +1 -1
  249. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +1 -1
  250. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +1 -1
  251. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +6 -0
  252. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +7 -1
  253. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +0 -9
  254. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +1 -1
  255. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +0 -11
  256. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
  257. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js +16 -1
  258. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html +6 -0
  259. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-content-views.controller.js +1 -1
  260. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-repositories.controller.js +1 -1
  261. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.controller.js +1 -1
  262. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js +4 -3
  263. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html +1 -1
  264. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/sync-plans.controller.js +1 -1
  265. data/lib/katello/engine.rb +2 -0
  266. data/lib/katello/permission_creator.rb +14 -9
  267. data/lib/katello/tasks/clean_published_repo_directories.rake +3 -3
  268. data/lib/katello/tasks/pulp3_content_switchover.rake +24 -6
  269. data/lib/katello/tasks/pulp3_migration.rake +4 -2
  270. data/lib/katello/tasks/pulp3_post_migration_check.rake +2 -2
  271. data/lib/katello/tasks/reimport.rake +1 -1
  272. data/lib/katello/tasks/repository.rake +15 -2
  273. data/lib/katello/tasks/unify_hosts.rake +1 -0
  274. data/lib/katello/tasks/upgrades/3.11/update_puppet_repos.rake +3 -3
  275. data/lib/katello/tasks/upgrades/3.12/remove_pulp2_notifier.rake +2 -2
  276. data/lib/katello/tasks/upgrades/3.8/clear_checksum_type.rake +2 -2
  277. data/lib/katello/version.rb +1 -1
  278. data/locale/action_names.rb +47 -47
  279. data/locale/katello.pot +160 -160
  280. data/webpack/containers/Application/config.js +4 -4
  281. data/webpack/redux/actions/RedHatRepositories/helpers.js +1 -1
  282. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +22 -32
  283. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +0 -14
  284. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -5
  285. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +15 -6
  286. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +0 -1
  287. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  288. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsReducer.test.js +24 -0
  289. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsReducer.test.js.snap +114 -26
  290. metadata +67 -33
  291. data/app/lib/actions/candlepin/product/content_update_enablement.rb +0 -18
  292. data/app/lib/actions/katello/repository/content_update.rb +0 -41
  293. data/app/lib/actions/katello/repository/update_cv_repo_cert_guard.rb +0 -17
@@ -26,7 +26,7 @@ function ($scope, $q, Nutupane, Repository, Environment, ContentView, CurrentOrg
26
26
  $scope.controllerName = 'katello_repositories';
27
27
  $scope.table = repositoriesNutupane.table;
28
28
  $scope.table.initialLoad = false;
29
- repositoriesNutupane.masterOnly = true;
29
+ repositoriesNutupane.primaryOnly = true;
30
30
  repositoriesNutupane.setSearchKey('repositoriesSearch');
31
31
 
32
32
  environment = Environment.queryUnpaged(function (response) {
@@ -16,7 +16,7 @@
16
16
 
17
17
  contentViewsNutupane = new Nutupane(ContentViewVersion, params);
18
18
  $scope.controllerName = 'katello_content_views';
19
- contentViewsNutupane.masterOnly = true;
19
+ contentViewsNutupane.primaryOnly = true;
20
20
  contentViewsNutupane.setSearchKey('contentViewsSearch');
21
21
 
22
22
  $scope.table = contentViewsNutupane.table;
@@ -16,7 +16,7 @@
16
16
 
17
17
  repositoriesNutupane = new Nutupane(Repository, params);
18
18
  $scope.controllerName = 'katello_repositories';
19
- repositoriesNutupane.masterOnly = true;
19
+ repositoriesNutupane.primaryOnly = true;
20
20
  repositoriesNutupane.setSearchKey('repositoriesSearch');
21
21
 
22
22
  $scope.table = repositoriesNutupane.table;
@@ -20,7 +20,7 @@
20
20
 
21
21
  nutupane = new Nutupane(File, params);
22
22
  $scope.controllerName = 'katello_files';
23
- nutupane.masterOnly = true;
23
+ nutupane.primaryOnly = true;
24
24
 
25
25
  $scope.table = nutupane.table;
26
26
  $scope.controllerName = 'katello_files';
@@ -27,7 +27,7 @@ angular.module('Bastion.host-collections').controller('HostCollectionsController
27
27
 
28
28
  var nutupane = new Nutupane(HostCollection, params);
29
29
  $scope.controllerName = 'katello_host_collections';
30
- nutupane.masterOnly = true;
30
+ nutupane.primaryOnly = true;
31
31
 
32
32
  $scope.table = nutupane.table;
33
33
  $scope.removeRow = nutupane.removeRow;
@@ -15,11 +15,12 @@
15
15
  # Ettore Atalan <atalanttore@googlemail.com>, 2020
16
16
  # Bryan Kearney <bryan.kearney@gmail.com>, 2020
17
17
  # simon11 <transifex@stieger.co>, 2020
18
+ # Ulrich Habel <rhaen@pkgbox.de>, 2020
18
19
  #
19
20
  msgid ""
20
21
  msgstr ""
21
22
  "Project-Id-Version: \n"
22
- "Last-Translator: simon11 <transifex@stieger.co>, 2020\n"
23
+ "Last-Translator: Ulrich Habel <rhaen@pkgbox.de>, 2020\n"
23
24
  "Language-Team: German (https://www.transifex.com/foreman/teams/114/de/)\n"
24
25
  "Content-Type: text/plain; charset=UTF-8\n"
25
26
  "Content-Transfer-Encoding: 8bit\n"
@@ -766,6 +767,7 @@ msgid "An error occurred saving the Environment:"
766
767
  msgstr "Fehler beim Speichern der Umgebung:"
767
768
 
768
769
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
770
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
769
771
  msgid "An error occurred saving the Filter:"
770
772
  msgstr "Fehler beim Speichern des Filters:"
771
773
 
@@ -809,7 +811,7 @@ msgstr ""
809
811
 
810
812
  #: app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js
811
813
  msgid "An error occurred while creating the Product: %s"
812
- msgstr ""
814
+ msgstr "Fehler beim Speichern des Produkts:"
813
815
 
814
816
  #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-http-proxy-modal.controller.js
815
817
  #: app/assets/javascripts/bastion_katello/products/products.controller.js
@@ -845,15 +847,15 @@ msgstr ""
845
847
 
846
848
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html
847
849
  msgid "Applicable Packages"
848
- msgstr ""
850
+ msgstr "Anwendbare Pakete"
849
851
 
850
852
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
851
853
  msgid "Applicable To"
852
- msgstr ""
854
+ msgstr "Anwendbar auf"
853
855
 
854
856
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-add-subscriptions.html
855
857
  msgid "Applicable to Host"
856
- msgstr ""
858
+ msgstr "Anwendbar auf Host"
857
859
 
858
860
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
859
861
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
@@ -924,13 +926,13 @@ msgstr "Anwenden"
924
926
 
925
927
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
926
928
  msgid "Apt Actions"
927
- msgstr ""
929
+ msgstr "Apt Aktionen"
928
930
 
929
931
  #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
930
932
  #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
931
933
  #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
932
934
  msgid "Apt Repositories"
933
- msgstr ""
935
+ msgstr "Apt Repositories"
934
936
 
935
937
  #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
936
938
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html
@@ -1235,7 +1237,7 @@ msgstr "Autor"
1235
1237
  #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1236
1238
  #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1237
1239
  msgid "Auto Publish"
1238
- msgstr ""
1240
+ msgstr "Automatisch veröffentlichen"
1239
1241
 
1240
1242
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
1241
1243
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
@@ -1245,7 +1247,7 @@ msgstr "Automatische Verknüpfung"
1245
1247
 
1246
1248
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1247
1249
  msgid "Auto-Attach Details"
1248
- msgstr ""
1250
+ msgstr "Automatische Verknüpfung der Details"
1249
1251
 
1250
1252
  #: app/assets/javascripts/bastion_katello/common/views/subscription-add-or-remove.html
1251
1253
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
@@ -1330,7 +1332,7 @@ msgstr ""
1330
1332
 
1331
1333
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
1332
1334
  msgid "Bootable"
1333
- msgstr ""
1335
+ msgstr "Bootfähig"
1334
1336
 
1335
1337
  #: app/assets/javascripts/bastion_katello/ostree-branches/details/views/ostree-branch-info.html
1336
1338
  msgid "Branch Info"
@@ -1387,27 +1389,35 @@ msgstr "Abbrechen"
1387
1389
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
1388
1390
  #: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
1389
1391
  msgid "Cannot Remove"
1390
- msgstr ""
1392
+ msgstr "Löschen nicht möglich"
1391
1393
 
1392
1394
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
1393
1395
  msgid "Cannot republish Repository without the proper permissions."
1394
1396
  msgstr ""
1397
+ "Sie können dieses Repository ohne die erforderlichen Rechte nicht neu "
1398
+ "veröffentlichen."
1395
1399
 
1396
1400
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
1397
1401
  msgid "Cannot republish Repository, a sync is already in progress."
1398
1402
  msgstr ""
1403
+ "Sie können das Repository nicht neu veröffentlichen, da bereits eine "
1404
+ "Aktualisierung stattfindet."
1399
1405
 
1400
1406
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
1401
1407
  msgid "Cannot sync Repository without a URL."
1402
- msgstr ""
1408
+ msgstr "Sie können das Repository ohne URL nicht synchroniseren."
1403
1409
 
1404
1410
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
1405
1411
  msgid "Cannot sync Repository without the proper permissions."
1406
1412
  msgstr ""
1413
+ "Sie können dieses Repository ohne die erforderlichen Rechte nicht "
1414
+ "veröffentlichen."
1407
1415
 
1408
1416
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
1409
1417
  msgid "Cannot sync Repository, a sync is already in progress."
1410
1418
  msgstr ""
1419
+ "Sie können das Repository nicht synchroniseren, da es bereits synchronisiert"
1420
+ " wird."
1411
1421
 
1412
1422
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
1413
1423
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections-table.html
@@ -1448,6 +1458,18 @@ msgstr ""
1448
1458
  "Um die Standardeinstellungen zu ändern, muss subscription-manager Version "
1449
1459
  "1.10 oder höher auf diesem Host installiert sein."
1450
1460
 
1461
+ #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1462
+ msgid ""
1463
+ "Changing the Content View will not affect the Content Host until its next checkin.\n"
1464
+ " To update the Content Host immediately run the following command:"
1465
+ msgstr ""
1466
+
1467
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1468
+ msgid ""
1469
+ "Changing the Content View will not affect the Content Hosts until their next checkin.\n"
1470
+ " To update the Content Hosts immediately run the following command:"
1471
+ msgstr ""
1472
+
1451
1473
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
1452
1474
  #: app/assets/javascripts/bastion_katello/files/details/views/file-info.html
1453
1475
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
@@ -2292,6 +2314,11 @@ msgstr "Bearbeiten"
2292
2314
  msgid "Enable"
2293
2315
  msgstr "Aktivieren"
2294
2316
 
2317
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2318
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2319
+ msgid "Enable on Registration"
2320
+ msgstr ""
2321
+
2295
2322
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
2296
2323
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2297
2324
  msgid "Enable Traces"
@@ -2463,6 +2490,10 @@ msgstr "Ereignis"
2463
2490
  msgid "Exclude"
2464
2491
  msgstr "Ausschließen"
2465
2492
 
2493
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2494
+ msgid "Exclude all Module Streams with no errata."
2495
+ msgstr ""
2496
+
2466
2497
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2467
2498
  msgid "Exclude all RPMs with no errata."
2468
2499
  msgstr "Alle RPMs ohne Errata ausschließen."
@@ -2563,6 +2594,10 @@ msgstr ""
2563
2594
  msgid "Filter Saved"
2564
2595
  msgstr "Filter gespeichert"
2565
2596
 
2597
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
2598
+ msgid "Filter Updated -"
2599
+ msgstr ""
2600
+
2566
2601
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
2567
2602
  msgid "Filter:"
2568
2603
  msgstr "Filter:"
@@ -2856,6 +2891,10 @@ msgstr ""
2856
2891
  msgid "Include"
2857
2892
  msgstr "Einschließen"
2858
2893
 
2894
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2895
+ msgid "Include all Module Streams with no errata."
2896
+ msgstr ""
2897
+
2859
2898
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2860
2899
  msgid "Include all RPMs with no errata."
2861
2900
  msgstr "Alle RPMs ohne Errata einschließen."
@@ -5080,6 +5119,12 @@ msgid ""
5080
5119
  "will be synced."
5081
5120
  msgstr ""
5082
5121
 
5122
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5123
+ msgid ""
5124
+ "Selecting this option will automatically enable this Repository when a Host "
5125
+ "registers and consumes this subscription."
5126
+ msgstr ""
5127
+
5083
5128
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5084
5129
  msgid ""
5085
5130
  "Selecting this option will result in contents that are no longer part of the"
@@ -10,11 +10,12 @@
10
10
  # Carmela Rubiños <carmela.rubinos@gmail.com>, 2020
11
11
  # Bryan Kearney <bryan.kearney@gmail.com>, 2020
12
12
  # Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2020
13
+ # Amit Upadhye <aupadhye@redhat.com>, 2020
13
14
  #
14
15
  msgid ""
15
16
  msgstr ""
16
17
  "Project-Id-Version: \n"
17
- "Last-Translator: Sergio Ocón-Cárdenas <sergio.ocon@redhat.com>, 2020\n"
18
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2020\n"
18
19
  "Language-Team: Spanish (https://www.transifex.com/foreman/teams/114/es/)\n"
19
20
  "Content-Type: text/plain; charset=UTF-8\n"
20
21
  "Content-Transfer-Encoding: 8bit\n"
@@ -609,7 +610,7 @@ msgstr "Añadir un nuevo filtro Yum"
609
610
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
610
611
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
611
612
  msgid "Add ons"
612
- msgstr ""
613
+ msgstr "Complementos"
613
614
 
614
615
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
615
616
  msgid "Add Package Group"
@@ -788,6 +789,7 @@ msgid "An error occurred saving the Environment:"
788
789
  msgstr "Ocurrió un error al guardar el entorno:"
789
790
 
790
791
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
792
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
791
793
  msgid "An error occurred saving the Filter:"
792
794
  msgstr "Ocurrió un error al guardar el filtro:"
793
795
 
@@ -840,7 +842,7 @@ msgstr "Ocurrió un error:"
840
842
 
841
843
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
842
844
  msgid "Ansible Collections"
843
- msgstr ""
845
+ msgstr "Colecciones de Ansible"
844
846
 
845
847
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
846
848
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -1515,6 +1517,18 @@ msgstr ""
1515
1517
  "Para modificar la configuración predeterminada debe tener instalada en el "
1516
1518
  "host la herramienta subscription-manager versión 1.10 o posterior."
1517
1519
 
1520
+ #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1521
+ msgid ""
1522
+ "Changing the Content View will not affect the Content Host until its next checkin.\n"
1523
+ " To update the Content Host immediately run the following command:"
1524
+ msgstr ""
1525
+
1526
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1527
+ msgid ""
1528
+ "Changing the Content View will not affect the Content Hosts until their next checkin.\n"
1529
+ " To update the Content Hosts immediately run the following command:"
1530
+ msgstr ""
1531
+
1518
1532
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
1519
1533
  #: app/assets/javascripts/bastion_katello/files/details/views/file-info.html
1520
1534
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
@@ -1681,7 +1695,7 @@ msgstr "Confirmar eliminación de versión: Versión {{ version.version }}"
1681
1695
 
1682
1696
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
1683
1697
  msgid "Container Image Manifest"
1684
- msgstr ""
1698
+ msgstr "Manifiesto de imagen de contenedor"
1685
1699
 
1686
1700
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
1687
1701
  msgid "Container Image Manifest Lists"
@@ -1708,7 +1722,7 @@ msgstr ""
1708
1722
 
1709
1723
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
1710
1724
  msgid "Container Image Tag"
1711
- msgstr ""
1725
+ msgstr "Etiqueta de imagen de contenedor"
1712
1726
 
1713
1727
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html
1714
1728
  msgid "Container Image Tag Filter:"
@@ -1719,7 +1733,7 @@ msgstr ""
1719
1733
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
1720
1734
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
1721
1735
  msgid "Container Image Tags"
1722
- msgstr ""
1736
+ msgstr "Etiquetas de imagen de contenedor"
1723
1737
 
1724
1738
  #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1725
1739
  msgid "Container Images"
@@ -2376,6 +2390,11 @@ msgstr "Editar"
2376
2390
  msgid "Enable"
2377
2391
  msgstr "Habilitar"
2378
2392
 
2393
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2394
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2395
+ msgid "Enable on Registration"
2396
+ msgstr ""
2397
+
2379
2398
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
2380
2399
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2381
2400
  msgid "Enable Traces"
@@ -2548,6 +2567,10 @@ msgstr "Evento"
2548
2567
  msgid "Exclude"
2549
2568
  msgstr "Excluir"
2550
2569
 
2570
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2571
+ msgid "Exclude all Module Streams with no errata."
2572
+ msgstr ""
2573
+
2551
2574
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2552
2575
  msgid "Exclude all RPMs with no errata."
2553
2576
  msgstr "Excluir todos los RPM sin erratas."
@@ -2649,6 +2672,10 @@ msgstr "Se actualizó correctamente la regla de filtro."
2649
2672
  msgid "Filter Saved"
2650
2673
  msgstr "Filtro guardado"
2651
2674
 
2675
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
2676
+ msgid "Filter Updated -"
2677
+ msgstr ""
2678
+
2652
2679
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
2653
2680
  msgid "Filter:"
2654
2681
  msgstr "Filtro:"
@@ -2944,6 +2971,10 @@ msgstr ""
2944
2971
  msgid "Include"
2945
2972
  msgstr "Incluir"
2946
2973
 
2974
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2975
+ msgid "Include all Module Streams with no errata."
2976
+ msgstr ""
2977
+
2947
2978
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2948
2979
  msgid "Include all RPMs with no errata."
2949
2980
  msgstr "Incluir todos los RPM sin erratas."
@@ -5227,6 +5258,12 @@ msgstr ""
5227
5258
  "\"Validar contenido\" hará que solo se sincronicen los repositorios Yum que "
5228
5259
  "utilizan políticas de descarga \"Inmediata\" o \"En segundo plano\"."
5229
5260
 
5261
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5262
+ msgid ""
5263
+ "Selecting this option will automatically enable this Repository when a Host "
5264
+ "registers and consumes this subscription."
5265
+ msgstr ""
5266
+
5230
5267
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5231
5268
  msgid ""
5232
5269
  "Selecting this option will result in contents that are no longer part of the"
@@ -5267,7 +5304,7 @@ msgstr "Nivel de servicio"
5267
5304
 
5268
5305
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
5269
5306
  msgid "Service Level (SLA)"
5270
- msgstr ""
5307
+ msgstr "Nivel de servicio %s (SLA)"
5271
5308
 
5272
5309
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
5273
5310
  msgid "Set Release Version"
@@ -6382,7 +6419,7 @@ msgstr "URL para descubrir"
6382
6419
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
6383
6420
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
6384
6421
  msgid "Usage Type"
6385
- msgstr ""
6422
+ msgstr "Tipo de uso"
6386
6423
 
6387
6424
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
6388
6425
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
@@ -7,11 +7,12 @@
7
7
  # 21966816214bc546c1fc8a185e75ca1c, 2020
8
8
  # Claer <transiblu@claer.hammock.fr>, 2020
9
9
  # Bryan Kearney <bryan.kearney@gmail.com>, 2020
10
+ # Amit Upadhye <aupadhye@redhat.com>, 2020
10
11
  #
11
12
  msgid ""
12
13
  msgstr ""
13
14
  "Project-Id-Version: \n"
14
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2020\n"
15
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2020\n"
15
16
  "Language-Team: French (https://www.transifex.com/foreman/teams/114/fr/)\n"
16
17
  "Content-Type: text/plain; charset=UTF-8\n"
17
18
  "Content-Transfer-Encoding: 8bit\n"
@@ -613,7 +614,7 @@ msgstr "Ajouter un nouveau filtre Yum"
613
614
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
614
615
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
615
616
  msgid "Add ons"
616
- msgstr ""
617
+ msgstr "Ajouts"
617
618
 
618
619
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
619
620
  msgid "Add Package Group"
@@ -799,6 +800,7 @@ msgstr ""
799
800
  "Une erreur s'est produite lors de l'enregistrement de l'environnement :"
800
801
 
801
802
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
803
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
802
804
  msgid "An error occurred saving the Filter:"
803
805
  msgstr "Une erreur s’est produite lors de l'enregistrement du filtre :"
804
806
 
@@ -861,7 +863,7 @@ msgstr "Une erreur s'est produite :"
861
863
 
862
864
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
863
865
  msgid "Ansible Collections"
864
- msgstr ""
866
+ msgstr "Collections Ansible"
865
867
 
866
868
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
867
869
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -1549,6 +1551,18 @@ msgstr ""
1549
1551
  "Une version 1.10 ou ultérieure de subscription-manager doit être installée "
1550
1552
  "sur cet hôte pour modifier les paramètres par défaut."
1551
1553
 
1554
+ #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1555
+ msgid ""
1556
+ "Changing the Content View will not affect the Content Host until its next checkin.\n"
1557
+ " To update the Content Host immediately run the following command:"
1558
+ msgstr ""
1559
+
1560
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1561
+ msgid ""
1562
+ "Changing the Content View will not affect the Content Hosts until their next checkin.\n"
1563
+ " To update the Content Hosts immediately run the following command:"
1564
+ msgstr ""
1565
+
1552
1566
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
1553
1567
  #: app/assets/javascripts/bastion_katello/files/details/views/file-info.html
1554
1568
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
@@ -2417,6 +2431,11 @@ msgstr "Modifier"
2417
2431
  msgid "Enable"
2418
2432
  msgstr "Activer"
2419
2433
 
2434
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2435
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2436
+ msgid "Enable on Registration"
2437
+ msgstr ""
2438
+
2420
2439
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
2421
2440
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2422
2441
  msgid "Enable Traces"
@@ -2588,6 +2607,10 @@ msgstr "Événement"
2588
2607
  msgid "Exclude"
2589
2608
  msgstr "Exclure"
2590
2609
 
2610
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2611
+ msgid "Exclude all Module Streams with no errata."
2612
+ msgstr ""
2613
+
2591
2614
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2592
2615
  msgid "Exclude all RPMs with no errata."
2593
2616
  msgstr "Exclut tous les RPM sans errata."
@@ -2689,6 +2712,10 @@ msgstr "Règle de filtre mise à jour."
2689
2712
  msgid "Filter Saved"
2690
2713
  msgstr "Filtre enregistré"
2691
2714
 
2715
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
2716
+ msgid "Filter Updated -"
2717
+ msgstr ""
2718
+
2692
2719
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
2693
2720
  msgid "Filter:"
2694
2721
  msgstr "Filtre :"
@@ -2985,6 +3012,10 @@ msgstr ""
2985
3012
  msgid "Include"
2986
3013
  msgstr "Inclure"
2987
3014
 
3015
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
3016
+ msgid "Include all Module Streams with no errata."
3017
+ msgstr ""
3018
+
2988
3019
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2989
3020
  msgid "Include all RPMs with no errata."
2990
3021
  msgstr "Inclure tous les RPM sans errata."
@@ -5272,6 +5303,12 @@ msgstr ""
5272
5303
  "Valider le contenu », seuls les référentiels Yum utilisant les règles de "
5273
5304
  "téléchargement « Immédiates » ou « Arrière-plan » seront synchronisés."
5274
5305
 
5306
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5307
+ msgid ""
5308
+ "Selecting this option will automatically enable this Repository when a Host "
5309
+ "registers and consumes this subscription."
5310
+ msgstr ""
5311
+
5275
5312
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5276
5313
  msgid ""
5277
5314
  "Selecting this option will result in contents that are no longer part of the"
@@ -5314,7 +5351,7 @@ msgstr "Niveau de service"
5314
5351
 
5315
5352
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
5316
5353
  msgid "Service Level (SLA)"
5317
- msgstr ""
5354
+ msgstr "Niveau de service (SLA)"
5318
5355
 
5319
5356
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
5320
5357
  msgid "Set Release Version"
@@ -6434,7 +6471,7 @@ msgstr "URL à découvrir"
6434
6471
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
6435
6472
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
6436
6473
  msgid "Usage Type"
6437
- msgstr ""
6474
+ msgstr "Type d'utilisation"
6438
6475
 
6439
6476
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
6440
6477
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html