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/es/katello.po CHANGED
@@ -157,9 +157,6 @@ msgstr ""
157
157
  msgid "%s is unreachable. %s"
158
158
  msgstr "%s es inalcanzable. %s"
159
159
 
160
- msgid "%s must be an array."
161
- msgstr "%s debe ser una matriz."
162
-
163
160
  msgid "%{errata} (%{total} other errata)"
164
161
  msgstr "%{errata} (%{total} otras erratas)"
165
162
 
@@ -394,15 +391,12 @@ msgstr "<b>SYNC</b> RESUMEN"
394
391
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
395
392
  msgstr "Ya existe una versión CV con la misma versión mayor y menor (%{major}.%{minor})"
396
393
 
397
- msgid "A Pool and its Subscription cannot belong to different organizations"
394
+ msgid "A Pool and its Subscription cannot belong to different organizations."
398
395
  msgstr ""
399
396
 
400
397
  msgid "A backend service [ %s ] is unreachable"
401
398
  msgstr "Un servicio backend [ %s ] es inalcanzable"
402
399
 
403
- msgid "A content view can be added by using the \"Create content view\" button below."
404
- msgstr ""
405
-
406
400
  msgid "A content_type must be provided."
407
401
  msgstr "Se debe proporcionar un content_type"
408
402
 
@@ -469,9 +463,6 @@ msgstr "Acción no permitida para el proxy inteligente por defecto"
469
463
  msgid "Action unauthorized to be performed in this organization."
470
464
  msgstr ""
471
465
 
472
- msgid "Action unauthorized to be performed on selected hosts."
473
- msgstr "Acción no autorizada que debe realizarse en los hosts seleccionados."
474
-
475
466
  msgid "Action with sub plans"
476
467
  msgstr "Acción con subplanes"
477
468
 
@@ -523,6 +514,9 @@ msgstr ""
523
514
  msgid "Add Subscriptions"
524
515
  msgstr "Añadir suscripciones"
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 "Añadir una suscripción a un host"
528
522
 
@@ -532,6 +526,9 @@ msgstr ""
532
526
  msgid "Add components to the content view"
533
527
  msgstr "Añadir componentes a la vista de contenido"
534
528
 
529
+ msgid "Add content"
530
+ msgstr ""
531
+
535
532
  msgid "Add content view"
536
533
  msgstr ""
537
534
 
@@ -574,12 +571,18 @@ msgstr "Añadir productos al plan de sincronización"
574
571
  msgid "Add repositories"
575
572
  msgstr ""
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 ""
579
579
 
580
580
  msgid "Add source"
581
581
  msgstr ""
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 "Añadir las suscripciones consumidas por un manifiesto de la Administración de suscripciones de Red Hat"
585
588
 
@@ -589,12 +592,6 @@ msgstr "Añadir suscripciones a uno o más hosts"
589
592
  msgid "Add to a host collection"
590
593
  msgstr ""
591
594
 
592
- msgid "Add to this filter using the 'Add Deb rule' button."
593
- msgstr ""
594
-
595
- msgid "Add to this filter using the 'Add filter rule' button."
596
- msgstr ""
597
-
598
595
  msgid "Add-ons"
599
596
  msgstr ""
600
597
 
@@ -718,15 +715,12 @@ msgstr ""
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 "Cantidad de trabajadores en el grupo para manejar la ejecución de las tareas relacionadas con el host. Cuando se establece en 0, se usará la cola por defecto en su lugar. Se requiere el reinicio del servicio de dynflowd/foreman-tasks."
720
717
 
721
- msgid "An alternate content source can be added by using the \"Add source\" button below."
718
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
722
719
  msgstr ""
723
720
 
724
721
  msgid "An environment is missing a prior"
725
722
  msgstr "A un entorno le falta algo anterior"
726
723
 
727
- msgid "An error occurred during content removal. Could not find repository with id: %s"
728
- msgstr "Se ha producido un error durante la eliminación del contenido. No se ha podido encontrar el repositorio con id: %s"
729
-
730
724
  msgid ""
731
725
  "An error occurred during the sync \n"
732
726
  "%{error_message}"
@@ -925,12 +919,6 @@ msgstr ""
925
919
  msgid "Autopublish"
926
920
  msgstr "Autopublicación"
927
921
 
928
- msgid "Autosearch"
929
- msgstr "Autobúsqueda"
930
-
931
- msgid "Autosearch delay"
932
- msgstr "Retraso de la autobúsqueda"
933
-
934
922
  msgid "Available"
935
923
  msgstr "Disponible"
936
924
 
@@ -1066,24 +1054,12 @@ msgstr "Calcular erratas aplicables según una vista de contenido específica"
1066
1054
  msgid "Calculate Applicable Errata based on a particular Environment"
1067
1055
  msgstr "Calcular las erratas aplicables según un entorno específico"
1068
1056
 
1069
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1070
- msgstr ""
1071
-
1072
1057
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1073
1058
  msgstr ""
1074
1059
 
1075
- msgid "Can not add product %s because it is disabled."
1076
- msgstr "No se puede añadir el producto %s porque está desactivado."
1077
-
1078
- msgid "Can only destroy on Yum Repositories."
1079
- msgstr "Solo puede destruir repositorios Yum."
1080
-
1081
1060
  msgid "Can only remove content from within the Default Content View"
1082
1061
  msgstr "No se puede retirar el contenido desde dentro de la vista de contenido predeterminada"
1083
1062
 
1084
- msgid "Can only upload to Yum Repositories."
1085
- msgstr "Solo se puede cargar en repositorios Yum."
1086
-
1087
1063
  msgid "Can't update the '%s' environment"
1088
1064
  msgstr "No se puede actualizar el entorno '%s'."
1089
1065
 
@@ -1141,9 +1117,15 @@ msgstr "No se puede añadir la vista de contenido predeterminada a una vista de
1141
1117
  msgid "Cannot add generated content view versions to composite content view"
1142
1118
  msgstr ""
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 "No se pueden añadir repositorios a una vista de contenido compuesta"
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 "No se puede asociar un componente a una vista de contenido no compuesto"
1149
1131
 
@@ -1195,8 +1177,11 @@ msgstr ""
1195
1177
  msgid "Cannot import a custom subscription from a redhat product."
1196
1178
  msgstr "No se puede importar una suscripción personalizada de un producto de redhat."
1197
1179
 
1198
- msgid "Cannot pass content units without content unit type"
1199
- msgstr "No puede pasar las unidades de contenido sin el tipo de unidad de contenido"
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 "No se puede realizar una actualización incremental en una versión de vista de contenido compuesto (%{name} version version %{version}"
@@ -1267,6 +1252,9 @@ msgstr ""
1267
1252
  msgid "Change host content source"
1268
1253
  msgstr ""
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 "Comprobar si se puede hacer una conexión con el administrador de suscripciones de Red Hat."
1272
1260
 
@@ -1309,6 +1297,9 @@ msgstr ""
1309
1297
  msgid "Click here to go to the tasks page for the task."
1310
1298
  msgstr "Haga clic aquí para ir a la página de tareas para la tarea."
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 ""
1314
1305
 
@@ -1588,6 +1579,9 @@ msgstr ""
1588
1579
  msgid "Content view details"
1589
1580
  msgstr ""
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 "Crear historial de exportación"
1807
1801
  msgid "Create Import History"
1808
1802
  msgstr "Crear historial de importaciones"
1809
1803
 
1810
- msgid "Create Package Group"
1811
- msgstr "Crear grupo de paquete"
1812
-
1813
1804
  msgid "Create Repositories"
1814
1805
  msgstr "Crear repositorios"
1815
1806
 
@@ -1834,9 +1825,6 @@ msgstr "Crear una regla de filtro. Los parámetros incluidos se deben basar en e
1834
1825
  msgid "Create a host collection"
1835
1826
  msgstr "Crear una recopilación de hosts"
1836
1827
 
1837
- msgid "Create a package group"
1838
- msgstr "Crear grupo de paquete"
1839
-
1840
1828
  msgid "Create a product"
1841
1829
  msgstr "Crear un producto"
1842
1830
 
@@ -1870,6 +1858,9 @@ msgstr ""
1870
1858
  msgid "Create host collection"
1871
1859
  msgstr ""
1872
1860
 
1861
+ msgid "Create new activation key"
1862
+ msgstr ""
1863
+
1873
1864
  msgid "Create organization"
1874
1865
  msgstr "Crear organización"
1875
1866
 
@@ -2002,6 +1993,12 @@ msgstr ""
2002
1993
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
2003
1994
  msgstr ""
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 "Plantilla de acabado por defecto para los nuevos sistemas operativos creados a partir de contenido sincronizado"
2007
2004
 
@@ -2077,9 +2074,6 @@ msgstr "Borrar entorno del ciclo de vida"
2077
2074
  msgid "Delete Manifest"
2078
2075
  msgstr "Borrar manifiesto"
2079
2076
 
2080
- msgid "Delete Package Group"
2081
- msgstr "Eliminar grupo de paquete"
2082
-
2083
2077
  msgid "Delete Product"
2084
2078
  msgstr "Borrar producto"
2085
2079
 
@@ -2095,9 +2089,6 @@ msgstr "Borrar una vista de contenido"
2095
2089
  msgid "Delete a filter rule"
2096
2090
  msgstr "Borrar una regla de filtro"
2097
2091
 
2098
- msgid "Delete a package group"
2099
- msgstr "Eliminar grupo de paquete"
2100
-
2101
2092
  msgid "Delete all subscriptions attached to activation keys."
2102
2093
  msgstr "Borre todas las suscripciones adjuntas a las llaves de activación."
2103
2094
 
@@ -2461,6 +2452,12 @@ msgstr "Instalar erratas"
2461
2452
  msgid "Errata Install scheduled by %s"
2462
2453
  msgstr "Errata Instalación programada por %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 errata de la errata (RHSA-2012:108)"
2466
2463
 
@@ -2563,9 +2560,7 @@ msgstr ""
2563
2560
  msgid "Export as CSV"
2564
2561
  msgstr "Exportar como 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
2565
 
2571
2566
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
@@ -2589,12 +2584,6 @@ msgstr "Error al borrar %{host}: %{errors}"
2589
2584
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2590
2585
  msgstr ""
2591
2586
 
2592
- msgid "Failed to download %s package."
2593
- msgid_plural "Failed to download %s packages."
2594
- msgstr[0] "No se ha podido descargar el paquete %s."
2595
- msgstr[1] "Error al descargar los paquetes %s."
2596
- msgstr[2] "Error al descargar los paquetes %s."
2597
-
2598
2587
  msgid "Failed to find %{content} with id '%{id}'."
2599
2588
  msgstr "Error al encontrar %{content} con id '%{id}'."
2600
2589
 
@@ -2715,7 +2704,10 @@ msgstr "Filtros"
2715
2704
  msgid "Filters deleted"
2716
2705
  msgstr ""
2717
2706
 
2718
- msgid "Filters will appear here when the filter is created."
2707
+ msgid "Filters were applied to this version."
2708
+ msgstr ""
2709
+
2710
+ msgid "Filters will be applied to this content view version."
2719
2711
  msgstr ""
2720
2712
 
2721
2713
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
@@ -2730,9 +2722,6 @@ msgstr "Tiempo de espera de la acción de finalizado"
2730
2722
  msgid "Finished"
2731
2723
  msgstr "Finalizado"
2732
2724
 
2733
- msgid "For pages that support it, automatically perform search while typing in search input."
2734
- msgstr "Para las páginas que lo admiten, se realiza la búsqueda automáticamente mientras se escribe en el campo de búsqueda."
2735
-
2736
2725
  msgid "Force"
2737
2726
  msgstr ""
2738
2727
 
@@ -2746,6 +2735,9 @@ msgstr ""
2746
2735
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2747
2736
  msgstr "Forzar una sincronización y validar las sumas de comprobación de todo el contenido. Solo se usa con los repositorios yum."
2748
2737
 
2738
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2739
+ msgstr ""
2740
+
2749
2741
  msgid "Force delete the repository by removing it from all content view versions"
2750
2742
  msgstr ""
2751
2743
 
@@ -2788,6 +2780,9 @@ msgstr ""
2788
2780
  msgid "Generate and Download"
2789
2781
  msgstr "Generar y descargar"
2790
2782
 
2783
+ msgid "Generate errata status from directly-installable content"
2784
+ msgstr ""
2785
+
2791
2786
  msgid "Generate host applicability"
2792
2787
  msgstr "Generar la aplicabilidad del host"
2793
2788
 
@@ -2851,9 +2846,6 @@ msgstr "Ir a la página de tareas"
2851
2846
  msgid "Greater than"
2852
2847
  msgstr ""
2853
2848
 
2854
- msgid "Group %{id} already created."
2855
- msgstr "Grupo %{id} ya creado."
2856
-
2857
2849
  msgid "Guests of"
2858
2850
  msgstr "Huéspedes de"
2859
2851
 
@@ -2893,6 +2885,9 @@ msgstr "host"
2893
2885
  msgid "Host %s has not been registered with subscription-manager."
2894
2886
  msgstr "El host %s no se ha registrado en subscription-manager."
2895
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
+
2896
2891
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2897
2892
  msgstr "Al host %{name} no se le puede asignar la versión de lanzamiento %{release_version}."
2898
2893
 
@@ -3160,9 +3155,6 @@ msgstr ""
3160
3155
  msgid "Ids of smart proxies to associate"
3161
3156
  msgstr ""
3162
3157
 
3163
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3164
- msgstr "Si la autobúsqueda está activada, demora en milisegundos antes de ejecutar las búsquedas mientras se escribe."
3165
-
3166
3158
  msgid "If SSL should be verified for the upstream URL"
3167
3159
  msgstr ""
3168
3160
 
@@ -3190,14 +3182,17 @@ msgstr ""
3190
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/...'."
3191
3183
  msgstr ""
3192
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
+
3193
3188
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3194
3189
  msgstr "Si es verdadero, solo devuelve los conjuntos de repositorios que están asociados a una suscripción activa"
3195
3190
 
3196
3191
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3197
3192
  msgstr "Si es verdadero, solo devuelve los conjuntos de repositorios que han sido habilitados. Por defecto es falso"
3198
3193
 
3199
- msgid "If true, return custom repository sets along with redhat repos"
3200
- msgstr "Si es verdadero, devuelva los conjuntos de repositorios personalizados junto con los repositorios redhat"
3194
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3195
+ msgstr ""
3201
3196
 
3202
3197
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
3203
3198
  msgstr "Si es verdadero, cuando agregue las erratas o paquetes especificados, cualquier dependencia que se requiera, también se copiará. Por defecto es verdadero"
@@ -3229,6 +3224,9 @@ msgstr "Ignorar suscripciones no disponibles para el host especificado"
3229
3224
  msgid "Ignored hosts"
3230
3225
  msgstr ""
3231
3226
 
3227
+ msgid "Image"
3228
+ msgstr ""
3229
+
3232
3230
  msgid "Immediate"
3233
3231
  msgstr "Inmediato"
3234
3232
 
@@ -3442,10 +3440,7 @@ msgstr ""
3442
3440
  msgid "Installable"
3443
3441
  msgstr "Instalable"
3444
3442
 
3445
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3446
- msgstr ""
3447
-
3448
- msgid "Installable errata from content view"
3443
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3449
3444
  msgstr ""
3450
3445
 
3451
3446
  msgid "Installable updates"
@@ -3586,7 +3581,7 @@ msgstr "Publicado"
3586
3581
  msgid "Issued from"
3587
3582
  msgstr ""
3588
3583
 
3589
- msgid "Items will appear here when a filter rule is added."
3584
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3590
3585
  msgstr ""
3591
3586
 
3592
3587
  msgid "Job '${description}' completed"
@@ -3754,6 +3749,9 @@ msgstr ""
3754
3749
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3755
3750
  msgstr "Los entornos del ciclo de vida no se pueden modificar en el proxy inteligente predeterminado. El contenido de todos los entornos del ciclo de vida existirá en este proxy inteligente."
3756
3751
 
3752
+ msgid "Limit content to Red Hat / custom"
3753
+ msgstr ""
3754
+
3757
3755
  msgid "Limit content to enabled / disabled / overridden"
3758
3756
  msgstr ""
3759
3757
 
@@ -4171,21 +4169,24 @@ msgstr ""
4171
4169
  msgid "Multi-entitlement"
4172
4170
  msgstr "Multiderecho"
4173
4171
 
4174
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4175
- msgstr "Debe proporcionar al menos uno de los parámetros mandatory_package_names, optional_package_names, conditional_package_names, default_package_names"
4176
-
4177
4172
  msgid "N/A"
4178
4173
  msgstr "N/C"
4179
4174
 
4180
4175
  msgid "NA"
4181
4176
  msgstr "ND"
4182
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
+
4183
4181
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4184
4182
  msgstr ""
4185
4183
 
4186
4184
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4187
4185
  msgstr ""
4188
4186
 
4187
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4188
+ msgstr ""
4189
+
4189
4190
  msgid ""
4190
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"
4191
4192
  " %{repos}"
@@ -4261,12 +4262,6 @@ msgstr "Nunca sincronizado"
4261
4262
  msgid "New Errata"
4262
4263
  msgstr "Nuevas erratas"
4263
4264
 
4264
- msgid "New Files: %s"
4265
- msgstr "Archivos nuevos: %s"
4266
-
4267
- msgid "New blobs: %{count}."
4268
- msgstr "Nuevas manchas: %{count}."
4269
-
4270
4265
  msgid "New content view name"
4271
4266
  msgstr "Nuevo nombre de vista de contenido"
4272
4267
 
@@ -4279,15 +4274,15 @@ msgstr "Nuevo nombre no puede quedar en blanco"
4279
4274
  msgid "New name for the content view"
4280
4275
  msgstr "Nuevo nombre de la vista de contenido"
4281
4276
 
4282
- msgid "New packages: %{count} (%{size})."
4283
- msgstr "Nuevos paquetes: %{count} (%{size})."
4284
-
4285
4277
  msgid "New version is available: Version ${latestVersion}"
4286
4278
  msgstr ""
4287
4279
 
4288
4280
  msgid "Newly published"
4289
4281
  msgstr ""
4290
4282
 
4283
+ msgid "Newly published version will be the same as the previous version."
4284
+ msgstr ""
4285
+
4291
4286
  msgid "No"
4292
4287
  msgstr "No"
4293
4288
 
@@ -4339,6 +4334,12 @@ msgstr ""
4339
4334
  msgid "No artifacts to show"
4340
4335
  msgstr "No hay artefactos para mostrar"
4341
4336
 
4337
+ msgid "No available component content view updates"
4338
+ msgstr ""
4339
+
4340
+ msgid "No available repository or filter updates"
4341
+ msgstr ""
4342
+
4342
4343
  msgid "No content"
4343
4344
  msgstr ""
4344
4345
 
@@ -4363,7 +4364,10 @@ msgstr ""
4363
4364
  msgid "No content views available for the selected environment"
4364
4365
  msgstr ""
4365
4366
 
4366
- msgid "No content views belong to ${label}"
4367
+ msgid "No content views to add yet"
4368
+ msgstr ""
4369
+
4370
+ msgid "No content views yet"
4367
4371
  msgstr ""
4368
4372
 
4369
4373
  msgid "No content_view_version_ids provided"
@@ -4384,10 +4388,13 @@ msgstr ""
4384
4388
  msgid "No environments"
4385
4389
  msgstr ""
4386
4390
 
4387
- msgid "No errata available for this content view."
4391
+ msgid "No errata filter rules yet"
4388
4392
  msgstr ""
4389
4393
 
4390
- msgid "No errata available to add to this filter."
4394
+ msgid "No errata matching given search query"
4395
+ msgstr ""
4396
+
4397
+ msgid "No errata to add yet"
4391
4398
  msgstr ""
4392
4399
 
4393
4400
  msgid "No errors"
@@ -4399,6 +4406,12 @@ msgstr ""
4399
4406
  msgid "No file uploaded"
4400
4407
  msgstr "No se ha cargado ningún archivo"
4401
4408
 
4409
+ msgid "No filters yet"
4410
+ msgstr ""
4411
+
4412
+ msgid "No history yet"
4413
+ msgstr ""
4414
+
4402
4415
  msgid "No host collections"
4403
4416
  msgstr ""
4404
4417
 
@@ -4414,6 +4427,9 @@ msgstr ""
4414
4427
  msgid "No hosts have been specified."
4415
4428
  msgstr "No se han especificado hosts."
4416
4429
 
4430
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4431
+ msgstr ""
4432
+
4417
4433
  msgid "No hosts registered with subscription-manager found in selection."
4418
4434
  msgstr "No se encontraron hosts registrados con el gestor de suscripciones en la selección."
4419
4435
 
@@ -4483,20 +4499,23 @@ msgstr ""
4483
4499
  msgid "No matching repository sets found"
4484
4500
  msgstr ""
4485
4501
 
4486
- msgid "No matching rules found."
4487
- msgstr ""
4488
-
4489
4502
  msgid "No matching traces found"
4490
4503
  msgstr ""
4491
4504
 
4492
4505
  msgid "No matching version found"
4493
4506
  msgstr ""
4494
4507
 
4508
+ msgid "No module stream filter rules yet"
4509
+ msgstr ""
4510
+
4511
+ msgid "No module streams to add yet."
4512
+ msgstr ""
4513
+
4495
4514
  msgid "No new packages installed"
4496
4515
  msgstr "No hay paquetes nuevos instalados"
4497
4516
 
4498
- msgid "No new packages."
4499
- msgstr "No hay paquetes."
4517
+ msgid "No package groups yet"
4518
+ msgstr ""
4500
4519
 
4501
4520
  msgid "No packages"
4502
4521
  msgstr ""
@@ -4504,7 +4523,7 @@ msgstr ""
4504
4523
  msgid "No packages available to install"
4505
4524
  msgstr ""
4506
4525
 
4507
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4526
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4508
4527
  msgstr ""
4509
4528
 
4510
4529
  msgid "No packages removed"
@@ -4546,6 +4565,12 @@ msgstr "Productos que no se han sincronizado recientemente"
4546
4565
  msgid "No recurring logic tied to the sync plan."
4547
4566
  msgstr "No hay una lógica recurrente ligada al plan de sincronización."
4548
4567
 
4568
+ msgid "No repositories added yet"
4569
+ msgstr ""
4570
+
4571
+ msgid "No repositories available to add"
4572
+ msgstr ""
4573
+
4549
4574
  msgid "No repositories available."
4550
4575
  msgstr "No hay repositorios disponibles."
4551
4576
 
@@ -4564,7 +4589,7 @@ msgstr "No hay conjuntos de repositorios que coincidan con sus criterios de bús
4564
4589
  msgid "No repository sets to show."
4565
4590
  msgstr ""
4566
4591
 
4567
- msgid "No rules have been added to this filter."
4592
+ msgid "No rules yet"
4568
4593
  msgstr ""
4569
4594
 
4570
4595
  msgid "No services defined, is this class extended?"
@@ -4582,6 +4607,9 @@ msgstr "No se encontraron repositorios sincronizables para los productos y opcio
4582
4607
  msgid "No uploads param specified. An array of uploads to import is required."
4583
4608
  msgstr "No se especifican los parámetros de carga. Se requiere una matriz de cargas para importar."
4584
4609
 
4610
+ msgid "No versions yet"
4611
+ msgstr ""
4612
+
4585
4613
  msgid "Non-security errata applicable"
4586
4614
  msgstr "Errata que no corresponde a seguridad aplicable"
4587
4615
 
@@ -4687,9 +4715,6 @@ msgstr "No se pudo encontrar uno o más hosts"
4687
4715
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4688
4716
  msgstr "Uno o más ids (%{ids}) no fueron encontrados para %{assoc}. Es posible que no tenga permisos para verlos."
4689
4717
 
4690
- msgid "One or more packages failed to sync properly."
4691
- msgstr "Uno o más paquetes no se pudo sincronizar adecuadamente."
4692
-
4693
4718
  msgid "One or more processes require restarting"
4694
4719
  msgstr "Uno o más procesos deben reiniciarse."
4695
4720
 
@@ -4972,9 +4997,6 @@ msgstr ""
4972
4997
  msgid "Paused"
4973
4998
  msgstr "Pausado"
4974
4999
 
4975
- msgid "Pending"
4976
- msgstr "Pendiente"
4977
-
4978
5000
  msgid "Perform a module stream action via Katello interface"
4979
5001
  msgstr "Realizar una acción de corriente de módulo a través de la interfaz de Katello"
4980
5002
 
@@ -5008,10 +5030,10 @@ msgstr "Físico"
5008
5030
  msgid "Plan numeric identifier"
5009
5031
  msgstr "Identificador numérico del plan"
5010
5032
 
5011
- msgid "Please add some content views."
5033
+ msgid "Please add some repositories."
5012
5034
  msgstr ""
5013
5035
 
5014
- msgid "Please add some repositories."
5036
+ msgid "Please create some content views."
5015
5037
  msgstr ""
5016
5038
 
5017
5039
  msgid "Please enter a positive number above zero"
@@ -5089,12 +5111,6 @@ msgstr ""
5089
5111
  msgid "Problem searching traces"
5090
5112
  msgstr ""
5091
5113
 
5092
- msgid "Processing metadata"
5093
- msgstr "Procesando metadatos"
5094
-
5095
- msgid "Processing metadata."
5096
- msgstr "Procesamiento de metadatos."
5097
-
5098
5114
  msgid "Product"
5099
5115
  msgstr "Producto"
5100
5116
 
@@ -5107,9 +5123,6 @@ msgstr "Crear producto"
5107
5123
  msgid "Product ID"
5108
5124
  msgstr "ID de producto"
5109
5125
 
5110
- msgid "Product Name"
5111
- msgstr "Nombre del producto"
5112
-
5113
5126
  msgid "Product and Repositories"
5114
5127
  msgstr "Producto y repositorios"
5115
5128
 
@@ -5399,6 +5412,9 @@ msgstr ""
5399
5412
  msgid "Recommended Repositories"
5400
5413
  msgstr "Repositorios recomendados"
5401
5414
 
5415
+ msgid "Red Hat"
5416
+ msgstr ""
5417
+
5402
5418
  msgid "Red Hat CDN"
5403
5419
  msgstr ""
5404
5420
 
@@ -5654,6 +5670,9 @@ msgstr ""
5654
5670
  msgid "Repo Type"
5655
5671
  msgstr "Tipo de repo"
5656
5672
 
5673
+ msgid "Report"
5674
+ msgstr ""
5675
+
5657
5676
  msgid "Repositories"
5658
5677
  msgstr "Repositorios"
5659
5678
 
@@ -5696,9 +5715,6 @@ msgstr "Identificador de repositorio"
5696
5715
  msgid "Repository label '%s' is not associated with content view."
5697
5716
  msgstr "La etiqueta de repositorio '%s' no está asociada a la vista de contenido."
5698
5717
 
5699
- msgid "Repository metadata publish"
5700
- msgstr "Publicación de repositorios de metadatos"
5701
-
5702
5718
  msgid "Repository not found"
5703
5719
  msgstr "No se encontraron repositorios"
5704
5720
 
@@ -5735,6 +5751,12 @@ msgstr ""
5735
5751
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5736
5752
  msgstr ""
5737
5753
 
5754
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5755
+ msgstr ""
5756
+
5757
+ msgid "Repository type"
5758
+ msgstr ""
5759
+
5738
5760
  msgid "Republish Repositories of %{name} %{version}"
5739
5761
  msgstr "Volver a publicar Repositorios de %{name} %{version}"
5740
5762
 
@@ -6032,6 +6054,9 @@ msgstr ""
6032
6054
  msgid "Select a client key"
6033
6055
  msgstr ""
6034
6056
 
6057
+ msgid "Select a content source first"
6058
+ msgstr ""
6059
+
6035
6060
  msgid "Select a content view"
6036
6061
  msgstr ""
6037
6062
 
@@ -6047,6 +6072,9 @@ msgstr ""
6047
6072
  msgid "Select a provider to install katello-host-tools-tracer"
6048
6073
  msgstr ""
6049
6074
 
6075
+ msgid "Select a source"
6076
+ msgstr ""
6077
+
6050
6078
  msgid "Select add-ons"
6051
6079
  msgstr ""
6052
6080
 
@@ -6062,7 +6090,7 @@ msgstr "Seleccionar una organización"
6062
6090
  msgid "Select an environment"
6063
6091
  msgstr ""
6064
6092
 
6065
- msgid "Select an environment above"
6093
+ msgid "Select an environment first"
6066
6094
  msgstr ""
6067
6095
 
6068
6096
  msgid "Select an option"
@@ -6227,6 +6255,9 @@ msgstr ""
6227
6255
  msgid "Show all"
6228
6256
  msgstr ""
6229
6257
 
6258
+ msgid "Show all repository sets"
6259
+ msgstr ""
6260
+
6230
6261
  msgid "Show an activation key"
6231
6262
  msgstr "Mostrar una llave de activación"
6232
6263
 
@@ -6248,6 +6279,9 @@ msgstr "Mostrar información de regla de filtro"
6248
6279
  msgid "Show full description"
6249
6280
  msgstr ""
6250
6281
 
6282
+ msgid "Show hosts associated to an activation key"
6283
+ msgstr ""
6284
+
6251
6285
  msgid "Show organization"
6252
6286
  msgstr "Mostrar organización"
6253
6287
 
@@ -6257,12 +6291,18 @@ msgstr "Mostrar versiones de lanzamiento disponibles para una llave de activaci
6257
6291
  msgid "Show releases available for the content host"
6258
6292
  msgstr "Mostrar versiones disponibles para el host de contenido"
6259
6293
 
6294
+ msgid "Show repositories"
6295
+ msgstr ""
6296
+
6260
6297
  msgid "Show repositories enabled on the host that are known to Katello"
6261
6298
  msgstr ""
6262
6299
 
6263
6300
  msgid "Show the available repository types"
6264
6301
  msgstr "Mostrar los tipos de repositorio disponibles"
6265
6302
 
6303
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6304
+ msgstr ""
6305
+
6266
6306
  msgid "Shows status of Katello system and it's subcomponents"
6267
6307
  msgstr "Muestra el estado del sistema de Katello y sus subcomponentes"
6268
6308
 
@@ -6320,6 +6360,12 @@ msgstr "Resolver las dependencias RPM por defecto en la vista de contenido de pu
6320
6360
  msgid "Solve dependencies"
6321
6361
  msgstr "Resolver dependencias"
6322
6362
 
6363
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6364
+ msgstr ""
6365
+
6366
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6367
+ msgstr ""
6368
+
6323
6369
  msgid "Some hosts are not registered as content hosts and will be ignored."
6324
6370
  msgstr ""
6325
6371
 
@@ -6764,9 +6810,6 @@ msgstr "Sincronizar"
6764
6810
  msgid "Synchronize Now"
6765
6811
  msgstr "Sincronizar ahora"
6766
6812
 
6767
- msgid "Synchronize capsule content"
6768
- msgstr "Sincronizar contenido de Capsule"
6769
-
6770
6813
  msgid "Synchronize repository"
6771
6814
  msgstr "Sincronizar repositorio"
6772
6815
 
@@ -6800,7 +6843,7 @@ msgstr ""
6800
6843
  msgid "System purpose attributes updated"
6801
6844
  msgstr ""
6802
6845
 
6803
- 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."
6846
+ 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."
6804
6847
  msgstr ""
6805
6848
 
6806
6849
  msgid "Tag name"
@@ -6878,9 +6921,6 @@ msgstr "La fecha de inicio de la regla de filtro de errata tiene un formato o ti
6878
6921
  msgid "The erratum type must be an array. Invalid value provided"
6879
6922
  msgstr "El tipo de errata debe ser una matriz. Se ha proporcionado un valor no válido"
6880
6923
 
6881
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
6882
- msgstr ""
6883
-
6884
6924
  msgid "The field to sort the data by. Defaults to the created date."
6885
6925
  msgstr "El campo para ordenar los datos. Se ajusta por defecto a la fecha de creación."
6886
6926
 
@@ -7188,6 +7228,9 @@ msgstr ""
7188
7228
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7189
7229
  msgstr ""
7190
7230
 
7231
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7232
+ msgstr ""
7233
+
7191
7234
  msgid "Timeout when refreshing a manifest (in seconds)"
7192
7235
  msgstr "Tiempo de espera al actualizar un manifiesto (en segundos)"
7193
7236
 
@@ -7197,9 +7240,21 @@ msgstr "Sello de tiempo"
7197
7240
  msgid "Title"
7198
7241
  msgstr "Título"
7199
7242
 
7243
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7244
+ msgstr ""
7245
+
7246
+ msgid "To enable them, add the environment to the host's content source, or "
7247
+ msgstr ""
7248
+
7249
+ msgid "To get started, add a filter rule to this filter"
7250
+ msgstr ""
7251
+
7200
7252
  msgid "To get started, add this host to a host collection."
7201
7253
  msgstr ""
7202
7254
 
7255
+ 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."
7256
+ msgstr ""
7257
+
7203
7258
  msgid "To update the selected host configuration, update hosts manually in the next section."
7204
7259
  msgstr ""
7205
7260
 
@@ -7386,9 +7441,6 @@ msgstr ""
7386
7441
  msgid "Unapplied Errata"
7387
7442
  msgstr "Erratas no aplicadas"
7388
7443
 
7389
- msgid "Unassociate units in repository"
7390
- msgstr "Desvincular las unidades en el repositorio"
7391
-
7392
7444
  msgid "Unattach a subscription"
7393
7445
  msgstr "Desvincular una suscripción"
7394
7446
 
@@ -7575,6 +7627,9 @@ msgstr "Actualizar la configuración de proxy HTTP en los repositorios de uno o
7575
7627
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7576
7628
  msgstr ""
7577
7629
 
7630
+ msgid "Update the host immediately via remote execution"
7631
+ msgstr ""
7632
+
7578
7633
  msgid "Update the information about enabled repositories"
7579
7634
  msgstr "Actualizar la información sobre los repositorios habilitados"
7580
7635
 
@@ -7602,6 +7657,12 @@ msgstr "Actualiza un producto"
7602
7657
  msgid "Updates all packages on the host(s)"
7603
7658
  msgstr "Actualizar todos los paquetes de los hosts"
7604
7659
 
7660
+ msgid "Updates available: Component content view versions have been updated."
7661
+ msgstr ""
7662
+
7663
+ msgid "Updates available: Repositories and/or filters have changed."
7664
+ msgstr ""
7665
+
7605
7666
  msgid "Updating Package..."
7606
7667
  msgstr "Actualizando el paquete..."
7607
7668
 
@@ -7821,6 +7882,9 @@ msgstr ""
7821
7882
  msgid "View %{view} has not been promoted to %{env}"
7822
7883
  msgstr "Ver %{view} no ha sido ascendido a %{env}"
7823
7884
 
7885
+ msgid "View Filters"
7886
+ msgstr ""
7887
+
7824
7888
  msgid "View Subscription Usage"
7825
7889
  msgstr ""
7826
7890
 
@@ -7833,6 +7897,9 @@ msgstr ""
7833
7897
  msgid "View by"
7834
7898
  msgstr ""
7835
7899
 
7900
+ msgid "View documentation"
7901
+ msgstr ""
7902
+
7836
7903
  msgid "View matching content"
7837
7904
  msgstr ""
7838
7905
 
@@ -7878,6 +7945,9 @@ msgstr "Cuando se configura en 'Verdadero', se mostrarán los tipos de repositor
7878
7945
  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."
7879
7946
  msgstr "Cuando borre el registro de un host a través del gestor de suscripciones, también debe eliminar el registro del host. También debe eliminar los recursos administrados vinculados al host como las máquinas virtuales y los registros de DNS."
7880
7947
 
7948
+ msgid "Whether Simple Content Access should be enabled for the organization."
7949
+ msgstr ""
7950
+
7881
7951
  msgid "Whether or not the host collection may have unlimited hosts"
7882
7952
  msgstr "Independientemente de si la colección de hosts tiene hosts ilimitados"
7883
7953
 
@@ -7890,6 +7960,9 @@ msgstr "Si se debe verificar el estado de los servicios de segundo plano, como P
7890
7960
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7891
7961
  msgstr "Si se regenera o no el repositorio en el disco. Por defecto: verdadero"
7892
7962
 
7963
+ msgid "Whether or not to return filters applied to the content view version"
7964
+ msgstr ""
7965
+
7893
7966
  msgid "Whether or not to show all results"
7894
7967
  msgstr "Si se muestran o no todos los resultados"
7895
7968
 
@@ -7935,31 +8008,19 @@ msgstr "No puede establecer un parent_id de organización. Esta funcionalidad es
7935
8008
  msgid "You currently don't have any ${selectedContentType}."
7936
8009
  msgstr ""
7937
8010
 
7938
- msgid "You currently don't have any Content views."
7939
- msgstr ""
7940
-
7941
8011
  msgid "You currently don't have any alternate content sources."
7942
8012
  msgstr ""
7943
8013
 
7944
- msgid "You currently don't have any filters for this content view."
7945
- msgstr ""
7946
-
7947
- msgid "You currently don't have any history for this content view."
8014
+ msgid "You currently don't have any related content views."
7948
8015
  msgstr ""
7949
8016
 
7950
8017
  msgid "You currently don't have any repositories associated with this content."
7951
8018
  msgstr ""
7952
8019
 
7953
- msgid "You currently don't have any repositories to add to this content view."
7954
- msgstr ""
7955
-
7956
8020
  msgid "You currently don't have any repositories to add to this filter."
7957
8021
  msgstr ""
7958
8022
 
7959
- msgid "You currently don't have any versions for this content view."
7960
- msgstr ""
7961
-
7962
- msgid "You currently don\\'t have any related content views."
8023
+ msgid "You currently have no content views to display"
7963
8024
  msgstr ""
7964
8025
 
7965
8026
  msgid "You do not have permissions to delete %s"
@@ -8016,9 +8077,6 @@ msgstr ""
8016
8077
  msgid "Yum"
8017
8078
  msgstr ""
8018
8079
 
8019
- msgid "Yum Metadata: %s"
8020
- msgstr "Metadatos Yum: %s"
8021
-
8022
8080
  msgid "a content unit"
8023
8081
  msgstr ""
8024
8082
 
@@ -8181,6 +8239,9 @@ msgstr "no puede contener filtros cuyos repositorios no pertenezcan a esta vista
8181
8239
  msgid "cannot contain more than %s characters"
8182
8240
  msgstr "no puede contener más de %s caracteres"
8183
8241
 
8242
+ msgid "change the host's content source."
8243
+ msgstr ""
8244
+
8184
8245
  msgid "checking %s task status"
8185
8246
  msgstr ""
8186
8247
 
@@ -8196,9 +8257,6 @@ msgstr "identificador de vista de contenido compuesta"
8196
8257
  msgid "composite content view numeric identifier"
8197
8258
  msgstr "identificador numérico de la vista de contenido compuesta"
8198
8259
 
8199
- msgid "conditional package names to include in the package group"
8200
- msgstr "nombres de paquetes condicionales a incluir en el grupo de paquetes"
8201
-
8202
8260
  msgid "content release version"
8203
8261
  msgstr "versión de lanzamiento de contenido"
8204
8262
 
@@ -8253,6 +8311,9 @@ msgstr "identificadores de versión de vista de contenido para borrar"
8253
8311
  msgid "content view versions to compare"
8254
8312
  msgstr "Versiones de vista de contenido a comparar"
8255
8313
 
8314
+ msgid "create a custom product"
8315
+ msgstr ""
8316
+
8256
8317
  msgid "create a filter for a content view"
8257
8318
  msgstr "crear un filtro para una vista de contenido"
8258
8319
 
@@ -8262,9 +8323,6 @@ msgstr ""
8262
8323
  msgid "deb_ids is not an array"
8263
8324
  msgstr "deb_ids no es una matriz"
8264
8325
 
8265
- msgid "default package names to include in the package group"
8266
- msgstr "nombres de paquetes por defecto a incluir en el grupo de paquetes"
8267
-
8268
8326
  msgid "delete a filter"
8269
8327
  msgstr "Borrar un filtro"
8270
8328
 
@@ -8496,9 +8554,6 @@ msgstr "lista de ID de repositorio"
8496
8554
  msgid "list of rpm filename strings to include in published version"
8497
8555
  msgstr "lista de cadenas de nombres de archivos rpm para incluir en la versión publicada"
8498
8556
 
8499
- msgid "mandatory package names to include in the package group"
8500
- msgstr "nombres de los paquetes obligatorios a incluir en el grupo de paquetes"
8501
-
8502
8557
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8503
8558
  msgstr "max_hosts debe recibir un valor si esta colección de hosts no es ilimitada."
8504
8559
 
@@ -8526,6 +8581,9 @@ msgstr "debe ser uno de los siguientes: %s"
8526
8581
  msgid "must be one of: %s"
8527
8582
  msgstr ""
8528
8583
 
8584
+ msgid "must be true or false"
8585
+ msgstr ""
8586
+
8529
8587
  msgid "must be unique within one organization"
8530
8588
  msgstr "Debe ser único dentro de una organización"
8531
8589
 
@@ -8553,9 +8611,6 @@ msgstr "No debe contener espacios iniciales o en blanco"
8553
8611
  msgid "name"
8554
8612
  msgstr "name"
8555
8613
 
8556
- msgid "name not defined."
8557
- msgstr "nombre no definido"
8558
-
8559
8614
  msgid "name of organization"
8560
8615
  msgstr "nombre de la organización"
8561
8616
 
@@ -8601,21 +8656,12 @@ msgstr "del entorno debe ser único dentro de una organización"
8601
8656
  msgid "only show the repositories readable by this user with this username"
8602
8657
  msgstr ""
8603
8658
 
8604
- msgid "optional package names to include in the package group"
8605
- msgstr "nombres de paquetes opcionales a incluir en el grupo de paquetes"
8606
-
8607
8659
  msgid "organization ID"
8608
8660
  msgstr "ID de organización"
8609
8661
 
8610
8662
  msgid "organization identifier"
8611
8663
  msgstr "identificador de la organización"
8612
8664
 
8613
- msgid "package group description. Defaults to params[:name]"
8614
- msgstr "descripción de grupo de paquetes. Por defecto, los parámetros son [:name]"
8615
-
8616
- msgid "package group name"
8617
- msgstr "nombre de grupo de paquetes"
8618
-
8619
8665
  msgid "package group: uuid"
8620
8666
  msgstr "grupo de paquetes: uuid"
8621
8667
 
@@ -8694,12 +8740,6 @@ msgstr "identificador de repositorio"
8694
8740
  msgid "repository source url"
8695
8741
  msgstr "URL de fuente de repositorio"
8696
8742
 
8697
- msgid "repository_id"
8698
- msgstr "repositorio_id"
8699
-
8700
- msgid "repository_id not defined."
8701
- msgstr "repository_id no está definido."
8702
-
8703
8743
  msgid "root-node of collection contained in responses (default: 'results')"
8704
8744
  msgstr "nodo raíz de la recopilación que se encuentra en las respuestas (predeterminado: 'results')"
8705
8745
 
@@ -8721,9 +8761,6 @@ msgstr ""
8721
8761
  msgid "service level"
8722
8762
  msgstr "nivel de servicio"
8723
8763
 
8724
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8725
- msgstr "establecer la etiqueta \"user_visible\" en el grupo de paquetes. Por defecto, es verdadero"
8726
-
8727
8764
  msgid "set true if you want to see only library environments"
8728
8765
  msgstr "establecer a verdadero, si solo desea ver entornos de biblioteca"
8729
8766
 
@@ -8781,9 +8818,6 @@ msgstr "verdadero si se desea la última versión de la vista de contenido de lo
8781
8818
  msgid "true if this repository can be published via HTTP"
8782
8819
  msgstr "verdadero, si este repositorio se puede publicar mediante HTTP"
8783
8820
 
8784
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8785
- msgstr ""
8786
-
8787
8821
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8788
8822
  msgstr ""
8789
8823
 
@@ -8829,15 +8863,9 @@ msgstr ""
8829
8863
  msgid "waiting for %s to finish the task"
8830
8864
  msgstr ""
8831
8865
 
8832
- msgid "waiting for Pulp to finish the task"
8833
- msgstr "esperando a que Pulp finalice la tarea"
8834
-
8835
8866
  msgid "waiting for Pulp to finish the task %s"
8836
8867
  msgstr ""
8837
8868
 
8838
- msgid "waiting for Pulp to start the task"
8839
- msgstr "esperando a que Pulp inicie la tarea"
8840
-
8841
8869
  msgid "waiting for Pulp to start the task %s"
8842
8870
  msgstr ""
8843
8871
 
@@ -8859,6 +8887,9 @@ msgstr "sí"
8859
8887
  msgid "{0} items selected"
8860
8888
  msgstr "{0} elementos seleccionados"
8861
8889
 
8890
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
8891
+ msgstr ""
8892
+
8862
8893
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8863
8894
  msgstr ""
8864
8895