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/ru/katello.po CHANGED
@@ -155,9 +155,6 @@ msgstr ""
155
155
  msgid "%s is unreachable. %s"
156
156
  msgstr ""
157
157
 
158
- msgid "%s must be an array."
159
- msgstr ""
160
-
161
158
  msgid "%{errata} (%{total} other errata)"
162
159
  msgstr "%{errata} (других исправлений: %{total})"
163
160
 
@@ -392,15 +389,12 @@ msgstr "СВОДКА <b>СИНХРОНИЗАЦИИ</b>"
392
389
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
393
390
  msgstr ""
394
391
 
395
- msgid "A Pool and its Subscription cannot belong to different organizations"
392
+ msgid "A Pool and its Subscription cannot belong to different organizations."
396
393
  msgstr ""
397
394
 
398
395
  msgid "A backend service [ %s ] is unreachable"
399
396
  msgstr "Базовая служба [ %s ] недоступна"
400
397
 
401
- msgid "A content view can be added by using the \"Create content view\" button below."
402
- msgstr ""
403
-
404
398
  msgid "A content_type must be provided."
405
399
  msgstr "Необходимо определить content_type."
406
400
 
@@ -467,9 +461,6 @@ msgstr ""
467
461
  msgid "Action unauthorized to be performed in this organization."
468
462
  msgstr ""
469
463
 
470
- msgid "Action unauthorized to be performed on selected hosts."
471
- msgstr "Попытка выполнения несанкционированных действий над выбранными узлами."
472
-
473
464
  msgid "Action with sub plans"
474
465
  msgstr "Действия с подпланами"
475
466
 
@@ -521,6 +512,9 @@ msgstr ""
521
512
  msgid "Add Subscriptions"
522
513
  msgstr ""
523
514
 
515
+ msgid "Add Subscriptions using the Add Subscriptions button."
516
+ msgstr ""
517
+
524
518
  msgid "Add a subscription to a host"
525
519
  msgstr "Выделить подписки узлу"
526
520
 
@@ -530,6 +524,9 @@ msgstr ""
530
524
  msgid "Add components to the content view"
531
525
  msgstr ""
532
526
 
527
+ msgid "Add content"
528
+ msgstr ""
529
+
533
530
  msgid "Add content view"
534
531
  msgstr ""
535
532
 
@@ -572,12 +569,18 @@ msgstr "Включить продукты в план синхронизации
572
569
  msgid "Add repositories"
573
570
  msgstr ""
574
571
 
572
+ msgid "Add repositories with package groups to content view to select them here."
573
+ msgstr ""
574
+
575
575
  msgid "Add rule"
576
576
  msgstr ""
577
577
 
578
578
  msgid "Add source"
579
579
  msgstr ""
580
580
 
581
+ msgid "Add subscriptions"
582
+ msgstr ""
583
+
581
584
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
582
585
  msgstr ""
583
586
 
@@ -587,12 +590,6 @@ msgstr ""
587
590
  msgid "Add to a host collection"
588
591
  msgstr ""
589
592
 
590
- msgid "Add to this filter using the 'Add Deb rule' button."
591
- msgstr ""
592
-
593
- msgid "Add to this filter using the 'Add filter rule' button."
594
- msgstr ""
595
-
596
593
  msgid "Add-ons"
597
594
  msgstr ""
598
595
 
@@ -716,15 +713,12 @@ msgstr ""
716
713
  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."
717
714
  msgstr ""
718
715
 
719
- msgid "An alternate content source can be added by using the \"Add source\" button below."
716
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
720
717
  msgstr ""
721
718
 
722
719
  msgid "An environment is missing a prior"
723
720
  msgstr ""
724
721
 
725
- msgid "An error occurred during content removal. Could not find repository with id: %s"
726
- msgstr ""
727
-
728
722
  msgid ""
729
723
  "An error occurred during the sync \n"
730
724
  "%{error_message}"
@@ -922,12 +916,6 @@ msgstr ""
922
916
  msgid "Autopublish"
923
917
  msgstr ""
924
918
 
925
- msgid "Autosearch"
926
- msgstr ""
927
-
928
- msgid "Autosearch delay"
929
- msgstr ""
930
-
931
919
  msgid "Available"
932
920
  msgstr "Доступно"
933
921
 
@@ -1063,24 +1051,12 @@ msgstr "Определить подходящие исправления для
1063
1051
  msgid "Calculate Applicable Errata based on a particular Environment"
1064
1052
  msgstr "Определить подходящие исправления для заданного окружения"
1065
1053
 
1066
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1067
- msgstr ""
1068
-
1069
1054
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1070
1055
  msgstr ""
1071
1056
 
1072
- msgid "Can not add product %s because it is disabled."
1073
- msgstr ""
1074
-
1075
- msgid "Can only destroy on Yum Repositories."
1076
- msgstr ""
1077
-
1078
1057
  msgid "Can only remove content from within the Default Content View"
1079
1058
  msgstr "Содержимое может удаляться только из представления, используемого по умолчанию"
1080
1059
 
1081
- msgid "Can only upload to Yum Repositories."
1082
- msgstr ""
1083
-
1084
1060
  msgid "Can't update the '%s' environment"
1085
1061
  msgstr "Не удалось обновить окружение «%s»"
1086
1062
 
@@ -1138,9 +1114,15 @@ msgstr "Исходное представление не может входит
1138
1114
  msgid "Cannot add generated content view versions to composite content view"
1139
1115
  msgstr ""
1140
1116
 
1117
+ msgid "Cannot add product %s because it is disabled."
1118
+ msgstr ""
1119
+
1141
1120
  msgid "Cannot add repositories to a composite content view"
1142
1121
  msgstr "Нельзя добавлять репозитории в сложное представление"
1143
1122
 
1123
+ msgid "Cannot associate a Red Hat provider with a custom product"
1124
+ msgstr ""
1125
+
1144
1126
  msgid "Cannot associate a component to a non composite content view"
1145
1127
  msgstr ""
1146
1128
 
@@ -1192,7 +1174,10 @@ msgstr ""
1192
1174
  msgid "Cannot import a custom subscription from a redhat product."
1193
1175
  msgstr ""
1194
1176
 
1195
- msgid "Cannot pass content units without content unit type"
1177
+ 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."
1178
+ msgstr ""
1179
+
1180
+ 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."
1196
1181
  msgstr ""
1197
1182
 
1198
1183
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
@@ -1264,6 +1249,9 @@ msgstr ""
1264
1249
  msgid "Change host content source"
1265
1250
  msgstr ""
1266
1251
 
1252
+ msgid "Check audited changes and proceed only if content or filters have changed since last publish"
1253
+ msgstr ""
1254
+
1267
1255
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1268
1256
  msgstr ""
1269
1257
 
@@ -1306,6 +1294,9 @@ msgstr ""
1306
1294
  msgid "Click here to go to the tasks page for the task."
1307
1295
  msgstr ""
1308
1296
 
1297
+ msgid "Click to see repositories available to add."
1298
+ msgstr ""
1299
+
1309
1300
  msgid "Click {update} below to save changes."
1310
1301
  msgstr ""
1311
1302
 
@@ -1585,6 +1576,9 @@ msgstr ""
1585
1576
  msgid "Content view details"
1586
1577
  msgstr ""
1587
1578
 
1579
+ 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."
1580
+ msgstr ""
1581
+
1588
1582
  msgid "Content view environments and activation key must all belong to the same organization"
1589
1583
  msgstr ""
1590
1584
 
@@ -1804,9 +1798,6 @@ msgstr ""
1804
1798
  msgid "Create Import History"
1805
1799
  msgstr ""
1806
1800
 
1807
- msgid "Create Package Group"
1808
- msgstr ""
1809
-
1810
1801
  msgid "Create Repositories"
1811
1802
  msgstr ""
1812
1803
 
@@ -1831,9 +1822,6 @@ msgstr "Создать правило фильтрации. Список пар
1831
1822
  msgid "Create a host collection"
1832
1823
  msgstr "Создать коллекцию"
1833
1824
 
1834
- msgid "Create a package group"
1835
- msgstr ""
1836
-
1837
1825
  msgid "Create a product"
1838
1826
  msgstr "Создать продукт"
1839
1827
 
@@ -1867,6 +1855,9 @@ msgstr ""
1867
1855
  msgid "Create host collection"
1868
1856
  msgstr ""
1869
1857
 
1858
+ msgid "Create new activation key"
1859
+ msgstr ""
1860
+
1870
1861
  msgid "Create organization"
1871
1862
  msgstr "Создать организацию"
1872
1863
 
@@ -1999,6 +1990,12 @@ msgstr ""
1999
1990
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
2000
1991
  msgstr ""
2001
1992
 
1993
+ msgid "Default export format"
1994
+ msgstr ""
1995
+
1996
+ msgid "Default export format for content-exports(either 'syncable' or 'importable')"
1997
+ msgstr ""
1998
+
2002
1999
  msgid "Default finish template for new Operating Systems created from synced content"
2003
2000
  msgstr ""
2004
2001
 
@@ -2074,9 +2071,6 @@ msgstr "Удалить окружение"
2074
2071
  msgid "Delete Manifest"
2075
2072
  msgstr "Удалить манифест"
2076
2073
 
2077
- msgid "Delete Package Group"
2078
- msgstr ""
2079
-
2080
2074
  msgid "Delete Product"
2081
2075
  msgstr "Удалить продукт"
2082
2076
 
@@ -2092,9 +2086,6 @@ msgstr "Удалить представление"
2092
2086
  msgid "Delete a filter rule"
2093
2087
  msgstr "Удалить правило фильтрации"
2094
2088
 
2095
- msgid "Delete a package group"
2096
- msgstr ""
2097
-
2098
2089
  msgid "Delete all subscriptions attached to activation keys."
2099
2090
  msgstr ""
2100
2091
 
@@ -2458,6 +2449,12 @@ msgstr "Установка исправлений"
2458
2449
  msgid "Errata Install scheduled by %s"
2459
2450
  msgstr "Установка назначена: %s"
2460
2451
 
2452
+ msgid "Errata and package information will be updated at the next host check-in or package action."
2453
+ msgstr ""
2454
+
2455
+ msgid "Errata and package information will be updated immediately."
2456
+ msgstr ""
2457
+
2461
2458
  msgid "Errata id of the erratum (RHSA-2012:108)"
2462
2459
  msgstr ""
2463
2460
 
@@ -2560,9 +2557,7 @@ msgstr ""
2560
2557
  msgid "Export as CSV"
2561
2558
  msgstr ""
2562
2559
 
2563
- msgid ""
2564
- "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"
2565
- " Defaults to importable."
2560
+ 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."
2566
2561
  msgstr ""
2567
2562
 
2568
2563
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
@@ -2586,11 +2581,6 @@ msgstr ""
2586
2581
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2587
2582
  msgstr ""
2588
2583
 
2589
- msgid "Failed to download %s package."
2590
- msgid_plural "Failed to download %s packages."
2591
- msgstr[0] ""
2592
- msgstr[1] ""
2593
-
2594
2584
  msgid "Failed to find %{content} with id '%{id}'."
2595
2585
  msgstr "%{content} с идентификатором «%{id}» не найдено."
2596
2586
 
@@ -2711,7 +2701,10 @@ msgstr "Фильтры"
2711
2701
  msgid "Filters deleted"
2712
2702
  msgstr ""
2713
2703
 
2714
- msgid "Filters will appear here when the filter is created."
2704
+ msgid "Filters were applied to this version."
2705
+ msgstr ""
2706
+
2707
+ msgid "Filters will be applied to this content view version."
2715
2708
  msgstr ""
2716
2709
 
2717
2710
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
@@ -2726,9 +2719,6 @@ msgstr ""
2726
2719
  msgid "Finished"
2727
2720
  msgstr "Готово"
2728
2721
 
2729
- msgid "For pages that support it, automatically perform search while typing in search input."
2730
- msgstr ""
2731
-
2732
2722
  msgid "Force"
2733
2723
  msgstr ""
2734
2724
 
@@ -2740,6 +2730,9 @@ msgstr ""
2740
2730
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2741
2731
  msgstr ""
2742
2732
 
2733
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2734
+ msgstr ""
2735
+
2743
2736
  msgid "Force delete the repository by removing it from all content view versions"
2744
2737
  msgstr ""
2745
2738
 
@@ -2782,6 +2775,9 @@ msgstr ""
2782
2775
  msgid "Generate and Download"
2783
2776
  msgstr "Создать и загрузить"
2784
2777
 
2778
+ msgid "Generate errata status from directly-installable content"
2779
+ msgstr ""
2780
+
2785
2781
  msgid "Generate host applicability"
2786
2782
  msgstr ""
2787
2783
 
@@ -2845,9 +2841,6 @@ msgstr ""
2845
2841
  msgid "Greater than"
2846
2842
  msgstr ""
2847
2843
 
2848
- msgid "Group %{id} already created."
2849
- msgstr "Группа %{id} уже существует."
2850
-
2851
2844
  msgid "Guests of"
2852
2845
  msgstr "Гости"
2853
2846
 
@@ -2887,6 +2880,9 @@ msgstr "Узел"
2887
2880
  msgid "Host %s has not been registered with subscription-manager."
2888
2881
  msgstr "%s не был зарегистрирован в subscription-manager"
2889
2882
 
2883
+ msgid "Host %{hostname}: Cannot add content view environment to content facet. The host's content source '%{content_source}' does not sync lifecycle environment '%{lce}'."
2884
+ msgstr ""
2885
+
2890
2886
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2891
2887
  msgstr ""
2892
2888
 
@@ -3154,9 +3150,6 @@ msgstr ""
3154
3150
  msgid "Ids of smart proxies to associate"
3155
3151
  msgstr ""
3156
3152
 
3157
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3158
- msgstr ""
3159
-
3160
3153
  msgid "If SSL should be verified for the upstream URL"
3161
3154
  msgstr ""
3162
3155
 
@@ -3184,13 +3177,16 @@ msgstr ""
3184
3177
  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/...'."
3185
3178
  msgstr ""
3186
3179
 
3180
+ msgid "If true, only errata that can be installed without an incremental update will affect the host's errata status."
3181
+ msgstr ""
3182
+
3187
3183
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3188
3184
  msgstr ""
3189
3185
 
3190
3186
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3191
3187
  msgstr ""
3192
3188
 
3193
- msgid "If true, return custom repository sets along with redhat repos"
3189
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3194
3190
  msgstr ""
3195
3191
 
3196
3192
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
@@ -3223,6 +3219,9 @@ msgstr "Показать доступные подписки для указан
3223
3219
  msgid "Ignored hosts"
3224
3220
  msgstr ""
3225
3221
 
3222
+ msgid "Image"
3223
+ msgstr ""
3224
+
3226
3225
  msgid "Immediate"
3227
3226
  msgstr "Немедленный"
3228
3227
 
@@ -3436,10 +3435,7 @@ msgstr ""
3436
3435
  msgid "Installable"
3437
3436
  msgstr "Доступно для установки"
3438
3437
 
3439
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3440
- msgstr ""
3441
-
3442
- msgid "Installable errata from content view"
3438
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3443
3439
  msgstr ""
3444
3440
 
3445
3441
  msgid "Installable updates"
@@ -3580,7 +3576,7 @@ msgstr "Опубликовано"
3580
3576
  msgid "Issued from"
3581
3577
  msgstr ""
3582
3578
 
3583
- msgid "Items will appear here when a filter rule is added."
3579
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3584
3580
  msgstr ""
3585
3581
 
3586
3582
  msgid "Job '${description}' completed"
@@ -3748,6 +3744,9 @@ msgstr ""
3748
3744
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3749
3745
  msgstr ""
3750
3746
 
3747
+ msgid "Limit content to Red Hat / custom"
3748
+ msgstr ""
3749
+
3751
3750
  msgid "Limit content to enabled / disabled / overridden"
3752
3751
  msgstr ""
3753
3752
 
@@ -4165,21 +4164,24 @@ msgstr ""
4165
4164
  msgid "Multi-entitlement"
4166
4165
  msgstr "Многократные полномочия"
4167
4166
 
4168
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4169
- msgstr ""
4170
-
4171
4167
  msgid "N/A"
4172
4168
  msgstr "нет"
4173
4169
 
4174
4170
  msgid "NA"
4175
4171
  msgstr "нет"
4176
4172
 
4173
+ 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}'."
4174
+ msgstr ""
4175
+
4177
4176
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4178
4177
  msgstr ""
4179
4178
 
4180
4179
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4181
4180
  msgstr ""
4182
4181
 
4182
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4183
+ msgstr ""
4184
+
4183
4185
  msgid ""
4184
4186
  "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"
4185
4187
  " %{repos}"
@@ -4255,12 +4257,6 @@ msgstr "Никогда"
4255
4257
  msgid "New Errata"
4256
4258
  msgstr "Новые исправления"
4257
4259
 
4258
- msgid "New Files: %s"
4259
- msgstr ""
4260
-
4261
- msgid "New blobs: %{count}."
4262
- msgstr ""
4263
-
4264
4260
  msgid "New content view name"
4265
4261
  msgstr "Имя нового представления"
4266
4262
 
@@ -4273,15 +4269,15 @@ msgstr "Имя не может быть пустым."
4273
4269
  msgid "New name for the content view"
4274
4270
  msgstr "Новое имя представления"
4275
4271
 
4276
- msgid "New packages: %{count} (%{size})."
4277
- msgstr ""
4278
-
4279
4272
  msgid "New version is available: Version ${latestVersion}"
4280
4273
  msgstr ""
4281
4274
 
4282
4275
  msgid "Newly published"
4283
4276
  msgstr ""
4284
4277
 
4278
+ msgid "Newly published version will be the same as the previous version."
4279
+ msgstr ""
4280
+
4285
4281
  msgid "No"
4286
4282
  msgstr "Нет"
4287
4283
 
@@ -4333,6 +4329,12 @@ msgstr ""
4333
4329
  msgid "No artifacts to show"
4334
4330
  msgstr ""
4335
4331
 
4332
+ msgid "No available component content view updates"
4333
+ msgstr ""
4334
+
4335
+ msgid "No available repository or filter updates"
4336
+ msgstr ""
4337
+
4336
4338
  msgid "No content"
4337
4339
  msgstr ""
4338
4340
 
@@ -4357,7 +4359,10 @@ msgstr ""
4357
4359
  msgid "No content views available for the selected environment"
4358
4360
  msgstr ""
4359
4361
 
4360
- msgid "No content views belong to ${label}"
4362
+ msgid "No content views to add yet"
4363
+ msgstr ""
4364
+
4365
+ msgid "No content views yet"
4361
4366
  msgstr ""
4362
4367
 
4363
4368
  msgid "No content_view_version_ids provided"
@@ -4378,10 +4383,13 @@ msgstr ""
4378
4383
  msgid "No environments"
4379
4384
  msgstr ""
4380
4385
 
4381
- msgid "No errata available for this content view."
4386
+ msgid "No errata filter rules yet"
4387
+ msgstr ""
4388
+
4389
+ msgid "No errata matching given search query"
4382
4390
  msgstr ""
4383
4391
 
4384
- msgid "No errata available to add to this filter."
4392
+ msgid "No errata to add yet"
4385
4393
  msgstr ""
4386
4394
 
4387
4395
  msgid "No errors"
@@ -4393,6 +4401,12 @@ msgstr ""
4393
4401
  msgid "No file uploaded"
4394
4402
  msgstr "Нет отправленных файлов"
4395
4403
 
4404
+ msgid "No filters yet"
4405
+ msgstr ""
4406
+
4407
+ msgid "No history yet"
4408
+ msgstr ""
4409
+
4396
4410
  msgid "No host collections"
4397
4411
  msgstr ""
4398
4412
 
@@ -4408,6 +4422,9 @@ msgstr ""
4408
4422
  msgid "No hosts have been specified."
4409
4423
  msgstr "Не задан ни один узел."
4410
4424
 
4425
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4426
+ msgstr ""
4427
+
4411
4428
  msgid "No hosts registered with subscription-manager found in selection."
4412
4429
  msgstr "Среди выбранных узлов нет узлов, зарегистрированных с помощью subscription-manager"
4413
4430
 
@@ -4477,20 +4494,23 @@ msgstr ""
4477
4494
  msgid "No matching repository sets found"
4478
4495
  msgstr ""
4479
4496
 
4480
- msgid "No matching rules found."
4481
- msgstr ""
4482
-
4483
4497
  msgid "No matching traces found"
4484
4498
  msgstr ""
4485
4499
 
4486
4500
  msgid "No matching version found"
4487
4501
  msgstr ""
4488
4502
 
4503
+ msgid "No module stream filter rules yet"
4504
+ msgstr ""
4505
+
4506
+ msgid "No module streams to add yet."
4507
+ msgstr ""
4508
+
4489
4509
  msgid "No new packages installed"
4490
4510
  msgstr "Нет новых пакетов"
4491
4511
 
4492
- msgid "No new packages."
4493
- msgstr "Нет новых пакетов."
4512
+ msgid "No package groups yet"
4513
+ msgstr ""
4494
4514
 
4495
4515
  msgid "No packages"
4496
4516
  msgstr ""
@@ -4498,7 +4518,7 @@ msgstr ""
4498
4518
  msgid "No packages available to install"
4499
4519
  msgstr ""
4500
4520
 
4501
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4521
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4502
4522
  msgstr ""
4503
4523
 
4504
4524
  msgid "No packages removed"
@@ -4540,6 +4560,12 @@ msgstr "Нет недавно синхронизированных продук
4540
4560
  msgid "No recurring logic tied to the sync plan."
4541
4561
  msgstr ""
4542
4562
 
4563
+ msgid "No repositories added yet"
4564
+ msgstr ""
4565
+
4566
+ msgid "No repositories available to add"
4567
+ msgstr ""
4568
+
4543
4569
  msgid "No repositories available."
4544
4570
  msgstr ""
4545
4571
 
@@ -4558,7 +4584,7 @@ msgstr ""
4558
4584
  msgid "No repository sets to show."
4559
4585
  msgstr ""
4560
4586
 
4561
- msgid "No rules have been added to this filter."
4587
+ msgid "No rules yet"
4562
4588
  msgstr ""
4563
4589
 
4564
4590
  msgid "No services defined, is this class extended?"
@@ -4576,6 +4602,9 @@ msgstr ""
4576
4602
  msgid "No uploads param specified. An array of uploads to import is required."
4577
4603
  msgstr ""
4578
4604
 
4605
+ msgid "No versions yet"
4606
+ msgstr ""
4607
+
4579
4608
  msgid "Non-security errata applicable"
4580
4609
  msgstr "Доступны исправления общего характера"
4581
4610
 
@@ -4681,9 +4710,6 @@ msgstr ""
4681
4710
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4682
4711
  msgstr ""
4683
4712
 
4684
- msgid "One or more packages failed to sync properly."
4685
- msgstr "Не удалось синхронизировать пакет(ы)."
4686
-
4687
4713
  msgid "One or more processes require restarting"
4688
4714
  msgstr ""
4689
4715
 
@@ -4966,9 +4992,6 @@ msgstr ""
4966
4992
  msgid "Paused"
4967
4993
  msgstr "Приостановлена"
4968
4994
 
4969
- msgid "Pending"
4970
- msgstr "Ожидание"
4971
-
4972
4995
  msgid "Perform a module stream action via Katello interface"
4973
4996
  msgstr ""
4974
4997
 
@@ -5002,10 +5025,10 @@ msgstr " Физическая"
5002
5025
  msgid "Plan numeric identifier"
5003
5026
  msgstr "Числовой идентификатор плана"
5004
5027
 
5005
- msgid "Please add some content views."
5028
+ msgid "Please add some repositories."
5006
5029
  msgstr ""
5007
5030
 
5008
- msgid "Please add some repositories."
5031
+ msgid "Please create some content views."
5009
5032
  msgstr ""
5010
5033
 
5011
5034
  msgid "Please enter a positive number above zero"
@@ -5083,12 +5106,6 @@ msgstr ""
5083
5106
  msgid "Problem searching traces"
5084
5107
  msgstr ""
5085
5108
 
5086
- msgid "Processing metadata"
5087
- msgstr "Обработка метаданных..."
5088
-
5089
- msgid "Processing metadata."
5090
- msgstr "Обработка метаданных..."
5091
-
5092
5109
  msgid "Product"
5093
5110
  msgstr "Продукт"
5094
5111
 
@@ -5101,9 +5118,6 @@ msgstr "Создать продукт"
5101
5118
  msgid "Product ID"
5102
5119
  msgstr "Идентификатор продукта"
5103
5120
 
5104
- msgid "Product Name"
5105
- msgstr "Имя продукта"
5106
-
5107
5121
  msgid "Product and Repositories"
5108
5122
  msgstr "Продукты и репозитории"
5109
5123
 
@@ -5391,6 +5405,9 @@ msgstr ""
5391
5405
  msgid "Recommended Repositories"
5392
5406
  msgstr ""
5393
5407
 
5408
+ msgid "Red Hat"
5409
+ msgstr ""
5410
+
5394
5411
  msgid "Red Hat CDN"
5395
5412
  msgstr ""
5396
5413
 
@@ -5646,6 +5663,9 @@ msgstr ""
5646
5663
  msgid "Repo Type"
5647
5664
  msgstr "Тип репозитория"
5648
5665
 
5666
+ msgid "Report"
5667
+ msgstr ""
5668
+
5649
5669
  msgid "Repositories"
5650
5670
  msgstr "Репозитории"
5651
5671
 
@@ -5688,9 +5708,6 @@ msgstr "Идентификатор репозитория"
5688
5708
  msgid "Repository label '%s' is not associated with content view."
5689
5709
  msgstr ""
5690
5710
 
5691
- msgid "Repository metadata publish"
5692
- msgstr "Публикация метаданных репозитория"
5693
-
5694
5711
  msgid "Repository not found"
5695
5712
  msgstr "Репозиторий не найден"
5696
5713
 
@@ -5727,6 +5744,12 @@ msgstr ""
5727
5744
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5728
5745
  msgstr ""
5729
5746
 
5747
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5748
+ msgstr ""
5749
+
5750
+ msgid "Repository type"
5751
+ msgstr ""
5752
+
5730
5753
  msgid "Republish Repositories of %{name} %{version}"
5731
5754
  msgstr ""
5732
5755
 
@@ -6024,6 +6047,9 @@ msgstr ""
6024
6047
  msgid "Select a client key"
6025
6048
  msgstr ""
6026
6049
 
6050
+ msgid "Select a content source first"
6051
+ msgstr ""
6052
+
6027
6053
  msgid "Select a content view"
6028
6054
  msgstr ""
6029
6055
 
@@ -6039,6 +6065,9 @@ msgstr ""
6039
6065
  msgid "Select a provider to install katello-host-tools-tracer"
6040
6066
  msgstr ""
6041
6067
 
6068
+ msgid "Select a source"
6069
+ msgstr ""
6070
+
6042
6071
  msgid "Select add-ons"
6043
6072
  msgstr ""
6044
6073
 
@@ -6054,7 +6083,7 @@ msgstr "Выберите организацию"
6054
6083
  msgid "Select an environment"
6055
6084
  msgstr ""
6056
6085
 
6057
- msgid "Select an environment above"
6086
+ msgid "Select an environment first"
6058
6087
  msgstr ""
6059
6088
 
6060
6089
  msgid "Select an option"
@@ -6219,6 +6248,9 @@ msgstr ""
6219
6248
  msgid "Show all"
6220
6249
  msgstr ""
6221
6250
 
6251
+ msgid "Show all repository sets"
6252
+ msgstr ""
6253
+
6222
6254
  msgid "Show an activation key"
6223
6255
  msgstr "Показать ключ активации"
6224
6256
 
@@ -6240,6 +6272,9 @@ msgstr "Показать информацию о правиле фильтрац
6240
6272
  msgid "Show full description"
6241
6273
  msgstr ""
6242
6274
 
6275
+ msgid "Show hosts associated to an activation key"
6276
+ msgstr ""
6277
+
6243
6278
  msgid "Show organization"
6244
6279
  msgstr "Показать организацию"
6245
6280
 
@@ -6249,12 +6284,18 @@ msgstr "Показать версии для ключа активации"
6249
6284
  msgid "Show releases available for the content host"
6250
6285
  msgstr "Показать версии для узла содержимого"
6251
6286
 
6287
+ msgid "Show repositories"
6288
+ msgstr ""
6289
+
6252
6290
  msgid "Show repositories enabled on the host that are known to Katello"
6253
6291
  msgstr ""
6254
6292
 
6255
6293
  msgid "Show the available repository types"
6256
6294
  msgstr "Показать доступные типы репозиториев"
6257
6295
 
6296
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6297
+ msgstr ""
6298
+
6258
6299
  msgid "Shows status of Katello system and it's subcomponents"
6259
6300
  msgstr ""
6260
6301
 
@@ -6312,6 +6353,12 @@ msgstr ""
6312
6353
  msgid "Solve dependencies"
6313
6354
  msgstr ""
6314
6355
 
6356
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6357
+ msgstr ""
6358
+
6359
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6360
+ msgstr ""
6361
+
6315
6362
  msgid "Some hosts are not registered as content hosts and will be ignored."
6316
6363
  msgstr ""
6317
6364
 
@@ -6756,9 +6803,6 @@ msgstr "Синхронизировать"
6756
6803
  msgid "Synchronize Now"
6757
6804
  msgstr "Синхронизировать"
6758
6805
 
6759
- msgid "Synchronize capsule content"
6760
- msgstr "Синхронизировать содержимое капсулы"
6761
-
6762
6806
  msgid "Synchronize repository"
6763
6807
  msgstr "Синхронизировать репозиторий"
6764
6808
 
@@ -6792,7 +6836,7 @@ msgstr ""
6792
6836
  msgid "System purpose attributes updated"
6793
6837
  msgstr ""
6794
6838
 
6795
- 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."
6839
+ 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."
6796
6840
  msgstr ""
6797
6841
 
6798
6842
  msgid "Tag name"
@@ -6870,9 +6914,6 @@ msgstr "Недействительный формат или тип даты н
6870
6914
  msgid "The erratum type must be an array. Invalid value provided"
6871
6915
  msgstr "Недопустимое значение: типы исправлений должны быть представлены в виде массивов. "
6872
6916
 
6873
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
6874
- msgstr ""
6875
-
6876
6917
  msgid "The field to sort the data by. Defaults to the created date."
6877
6918
  msgstr ""
6878
6919
 
@@ -7180,6 +7221,9 @@ msgstr ""
7180
7221
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7181
7222
  msgstr ""
7182
7223
 
7224
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7225
+ msgstr ""
7226
+
7183
7227
  msgid "Timeout when refreshing a manifest (in seconds)"
7184
7228
  msgstr ""
7185
7229
 
@@ -7189,9 +7233,21 @@ msgstr ""
7189
7233
  msgid "Title"
7190
7234
  msgstr "Заголовок"
7191
7235
 
7236
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7237
+ msgstr ""
7238
+
7239
+ msgid "To enable them, add the environment to the host's content source, or "
7240
+ msgstr ""
7241
+
7242
+ msgid "To get started, add a filter rule to this filter"
7243
+ msgstr ""
7244
+
7192
7245
  msgid "To get started, add this host to a host collection."
7193
7246
  msgstr ""
7194
7247
 
7248
+ 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."
7249
+ msgstr ""
7250
+
7195
7251
  msgid "To update the selected host configuration, update hosts manually in the next section."
7196
7252
  msgstr ""
7197
7253
 
@@ -7378,9 +7434,6 @@ msgstr ""
7378
7434
  msgid "Unapplied Errata"
7379
7435
  msgstr "Несохраненные исправления"
7380
7436
 
7381
- msgid "Unassociate units in repository"
7382
- msgstr ""
7383
-
7384
7437
  msgid "Unattach a subscription"
7385
7438
  msgstr "Отключить подписку"
7386
7439
 
@@ -7567,6 +7620,9 @@ msgstr ""
7567
7620
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7568
7621
  msgstr ""
7569
7622
 
7623
+ msgid "Update the host immediately via remote execution"
7624
+ msgstr ""
7625
+
7570
7626
  msgid "Update the information about enabled repositories"
7571
7627
  msgstr "Обновить информацию о подключенных репозиториях"
7572
7628
 
@@ -7594,6 +7650,12 @@ msgstr "Обновить продукт"
7594
7650
  msgid "Updates all packages on the host(s)"
7595
7651
  msgstr "Обновляет все пакеты на узлах"
7596
7652
 
7653
+ msgid "Updates available: Component content view versions have been updated."
7654
+ msgstr ""
7655
+
7656
+ msgid "Updates available: Repositories and/or filters have changed."
7657
+ msgstr ""
7658
+
7597
7659
  msgid "Updating Package..."
7598
7660
  msgstr "Обновление пакета..."
7599
7661
 
@@ -7813,6 +7875,9 @@ msgstr ""
7813
7875
  msgid "View %{view} has not been promoted to %{env}"
7814
7876
  msgstr "Представление %{view} не было перенесено в %{env}"
7815
7877
 
7878
+ msgid "View Filters"
7879
+ msgstr ""
7880
+
7816
7881
  msgid "View Subscription Usage"
7817
7882
  msgstr ""
7818
7883
 
@@ -7825,6 +7890,9 @@ msgstr ""
7825
7890
  msgid "View by"
7826
7891
  msgstr ""
7827
7892
 
7893
+ msgid "View documentation"
7894
+ msgstr ""
7895
+
7828
7896
  msgid "View matching content"
7829
7897
  msgstr ""
7830
7898
 
@@ -7870,6 +7938,9 @@ msgstr "Если «True», список будет ограничиваться
7870
7938
  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."
7871
7939
  msgstr ""
7872
7940
 
7941
+ msgid "Whether Simple Content Access should be enabled for the organization."
7942
+ msgstr ""
7943
+
7873
7944
  msgid "Whether or not the host collection may have unlimited hosts"
7874
7945
  msgstr "Позволяет снять ограничение на количество узлов в коллекции"
7875
7946
 
@@ -7882,6 +7953,9 @@ msgstr "Проверять состояние базовых служб (pulp, c
7882
7953
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7883
7954
  msgstr ""
7884
7955
 
7956
+ msgid "Whether or not to return filters applied to the content view version"
7957
+ msgstr ""
7958
+
7885
7959
  msgid "Whether or not to show all results"
7886
7960
  msgstr "Показывать все результаты"
7887
7961
 
@@ -7927,31 +8001,19 @@ msgstr "Вы не можете настроить parent_id для органи
7927
8001
  msgid "You currently don't have any ${selectedContentType}."
7928
8002
  msgstr ""
7929
8003
 
7930
- msgid "You currently don't have any Content views."
7931
- msgstr ""
7932
-
7933
8004
  msgid "You currently don't have any alternate content sources."
7934
8005
  msgstr ""
7935
8006
 
7936
- msgid "You currently don't have any filters for this content view."
7937
- msgstr ""
7938
-
7939
- msgid "You currently don't have any history for this content view."
8007
+ msgid "You currently don't have any related content views."
7940
8008
  msgstr ""
7941
8009
 
7942
8010
  msgid "You currently don't have any repositories associated with this content."
7943
8011
  msgstr ""
7944
8012
 
7945
- msgid "You currently don't have any repositories to add to this content view."
7946
- msgstr ""
7947
-
7948
8013
  msgid "You currently don't have any repositories to add to this filter."
7949
8014
  msgstr ""
7950
8015
 
7951
- msgid "You currently don't have any versions for this content view."
7952
- msgstr ""
7953
-
7954
- msgid "You currently don\\'t have any related content views."
8016
+ msgid "You currently have no content views to display"
7955
8017
  msgstr ""
7956
8018
 
7957
8019
  msgid "You do not have permissions to delete %s"
@@ -8008,9 +8070,6 @@ msgstr ""
8008
8070
  msgid "Yum"
8009
8071
  msgstr ""
8010
8072
 
8011
- msgid "Yum Metadata: %s"
8012
- msgstr ""
8013
-
8014
8073
  msgid "a content unit"
8015
8074
  msgstr ""
8016
8075
 
@@ -8173,6 +8232,9 @@ msgstr "не может содержать фильтры, если их реп
8173
8232
  msgid "cannot contain more than %s characters"
8174
8233
  msgstr "не может содержать больше %s знаков"
8175
8234
 
8235
+ msgid "change the host's content source."
8236
+ msgstr ""
8237
+
8176
8238
  msgid "checking %s task status"
8177
8239
  msgstr ""
8178
8240
 
@@ -8188,9 +8250,6 @@ msgstr ""
8188
8250
  msgid "composite content view numeric identifier"
8189
8251
  msgstr ""
8190
8252
 
8191
- msgid "conditional package names to include in the package group"
8192
- msgstr ""
8193
-
8194
8253
  msgid "content release version"
8195
8254
  msgstr "версия содержимого"
8196
8255
 
@@ -8245,6 +8304,9 @@ msgstr "идентификаторы версий представлений д
8245
8304
  msgid "content view versions to compare"
8246
8305
  msgstr "версии представлений для сравнения"
8247
8306
 
8307
+ msgid "create a custom product"
8308
+ msgstr ""
8309
+
8248
8310
  msgid "create a filter for a content view"
8249
8311
  msgstr "создать фильтр представления"
8250
8312
 
@@ -8254,9 +8316,6 @@ msgstr ""
8254
8316
  msgid "deb_ids is not an array"
8255
8317
  msgstr ""
8256
8318
 
8257
- msgid "default package names to include in the package group"
8258
- msgstr ""
8259
-
8260
8319
  msgid "delete a filter"
8261
8320
  msgstr "удалить фильтр"
8262
8321
 
@@ -8488,9 +8547,6 @@ msgstr "список идентификаторов репозиториев"
8488
8547
  msgid "list of rpm filename strings to include in published version"
8489
8548
  msgstr ""
8490
8549
 
8491
- msgid "mandatory package names to include in the package group"
8492
- msgstr ""
8493
-
8494
8550
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8495
8551
  msgstr "если эта коллекция не является неограниченной, необходимо настроить число max_hosts"
8496
8552
 
@@ -8518,6 +8574,9 @@ msgstr ""
8518
8574
  msgid "must be one of: %s"
8519
8575
  msgstr ""
8520
8576
 
8577
+ msgid "must be true or false"
8578
+ msgstr ""
8579
+
8521
8580
  msgid "must be unique within one organization"
8522
8581
  msgstr "должно быть уникальным в пределах организации."
8523
8582
 
@@ -8545,9 +8604,6 @@ msgstr "не может начинаться и заканчиваться пр
8545
8604
  msgid "name"
8546
8605
  msgstr "имя"
8547
8606
 
8548
- msgid "name not defined."
8549
- msgstr ""
8550
-
8551
8607
  msgid "name of organization"
8552
8608
  msgstr "имя организации"
8553
8609
 
@@ -8593,21 +8649,12 @@ msgstr "должно быть уникальным в пределах орга
8593
8649
  msgid "only show the repositories readable by this user with this username"
8594
8650
  msgstr ""
8595
8651
 
8596
- msgid "optional package names to include in the package group"
8597
- msgstr ""
8598
-
8599
8652
  msgid "organization ID"
8600
8653
  msgstr "Код организации"
8601
8654
 
8602
8655
  msgid "organization identifier"
8603
8656
  msgstr "идентификатор организации"
8604
8657
 
8605
- msgid "package group description. Defaults to params[:name]"
8606
- msgstr ""
8607
-
8608
- msgid "package group name"
8609
- msgstr ""
8610
-
8611
8658
  msgid "package group: uuid"
8612
8659
  msgstr ""
8613
8660
 
@@ -8686,12 +8733,6 @@ msgstr "идентификатор репозитория"
8686
8733
  msgid "repository source url"
8687
8734
  msgstr "URL источника репозитория"
8688
8735
 
8689
- msgid "repository_id"
8690
- msgstr ""
8691
-
8692
- msgid "repository_id not defined."
8693
- msgstr ""
8694
-
8695
8736
  msgid "root-node of collection contained in responses (default: 'results')"
8696
8737
  msgstr ""
8697
8738
 
@@ -8713,9 +8754,6 @@ msgstr ""
8713
8754
  msgid "service level"
8714
8755
  msgstr "уровень обслуживания"
8715
8756
 
8716
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8717
- msgstr ""
8718
-
8719
8757
  msgid "set true if you want to see only library environments"
8720
8758
  msgstr "присвойте «True», чтобы показать только окружения Library"
8721
8759
 
@@ -8773,9 +8811,6 @@ msgstr ""
8773
8811
  msgid "true if this repository can be published via HTTP"
8774
8812
  msgstr "«true», если репозиторий может быть доступен по HTTP"
8775
8813
 
8776
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8777
- msgstr ""
8778
-
8779
8814
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8780
8815
  msgstr ""
8781
8816
 
@@ -8821,15 +8856,9 @@ msgstr ""
8821
8856
  msgid "waiting for %s to finish the task"
8822
8857
  msgstr ""
8823
8858
 
8824
- msgid "waiting for Pulp to finish the task"
8825
- msgstr "ожидание завершения задачи Pulp"
8826
-
8827
8859
  msgid "waiting for Pulp to finish the task %s"
8828
8860
  msgstr ""
8829
8861
 
8830
- msgid "waiting for Pulp to start the task"
8831
- msgstr "ожидание запуска задачи Pulp"
8832
-
8833
8862
  msgid "waiting for Pulp to start the task %s"
8834
8863
  msgstr ""
8835
8864
 
@@ -8851,6 +8880,9 @@ msgstr "да"
8851
8880
  msgid "{0} items selected"
8852
8881
  msgstr ""
8853
8882
 
8883
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
8884
+ msgstr ""
8885
+
8854
8886
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8855
8887
  msgstr ""
8856
8888