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
@@ -96,8 +96,13 @@ msgstr ""
96
96
  msgid "{{ product.name }}"
97
97
  msgstr ""
98
98
 
99
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
100
+ msgid "{{ repo.last_sync_words }} ago"
101
+ msgstr ""
102
+
99
103
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
100
- msgid "{{ repository.content_counts.ansible_collection || 0 }} Ansible Collections"
104
+ msgid ""
105
+ "{{ repository.content_counts.ansible_collection || 0 }} Ansible Collections"
101
106
  msgstr ""
102
107
 
103
108
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
@@ -105,11 +110,15 @@ msgid "{{ repository.content_counts.deb || 0 }} deb Packages"
105
110
  msgstr ""
106
111
 
107
112
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
108
- msgid "{{ repository.content_counts.docker_manifest || 0 }} Container Image Manifests"
113
+ msgid ""
114
+ "{{ repository.content_counts.docker_manifest || 0 }} Container Image "
115
+ "Manifests"
109
116
  msgstr ""
110
117
 
111
118
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
112
- msgid "{{ repository.content_counts.docker_manifest_list || 0 }} Container Image Manifest Lists"
119
+ msgid ""
120
+ "{{ repository.content_counts.docker_manifest_list || 0 }} Container Image "
121
+ "Manifest Lists"
113
122
  msgstr ""
114
123
 
115
124
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
@@ -161,7 +170,9 @@ msgid "{{urlDescription}}"
161
170
  msgstr ""
162
171
 
163
172
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
164
- msgid "* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath."
173
+ msgid ""
174
+ "* These marked Content View Versions are from Composite Content Views. "
175
+ "Their components needing updating are listed underneath."
165
176
  msgstr ""
166
177
 
167
178
  #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js
@@ -183,11 +194,15 @@ msgid "%count environment(s) can be synchronized: %envs"
183
194
  msgstr ""
184
195
 
185
196
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
186
- msgid "<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>"
197
+ msgid ""
198
+ "<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository."
199
+ "last_sync.result | capitalize}}</a>"
187
200
  msgstr ""
188
201
 
189
202
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
190
- msgid "<b>Additive:</b> new content available during sync will be added to the repository, and no content will be removed."
203
+ msgid ""
204
+ "<b>Additive:</b> new content available during sync will be added to the "
205
+ "repository, and no content will be removed."
191
206
  msgstr ""
192
207
 
193
208
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
@@ -199,11 +214,18 @@ msgid "<b>Issued</b>"
199
214
  msgstr ""
200
215
 
201
216
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
202
- msgid "<b>Mirror Complete</b>: a sync behaves exactly like \"Mirror Content Only\", but also mirrors metadata as well. This is the fastest method, and preserves repository signatures, but is only supported by yum and not by all upstream repositories."
217
+ msgid ""
218
+ "<b>Mirror Complete</b>: a sync behaves exactly like \"Mirror Content Only\", "
219
+ "but also mirrors metadata as well. This is the fastest method, and "
220
+ "preserves repository signatures, but is only supported by yum and not by all "
221
+ "upstream repositories."
203
222
  msgstr ""
204
223
 
205
224
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
206
- msgid "<b>Mirror Content Only</b>: any new content available during sync will be added to the repository and any content removed from the upstream repository will be removed from the local repository."
225
+ msgid ""
226
+ "<b>Mirror Content Only</b>: any new content available during sync will be "
227
+ "added to the repository and any content removed from the upstream repository "
228
+ "will be removed from the local repository."
207
229
  msgstr ""
208
230
 
209
231
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
@@ -237,18 +259,23 @@ msgstr ""
237
259
  #: app/assets/javascripts/bastion_katello/common/views/registration.html
238
260
  msgid ""
239
261
  "<i class=\"fa fa-warning inline-icon\"></i>\n"
240
- " This Host is not currently registered with subscription-manager. Use the <a href=\"/hosts/register\">Register Host</a> workflow to complete registration."
262
+ " This Host is not currently registered with subscription-manager. Use the "
263
+ "<a href=\"/hosts/register\">Register Host</a> workflow to complete "
264
+ "registration."
241
265
  msgstr ""
242
266
 
243
267
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
244
268
  msgid "1 Content Host"
245
- msgid_plural "{{ host.subscription_facet_attributes.virtual_guests.length }} Content Hosts"
269
+ msgid_plural ""
270
+ "{{ host.subscription_facet_attributes.virtual_guests.length }} Content Hosts"
246
271
  msgstr[0] ""
247
272
  msgstr[1] ""
248
273
 
249
274
  #: app/assets/javascripts/bastion_katello/products/views/partials/product-table-sync-status.html
250
275
  msgid "1 repository sync has errors."
251
- msgid_plural "{{ product.sync_summary.error || product.sync_summary.warning }} repository syncs have errors."
276
+ msgid_plural ""
277
+ "{{ product.sync_summary.error || product.sync_summary.warning }} repository "
278
+ "syncs have errors."
252
279
  msgstr[0] ""
253
280
  msgstr[1] ""
254
281
 
@@ -260,12 +287,16 @@ msgstr[1] ""
260
287
 
261
288
  #: app/assets/javascripts/bastion_katello/products/views/partials/product-table-sync-status.html
262
289
  msgid "1 successfully synced repository."
263
- msgid_plural "{{ product.sync_summary.success}} successfully synced repositories."
290
+ msgid_plural ""
291
+ "{{ product.sync_summary.success}} successfully synced repositories."
264
292
  msgstr[0] ""
265
293
  msgstr[1] ""
266
294
 
267
295
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
268
- msgid "A comma-separated list of container image tags to exclude when syncing. Source images are excluded by default because they are often large and unwanted."
296
+ msgid ""
297
+ "A comma-separated list of container image tags to exclude when syncing. "
298
+ "Source images are excluded by default because they are often large and "
299
+ "unwanted."
269
300
  msgstr ""
270
301
 
271
302
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
@@ -273,7 +304,9 @@ msgid "A comma-separated list of container image tags to include when syncing."
273
304
  msgstr ""
274
305
 
275
306
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
276
- msgid "A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>"
307
+ msgid ""
308
+ "A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/"
309
+ "{{ task.id }}\">click for more details</a>"
277
310
  msgstr ""
278
311
 
279
312
  #: app/assets/javascripts/bastion_katello/common/views/subscription-add-or-remove.html
@@ -387,13 +420,15 @@ msgid "Added %x products to sync plan \"%y\"."
387
420
  msgstr ""
388
421
 
389
422
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
390
- msgid "Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\""
423
+ msgid ""
424
+ "Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\""
391
425
  msgstr ""
392
426
 
393
427
  #: app/assets/javascripts/bastion_katello/products/details/repositories/mirroring-policy.service.js
394
428
  msgid "Additive"
395
429
  msgstr ""
396
430
 
431
+ #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html
397
432
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync.html
398
433
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
399
434
  #: app/assets/javascripts/bastion_katello/products/views/products.html
@@ -491,7 +526,9 @@ msgid "An error occurred saving the Sync Plan:"
491
526
  msgstr ""
492
527
 
493
528
  #: app/assets/javascripts/bastion_katello/content-hosts/details/content-host-base-subscriptions.controller.js
494
- msgid "An error occurred trying to auto-attach subscriptions. Please check your log for further information."
529
+ msgid ""
530
+ "An error occurred trying to auto-attach subscriptions. Please check your "
531
+ "log for further information."
495
532
  msgstr ""
496
533
 
497
534
  #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-sync-plan-modal.controller.js
@@ -565,7 +602,8 @@ msgid "Apply {{ errata.errata_id }}"
565
602
  msgstr ""
566
603
 
567
604
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
568
- msgid "Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?"
605
+ msgid ""
606
+ "Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?"
569
607
  msgstr ""
570
608
 
571
609
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
@@ -573,7 +611,9 @@ msgid "Apply {{ errata.errata_id }} to all Content Host(s)?"
573
611
  msgstr ""
574
612
 
575
613
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
576
- msgid "Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content Host(s)?"
614
+ msgid ""
615
+ "Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content "
616
+ "Host(s)?"
577
617
  msgstr ""
578
618
 
579
619
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
@@ -641,7 +681,9 @@ msgid "Architectures"
641
681
  msgstr ""
642
682
 
643
683
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
644
- msgid "Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?"
684
+ msgid ""
685
+ "Are you sure you want to add the {{ table.numSelected }} content host(s) "
686
+ "selected to the host collection(s) chosen?"
645
687
  msgstr ""
646
688
 
647
689
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
@@ -649,43 +691,61 @@ msgid "Are you sure you want to add the sync plan to the selected products(s)?"
649
691
  msgstr ""
650
692
 
651
693
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
652
- msgid "Are you sure you want to apply Errata to content host \"{{ host.name }}\"?"
694
+ msgid ""
695
+ "Are you sure you want to apply Errata to content host \"{{ host.name }}\"?"
653
696
  msgstr ""
654
697
 
655
698
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
656
- msgid "Are you sure you want to apply the {{ table.numSelected }} selected errata to the content hosts chosen?"
699
+ msgid ""
700
+ "Are you sure you want to apply the {{ table.numSelected }} selected errata "
701
+ "to the content hosts chosen?"
657
702
  msgstr ""
658
703
 
659
704
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
660
- msgid "Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?"
705
+ msgid ""
706
+ "Are you sure you want to assign the {{ table.numSelected }} content host(s) "
707
+ "selected to {{ selected.contentView.name }} in {{ selected.environment."
708
+ "name }}?"
661
709
  msgstr ""
662
710
 
663
711
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-destroy-modal.html
664
- msgid "Are you sure you want to delete the {{ table.numSelected }} host(s) selected?"
712
+ msgid ""
713
+ "Are you sure you want to delete the {{ table.numSelected }} host(s) selected?"
665
714
  msgstr ""
666
715
 
667
716
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
668
- msgid "Are you sure you want to disable the {{ table.numSelected }} repository set(s) chosen?"
717
+ msgid ""
718
+ "Are you sure you want to disable the {{ table.numSelected }} repository "
719
+ "set(s) chosen?"
669
720
  msgstr ""
670
721
 
671
722
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
672
- msgid "Are you sure you want to enable the {{ table.numSelected }} repository set(s) chosen?"
723
+ msgid ""
724
+ "Are you sure you want to enable the {{ table.numSelected }} repository "
725
+ "set(s) chosen?"
673
726
  msgstr ""
674
727
 
675
728
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
676
- msgid "Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?"
729
+ msgid ""
730
+ "Are you sure you want to install {{ content.content }} on the "
731
+ "{{ getSelectedSystemIds().length }} system(s) selected?"
677
732
  msgstr ""
678
733
 
679
734
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
680
- msgid "Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?"
735
+ msgid ""
736
+ "Are you sure you want to remove {{ content.content }} from the "
737
+ "{{ getSelectedSystemIds().length }} system(s) selected?"
681
738
  msgstr ""
682
739
 
683
740
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
684
- msgid "Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?"
741
+ msgid ""
742
+ "Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?"
685
743
  msgstr ""
686
744
 
687
745
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
688
- msgid "Are you sure you want to remove Content Credential {{ contentCredential.name }}?"
746
+ msgid ""
747
+ "Are you sure you want to remove Content Credential {{ contentCredential."
748
+ "name }}?"
689
749
  msgstr ""
690
750
 
691
751
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment.html
@@ -693,7 +753,9 @@ msgid "Are you sure you want to remove environment {{ environment.name }}?"
693
753
  msgstr ""
694
754
 
695
755
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-details.html
696
- msgid "Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?"
756
+ msgid ""
757
+ "Are you sure you want to remove Host Collection \"{{ hostCollection."
758
+ "name }}\"?"
697
759
  msgstr ""
698
760
 
699
761
  #: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
@@ -701,7 +763,9 @@ msgid "Are you sure you want to remove product \"{{ product.name }}\"?"
701
763
  msgstr ""
702
764
 
703
765
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
704
- msgid "Are you sure you want to remove repository {{ repositoryWrapper.repository.name }} from all content views?"
766
+ msgid ""
767
+ "Are you sure you want to remove repository {{ repositoryWrapper.repository."
768
+ "name }} from all content views?"
705
769
  msgstr ""
706
770
 
707
771
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
@@ -709,76 +773,114 @@ msgid "Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?"
709
773
  msgstr ""
710
774
 
711
775
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-generic-content.html
712
- msgid "Are you sure you want to remove the {{ table.getSelected()[0].name }} content unit?"
713
- msgid_plural "Are you sure you want to remove the {{ table.numSelected }} content units selected?"
776
+ msgid ""
777
+ "Are you sure you want to remove the {{ table.getSelected()[0].name }} "
778
+ "content unit?"
779
+ msgid_plural ""
780
+ "Are you sure you want to remove the {{ table.numSelected }} content units "
781
+ "selected?"
714
782
  msgstr[0] ""
715
783
  msgstr[1] ""
716
784
 
717
785
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-files.html
718
- msgid "Are you sure you want to remove the {{ table.getSelected()[0].name }} file?"
719
- msgid_plural "Are you sure you want to remove the {{ table.numSelected }} files selected?"
786
+ msgid ""
787
+ "Are you sure you want to remove the {{ table.getSelected()[0].name }} file?"
788
+ msgid_plural ""
789
+ "Are you sure you want to remove the {{ table.numSelected }} files selected?"
720
790
  msgstr[0] ""
721
791
  msgstr[1] ""
722
792
 
723
793
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-debs.html
724
794
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-packages.html
725
- msgid "Are you sure you want to remove the {{ table.getSelected()[0].name }} package?"
726
- msgid_plural "Are you sure you want to remove the {{ table.numSelected }} packages selected?"
795
+ msgid ""
796
+ "Are you sure you want to remove the {{ table.getSelected()[0].name }} "
797
+ "package?"
798
+ msgid_plural ""
799
+ "Are you sure you want to remove the {{ table.numSelected }} packages "
800
+ "selected?"
727
801
  msgstr[0] ""
728
802
  msgstr[1] ""
729
803
 
730
804
  #: app/assets/javascripts/bastion_katello/products/views/products.html
731
- msgid "Are you sure you want to remove the {{ table.getSelected()[0].name }} product?"
732
- msgid_plural "Are you sure you want to remove {{ table.getSelected().length }} products?"
805
+ msgid ""
806
+ "Are you sure you want to remove the {{ table.getSelected()[0].name }} "
807
+ "product?"
808
+ msgid_plural ""
809
+ "Are you sure you want to remove {{ table.getSelected().length }} products?"
733
810
  msgstr[0] ""
734
811
  msgstr[1] ""
735
812
 
736
813
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
737
- msgid "Are you sure you want to remove the {{ table.getSelected()[0].name }} repository?"
738
- msgid_plural "Are you sure you want to remove {{ table.getSelected().length }} repositories?"
814
+ msgid ""
815
+ "Are you sure you want to remove the {{ table.getSelected()[0].name }} "
816
+ "repository?"
817
+ msgid_plural ""
818
+ "Are you sure you want to remove {{ table.getSelected().length }} "
819
+ "repositories?"
739
820
  msgstr[0] ""
740
821
  msgstr[1] ""
741
822
 
742
823
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html
743
- msgid "Are you sure you want to remove the {{ table.numSelected }} Container Image manifest selected?"
744
- msgid_plural "Are you sure you want to remove the {{ table.numSelected }} Container Image manifests selected?"
824
+ msgid ""
825
+ "Are you sure you want to remove the {{ table.numSelected }} Container Image "
826
+ "manifest selected?"
827
+ msgid_plural ""
828
+ "Are you sure you want to remove the {{ table.numSelected }} Container Image "
829
+ "manifests selected?"
745
830
  msgstr[0] ""
746
831
  msgstr[1] ""
747
832
 
748
833
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
749
- msgid "Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?"
834
+ msgid ""
835
+ "Are you sure you want to remove the {{ table.numSelected }} content host(s) "
836
+ "selected from the host collection(s) chosen?"
750
837
  msgstr ""
751
838
 
752
839
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
753
- msgid "Are you sure you want to remove the sync plan from the selected product(s)?"
840
+ msgid ""
841
+ "Are you sure you want to remove the sync plan from the selected product(s)?"
754
842
  msgstr ""
755
843
 
756
844
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
757
- msgid "Are you sure you want to reset to default the {{ table.numSelected }} repository set(s) chosen?"
845
+ msgid ""
846
+ "Are you sure you want to reset to default the {{ table.numSelected }} "
847
+ "repository set(s) chosen?"
758
848
  msgstr ""
759
849
 
760
850
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
761
- msgid "Are you sure you want to restart services on content host \"{{ host.name }}\"?"
851
+ msgid ""
852
+ "Are you sure you want to restart services on content host \"{{ host."
853
+ "name }}\"?"
762
854
  msgstr ""
763
855
 
764
856
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
765
- msgid "Are you sure you want to restart the services on the selected content hosts?"
857
+ msgid ""
858
+ "Are you sure you want to restart the services on the selected content hosts?"
766
859
  msgstr ""
767
860
 
768
861
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html
769
- msgid "Are you sure you want to set the HTTP Proxy to the selected products(s)?"
862
+ msgid ""
863
+ "Are you sure you want to set the HTTP Proxy to the selected products(s)?"
770
864
  msgstr ""
771
865
 
772
866
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
773
- msgid "Are you sure you want to set the Release Version the {{ table.numSelected }} content host(s) selected to {{ selected.release }}?. This action will affect only those Content Hosts that belong to the appropriate Content View and Lifecycle Environment containining that release version."
867
+ msgid ""
868
+ "Are you sure you want to set the Release Version the {{ table.numSelected }} "
869
+ "content host(s) selected to {{ selected.release }}?. This action will affect "
870
+ "only those Content Hosts that belong to the appropriate Content View and "
871
+ "Lifecycle Environment containining that release version."
774
872
  msgstr ""
775
873
 
776
874
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
777
- msgid "Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?"
875
+ msgid ""
876
+ "Are you sure you want to update {{ content.content }} on the "
877
+ "{{ getSelectedSystemIds().length }} system(s) selected?"
778
878
  msgstr ""
779
879
 
780
880
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
781
- msgid "Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?"
881
+ msgid ""
882
+ "Are you sure you want to update all packages on the "
883
+ "{{ getSelectedSystemIds().length }} system(s) selected?"
782
884
  msgstr ""
783
885
 
784
886
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
@@ -832,10 +934,18 @@ msgstr ""
832
934
  msgid "Auto-Attach"
833
935
  msgstr ""
834
936
 
937
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
938
+ msgid "Auto-attach available subscriptions to all selected hosts."
939
+ msgstr ""
940
+
835
941
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
836
942
  msgid "Auto-Attach Details"
837
943
  msgstr ""
838
944
 
945
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
946
+ msgid "Auto-attach uses all available subscriptions, not a selected subset."
947
+ msgstr ""
948
+
839
949
  #: app/assets/javascripts/bastion_katello/common/views/subscription-add-or-remove.html
840
950
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
841
951
  msgid "Automatic"
@@ -874,11 +984,17 @@ msgid "Basic Information"
874
984
  msgstr ""
875
985
 
876
986
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
877
- msgid "Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the"
987
+ msgid ""
988
+ "Below are the repository content sets currently available for this content "
989
+ "host through its subscriptions. For Red Hat subscriptions, additional "
990
+ "content can be made available through the"
878
991
  msgstr ""
879
992
 
880
993
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
881
- msgid "Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the"
994
+ msgid ""
995
+ "Below are the Repository Sets currently available for this activation key "
996
+ "through its subscriptions. For Red Hat subscriptions, additional content can "
997
+ "be made available through the"
882
998
  msgstr ""
883
999
 
884
1000
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
@@ -979,26 +1095,37 @@ msgid "Change Lifecycle Environment"
979
1095
  msgstr ""
980
1096
 
981
1097
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
982
- msgid "Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host."
1098
+ msgid ""
1099
+ "Changing default settings for content hosts that register with this "
1100
+ "activation key requires subscription-manager version 1.10 or newer to be "
1101
+ "installed on that host."
983
1102
  msgstr ""
984
1103
 
985
1104
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
986
- msgid "Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host."
1105
+ msgid ""
1106
+ "Changing default settings requires subscription-manager version 1.10 or "
1107
+ "newer to be installed on this host."
987
1108
  msgstr ""
988
1109
 
989
1110
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
990
- msgid "Changing download policy to \"On Demand\" will also clear the checksum type if set. The repository will use the upstream checksum type to verify downloads."
1111
+ msgid ""
1112
+ "Changing download policy to \"On Demand\" will also clear the checksum type "
1113
+ "if set. The repository will use the upstream checksum type to verify "
1114
+ "downloads."
991
1115
  msgstr ""
992
1116
 
993
1117
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
994
1118
  msgid ""
995
- "Changing the Content View will not affect the Content Host until its next checkin.\n"
996
- " To update the Content Host immediately run the following command:"
1119
+ "Changing the Content View will not affect the Content Host until its next "
1120
+ "checkin.\n"
1121
+ " To update the Content Host immediately run the following "
1122
+ "command:"
997
1123
  msgstr ""
998
1124
 
999
1125
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1000
1126
  msgid ""
1001
- "Changing the Content View will not affect the Content Hosts until their next checkin.\n"
1127
+ "Changing the Content View will not affect the Content Hosts until their next "
1128
+ "checkin.\n"
1002
1129
  " To update the Content Hosts immediately run the following command:"
1003
1130
  msgstr ""
1004
1131
 
@@ -1015,7 +1142,10 @@ msgid "Checksum Type"
1015
1142
  msgstr ""
1016
1143
 
1017
1144
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
1018
- msgid "Choose one of the registry options to discover containers. To examine a private registry choose \"Custom\" and provide the url for the private registry."
1145
+ msgid ""
1146
+ "Choose one of the registry options to discover containers. To examine a "
1147
+ "private registry choose \"Custom\" and provide the url for the private "
1148
+ "registry."
1019
1149
  msgstr ""
1020
1150
 
1021
1151
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -1057,7 +1187,9 @@ msgid "Completed {{ repository.last_sync_words }} ago"
1057
1187
  msgstr ""
1058
1188
 
1059
1189
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
1060
- msgid "Completely deletes the host including VM and disks, and removes all reporting, provisioning, and configuration information."
1190
+ msgid ""
1191
+ "Completely deletes the host including VM and disks, and removes all "
1192
+ "reporting, provisioning, and configuration information."
1061
1193
  msgstr ""
1062
1194
 
1063
1195
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
@@ -1096,7 +1228,8 @@ msgstr ""
1096
1228
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html
1097
1229
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html
1098
1230
  msgid ""
1099
- "Container Image metadata generation has been initiated in the background. Click\n"
1231
+ "Container Image metadata generation has been initiated in the background. "
1232
+ "Click\n"
1100
1233
  " <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
1101
1234
  msgstr ""
1102
1235
 
@@ -1167,6 +1300,10 @@ msgstr ""
1167
1300
  msgid "Content Host Limit"
1168
1301
  msgstr ""
1169
1302
 
1303
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
1304
+ msgid "Content Host Module Stream Management"
1305
+ msgstr ""
1306
+
1170
1307
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1171
1308
  msgid "Content Host Properties"
1172
1309
  msgstr ""
@@ -1179,6 +1316,10 @@ msgstr ""
1179
1316
  msgid "Content Host Status"
1180
1317
  msgstr ""
1181
1318
 
1319
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
1320
+ msgid "Content Host Traces Management"
1321
+ msgstr ""
1322
+
1182
1323
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
1183
1324
  msgid "Content Host:"
1184
1325
  msgstr ""
@@ -1208,7 +1349,12 @@ msgstr ""
1208
1349
 
1209
1350
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
1210
1351
  msgid ""
1211
- "Content synced depends on the specifity of the URL and/or the optional requirements.yaml specified below <a class=\"fa fa-question-circle\" ng-show=\"repository.content_type === 'ansible_collection'\" uib-popover-html=\"collectionURLPopover\" popover-class=\"popover-large\" popover-trigger=\"'outsideClick'\" popover-append-to-body=\"true\" popover-title=\"Upstream URL\">\n"
1352
+ "Content synced depends on the specifity of the URL and/or the optional "
1353
+ "requirements.yaml specified below <a class=\"fa fa-question-circle\" ng-show="
1354
+ "\"repository.content_type === 'ansible_collection'\" uib-popover-html="
1355
+ "\"collectionURLPopover\" popover-class=\"popover-large\" popover-trigger="
1356
+ "\"'outsideClick'\" popover-append-to-body=\"true\" popover-title=\"Upstream "
1357
+ "URL\">\n"
1212
1358
  " </a>"
1213
1359
  msgstr ""
1214
1360
 
@@ -1222,6 +1368,7 @@ msgstr ""
1222
1368
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
1223
1369
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1224
1370
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
1371
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
1225
1372
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html
1226
1373
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-repositories.html
1227
1374
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment.html
@@ -1397,7 +1544,8 @@ msgid "daily"
1397
1544
  msgstr ""
1398
1545
 
1399
1546
  #: app/assets/javascripts/bastion_katello/products/details/partials/sync-status.html
1400
- msgid "Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)"
1547
+ msgid ""
1548
+ "Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)"
1401
1549
  msgstr ""
1402
1550
 
1403
1551
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
@@ -1406,7 +1554,9 @@ msgid "Date"
1406
1554
  msgstr ""
1407
1555
 
1408
1556
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-debs.html
1409
- msgid "deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
1557
+ msgid ""
1558
+ "deb metadata generation has been initiated in the background. Click <a href="
1559
+ "\"{{ taskUrl() }}\">Here</a> to monitor the progress."
1410
1560
  msgstr ""
1411
1561
 
1412
1562
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
@@ -1528,7 +1678,9 @@ msgid "Details for Repository:"
1528
1678
  msgstr ""
1529
1679
 
1530
1680
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
1531
- msgid "Determines whether to require login to pull container images in this lifecycle environment."
1681
+ msgid ""
1682
+ "Determines whether to require login to pull container images in this "
1683
+ "lifecycle environment."
1532
1684
  msgstr ""
1533
1685
 
1534
1686
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
@@ -1571,7 +1723,9 @@ msgid "Distribution Information"
1571
1723
  msgstr ""
1572
1724
 
1573
1725
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
1574
- msgid "Do not require a subscription entitlement certificate for accessing this repository."
1726
+ msgid ""
1727
+ "Do not require a subscription entitlement certificate for accessing this "
1728
+ "repository."
1575
1729
  msgstr ""
1576
1730
 
1577
1731
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html
@@ -1581,7 +1735,8 @@ msgid ""
1581
1735
  msgstr ""
1582
1736
 
1583
1737
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
1584
- msgid "Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>"
1738
+ msgid ""
1739
+ "Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>"
1585
1740
  msgstr ""
1586
1741
 
1587
1742
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
@@ -1653,7 +1808,8 @@ msgid "Environment saved"
1653
1808
  msgstr ""
1654
1809
 
1655
1810
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment.html
1656
- msgid "Environment will also be removed from the following published content views!"
1811
+ msgid ""
1812
+ "Environment will also be removed from the following published content views!"
1657
1813
  msgstr ""
1658
1814
 
1659
1815
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
@@ -1749,7 +1905,9 @@ msgid "File Information"
1749
1905
  msgstr ""
1750
1906
 
1751
1907
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-files.html
1752
- msgid "File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
1908
+ msgid ""
1909
+ "File removal been initiated in the background. Click <a href="
1910
+ "\"{{ taskUrl() }}\">Here</a> to monitor the progress."
1753
1911
  msgstr ""
1754
1912
 
1755
1913
  #: app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details-info.controller.js
@@ -1782,12 +1940,17 @@ msgstr ""
1782
1940
 
1783
1941
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
1784
1942
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
1943
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
1785
1944
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
1786
1945
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
1787
1946
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
1788
1947
  msgid "Filter"
1789
1948
  msgstr ""
1790
1949
 
1950
+ #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
1951
+ msgid "Filter by Environment"
1952
+ msgstr ""
1953
+
1791
1954
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html
1792
1955
  msgid "Filter by Status:"
1793
1956
  msgstr ""
@@ -1803,14 +1966,21 @@ msgid "Finished At"
1803
1966
  msgstr ""
1804
1967
 
1805
1968
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
1806
- msgid "For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1."
1969
+ msgid ""
1970
+ "For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 "
1971
+ "it is recommended to use sha1."
1807
1972
  msgstr ""
1808
1973
 
1809
1974
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
1810
1975
  msgid ""
1811
- "For On Demand synchronization, only the metadata is downloaded during sync and packages are fetched and stored on the filesystem when clients request them.\n"
1812
- " On Demand is not recommended for custom repositories unless the upstream repository maintains older versions of packages within the repository.\n"
1813
- " The Immediate option will download all metadata and packages immediately during the sync."
1976
+ "For On Demand synchronization, only the metadata is downloaded during sync "
1977
+ "and packages are fetched and stored on the filesystem when clients request "
1978
+ "them.\n"
1979
+ " On Demand is not recommended for custom repositories unless the "
1980
+ "upstream repository maintains older versions of packages within the "
1981
+ "repository.\n"
1982
+ " The Immediate option will download all metadata and packages "
1983
+ "immediately during the sync."
1814
1984
  msgstr ""
1815
1985
 
1816
1986
  #: app/assets/javascripts/bastion_katello/products/details/repositories/http-proxy-service.js
@@ -1841,7 +2011,9 @@ msgstr ""
1841
2011
 
1842
2012
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
1843
2013
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
1844
- msgid "Group package actions are being deprecated, and will be removed in a future version."
2014
+ msgid ""
2015
+ "Group package actions are being deprecated, and will be removed in a future "
2016
+ "version."
1845
2017
  msgstr ""
1846
2018
 
1847
2019
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
@@ -1873,6 +2045,10 @@ msgstr ""
1873
2045
  msgid "Host Collection Membership"
1874
2046
  msgstr ""
1875
2047
 
2048
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
2049
+ msgid "Host Collection Membership Management"
2050
+ msgstr ""
2051
+
1876
2052
  #: app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js
1877
2053
  msgid "Host Collection removed."
1878
2054
  msgstr ""
@@ -1925,7 +2101,9 @@ msgid "hourly"
1925
2101
  msgstr ""
1926
2102
 
1927
2103
  #: app/assets/javascripts/bastion_katello/products/details/partials/sync-status.html
1928
- msgid "Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds"
2104
+ msgid ""
2105
+ "Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and "
2106
+ "{{ product.sync_plan.sync_date | date:'s' }} seconds"
1929
2107
  msgstr ""
1930
2108
 
1931
2109
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
@@ -1933,6 +2111,10 @@ msgstr ""
1933
2111
  msgid "HTTP Proxy"
1934
2112
  msgstr ""
1935
2113
 
2114
+ #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html
2115
+ msgid "HTTP Proxy Management"
2116
+ msgstr ""
2117
+
1936
2118
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
1937
2119
  msgid "HTTP Proxy Policy"
1938
2120
  msgstr ""
@@ -1973,7 +2155,8 @@ msgstr ""
1973
2155
 
1974
2156
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
1975
2157
  msgid ""
1976
- "In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n"
2158
+ "In order to browse this repository you must <a ng-href=\"/organizations/"
2159
+ "{{ organization }}/edit\">download the certificate</a>\n"
1977
2160
  " or ask your admin for a certificate."
1978
2161
  msgstr ""
1979
2162
 
@@ -2112,6 +2295,7 @@ msgid "Last reclaim space failed:"
2112
2295
  msgstr ""
2113
2296
 
2114
2297
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
2298
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
2115
2299
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
2116
2300
  #: app/assets/javascripts/bastion_katello/files/details/views/file-repositories.html
2117
2301
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
@@ -2183,11 +2367,15 @@ msgid "Limit"
2183
2367
  msgstr ""
2184
2368
 
2185
2369
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
2186
- msgid "Limit Repository Sets to only those available in this Activation Key's Lifecycle Environment"
2370
+ msgid ""
2371
+ "Limit Repository Sets to only those available in this Activation Key's "
2372
+ "Lifecycle Environment"
2187
2373
  msgstr ""
2188
2374
 
2189
2375
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
2190
- msgid "Limit Repository Sets to only those available in this Host's Lifecycle Environment"
2376
+ msgid ""
2377
+ "Limit Repository Sets to only those available in this Host's Lifecycle "
2378
+ "Environment"
2191
2379
  msgstr ""
2192
2380
 
2193
2381
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
@@ -2303,6 +2491,11 @@ msgstr ""
2303
2491
  msgid "Manifest Type"
2304
2492
  msgstr ""
2305
2493
 
2494
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2495
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2496
+ msgid "Metadata Expiration (Seconds)"
2497
+ msgstr ""
2498
+
2306
2499
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2307
2500
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2308
2501
  msgid "Mirroring Policy"
@@ -2326,7 +2519,8 @@ msgstr ""
2326
2519
 
2327
2520
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-module-streams.html
2328
2521
  msgid ""
2329
- "Module Stream metadata generation has been initiated in the background. Click\n"
2522
+ "Module Stream metadata generation has been initiated in the background. "
2523
+ "Click\n"
2330
2524
  " <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
2331
2525
  msgstr ""
2332
2526
 
@@ -2354,6 +2548,7 @@ msgid "More Details"
2354
2548
  msgstr ""
2355
2549
 
2356
2550
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
2551
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
2357
2552
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
2358
2553
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
2359
2554
  #: app/assets/javascripts/bastion_katello/files/details/views/file-repositories.html
@@ -2384,6 +2579,7 @@ msgstr ""
2384
2579
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
2385
2580
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
2386
2581
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
2582
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
2387
2583
  #: app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
2388
2584
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
2389
2585
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html
@@ -2427,7 +2623,9 @@ msgid "Name"
2427
2623
  msgstr ""
2428
2624
 
2429
2625
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2430
- msgid "Name of the upstream repository you want to sync. Example: 'quay/busybox' or 'fedora/ssh'."
2626
+ msgid ""
2627
+ "Name of the upstream repository you want to sync. Example: 'quay/busybox' or "
2628
+ "'fedora/ssh'."
2431
2629
  msgstr ""
2432
2630
 
2433
2631
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
@@ -2509,7 +2707,13 @@ msgid "No"
2509
2707
  msgstr ""
2510
2708
 
2511
2709
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2512
- msgid "No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\"."
2710
+ msgid ""
2711
+ "No alternate release version choices are available. The available releases "
2712
+ "are based upon what is available in \"{{ host.content_facet_attributes."
2713
+ "content_view.name }}\", the selected <a href=\"/content_views\">content "
2714
+ "view</a> this content host is attached to for the given <a href=\"/"
2715
+ "lifecycle_environments\">lifecycle environment</a>, \"{{ host."
2716
+ "content_facet_attributes.lifecycle_environment.name }}\"."
2513
2717
  msgstr ""
2514
2718
 
2515
2719
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
@@ -2541,11 +2745,15 @@ msgid "No Host Collections match your search."
2541
2745
  msgstr ""
2542
2746
 
2543
2747
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections-table.html
2544
- msgid "No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu."
2748
+ msgid ""
2749
+ "No Host Collections to show, you can add Host Collections after selecting "
2750
+ "'Host Collections' under 'Hosts' in main menu."
2545
2751
  msgstr ""
2546
2752
 
2547
2753
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections-table.html
2548
- msgid "No Host Collections to show, you can add Host Collections after selecting the 'Add' tab."
2754
+ msgid ""
2755
+ "No Host Collections to show, you can add Host Collections after selecting "
2756
+ "the 'Add' tab."
2549
2757
  msgstr ""
2550
2758
 
2551
2759
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html
@@ -2563,6 +2771,10 @@ msgstr ""
2563
2771
  msgid "No matching results."
2564
2772
  msgstr ""
2565
2773
 
2774
+ #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-packages.html
2775
+ msgid "No Packages to show"
2776
+ msgstr ""
2777
+
2566
2778
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
2567
2779
  msgid "No products are available to add to this Sync Plan."
2568
2780
  msgstr ""
@@ -2628,6 +2840,7 @@ msgid "Not started"
2628
2840
  msgstr ""
2629
2841
 
2630
2842
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
2843
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
2631
2844
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
2632
2845
  #: app/assets/javascripts/bastion_katello/files/details/views/file-repositories.html
2633
2846
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
@@ -2650,17 +2863,26 @@ msgstr ""
2650
2863
 
2651
2864
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
2652
2865
  msgid ""
2653
- "One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n"
2654
- " will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n"
2655
- " Environment. To install these errata immediately on hosts after publishing check the box below."
2866
+ "One or more of the selected Errata are not Installable via your published "
2867
+ "Content View versions running on the selected hosts. The new Content View "
2868
+ "Versions (specified below)\n"
2869
+ " will be created which will make this Errata Installable in the host's "
2870
+ "Environment. This new version will replace the current version in your "
2871
+ "host's Lifecycle\n"
2872
+ " Environment. To install these errata immediately on hosts after "
2873
+ "publishing check the box below."
2656
2874
  msgstr ""
2657
2875
 
2658
2876
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html
2659
- msgid "One or more packages are not showing up in the local repository even though they exist in the upstream repository."
2877
+ msgid ""
2878
+ "One or more packages are not showing up in the local repository even though "
2879
+ "they exist in the upstream repository."
2660
2880
  msgstr ""
2661
2881
 
2662
2882
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
2663
- msgid "Only show content hosts where the errata is currently installable in the host's Lifecycle Environment."
2883
+ msgid ""
2884
+ "Only show content hosts where the errata is currently installable in the "
2885
+ "host's Lifecycle Environment."
2664
2886
  msgstr ""
2665
2887
 
2666
2888
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -2682,11 +2904,14 @@ msgid "Only show Packages that are Upgradable on one or more Content Hosts"
2682
2904
  msgstr ""
2683
2905
 
2684
2906
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-add-subscriptions.html
2685
- msgid "Only show Subscriptions for products not already covered by a Subscription"
2907
+ msgid ""
2908
+ "Only show Subscriptions for products not already covered by a Subscription"
2686
2909
  msgstr ""
2687
2910
 
2688
2911
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-add-subscriptions.html
2689
- msgid "Only show Subscriptions which can be applied to products installed on this Host"
2912
+ msgid ""
2913
+ "Only show Subscriptions which can be applied to products installed on this "
2914
+ "Host"
2690
2915
  msgstr ""
2691
2916
 
2692
2917
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-add-subscriptions.html
@@ -2721,7 +2946,8 @@ msgid "OS"
2721
2946
  msgstr ""
2722
2947
 
2723
2948
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
2724
- msgid "OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>"
2949
+ msgid ""
2950
+ "OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>"
2725
2951
  msgstr ""
2726
2952
 
2727
2953
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
@@ -2836,7 +3062,9 @@ msgid "Password"
2836
3062
  msgstr ""
2837
3063
 
2838
3064
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2839
- msgid "Password of the upstream repository user for authentication. Leave empty if repository does not require authentication."
3065
+ msgid ""
3066
+ "Password of the upstream repository user for authentication. Leave empty if "
3067
+ "repository does not require authentication."
2840
3068
  msgstr ""
2841
3069
 
2842
3070
  #: app/assets/javascripts/bastion_katello/content-credentials/new/views/new-content-credential.html
@@ -2860,7 +3088,9 @@ msgstr ""
2860
3088
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
2861
3089
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html
2862
3090
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html
2863
- msgid "Performing host package actions is disabled because Katello is not configured for Remote Execution or Katello Agent."
3091
+ msgid ""
3092
+ "Performing host package actions is disabled because Katello is not "
3093
+ "configured for Remote Execution or Katello Agent."
2864
3094
  msgstr ""
2865
3095
 
2866
3096
  #: app/assets/javascripts/bastion_katello/subscriptions/views/subscription-type.html
@@ -2904,6 +3134,7 @@ msgstr ""
2904
3134
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2905
3135
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
2906
3136
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
3137
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
2907
3138
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html
2908
3139
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-docker.html
2909
3140
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-repositories.html
@@ -3032,7 +3263,8 @@ msgstr ""
3032
3263
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
3033
3264
  msgid ""
3034
3265
  "Recalculate\n"
3035
- " <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>"
3266
+ " <i class=\"fa fa-spinner fa-spin\" ng-show="
3267
+ "\"calculatingApplicability\"></i>"
3036
3268
  msgstr ""
3037
3269
 
3038
3270
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details-reclaim-space-modal.html
@@ -3279,6 +3511,7 @@ msgstr ""
3279
3511
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
3280
3512
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
3281
3513
  #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
3514
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html
3282
3515
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
3283
3516
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum.html
3284
3517
  #: app/assets/javascripts/bastion_katello/packages/details/views/package.html
@@ -3324,7 +3557,6 @@ msgstr ""
3324
3557
  msgid "Repositories to Create"
3325
3558
  msgstr ""
3326
3559
 
3327
- #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
3328
3560
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-docker.html
3329
3561
  msgid "Repository"
3330
3562
  msgstr ""
@@ -3358,8 +3590,6 @@ msgstr ""
3358
3590
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
3359
3591
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
3360
3592
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
3361
- #: app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
3362
- #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html
3363
3593
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
3364
3594
  msgid "Repository Name"
3365
3595
  msgstr ""
@@ -3383,6 +3613,10 @@ msgstr ""
3383
3613
  msgid "Repository Sets"
3384
3614
  msgstr ""
3385
3615
 
3616
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
3617
+ msgid "Repository Sets Management"
3618
+ msgstr ""
3619
+
3386
3620
  #: app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js
3387
3621
  #: app/assets/javascripts/bastion_katello/content-hosts/details/content-host-repository-sets.controller.js
3388
3622
  msgid "Repository Sets settings saved successfully."
@@ -3397,7 +3631,9 @@ msgid "Repository URL"
3397
3631
  msgstr ""
3398
3632
 
3399
3633
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
3400
- msgid "Repository will also be removed from the following published content view versions!"
3634
+ msgid ""
3635
+ "Repository will also be removed from the following published content view "
3636
+ "versions!"
3401
3637
  msgstr ""
3402
3638
 
3403
3639
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync.html
@@ -3560,15 +3796,21 @@ msgid "Select Content View"
3560
3796
  msgstr ""
3561
3797
 
3562
3798
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html
3563
- msgid "Selecting \"Complete Sync\" will cause only yum/deb repositories of the selected product to be synced."
3799
+ msgid ""
3800
+ "Selecting \"Complete Sync\" will cause only yum/deb repositories of the "
3801
+ "selected product to be synced."
3564
3802
  msgstr ""
3565
3803
 
3566
3804
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
3567
- msgid "Selecting this option will exclude SRPMs from repository synchronization."
3805
+ msgid ""
3806
+ "Selecting this option will exclude SRPMs from repository synchronization."
3568
3807
  msgstr ""
3569
3808
 
3570
3809
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
3571
- msgid "Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification."
3810
+ msgid ""
3811
+ "Selecting this option will result in Katello verifying that the upstream "
3812
+ "url's SSL certificates are signed by a trusted CA. Unselect if you do not "
3813
+ "want this verification."
3572
3814
  msgstr ""
3573
3815
 
3574
3816
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html
@@ -3607,6 +3849,13 @@ msgstr ""
3607
3849
  msgid "Size"
3608
3850
  msgstr ""
3609
3851
 
3852
+ #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
3853
+ msgid ""
3854
+ "Skip dependency solving for a significant speed increase. If the update "
3855
+ "cannot be applied to the host, delete the incremental content view version "
3856
+ "and retry the application with dependency solving turned on."
3857
+ msgstr ""
3858
+
3610
3859
  #: app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js
3611
3860
  msgid "Smart proxy currently reclaiming space..."
3612
3861
  msgstr ""
@@ -3630,8 +3879,10 @@ msgstr ""
3630
3879
 
3631
3880
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
3632
3881
  msgid ""
3633
- "Some of the Errata shown below may not be installable as they are not in this Content Host's\n"
3634
- " Content View and Lifecycle Environment. In order to apply such Errata an Incremental Update is required."
3882
+ "Some of the Errata shown below may not be installable as they are not in "
3883
+ "this Content Host's\n"
3884
+ " Content View and Lifecycle Environment. In order to apply such "
3885
+ "Errata an Incremental Update is required."
3635
3886
  msgstr ""
3636
3887
 
3637
3888
  #: app/assets/javascripts/bastion_katello/common/api-error-handler.service.js
@@ -3750,7 +4001,9 @@ msgid "Subscription UUID"
3750
4001
  msgstr ""
3751
4002
 
3752
4003
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
3753
- msgid "subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\""
4004
+ msgid ""
4005
+ "subscription-manager register --org=\"{{ activationKey.organization."
4006
+ "label }}\" --activationkey=\"{{ activationKey.name }}\""
3754
4007
  msgstr ""
3755
4008
 
3756
4009
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
@@ -3843,7 +4096,10 @@ msgid "Sync Enabled"
3843
4096
  msgstr ""
3844
4097
 
3845
4098
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html
3846
- msgid "Sync even if the upstream metadata appears to have no change. This option is only relevant for yum/deb repositories and will take longer than an optimized sync. Choose this option if:"
4099
+ msgid ""
4100
+ "Sync even if the upstream metadata appears to have no change. This option is "
4101
+ "only relevant for yum/deb repositories and will take longer than an "
4102
+ "optimized sync. Choose this option if:"
3847
4103
  msgstr ""
3848
4104
 
3849
4105
  #: app/assets/javascripts/bastion_katello/products/details/partials/sync-status.html
@@ -3870,6 +4126,10 @@ msgstr ""
3870
4126
  msgid "Sync Plan created and assigned to product."
3871
4127
  msgstr ""
3872
4128
 
4129
+ #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
4130
+ msgid "Sync Plan Management"
4131
+ msgstr ""
4132
+
3873
4133
  #: app/assets/javascripts/bastion_katello/products/new/new-sync-plan-modal.controller.js
3874
4134
  msgid "Sync Plan saved"
3875
4135
  msgstr ""
@@ -3929,7 +4189,10 @@ msgid "System Purpose"
3929
4189
  msgstr ""
3930
4190
 
3931
4191
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3932
- 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."
4192
+ msgid ""
4193
+ "System purpose enables you to set the system's intended use on your network "
4194
+ "and improves reporting accuracy in the Subscriptions service of the Red Hat "
4195
+ "Hybrid Cloud Console."
3933
4196
  msgstr ""
3934
4197
 
3935
4198
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
@@ -3961,9 +4224,13 @@ msgstr ""
3961
4224
 
3962
4225
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
3963
4226
  msgid ""
3964
- "The <i>Registry Name Pattern</i> overrides the default name by which container images may be pulled from the server. (By default this name is a combination of Organization, Lifecycle Environment, Content View, Product, and Repository labels.)\n"
4227
+ "The <i>Registry Name Pattern</i> overrides the default name by which "
4228
+ "container images may be pulled from the server. (By default this name is a "
4229
+ "combination of Organization, Lifecycle Environment, Content View, Product, "
4230
+ "and Repository labels.)\n"
3965
4231
  "\n"
3966
- " <br><br>The name may be constructed using ERB syntax. Variables available for use are:\n"
4232
+ " <br><br>The name may be constructed using ERB syntax. Variables "
4233
+ "available for use are:\n"
3967
4234
  "\n"
3968
4235
  " <pre>\n"
3969
4236
  "organization.name\n"
@@ -3981,16 +4248,23 @@ msgid ""
3981
4248
  "\n"
3982
4249
  " Examples:\n"
3983
4250
  " <pre>\n"
3984
- "&lt;%= organization.label %&gt;-&lt;%= lifecycle_environment.label %&gt;-&lt;%= content_view.label %&gt;-&lt;%= product.label %&gt;-&lt;%= repository.label %&gt;\n"
3985
- "&lt;%= organization.label %&gt;/&lt;%= repository.docker_upstream_name %&gt;</pre>"
4251
+ "&lt;%= organization.label %&gt;-&lt;%= lifecycle_environment.label %&gt;-&lt;"
4252
+ "%= content_view.label %&gt;-&lt;%= product.label %&gt;-&lt;%= repository."
4253
+ "label %&gt;\n"
4254
+ "&lt;%= organization.label %&gt;/&lt;%= repository.docker_upstream_name %&gt;"
4255
+ "</pre>"
3986
4256
  msgstr ""
3987
4257
 
3988
4258
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
3989
- msgid "The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts."
4259
+ msgid ""
4260
+ "The Content View or Lifecycle Environment needs to be updated in order to "
4261
+ "make errata available to these hosts."
3990
4262
  msgstr ""
3991
4263
 
3992
4264
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
3993
- msgid "The following actions can be performed on content hosts in this host collection:"
4265
+ msgid ""
4266
+ "The following actions can be performed on content hosts in this host "
4267
+ "collection:"
3994
4268
  msgstr ""
3995
4269
 
3996
4270
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-applicable.html
@@ -4000,13 +4274,17 @@ msgstr ""
4000
4274
 
4001
4275
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-installed.html
4002
4276
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html
4003
- msgid "The host has not reported any installed packages, registering with subscription-manager should cause these to be reported."
4277
+ msgid ""
4278
+ "The host has not reported any installed packages, registering with "
4279
+ "subscription-manager should cause these to be reported."
4004
4280
  msgstr ""
4005
4281
 
4006
4282
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
4007
4283
  msgid ""
4008
- "The host requires being attached to a content view and the lifecycle environment you have chosen has no content views promoted to it.\n"
4009
- " See the <a href=\"/content_views\">content views page</a> to manage and promote a content view."
4284
+ "The host requires being attached to a content view and the lifecycle "
4285
+ "environment you have chosen has no content views promoted to it.\n"
4286
+ " See the <a href=\"/content_views\">content views page</a> to "
4287
+ "manage and promote a content view."
4010
4288
  msgstr ""
4011
4289
 
4012
4290
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
@@ -4014,30 +4292,40 @@ msgid "The maximum number of versions of each package to keep."
4014
4292
  msgstr ""
4015
4293
 
4016
4294
  #: app/assets/javascripts/bastion_katello/organizations/views/organization-selector.html
4017
- msgid "The page you are attempting to access requires selecting a specific organization."
4295
+ msgid ""
4296
+ "The page you are attempting to access requires selecting a specific "
4297
+ "organization."
4018
4298
  msgstr ""
4019
4299
 
4020
4300
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-actions.html
4021
4301
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-installed.html
4022
- msgid "The remote execution feature is required to manage packages on this Host."
4302
+ msgid ""
4303
+ "The remote execution feature is required to manage packages on this Host."
4023
4304
  msgstr ""
4024
4305
 
4025
4306
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
4026
- msgid "The Remote Execution plugin needs to be installed in order to resolve Traces."
4307
+ msgid ""
4308
+ "The Remote Execution plugin needs to be installed in order to resolve Traces."
4027
4309
  msgstr ""
4028
4310
 
4029
4311
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
4030
4312
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4031
- msgid "The repository will be enabled by default on content hosts with the selected architecture."
4313
+ msgid ""
4314
+ "The repository will be enabled by default on content hosts with the selected "
4315
+ "architecture."
4032
4316
  msgstr ""
4033
4317
 
4034
4318
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
4035
4319
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4036
- msgid "The repository will be enabled by default on content hosts with the selected OS version."
4320
+ msgid ""
4321
+ "The repository will be enabled by default on content hosts with the selected "
4322
+ "OS version."
4037
4323
  msgstr ""
4038
4324
 
4039
4325
  #: app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
4040
- msgid "The selected environment contains no Content Views, please select a different environment."
4326
+ msgid ""
4327
+ "The selected environment contains no Content Views, please select a "
4328
+ "different environment."
4041
4329
  msgstr ""
4042
4330
 
4043
4331
  #: app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
@@ -4053,12 +4341,16 @@ msgid "The URL to receive a session token from, e.g. used with Automation Hub."
4053
4341
  msgstr ""
4054
4342
 
4055
4343
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
4056
- msgid "There are {{ errataCount }} total Errata in this organization but none match the above filters."
4344
+ msgid ""
4345
+ "There are {{ errataCount }} total Errata in this organization but none match "
4346
+ "the above filters."
4057
4347
  msgstr ""
4058
4348
 
4059
4349
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
4060
4350
  #: app/assets/javascripts/bastion_katello/packages/views/packages.html
4061
- msgid "There are {{ packageCount }} total Packages in this organization but none match the above filters."
4351
+ msgid ""
4352
+ "There are {{ packageCount }} total Packages in this organization but none "
4353
+ "match the above filters."
4062
4354
  msgstr ""
4063
4355
 
4064
4356
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
@@ -4079,7 +4371,9 @@ msgid "There are no Errata associated with this Content Host to display."
4079
4371
  msgstr ""
4080
4372
 
4081
4373
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
4082
- msgid "There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page."
4374
+ msgid ""
4375
+ "There are no Errata in this organization. Create one or more Products with "
4376
+ "Errata to view Errata on this page."
4083
4377
  msgstr ""
4084
4378
 
4085
4379
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
@@ -4087,7 +4381,9 @@ msgid "There are no Errata to display."
4087
4381
  msgstr ""
4088
4382
 
4089
4383
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
4090
- msgid "There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu."
4384
+ msgid ""
4385
+ "There are no Host Collections available. You can create new Host Collections "
4386
+ "after selecting 'Host Collections' under 'Hosts' in main menu."
4091
4387
  msgstr ""
4092
4388
 
4093
4389
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
@@ -4097,11 +4393,15 @@ msgstr ""
4097
4393
 
4098
4394
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
4099
4395
  #: app/assets/javascripts/bastion_katello/packages/views/packages.html
4100
- msgid "There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page."
4396
+ msgid ""
4397
+ "There are no Packages in this organization. Create one or more Products "
4398
+ "with Packages to view Packages on this page."
4101
4399
  msgstr ""
4102
4400
 
4103
4401
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
4104
- msgid "There are no Sync Plans available. You can create new Sync Plans after selecting 'Sync Plans' under 'Hosts' in main menu."
4402
+ msgid ""
4403
+ "There are no Sync Plans available. You can create new Sync Plans after "
4404
+ "selecting 'Sync Plans' under 'Hosts' in main menu."
4105
4405
  msgstr ""
4106
4406
 
4107
4407
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
@@ -4110,17 +4410,23 @@ msgid "There are no Traces to display."
4110
4410
  msgstr ""
4111
4411
 
4112
4412
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
4113
- msgid "There is currently an Incremental Update task in progress. This update must finish before applying existing updates."
4413
+ msgid ""
4414
+ "There is currently an Incremental Update task in progress. This update must "
4415
+ "finish before applying existing updates."
4114
4416
  msgstr ""
4115
4417
 
4116
4418
  #: app/assets/javascripts/bastion_katello/content-hosts/views/register.html
4117
- msgid "These instructions will be removed in a future release. NEW: To register a content host without following these manual steps, see <a href=\"https://{{ katelloHostname }}/hosts/register\">Register Host</a>"
4419
+ msgid ""
4420
+ "These instructions will be removed in a future release. NEW: To register a "
4421
+ "content host without following these manual steps, see <a href=\"https://"
4422
+ "{{ katelloHostname }}/hosts/register\">Register Host</a>"
4118
4423
  msgstr ""
4119
4424
 
4120
4425
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
4121
4426
  msgid ""
4122
4427
  "This action will affect only those Content Hosts that require a change.\n"
4123
- " If the Content Host does not have the selected Subscription no action will take place."
4428
+ " If the Content Host does not have the selected Subscription no "
4429
+ "action will take place."
4124
4430
  msgstr ""
4125
4431
 
4126
4432
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html
@@ -4128,7 +4434,8 @@ msgid "This activation key is not associated with any content hosts."
4128
4434
  msgstr ""
4129
4435
 
4130
4436
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
4131
- msgid "This activation key may be used during system registration. For example:"
4437
+ msgid ""
4438
+ "This activation key may be used during system registration. For example:"
4132
4439
  msgstr ""
4133
4440
 
4134
4441
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
@@ -4139,18 +4446,30 @@ msgstr ""
4139
4446
  msgid "This Container Image Tag is not present in any Lifecycle Environments."
4140
4447
  msgstr ""
4141
4448
 
4449
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
4450
+ msgid "This Container Image Tag is not present in any Repositories."
4451
+ msgstr ""
4452
+
4142
4453
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
4143
4454
  msgid ""
4144
- "This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n"
4145
- " Change the setting \"Delete Host upon Unregister\" to false on the <a href=\"/settings\">settings page</a> to prevent this."
4455
+ "This operation may also remove managed resources linked to the host such as "
4456
+ "virtual machines and DNS records.\n"
4457
+ " Change the setting \"Delete Host upon Unregister\" to false on the "
4458
+ "<a href=\"/settings\">settings page</a> to prevent this."
4146
4459
  msgstr ""
4147
4460
 
4148
4461
  #: app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html
4149
- msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories."
4462
+ msgid ""
4463
+ "This organization has Simple Content Access enabled. Hosts are not required "
4464
+ "to have subscriptions attached to access repositories."
4150
4465
  msgstr ""
4151
4466
 
4152
4467
  #: app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html
4153
- msgid "This organization is not using <a target=\"_blank\" href=\"https://access.redhat.com/articles/simple-content-access\">Simple Content Access.</a> Entitlement-based subscription management is deprecated and will be removed in a future version."
4468
+ msgid ""
4469
+ "This organization is not using <a target=\"_blank\" href=\"https://access."
4470
+ "redhat.com/articles/simple-content-access\">Simple Content Access.</a> "
4471
+ "Entitlement-based subscription management is deprecated and will be removed "
4472
+ "in a future version."
4154
4473
  msgstr ""
4155
4474
 
4156
4475
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
@@ -4170,7 +4489,9 @@ msgid "Toggle Dropdown"
4170
4489
  msgstr ""
4171
4490
 
4172
4491
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4173
- msgid "Token of the upstream repository user for authentication. Leave empty if repository does not require authentication."
4492
+ msgid ""
4493
+ "Token of the upstream repository user for authentication. Leave empty if "
4494
+ "repository does not require authentication."
4174
4495
  msgstr ""
4175
4496
 
4176
4497
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
@@ -4179,7 +4500,9 @@ msgstr ""
4179
4500
 
4180
4501
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
4181
4502
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
4182
- msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
4503
+ msgid ""
4504
+ "Tracer helps administrators identify applications that need to be restarted "
4505
+ "after a system is patched."
4183
4506
  msgstr ""
4184
4507
 
4185
4508
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
@@ -4192,7 +4515,9 @@ msgid "Traces for:"
4192
4515
  msgstr ""
4193
4516
 
4194
4517
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
4195
- msgid "Turn on Setting > Content > Allow deleting repositories in published content views"
4518
+ msgid ""
4519
+ "Turn on Setting > Content > Allow deleting repositories in published content "
4520
+ "views"
4196
4521
  msgstr ""
4197
4522
 
4198
4523
  #: app/assets/javascripts/bastion_katello/common/views/subscription-add-or-remove.html
@@ -4253,7 +4578,9 @@ msgid "Unregister Options:"
4253
4578
  msgstr ""
4254
4579
 
4255
4580
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
4256
- msgid "Unregister the host as a subscription consumer. Provisioning and configuration information is preserved."
4581
+ msgid ""
4582
+ "Unregister the host as a subscription consumer. Provisioning and "
4583
+ "configuration information is preserved."
4257
4584
  msgstr ""
4258
4585
 
4259
4586
  #: app/assets/javascripts/bastion_katello/content-credentials/content-type.filter.js
@@ -4338,7 +4665,10 @@ msgstr ""
4338
4665
 
4339
4666
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4340
4667
  msgid ""
4341
- "Upload Requirements.yml file <a class=\"fa fa-question-circle\" ng-show=\"repository.content_type === 'ansible_collection'\" uib-popover-html=\"requirementPopover\" popover-class=\"popover-large\" popover-trigger=\"'outsideClick'\" popover-append-to-body=\"true\">\n"
4668
+ "Upload Requirements.yml file <a class=\"fa fa-question-circle\" ng-show="
4669
+ "\"repository.content_type === 'ansible_collection'\" uib-popover-html="
4670
+ "\"requirementPopover\" popover-class=\"popover-large\" popover-trigger="
4671
+ "\"'outsideClick'\" popover-append-to-body=\"true\">\n"
4342
4672
  " </a>"
4343
4673
  msgstr ""
4344
4674
 
@@ -4385,7 +4715,9 @@ msgid "Url"
4385
4715
  msgstr ""
4386
4716
 
4387
4717
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4388
- msgid "URL of the registry you want to sync. Example: https://registry-1.docker.io/ or https://quay.io/"
4718
+ msgid ""
4719
+ "URL of the registry you want to sync. Example: https://registry-1.docker.io/ "
4720
+ "or https://quay.io/"
4389
4721
  msgstr ""
4390
4722
 
4391
4723
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
@@ -4394,7 +4726,11 @@ msgstr ""
4394
4726
 
4395
4727
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4396
4728
  msgid ""
4397
- "URL to the repository base. Example: http://ftp.de.debian.org/debian/ <a class=\"fa fa-question-circle\" ng-show=\"repository.content_type === 'deb'\" uib-popover-html=\"debURLPopover\" popover-class=\"popover-large\" popover-trigger=\"'outsideClick'\" popover-append-to-body=\"true\" popover-title=\"Upstream URL\">\n"
4729
+ "URL to the repository base. Example: http://ftp.de.debian.org/debian/ <a "
4730
+ "class=\"fa fa-question-circle\" ng-show=\"repository.content_type === "
4731
+ "'deb'\" uib-popover-html=\"debURLPopover\" popover-class=\"popover-large\" "
4732
+ "popover-trigger=\"'outsideClick'\" popover-append-to-body=\"true\" popover-"
4733
+ "title=\"Upstream URL\">\n"
4398
4734
  " </a>"
4399
4735
  msgstr ""
4400
4736
 
@@ -4412,7 +4748,9 @@ msgid "Use specific HTTP Proxy"
4412
4748
  msgstr ""
4413
4749
 
4414
4750
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
4415
- msgid "Use the cancel button on content view selection to revert your lifecycle environment selection."
4751
+ msgid ""
4752
+ "Use the cancel button on content view selection to revert your lifecycle "
4753
+ "environment selection."
4416
4754
  msgstr ""
4417
4755
 
4418
4756
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
@@ -4432,7 +4770,9 @@ msgid "Username"
4432
4770
  msgstr ""
4433
4771
 
4434
4772
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4435
- msgid "Username of the upstream repository user for authentication. Leave empty if repository does not require authentication."
4773
+ msgid ""
4774
+ "Username of the upstream repository user for authentication. Leave empty if "
4775
+ "repository does not require authentication."
4436
4776
  msgstr ""
4437
4777
 
4438
4778
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
@@ -4536,7 +4876,10 @@ msgstr ""
4536
4876
 
4537
4877
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details-reclaim-space-modal.html
4538
4878
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories-reclaim-space-modal.html
4539
- msgid "Warning: reclaiming space for an \"On Demand\" repository will delete all cached content units. Take precaution when cleaning custom repositories whose upstream parents don't keep old package versions."
4879
+ msgid ""
4880
+ "Warning: reclaiming space for an \"On Demand\" repository will delete all "
4881
+ "cached content units. Take precaution when cleaning custom repositories "
4882
+ "whose upstream parents don't keep old package versions."
4540
4883
  msgstr ""
4541
4884
 
4542
4885
  #: app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js
@@ -4545,28 +4888,51 @@ msgid "weekly"
4545
4888
  msgstr ""
4546
4889
 
4547
4890
  #: app/assets/javascripts/bastion_katello/products/details/partials/sync-status.html
4548
- msgid "Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)"
4891
+ msgid ""
4892
+ "Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product."
4893
+ "sync_plan.sync_date | date:'mediumTime' }} (Server Time)"
4549
4894
  msgstr ""
4550
4895
 
4551
4896
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
4552
- msgid "When Auto Attach is disabled, registering systems will be attached to all associated subscriptions."
4897
+ msgid ""
4898
+ "When Auto Attach is disabled, registering systems will be attached to all "
4899
+ "associated subscriptions."
4900
+ msgstr ""
4901
+
4902
+ #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
4903
+ msgid ""
4904
+ "When Auto Attach is enabled, registering systems will be attached to all "
4905
+ "associated custom products and only associated Red Hat subscriptions "
4906
+ "required to satisfy the system's installed products."
4553
4907
  msgstr ""
4554
4908
 
4555
4909
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4556
4910
  msgid ""
4557
- "Whitespace-separated list of components to sync (leave clear to sync all). Example: main <a class=\"fa fa-question-circle\" ng-show=\"repository.content_type === 'deb'\" uib-popover-html=\"componentPopover\" popover-class=\"popover-large\" popover-trigger=\"'outsideClick'\" popover-append-to-body=\"true\" popover-title=\"Components\">\n"
4911
+ "Whitespace-separated list of components to sync (leave clear to sync all). "
4912
+ "Example: main <a class=\"fa fa-question-circle\" ng-show=\"repository."
4913
+ "content_type === 'deb'\" uib-popover-html=\"componentPopover\" popover-class="
4914
+ "\"popover-large\" popover-trigger=\"'outsideClick'\" popover-append-to-body="
4915
+ "\"true\" popover-title=\"Components\">\n"
4558
4916
  " </a>"
4559
4917
  msgstr ""
4560
4918
 
4561
4919
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4562
4920
  msgid ""
4563
- "Whitespace-separated list of processor architectures to sync (leave clear to sync all). Example: amd64 <a class=\"fa fa-question-circle\" ng-show=\"repository.content_type === 'deb'\" uib-popover-html=\"archPopover\" popover-class=\"popover-large\" popover-trigger=\"'outsideClick'\" popover-append-to-body=\"true\" popover-title=\"Architectures\">\n"
4921
+ "Whitespace-separated list of processor architectures to sync (leave clear to "
4922
+ "sync all). Example: amd64 <a class=\"fa fa-question-circle\" ng-show="
4923
+ "\"repository.content_type === 'deb'\" uib-popover-html=\"archPopover\" "
4924
+ "popover-class=\"popover-large\" popover-trigger=\"'outsideClick'\" popover-"
4925
+ "append-to-body=\"true\" popover-title=\"Architectures\">\n"
4564
4926
  " </a>"
4565
4927
  msgstr ""
4566
4928
 
4567
4929
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4568
4930
  msgid ""
4569
- "Whitespace-separated list of releases/distributions to sync (required for syncing). Example: buster <a class=\"fa fa-question-circle\" ng-show=\"repository.content_type === 'deb'\" uib-popover-html=\"distPopover\" popover-class=\"popover-large\" popover-trigger=\"'outsideClick'\" popover-append-to-body=\"true\" popover-title=\"Releases/Distributions\">\n"
4931
+ "Whitespace-separated list of releases/distributions to sync (required for "
4932
+ "syncing). Example: buster <a class=\"fa fa-question-circle\" ng-show="
4933
+ "\"repository.content_type === 'deb'\" uib-popover-html=\"distPopover\" "
4934
+ "popover-class=\"popover-large\" popover-trigger=\"'outsideClick'\" popover-"
4935
+ "append-to-body=\"true\" popover-title=\"Releases/Distributions\">\n"
4570
4936
  " </a>"
4571
4937
  msgstr ""
4572
4938
 
@@ -4590,15 +4956,22 @@ msgid "Yes"
4590
4956
  msgstr ""
4591
4957
 
4592
4958
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
4593
- msgid "You can upload a requirements.yml file above to auto-fill contents <b>OR</b> paste contents of <a ng-href=\"https://docs.ansible.com/ansible/latest/galaxy/user_guide.html#install-multiple-collections-with-a-requirements-file\" target=\"_blank\"> Requirements.yml </a>below."
4959
+ msgid ""
4960
+ "You can upload a requirements.yml file above to auto-fill contents <b>OR</b> "
4961
+ "paste contents of <a ng-href=\"https://docs.ansible.com/ansible/latest/"
4962
+ "galaxy/user_guide.html#install-multiple-collections-with-a-requirements-file"
4963
+ "\" target=\"_blank\"> Requirements.yml </a>below."
4594
4964
  msgstr ""
4595
4965
 
4596
4966
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4597
- msgid "You can upload a requirements.yml file below to auto-fill contents or paste contents of requirement.yml here"
4967
+ msgid ""
4968
+ "You can upload a requirements.yml file below to auto-fill contents or paste "
4969
+ "contents of requirement.yml here"
4598
4970
  msgstr ""
4599
4971
 
4600
4972
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
4601
- msgid "You cannot remove these repositories because you do not have permission."
4973
+ msgid ""
4974
+ "You cannot remove these repositories because you do not have permission."
4602
4975
  msgstr ""
4603
4976
 
4604
4977
  #: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
@@ -4606,7 +4979,8 @@ msgid "You cannot remove this product because it is a Red Hat product."
4606
4979
  msgstr ""
4607
4980
 
4608
4981
  #: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
4609
- msgid "You cannot remove this product because it was published to a content view."
4982
+ msgid ""
4983
+ "You cannot remove this product because it was published to a content view."
4610
4984
  msgstr ""
4611
4985
 
4612
4986
  #: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
@@ -4618,11 +4992,15 @@ msgid "You cannot remove this repository because you do not have permission."
4618
4992
  msgstr ""
4619
4993
 
4620
4994
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
4621
- msgid "You currently don't have any Activation Keys, you can add Activation Keys using the button on the right."
4995
+ msgid ""
4996
+ "You currently don't have any Activation Keys, you can add Activation Keys "
4997
+ "using the button on the right."
4622
4998
  msgstr ""
4623
4999
 
4624
5000
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
4625
- msgid "You currently don't have any Alternate Content Sources associated with this Content Credential."
5001
+ msgid ""
5002
+ "You currently don't have any Alternate Content Sources associated with this "
5003
+ "Content Credential."
4626
5004
  msgstr ""
4627
5005
 
4628
5006
  #: app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
@@ -4630,15 +5008,22 @@ msgid "You currently don't have any Container Image Tags."
4630
5008
  msgstr ""
4631
5009
 
4632
5010
  #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
4633
- msgid "You currently don't have any Content Credential, you can add Content Credentials using the button on the right."
5011
+ msgid ""
5012
+ "You currently don't have any Content Credential, you can add Content "
5013
+ "Credentials using the button on the right."
4634
5014
  msgstr ""
4635
5015
 
4636
5016
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-add-hosts.html
4637
- msgid "You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right."
5017
+ msgid ""
5018
+ "You currently don't have any Content Hosts, you can create new Content Hosts "
5019
+ "by selecting Contents Host from main menu and then clicking the button on "
5020
+ "the right."
4638
5021
  msgstr ""
4639
5022
 
4640
5023
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
4641
- msgid "You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions."
5024
+ msgid ""
5025
+ "You currently don't have any Content Hosts, you can register one by clicking "
5026
+ "the button on the right and following the instructions."
4642
5027
  msgstr ""
4643
5028
 
4644
5029
  #: app/assets/javascripts/bastion_katello/files/views/files.html
@@ -4646,48 +5031,70 @@ msgid "You currently don't have any Files."
4646
5031
  msgstr ""
4647
5032
 
4648
5033
  #: app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
4649
- msgid "You currently don't have any Host Collections, you can add Host Collections using the button on the right."
5034
+ msgid ""
5035
+ "You currently don't have any Host Collections, you can add Host Collections "
5036
+ "using the button on the right."
4650
5037
  msgstr ""
4651
5038
 
4652
5039
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
4653
- msgid "You currently don't have any Hosts in this Host Collection, you can add Content Hosts after selecting the 'Add' tab."
5040
+ msgid ""
5041
+ "You currently don't have any Hosts in this Host Collection, you can add "
5042
+ "Content Hosts after selecting the 'Add' tab."
4654
5043
  msgstr ""
4655
5044
 
4656
5045
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
4657
- msgid "You currently don't have any Products associated with this Content Credential."
5046
+ msgid ""
5047
+ "You currently don't have any Products associated with this Content "
5048
+ "Credential."
4658
5049
  msgstr ""
4659
5050
 
4660
5051
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
4661
- msgid "You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu"
5052
+ msgid ""
5053
+ "You currently don't have any Products to subscribe to, you can add Products "
5054
+ "after selecting 'Products' under 'Content' in the main menu"
4662
5055
  msgstr ""
4663
5056
 
4664
5057
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html
4665
5058
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-add-subscriptions.html
4666
- msgid "You currently don't have any Products to subscribe to. You can add Products after selecting 'Products' under 'Content' in the main menu."
5059
+ msgid ""
5060
+ "You currently don't have any Products to subscribe to. You can add Products "
5061
+ "after selecting 'Products' under 'Content' in the main menu."
4667
5062
  msgstr ""
4668
5063
 
4669
5064
  #: app/assets/javascripts/bastion_katello/products/views/products.html
4670
- msgid "You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>."
5065
+ msgid ""
5066
+ "You currently don't have any Products<span bst-feature-flag=\"custom_products"
5067
+ "\">, you can add Products using the button on the right</span>."
4671
5068
  msgstr ""
4672
5069
 
4673
5070
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
4674
- msgid "You currently don't have any Repositories associated with this Content Credential."
5071
+ msgid ""
5072
+ "You currently don't have any Repositories associated with this Content "
5073
+ "Credential."
4675
5074
  msgstr ""
4676
5075
 
4677
5076
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
4678
- msgid "You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right."
5077
+ msgid ""
5078
+ "You currently don't have any Repositories included in this Product, you can "
5079
+ "add Repositories using the button on the right."
4679
5080
  msgstr ""
4680
5081
 
4681
5082
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions-list.html
4682
- msgid "You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab."
5083
+ msgid ""
5084
+ "You currently don't have any Subscriptions associated with this Activation "
5085
+ "Key, you can add Subscriptions after selecting the 'Add' tab."
4683
5086
  msgstr ""
4684
5087
 
4685
5088
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions-list.html
4686
- msgid "You currently don't have any Subscriptions associated with this Content Host. You can add Subscriptions after selecting the 'Add' tab."
5089
+ msgid ""
5090
+ "You currently don't have any Subscriptions associated with this Content "
5091
+ "Host. You can add Subscriptions after selecting the 'Add' tab."
4687
5092
  msgstr ""
4688
5093
 
4689
5094
  #: app/assets/javascripts/bastion_katello/sync-plans/views/sync-plans.html
4690
- msgid "You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right."
5095
+ msgid ""
5096
+ "You currently don't have any Sync Plans. A Sync Plan can be created by "
5097
+ "using the button on the right."
4691
5098
  msgstr ""
4692
5099
 
4693
5100
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
@@ -4699,11 +5106,16 @@ msgid "You must select a content view in order to save your environment."
4699
5106
  msgstr ""
4700
5107
 
4701
5108
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
4702
- msgid "You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection."
5109
+ msgid ""
5110
+ "You must select a new content view before your change of environment can be "
5111
+ "saved. Use the cancel button on content view selection to revert your "
5112
+ "environment selection."
4703
5113
  msgstr ""
4704
5114
 
4705
5115
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
4706
- msgid "You must select a new content view before your change of lifecycle environment can be saved."
5116
+ msgid ""
5117
+ "You must select a new content view before your change of lifecycle "
5118
+ "environment can be saved."
4707
5119
  msgstr ""
4708
5120
 
4709
5121
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
@@ -4804,6 +5216,7 @@ msgstr ""
4804
5216
  msgid "Your search returned zero Repositories"
4805
5217
  msgstr ""
4806
5218
 
5219
+ #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html
4807
5220
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
4808
5221
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
4809
5222
  msgid "Your search returned zero Repositories."
@@ -4843,7 +5256,9 @@ msgid "Yum Metadata Checksum"
4843
5256
  msgstr ""
4844
5257
 
4845
5258
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-packages.html
4846
- msgid "Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
5259
+ msgid ""
5260
+ "Yum metadata generation has been initiated in the background. Click <a href="
5261
+ "\"{{ taskUrl() }}\">Here</a> to monitor the progress."
4847
5262
  msgstr ""
4848
5263
 
4849
5264
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html