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/cs/katello.po CHANGED
@@ -146,9 +146,6 @@ msgstr ""
146
146
  msgid "%s is unreachable. %s"
147
147
  msgstr ""
148
148
 
149
- msgid "%s must be an array."
150
- msgstr ""
151
-
152
149
  msgid "%{errata} (%{total} other errata)"
153
150
  msgstr ""
154
151
 
@@ -404,15 +401,12 @@ msgstr ""
404
401
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
405
402
  msgstr ""
406
403
 
407
- msgid "A Pool and its Subscription cannot belong to different organizations"
404
+ msgid "A Pool and its Subscription cannot belong to different organizations."
408
405
  msgstr ""
409
406
 
410
407
  msgid "A backend service [ %s ] is unreachable"
411
408
  msgstr ""
412
409
 
413
- msgid "A content view can be added by using the \"Create content view\" button below."
414
- msgstr ""
415
-
416
410
  #, fuzzy
417
411
  msgid "A content_type must be provided."
418
412
  msgstr "Musí existovat alespoň jedna organizace."
@@ -480,9 +474,6 @@ msgstr ""
480
474
  msgid "Action unauthorized to be performed in this organization."
481
475
  msgstr ""
482
476
 
483
- msgid "Action unauthorized to be performed on selected hosts."
484
- msgstr ""
485
-
486
477
  msgid "Action with sub plans"
487
478
  msgstr ""
488
479
 
@@ -536,6 +527,9 @@ msgstr ""
536
527
  msgid "Add Subscriptions"
537
528
  msgstr ""
538
529
 
530
+ msgid "Add Subscriptions using the Add Subscriptions button."
531
+ msgstr ""
532
+
539
533
  msgid "Add a subscription to a host"
540
534
  msgstr ""
541
535
 
@@ -545,6 +539,9 @@ msgstr ""
545
539
  msgid "Add components to the content view"
546
540
  msgstr ""
547
541
 
542
+ msgid "Add content"
543
+ msgstr ""
544
+
548
545
  msgid "Add content view"
549
546
  msgstr ""
550
547
 
@@ -587,12 +584,18 @@ msgstr ""
587
584
  msgid "Add repositories"
588
585
  msgstr ""
589
586
 
587
+ msgid "Add repositories with package groups to content view to select them here."
588
+ msgstr ""
589
+
590
590
  msgid "Add rule"
591
591
  msgstr ""
592
592
 
593
593
  msgid "Add source"
594
594
  msgstr ""
595
595
 
596
+ msgid "Add subscriptions"
597
+ msgstr ""
598
+
596
599
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
597
600
  msgstr ""
598
601
 
@@ -602,12 +605,6 @@ msgstr ""
602
605
  msgid "Add to a host collection"
603
606
  msgstr ""
604
607
 
605
- msgid "Add to this filter using the 'Add Deb rule' button."
606
- msgstr ""
607
-
608
- msgid "Add to this filter using the 'Add filter rule' button."
609
- msgstr ""
610
-
611
608
  msgid "Add-ons"
612
609
  msgstr ""
613
610
 
@@ -731,15 +728,12 @@ msgstr ""
731
728
  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."
732
729
  msgstr ""
733
730
 
734
- msgid "An alternate content source can be added by using the \"Add source\" button below."
731
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
735
732
  msgstr ""
736
733
 
737
734
  msgid "An environment is missing a prior"
738
735
  msgstr ""
739
736
 
740
- msgid "An error occurred during content removal. Could not find repository with id: %s"
741
- msgstr ""
742
-
743
737
  msgid ""
744
738
  "An error occurred during the sync \n"
745
739
  "%{error_message}"
@@ -938,12 +932,6 @@ msgstr ""
938
932
  msgid "Autopublish"
939
933
  msgstr ""
940
934
 
941
- msgid "Autosearch"
942
- msgstr ""
943
-
944
- msgid "Autosearch delay"
945
- msgstr ""
946
-
947
935
  msgid "Available"
948
936
  msgstr ""
949
937
 
@@ -1080,24 +1068,12 @@ msgstr ""
1080
1068
  msgid "Calculate Applicable Errata based on a particular Environment"
1081
1069
  msgstr ""
1082
1070
 
1083
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1084
- msgstr ""
1085
-
1086
1071
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1087
1072
  msgstr ""
1088
1073
 
1089
- msgid "Can not add product %s because it is disabled."
1090
- msgstr ""
1091
-
1092
- msgid "Can only destroy on Yum Repositories."
1093
- msgstr ""
1094
-
1095
1074
  msgid "Can only remove content from within the Default Content View"
1096
1075
  msgstr ""
1097
1076
 
1098
- msgid "Can only upload to Yum Repositories."
1099
- msgstr ""
1100
-
1101
1077
  #, fuzzy
1102
1078
  msgid "Can't update the '%s' environment"
1103
1079
  msgstr "prostředí"
@@ -1160,9 +1136,15 @@ msgstr ""
1160
1136
  msgid "Cannot add generated content view versions to composite content view"
1161
1137
  msgstr ""
1162
1138
 
1139
+ msgid "Cannot add product %s because it is disabled."
1140
+ msgstr ""
1141
+
1163
1142
  msgid "Cannot add repositories to a composite content view"
1164
1143
  msgstr ""
1165
1144
 
1145
+ msgid "Cannot associate a Red Hat provider with a custom product"
1146
+ msgstr ""
1147
+
1166
1148
  msgid "Cannot associate a component to a non composite content view"
1167
1149
  msgstr ""
1168
1150
 
@@ -1214,7 +1196,10 @@ msgstr ""
1214
1196
  msgid "Cannot import a custom subscription from a redhat product."
1215
1197
  msgstr ""
1216
1198
 
1217
- msgid "Cannot pass content units without content unit type"
1199
+ 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."
1200
+ msgstr ""
1201
+
1202
+ 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."
1218
1203
  msgstr ""
1219
1204
 
1220
1205
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
@@ -1286,6 +1271,9 @@ msgstr ""
1286
1271
  msgid "Change host content source"
1287
1272
  msgstr ""
1288
1273
 
1274
+ msgid "Check audited changes and proceed only if content or filters have changed since last publish"
1275
+ msgstr ""
1276
+
1289
1277
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1290
1278
  msgstr ""
1291
1279
 
@@ -1328,6 +1316,9 @@ msgstr ""
1328
1316
  msgid "Click here to go to the tasks page for the task."
1329
1317
  msgstr ""
1330
1318
 
1319
+ msgid "Click to see repositories available to add."
1320
+ msgstr ""
1321
+
1331
1322
  msgid "Click {update} below to save changes."
1332
1323
  msgstr ""
1333
1324
 
@@ -1614,6 +1605,9 @@ msgstr ""
1614
1605
  msgid "Content view details"
1615
1606
  msgstr ""
1616
1607
 
1608
+ 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."
1609
+ msgstr ""
1610
+
1617
1611
  msgid "Content view environments and activation key must all belong to the same organization"
1618
1612
  msgstr ""
1619
1613
 
@@ -1842,9 +1836,6 @@ msgstr ""
1842
1836
  msgid "Create Import History"
1843
1837
  msgstr ""
1844
1838
 
1845
- msgid "Create Package Group"
1846
- msgstr ""
1847
-
1848
1839
  msgid "Create Repositories"
1849
1840
  msgstr ""
1850
1841
 
@@ -1870,9 +1861,6 @@ msgstr ""
1870
1861
  msgid "Create a host collection"
1871
1862
  msgstr ""
1872
1863
 
1873
- msgid "Create a package group"
1874
- msgstr ""
1875
-
1876
1864
  #, fuzzy
1877
1865
  msgid "Create a product"
1878
1866
  msgstr "Smazat poskytovatele"
@@ -1909,6 +1897,9 @@ msgstr ""
1909
1897
  msgid "Create host collection"
1910
1898
  msgstr ""
1911
1899
 
1900
+ msgid "Create new activation key"
1901
+ msgstr ""
1902
+
1912
1903
  #, fuzzy
1913
1904
  msgid "Create organization"
1914
1905
  msgstr "Vybrat organizaci"
@@ -2044,6 +2035,12 @@ msgstr ""
2044
2035
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
2045
2036
  msgstr ""
2046
2037
 
2038
+ msgid "Default export format"
2039
+ msgstr ""
2040
+
2041
+ msgid "Default export format for content-exports(either 'syncable' or 'importable')"
2042
+ msgstr ""
2043
+
2047
2044
  msgid "Default finish template for new Operating Systems created from synced content"
2048
2045
  msgstr ""
2049
2046
 
@@ -2123,9 +2120,6 @@ msgstr "prostředí"
2123
2120
  msgid "Delete Manifest"
2124
2121
  msgstr "Smazat role"
2125
2122
 
2126
- msgid "Delete Package Group"
2127
- msgstr ""
2128
-
2129
2123
  #, fuzzy
2130
2124
  msgid "Delete Product"
2131
2125
  msgstr "Smazán poskytovatel [%s]"
@@ -2144,9 +2138,6 @@ msgstr "Vyhledat obsah"
2144
2138
  msgid "Delete a filter rule"
2145
2139
  msgstr "Vyberat architekturu"
2146
2140
 
2147
- msgid "Delete a package group"
2148
- msgstr ""
2149
-
2150
2141
  msgid "Delete all subscriptions attached to activation keys."
2151
2142
  msgstr ""
2152
2143
 
@@ -2519,6 +2510,12 @@ msgstr "Instalační balíčky"
2519
2510
  msgid "Errata Install scheduled by %s"
2520
2511
  msgstr ""
2521
2512
 
2513
+ msgid "Errata and package information will be updated at the next host check-in or package action."
2514
+ msgstr ""
2515
+
2516
+ msgid "Errata and package information will be updated immediately."
2517
+ msgstr ""
2518
+
2522
2519
  msgid "Errata id of the erratum (RHSA-2012:108)"
2523
2520
  msgstr ""
2524
2521
 
@@ -2623,9 +2620,7 @@ msgstr ""
2623
2620
  msgid "Export as CSV"
2624
2621
  msgstr ""
2625
2622
 
2626
- msgid ""
2627
- "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"
2628
- " Defaults to importable."
2623
+ 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."
2629
2624
  msgstr ""
2630
2625
 
2631
2626
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
@@ -2650,11 +2645,6 @@ msgstr ""
2650
2645
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2651
2646
  msgstr ""
2652
2647
 
2653
- msgid "Failed to download %s package."
2654
- msgid_plural "Failed to download %s packages."
2655
- msgstr[0] ""
2656
- msgstr[1] ""
2657
-
2658
2648
  msgid "Failed to find %{content} with id '%{id}'."
2659
2649
  msgstr ""
2660
2650
 
@@ -2775,7 +2765,10 @@ msgstr ""
2775
2765
  msgid "Filters deleted"
2776
2766
  msgstr ""
2777
2767
 
2778
- msgid "Filters will appear here when the filter is created."
2768
+ msgid "Filters were applied to this version."
2769
+ msgstr ""
2770
+
2771
+ msgid "Filters will be applied to this content view version."
2779
2772
  msgstr ""
2780
2773
 
2781
2774
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
@@ -2790,9 +2783,6 @@ msgstr ""
2790
2783
  msgid "Finished"
2791
2784
  msgstr ""
2792
2785
 
2793
- msgid "For pages that support it, automatically perform search while typing in search input."
2794
- msgstr ""
2795
-
2796
2786
  msgid "Force"
2797
2787
  msgstr ""
2798
2788
 
@@ -2804,6 +2794,9 @@ msgstr ""
2804
2794
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2805
2795
  msgstr ""
2806
2796
 
2797
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2798
+ msgstr ""
2799
+
2807
2800
  msgid "Force delete the repository by removing it from all content view versions"
2808
2801
  msgstr ""
2809
2802
 
@@ -2846,6 +2839,9 @@ msgstr ""
2846
2839
  msgid "Generate and Download"
2847
2840
  msgstr ""
2848
2841
 
2842
+ msgid "Generate errata status from directly-installable content"
2843
+ msgstr ""
2844
+
2849
2845
  msgid "Generate host applicability"
2850
2846
  msgstr ""
2851
2847
 
@@ -2909,9 +2905,6 @@ msgstr ""
2909
2905
  msgid "Greater than"
2910
2906
  msgstr ""
2911
2907
 
2912
- msgid "Group %{id} already created."
2913
- msgstr ""
2914
-
2915
2908
  msgid "Guests of"
2916
2909
  msgstr ""
2917
2910
 
@@ -2951,6 +2944,9 @@ msgstr "Hostitel"
2951
2944
  msgid "Host %s has not been registered with subscription-manager."
2952
2945
  msgstr ""
2953
2946
 
2947
+ msgid "Host %{hostname}: Cannot add content view environment to content facet. The host's content source '%{content_source}' does not sync lifecycle environment '%{lce}'."
2948
+ msgstr ""
2949
+
2954
2950
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2955
2951
  msgstr ""
2956
2952
 
@@ -3222,9 +3218,6 @@ msgstr ""
3222
3218
  msgid "Ids of smart proxies to associate"
3223
3219
  msgstr ""
3224
3220
 
3225
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3226
- msgstr ""
3227
-
3228
3221
  msgid "If SSL should be verified for the upstream URL"
3229
3222
  msgstr ""
3230
3223
 
@@ -3252,13 +3245,16 @@ msgstr ""
3252
3245
  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/...'."
3253
3246
  msgstr ""
3254
3247
 
3248
+ msgid "If true, only errata that can be installed without an incremental update will affect the host's errata status."
3249
+ msgstr ""
3250
+
3255
3251
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3256
3252
  msgstr ""
3257
3253
 
3258
3254
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3259
3255
  msgstr ""
3260
3256
 
3261
- msgid "If true, return custom repository sets along with redhat repos"
3257
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3262
3258
  msgstr ""
3263
3259
 
3264
3260
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
@@ -3291,6 +3287,9 @@ msgstr ""
3291
3287
  msgid "Ignored hosts"
3292
3288
  msgstr ""
3293
3289
 
3290
+ msgid "Image"
3291
+ msgstr ""
3292
+
3294
3293
  msgid "Immediate"
3295
3294
  msgstr ""
3296
3295
 
@@ -3510,10 +3509,7 @@ msgstr ""
3510
3509
  msgid "Installable"
3511
3510
  msgstr ""
3512
3511
 
3513
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3514
- msgstr ""
3515
-
3516
- msgid "Installable errata from content view"
3512
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3517
3513
  msgstr ""
3518
3514
 
3519
3515
  msgid "Installable updates"
@@ -3659,7 +3655,7 @@ msgstr ""
3659
3655
  msgid "Issued from"
3660
3656
  msgstr ""
3661
3657
 
3662
- msgid "Items will appear here when a filter rule is added."
3658
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3663
3659
  msgstr ""
3664
3660
 
3665
3661
  msgid "Job '${description}' completed"
@@ -3829,6 +3825,9 @@ msgstr ""
3829
3825
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3830
3826
  msgstr ""
3831
3827
 
3828
+ msgid "Limit content to Red Hat / custom"
3829
+ msgstr ""
3830
+
3832
3831
  msgid "Limit content to enabled / disabled / overridden"
3833
3832
  msgstr ""
3834
3833
 
@@ -4257,21 +4256,24 @@ msgstr ""
4257
4256
  msgid "Multi-entitlement"
4258
4257
  msgstr ""
4259
4258
 
4260
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4261
- msgstr ""
4262
-
4263
4259
  msgid "N/A"
4264
4260
  msgstr ""
4265
4261
 
4266
4262
  msgid "NA"
4267
4263
  msgstr ""
4268
4264
 
4265
+ 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}'."
4266
+ msgstr ""
4267
+
4269
4268
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4270
4269
  msgstr ""
4271
4270
 
4272
4271
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4273
4272
  msgstr ""
4274
4273
 
4274
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4275
+ msgstr ""
4276
+
4275
4277
  msgid ""
4276
4278
  "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"
4277
4279
  " %{repos}"
@@ -4349,12 +4351,6 @@ msgstr ""
4349
4351
  msgid "New Errata"
4350
4352
  msgstr "všechny balíčky"
4351
4353
 
4352
- msgid "New Files: %s"
4353
- msgstr ""
4354
-
4355
- msgid "New blobs: %{count}."
4356
- msgstr ""
4357
-
4358
4354
  #, fuzzy
4359
4355
  msgid "New content view name"
4360
4356
  msgstr "Vyhledat obsah"
@@ -4370,15 +4366,15 @@ msgstr "Název nesmí být prázdný."
4370
4366
  msgid "New name for the content view"
4371
4367
  msgstr ""
4372
4368
 
4373
- msgid "New packages: %{count} (%{size})."
4374
- msgstr ""
4375
-
4376
4369
  msgid "New version is available: Version ${latestVersion}"
4377
4370
  msgstr ""
4378
4371
 
4379
4372
  msgid "Newly published"
4380
4373
  msgstr ""
4381
4374
 
4375
+ msgid "Newly published version will be the same as the previous version."
4376
+ msgstr ""
4377
+
4382
4378
  msgid "No"
4383
4379
  msgstr ""
4384
4380
 
@@ -4431,6 +4427,12 @@ msgstr ""
4431
4427
  msgid "No artifacts to show"
4432
4428
  msgstr ""
4433
4429
 
4430
+ msgid "No available component content view updates"
4431
+ msgstr ""
4432
+
4433
+ msgid "No available repository or filter updates"
4434
+ msgstr ""
4435
+
4434
4436
  msgid "No content"
4435
4437
  msgstr ""
4436
4438
 
@@ -4457,7 +4459,10 @@ msgstr ""
4457
4459
  msgid "No content views available for the selected environment"
4458
4460
  msgstr ""
4459
4461
 
4460
- msgid "No content views belong to ${label}"
4462
+ msgid "No content views to add yet"
4463
+ msgstr ""
4464
+
4465
+ msgid "No content views yet"
4461
4466
  msgstr ""
4462
4467
 
4463
4468
  msgid "No content_view_version_ids provided"
@@ -4478,10 +4483,13 @@ msgstr ""
4478
4483
  msgid "No environments"
4479
4484
  msgstr ""
4480
4485
 
4481
- msgid "No errata available for this content view."
4486
+ msgid "No errata filter rules yet"
4487
+ msgstr ""
4488
+
4489
+ msgid "No errata matching given search query"
4482
4490
  msgstr ""
4483
4491
 
4484
- msgid "No errata available to add to this filter."
4492
+ msgid "No errata to add yet"
4485
4493
  msgstr ""
4486
4494
 
4487
4495
  #, fuzzy
@@ -4494,6 +4502,12 @@ msgstr ""
4494
4502
  msgid "No file uploaded"
4495
4503
  msgstr ""
4496
4504
 
4505
+ msgid "No filters yet"
4506
+ msgstr ""
4507
+
4508
+ msgid "No history yet"
4509
+ msgstr ""
4510
+
4497
4511
  msgid "No host collections"
4498
4512
  msgstr ""
4499
4513
 
@@ -4510,6 +4524,9 @@ msgstr ""
4510
4524
  msgid "No hosts have been specified."
4511
4525
  msgstr ""
4512
4526
 
4527
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4528
+ msgstr ""
4529
+
4513
4530
  msgid "No hosts registered with subscription-manager found in selection."
4514
4531
  msgstr ""
4515
4532
 
@@ -4579,21 +4596,23 @@ msgstr ""
4579
4596
  msgid "No matching repository sets found"
4580
4597
  msgstr ""
4581
4598
 
4582
- msgid "No matching rules found."
4583
- msgstr ""
4584
-
4585
4599
  msgid "No matching traces found"
4586
4600
  msgstr ""
4587
4601
 
4588
4602
  msgid "No matching version found"
4589
4603
  msgstr ""
4590
4604
 
4605
+ msgid "No module stream filter rules yet"
4606
+ msgstr ""
4607
+
4608
+ msgid "No module streams to add yet."
4609
+ msgstr ""
4610
+
4591
4611
  msgid "No new packages installed"
4592
4612
  msgstr "Žádné nové instalační balíčky"
4593
4613
 
4594
- #, fuzzy
4595
- msgid "No new packages."
4596
- msgstr "Žádné nové instalační balíčky"
4614
+ msgid "No package groups yet"
4615
+ msgstr ""
4597
4616
 
4598
4617
  msgid "No packages"
4599
4618
  msgstr ""
@@ -4601,7 +4620,7 @@ msgstr ""
4601
4620
  msgid "No packages available to install"
4602
4621
  msgstr ""
4603
4622
 
4604
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4623
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4605
4624
  msgstr ""
4606
4625
 
4607
4626
  #, fuzzy
@@ -4645,6 +4664,12 @@ msgstr ""
4645
4664
  msgid "No recurring logic tied to the sync plan."
4646
4665
  msgstr ""
4647
4666
 
4667
+ msgid "No repositories added yet"
4668
+ msgstr ""
4669
+
4670
+ msgid "No repositories available to add"
4671
+ msgstr ""
4672
+
4648
4673
  msgid "No repositories available."
4649
4674
  msgstr ""
4650
4675
 
@@ -4663,7 +4688,7 @@ msgstr ""
4663
4688
  msgid "No repository sets to show."
4664
4689
  msgstr ""
4665
4690
 
4666
- msgid "No rules have been added to this filter."
4691
+ msgid "No rules yet"
4667
4692
  msgstr ""
4668
4693
 
4669
4694
  msgid "No services defined, is this class extended?"
@@ -4682,6 +4707,9 @@ msgstr ""
4682
4707
  msgid "No uploads param specified. An array of uploads to import is required."
4683
4708
  msgstr ""
4684
4709
 
4710
+ msgid "No versions yet"
4711
+ msgstr ""
4712
+
4685
4713
  msgid "Non-security errata applicable"
4686
4714
  msgstr ""
4687
4715
 
@@ -4787,9 +4815,6 @@ msgstr ""
4787
4815
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4788
4816
  msgstr ""
4789
4817
 
4790
- msgid "One or more packages failed to sync properly."
4791
- msgstr ""
4792
-
4793
4818
  msgid "One or more processes require restarting"
4794
4819
  msgstr ""
4795
4820
 
@@ -5117,9 +5142,6 @@ msgstr ""
5117
5142
  msgid "Paused"
5118
5143
  msgstr ""
5119
5144
 
5120
- msgid "Pending"
5121
- msgstr ""
5122
-
5123
5145
  msgid "Perform a module stream action via Katello interface"
5124
5146
  msgstr ""
5125
5147
 
@@ -5153,10 +5175,10 @@ msgstr ""
5153
5175
  msgid "Plan numeric identifier"
5154
5176
  msgstr ""
5155
5177
 
5156
- msgid "Please add some content views."
5178
+ msgid "Please add some repositories."
5157
5179
  msgstr ""
5158
5180
 
5159
- msgid "Please add some repositories."
5181
+ msgid "Please create some content views."
5160
5182
  msgstr ""
5161
5183
 
5162
5184
  msgid "Please enter a positive number above zero"
@@ -5234,12 +5256,6 @@ msgstr ""
5234
5256
  msgid "Problem searching traces"
5235
5257
  msgstr ""
5236
5258
 
5237
- msgid "Processing metadata"
5238
- msgstr ""
5239
-
5240
- msgid "Processing metadata."
5241
- msgstr ""
5242
-
5243
5259
  #, fuzzy
5244
5260
  msgid "Product"
5245
5261
  msgstr "Produkty"
@@ -5253,9 +5269,6 @@ msgstr ""
5253
5269
  msgid "Product ID"
5254
5270
  msgstr ""
5255
5271
 
5256
- msgid "Product Name"
5257
- msgstr ""
5258
-
5259
5272
  #, fuzzy
5260
5273
  msgid "Product and Repositories"
5261
5274
  msgstr "Produkty a Repozitáře"
@@ -5547,6 +5560,9 @@ msgstr ""
5547
5560
  msgid "Recommended Repositories"
5548
5561
  msgstr ""
5549
5562
 
5563
+ msgid "Red Hat"
5564
+ msgstr ""
5565
+
5550
5566
  msgid "Red Hat CDN"
5551
5567
  msgstr ""
5552
5568
 
@@ -5813,6 +5829,9 @@ msgstr ""
5813
5829
  msgid "Repo Type"
5814
5830
  msgstr ""
5815
5831
 
5832
+ msgid "Report"
5833
+ msgstr ""
5834
+
5816
5835
  #, fuzzy
5817
5836
  msgid "Repositories"
5818
5837
  msgstr "Repozitáře"
@@ -5858,9 +5877,6 @@ msgstr ""
5858
5877
  msgid "Repository label '%s' is not associated with content view."
5859
5878
  msgstr ""
5860
5879
 
5861
- msgid "Repository metadata publish"
5862
- msgstr ""
5863
-
5864
5880
  #, fuzzy
5865
5881
  msgid "Repository not found"
5866
5882
  msgstr "Repozitáře"
@@ -5898,6 +5914,12 @@ msgstr ""
5898
5914
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5899
5915
  msgstr ""
5900
5916
 
5917
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5918
+ msgstr ""
5919
+
5920
+ msgid "Repository type"
5921
+ msgstr ""
5922
+
5901
5923
  msgid "Republish Repositories of %{name} %{version}"
5902
5924
  msgstr ""
5903
5925
 
@@ -6199,6 +6221,9 @@ msgstr ""
6199
6221
  msgid "Select a client key"
6200
6222
  msgstr ""
6201
6223
 
6224
+ msgid "Select a content source first"
6225
+ msgstr ""
6226
+
6202
6227
  msgid "Select a content view"
6203
6228
  msgstr ""
6204
6229
 
@@ -6214,6 +6239,9 @@ msgstr ""
6214
6239
  msgid "Select a provider to install katello-host-tools-tracer"
6215
6240
  msgstr ""
6216
6241
 
6242
+ msgid "Select a source"
6243
+ msgstr ""
6244
+
6217
6245
  msgid "Select add-ons"
6218
6246
  msgstr ""
6219
6247
 
@@ -6230,7 +6258,7 @@ msgstr "Vybrat organizaci"
6230
6258
  msgid "Select an environment"
6231
6259
  msgstr ""
6232
6260
 
6233
- msgid "Select an environment above"
6261
+ msgid "Select an environment first"
6234
6262
  msgstr ""
6235
6263
 
6236
6264
  msgid "Select an option"
@@ -6401,6 +6429,9 @@ msgstr ""
6401
6429
  msgid "Show all"
6402
6430
  msgstr ""
6403
6431
 
6432
+ msgid "Show all repository sets"
6433
+ msgstr ""
6434
+
6404
6435
  #, fuzzy
6405
6436
  msgid "Show an activation key"
6406
6437
  msgstr "Číst aktivační klíče"
@@ -6424,6 +6455,9 @@ msgstr ""
6424
6455
  msgid "Show full description"
6425
6456
  msgstr ""
6426
6457
 
6458
+ msgid "Show hosts associated to an activation key"
6459
+ msgstr ""
6460
+
6427
6461
  #, fuzzy
6428
6462
  msgid "Show organization"
6429
6463
  msgstr "+ Nová organizace"
@@ -6434,12 +6468,18 @@ msgstr ""
6434
6468
  msgid "Show releases available for the content host"
6435
6469
  msgstr ""
6436
6470
 
6471
+ msgid "Show repositories"
6472
+ msgstr ""
6473
+
6437
6474
  msgid "Show repositories enabled on the host that are known to Katello"
6438
6475
  msgstr ""
6439
6476
 
6440
6477
  msgid "Show the available repository types"
6441
6478
  msgstr ""
6442
6479
 
6480
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6481
+ msgstr ""
6482
+
6443
6483
  msgid "Shows status of Katello system and it's subcomponents"
6444
6484
  msgstr ""
6445
6485
 
@@ -6497,6 +6537,12 @@ msgstr ""
6497
6537
  msgid "Solve dependencies"
6498
6538
  msgstr ""
6499
6539
 
6540
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6541
+ msgstr ""
6542
+
6543
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6544
+ msgstr ""
6545
+
6500
6546
  msgid "Some hosts are not registered as content hosts and will be ignored."
6501
6547
  msgstr ""
6502
6548
 
@@ -6952,9 +6998,6 @@ msgstr ""
6952
6998
  msgid "Synchronize Now"
6953
6999
  msgstr ""
6954
7000
 
6955
- msgid "Synchronize capsule content"
6956
- msgstr ""
6957
-
6958
7001
  #, fuzzy
6959
7002
  msgid "Synchronize repository"
6960
7003
  msgstr "Smazat poskytovatele"
@@ -6990,7 +7033,7 @@ msgstr ""
6990
7033
  msgid "System purpose attributes updated"
6991
7034
  msgstr ""
6992
7035
 
6993
- 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."
7036
+ 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."
6994
7037
  msgstr ""
6995
7038
 
6996
7039
  msgid "Tag name"
@@ -7069,9 +7112,6 @@ msgstr ""
7069
7112
  msgid "The erratum type must be an array. Invalid value provided"
7070
7113
  msgstr ""
7071
7114
 
7072
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
7073
- msgstr ""
7074
-
7075
7115
  msgid "The field to sort the data by. Defaults to the created date."
7076
7116
  msgstr ""
7077
7117
 
@@ -7380,6 +7420,9 @@ msgstr ""
7380
7420
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7381
7421
  msgstr ""
7382
7422
 
7423
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7424
+ msgstr ""
7425
+
7383
7426
  msgid "Timeout when refreshing a manifest (in seconds)"
7384
7427
  msgstr ""
7385
7428
 
@@ -7389,9 +7432,21 @@ msgstr ""
7389
7432
  msgid "Title"
7390
7433
  msgstr ""
7391
7434
 
7435
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7436
+ msgstr ""
7437
+
7438
+ msgid "To enable them, add the environment to the host's content source, or "
7439
+ msgstr ""
7440
+
7441
+ msgid "To get started, add a filter rule to this filter"
7442
+ msgstr ""
7443
+
7392
7444
  msgid "To get started, add this host to a host collection."
7393
7445
  msgstr ""
7394
7446
 
7447
+ 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."
7448
+ msgstr ""
7449
+
7395
7450
  msgid "To update the selected host configuration, update hosts manually in the next section."
7396
7451
  msgstr ""
7397
7452
 
@@ -7578,9 +7633,6 @@ msgstr ""
7578
7633
  msgid "Unapplied Errata"
7579
7634
  msgstr ""
7580
7635
 
7581
- msgid "Unassociate units in repository"
7582
- msgstr ""
7583
-
7584
7636
  #, fuzzy
7585
7637
  msgid "Unattach a subscription"
7586
7638
  msgstr "Smazat poskytovatele"
@@ -7775,6 +7827,9 @@ msgstr ""
7775
7827
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7776
7828
  msgstr ""
7777
7829
 
7830
+ msgid "Update the host immediately via remote execution"
7831
+ msgstr ""
7832
+
7778
7833
  msgid "Update the information about enabled repositories"
7779
7834
  msgstr ""
7780
7835
 
@@ -7803,6 +7858,12 @@ msgstr "Smazat poskytovatele"
7803
7858
  msgid "Updates all packages on the host(s)"
7804
7859
  msgstr ""
7805
7860
 
7861
+ msgid "Updates available: Component content view versions have been updated."
7862
+ msgstr ""
7863
+
7864
+ msgid "Updates available: Repositories and/or filters have changed."
7865
+ msgstr ""
7866
+
7806
7867
  #, fuzzy
7807
7868
  msgid "Updating Package..."
7808
7869
  msgstr "Smazat balíček filtrů"
@@ -8024,6 +8085,9 @@ msgstr ""
8024
8085
  msgid "View %{view} has not been promoted to %{env}"
8025
8086
  msgstr ""
8026
8087
 
8088
+ msgid "View Filters"
8089
+ msgstr ""
8090
+
8027
8091
  msgid "View Subscription Usage"
8028
8092
  msgstr ""
8029
8093
 
@@ -8036,6 +8100,9 @@ msgstr ""
8036
8100
  msgid "View by"
8037
8101
  msgstr ""
8038
8102
 
8103
+ msgid "View documentation"
8104
+ msgstr ""
8105
+
8039
8106
  msgid "View matching content"
8040
8107
  msgstr ""
8041
8108
 
@@ -8082,6 +8149,9 @@ msgstr ""
8082
8149
  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."
8083
8150
  msgstr ""
8084
8151
 
8152
+ msgid "Whether Simple Content Access should be enabled for the organization."
8153
+ msgstr ""
8154
+
8085
8155
  msgid "Whether or not the host collection may have unlimited hosts"
8086
8156
  msgstr ""
8087
8157
 
@@ -8094,6 +8164,9 @@ msgstr ""
8094
8164
  msgid "Whether or not to regenerate the repository on disk. Default: true"
8095
8165
  msgstr ""
8096
8166
 
8167
+ msgid "Whether or not to return filters applied to the content view version"
8168
+ msgstr ""
8169
+
8097
8170
  msgid "Whether or not to show all results"
8098
8171
  msgstr ""
8099
8172
 
@@ -8139,31 +8212,19 @@ msgstr ""
8139
8212
  msgid "You currently don't have any ${selectedContentType}."
8140
8213
  msgstr ""
8141
8214
 
8142
- msgid "You currently don't have any Content views."
8143
- msgstr ""
8144
-
8145
8215
  msgid "You currently don't have any alternate content sources."
8146
8216
  msgstr ""
8147
8217
 
8148
- msgid "You currently don't have any filters for this content view."
8149
- msgstr ""
8150
-
8151
- msgid "You currently don't have any history for this content view."
8218
+ msgid "You currently don't have any related content views."
8152
8219
  msgstr ""
8153
8220
 
8154
8221
  msgid "You currently don't have any repositories associated with this content."
8155
8222
  msgstr ""
8156
8223
 
8157
- msgid "You currently don't have any repositories to add to this content view."
8158
- msgstr ""
8159
-
8160
8224
  msgid "You currently don't have any repositories to add to this filter."
8161
8225
  msgstr ""
8162
8226
 
8163
- msgid "You currently don't have any versions for this content view."
8164
- msgstr ""
8165
-
8166
- msgid "You currently don\\'t have any related content views."
8227
+ msgid "You currently have no content views to display"
8167
8228
  msgstr ""
8168
8229
 
8169
8230
  msgid "You do not have permissions to delete %s"
@@ -8220,9 +8281,6 @@ msgstr ""
8220
8281
  msgid "Yum"
8221
8282
  msgstr ""
8222
8283
 
8223
- msgid "Yum Metadata: %s"
8224
- msgstr ""
8225
-
8226
8284
  msgid "a content unit"
8227
8285
  msgstr ""
8228
8286
 
@@ -8397,6 +8455,9 @@ msgstr ""
8397
8455
  msgid "cannot contain more than %s characters"
8398
8456
  msgstr "musí obsahovat nejméně %s znaků"
8399
8457
 
8458
+ msgid "change the host's content source."
8459
+ msgstr ""
8460
+
8400
8461
  msgid "checking %s task status"
8401
8462
  msgstr ""
8402
8463
 
@@ -8412,9 +8473,6 @@ msgstr ""
8412
8473
  msgid "composite content view numeric identifier"
8413
8474
  msgstr ""
8414
8475
 
8415
- msgid "conditional package names to include in the package group"
8416
- msgstr ""
8417
-
8418
8476
  #, fuzzy
8419
8477
  msgid "content release version"
8420
8478
  msgstr "Vyhledat obsah"
@@ -8474,6 +8532,9 @@ msgstr ""
8474
8532
  msgid "content view versions to compare"
8475
8533
  msgstr ""
8476
8534
 
8535
+ msgid "create a custom product"
8536
+ msgstr ""
8537
+
8477
8538
  msgid "create a filter for a content view"
8478
8539
  msgstr ""
8479
8540
 
@@ -8483,9 +8544,6 @@ msgstr ""
8483
8544
  msgid "deb_ids is not an array"
8484
8545
  msgstr ""
8485
8546
 
8486
- msgid "default package names to include in the package group"
8487
- msgstr ""
8488
-
8489
8547
  msgid "delete a filter"
8490
8548
  msgstr ""
8491
8549
 
@@ -8728,9 +8786,6 @@ msgstr "Smazán poskytovatel [%s]"
8728
8786
  msgid "list of rpm filename strings to include in published version"
8729
8787
  msgstr ""
8730
8788
 
8731
- msgid "mandatory package names to include in the package group"
8732
- msgstr ""
8733
-
8734
8789
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8735
8790
  msgstr ""
8736
8791
 
@@ -8758,6 +8813,9 @@ msgstr ""
8758
8813
  msgid "must be one of: %s"
8759
8814
  msgstr ""
8760
8815
 
8816
+ msgid "must be true or false"
8817
+ msgstr ""
8818
+
8761
8819
  #, fuzzy
8762
8820
  msgid "must be unique within one organization"
8763
8821
  msgstr "Název musí být unikátní vrámci jedné organizace."
@@ -8789,9 +8847,6 @@ msgstr "nesmí obsahovat více než %s znaků"
8789
8847
  msgid "name"
8790
8848
  msgstr "Název"
8791
8849
 
8792
- msgid "name not defined."
8793
- msgstr ""
8794
-
8795
8850
  #, fuzzy
8796
8851
  msgid "name of organization"
8797
8852
  msgstr "Vybrat organizaci"
@@ -8842,9 +8897,6 @@ msgstr "Název musí být unikátní vrámci jedné organizace."
8842
8897
  msgid "only show the repositories readable by this user with this username"
8843
8898
  msgstr ""
8844
8899
 
8845
- msgid "optional package names to include in the package group"
8846
- msgstr ""
8847
-
8848
8900
  #, fuzzy
8849
8901
  msgid "organization ID"
8850
8902
  msgstr "Organizace"
@@ -8853,12 +8905,6 @@ msgstr "Organizace"
8853
8905
  msgid "organization identifier"
8854
8906
  msgstr "Organizace"
8855
8907
 
8856
- msgid "package group description. Defaults to params[:name]"
8857
- msgstr ""
8858
-
8859
- msgid "package group name"
8860
- msgstr ""
8861
-
8862
8908
  msgid "package group: uuid"
8863
8909
  msgstr ""
8864
8910
 
@@ -8945,12 +8991,6 @@ msgstr "Repozitáře"
8945
8991
  msgid "repository source url"
8946
8992
  msgstr "Repozitáře"
8947
8993
 
8948
- msgid "repository_id"
8949
- msgstr ""
8950
-
8951
- msgid "repository_id not defined."
8952
- msgstr ""
8953
-
8954
8994
  msgid "root-node of collection contained in responses (default: 'results')"
8955
8995
  msgstr ""
8956
8996
 
@@ -8972,9 +9012,6 @@ msgstr ""
8972
9012
  msgid "service level"
8973
9013
  msgstr ""
8974
9014
 
8975
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8976
- msgstr ""
8977
-
8978
9015
  msgid "set true if you want to see only library environments"
8979
9016
  msgstr ""
8980
9017
 
@@ -9033,9 +9070,6 @@ msgstr ""
9033
9070
  msgid "true if this repository can be published via HTTP"
9034
9071
  msgstr ""
9035
9072
 
9036
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
9037
- msgstr ""
9038
-
9039
9073
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
9040
9074
  msgstr ""
9041
9075
 
@@ -9082,15 +9116,9 @@ msgstr ""
9082
9116
  msgid "waiting for %s to finish the task"
9083
9117
  msgstr ""
9084
9118
 
9085
- msgid "waiting for Pulp to finish the task"
9086
- msgstr ""
9087
-
9088
9119
  msgid "waiting for Pulp to finish the task %s"
9089
9120
  msgstr ""
9090
9121
 
9091
- msgid "waiting for Pulp to start the task"
9092
- msgstr ""
9093
-
9094
9122
  msgid "waiting for Pulp to start the task %s"
9095
9123
  msgstr ""
9096
9124
 
@@ -9112,6 +9140,9 @@ msgstr ""
9112
9140
  msgid "{0} items selected"
9113
9141
  msgstr ""
9114
9142
 
9143
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
9144
+ msgstr ""
9145
+
9115
9146
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
9116
9147
  msgstr ""
9117
9148