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/it/katello.po CHANGED
@@ -150,9 +150,6 @@ msgstr ""
150
150
  msgid "%s is unreachable. %s"
151
151
  msgstr ""
152
152
 
153
- msgid "%s must be an array."
154
- msgstr ""
155
-
156
153
  msgid "%{errata} (%{total} other errata)"
157
154
  msgstr "%{errata} (altri %{total} errata)"
158
155
 
@@ -387,15 +384,12 @@ msgstr ""
387
384
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
388
385
  msgstr ""
389
386
 
390
- msgid "A Pool and its Subscription cannot belong to different organizations"
387
+ msgid "A Pool and its Subscription cannot belong to different organizations."
391
388
  msgstr ""
392
389
 
393
390
  msgid "A backend service [ %s ] is unreachable"
394
391
  msgstr "Impossibile raggiungere un servizio backend [ %s ]"
395
392
 
396
- msgid "A content view can be added by using the \"Create content view\" button below."
397
- msgstr ""
398
-
399
393
  msgid "A content_type must be provided."
400
394
  msgstr "È necessario fornire un tipo_contenuto."
401
395
 
@@ -462,9 +456,6 @@ msgstr ""
462
456
  msgid "Action unauthorized to be performed in this organization."
463
457
  msgstr ""
464
458
 
465
- msgid "Action unauthorized to be performed on selected hosts."
466
- msgstr ""
467
-
468
459
  msgid "Action with sub plans"
469
460
  msgstr ""
470
461
 
@@ -516,6 +507,9 @@ msgstr ""
516
507
  msgid "Add Subscriptions"
517
508
  msgstr ""
518
509
 
510
+ msgid "Add Subscriptions using the Add Subscriptions button."
511
+ msgstr ""
512
+
519
513
  msgid "Add a subscription to a host"
520
514
  msgstr ""
521
515
 
@@ -525,6 +519,9 @@ msgstr ""
525
519
  msgid "Add components to the content view"
526
520
  msgstr ""
527
521
 
522
+ msgid "Add content"
523
+ msgstr ""
524
+
528
525
  msgid "Add content view"
529
526
  msgstr ""
530
527
 
@@ -567,12 +564,18 @@ msgstr "Aggiungi i prodotti alla programmazione per la sincronizzazione"
567
564
  msgid "Add repositories"
568
565
  msgstr ""
569
566
 
567
+ msgid "Add repositories with package groups to content view to select them here."
568
+ msgstr ""
569
+
570
570
  msgid "Add rule"
571
571
  msgstr ""
572
572
 
573
573
  msgid "Add source"
574
574
  msgstr ""
575
575
 
576
+ msgid "Add subscriptions"
577
+ msgstr ""
578
+
576
579
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
577
580
  msgstr ""
578
581
 
@@ -582,12 +585,6 @@ msgstr ""
582
585
  msgid "Add to a host collection"
583
586
  msgstr ""
584
587
 
585
- msgid "Add to this filter using the 'Add Deb rule' button."
586
- msgstr ""
587
-
588
- msgid "Add to this filter using the 'Add filter rule' button."
589
- msgstr ""
590
-
591
588
  msgid "Add-ons"
592
589
  msgstr ""
593
590
 
@@ -711,15 +708,12 @@ msgstr ""
711
708
  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."
712
709
  msgstr ""
713
710
 
714
- msgid "An alternate content source can be added by using the \"Add source\" button below."
711
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
715
712
  msgstr ""
716
713
 
717
714
  msgid "An environment is missing a prior"
718
715
  msgstr ""
719
716
 
720
- msgid "An error occurred during content removal. Could not find repository with id: %s"
721
- msgstr ""
722
-
723
717
  msgid ""
724
718
  "An error occurred during the sync \n"
725
719
  "%{error_message}"
@@ -916,12 +910,6 @@ msgstr ""
916
910
  msgid "Autopublish"
917
911
  msgstr ""
918
912
 
919
- msgid "Autosearch"
920
- msgstr ""
921
-
922
- msgid "Autosearch delay"
923
- msgstr ""
924
-
925
913
  msgid "Available"
926
914
  msgstr ""
927
915
 
@@ -1057,24 +1045,12 @@ msgstr "Calcola l'Errata applicabile in base ad una visualizzazione del contenut
1057
1045
  msgid "Calculate Applicable Errata based on a particular Environment"
1058
1046
  msgstr "Calcola l'Errata applicabile in base ad un ambiente particolare"
1059
1047
 
1060
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1061
- msgstr ""
1062
-
1063
1048
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1064
1049
  msgstr ""
1065
1050
 
1066
- msgid "Can not add product %s because it is disabled."
1067
- msgstr ""
1068
-
1069
- msgid "Can only destroy on Yum Repositories."
1070
- msgstr ""
1071
-
1072
1051
  msgid "Can only remove content from within the Default Content View"
1073
1052
  msgstr "È possibile rimuovere il contenuto solo da una Visualizzazione del contenuto predefinito"
1074
1053
 
1075
- msgid "Can only upload to Yum Repositories."
1076
- msgstr ""
1077
-
1078
1054
  msgid "Can't update the '%s' environment"
1079
1055
  msgstr "Impossibile aggiornare l'ambiente '%s'"
1080
1056
 
@@ -1132,9 +1108,15 @@ msgstr "Impossibile aggiungere la visualizzazione del contenuto predefinita ad u
1132
1108
  msgid "Cannot add generated content view versions to composite content view"
1133
1109
  msgstr ""
1134
1110
 
1111
+ msgid "Cannot add product %s because it is disabled."
1112
+ msgstr ""
1113
+
1135
1114
  msgid "Cannot add repositories to a composite content view"
1136
1115
  msgstr "Impossibile aggiungere i repositori ad una visualizzazione del contenuto composita"
1137
1116
 
1117
+ msgid "Cannot associate a Red Hat provider with a custom product"
1118
+ msgstr ""
1119
+
1138
1120
  msgid "Cannot associate a component to a non composite content view"
1139
1121
  msgstr ""
1140
1122
 
@@ -1186,7 +1168,10 @@ msgstr ""
1186
1168
  msgid "Cannot import a custom subscription from a redhat product."
1187
1169
  msgstr ""
1188
1170
 
1189
- msgid "Cannot pass content units without content unit type"
1171
+ 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."
1172
+ msgstr ""
1173
+
1174
+ 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."
1190
1175
  msgstr ""
1191
1176
 
1192
1177
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
@@ -1258,6 +1243,9 @@ msgstr ""
1258
1243
  msgid "Change host content source"
1259
1244
  msgstr ""
1260
1245
 
1246
+ msgid "Check audited changes and proceed only if content or filters have changed since last publish"
1247
+ msgstr ""
1248
+
1261
1249
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1262
1250
  msgstr ""
1263
1251
 
@@ -1300,6 +1288,9 @@ msgstr ""
1300
1288
  msgid "Click here to go to the tasks page for the task."
1301
1289
  msgstr ""
1302
1290
 
1291
+ msgid "Click to see repositories available to add."
1292
+ msgstr ""
1293
+
1303
1294
  msgid "Click {update} below to save changes."
1304
1295
  msgstr ""
1305
1296
 
@@ -1579,6 +1570,9 @@ msgstr ""
1579
1570
  msgid "Content view details"
1580
1571
  msgstr ""
1581
1572
 
1573
+ 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."
1574
+ msgstr ""
1575
+
1582
1576
  msgid "Content view environments and activation key must all belong to the same organization"
1583
1577
  msgstr ""
1584
1578
 
@@ -1798,9 +1792,6 @@ msgstr ""
1798
1792
  msgid "Create Import History"
1799
1793
  msgstr ""
1800
1794
 
1801
- msgid "Create Package Group"
1802
- msgstr ""
1803
-
1804
1795
  msgid "Create Repositories"
1805
1796
  msgstr ""
1806
1797
 
@@ -1825,9 +1816,6 @@ msgstr "Crea una regola per il filtro. I parametri inclusi devono basarsi sul ti
1825
1816
  msgid "Create a host collection"
1826
1817
  msgstr "Crea un insieme di host"
1827
1818
 
1828
- msgid "Create a package group"
1829
- msgstr ""
1830
-
1831
1819
  msgid "Create a product"
1832
1820
  msgstr "Crea un prodotto"
1833
1821
 
@@ -1861,6 +1849,9 @@ msgstr ""
1861
1849
  msgid "Create host collection"
1862
1850
  msgstr ""
1863
1851
 
1852
+ msgid "Create new activation key"
1853
+ msgstr ""
1854
+
1864
1855
  msgid "Create organization"
1865
1856
  msgstr "Crea organizzazione"
1866
1857
 
@@ -1993,6 +1984,12 @@ msgstr ""
1993
1984
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
1994
1985
  msgstr ""
1995
1986
 
1987
+ msgid "Default export format"
1988
+ msgstr ""
1989
+
1990
+ msgid "Default export format for content-exports(either 'syncable' or 'importable')"
1991
+ msgstr ""
1992
+
1996
1993
  msgid "Default finish template for new Operating Systems created from synced content"
1997
1994
  msgstr ""
1998
1995
 
@@ -2068,9 +2065,6 @@ msgstr "Cancella ambiente ciclo di vita"
2068
2065
  msgid "Delete Manifest"
2069
2066
  msgstr "Cancella il manifesto"
2070
2067
 
2071
- msgid "Delete Package Group"
2072
- msgstr ""
2073
-
2074
2068
  msgid "Delete Product"
2075
2069
  msgstr "Cancella prodotto"
2076
2070
 
@@ -2086,9 +2080,6 @@ msgstr "Cancella una visualizzazione del contenuto"
2086
2080
  msgid "Delete a filter rule"
2087
2081
  msgstr "Cancella regola del filtro"
2088
2082
 
2089
- msgid "Delete a package group"
2090
- msgstr ""
2091
-
2092
2083
  msgid "Delete all subscriptions attached to activation keys."
2093
2084
  msgstr ""
2094
2085
 
@@ -2452,6 +2443,12 @@ msgstr "Installazione errata"
2452
2443
  msgid "Errata Install scheduled by %s"
2453
2444
  msgstr "Installazione errata programmata per il %s"
2454
2445
 
2446
+ msgid "Errata and package information will be updated at the next host check-in or package action."
2447
+ msgstr ""
2448
+
2449
+ msgid "Errata and package information will be updated immediately."
2450
+ msgstr ""
2451
+
2455
2452
  msgid "Errata id of the erratum (RHSA-2012:108)"
2456
2453
  msgstr "id errata dell'erratum (RHSA-2012:108)"
2457
2454
 
@@ -2554,9 +2551,7 @@ msgstr ""
2554
2551
  msgid "Export as CSV"
2555
2552
  msgstr ""
2556
2553
 
2557
- msgid ""
2558
- "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"
2559
- " Defaults to importable."
2554
+ 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."
2560
2555
  msgstr ""
2561
2556
 
2562
2557
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
@@ -2580,12 +2575,6 @@ msgstr ""
2580
2575
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2581
2576
  msgstr ""
2582
2577
 
2583
- msgid "Failed to download %s package."
2584
- msgid_plural "Failed to download %s packages."
2585
- msgstr[0] "Impossibile scaricare %s pacchetto."
2586
- msgstr[1] "Impossibile scaricare %s pacchetti."
2587
- msgstr[2] "Impossibile scaricare %s pacchetti."
2588
-
2589
2578
  msgid "Failed to find %{content} with id '%{id}'."
2590
2579
  msgstr "Impossibile trovare %{content} con id '%{id}'."
2591
2580
 
@@ -2706,7 +2695,10 @@ msgstr "Filtri"
2706
2695
  msgid "Filters deleted"
2707
2696
  msgstr ""
2708
2697
 
2709
- msgid "Filters will appear here when the filter is created."
2698
+ msgid "Filters were applied to this version."
2699
+ msgstr ""
2700
+
2701
+ msgid "Filters will be applied to this content view version."
2710
2702
  msgstr ""
2711
2703
 
2712
2704
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
@@ -2721,9 +2713,6 @@ msgstr ""
2721
2713
  msgid "Finished"
2722
2714
  msgstr "Completato"
2723
2715
 
2724
- msgid "For pages that support it, automatically perform search while typing in search input."
2725
- msgstr ""
2726
-
2727
2716
  msgid "Force"
2728
2717
  msgstr ""
2729
2718
 
@@ -2735,6 +2724,9 @@ msgstr ""
2735
2724
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2736
2725
  msgstr ""
2737
2726
 
2727
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2728
+ msgstr ""
2729
+
2738
2730
  msgid "Force delete the repository by removing it from all content view versions"
2739
2731
  msgstr ""
2740
2732
 
@@ -2777,6 +2769,9 @@ msgstr ""
2777
2769
  msgid "Generate and Download"
2778
2770
  msgstr "Genera e scarica"
2779
2771
 
2772
+ msgid "Generate errata status from directly-installable content"
2773
+ msgstr ""
2774
+
2780
2775
  msgid "Generate host applicability"
2781
2776
  msgstr ""
2782
2777
 
@@ -2840,9 +2835,6 @@ msgstr ""
2840
2835
  msgid "Greater than"
2841
2836
  msgstr ""
2842
2837
 
2843
- msgid "Group %{id} already created."
2844
- msgstr ""
2845
-
2846
2838
  msgid "Guests of"
2847
2839
  msgstr "Guest di"
2848
2840
 
@@ -2882,6 +2874,9 @@ msgstr "Host"
2882
2874
  msgid "Host %s has not been registered with subscription-manager."
2883
2875
  msgstr ""
2884
2876
 
2877
+ msgid "Host %{hostname}: Cannot add content view environment to content facet. The host's content source '%{content_source}' does not sync lifecycle environment '%{lce}'."
2878
+ msgstr ""
2879
+
2885
2880
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2886
2881
  msgstr ""
2887
2882
 
@@ -3149,9 +3144,6 @@ msgstr ""
3149
3144
  msgid "Ids of smart proxies to associate"
3150
3145
  msgstr ""
3151
3146
 
3152
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3153
- msgstr ""
3154
-
3155
3147
  msgid "If SSL should be verified for the upstream URL"
3156
3148
  msgstr ""
3157
3149
 
@@ -3179,13 +3171,16 @@ msgstr ""
3179
3171
  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/...'."
3180
3172
  msgstr ""
3181
3173
 
3174
+ msgid "If true, only errata that can be installed without an incremental update will affect the host's errata status."
3175
+ msgstr ""
3176
+
3182
3177
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3183
3178
  msgstr ""
3184
3179
 
3185
3180
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3186
3181
  msgstr ""
3187
3182
 
3188
- msgid "If true, return custom repository sets along with redhat repos"
3183
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3189
3184
  msgstr ""
3190
3185
 
3191
3186
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
@@ -3218,6 +3213,9 @@ msgstr ""
3218
3213
  msgid "Ignored hosts"
3219
3214
  msgstr ""
3220
3215
 
3216
+ msgid "Image"
3217
+ msgstr ""
3218
+
3221
3219
  msgid "Immediate"
3222
3220
  msgstr ""
3223
3221
 
@@ -3431,10 +3429,7 @@ msgstr ""
3431
3429
  msgid "Installable"
3432
3430
  msgstr "Installabile"
3433
3431
 
3434
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3435
- msgstr ""
3436
-
3437
- msgid "Installable errata from content view"
3432
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3438
3433
  msgstr ""
3439
3434
 
3440
3435
  msgid "Installable updates"
@@ -3575,7 +3570,7 @@ msgstr "Emesso"
3575
3570
  msgid "Issued from"
3576
3571
  msgstr ""
3577
3572
 
3578
- msgid "Items will appear here when a filter rule is added."
3573
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3579
3574
  msgstr ""
3580
3575
 
3581
3576
  msgid "Job '${description}' completed"
@@ -3743,6 +3738,9 @@ msgstr ""
3743
3738
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3744
3739
  msgstr ""
3745
3740
 
3741
+ msgid "Limit content to Red Hat / custom"
3742
+ msgstr ""
3743
+
3746
3744
  msgid "Limit content to enabled / disabled / overridden"
3747
3745
  msgstr ""
3748
3746
 
@@ -4160,21 +4158,24 @@ msgstr ""
4160
4158
  msgid "Multi-entitlement"
4161
4159
  msgstr "Entitlement-multipli"
4162
4160
 
4163
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4164
- msgstr ""
4165
-
4166
4161
  msgid "N/A"
4167
4162
  msgstr "N/A"
4168
4163
 
4169
4164
  msgid "NA"
4170
4165
  msgstr "NA"
4171
4166
 
4167
+ 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}'."
4168
+ msgstr ""
4169
+
4172
4170
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4173
4171
  msgstr ""
4174
4172
 
4175
4173
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4176
4174
  msgstr ""
4177
4175
 
4176
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4177
+ msgstr ""
4178
+
4178
4179
  msgid ""
4179
4180
  "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"
4180
4181
  " %{repos}"
@@ -4250,12 +4251,6 @@ msgstr "Mai sincronizzato"
4250
4251
  msgid "New Errata"
4251
4252
  msgstr "Nuovo errata"
4252
4253
 
4253
- msgid "New Files: %s"
4254
- msgstr ""
4255
-
4256
- msgid "New blobs: %{count}."
4257
- msgstr ""
4258
-
4259
4254
  msgid "New content view name"
4260
4255
  msgstr "Nuovo nome per la visualizzazione del contenuto"
4261
4256
 
@@ -4268,15 +4263,15 @@ msgstr "Il nuovo nome non può essere vuoto"
4268
4263
  msgid "New name for the content view"
4269
4264
  msgstr "Nuovo nome per la visualizzazione del contenuto"
4270
4265
 
4271
- msgid "New packages: %{count} (%{size})."
4272
- msgstr "Nuovi pacchetti: %{count} (%{size})."
4273
-
4274
4266
  msgid "New version is available: Version ${latestVersion}"
4275
4267
  msgstr ""
4276
4268
 
4277
4269
  msgid "Newly published"
4278
4270
  msgstr ""
4279
4271
 
4272
+ msgid "Newly published version will be the same as the previous version."
4273
+ msgstr ""
4274
+
4280
4275
  msgid "No"
4281
4276
  msgstr "No"
4282
4277
 
@@ -4328,6 +4323,12 @@ msgstr ""
4328
4323
  msgid "No artifacts to show"
4329
4324
  msgstr ""
4330
4325
 
4326
+ msgid "No available component content view updates"
4327
+ msgstr ""
4328
+
4329
+ msgid "No available repository or filter updates"
4330
+ msgstr ""
4331
+
4331
4332
  msgid "No content"
4332
4333
  msgstr ""
4333
4334
 
@@ -4352,7 +4353,10 @@ msgstr ""
4352
4353
  msgid "No content views available for the selected environment"
4353
4354
  msgstr ""
4354
4355
 
4355
- msgid "No content views belong to ${label}"
4356
+ msgid "No content views to add yet"
4357
+ msgstr ""
4358
+
4359
+ msgid "No content views yet"
4356
4360
  msgstr ""
4357
4361
 
4358
4362
  msgid "No content_view_version_ids provided"
@@ -4373,10 +4377,13 @@ msgstr ""
4373
4377
  msgid "No environments"
4374
4378
  msgstr ""
4375
4379
 
4376
- msgid "No errata available for this content view."
4380
+ msgid "No errata filter rules yet"
4381
+ msgstr ""
4382
+
4383
+ msgid "No errata matching given search query"
4377
4384
  msgstr ""
4378
4385
 
4379
- msgid "No errata available to add to this filter."
4386
+ msgid "No errata to add yet"
4380
4387
  msgstr ""
4381
4388
 
4382
4389
  msgid "No errors"
@@ -4388,6 +4395,12 @@ msgstr ""
4388
4395
  msgid "No file uploaded"
4389
4396
  msgstr "Nessun file caricato"
4390
4397
 
4398
+ msgid "No filters yet"
4399
+ msgstr ""
4400
+
4401
+ msgid "No history yet"
4402
+ msgstr ""
4403
+
4391
4404
  msgid "No host collections"
4392
4405
  msgstr ""
4393
4406
 
@@ -4403,6 +4416,9 @@ msgstr ""
4403
4416
  msgid "No hosts have been specified."
4404
4417
  msgstr ""
4405
4418
 
4419
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4420
+ msgstr ""
4421
+
4406
4422
  msgid "No hosts registered with subscription-manager found in selection."
4407
4423
  msgstr ""
4408
4424
 
@@ -4472,20 +4488,23 @@ msgstr ""
4472
4488
  msgid "No matching repository sets found"
4473
4489
  msgstr ""
4474
4490
 
4475
- msgid "No matching rules found."
4476
- msgstr ""
4477
-
4478
4491
  msgid "No matching traces found"
4479
4492
  msgstr ""
4480
4493
 
4481
4494
  msgid "No matching version found"
4482
4495
  msgstr ""
4483
4496
 
4497
+ msgid "No module stream filter rules yet"
4498
+ msgstr ""
4499
+
4500
+ msgid "No module streams to add yet."
4501
+ msgstr ""
4502
+
4484
4503
  msgid "No new packages installed"
4485
4504
  msgstr "Nessun nuovo pacchetto installato"
4486
4505
 
4487
- msgid "No new packages."
4488
- msgstr "Nessun nuovo pacchetto."
4506
+ msgid "No package groups yet"
4507
+ msgstr ""
4489
4508
 
4490
4509
  msgid "No packages"
4491
4510
  msgstr ""
@@ -4493,7 +4512,7 @@ msgstr ""
4493
4512
  msgid "No packages available to install"
4494
4513
  msgstr ""
4495
4514
 
4496
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4515
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4497
4516
  msgstr ""
4498
4517
 
4499
4518
  msgid "No packages removed"
@@ -4535,6 +4554,12 @@ msgstr ""
4535
4554
  msgid "No recurring logic tied to the sync plan."
4536
4555
  msgstr ""
4537
4556
 
4557
+ msgid "No repositories added yet"
4558
+ msgstr ""
4559
+
4560
+ msgid "No repositories available to add"
4561
+ msgstr ""
4562
+
4538
4563
  msgid "No repositories available."
4539
4564
  msgstr ""
4540
4565
 
@@ -4553,7 +4578,7 @@ msgstr ""
4553
4578
  msgid "No repository sets to show."
4554
4579
  msgstr ""
4555
4580
 
4556
- msgid "No rules have been added to this filter."
4581
+ msgid "No rules yet"
4557
4582
  msgstr ""
4558
4583
 
4559
4584
  msgid "No services defined, is this class extended?"
@@ -4571,6 +4596,9 @@ msgstr ""
4571
4596
  msgid "No uploads param specified. An array of uploads to import is required."
4572
4597
  msgstr ""
4573
4598
 
4599
+ msgid "No versions yet"
4600
+ msgstr ""
4601
+
4574
4602
  msgid "Non-security errata applicable"
4575
4603
  msgstr ""
4576
4604
 
@@ -4676,9 +4704,6 @@ msgstr ""
4676
4704
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4677
4705
  msgstr ""
4678
4706
 
4679
- msgid "One or more packages failed to sync properly."
4680
- msgstr "Uno o più pacchetti non hanno eseguito una sincronizzazione corretta."
4681
-
4682
4707
  msgid "One or more processes require restarting"
4683
4708
  msgstr ""
4684
4709
 
@@ -4961,9 +4986,6 @@ msgstr ""
4961
4986
  msgid "Paused"
4962
4987
  msgstr "In pausa"
4963
4988
 
4964
- msgid "Pending"
4965
- msgstr "In attesa"
4966
-
4967
4989
  msgid "Perform a module stream action via Katello interface"
4968
4990
  msgstr ""
4969
4991
 
@@ -4997,10 +5019,10 @@ msgstr "Fisico"
4997
5019
  msgid "Plan numeric identifier"
4998
5020
  msgstr "Identificatore numerico della programmazione"
4999
5021
 
5000
- msgid "Please add some content views."
5022
+ msgid "Please add some repositories."
5001
5023
  msgstr ""
5002
5024
 
5003
- msgid "Please add some repositories."
5025
+ msgid "Please create some content views."
5004
5026
  msgstr ""
5005
5027
 
5006
5028
  msgid "Please enter a positive number above zero"
@@ -5078,12 +5100,6 @@ msgstr ""
5078
5100
  msgid "Problem searching traces"
5079
5101
  msgstr ""
5080
5102
 
5081
- msgid "Processing metadata"
5082
- msgstr "Processazione metadati"
5083
-
5084
- msgid "Processing metadata."
5085
- msgstr "Processazione metadati."
5086
-
5087
5103
  msgid "Product"
5088
5104
  msgstr "Prodotto"
5089
5105
 
@@ -5096,9 +5112,6 @@ msgstr ""
5096
5112
  msgid "Product ID"
5097
5113
  msgstr "ID del prodotto"
5098
5114
 
5099
- msgid "Product Name"
5100
- msgstr "Nome prodotto"
5101
-
5102
5115
  msgid "Product and Repositories"
5103
5116
  msgstr "Prodotto e repositori"
5104
5117
 
@@ -5386,6 +5399,9 @@ msgstr ""
5386
5399
  msgid "Recommended Repositories"
5387
5400
  msgstr ""
5388
5401
 
5402
+ msgid "Red Hat"
5403
+ msgstr ""
5404
+
5389
5405
  msgid "Red Hat CDN"
5390
5406
  msgstr ""
5391
5407
 
@@ -5641,6 +5657,9 @@ msgstr ""
5641
5657
  msgid "Repo Type"
5642
5658
  msgstr "Tipo di repository"
5643
5659
 
5660
+ msgid "Report"
5661
+ msgstr ""
5662
+
5644
5663
  msgid "Repositories"
5645
5664
  msgstr "Repository"
5646
5665
 
@@ -5683,9 +5702,6 @@ msgstr ""
5683
5702
  msgid "Repository label '%s' is not associated with content view."
5684
5703
  msgstr ""
5685
5704
 
5686
- msgid "Repository metadata publish"
5687
- msgstr "Metadati del repository pubblici"
5688
-
5689
5705
  msgid "Repository not found"
5690
5706
  msgstr "Repositorio non trovato"
5691
5707
 
@@ -5722,6 +5738,12 @@ msgstr ""
5722
5738
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5723
5739
  msgstr ""
5724
5740
 
5741
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5742
+ msgstr ""
5743
+
5744
+ msgid "Repository type"
5745
+ msgstr ""
5746
+
5725
5747
  msgid "Republish Repositories of %{name} %{version}"
5726
5748
  msgstr ""
5727
5749
 
@@ -6019,6 +6041,9 @@ msgstr ""
6019
6041
  msgid "Select a client key"
6020
6042
  msgstr ""
6021
6043
 
6044
+ msgid "Select a content source first"
6045
+ msgstr ""
6046
+
6022
6047
  msgid "Select a content view"
6023
6048
  msgstr ""
6024
6049
 
@@ -6034,6 +6059,9 @@ msgstr ""
6034
6059
  msgid "Select a provider to install katello-host-tools-tracer"
6035
6060
  msgstr ""
6036
6061
 
6062
+ msgid "Select a source"
6063
+ msgstr ""
6064
+
6037
6065
  msgid "Select add-ons"
6038
6066
  msgstr ""
6039
6067
 
@@ -6049,7 +6077,7 @@ msgstr "Seleziona una organizzazione"
6049
6077
  msgid "Select an environment"
6050
6078
  msgstr ""
6051
6079
 
6052
- msgid "Select an environment above"
6080
+ msgid "Select an environment first"
6053
6081
  msgstr ""
6054
6082
 
6055
6083
  msgid "Select an option"
@@ -6214,6 +6242,9 @@ msgstr ""
6214
6242
  msgid "Show all"
6215
6243
  msgstr ""
6216
6244
 
6245
+ msgid "Show all repository sets"
6246
+ msgstr ""
6247
+
6217
6248
  msgid "Show an activation key"
6218
6249
  msgstr "Mostra una chiave di attivazione"
6219
6250
 
@@ -6235,6 +6266,9 @@ msgstr "Mostra le informazioni sulle regole del filtro"
6235
6266
  msgid "Show full description"
6236
6267
  msgstr ""
6237
6268
 
6269
+ msgid "Show hosts associated to an activation key"
6270
+ msgstr ""
6271
+
6238
6272
  msgid "Show organization"
6239
6273
  msgstr "Mostra organizzazione"
6240
6274
 
@@ -6244,12 +6278,18 @@ msgstr "Mostra le versioni della release disponibili per una chiave di attivazio
6244
6278
  msgid "Show releases available for the content host"
6245
6279
  msgstr "Mostra le release disponibili per un host di contenuto"
6246
6280
 
6281
+ msgid "Show repositories"
6282
+ msgstr ""
6283
+
6247
6284
  msgid "Show repositories enabled on the host that are known to Katello"
6248
6285
  msgstr ""
6249
6286
 
6250
6287
  msgid "Show the available repository types"
6251
6288
  msgstr ""
6252
6289
 
6290
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6291
+ msgstr ""
6292
+
6253
6293
  msgid "Shows status of Katello system and it's subcomponents"
6254
6294
  msgstr ""
6255
6295
 
@@ -6307,6 +6347,12 @@ msgstr ""
6307
6347
  msgid "Solve dependencies"
6308
6348
  msgstr ""
6309
6349
 
6350
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6351
+ msgstr ""
6352
+
6353
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6354
+ msgstr ""
6355
+
6310
6356
  msgid "Some hosts are not registered as content hosts and will be ignored."
6311
6357
  msgstr ""
6312
6358
 
@@ -6751,9 +6797,6 @@ msgstr "Sincronizza"
6751
6797
  msgid "Synchronize Now"
6752
6798
  msgstr "Sincronizza ora"
6753
6799
 
6754
- msgid "Synchronize capsule content"
6755
- msgstr ""
6756
-
6757
6800
  msgid "Synchronize repository"
6758
6801
  msgstr "Sincronizza repositorio"
6759
6802
 
@@ -6787,7 +6830,7 @@ msgstr ""
6787
6830
  msgid "System purpose attributes updated"
6788
6831
  msgstr ""
6789
6832
 
6790
- 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."
6833
+ 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."
6791
6834
  msgstr ""
6792
6835
 
6793
6836
  msgid "Tag name"
@@ -6865,9 +6908,6 @@ msgstr "La data d'inizio della regola del filtro dell'erratum non ha un formato
6865
6908
  msgid "The erratum type must be an array. Invalid value provided"
6866
6909
  msgstr "Il tipo di erratum deve essere un array. È stato fornito un valore non valido"
6867
6910
 
6868
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
6869
- msgstr ""
6870
-
6871
6911
  msgid "The field to sort the data by. Defaults to the created date."
6872
6912
  msgstr ""
6873
6913
 
@@ -7175,6 +7215,9 @@ msgstr ""
7175
7215
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7176
7216
  msgstr ""
7177
7217
 
7218
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7219
+ msgstr ""
7220
+
7178
7221
  msgid "Timeout when refreshing a manifest (in seconds)"
7179
7222
  msgstr ""
7180
7223
 
@@ -7184,9 +7227,21 @@ msgstr ""
7184
7227
  msgid "Title"
7185
7228
  msgstr "Titolo"
7186
7229
 
7230
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7231
+ msgstr ""
7232
+
7233
+ msgid "To enable them, add the environment to the host's content source, or "
7234
+ msgstr ""
7235
+
7236
+ msgid "To get started, add a filter rule to this filter"
7237
+ msgstr ""
7238
+
7187
7239
  msgid "To get started, add this host to a host collection."
7188
7240
  msgstr ""
7189
7241
 
7242
+ 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."
7243
+ msgstr ""
7244
+
7190
7245
  msgid "To update the selected host configuration, update hosts manually in the next section."
7191
7246
  msgstr ""
7192
7247
 
@@ -7373,9 +7428,6 @@ msgstr ""
7373
7428
  msgid "Unapplied Errata"
7374
7429
  msgstr "Errata non applicato"
7375
7430
 
7376
- msgid "Unassociate units in repository"
7377
- msgstr ""
7378
-
7379
7431
  msgid "Unattach a subscription"
7380
7432
  msgstr "Rimuovi una sottoscrizione"
7381
7433
 
@@ -7562,6 +7614,9 @@ msgstr ""
7562
7614
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7563
7615
  msgstr ""
7564
7616
 
7617
+ msgid "Update the host immediately via remote execution"
7618
+ msgstr ""
7619
+
7565
7620
  msgid "Update the information about enabled repositories"
7566
7621
  msgstr "Aggiorna le informazioni sui repositori abilitati"
7567
7622
 
@@ -7589,6 +7644,12 @@ msgstr "Aggiorna un prodotto"
7589
7644
  msgid "Updates all packages on the host(s)"
7590
7645
  msgstr ""
7591
7646
 
7647
+ msgid "Updates available: Component content view versions have been updated."
7648
+ msgstr ""
7649
+
7650
+ msgid "Updates available: Repositories and/or filters have changed."
7651
+ msgstr ""
7652
+
7592
7653
  msgid "Updating Package..."
7593
7654
  msgstr "Aggiornamento pacchetto in corso..."
7594
7655
 
@@ -7808,6 +7869,9 @@ msgstr ""
7808
7869
  msgid "View %{view} has not been promoted to %{env}"
7809
7870
  msgstr "La visualizzazione %{view} non è stata avanzata su %{env}"
7810
7871
 
7872
+ msgid "View Filters"
7873
+ msgstr ""
7874
+
7811
7875
  msgid "View Subscription Usage"
7812
7876
  msgstr ""
7813
7877
 
@@ -7820,6 +7884,9 @@ msgstr ""
7820
7884
  msgid "View by"
7821
7885
  msgstr ""
7822
7886
 
7887
+ msgid "View documentation"
7888
+ msgstr ""
7889
+
7823
7890
  msgid "View matching content"
7824
7891
  msgstr ""
7825
7892
 
@@ -7865,6 +7932,9 @@ msgstr ""
7865
7932
  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."
7866
7933
  msgstr ""
7867
7934
 
7935
+ msgid "Whether Simple Content Access should be enabled for the organization."
7936
+ msgstr ""
7937
+
7868
7938
  msgid "Whether or not the host collection may have unlimited hosts"
7869
7939
  msgstr ""
7870
7940
 
@@ -7877,6 +7947,9 @@ msgstr ""
7877
7947
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7878
7948
  msgstr ""
7879
7949
 
7950
+ msgid "Whether or not to return filters applied to the content view version"
7951
+ msgstr ""
7952
+
7880
7953
  msgid "Whether or not to show all results"
7881
7954
  msgstr "Indica se mostrare tutti i risultati"
7882
7955
 
@@ -7922,31 +7995,19 @@ msgstr "Impossibile impostare parent_id sull'organizzazione. Questa funzione è
7922
7995
  msgid "You currently don't have any ${selectedContentType}."
7923
7996
  msgstr ""
7924
7997
 
7925
- msgid "You currently don't have any Content views."
7926
- msgstr ""
7927
-
7928
7998
  msgid "You currently don't have any alternate content sources."
7929
7999
  msgstr ""
7930
8000
 
7931
- msgid "You currently don't have any filters for this content view."
7932
- msgstr ""
7933
-
7934
- msgid "You currently don't have any history for this content view."
8001
+ msgid "You currently don't have any related content views."
7935
8002
  msgstr ""
7936
8003
 
7937
8004
  msgid "You currently don't have any repositories associated with this content."
7938
8005
  msgstr ""
7939
8006
 
7940
- msgid "You currently don't have any repositories to add to this content view."
7941
- msgstr ""
7942
-
7943
8007
  msgid "You currently don't have any repositories to add to this filter."
7944
8008
  msgstr ""
7945
8009
 
7946
- msgid "You currently don't have any versions for this content view."
7947
- msgstr ""
7948
-
7949
- msgid "You currently don\\'t have any related content views."
8010
+ msgid "You currently have no content views to display"
7950
8011
  msgstr ""
7951
8012
 
7952
8013
  msgid "You do not have permissions to delete %s"
@@ -8003,9 +8064,6 @@ msgstr ""
8003
8064
  msgid "Yum"
8004
8065
  msgstr ""
8005
8066
 
8006
- msgid "Yum Metadata: %s"
8007
- msgstr ""
8008
-
8009
8067
  msgid "a content unit"
8010
8068
  msgstr ""
8011
8069
 
@@ -8168,6 +8226,9 @@ msgstr "non può contenere i filtri dei repositori che non appartengono a questa
8168
8226
  msgid "cannot contain more than %s characters"
8169
8227
  msgstr "non può avere più di %s caratteri"
8170
8228
 
8229
+ msgid "change the host's content source."
8230
+ msgstr ""
8231
+
8171
8232
  msgid "checking %s task status"
8172
8233
  msgstr ""
8173
8234
 
@@ -8183,9 +8244,6 @@ msgstr ""
8183
8244
  msgid "composite content view numeric identifier"
8184
8245
  msgstr ""
8185
8246
 
8186
- msgid "conditional package names to include in the package group"
8187
- msgstr ""
8188
-
8189
8247
  msgid "content release version"
8190
8248
  msgstr "Versione release del contenuto"
8191
8249
 
@@ -8240,6 +8298,9 @@ msgstr "identificatori versione per la visualizzazione del contenuto da cancella
8240
8298
  msgid "content view versions to compare"
8241
8299
  msgstr "versioni della visualizzazione del contenuto da confrontare"
8242
8300
 
8301
+ msgid "create a custom product"
8302
+ msgstr ""
8303
+
8243
8304
  msgid "create a filter for a content view"
8244
8305
  msgstr ""
8245
8306
 
@@ -8249,9 +8310,6 @@ msgstr ""
8249
8310
  msgid "deb_ids is not an array"
8250
8311
  msgstr ""
8251
8312
 
8252
- msgid "default package names to include in the package group"
8253
- msgstr ""
8254
-
8255
8313
  msgid "delete a filter"
8256
8314
  msgstr ""
8257
8315
 
@@ -8483,9 +8541,6 @@ msgstr "elenco id dei repositori"
8483
8541
  msgid "list of rpm filename strings to include in published version"
8484
8542
  msgstr ""
8485
8543
 
8486
- msgid "mandatory package names to include in the package group"
8487
- msgstr ""
8488
-
8489
8544
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8490
8545
  msgstr ""
8491
8546
 
@@ -8513,6 +8568,9 @@ msgstr "deve essere uno dei seguenti: %s"
8513
8568
  msgid "must be one of: %s"
8514
8569
  msgstr ""
8515
8570
 
8571
+ msgid "must be true or false"
8572
+ msgstr ""
8573
+
8516
8574
  msgid "must be unique within one organization"
8517
8575
  msgstr "deve essere unico all'interno di una organizzazione"
8518
8576
 
@@ -8540,9 +8598,6 @@ msgstr "non deve avere spazi iniziali o finali."
8540
8598
  msgid "name"
8541
8599
  msgstr "nome"
8542
8600
 
8543
- msgid "name not defined."
8544
- msgstr ""
8545
-
8546
8601
  msgid "name of organization"
8547
8602
  msgstr "nome organizzazione"
8548
8603
 
@@ -8588,21 +8643,12 @@ msgstr "ambiente deve essere unico all'interno di una organizzazione"
8588
8643
  msgid "only show the repositories readable by this user with this username"
8589
8644
  msgstr ""
8590
8645
 
8591
- msgid "optional package names to include in the package group"
8592
- msgstr ""
8593
-
8594
8646
  msgid "organization ID"
8595
8647
  msgstr "ID organizzazione"
8596
8648
 
8597
8649
  msgid "organization identifier"
8598
8650
  msgstr "identificatore organizzazione"
8599
8651
 
8600
- msgid "package group description. Defaults to params[:name]"
8601
- msgstr ""
8602
-
8603
- msgid "package group name"
8604
- msgstr ""
8605
-
8606
8652
  msgid "package group: uuid"
8607
8653
  msgstr ""
8608
8654
 
@@ -8681,12 +8727,6 @@ msgstr "identificatore repositorio"
8681
8727
  msgid "repository source url"
8682
8728
  msgstr "URL sorgente del repositorio"
8683
8729
 
8684
- msgid "repository_id"
8685
- msgstr ""
8686
-
8687
- msgid "repository_id not defined."
8688
- msgstr ""
8689
-
8690
8730
  msgid "root-node of collection contained in responses (default: 'results')"
8691
8731
  msgstr "root-node dell'insieme contenuto nelle risposte (default: 'results')"
8692
8732
 
@@ -8708,9 +8748,6 @@ msgstr ""
8708
8748
  msgid "service level"
8709
8749
  msgstr "livello di servizio"
8710
8750
 
8711
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8712
- msgstr ""
8713
-
8714
8751
  msgid "set true if you want to see only library environments"
8715
8752
  msgstr "imposta su vero se desideri visualizzare solo gli ambienti libreria"
8716
8753
 
@@ -8768,9 +8805,6 @@ msgstr ""
8768
8805
  msgid "true if this repository can be published via HTTP"
8769
8806
  msgstr "vero se questo repositorio può essere pubblicato tramite HTTP"
8770
8807
 
8771
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8772
- msgstr ""
8773
-
8774
8808
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8775
8809
  msgstr ""
8776
8810
 
@@ -8816,15 +8850,9 @@ msgstr ""
8816
8850
  msgid "waiting for %s to finish the task"
8817
8851
  msgstr ""
8818
8852
 
8819
- msgid "waiting for Pulp to finish the task"
8820
- msgstr ""
8821
-
8822
8853
  msgid "waiting for Pulp to finish the task %s"
8823
8854
  msgstr ""
8824
8855
 
8825
- msgid "waiting for Pulp to start the task"
8826
- msgstr ""
8827
-
8828
8856
  msgid "waiting for Pulp to start the task %s"
8829
8857
  msgstr ""
8830
8858
 
@@ -8846,6 +8874,9 @@ msgstr "si"
8846
8874
  msgid "{0} items selected"
8847
8875
  msgstr ""
8848
8876
 
8877
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
8878
+ msgstr ""
8879
+
8849
8880
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8850
8881
  msgstr ""
8851
8882