katello 4.8.4 → 4.9.0.rc1

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 (481) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js +40 -4
  3. data/app/assets/javascripts/katello/locale/bn/katello.js +1 -0
  4. data/app/assets/javascripts/katello/locale/cs/katello.js +1 -0
  5. data/app/assets/javascripts/katello/locale/de/katello.js +1 -0
  6. data/app/assets/javascripts/katello/locale/en/katello.js +1 -0
  7. data/app/assets/javascripts/katello/locale/es/katello.js +1 -0
  8. data/app/assets/javascripts/katello/locale/fr/katello.js +1 -0
  9. data/app/assets/javascripts/katello/locale/gu/katello.js +1 -0
  10. data/app/assets/javascripts/katello/locale/hi/katello.js +1 -0
  11. data/app/assets/javascripts/katello/locale/it/katello.js +1 -0
  12. data/app/assets/javascripts/katello/locale/ja/katello.js +1 -0
  13. data/app/assets/javascripts/katello/locale/ka/katello.js +1 -0
  14. data/app/assets/javascripts/katello/locale/kn/katello.js +1 -0
  15. data/app/assets/javascripts/katello/locale/ko/katello.js +1 -0
  16. data/app/assets/javascripts/katello/locale/locale/katello.js +1 -0
  17. data/app/assets/javascripts/katello/locale/mr/katello.js +1 -0
  18. data/app/assets/javascripts/katello/locale/or/katello.js +1 -0
  19. data/app/assets/javascripts/katello/locale/pa/katello.js +1 -0
  20. data/app/assets/javascripts/katello/locale/pt/katello.js +1 -0
  21. data/app/assets/javascripts/katello/locale/pt_BR/katello.js +1 -0
  22. data/app/assets/javascripts/katello/locale/ru/katello.js +1 -0
  23. data/app/assets/javascripts/katello/locale/ta/katello.js +1 -0
  24. data/app/assets/javascripts/katello/locale/te/katello.js +1 -0
  25. data/app/assets/javascripts/katello/locale/zh_CN/katello.js +1 -0
  26. data/app/assets/javascripts/katello/locale/zh_TW/katello.js +1 -0
  27. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +10 -0
  28. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -0
  29. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +2 -0
  30. data/app/controllers/katello/api/v2/content_views_controller.rb +22 -12
  31. data/app/controllers/katello/api/v2/environments_controller.rb +5 -1
  32. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +1 -1
  33. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +1 -2
  34. data/app/controllers/katello/api/v2/organizations_controller.rb +11 -0
  35. data/app/controllers/katello/api/v2/repositories_controller.rb +4 -3
  36. data/app/controllers/katello/api/v2/repository_sets_controller.rb +13 -4
  37. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +1 -3
  38. data/app/controllers/katello/concerns/api/api_controller.rb +2 -2
  39. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +1 -1
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +6 -4
  41. data/app/lib/actions/candlepin/product/content_add.rb +13 -1
  42. data/app/lib/actions/candlepin/product/content_update.rb +2 -1
  43. data/app/lib/actions/katello/agent_action.rb +3 -4
  44. data/app/lib/actions/katello/bulk_agent_action.rb +1 -4
  45. data/app/lib/actions/katello/content_view/publish.rb +1 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +1 -0
  47. data/app/lib/actions/katello/host/update_content_view.rb +2 -4
  48. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +0 -10
  49. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +2 -12
  50. data/app/lib/actions/katello/product/content_create.rb +2 -2
  51. data/app/lib/actions/katello/repository/destroy.rb +15 -7
  52. data/app/lib/actions/katello/repository/update.rb +23 -1
  53. data/app/lib/actions/pulp3/abstract_async_task.rb +2 -0
  54. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +5 -12
  55. data/app/lib/katello/concerns/base_template_scope_extensions.rb +34 -2
  56. data/app/lib/katello/event_daemon/runner.rb +8 -4
  57. data/app/lib/katello/repo_discovery.rb +3 -1
  58. data/app/lib/katello/resources/cdn/katello_cdn.rb +4 -8
  59. data/app/lib/katello/util/default_enablement_migrator.rb +183 -0
  60. data/app/models/katello/activation_key.rb +4 -0
  61. data/app/models/katello/alternate_content_source.rb +13 -8
  62. data/app/models/katello/candlepin/repository_mapper.rb +0 -1
  63. data/app/models/katello/concerns/content_view_filter_rule_common.rb +42 -0
  64. data/app/models/katello/concerns/host_managed_extensions.rb +9 -40
  65. data/app/models/katello/concerns/smart_proxy_extensions.rb +24 -23
  66. data/app/models/katello/content.rb +9 -0
  67. data/app/models/katello/content_view.rb +99 -4
  68. data/app/models/katello/content_view_environment_content_facet.rb +12 -0
  69. data/app/models/katello/content_view_filter.rb +5 -1
  70. data/app/models/katello/content_view_package_filter_rule.rb +0 -1
  71. data/app/models/katello/content_view_repository.rb +0 -1
  72. data/app/models/katello/content_view_version.rb +26 -0
  73. data/app/models/katello/docker_meta_tag.rb +4 -0
  74. data/app/models/katello/host/content_facet.rb +2 -0
  75. data/app/models/katello/kt_environment.rb +13 -3
  76. data/app/models/katello/ping.rb +1 -1
  77. data/app/models/katello/product.rb +1 -1
  78. data/app/models/katello/product_content.rb +13 -15
  79. data/app/models/katello/root_repository.rb +21 -2
  80. data/app/models/katello/sync_plan.rb +2 -6
  81. data/app/presenters/katello/host_package_presenter.rb +5 -3
  82. data/app/services/katello/product_content_finder.rb +6 -1
  83. data/app/services/katello/pulp3/alternate_content_source.rb +5 -0
  84. data/app/services/katello/pulp3/module_stream.rb +2 -12
  85. data/app/services/katello/pulp3/repository/yum.rb +3 -0
  86. data/app/views/foreman/job_templates/install_errata.erb +4 -4
  87. data/app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb +4 -7
  88. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +5 -6
  89. data/app/views/katello/api/v2/activation_keys/base.json.rabl +6 -0
  90. data/app/views/katello/api/v2/common/destroy.json.rabl +2 -1
  91. data/app/views/katello/api/v2/content_credentials/show.json.rabl +1 -1
  92. data/app/views/katello/api/v2/content_facet/base.json.rabl +10 -9
  93. data/app/views/katello/api/v2/content_view_repositories/show_all.json.rabl +6 -0
  94. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +11 -1
  95. data/app/views/katello/api/v2/content_views/base.json.rabl +3 -0
  96. data/app/views/katello/api/v2/docker_tags/_base.json.rabl +4 -0
  97. data/app/views/katello/api/v2/environments/show.json.rabl +10 -0
  98. data/app/views/katello/api/v2/host_subscriptions/show.json.rabl +1 -0
  99. data/app/views/katello/api/v2/repositories/index.json.rabl +6 -0
  100. data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
  101. data/app/views/katello/api/v2/repository_sets/show.json.rabl +8 -2
  102. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +22 -15
  103. data/app/views/smart_proxies/_disk_usage.html.erb +2 -0
  104. data/ca/redhat-uep.pem +53 -53
  105. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +0 -1
  106. data/db/migrate/20230328180352_add_applied_filters_to_katello_content_view_versions.rb +5 -0
  107. data/db/migrate/20230503190626_add_metadata_expire_to_root.rb +5 -0
  108. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js +4 -2
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +16 -0
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html +4 -3
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +15 -1
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html +1 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +1 -1
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +4 -2
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html +1 -1
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +10 -4
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html +1 -1
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html +2 -2
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html +1 -1
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +2 -0
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -0
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -0
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +2 -0
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +2 -4
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +0 -1
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +0 -4
  132. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb.controller.js +4 -2
  133. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html +12 -3
  134. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/docker-tag-repositories.controller.js +43 -0
  135. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html +7 -0
  136. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html +0 -1
  137. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html +0 -7
  138. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html +60 -0
  139. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.controller.js +0 -8
  140. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js +10 -0
  141. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html +0 -4
  142. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
  143. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-content-hosts.controller.js +4 -2
  144. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html +5 -4
  145. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html +2 -2
  146. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-packages.html +2 -2
  147. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +7 -0
  148. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata.html +1 -1
  149. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-add-hosts.controller.js +4 -2
  150. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-hosts.controller.js +4 -2
  151. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-add-hosts.html +4 -3
  152. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +4 -3
  153. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +590 -175
  154. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn.po +5157 -0
  155. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn_IN.po +5157 -0
  156. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ca.po +5157 -0
  157. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/cs_CZ.po +5204 -0
  158. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_AT.po +5153 -0
  159. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_DE.po +5159 -0
  160. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/el.po +5157 -0
  161. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_GB.po +5158 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_US.po +5153 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/et_EE.po +5153 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gl.po +5157 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gu.po +5157 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/he_IL.po +5191 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/hi.po +5157 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/id.po +5136 -0
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +5303 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +34 -14
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/kn.po +5157 -0
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ml_IN.po +5153 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/mr.po +5157 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/nl_NL.po +5161 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/or.po +5157 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pa.po +5157 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl.po +5192 -0
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl_PL.po +5187 -0
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt.po +5174 -0
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro.po +5170 -0
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro_RO.po +5170 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +5279 -0
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sl.po +5191 -0
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sv_SE.po +5158 -0
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta.po +5157 -0
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta_IN.po +5157 -0
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/te.po +5157 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/tr.po +5157 -0
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi.po +5136 -0
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi_VN.po +5136 -0
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh.po +5136 -0
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +38 -1
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/views/organization-selector.html +1 -1
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package.controller.js +8 -2
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-info.html +12 -3
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html +1 -1
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +13 -4
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +1 -1
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +12 -2
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details-reclaim-space-modal.html +1 -1
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +6 -0
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -0
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html +1 -1
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html +1 -1
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html +0 -4
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +6 -4
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +20 -1
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories-reclaim-space-modal.html +1 -1
  212. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/activation_keys.scss +13 -0
  213. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +1 -0
  214. data/lib/katello/engine.rb +0 -7
  215. data/lib/katello/plugin.rb +18 -15
  216. data/lib/katello/tasks/upgrades/4.9/update_custom_products_enablement.rake +11 -0
  217. data/lib/katello/version.rb +1 -1
  218. data/locale/action_names.rb +1 -2
  219. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  220. data/locale/bn/katello.po +215 -183
  221. data/locale/bn_IN/LC_MESSAGES/katello.mo +0 -0
  222. data/locale/bn_IN/katello.po +8901 -0
  223. data/locale/ca/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ca/katello.po +8900 -0
  225. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  226. data/locale/cs/katello.po +216 -185
  227. data/locale/cs_CZ/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/cs_CZ/katello.po +8906 -0
  229. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  230. data/locale/de/katello.po +223 -191
  231. data/locale/de_AT/LC_MESSAGES/katello.mo +0 -0
  232. data/locale/de_AT/katello.po +8897 -0
  233. data/locale/de_DE/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/de_DE/katello.po +8906 -0
  235. data/locale/el/LC_MESSAGES/katello.mo +0 -0
  236. data/locale/el/katello.po +8900 -0
  237. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  238. data/locale/en/katello.po +215 -183
  239. data/locale/en_GB/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/en_GB/katello.po +8902 -0
  241. data/locale/en_US/LC_MESSAGES/katello.mo +0 -0
  242. data/locale/en_US/katello.po +8897 -0
  243. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  244. data/locale/es/katello.po +218 -187
  245. data/locale/et_EE/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/et_EE/katello.po +8897 -0
  247. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  248. data/locale/fr/katello.po +233 -204
  249. data/locale/gl/LC_MESSAGES/katello.mo +0 -0
  250. data/locale/gl/katello.po +8900 -0
  251. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/gu/katello.po +215 -183
  253. data/locale/he_IL/LC_MESSAGES/katello.mo +0 -0
  254. data/locale/he_IL/katello.po +8902 -0
  255. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  256. data/locale/hi/katello.po +215 -183
  257. data/locale/id/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/id/katello.po +8896 -0
  259. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  260. data/locale/it/katello.po +216 -185
  261. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  262. data/locale/ja/katello.po +233 -202
  263. data/locale/ka/LC_MESSAGES/katello.mo +0 -0
  264. data/locale/ka/katello.po +223 -191
  265. data/locale/katello.pot +1844 -1796
  266. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  267. data/locale/kn/katello.po +215 -183
  268. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  269. data/locale/ko/katello.po +216 -183
  270. data/locale/ml_IN/LC_MESSAGES/katello.mo +0 -0
  271. data/locale/ml_IN/katello.po +8897 -0
  272. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  273. data/locale/mr/katello.po +215 -183
  274. data/locale/nl_NL/LC_MESSAGES/katello.mo +0 -0
  275. data/locale/nl_NL/katello.po +8907 -0
  276. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  277. data/locale/or/katello.po +215 -183
  278. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  279. data/locale/pa/katello.po +215 -183
  280. data/locale/pl/LC_MESSAGES/katello.mo +0 -0
  281. data/locale/pl/katello.po +8903 -0
  282. data/locale/pl_PL/LC_MESSAGES/katello.mo +0 -0
  283. data/locale/pl_PL/katello.po +8899 -0
  284. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  285. data/locale/pt/katello.po +215 -183
  286. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  287. data/locale/pt_BR/katello.po +218 -187
  288. data/locale/ro/LC_MESSAGES/katello.mo +0 -0
  289. data/locale/ro/katello.po +8897 -0
  290. data/locale/ro_RO/LC_MESSAGES/katello.mo +0 -0
  291. data/locale/ro_RO/katello.po +8898 -0
  292. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  293. data/locale/ru/katello.po +216 -184
  294. data/locale/sl/LC_MESSAGES/katello.mo +0 -0
  295. data/locale/sl/katello.po +8901 -0
  296. data/locale/sv_SE/LC_MESSAGES/katello.mo +0 -0
  297. data/locale/sv_SE/katello.po +8903 -0
  298. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  299. data/locale/ta/katello.po +215 -183
  300. data/locale/ta_IN/LC_MESSAGES/katello.mo +0 -0
  301. data/locale/ta_IN/katello.po +8901 -0
  302. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  303. data/locale/te/katello.po +215 -183
  304. data/locale/tr/LC_MESSAGES/katello.mo +0 -0
  305. data/locale/tr/katello.po +8900 -0
  306. data/locale/vi/LC_MESSAGES/katello.mo +0 -0
  307. data/locale/vi/katello.po +8896 -0
  308. data/locale/vi_VN/LC_MESSAGES/katello.mo +0 -0
  309. data/locale/vi_VN/katello.po +8897 -0
  310. data/locale/zh/LC_MESSAGES/katello.mo +0 -0
  311. data/locale/zh/katello.po +8896 -0
  312. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  313. data/locale/zh_CN/katello.po +233 -202
  314. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  315. data/locale/zh_TW/katello.po +216 -183
  316. data/package.json +1 -0
  317. data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext.js +1 -0
  318. data/webpack/components/Bookmark/AddBookmarkModal.js +8 -2
  319. data/webpack/components/Content/ContentTable.js +1 -0
  320. data/webpack/components/Content/Details/ContentDetailInfo.js +1 -1
  321. data/webpack/components/Content/Details/ContentDetails.js +3 -3
  322. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetailInfo.test.js.snap +1 -0
  323. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +4 -0
  324. data/webpack/components/Content/__tests__/__snapshots__/ContentTable.test.js.snap +1 -0
  325. data/webpack/components/RoutedTabs/index.js +1 -1
  326. data/webpack/components/SelectOrg/SetOrganization.js +7 -1
  327. data/webpack/components/Table/EmptyStateMessage.js +8 -3
  328. data/webpack/components/Table/MainTable.js +8 -2
  329. data/webpack/components/TooltipButton/TooltipButton.js +2 -2
  330. data/webpack/components/TooltipButton/__snapshots__/TooltipButton.test.js.snap +3 -0
  331. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +2 -0
  332. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +81 -24
  333. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.scss +3 -0
  334. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +10 -3
  335. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +8 -0
  336. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +3 -2
  337. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +3 -1
  338. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +1 -1
  339. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +0 -4
  340. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErratumExpansionDetail.js +2 -2
  341. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +1 -5
  342. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +20 -0
  343. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  344. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +16 -0
  345. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +54 -8
  346. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +1 -0
  347. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +8 -1
  348. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +1 -0
  349. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +1 -0
  350. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  351. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +2 -1
  352. data/webpack/components/extensions/RegistrationCommands/fields/Force.js +1 -0
  353. data/webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js +1 -0
  354. data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +1 -0
  355. data/webpack/components/extensions/about/index.js +2 -2
  356. data/webpack/components/pf3Table/components/Table.js +1 -0
  357. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +6 -1
  358. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +15 -2
  359. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +6 -1
  360. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +4 -1
  361. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +9 -0
  362. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +1 -0
  363. data/webpack/scenes/Content/Details/ContentDetails.js +4 -2
  364. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -1
  365. data/webpack/scenes/Content/GenericContentPage.js +1 -1
  366. data/webpack/scenes/Content/Table/ContentTable.js +2 -2
  367. data/webpack/scenes/ContentViews/ContentViewsConstants.js +4 -0
  368. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +26 -13
  369. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +27 -13
  370. data/webpack/scenes/ContentViews/Delete/__tests__/cvVersionsData.fixtures.json +8 -4
  371. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -2
  372. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +1 -1
  373. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +25 -24
  374. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -1
  375. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +19 -3
  376. data/webpack/scenes/ContentViews/Details/ContentViewDetailReducer.js +6 -0
  377. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +2 -0
  378. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -2
  379. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +15 -2
  380. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +5 -1
  381. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +13 -9
  382. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +19 -6
  383. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +5 -1
  384. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +50 -51
  385. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +45 -44
  386. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +45 -44
  387. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +13 -8
  388. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +4 -3
  389. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +5 -2
  390. data/webpack/scenes/ContentViews/Details/Filters/FilterRuleConstants.js +6 -0
  391. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +3 -2
  392. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +10 -2
  393. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +5 -1
  394. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +7 -0
  395. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +37 -24
  396. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -3
  397. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -1
  398. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +78 -8
  399. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +27 -8
  400. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailNoReposAdded.fixtures.json +13 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +1 -1
  402. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +16 -16
  403. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +16 -16
  404. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +6 -3
  405. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +10 -5
  406. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +9 -2
  407. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +1 -0
  408. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +2 -1
  409. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +2 -1
  410. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +2 -1
  411. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +12 -6
  412. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +2 -1
  413. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +2 -1
  414. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +25 -4
  415. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +4 -2
  416. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +26 -13
  417. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +30 -17
  418. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -0
  419. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionsResponseData.fixtures.json +6 -3
  420. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -1
  421. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +2 -2
  422. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +8 -1
  423. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -1
  424. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +55 -6
  425. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionComponent.fixtures.json +6 -3
  426. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +2 -1
  427. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +8 -4
  428. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +1 -1
  429. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +4 -2
  430. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  431. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +4 -2
  432. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +30 -3
  433. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +24 -2
  434. data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +4 -0
  435. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +2 -2
  436. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -3
  437. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +2 -1
  438. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +2 -1
  439. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +3 -2
  440. data/webpack/scenes/ContentViews/components/ContentViewSelect/helpers.js +32 -0
  441. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +52 -42
  442. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +1 -0
  443. data/webpack/scenes/ContentViews/components/FiltersAppliedIcon.js +17 -0
  444. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.js +45 -0
  445. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.scss +9 -0
  446. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +1 -1
  447. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +49 -22
  448. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +7 -1
  449. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +1 -0
  450. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +2 -0
  451. data/webpack/scenes/Hosts/ChangeContentSource/index.js +2 -0
  452. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailInfo.test.js.snap +1 -0
  453. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamsTable.test.js.snap +1 -0
  454. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +2 -0
  455. data/webpack/scenes/RedHatRepositories/__tests__/__snapshots__/RedHatRepositoriesPage.test.js.snap +2 -0
  456. data/webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.js +6 -1
  457. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js +1 -1
  458. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +1 -0
  459. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositorySetRepositories.test.js.snap +1 -0
  460. data/webpack/scenes/RedHatRepositories/helpers.js +2 -0
  461. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js +1 -1
  462. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js +2 -2
  463. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +4 -4
  464. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailAssociations.test.js.snap +1 -0
  465. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap +2 -0
  466. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +4 -0
  467. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +2 -1
  468. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +5 -4
  469. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +1 -0
  470. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +1 -1
  471. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -1
  472. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +3 -0
  473. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +1 -0
  474. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +1 -1
  475. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +5 -6
  476. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +60 -5
  477. data/webpack/utils/useKatelloDocUrl.js +18 -0
  478. metadata +163 -22
  479. data/app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb +0 -36
  480. data/app/lib/katello/util/content_overrides_migrator.rb +0 -98
  481. data/webpack/components/extensions/HostDetails/common/KatelloAgentDeprecationAlert.js +0 -23
data/locale/fr/katello.po CHANGED
@@ -157,9 +157,6 @@ msgstr "%s est requis"
157
157
  msgid "%s is unreachable. %s"
158
158
  msgstr "%s est inaccessible. %s "
159
159
 
160
- msgid "%s must be an array."
161
- msgstr "%s doit correspondre à un tableau"
162
-
163
160
  msgid "%{errata} (%{total} other errata)"
164
161
  msgstr "%{errata} (%{total} autres errata )"
165
162
 
@@ -394,15 +391,12 @@ msgstr "<b>SYNC </b> RÉSUMÉ"
394
391
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
395
392
  msgstr "Une version du CV existe déjà avec la même version majeure et mineure (%{major}.%{minor})"
396
393
 
397
- msgid "A Pool and its Subscription cannot belong to different organizations"
398
- msgstr "Un pool et son abonnement ne peuvent pas appartenir à des organisations différentes"
394
+ msgid "A Pool and its Subscription cannot belong to different organizations."
395
+ msgstr ""
399
396
 
400
397
  msgid "A backend service [ %s ] is unreachable"
401
398
  msgstr "Un service backend [ %s ] est injoignable"
402
399
 
403
- msgid "A content view can be added by using the \"Create content view\" button below."
404
- msgstr "Une vue du contenu peut être ajoutée en utilisant le bouton \"Créer affichage de contenu\" ci-dessous."
405
-
406
400
  msgid "A content_type must be provided."
407
401
  msgstr "Un content_type doit être fourni."
408
402
 
@@ -469,9 +463,6 @@ msgstr "Action non autorisée pour le proxy smart par défaut."
469
463
  msgid "Action unauthorized to be performed in this organization."
470
464
  msgstr "Action non autorisée à être exécutée dans cette organisation."
471
465
 
472
- msgid "Action unauthorized to be performed on selected hosts."
473
- msgstr "Action non autorisée à être exécutée sur des hôtes sélectionnés."
474
-
475
466
  msgid "Action with sub plans"
476
467
  msgstr "Action avec sous-plans"
477
468
 
@@ -523,6 +514,9 @@ msgstr "Ajouter une règle RPM"
523
514
  msgid "Add Subscriptions"
524
515
  msgstr "Ajouter Abonnements"
525
516
 
517
+ msgid "Add Subscriptions using the Add Subscriptions button."
518
+ msgstr ""
519
+
526
520
  msgid "Add a subscription to a host"
527
521
  msgstr "Ajouter un abonnement à un hôte"
528
522
 
@@ -532,6 +526,9 @@ msgstr "Montrer une autre source de contenu"
532
526
  msgid "Add components to the content view"
533
527
  msgstr "Ajouter des éléments à l’affichage du contenu"
534
528
 
529
+ msgid "Add content"
530
+ msgstr ""
531
+
535
532
  msgid "Add content view"
536
533
  msgstr "Ajouter un affichage de contenu"
537
534
 
@@ -574,12 +571,18 @@ msgstr "Ajouter des produits au plan de sync"
574
571
  msgid "Add repositories"
575
572
  msgstr "Ajouter référentiels"
576
573
 
574
+ msgid "Add repositories with package groups to content view to select them here."
575
+ msgstr ""
576
+
577
577
  msgid "Add rule"
578
578
  msgstr "Ajouter une règle"
579
579
 
580
580
  msgid "Add source"
581
581
  msgstr "Ajouter une source"
582
582
 
583
+ msgid "Add subscriptions"
584
+ msgstr ""
585
+
583
586
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
584
587
  msgstr "Ajouter les abonnements consommés par un manifeste de Red Hat Subscription Management"
585
588
 
@@ -589,12 +592,6 @@ msgstr "Ajouter des abonnements à un ou plusieurs hôtes"
589
592
  msgid "Add to a host collection"
590
593
  msgstr "Ajouter à une collection d'hôtes"
591
594
 
592
- msgid "Add to this filter using the 'Add Deb rule' button."
593
- msgstr "Ajoutez à ce filtre en utilisant le bouton \"Ajouter une règle Deb\" (Add Deb rule)"
594
-
595
- msgid "Add to this filter using the 'Add filter rule' button."
596
- msgstr "Ajoutez à ce filtre en utilisant le bouton \"Ajouter une règle de filtre\""
597
-
598
595
  msgid "Add-ons"
599
596
  msgstr "Add ons"
600
597
 
@@ -718,15 +715,12 @@ msgstr "Toujours mettre à jour la dernière version"
718
715
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
719
716
  msgstr "Nombre de workers dans le pool pour l'exécution des tâches liées à l'hôte. Si la valeur est 0, la file d'attente par défaut sera utilisée à la place. Il faut redémarrer le service dynflowd/foreman-tasks."
720
717
 
721
- msgid "An alternate content source can be added by using the \"Add source\" button below."
722
- msgstr "Une autre source de contenu peut être ajoutée en utilisant le bouton \"Ajouter une source\" ci-dessous."
718
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
719
+ msgstr ""
723
720
 
724
721
  msgid "An environment is missing a prior"
725
722
  msgstr "Il manque à l'environnement un préalable"
726
723
 
727
- msgid "An error occurred during content removal. Could not find repository with id: %s"
728
- msgstr "Une erreur s'est produite lors du retrait du contenu. Impossible de trouver le référentiel avec l'identifiant : %s"
729
-
730
724
  msgid ""
731
725
  "An error occurred during the sync \n"
732
726
  "%{error_message}"
@@ -925,12 +919,6 @@ msgstr "Auto Publish"
925
919
  msgid "Autopublish"
926
920
  msgstr "Autopublication"
927
921
 
928
- msgid "Autosearch"
929
- msgstr "Recherche automatique"
930
-
931
- msgid "Autosearch delay"
932
- msgstr "Délai de recherche automatique"
933
-
934
922
  msgid "Available"
935
923
  msgstr "Disponible"
936
924
 
@@ -1066,24 +1054,12 @@ msgstr "Calculer les errata applicables selon un affichage de contenu particulie
1066
1054
  msgid "Calculate Applicable Errata based on a particular Environment"
1067
1055
  msgstr "Calculer les errata applicables selon un environnement particulier"
1068
1056
 
1069
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1070
- msgstr "Calculer les errata du statut de l'hôte en se basant uniquement sur les errata de la vue du contenu et de l'environnement du cycle de vie d'un hôte"
1071
-
1072
1057
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1073
1058
  msgstr "Peut communiquer avec le portail Red Hat pour les abonnements."
1074
1059
 
1075
- msgid "Can not add product %s because it is disabled."
1076
- msgstr "Ne peut pas ajouter produit %s car désactivé."
1077
-
1078
- msgid "Can only destroy on Yum Repositories."
1079
- msgstr "Ne peut détruire que sur les référentiels Yum."
1080
-
1081
1060
  msgid "Can only remove content from within the Default Content View"
1082
1061
  msgstr "Peut uniquement supprimer les contenus à partir de l'Affichage de contenu par défaut"
1083
1062
 
1084
- msgid "Can only upload to Yum Repositories."
1085
- msgstr "Ne peut être téléchargé que sur les référentiels Yum."
1086
-
1087
1063
  msgid "Can't update the '%s' environment"
1088
1064
  msgstr "Mise à jour de l'environnement '%s' impossible"
1089
1065
 
@@ -1141,9 +1117,15 @@ msgstr "Impossible d'ajouter un affichage du contenu par défaut à la vue du co
1141
1117
  msgid "Cannot add generated content view versions to composite content view"
1142
1118
  msgstr "Impossible d'ajouter des versions de la vue de contenu générée à la vue de contenu composite"
1143
1119
 
1120
+ msgid "Cannot add product %s because it is disabled."
1121
+ msgstr ""
1122
+
1144
1123
  msgid "Cannot add repositories to a composite content view"
1145
1124
  msgstr "Impossible d'ajouter des référentiels à un affichage du contenu composite"
1146
1125
 
1126
+ msgid "Cannot associate a Red Hat provider with a custom product"
1127
+ msgstr ""
1128
+
1147
1129
  msgid "Cannot associate a component to a non composite content view"
1148
1130
  msgstr "Impossible d'ajouter un composant à un affichage de contenu non-composite"
1149
1131
 
@@ -1195,8 +1177,11 @@ msgstr "Ne peut importer une vue de contenu composite"
1195
1177
  msgid "Cannot import a custom subscription from a redhat product."
1196
1178
  msgstr "Impossible d'importer un abonnement personnalisé à partir d'un produit Red Hat."
1197
1179
 
1198
- msgid "Cannot pass content units without content unit type"
1199
- msgstr "Impossible de passer des unités de contenu sans type d'unité de contenu"
1180
+ msgid "Cannot incrementally export from a filtered and a non-filtered content view version. The exported content view version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}.'. Please do a full export."
1181
+ msgstr ""
1182
+
1183
+ msgid "Cannot incrementally export from a incrementally exported version and a regular version or vice-versa. The exported Content View Version '%{content_view} %{current}' cannot be incrementally exported from version '%{from}.' Please do a full export."
1184
+ msgstr ""
1200
1185
 
1201
1186
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
1202
1187
  msgstr "Ne peut effectuer une mise à jour croissante sur une version d'affichage de contenu composite (%{name} version version %{version}"
@@ -1267,6 +1252,9 @@ msgstr "Changer la source du contenu"
1267
1252
  msgid "Change host content source"
1268
1253
  msgstr "Changer la source du contenu de l'hôte"
1269
1254
 
1255
+ msgid "Check audited changes and proceed only if content or filters have changed since last publish"
1256
+ msgstr ""
1257
+
1270
1258
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1271
1259
  msgstr "Vérifiez si une connexion peut être établie avec Red Hat Subscription Management."
1272
1260
 
@@ -1309,6 +1297,9 @@ msgstr "Supprimer la recherche"
1309
1297
  msgid "Click here to go to the tasks page for the task."
1310
1298
  msgstr "Cliquez ici pour aller à la page des tâches."
1311
1299
 
1300
+ msgid "Click to see repositories available to add."
1301
+ msgstr ""
1302
+
1312
1303
  msgid "Click {update} below to save changes."
1313
1304
  msgstr "Cliquez sur {update} ci-dessous pour enregistrer les modifications."
1314
1305
 
@@ -1588,6 +1579,9 @@ msgstr ""
1588
1579
  msgid "Content view details"
1589
1580
  msgstr "Détails d'affichage du contenu"
1590
1581
 
1582
+ msgid "Content view does not need a publish since there are no audited changes since the last publish. Pass check_needs_publish parameter as false if you don't want to check if content view needs a publish."
1583
+ msgstr ""
1584
+
1591
1585
  msgid "Content view environments and activation key must all belong to the same organization"
1592
1586
  msgstr ""
1593
1587
 
@@ -1807,9 +1801,6 @@ msgstr "Créer un historique des exportations"
1807
1801
  msgid "Create Import History"
1808
1802
  msgstr "Créer un historique des importations"
1809
1803
 
1810
- msgid "Create Package Group"
1811
- msgstr "Créer un groupe de packages"
1812
-
1813
1804
  msgid "Create Repositories"
1814
1805
  msgstr "Créer des référentiels"
1815
1806
 
@@ -1834,9 +1825,6 @@ msgstr "Créer une règle de filtre. Les paramètres inclus doivent se baser sur
1834
1825
  msgid "Create a host collection"
1835
1826
  msgstr "Créer une collection d'hôte"
1836
1827
 
1837
- msgid "Create a package group"
1838
- msgstr "Créer un groupe de packages"
1839
-
1840
1828
  msgid "Create a product"
1841
1829
  msgstr "Créer un produit"
1842
1830
 
@@ -1870,6 +1858,9 @@ msgstr "Créer un filtre"
1870
1858
  msgid "Create host collection"
1871
1859
  msgstr "Créer Collection d'hôtes"
1872
1860
 
1861
+ msgid "Create new activation key"
1862
+ msgstr ""
1863
+
1873
1864
  msgid "Create organization"
1874
1865
  msgstr "Créer une organisation"
1875
1866
 
@@ -2002,6 +1993,12 @@ msgstr "Stratégie de téléchargement par défaut des référentiels personnali
2002
1993
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
2003
1994
  msgstr "Stratégie de téléchargement par défaut des référentiels Red Hat (soit 'immediate', 'on_demand')"
2004
1995
 
1996
+ msgid "Default export format"
1997
+ msgstr ""
1998
+
1999
+ msgid "Default export format for content-exports(either 'syncable' or 'importable')"
2000
+ msgstr ""
2001
+
2005
2002
  msgid "Default finish template for new Operating Systems created from synced content"
2006
2003
  msgstr "Modèle de finition par défaut pour les nouveaux systèmes d'exploitation créés à partir de contenu synchronisé"
2007
2004
 
@@ -2077,9 +2074,6 @@ msgstr "Supprimer l'environnement de cycle de vie"
2077
2074
  msgid "Delete Manifest"
2078
2075
  msgstr "Supprimer le manifeste"
2079
2076
 
2080
- msgid "Delete Package Group"
2081
- msgstr "Supprimer le groupe de packages"
2082
-
2083
2077
  msgid "Delete Product"
2084
2078
  msgstr "Supprimer le produit"
2085
2079
 
@@ -2095,9 +2089,6 @@ msgstr "Supprimer un affichage de contenu"
2095
2089
  msgid "Delete a filter rule"
2096
2090
  msgstr "Supprimer une règle de filtre"
2097
2091
 
2098
- msgid "Delete a package group"
2099
- msgstr "Supprimer le groupe de packages"
2100
-
2101
2092
  msgid "Delete all subscriptions attached to activation keys."
2102
2093
  msgstr "Supprimez tous les abonnements attachés aux clés d'activation."
2103
2094
 
@@ -2461,6 +2452,12 @@ msgstr "Installation d'errata"
2461
2452
  msgid "Errata Install scheduled by %s"
2462
2453
  msgstr "Installation de l'errata planifiée par %s"
2463
2454
 
2455
+ msgid "Errata and package information will be updated at the next host check-in or package action."
2456
+ msgstr ""
2457
+
2458
+ msgid "Errata and package information will be updated immediately."
2459
+ msgstr ""
2460
+
2464
2461
  msgid "Errata id of the erratum (RHSA-2012:108)"
2465
2462
  msgstr "Id de l'erratum (RHSA-2012:108)"
2466
2463
 
@@ -2563,12 +2560,8 @@ msgstr "Types d'exportation"
2563
2560
  msgid "Export as CSV"
2564
2561
  msgstr "Exporter en CSV"
2565
2562
 
2566
- msgid ""
2567
- "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2568
- " Defaults to importable."
2563
+ msgid "Export formats.Choose syncable if the exported content needs to be in a yum format. This option is only available for %{syncable_repos} repositories. Choose importable if the importing server uses the same version and exported content needs to be one of %{importable_repos} repositories."
2569
2564
  msgstr ""
2570
- "Formats d'exportation. Choisissez syncable si le contenu doit être importé via la synchronisation du référentiel. Choisissez importable si le contenu doit être importé via l'importation de contenu via hammer.\n"
2571
- " La valeur par défaut est importable."
2572
2565
 
2573
2566
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2574
2567
  msgstr "Identifiant de l'historique d'exportation utilisé pour l'exportation incrémentielle. S'il n'est pas fourni, l'historique d'exportation le plus récent sera utilisé."
@@ -2591,12 +2584,6 @@ msgstr "N'a pas réussi à supprimer %{host}: %{errors}"
2591
2584
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2592
2585
  msgstr "Échec de la suppression de la dernière version de la vue de contenu de la vue de contenu '%{subject}'."
2593
2586
 
2594
- msgid "Failed to download %s package."
2595
- msgid_plural "Failed to download %s packages."
2596
- msgstr[0] "Le téléchargement du package %s a échoué."
2597
- msgstr[1] "Le téléchargement des packages %s a échoué."
2598
- msgstr[2] "Le téléchargement des packages %s a échoué."
2599
-
2600
2587
  msgid "Failed to find %{content} with id '%{id}'."
2601
2588
  msgstr "Impossible à trouver avec l'identifiant %{content} ayant pour id '%{id}'."
2602
2589
 
@@ -2717,8 +2704,11 @@ msgstr "Filtres"
2717
2704
  msgid "Filters deleted"
2718
2705
  msgstr "Filtres supprimés"
2719
2706
 
2720
- msgid "Filters will appear here when the filter is created."
2721
- msgstr "Les filtres apparaîtront ici lorsque le filtre sera créé."
2707
+ msgid "Filters were applied to this version."
2708
+ msgstr ""
2709
+
2710
+ msgid "Filters will be applied to this content view version."
2711
+ msgstr ""
2722
2712
 
2723
2713
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2724
2714
  msgstr "Trouvez le chemin relatif de chaque référentiel RHUI et combinez-les dans une liste séparée par des virgules."
@@ -2732,9 +2722,6 @@ msgstr "Fin du délai d'action"
2732
2722
  msgid "Finished"
2733
2723
  msgstr "Terminé"
2734
2724
 
2735
- msgid "For pages that support it, automatically perform search while typing in search input."
2736
- msgstr "Pour les pages qui le prennent en charge, effectuez automatiquement une recherche pendant que vous tapez une entrée de recherche."
2737
-
2738
2725
  msgid "Force"
2739
2726
  msgstr "Force"
2740
2727
 
@@ -2748,6 +2735,9 @@ msgstr ""
2748
2735
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2749
2736
  msgstr "Forcer une synchronisation et valider les sommes de contrôle de tous les contenus. Utilisé uniquement avec les référentiels yum."
2750
2737
 
2738
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2739
+ msgstr ""
2740
+
2751
2741
  msgid "Force delete the repository by removing it from all content view versions"
2752
2742
  msgstr "Suppression forcée du référentiel en le supprimant de toutes les versions d’affichage de contenu"
2753
2743
 
@@ -2790,6 +2780,9 @@ msgstr "Générez les certificats RHUI pour les référentiels souhaités, si n
2790
2780
  msgid "Generate and Download"
2791
2781
  msgstr "Générer et télécharger"
2792
2782
 
2783
+ msgid "Generate errata status from directly-installable content"
2784
+ msgstr ""
2785
+
2793
2786
  msgid "Generate host applicability"
2794
2787
  msgstr "Générer l'applicabilité à l'hôte"
2795
2788
 
@@ -2853,9 +2846,6 @@ msgstr "Aller à la page des tâches"
2853
2846
  msgid "Greater than"
2854
2847
  msgstr "Plus grand que"
2855
2848
 
2856
- msgid "Group %{id} already created."
2857
- msgstr "Groupe %{id} déjà créé."
2858
-
2859
2849
  msgid "Guests of"
2860
2850
  msgstr "Les invités de"
2861
2851
 
@@ -2895,6 +2885,9 @@ msgstr "Hôte"
2895
2885
  msgid "Host %s has not been registered with subscription-manager."
2896
2886
  msgstr "L’hôte %sn'est pas enregistré dans le subscription-manager."
2897
2887
 
2888
+ msgid "Host %{hostname}: Cannot add content view environment to content facet. The host's content source '%{content_source}' does not sync lifecycle environment '%{lce}'."
2889
+ msgstr ""
2890
+
2898
2891
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2899
2892
  msgstr "L'hôte %{nom} ne peut pas se voir attribuer la version %{release_version}."
2900
2893
 
@@ -3162,9 +3155,6 @@ msgstr "Identifie si le référentiel doit être désactivé sur un client dont
3162
3155
  msgid "Ids of smart proxies to associate"
3163
3156
  msgstr "Ids des proxies smart à associer"
3164
3157
 
3165
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3166
- msgstr "Si la recherche automatique est activée, attendez quelques millisecondes avant d'exécuter des recherches pendant la frappe."
3167
-
3168
3158
  msgid "If SSL should be verified for the upstream URL"
3169
3159
  msgstr "Si SSL doit être vérifié pour l'URL amont"
3170
3160
 
@@ -3192,14 +3182,17 @@ msgstr "Si cette option est activée, les référentiels peuvent être supprimé
3192
3182
  msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3193
3183
  msgstr "Si cette option est activée, les dépôts de versions de vues de contenu sans environnement (\"archivées\") seront distribués dans '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3194
3184
 
3185
+ msgid "If true, only errata that can be installed without an incremental update will affect the host's errata status."
3186
+ msgstr ""
3187
+
3195
3188
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3196
3189
  msgstr "Si c’est le cas, ne renvoyez que les ensembles de référentiels associés à un abonnement actif"
3197
3190
 
3198
3191
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3199
3192
  msgstr "Si c’est le cas, ne renvoyez que les ensembles de référentiels qui ont été activés. La valeur par défaut est false"
3200
3193
 
3201
- msgid "If true, return custom repository sets along with redhat repos"
3202
- msgstr "Si c'est le cas, renvoyer les ensembles de référentiels personnalisés avec les référentiels Red Hat"
3194
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3195
+ msgstr ""
3203
3196
 
3204
3197
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
3205
3198
  msgstr "Si c’est le cas, toute dépendance nécessaire sera copiée lors de l'ajout des errata ou package spécifiés. Valeur par défaut true."
@@ -3231,6 +3224,9 @@ msgstr "Ignorer les abonnements qui ne sont pas disponibles pour un hôte spéci
3231
3224
  msgid "Ignored hosts"
3232
3225
  msgstr "Hôtes ignorés"
3233
3226
 
3227
+ msgid "Image"
3228
+ msgstr ""
3229
+
3234
3230
  msgid "Immediate"
3235
3231
  msgstr "Immédiat"
3236
3232
 
@@ -3444,11 +3440,8 @@ msgstr "Installation par exécution à distance"
3444
3440
  msgid "Installable"
3445
3441
  msgstr "Installable"
3446
3442
 
3447
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3448
- msgstr "Les errata installables sont des errata applicables qui sont disponibles dans la vue du contenu et l'environnement du cycle de vie de l'hôte."
3449
-
3450
- msgid "Installable errata from content view"
3451
- msgstr "Errata installables de la vue du contenu"
3443
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3444
+ msgstr ""
3452
3445
 
3453
3446
  msgid "Installable updates"
3454
3447
  msgstr "Mises à jour installables"
@@ -3588,8 +3581,8 @@ msgstr "Publié"
3588
3581
  msgid "Issued from"
3589
3582
  msgstr "Délivré par"
3590
3583
 
3591
- msgid "Items will appear here when a filter rule is added."
3592
- msgstr "Les éléments apparaîtront ici lorsqu'une règle de filtrage est ajoutée."
3584
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3585
+ msgstr ""
3593
3586
 
3594
3587
  msgid "Job '${description}' completed"
3595
3588
  msgstr "Job '${description}' terminé"
@@ -3756,6 +3749,9 @@ msgstr "Environnement de cycle de vie : {lce}"
3756
3749
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3757
3750
  msgstr "Les environnements du cycle de vie ne peuvent pas être modifiés sur le proxy smart par défaut. Le contenu de tous les environnements de cycle de vie existera sur ce proxy smart."
3758
3751
 
3752
+ msgid "Limit content to Red Hat / custom"
3753
+ msgstr ""
3754
+
3759
3755
  msgid "Limit content to enabled / disabled / overridden"
3760
3756
  msgstr "Limiter le contenu à activé / désactivé / écrasé"
3761
3757
 
@@ -4173,21 +4169,24 @@ msgstr "Les flux de modules apparaîtront ici après avoir activé les référen
4173
4169
  msgid "Multi-entitlement"
4174
4170
  msgstr "Droits d’accès multiples"
4175
4171
 
4176
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4177
- msgstr "Doit fournir au moins un des paramètres suivants : mandatory_package_names, optional_package_names, conditional_package_names, default_package_names"
4178
-
4179
4172
  msgid "N/A"
4180
4173
  msgstr "Sans objet"
4181
4174
 
4182
4175
  msgid "NA"
4183
4176
  msgstr "N/A"
4184
4177
 
4178
+ msgid "NOTE: Content view version '%{content_view} %{current}' does not have any exportable repositories. At least one repository with any of the following types is required to be able to export: '%{exportable_types}'."
4179
+ msgstr ""
4180
+
4185
4181
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4186
4182
  msgstr "NOTE : Katello-agent est déprécié et sera supprimé dans %s. Pensez à utiliser l'exécution à distance à la place."
4187
4183
 
4188
4184
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4189
4185
  msgstr "NOTE : Impossible d'exporter le référentiel '%{repository}' car il n'a pas de type de contenu exportable."
4190
4186
 
4187
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4188
+ msgstr ""
4189
+
4191
4190
  msgid ""
4192
4191
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
4193
4192
  " %{repos}"
@@ -4269,12 +4268,6 @@ msgstr "Jamais sync"
4269
4268
  msgid "New Errata"
4270
4269
  msgstr "Nouveaux errata"
4271
4270
 
4272
- msgid "New Files: %s"
4273
- msgstr "Nouveaux fichiers : %s"
4274
-
4275
- msgid "New blobs: %{count}."
4276
- msgstr "Nouveaux blobs : %{count}."
4277
-
4278
4271
  msgid "New content view name"
4279
4272
  msgstr "Nouveau nom de la vue de contenu"
4280
4273
 
@@ -4287,15 +4280,15 @@ msgstr "Le nouveau nom ne peut être vide."
4287
4280
  msgid "New name for the content view"
4288
4281
  msgstr "Nouveau nom de l'affichage du contenu"
4289
4282
 
4290
- msgid "New packages: %{count} (%{size})."
4291
- msgstr "Aucun nouveau package. %{count} (%{size} )."
4292
-
4293
4283
  msgid "New version is available: Version ${latestVersion}"
4294
4284
  msgstr "Une version plus récente est disponible : Version {latestVersion}"
4295
4285
 
4296
4286
  msgid "Newly published"
4297
4287
  msgstr "Dernière publication"
4298
4288
 
4289
+ msgid "Newly published version will be the same as the previous version."
4290
+ msgstr ""
4291
+
4299
4292
  msgid "No"
4300
4293
  msgstr "Non"
4301
4294
 
@@ -4347,6 +4340,12 @@ msgstr "Aucune application à redémarrer"
4347
4340
  msgid "No artifacts to show"
4348
4341
  msgstr "Pas d'artefacts à montrer"
4349
4342
 
4343
+ msgid "No available component content view updates"
4344
+ msgstr ""
4345
+
4346
+ msgid "No available repository or filter updates"
4347
+ msgstr ""
4348
+
4350
4349
  msgid "No content"
4351
4350
  msgstr "Aucun contenu"
4352
4351
 
@@ -4371,8 +4370,11 @@ msgstr "Il n'existe pas d’affichages de contenu disponible"
4371
4370
  msgid "No content views available for the selected environment"
4372
4371
  msgstr "Aucune vue du contenu n'est disponible pour l'environnement sélectionné"
4373
4372
 
4374
- msgid "No content views belong to ${label}"
4375
- msgstr "Il n'existe pas d’affichages de contenu pour {label}"
4373
+ msgid "No content views to add yet"
4374
+ msgstr ""
4375
+
4376
+ msgid "No content views yet"
4377
+ msgstr ""
4376
4378
 
4377
4379
  msgid "No content_view_version_ids provided"
4378
4380
  msgstr "Aucun content_view_version_ids fourni"
@@ -4392,11 +4394,14 @@ msgstr "Aucun Environnement"
4392
4394
  msgid "No environments"
4393
4395
  msgstr "Aucun environnement"
4394
4396
 
4395
- msgid "No errata available for this content view."
4396
- msgstr "Aucun errata disponible pour cet affichage de contenu"
4397
+ msgid "No errata filter rules yet"
4398
+ msgstr ""
4397
4399
 
4398
- msgid "No errata available to add to this filter."
4399
- msgstr "Aucun errata disponible à ajouter à ce filtre."
4400
+ msgid "No errata matching given search query"
4401
+ msgstr ""
4402
+
4403
+ msgid "No errata to add yet"
4404
+ msgstr ""
4400
4405
 
4401
4406
  msgid "No errors"
4402
4407
  msgstr "Aucune erreur"
@@ -4407,6 +4412,12 @@ msgstr "Aucun historique d'exportation existant n'a été trouvé pour effectuer
4407
4412
  msgid "No file uploaded"
4408
4413
  msgstr "Aucun fichier téléchargé"
4409
4414
 
4415
+ msgid "No filters yet"
4416
+ msgstr ""
4417
+
4418
+ msgid "No history yet"
4419
+ msgstr ""
4420
+
4410
4421
  msgid "No host collections"
4411
4422
  msgstr "Aucune collection d'hôtes"
4412
4423
 
@@ -4422,6 +4433,9 @@ msgstr ""
4422
4433
  msgid "No hosts have been specified."
4423
4434
  msgstr "Aucun hôte n'a été spécifié."
4424
4435
 
4436
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4437
+ msgstr ""
4438
+
4425
4439
  msgid "No hosts registered with subscription-manager found in selection."
4426
4440
  msgstr "Aucun hôte enregistré avec le gestionnaire d'abonnement n'a été trouvé dans la sélection."
4427
4441
 
@@ -4491,20 +4505,23 @@ msgstr "Aucun référentiel correspondant n'a été trouvé"
4491
4505
  msgid "No matching repository sets found"
4492
4506
  msgstr "Aucun ensemble de référentiels correspondant n'a été trouvé"
4493
4507
 
4494
- msgid "No matching rules found."
4495
- msgstr "Aucune règle correspondante n'a été trouvée."
4496
-
4497
4508
  msgid "No matching traces found"
4498
4509
  msgstr "Aucune règle de traces n'a été trouvée."
4499
4510
 
4500
4511
  msgid "No matching version found"
4501
4512
  msgstr "Aucune version correspondante trouvée"
4502
4513
 
4514
+ msgid "No module stream filter rules yet"
4515
+ msgstr ""
4516
+
4517
+ msgid "No module streams to add yet."
4518
+ msgstr ""
4519
+
4503
4520
  msgid "No new packages installed"
4504
4521
  msgstr "Aucun nouveau package installé"
4505
4522
 
4506
- msgid "No new packages."
4507
- msgstr "Aucun nouveau package."
4523
+ msgid "No package groups yet"
4524
+ msgstr ""
4508
4525
 
4509
4526
  msgid "No packages"
4510
4527
  msgstr "Aucun package"
@@ -4512,8 +4529,8 @@ msgstr "Aucun package"
4512
4529
  msgid "No packages available to install"
4513
4530
  msgstr "Aucun paquet disponible pour l'installation"
4514
4531
 
4515
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4516
- msgstr "Aucun paquet disponible à installer sur cet hôte. Veuillez vérifier l'affichage du contenu et l'environnement de cycle de vie de l'hôte."
4532
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4533
+ msgstr ""
4517
4534
 
4518
4535
  msgid "No packages removed"
4519
4536
  msgstr "Aucun package supprimé"
@@ -4554,6 +4571,12 @@ msgstr "Aucun produit synchronisé récemment"
4554
4571
  msgid "No recurring logic tied to the sync plan."
4555
4572
  msgstr "Pas de logique récurrente liée au plan de synchronisation."
4556
4573
 
4574
+ msgid "No repositories added yet"
4575
+ msgstr ""
4576
+
4577
+ msgid "No repositories available to add"
4578
+ msgstr ""
4579
+
4557
4580
  msgid "No repositories available."
4558
4581
  msgstr "Aucun référentiel n'est disponible."
4559
4582
 
@@ -4572,8 +4595,8 @@ msgstr "Aucun ensemble de référentiels ne correspond à vos critères de reche
4572
4595
  msgid "No repository sets to show."
4573
4596
  msgstr "Aucun ensemble de référentiels à afficher."
4574
4597
 
4575
- msgid "No rules have been added to this filter."
4576
- msgstr "Aucune règle n'a été ajoutée à ce filtre."
4598
+ msgid "No rules yet"
4599
+ msgstr ""
4577
4600
 
4578
4601
  msgid "No services defined, is this class extended?"
4579
4602
  msgstr "Aucuns services définis, est-ce une classe étendue ?"
@@ -4590,6 +4613,9 @@ msgstr "Aucun référentiel synchronisable n'a été trouvé pour les produits e
4590
4613
  msgid "No uploads param specified. An array of uploads to import is required."
4591
4614
  msgstr "Aucun paramètre de téléchargement n'est spécifié. Un tableau des téléchargements à importer est nécessaire."
4592
4615
 
4616
+ msgid "No versions yet"
4617
+ msgstr ""
4618
+
4593
4619
  msgid "Non-security errata applicable"
4594
4620
  msgstr "Errata non-sécurité applicable"
4595
4621
 
@@ -4695,9 +4721,6 @@ msgstr "Un ou plusieurs hôtes non trouvés"
4695
4721
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4696
4722
  msgstr "Un ou plusieurs ids (%{ids}) n'ont pas été trouvés pour %{assoc}. Vous n'avez peut-être pas les autorisations nécessaires pour les voir."
4697
4723
 
4698
- msgid "One or more packages failed to sync properly."
4699
- msgstr "La synchronisation d'un ou plusieurs packages a échoué"
4700
-
4701
4724
  msgid "One or more processes require restarting"
4702
4725
  msgstr "Un ou plusieurs processus doivent être relancés"
4703
4726
 
@@ -4980,9 +5003,6 @@ msgstr "Suffixes de chemin pour trouver un contenu alternatif"
4980
5003
  msgid "Paused"
4981
5004
  msgstr "Suspendue"
4982
5005
 
4983
- msgid "Pending"
4984
- msgstr "En attente"
4985
-
4986
5006
  msgid "Perform a module stream action via Katello interface"
4987
5007
  msgstr "Effectuer une action de flux de module via l'interface Katello"
4988
5008
 
@@ -5016,12 +5036,12 @@ msgstr "Physique"
5016
5036
  msgid "Plan numeric identifier"
5017
5037
  msgstr "Identifiant numérique du plan"
5018
5038
 
5019
- msgid "Please add some content views."
5020
- msgstr "Veuillez ajouter des vues de contenu."
5021
-
5022
5039
  msgid "Please add some repositories."
5023
5040
  msgstr "Veuillez ajouter quelques référentiels."
5024
5041
 
5042
+ msgid "Please create some content views."
5043
+ msgstr ""
5044
+
5025
5045
  msgid "Please enter a positive number above zero"
5026
5046
  msgstr "Veuillez entrer un nombre positif au-dessus de zéro"
5027
5047
 
@@ -5097,12 +5117,6 @@ msgstr "Problème de recherche dans les ensembles de référentiels"
5097
5117
  msgid "Problem searching traces"
5098
5118
  msgstr "Problème de recherche de traces"
5099
5119
 
5100
- msgid "Processing metadata"
5101
- msgstr "Traitement des métadonnées"
5102
-
5103
- msgid "Processing metadata."
5104
- msgstr "Traitement des métadonnées."
5105
-
5106
5120
  msgid "Product"
5107
5121
  msgstr "Produit"
5108
5122
 
@@ -5115,9 +5129,6 @@ msgstr "Créer Produit"
5115
5129
  msgid "Product ID"
5116
5130
  msgstr "ID Produit"
5117
5131
 
5118
- msgid "Product Name"
5119
- msgstr "Nom du produit"
5120
-
5121
5132
  msgid "Product and Repositories"
5122
5133
  msgstr "Produit et référentiels"
5123
5134
 
@@ -5407,6 +5418,9 @@ msgstr "Récupérer l’espace en provenance d’un référentiel Sur demande"
5407
5418
  msgid "Recommended Repositories"
5408
5419
  msgstr "Référentiels recommandés"
5409
5420
 
5421
+ msgid "Red Hat"
5422
+ msgstr ""
5423
+
5410
5424
  msgid "Red Hat CDN"
5411
5425
  msgstr "Red Hat CDN"
5412
5426
 
@@ -5662,6 +5676,9 @@ msgstr "Supprimer cette version de tous les environnement n’aura pas pour effe
5662
5676
  msgid "Repo Type"
5663
5677
  msgstr "Type de référentiel"
5664
5678
 
5679
+ msgid "Report"
5680
+ msgstr ""
5681
+
5665
5682
  msgid "Repositories"
5666
5683
  msgstr "Référentiels"
5667
5684
 
@@ -5704,9 +5721,6 @@ msgstr "Identifiant de référentiel"
5704
5721
  msgid "Repository label '%s' is not associated with content view."
5705
5722
  msgstr "Le label de référentiel '%s' n'est pas associé à la vue du contenu."
5706
5723
 
5707
- msgid "Repository metadata publish"
5708
- msgstr "Métadonnées de référentiel publiées"
5709
-
5710
5724
  msgid "Repository not found"
5711
5725
  msgstr "Référentiel introuvable"
5712
5726
 
@@ -5743,6 +5757,12 @@ msgstr "Ensembles de référentiels redéfinis à leur valeur par défaut"
5743
5757
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5744
5758
  msgstr "Les ensembles de référentiels apparaîtront ici après avoir activé les référentiels Red Hat ou créé des produits personnalisés."
5745
5759
 
5760
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5761
+ msgstr ""
5762
+
5763
+ msgid "Repository type"
5764
+ msgstr ""
5765
+
5746
5766
  msgid "Republish Repositories of %{name} %{version}"
5747
5767
  msgstr "Republier les référentiels de %{name}%{version} "
5748
5768
 
@@ -6040,6 +6060,9 @@ msgstr "Sélectionnez un certificat client"
6040
6060
  msgid "Select a client key"
6041
6061
  msgstr "Sélectionnez une clé client"
6042
6062
 
6063
+ msgid "Select a content source first"
6064
+ msgstr ""
6065
+
6043
6066
  msgid "Select a content view"
6044
6067
  msgstr "Sélectionner un affichage de contenu"
6045
6068
 
@@ -6055,6 +6078,9 @@ msgstr "Sélectionnez un environnement de cycle de vie parmi les chemins de prom
6055
6078
  msgid "Select a provider to install katello-host-tools-tracer"
6056
6079
  msgstr "Sélectionner un fournisseur pour installer katello-host-tools-tracer"
6057
6080
 
6081
+ msgid "Select a source"
6082
+ msgstr ""
6083
+
6058
6084
  msgid "Select add-ons"
6059
6085
  msgstr "Sélectionnez les add-ons"
6060
6086
 
@@ -6070,8 +6096,8 @@ msgstr "Sélectionner une organisation"
6070
6096
  msgid "Select an environment"
6071
6097
  msgstr "Sélectionnez un environnement"
6072
6098
 
6073
- msgid "Select an environment above"
6074
- msgstr "Sélectionnez un environnement ci-dessus"
6099
+ msgid "Select an environment first"
6100
+ msgstr ""
6075
6101
 
6076
6102
  msgid "Select an option"
6077
6103
  msgstr "Sélectionnez une option"
@@ -6235,6 +6261,9 @@ msgstr "Afficher les hôtes affectés"
6235
6261
  msgid "Show all"
6236
6262
  msgstr "Tout afficher"
6237
6263
 
6264
+ msgid "Show all repository sets"
6265
+ msgstr ""
6266
+
6238
6267
  msgid "Show an activation key"
6239
6268
  msgstr "Afficher une clé d'activation"
6240
6269
 
@@ -6256,6 +6285,9 @@ msgstr "Afficher les informations de règle de filtre"
6256
6285
  msgid "Show full description"
6257
6286
  msgstr "Afficher Description complète"
6258
6287
 
6288
+ msgid "Show hosts associated to an activation key"
6289
+ msgstr ""
6290
+
6259
6291
  msgid "Show organization"
6260
6292
  msgstr "Afficher l'organisation"
6261
6293
 
@@ -6265,12 +6297,18 @@ msgstr "Afficher les versions disponibles pour une clé d'activation"
6265
6297
  msgid "Show releases available for the content host"
6266
6298
  msgstr "Afficher les versions disponibles pour l'hôte de contenu"
6267
6299
 
6300
+ msgid "Show repositories"
6301
+ msgstr ""
6302
+
6268
6303
  msgid "Show repositories enabled on the host that are known to Katello"
6269
6304
  msgstr "Afficher les référentiels activés sur l'hôte qui sont connus de Katello."
6270
6305
 
6271
6306
  msgid "Show the available repository types"
6272
6307
  msgstr "Affiche les types de référentiels disponibles"
6273
6308
 
6309
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6310
+ msgstr ""
6311
+
6274
6312
  msgid "Shows status of Katello system and it's subcomponents"
6275
6313
  msgstr "Afficher le statut du système Katello et ses sous-composants"
6276
6314
 
@@ -6328,6 +6366,12 @@ msgstr "Résoudre les dépendances RPM par défaut sur Content View publish, les
6328
6366
  msgid "Solve dependencies"
6329
6367
  msgstr "Résoudre les dépendances"
6330
6368
 
6369
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6370
+ msgstr ""
6371
+
6372
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6373
+ msgstr ""
6374
+
6331
6375
  msgid "Some hosts are not registered as content hosts and will be ignored."
6332
6376
  msgstr "Les hôtes suivants ne sont pas enregistrés comme hôtes de contenu, ils seront donc ignorés :"
6333
6377
 
@@ -6772,9 +6816,6 @@ msgstr "Synchroniser"
6772
6816
  msgid "Synchronize Now"
6773
6817
  msgstr "Sync Maintenant"
6774
6818
 
6775
- msgid "Synchronize capsule content"
6776
- msgstr "Synchroniser le contenu de la capsule"
6777
-
6778
6819
  msgid "Synchronize repository"
6779
6820
  msgstr "Synchroniser les référentiels"
6780
6821
 
@@ -6808,8 +6849,8 @@ msgstr "Objectif system"
6808
6849
  msgid "System purpose attributes updated"
6809
6850
  msgstr "Mise à jour des attributs system purpose"
6810
6851
 
6811
- msgid "System purpose enables you to set the system\\'s intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6812
- msgstr "System purpose vous permet de définir l'utilisation prévue du système sur votre réseau et améliore la précision des rapports dans le service Abonnements de la console Red Hat Hybrid Cloud."
6852
+ msgid "System purpose enables you to set the system's intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6853
+ msgstr ""
6813
6854
 
6814
6855
  msgid "Tag name"
6815
6856
  msgstr "Nom de la balise"
@@ -6886,9 +6927,6 @@ msgstr "La date de début de la règle du filtre de l'erratum est un type ou un
6886
6927
  msgid "The erratum type must be an array. Invalid value provided"
6887
6928
  msgstr "Le type d'erratum doit être une matrice. Valeur non valide fournie"
6888
6929
 
6889
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
6890
- msgstr "La version exportée de la vue du contenu '%{content_view} %%{current}' ne peut pas être mise à jour de manière incrémentielle à partir de la version '%%{from}'. Veuillez effectuer une exportation complète."
6891
-
6892
6930
  msgid "The field to sort the data by. Defaults to the created date."
6893
6931
  msgstr "Le champ permettant de trier les données. Par défaut, la date de création."
6894
6932
 
@@ -7200,6 +7238,9 @@ msgstr "Temps en secondes pour attendre qu'un hôte termine une action de katell
7200
7238
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7201
7239
  msgstr "Temps en secondes pour attendre qu'un hôte prenne en charge une action de katello-agent."
7202
7240
 
7241
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7242
+ msgstr ""
7243
+
7203
7244
  msgid "Timeout when refreshing a manifest (in seconds)"
7204
7245
  msgstr "Délai d'attente pour le rafraîchissement d'un manifeste (en secondes)"
7205
7246
 
@@ -7209,9 +7250,21 @@ msgstr "Horodatage"
7209
7250
  msgid "Title"
7210
7251
  msgstr "Titre"
7211
7252
 
7253
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7254
+ msgstr ""
7255
+
7256
+ msgid "To enable them, add the environment to the host's content source, or "
7257
+ msgstr ""
7258
+
7259
+ msgid "To get started, add a filter rule to this filter"
7260
+ msgstr ""
7261
+
7212
7262
  msgid "To get started, add this host to a host collection."
7213
7263
  msgstr "Pour commencer, ajoutez cet hôte à une collection d'hôtes."
7214
7264
 
7265
+ msgid "To include or exclude specific content from the content view, create a filter. Without filters, the content view includes everything from the added repositories."
7266
+ msgstr ""
7267
+
7215
7268
  msgid "To update the selected host configuration, update hosts manually in the next section."
7216
7269
  msgstr ""
7217
7270
 
@@ -7398,9 +7451,6 @@ msgstr "Impossible de mettre à jour le mapping utilisateur-référentiel"
7398
7451
  msgid "Unapplied Errata"
7399
7452
  msgstr "Errata non appliqués"
7400
7453
 
7401
- msgid "Unassociate units in repository"
7402
- msgstr "Détacher les unités dans le référentiel"
7403
-
7404
7454
  msgid "Unattach a subscription"
7405
7455
  msgstr "Détacher un abonnement"
7406
7456
 
@@ -7587,6 +7637,9 @@ msgstr "Mettre à jour la configuration du proxy HTTP sur les référentiels d'u
7587
7637
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7588
7638
  msgstr "Mettre à jour la source de contenu pour les hôtes spécifiés et générer le script de reconfiguration"
7589
7639
 
7640
+ msgid "Update the host immediately via remote execution"
7641
+ msgstr ""
7642
+
7590
7643
  msgid "Update the information about enabled repositories"
7591
7644
  msgstr "Mettre à jour les informations sur les référentiels activés"
7592
7645
 
@@ -7614,6 +7667,12 @@ msgstr "Met à jour un produit"
7614
7667
  msgid "Updates all packages on the host(s)"
7615
7668
  msgstr "Mise à jour de tous les packages sur le(s) hôte(s)"
7616
7669
 
7670
+ msgid "Updates available: Component content view versions have been updated."
7671
+ msgstr ""
7672
+
7673
+ msgid "Updates available: Repositories and/or filters have changed."
7674
+ msgstr ""
7675
+
7617
7676
  msgid "Updating Package..."
7618
7677
  msgstr "Mise à jour de packages..."
7619
7678
 
@@ -7833,6 +7892,9 @@ msgstr "Les versions apparaîtront ici lorsque la vue du contenu sera publiée."
7833
7892
  msgid "View %{view} has not been promoted to %{env}"
7834
7893
  msgstr "L'affichage %{view} n’a pas été promu à %{env} "
7835
7894
 
7895
+ msgid "View Filters"
7896
+ msgstr ""
7897
+
7836
7898
  msgid "View Subscription Usage"
7837
7899
  msgstr "Afficher l'utilisation de l'abonnement"
7838
7900
 
@@ -7845,6 +7907,9 @@ msgstr ""
7845
7907
  msgid "View by"
7846
7908
  msgstr "Afficher par"
7847
7909
 
7910
+ msgid "View documentation"
7911
+ msgstr ""
7912
+
7848
7913
  msgid "View matching content"
7849
7914
  msgstr "Afficher le contenu correspondant"
7850
7915
 
@@ -7890,6 +7955,9 @@ msgstr "Si défini sur 'Vrai', les types de référentiels qui peuvent être cr
7890
7955
  msgid "When unregistering a host via subscription-manager, also delete the host record. Managed resources linked to host such as virtual machines and DNS records may also be deleted."
7891
7956
  msgstr "Lorsque vous dés-enregistrez un hôte via le gestionnaire d'abonnement, supprimez également l'enregistrement de l'hôte. Les ressources gérées liées à l'hôte, telles que les machines virtuelles et les enregistrements DNS, peuvent également être supprimés."
7892
7957
 
7958
+ msgid "Whether Simple Content Access should be enabled for the organization."
7959
+ msgstr ""
7960
+
7893
7961
  msgid "Whether or not the host collection may have unlimited hosts"
7894
7962
  msgstr "Que la collection d'hôte possède des hôtes illimités ou non."
7895
7963
 
@@ -7902,6 +7970,9 @@ msgstr "Indique si on doit ou non vérifier le statut des services de backend co
7902
7970
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7903
7971
  msgstr "La régénération ou non du référentiel sur disque. Valeur par défaut : true"
7904
7972
 
7973
+ msgid "Whether or not to return filters applied to the content view version"
7974
+ msgstr ""
7975
+
7905
7976
  msgid "Whether or not to show all results"
7906
7977
  msgstr "Afficher tous les résultats ou pas"
7907
7978
 
@@ -7947,32 +8018,20 @@ msgstr "Vous ne pouvez pas définir un id de parent d'organisation . Cette fonct
7947
8018
  msgid "You currently don't have any ${selectedContentType}."
7948
8019
  msgstr "Vous n'avez actuellement aucun {selectedContentType}."
7949
8020
 
7950
- msgid "You currently don't have any Content views."
7951
- msgstr "Vous n'avez actuellement aucun affichage de contenu"
7952
-
7953
8021
  msgid "You currently don't have any alternate content sources."
7954
8022
  msgstr "Vous n'avez pas actuellement de sources de contenu alternatives."
7955
8023
 
7956
- msgid "You currently don't have any filters for this content view."
7957
- msgstr "Vous n'avez actuellement aucun filtre pour cette vue de contenu."
7958
-
7959
- msgid "You currently don't have any history for this content view."
7960
- msgstr "Vous n'avez actuellement pas d'historique pour cet affichage du contenu."
8024
+ msgid "You currently don't have any related content views."
8025
+ msgstr ""
7961
8026
 
7962
8027
  msgid "You currently don't have any repositories associated with this content."
7963
8028
  msgstr "Vous n'avez actuellement aucun référentiel associé à ce contenu."
7964
8029
 
7965
- msgid "You currently don't have any repositories to add to this content view."
7966
- msgstr "Vous n'avez actuellement aucun référentiel à ajouter à cette vue de contenu."
7967
-
7968
8030
  msgid "You currently don't have any repositories to add to this filter."
7969
8031
  msgstr "Vous n'avez actuellement aucun référentiel à ajouter à ce filtre."
7970
8032
 
7971
- msgid "You currently don't have any versions for this content view."
7972
- msgstr "Vous n'avez actuellement aucune version pour cette vue du contenu."
7973
-
7974
- msgid "You currently don\\'t have any related content views."
7975
- msgstr "Vous n'avez actuellement aucun affichage de contenu associé"
8033
+ msgid "You currently have no content views to display"
8034
+ msgstr ""
7976
8035
 
7977
8036
  msgid "You do not have permissions to delete %s"
7978
8037
  msgstr "Vous ne disposez pas des droits nécessaires pour supprimer %s"
@@ -8028,9 +8087,6 @@ msgstr "Votre recherche n’a renvoyé aucun hôte."
8028
8087
  msgid "Yum"
8029
8088
  msgstr "Yum"
8030
8089
 
8031
- msgid "Yum Metadata: %s"
8032
- msgstr "Yum Metadata : %s "
8033
-
8034
8090
  msgid "a content unit"
8035
8091
  msgstr "une unité de contenu"
8036
8092
 
@@ -8193,6 +8249,9 @@ msgstr "ne peut pas contenir de filtres dont les référentiels n'appartiennent
8193
8249
  msgid "cannot contain more than %s characters"
8194
8250
  msgstr "ne peut pas contenir plus de %s caractères"
8195
8251
 
8252
+ msgid "change the host's content source."
8253
+ msgstr ""
8254
+
8196
8255
  msgid "checking %s task status"
8197
8256
  msgstr "vérification de l'état de la tâche %s "
8198
8257
 
@@ -8208,9 +8267,6 @@ msgstr "Identifiant d'affichage du contenu composite"
8208
8267
  msgid "composite content view numeric identifier"
8209
8268
  msgstr "Identifiant numérique d'affichage du contenu composite"
8210
8269
 
8211
- msgid "conditional package names to include in the package group"
8212
- msgstr "les noms de packages conditionnels à inclure dans le groupe de packages"
8213
-
8214
8270
  msgid "content release version"
8215
8271
  msgstr "version du contenu de version"
8216
8272
 
@@ -8265,6 +8321,9 @@ msgstr "identifiants de la version de l'affichage du contenu à supprimer"
8265
8321
  msgid "content view versions to compare"
8266
8322
  msgstr "versions d'affichage de contenu à comparer"
8267
8323
 
8324
+ msgid "create a custom product"
8325
+ msgstr ""
8326
+
8268
8327
  msgid "create a filter for a content view"
8269
8328
  msgstr "créer un filtre pour un affichage de contenu"
8270
8329
 
@@ -8274,9 +8333,6 @@ msgstr "deb, packages, groupes de packages ou noms de balises docker"
8274
8333
  msgid "deb_ids is not an array"
8275
8334
  msgstr "package_ids n'est pas sous forme de table"
8276
8335
 
8277
- msgid "default package names to include in the package group"
8278
- msgstr "les noms de packages par défaut à inclure dans le groupe de packages"
8279
-
8280
8336
  msgid "delete a filter"
8281
8337
  msgstr "supprimer un filtre"
8282
8338
 
@@ -8508,9 +8564,6 @@ msgstr "liste d'ids de référentiel "
8508
8564
  msgid "list of rpm filename strings to include in published version"
8509
8565
  msgstr "liste des chaînes de noms de fichiers rpm à inclure dans la version publiée"
8510
8566
 
8511
- msgid "mandatory package names to include in the package group"
8512
- msgstr "noms de packages obligatoires à inclure dans le groupe de packages"
8513
-
8514
8567
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8515
8568
  msgstr "max_hosts doit recevoir une valeur si cette collection d'hôtes n'est pas illimitée."
8516
8569
 
@@ -8538,6 +8591,9 @@ msgstr "doit être une des valeurs suivantes : %s"
8538
8591
  msgid "must be one of: %s"
8539
8592
  msgstr "doit être une des valeurs suivantes : %s"
8540
8593
 
8594
+ msgid "must be true or false"
8595
+ msgstr ""
8596
+
8541
8597
  msgid "must be unique within one organization"
8542
8598
  msgstr "doit être unique dans une organisation"
8543
8599
 
@@ -8565,9 +8621,6 @@ msgstr "ne doit pas contenir d'espace comme premier ou dernier caractère."
8565
8621
  msgid "name"
8566
8622
  msgstr "nom"
8567
8623
 
8568
- msgid "name not defined."
8569
- msgstr "nom non défini."
8570
-
8571
8624
  msgid "name of organization"
8572
8625
  msgstr "nom de d'organisation"
8573
8626
 
@@ -8613,21 +8666,12 @@ msgstr "de l'environnement doit être unique dans l'organisation"
8613
8666
  msgid "only show the repositories readable by this user with this username"
8614
8667
  msgstr "afficher uniquement les dépôts lisibles par cet utilisateur avec ce nom d'utilisateur"
8615
8668
 
8616
- msgid "optional package names to include in the package group"
8617
- msgstr "les noms de packages optionnels à inclure dans le groupe de packages"
8618
-
8619
8669
  msgid "organization ID"
8620
8670
  msgstr "ID d’organisation"
8621
8671
 
8622
8672
  msgid "organization identifier"
8623
8673
  msgstr "identifiant de l'organisation"
8624
8674
 
8625
- msgid "package group description. Defaults to params[:name]"
8626
- msgstr "description du groupe de packages. Paramètres par défaut : params[:name]"
8627
-
8628
- msgid "package group name"
8629
- msgstr "Nom de groupe de packages"
8630
-
8631
8675
  msgid "package group: uuid"
8632
8676
  msgstr "Mise à jour de groupes de packages"
8633
8677
 
@@ -8706,12 +8750,6 @@ msgstr "identifiant de référentiel"
8706
8750
  msgid "repository source url"
8707
8751
  msgstr "url de la source du référentiel"
8708
8752
 
8709
- msgid "repository_id"
8710
- msgstr "repository_id"
8711
-
8712
- msgid "repository_id not defined."
8713
- msgstr "repository_id non défini."
8714
-
8715
8753
  msgid "root-node of collection contained in responses (default: 'results')"
8716
8754
  msgstr "nœud racine de collection contenu dans les réponses (défaut : 'results')"
8717
8755
 
@@ -8733,9 +8771,6 @@ msgstr ""
8733
8771
  msgid "service level"
8734
8772
  msgstr "niveau de service"
8735
8773
 
8736
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8737
- msgstr "mettre la balise \"user_visible\" sur le groupe de packages. La valeur par défaut est \"true\""
8738
-
8739
8774
  msgid "set true if you want to see only library environments"
8740
8775
  msgstr "définir comme vrai si vous souhaitez voir les environnements de bibliothèque uniquement"
8741
8776
 
@@ -8793,9 +8828,6 @@ msgstr "vrai si la dernière version de la vue du contenu des composants est sou
8793
8828
  msgid "true if this repository can be published via HTTP"
8794
8829
  msgstr "vrai si ce référentiel peut être publié via HTTP"
8795
8830
 
8796
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8797
- msgstr "vrai si ce référentiel, lorsqu'il est synchronisé, doit être reflété à partir de la source et que les rpm dépréciés sont supprimés (Déprécié)"
8798
-
8799
8831
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8800
8832
  msgstr "type de filtre (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8801
8833
 
@@ -8841,15 +8873,9 @@ msgstr "voir onglets d’affichage de contenu"
8841
8873
  msgid "waiting for %s to finish the task"
8842
8874
  msgstr "en attendant que %s termine la tâche"
8843
8875
 
8844
- msgid "waiting for Pulp to finish the task"
8845
- msgstr "attend que Pulp termine la tâche"
8846
-
8847
8876
  msgid "waiting for Pulp to finish the task %s"
8848
8877
  msgstr "attend que Pulp termine la tâche %s"
8849
8878
 
8850
- msgid "waiting for Pulp to start the task"
8851
- msgstr "attend que Pulp démarre la tâche"
8852
-
8853
8879
  msgid "waiting for Pulp to start the task %s"
8854
8880
  msgstr "attend que Pulp démarre la tâche %s"
8855
8881
 
@@ -8871,6 +8897,9 @@ msgstr "oui"
8871
8897
  msgid "{0} items selected"
8872
8898
  msgstr "{0} éléments sélectionnés"
8873
8899
 
8900
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
8901
+ msgstr ""
8902
+
8874
8903
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8875
8904
  msgstr "{numberOfActivationKeys} la clé d'activation sera attribuée à la vue du contenu {cvName} dans"
8876
8905