katello 4.5.1 → 4.8.0.rc2

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 (861) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +8 -22
  4. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +10 -0
  5. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +16 -10
  6. data/app/controllers/katello/api/v2/activation_keys_controller.rb +9 -0
  7. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +59 -24
  8. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -4
  9. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +22 -81
  10. data/app/controllers/katello/api/v2/content_exports_controller.rb +11 -80
  11. data/app/controllers/katello/api/v2/content_imports_controller.rb +2 -0
  12. data/app/controllers/katello/api/v2/content_uploads_controller.rb +2 -0
  13. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/content_view_filter_rules_controller.rb +1 -1
  15. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/content_views_controller.rb +1 -1
  17. data/app/controllers/katello/api/v2/debs_controller.rb +42 -10
  18. data/app/controllers/katello/api/v2/exports_controller.rb +130 -0
  19. data/app/controllers/katello/api/v2/host_collections_controller.rb +5 -1
  20. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -0
  21. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +9 -1
  22. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +17 -10
  23. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +9 -5
  24. data/app/controllers/katello/api/v2/organizations_controller.rb +7 -1
  25. data/app/controllers/katello/api/v2/package_groups_controller.rb +0 -52
  26. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/repositories_controller.rb +86 -30
  28. data/app/controllers/katello/api/v2/repository_sets_controller.rb +25 -14
  29. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +10 -2
  30. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  31. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +4 -6
  32. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -3
  33. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +34 -11
  34. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  35. data/app/controllers/katello/concerns/authorization/api/v2/content_views_controller.rb +4 -1
  36. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +24 -0
  37. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +14 -12
  38. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +7 -16
  39. data/app/helpers/katello/content_source_helper.rb +11 -0
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +88 -21
  41. data/app/helpers/katello/katello_urls_helper.rb +0 -15
  42. data/app/helpers/katello/sync_management_helper.rb +0 -4
  43. data/app/lib/actions/candlepin/abstract_async_task.rb +7 -3
  44. data/app/lib/actions/candlepin/environment/set_content.rb +7 -1
  45. data/app/lib/actions/candlepin/owner/destroy_imports.rb +1 -1
  46. data/app/lib/actions/candlepin/owner/{upstream_export.rb → retrieve_upstream_export.rb} +3 -3
  47. data/app/lib/actions/candlepin/owner/start_upstream_export.rb +24 -0
  48. data/app/lib/actions/candlepin/upstream_abstract_async_task.rb +30 -0
  49. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  50. data/app/lib/actions/katello/agent_action.rb +1 -0
  51. data/app/lib/actions/katello/alternate_content_source/alternate_content_source_common.rb +16 -0
  52. data/app/lib/actions/katello/alternate_content_source/create.rb +13 -5
  53. data/app/lib/actions/katello/alternate_content_source/destroy.rb +3 -4
  54. data/app/lib/actions/katello/alternate_content_source/refresh.rb +3 -5
  55. data/app/lib/actions/katello/alternate_content_source/update.rb +59 -13
  56. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -2
  57. data/app/lib/actions/katello/capsule_content/sync.rb +10 -6
  58. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +1 -2
  59. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  60. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  61. data/app/lib/actions/katello/content_view/publish.rb +11 -4
  62. data/app/lib/actions/katello/content_view/remove.rb +8 -2
  63. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  64. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  65. data/app/lib/actions/katello/content_view_version/destroy.rb +1 -1
  66. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  67. data/app/lib/actions/katello/environment/destroy.rb +8 -2
  68. data/app/lib/actions/katello/host/reassign.rb +4 -2
  69. data/app/lib/actions/katello/organization/manifest_refresh.rb +20 -11
  70. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +1 -9
  71. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +0 -1
  72. data/app/lib/actions/katello/product/destroy.rb +3 -2
  73. data/app/lib/actions/katello/repository/create.rb +9 -0
  74. data/app/lib/actions/katello/repository/destroy.rb +24 -3
  75. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  76. data/app/lib/actions/katello/repository/filtered_index_content.rb +2 -10
  77. data/app/lib/actions/katello/repository/import_upload.rb +0 -1
  78. data/app/lib/actions/katello/repository/refresh_repository.rb +3 -0
  79. data/app/lib/actions/katello/repository/sync.rb +15 -9
  80. data/app/lib/actions/katello/repository/update.rb +39 -3
  81. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  82. data/app/lib/actions/katello/repository/upload_files.rb +0 -1
  83. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  84. data/app/lib/actions/middleware/propagate_candlepin_errors.rb +6 -1
  85. data/app/lib/actions/pulp3/abstract.rb +0 -6
  86. data/app/lib/actions/pulp3/alternate_content_source/create.rb +5 -4
  87. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +5 -4
  88. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +4 -4
  89. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +4 -4
  90. data/app/lib/actions/pulp3/alternate_content_source/refresh.rb +4 -4
  91. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  92. data/app/lib/actions/pulp3/alternate_content_source/update.rb +4 -4
  93. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +5 -5
  94. data/app/lib/actions/pulp3/capsule_content/reclaim_space.rb +1 -0
  95. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -2
  96. data/app/lib/actions/pulp3/content_view_version/create_syncable_export_history.rb +4 -0
  97. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +3 -3
  98. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +6 -7
  99. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +3 -2
  100. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +3 -3
  101. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  102. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +12 -11
  103. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +3 -3
  104. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +17 -3
  105. data/app/lib/actions/pulp3/orchestration/content_view_version/syncable_export.rb +7 -4
  106. data/app/lib/actions/pulp3/orchestration/orphan_cleanup/remove_orphans.rb +1 -0
  107. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -0
  108. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +1 -1
  109. data/app/lib/actions/pulp3/orphan_cleanup/delete_orphan_alternate_content_sources.rb +16 -0
  110. data/app/lib/actions/pulp3/repository/reclaim_space.rb +1 -1
  111. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +1 -2
  112. data/app/lib/actions/pulp3/repository/repair.rb +1 -1
  113. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  114. data/app/lib/katello/api/v2/error_handling.rb +12 -2
  115. data/app/lib/katello/concerns/base_template_scope_extensions.rb +8 -4
  116. data/app/lib/katello/concerns/renderer_extensions.rb +3 -2
  117. data/app/lib/katello/errors.rb +4 -3
  118. data/app/lib/katello/event_daemon/runner.rb +12 -9
  119. data/app/lib/katello/resources/candlepin/consumer.rb +9 -6
  120. data/app/lib/katello/resources/candlepin/owner.rb +10 -3
  121. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +4 -5
  122. data/app/lib/katello/resources/candlepin/upstream_job.rb +28 -0
  123. data/app/lib/katello/resources/candlepin.rb +11 -5
  124. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  125. data/app/lib/katello/resources/cdn.rb +14 -9
  126. data/app/lib/katello/util/candlepin_repository_checker.rb +75 -0
  127. data/app/lib/katello/util/errata.rb +12 -10
  128. data/app/lib/katello/util/search.rb +0 -1
  129. data/app/lib/katello/validators/alternate_content_source_products_validator.rb +17 -0
  130. data/app/lib/katello/validators/content_view_environment_org_validator.rb +5 -2
  131. data/app/lib/katello/validators/content_view_environment_validator.rb +1 -2
  132. data/app/lib/katello/validators/generated_content_view_validator.rb +16 -0
  133. data/app/mailers/katello/errata_mailer.rb +4 -2
  134. data/app/models/katello/activation_key.rb +12 -1
  135. data/app/models/katello/alternate_content_source.rb +107 -11
  136. data/app/models/katello/alternate_content_source_product.rb +13 -0
  137. data/app/models/katello/authorization/repository.rb +2 -2
  138. data/app/models/katello/cdn_configuration.rb +12 -3
  139. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -14
  140. data/app/models/katello/concerns/host_managed_extensions.rb +61 -13
  141. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  142. data/app/models/katello/concerns/organization_extensions.rb +4 -4
  143. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  144. data/app/models/katello/concerns/redhat_extensions.rb +16 -6
  145. data/app/models/katello/concerns/smart_proxy_extensions.rb +36 -34
  146. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -0
  147. data/app/models/katello/content.rb +16 -1
  148. data/app/models/katello/content_credential.rb +8 -9
  149. data/app/models/katello/content_view.rb +42 -11
  150. data/app/models/katello/content_view_component.rb +4 -0
  151. data/app/models/katello/content_view_deb_filter.rb +51 -0
  152. data/app/models/katello/content_view_deb_filter_rule.rb +24 -0
  153. data/app/models/katello/content_view_environment.rb +11 -2
  154. data/app/models/katello/content_view_environment_content_facet.rb +9 -0
  155. data/app/models/katello/content_view_erratum_filter.rb +5 -4
  156. data/app/models/katello/content_view_filter.rb +10 -3
  157. data/app/models/katello/content_view_version.rb +11 -6
  158. data/app/models/katello/erratum.rb +12 -3
  159. data/app/models/katello/glue/candlepin/owner.rb +4 -1
  160. data/app/models/katello/glue/candlepin/pool.rb +6 -0
  161. data/app/models/katello/glue/candlepin/product.rb +7 -1
  162. data/app/models/katello/glue/candlepin/subscription.rb +5 -0
  163. data/app/models/katello/glue/provider.rb +55 -45
  164. data/app/models/katello/host/content_facet.rb +121 -21
  165. data/app/models/katello/host/info_provider.rb +25 -21
  166. data/app/models/katello/host/subscription_facet.rb +18 -14
  167. data/app/models/katello/installed_package.rb +1 -0
  168. data/app/models/katello/kt_environment.rb +12 -7
  169. data/app/models/katello/package_group.rb +0 -12
  170. data/app/models/katello/pool.rb +4 -1
  171. data/app/models/katello/product.rb +14 -1
  172. data/app/models/katello/repository.rb +28 -12
  173. data/app/models/katello/root_repository.rb +8 -3
  174. data/app/models/katello/rpm.rb +1 -0
  175. data/app/models/katello/smart_proxy_alternate_content_source.rb +6 -0
  176. data/app/models/katello/task_status.rb +0 -18
  177. data/app/overrides/add_smart_proxy_form.rb +5 -0
  178. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  179. data/app/presenters/katello/host_package_presenter.rb +4 -4
  180. data/app/services/cert/certs.rb +8 -16
  181. data/app/services/katello/bulk_items_helper.rb +3 -3
  182. data/app/services/katello/candlepin/consumer.rb +2 -2
  183. data/app/services/katello/host/package_profile_uploader.rb +1 -1
  184. data/app/services/katello/organization_creator.rb +4 -4
  185. data/app/services/katello/product_content_finder.rb +11 -8
  186. data/app/services/katello/product_content_importer.rb +61 -5
  187. data/app/services/katello/pulp3/alternate_content_source.rb +36 -10
  188. data/app/services/katello/pulp3/ansible_collection.rb +10 -7
  189. data/app/services/katello/pulp3/api/apt.rb +12 -0
  190. data/app/services/katello/pulp3/api/core.rb +2 -2
  191. data/app/services/katello/pulp3/api/generic.rb +0 -4
  192. data/app/services/katello/pulp3/content_view_version/export.rb +36 -63
  193. data/app/services/katello/pulp3/content_view_version/export_validation_error.rb +7 -0
  194. data/app/services/katello/pulp3/content_view_version/export_validator.rb +121 -0
  195. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  196. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  197. data/app/services/katello/pulp3/content_view_version/importable_products.rb +12 -2
  198. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  199. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  200. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  201. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +12 -2
  202. data/app/services/katello/pulp3/docker_manifest.rb +2 -1
  203. data/app/services/katello/pulp3/docker_manifest_list.rb +2 -1
  204. data/app/services/katello/pulp3/erratum.rb +1 -0
  205. data/app/services/katello/pulp3/module_stream.rb +26 -11
  206. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  207. data/app/services/katello/pulp3/repository/apt.rb +192 -2
  208. data/app/services/katello/pulp3/repository/yum.rb +7 -4
  209. data/app/services/katello/pulp3/repository.rb +26 -11
  210. data/app/services/katello/pulp3/repository_mirror.rb +1 -0
  211. data/app/services/katello/pulp3/service_common.rb +1 -1
  212. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +24 -2
  213. data/app/services/katello/pulp3/task_group.rb +18 -1
  214. data/app/services/katello/registration_manager.rb +46 -26
  215. data/app/services/katello/repository_type.rb +7 -10
  216. data/app/services/katello/repository_type_manager.rb +4 -3
  217. data/app/services/katello/simple_package.rb +22 -0
  218. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  219. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  220. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  221. data/app/views/foreman/smart_proxies/_content_sync.html.erb +2 -1
  222. data/app/views/foreman/smart_proxies/_reclaim_space.html.erb +1 -0
  223. data/app/views/foreman/smart_proxies/show.html.erb +3 -3
  224. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +19 -4
  225. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  226. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  227. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +20 -0
  228. data/app/views/katello/api/v2/ansible_collections/compare.json.rabl +10 -0
  229. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  230. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  231. data/app/views/katello/api/v2/content_facet/base.json.rabl +23 -2
  232. data/app/views/katello/api/v2/content_facet/show.json.rabl +11 -8
  233. data/app/views/katello/api/v2/content_view_filters/base.json.rabl +5 -0
  234. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -1
  235. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  236. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  237. data/app/views/katello/api/v2/hosts/base.json.rabl +22 -2
  238. data/app/views/katello/api/v2/module_streams/compare.json.rabl +10 -0
  239. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  240. data/app/views/katello/api/v2/organizations/show.json.rabl +1 -1
  241. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  242. data/app/views/katello/api/v2/repository_sets/show.json.rabl +4 -0
  243. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  244. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  245. data/app/views/katello/layouts/foreman_with_bastion.html.erb +1 -1
  246. data/app/views/katello/layouts/react.html.erb +1 -1
  247. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +2 -2
  248. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  249. data/app/views/overrides/organizations/_edit_override.html.erb +5 -8
  250. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  251. data/app/views/overrides/organizations/_step_1_override.html.erb +5 -0
  252. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  253. data/ca/redhat-uep.pem +18 -23
  254. data/config/katello.yaml.example +0 -2
  255. data/config/routes/api/registry.rb +8 -7
  256. data/config/routes/api/v2.rb +4 -2
  257. data/config/routes/overrides.rb +1 -0
  258. data/config/routes.rb +6 -0
  259. data/db/migrate/20200429153103_installed_package_bad_nvrea.rb +1 -1
  260. data/db/migrate/20201116161820_create_content_view_deb_filter_rules.rb +17 -0
  261. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +7 -3
  262. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +1 -1
  263. data/db/migrate/20220524132259_remove_last_refreshed_from_katello_alternate_content_sources.rb +5 -0
  264. data/db/migrate/20220601163911_add_vendor_to_katello_installed_packages.rb +5 -0
  265. data/db/migrate/20220610165621_add_repositories_and_products_to_acs.rb +23 -0
  266. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  267. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  268. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  269. data/db/migrate/20220929204746_add_content_view_environment_content_facet.rb +52 -0
  270. data/db/migrate/20221123212341_remove_pulp_docker_registry_port_setting.rb +5 -0
  271. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +5 -0
  272. data/db/migrate/20230119003859_ensure_repo_username_password_nil_not_blank.rb +9 -0
  273. data/db/migrate/20230203141353_set_new_acs_verify_ssl_default.rb +5 -0
  274. data/db/seeds.d/111-upgrade_tasks.rb +3 -1
  275. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  276. data/engines/bastion/app/assets/stylesheets/bastion/bastion.scss +4 -0
  277. data/engines/bastion/app/views/bastion/layouts/application.html.erb +1 -1
  278. data/engines/bastion/app/views/bastion/layouts/application_ie.html.erb +1 -1
  279. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +7 -6
  280. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  281. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +2 -4
  282. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  283. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  284. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  285. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  286. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  287. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  288. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  289. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +0 -1
  290. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  291. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  292. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  293. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +5 -3
  294. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +2 -0
  295. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment.controller.js +2 -0
  296. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html +1 -1
  297. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  298. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +3 -3
  299. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +11 -3
  300. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +1 -1
  301. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +28 -1403
  302. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +5485 -0
  303. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +5397 -0
  304. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +5658 -0
  305. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +5284 -0
  306. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +5231 -0
  307. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +5275 -0
  308. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +5389 -0
  309. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +5212 -0
  310. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +5145 -0
  311. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -0
  312. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  313. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  314. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +2 -0
  315. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  316. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +4 -4
  317. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  318. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +7 -0
  319. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repositories.routes.js +2 -2
  320. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +2 -2
  321. data/engines/bastion_katello/lib/bastion_katello/engine.rb +0 -1
  322. data/lib/katello/engine.rb +4 -3
  323. data/lib/katello/permission_creator.rb +5 -6
  324. data/lib/katello/permissions/host_permissions.rb +1 -0
  325. data/lib/katello/permissions/registry_permissions.rb +5 -5
  326. data/lib/katello/plugin.rb +58 -33
  327. data/lib/katello/repository_types/README.md +136 -19
  328. data/lib/katello/repository_types/deb.rb +1 -2
  329. data/lib/katello/repository_types/docker.rb +3 -3
  330. data/lib/katello/repository_types/file.rb +0 -1
  331. data/lib/katello/repository_types/python.rb +3 -3
  332. data/lib/katello/repository_types/yum.rb +0 -4
  333. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  334. data/lib/katello/tasks/clean_candlepin_orphaned_products.rake +38 -0
  335. data/lib/katello/tasks/clean_orphaned_facets.rb +20 -0
  336. data/lib/katello/tasks/refresh_repos.rake +8 -0
  337. data/lib/katello/tasks/reimport.rake +1 -2
  338. data/lib/katello/tasks/repository.rake +1 -22
  339. data/lib/katello/tasks/reset.rake +2 -1
  340. data/lib/katello/tasks/upgrades/4.8/fix_incorrect_providers.rake +29 -0
  341. data/lib/katello/tasks/upgrades/4.8/regenerate_imported_repository_metadata.rake +33 -0
  342. data/lib/katello/version.rb +1 -1
  343. data/lib/katello.rb +0 -5
  344. data/locale/action_names.rb +65 -62
  345. data/locale/bn/katello.po +816 -128
  346. data/locale/cs/katello.po +817 -129
  347. data/locale/de/katello.po +889 -200
  348. data/locale/en/katello.po +815 -127
  349. data/locale/es/katello.po +1161 -469
  350. data/locale/fr/katello.po +1313 -615
  351. data/locale/gu/katello.po +816 -128
  352. data/locale/hi/katello.po +817 -129
  353. data/locale/it/katello.po +827 -137
  354. data/locale/ja/katello.po +1315 -623
  355. data/locale/ka/katello.po +8872 -0
  356. data/locale/katello.pot +3358 -2013
  357. data/locale/kn/katello.po +816 -128
  358. data/locale/ko/katello.po +859 -170
  359. data/locale/mr/katello.po +817 -129
  360. data/locale/or/katello.po +817 -129
  361. data/locale/pa/katello.po +817 -129
  362. data/locale/pt/katello.po +817 -128
  363. data/locale/pt_BR/katello.po +1265 -573
  364. data/locale/ru/katello.po +836 -148
  365. data/locale/ta/katello.po +816 -128
  366. data/locale/te/katello.po +816 -128
  367. data/locale/zh_CN/katello.po +1311 -619
  368. data/locale/zh_TW/katello.po +830 -142
  369. data/package.json +0 -3
  370. data/webpack/components/Bookmark/index.js +5 -1
  371. data/webpack/components/Content/ContentPage.js +51 -35
  372. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  373. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  374. data/webpack/components/Content/__tests__/ContentPage.test.js +2 -4
  375. data/webpack/components/Content/__tests__/__snapshots__/ContentPage.test.js.snap +22 -3
  376. data/webpack/components/EditableSwitch.js +1 -0
  377. data/webpack/components/EditableTextInput/EditableTextInput.js +6 -19
  378. data/webpack/components/EditableTextInput/PencilEditButton.js +33 -0
  379. data/webpack/components/Errata/errataHelpers.js +33 -0
  380. data/webpack/components/Errata/index.js +56 -8
  381. data/webpack/components/Loading.js +19 -9
  382. data/webpack/components/Packages/index.js +8 -24
  383. data/webpack/components/RoutedTabs/index.js +8 -28
  384. data/webpack/components/Search/Search.js +20 -3
  385. data/webpack/components/Search/__tests__/search.test.js +4 -5
  386. data/webpack/components/SelectAllCheckbox/index.js +7 -4
  387. data/webpack/components/SelectableDropdown/SelectableDropdown.js +1 -0
  388. data/webpack/components/Table/EmptyStateMessage.js +83 -5
  389. data/webpack/components/Table/MainTable.js +78 -15
  390. data/webpack/components/Table/PageControls.js +1 -0
  391. data/webpack/components/Table/TableHooks.js +12 -4
  392. data/webpack/components/Table/TableWrapper.js +45 -36
  393. data/webpack/components/Table/__test__/emptyStateMessage.test.js +51 -0
  394. data/webpack/components/TypeAhead/TypeAhead.js +26 -11
  395. data/webpack/components/TypeAhead/pf3Search/TypeAheadItems.js +1 -1
  396. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +2 -0
  397. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  398. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  399. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +8 -1
  400. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +19 -84
  401. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  402. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +2 -2
  403. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +128 -71
  404. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  405. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  406. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  407. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +15 -9
  408. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  409. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +1 -17
  410. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeActions.js +37 -0
  411. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +175 -0
  412. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.scss +6 -0
  413. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeConstants.js +6 -0
  414. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +307 -0
  415. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeSelectors.js +25 -0
  416. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeCard.test.js +109 -0
  417. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/__tests__/SystemPurposeEditModal.test.js +161 -0
  418. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +155 -42
  419. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +103 -0
  420. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +1 -0
  421. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +5 -2
  422. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +84 -5
  423. data/webpack/components/extensions/HostDetails/HostDetailsConstants.js +3 -1
  424. data/webpack/components/extensions/HostDetails/HostDetailsReducer.js +14 -0
  425. data/webpack/components/extensions/HostDetails/HostDetailsSelectors.js +8 -2
  426. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  427. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  428. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +97 -27
  429. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +54 -9
  430. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  431. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +10 -6
  432. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +147 -25
  433. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  434. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  435. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +135 -27
  436. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  437. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  438. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +23 -6
  439. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +60 -61
  440. data/webpack/components/extensions/HostDetails/Tabs/__tests__/moduleStreamsTab.test.js +3 -30
  441. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +3 -12
  442. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  443. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +8 -24
  444. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySets.fixtures.json +3 -0
  445. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +12 -20
  446. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +4 -27
  447. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +4 -4
  448. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +1 -1
  449. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +7 -0
  450. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +2 -0
  451. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +2 -0
  452. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  453. data/webpack/components/extensions/RegistrationCommands/index.js +49 -17
  454. data/webpack/containers/Application/config.js +6 -11
  455. data/webpack/containers/Application/overrides.scss +25 -1
  456. data/webpack/global_index.js +21 -7
  457. data/webpack/global_test_setup.js +33 -3
  458. data/webpack/ouia_id_check.js +93 -0
  459. data/webpack/redux/actions/RedHatRepositories/helpers.js +8 -8
  460. data/webpack/redux/reducers/index.js +2 -4
  461. data/webpack/scenes/AlternateContentSources/ACSActions.js +72 -8
  462. data/webpack/scenes/AlternateContentSources/ACSConstants.js +5 -0
  463. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  464. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +21 -12
  465. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  466. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +96 -49
  467. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +49 -17
  468. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +31 -4
  469. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSProducts.js +44 -0
  470. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +73 -48
  471. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +30 -3
  472. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +42 -18
  473. data/webpack/scenes/AlternateContentSources/Create/Steps/NameACS.js +1 -0
  474. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +92 -23
  475. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +273 -18
  476. data/webpack/scenes/AlternateContentSources/Create/__tests__/products.fixtures.json +92 -0
  477. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +514 -0
  478. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +356 -0
  479. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +106 -0
  480. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +121 -0
  481. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +152 -0
  482. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +143 -0
  483. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +245 -0
  484. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +109 -0
  485. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsDetails.fixtures.json +49 -0
  486. data/webpack/scenes/AlternateContentSources/Details/__tests__/acsProducts.fixtures.json +95 -0
  487. data/webpack/scenes/AlternateContentSources/Details/__tests__/simplifiedAcsDetails.fixtures.json +39 -0
  488. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +401 -97
  489. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.scss +3 -0
  490. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  491. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -16
  492. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  493. data/webpack/scenes/Content/Details/ContentRepositories.js +5 -4
  494. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +1 -12
  495. data/webpack/scenes/Content/Table/ContentTable.js +2 -1
  496. data/webpack/scenes/Content/__tests__/contentTable.test.js +1 -15
  497. data/webpack/scenes/ContentViews/ContentViewsConstants.js +16 -4
  498. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  499. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  500. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  501. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +17 -7
  502. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  503. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  504. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  505. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  506. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +10 -9
  507. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +10 -9
  508. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  509. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +7 -32
  510. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  511. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  512. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  513. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +6 -2
  514. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +44 -32
  515. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +127 -0
  516. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +99 -0
  517. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +4 -1
  518. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  519. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +37 -9
  520. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +13 -3
  521. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  522. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +6 -1
  523. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +9 -8
  524. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +48 -29
  525. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +241 -0
  526. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +24 -8
  527. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +25 -12
  528. data/webpack/scenes/ContentViews/Details/Filters/CVFilterDetailType.js +10 -0
  529. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +15 -9
  530. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +15 -4
  531. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +27 -13
  532. data/webpack/scenes/ContentViews/Details/Filters/ContentType.js +1 -0
  533. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +70 -10
  534. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +37 -23
  535. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +97 -0
  536. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +4 -3
  537. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +35 -34
  538. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +128 -0
  539. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +98 -42
  540. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +124 -36
  541. data/webpack/scenes/ContentViews/Details/Filters/__tests__/ContentViewPackageGroupFilter.test.js +71 -11
  542. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +37 -22
  543. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +71 -24
  544. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +7 -21
  545. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +7 -23
  546. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVContainerImageFilterContent.fixtures.json +13 -0
  547. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyCVPackageFilterRules.fixtures.json +13 -0
  548. data/webpack/scenes/ContentViews/Details/Filters/__tests__/emptyContentViewFilters.fixtures.json +13 -0
  549. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +4 -3
  550. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -11
  551. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  552. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +9 -3
  553. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +1 -11
  554. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +9 -10
  555. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +13 -10
  556. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  557. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +3 -0
  558. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +151 -0
  559. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.scss +82 -0
  560. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +409 -0
  561. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareHeader.js +184 -0
  562. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +109 -0
  563. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/AnsibleCollectionsCompareAllContentData.fixtures.json +63 -0
  564. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +679 -0
  565. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionEmptyContentCompareData.fixtures.json +14 -0
  566. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ContainerTagsCompareAllContentData.fixtures.json +95 -0
  567. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/DebPackagesCompareAllContentData.fixtures.json +87 -0
  568. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareAllContentData.fixtures.json +319 -0
  569. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ErrataCompareThreeContentTypesData.fixtures.json +131 -0
  570. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareAllContentData.fixtures.json +51 -0
  571. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/FilesCompareThreeContentTypesData.fixtures.json +48 -0
  572. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/ModuleStreamsCompareAllContentData.fixtures.json +239 -0
  573. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PackageGroupsCompareAllContentData.fixtures.json +51 -0
  574. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/PythonPackagesCompareAllContentData.fixtures.json +315 -0
  575. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareAllContentData.fixtures.json +470 -0
  576. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/RPMPackagesCompareThreeContentTypesData.fixtures.json +475 -0
  577. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewDetails.fixtures.json +160 -0
  578. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +161 -0
  579. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +154 -0
  580. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +211 -0
  581. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +1013 -0
  582. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  583. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +145 -0
  584. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +145 -0
  585. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +111 -39
  586. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  587. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +18 -17
  588. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +11 -6
  589. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +7 -22
  590. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +3 -3
  591. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +3 -4
  592. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +37 -13
  593. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  594. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  595. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +9 -4
  596. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +30 -15
  597. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +1 -2
  598. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +113 -40
  599. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  600. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  601. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +104 -84
  602. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  603. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  604. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +60 -64
  605. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +7 -2
  606. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  607. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +40 -0
  608. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +87 -0
  609. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +2 -1
  610. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  611. data/webpack/scenes/ContentViews/components/WizardHeader.js +1 -1
  612. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  613. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -3
  614. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +8 -1
  615. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -12
  616. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +176 -30
  617. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +13 -17
  618. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  619. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  620. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  621. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  622. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  623. data/webpack/scenes/Hosts/ChangeContentSource/index.js +118 -74
  624. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +9 -5
  625. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +10 -2
  626. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  627. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  628. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  629. data/webpack/scenes/ModuleStreams/ModuleStreamsPage.js +3 -9
  630. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamPage.test.js.snap +7 -1
  631. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  632. data/webpack/scenes/RedHatRepositories/components/Search.js +22 -16
  633. data/webpack/scenes/RedHatRepositories/index.scss +20 -1
  634. data/webpack/scenes/SmartProxy/SmartProxyContentActions.js +1 -1
  635. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +12 -1
  636. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  637. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +11 -26
  638. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  639. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  640. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  641. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  642. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  643. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  644. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  645. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  646. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -31
  647. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  648. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +25 -23
  649. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  650. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  651. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +37 -4
  652. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +23 -10
  653. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.test.js +0 -1
  654. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +65 -15
  655. data/webpack/scenes/Tasks/helpers.js +14 -7
  656. data/webpack/test-utils/nockWrapper.js +7 -0
  657. metadata +158 -272
  658. data/app/lib/actions/katello/pulp_selector.rb +0 -24
  659. data/app/lib/actions/katello/repository/correct_checksum.rb +0 -24
  660. data/app/lib/actions/katello/repository/destroy_package_group.rb +0 -26
  661. data/app/lib/actions/katello/repository/upload_package_group.rb +0 -24
  662. data/app/lib/actions/pulp/abstract.rb +0 -37
  663. data/app/lib/actions/pulp/abstract_async_task.rb +0 -154
  664. data/app/lib/actions/pulp/abstract_async_task_group.rb +0 -94
  665. data/app/lib/actions/pulp/consumer/sync_capsule.rb +0 -45
  666. data/app/lib/actions/pulp/consumer/unassociate_units.rb +0 -20
  667. data/app/lib/actions/pulp/expect_one_task.rb +0 -11
  668. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +0 -16
  669. data/app/lib/actions/pulp/orchestration/repository/copy_all_units.rb +0 -19
  670. data/app/lib/actions/pulp/orchestration/repository/delete.rb +0 -15
  671. data/app/lib/actions/pulp/orchestration/repository/refresh.rb +0 -14
  672. data/app/lib/actions/pulp/orchestration/repository/refresh_if_needed.rb +0 -13
  673. data/app/lib/actions/pulp/orchestration/repository/refresh_repos.rb +0 -19
  674. data/app/lib/actions/pulp/orchestration/repository/remove_units.rb +0 -14
  675. data/app/lib/actions/pulp/orchestration/repository/smart_proxy_sync.rb +0 -34
  676. data/app/lib/actions/pulp/orchestration/repository/sync.rb +0 -18
  677. data/app/lib/actions/pulp/orchestration/repository/upload_content.rb +0 -37
  678. data/app/lib/actions/pulp/orphan_cleanup/remove_orphans.rb +0 -15
  679. data/app/lib/actions/pulp/orphan_cleanup/remove_unneeded_repos.rb +0 -16
  680. data/app/lib/actions/pulp/repository/abstract_copy_content.rb +0 -45
  681. data/app/lib/actions/pulp/repository/abstract_remove_content.rb +0 -32
  682. data/app/lib/actions/pulp/repository/clear.rb +0 -18
  683. data/app/lib/actions/pulp/repository/copy_all_units.rb +0 -30
  684. data/app/lib/actions/pulp/repository/copy_units.rb +0 -25
  685. data/app/lib/actions/pulp/repository/create.rb +0 -28
  686. data/app/lib/actions/pulp/repository/create_in_plan.rb +0 -15
  687. data/app/lib/actions/pulp/repository/create_upload_request.rb +0 -20
  688. data/app/lib/actions/pulp/repository/delete_upload_request.rb +0 -19
  689. data/app/lib/actions/pulp/repository/destroy.rb +0 -28
  690. data/app/lib/actions/pulp/repository/distributor_publish.rb +0 -25
  691. data/app/lib/actions/pulp/repository/download.rb +0 -16
  692. data/app/lib/actions/pulp/repository/import_upload.rb +0 -19
  693. data/app/lib/actions/pulp/repository/presenters/abstract_sync_presenter.rb +0 -47
  694. data/app/lib/actions/pulp/repository/presenters/deb_presenter.rb +0 -95
  695. data/app/lib/actions/pulp/repository/presenters/docker_presenter.rb +0 -103
  696. data/app/lib/actions/pulp/repository/presenters/file_unit_presenter.rb +0 -42
  697. data/app/lib/actions/pulp/repository/presenters/yum_presenter.rb +0 -131
  698. data/app/lib/actions/pulp/repository/refresh.rb +0 -21
  699. data/app/lib/actions/pulp/repository/regenerate_applicability.rb +0 -21
  700. data/app/lib/actions/pulp/repository/remove_distribution.rb +0 -11
  701. data/app/lib/actions/pulp/repository/remove_units.rb +0 -44
  702. data/app/lib/actions/pulp/repository/sync.rb +0 -99
  703. data/app/lib/actions/pulp/repository/upload_file.rb +0 -28
  704. data/app/lib/actions/pulp/repository_group/create.rb +0 -31
  705. data/app/lib/actions/pulp/repository_group/delete.rb +0 -17
  706. data/app/lib/actions/pulp/repository_group/export.rb +0 -51
  707. data/app/lib/katello/util/package_clause_generator.rb +0 -77
  708. data/app/models/katello/glue/pulp/pulp_errors.rb +0 -9
  709. data/app/models/katello/glue/pulp/repo.rb +0 -353
  710. data/app/models/katello/pulp_sync_status.rb +0 -165
  711. data/app/models/katello/pulp_task_status.rb +0 -63
  712. data/app/services/katello/candlepin/upstream_consumer.rb +0 -28
  713. data/app/services/katello/pulp/content.rb +0 -24
  714. data/app/services/katello/pulp/importer_comparison.rb +0 -28
  715. data/app/services/katello/pulp/repository/deb.rb +0 -61
  716. data/app/services/katello/pulp/repository/docker.rb +0 -82
  717. data/app/services/katello/pulp/repository/file.rb +0 -52
  718. data/app/services/katello/pulp/repository/yum.rb +0 -205
  719. data/app/services/katello/pulp/repository.rb +0 -327
  720. data/app/services/katello/pulp/server.rb +0 -35
  721. data/app/services/katello/pulp/simple_package.rb +0 -24
  722. data/app/services/katello/pulp/smart_proxy_repository.rb +0 -52
  723. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +0 -34
  724. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.routes.js +0 -751
  725. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-deletion.controller.js +0 -42
  726. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +0 -81
  727. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js +0 -65
  728. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +0 -82
  729. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-environments.controller.js +0 -76
  730. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion.controller.js +0 -160
  731. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html +0 -58
  732. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html +0 -94
  733. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html +0 -76
  734. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html +0 -88
  735. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html +0 -73
  736. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-component.factory.js +0 -32
  737. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +0 -75
  738. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +0 -68
  739. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html +0 -81
  740. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html +0 -81
  741. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html +0 -24
  742. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-deb-repositories.controller.js +0 -50
  743. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +0 -42
  744. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-file-repositories.controller.js +0 -50
  745. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +0 -42
  746. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-repositories.controller.js +0 -45
  747. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-deb-repositories-list.controller.js +0 -48
  748. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +0 -100
  749. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +0 -49
  750. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-file-repositories-list.controller.js +0 -48
  751. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +0 -49
  752. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js +0 -129
  753. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-publish.controller.js +0 -46
  754. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories-list.controller.js +0 -42
  755. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js +0 -91
  756. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +0 -240
  757. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +0 -115
  758. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js +0 -68
  759. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +0 -66
  760. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js +0 -77
  761. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js +0 -137
  762. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js +0 -36
  763. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js +0 -78
  764. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter.controller.js +0 -74
  765. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-content-type.filter.js +0 -21
  766. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js +0 -34
  767. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js +0 -30
  768. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js +0 -86
  769. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-rule-matching-package-modal.controller.js +0 -37
  770. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter-type.filter.js +0 -21
  771. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filter.factory.js +0 -66
  772. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js +0 -85
  773. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js +0 -73
  774. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js +0 -100
  775. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js +0 -179
  776. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js +0 -75
  777. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/rule.factory.js +0 -21
  778. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata-filter.html +0 -9
  779. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html +0 -75
  780. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html +0 -28
  781. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html +0 -65
  782. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html +0 -19
  783. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html +0 -63
  784. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html +0 -50
  785. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html +0 -9
  786. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html +0 -121
  787. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html +0 -43
  788. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html +0 -85
  789. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html +0 -58
  790. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html +0 -43
  791. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html +0 -62
  792. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html +0 -182
  793. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html +0 -28
  794. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html +0 -42
  795. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html +0 -43
  796. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html +0 -2
  797. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js +0 -47
  798. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.factory.js +0 -22
  799. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html +0 -36
  800. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html +0 -20
  801. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html +0 -87
  802. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details-tasks.html +0 -4
  803. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +0 -144
  804. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html +0 -114
  805. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html +0 -87
  806. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +0 -63
  807. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html +0 -87
  808. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html +0 -59
  809. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +0 -58
  810. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html +0 -116
  811. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html +0 -126
  812. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +0 -78
  813. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +0 -127
  814. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +0 -138
  815. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js +0 -59
  816. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html +0 -25
  817. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html +0 -19
  818. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html +0 -19
  819. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html +0 -15
  820. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html +0 -23
  821. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html +0 -48
  822. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html +0 -21
  823. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-module-streams.html +0 -8
  824. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html +0 -21
  825. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html +0 -27
  826. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html +0 -42
  827. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html +0 -83
  828. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +0 -74
  829. data/locale/zanata.xml +0 -28
  830. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
  831. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsActions.js +0 -30
  832. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsConstants.js +0 -3
  833. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsPage.js +0 -80
  834. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsReducer.js +0 -39
  835. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js +0 -60
  836. data/webpack/scenes/AnsibleCollections/AnsibleCollectionsTables.scss +0 -0
  837. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetails.js +0 -94
  838. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsActions.js +0 -23
  839. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsConstants.js +0 -3
  840. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionDetailsReducer.js +0 -30
  841. data/webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js +0 -35
  842. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailInfo.test.js +0 -16
  843. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.fixtures.js +0 -25
  844. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -27
  845. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsActions.test.js +0 -41
  846. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetailsReducer.test.js +0 -33
  847. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailInfo.test.js.snap +0 -83
  848. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetails.test.js.snap +0 -190
  849. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsActions.test.js.snap +0 -58
  850. data/webpack/scenes/AnsibleCollections/Details/__tests__/__snapshots__/AnsibleCollectionDetailsReducer.test.js.snap +0 -50
  851. data/webpack/scenes/AnsibleCollections/Details/index.js +0 -17
  852. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -23
  853. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollections.fixtures.js +0 -52
  854. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsActions.test.js +0 -48
  855. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsReducer.test.js +0 -46
  856. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -25
  857. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionPage.test.js.snap +0 -73
  858. data/webpack/scenes/AnsibleCollections/__tests__/__snapshots__/AnsibleCollectionsTable.test.js.snap +0 -81
  859. data/webpack/scenes/AnsibleCollections/index.js +0 -17
  860. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentSearch.fixtures.json +0 -33
  861. data/webpack/scenes/Subscriptions/Manifest/__tests__/ManageManifestModal.test.js +0 -123
@@ -10,7 +10,7 @@
10
10
  #
11
11
  msgid ""
12
12
  msgstr ""
13
- "Project-Id-Version: katello 2.5.0\n"
13
+ "Project-Id-Version: katello 2.4.0-RC1\n"
14
14
  "Report-Msgid-Bugs-To: \n"
15
15
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
16
16
  "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2022\n"
@@ -39,12 +39,21 @@ msgstr ""
39
39
  msgid " Content view updated"
40
40
  msgstr ""
41
41
 
42
+ msgid " DEBs"
43
+ msgstr ""
44
+
42
45
  msgid " Either select the latest content view or the content view version. Cannot set both."
43
46
  msgstr ""
44
47
 
45
48
  msgid " RPMs"
46
49
  msgstr ""
47
50
 
51
+ msgid " The base path can be a web address or a filesystem location."
52
+ msgstr ""
53
+
54
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
55
+ msgstr ""
56
+
48
57
  msgid " View task details "
49
58
  msgstr ""
50
59
 
@@ -60,10 +69,10 @@ msgstr ""
60
69
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
61
70
  msgstr ""
62
71
 
63
- msgid " content view is used in listed component content views. For more information, "
72
+ msgid " content view is used in listed composite content views."
64
73
  msgstr ""
65
74
 
66
- msgid " content view is used in listed composite content views."
75
+ msgid " content view is used in listed content views. For more information, "
67
76
  msgstr ""
68
77
 
69
78
  msgid " environment cannot be set to an environment already on its path"
@@ -75,9 +84,18 @@ msgstr ""
75
84
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
76
85
  msgstr ""
77
86
 
87
+ msgid " or any step on the left."
88
+ msgstr ""
89
+
90
+ msgid " to manage and promote content views, or select a different environment."
91
+ msgstr ""
92
+
78
93
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
79
94
  msgstr ""
80
95
 
96
+ msgid "${option}"
97
+ msgstr ""
98
+
81
99
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
82
100
  msgstr ""
83
101
 
@@ -113,6 +131,9 @@ msgstr "%s 已使用"
113
131
  msgid "%s ago"
114
132
  msgstr "%s 之前"
115
133
 
134
+ msgid "%s guests"
135
+ msgstr ""
136
+
116
137
  msgid "%s has already been deleted"
117
138
  msgstr ""
118
139
 
@@ -320,9 +341,30 @@ msgstr "%{used} 之 %{total}"
320
341
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
321
342
  msgstr ""
322
343
 
344
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
345
+ msgstr ""
346
+
347
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
348
+ msgstr ""
349
+
350
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
351
+ msgstr ""
352
+
353
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
354
+ msgstr ""
355
+
356
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. "
357
+ msgstr ""
358
+
359
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
360
+ msgstr ""
361
+
323
362
  msgid "(Orphaned)"
324
363
  msgstr "(已孤立)"
325
364
 
365
+ msgid "(unset)"
366
+ msgstr ""
367
+
326
368
  msgid ", and"
327
369
  msgstr ""
328
370
 
@@ -350,7 +392,7 @@ msgstr ""
350
392
  msgid "A backend service [ %s ] is unreachable"
351
393
  msgstr "無法連上後端服務 [ %s ]"
352
394
 
353
- msgid "A content view can be added by using the \"Create content view\" button above."
395
+ msgid "A content view can be added by using the \"Create content view\" button below."
354
396
  msgstr ""
355
397
 
356
398
  msgid "A content_type must be provided."
@@ -371,6 +413,12 @@ msgstr ""
371
413
  msgid "A post-promotion summary of hosts with installable errata"
372
414
  msgstr "主機的後推送摘要與可安裝勘誤"
373
415
 
416
+ msgid "A remote execution job is in progress"
417
+ msgstr ""
418
+
419
+ msgid "A remote execution job is in progress."
420
+ msgstr ""
421
+
374
422
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
375
423
  msgstr "auto-healing 程序的服務等級,例如 SELF-SUPPORT"
376
424
 
@@ -458,6 +506,9 @@ msgstr "新增"
458
506
  msgid "Add Bookmark"
459
507
  msgstr "新增書籤"
460
508
 
509
+ msgid "Add DEB rule"
510
+ msgstr ""
511
+
461
512
  msgid "Add RPM rule"
462
513
  msgstr ""
463
514
 
@@ -467,13 +518,13 @@ msgstr ""
467
518
  msgid "Add a subscription to a host"
468
519
  msgstr "新增訂閱至一部主機"
469
520
 
470
- msgid "Add component"
521
+ msgid "Add an alternate content source"
471
522
  msgstr ""
472
523
 
473
- msgid "Add component content views"
524
+ msgid "Add components to the content view"
474
525
  msgstr ""
475
526
 
476
- msgid "Add components to the content view"
527
+ msgid "Add content view"
477
528
  msgstr ""
478
529
 
479
530
  msgid "Add content views"
@@ -488,9 +539,6 @@ msgstr ""
488
539
  msgid "Add filter rule"
489
540
  msgstr ""
490
541
 
491
- msgid "Add filters using the 'Add filter' button above."
492
- msgstr ""
493
-
494
542
  msgid "Add host to collections"
495
543
  msgstr ""
496
544
 
@@ -530,12 +578,18 @@ msgstr ""
530
578
  msgid "Add subscriptions to one or more hosts"
531
579
  msgstr ""
532
580
 
533
- msgid "Add to this filter using the 'Add RPM rule' button."
581
+ msgid "Add to a host collection"
582
+ msgstr ""
583
+
584
+ msgid "Add to this filter using the 'Add Deb rule' button."
534
585
  msgstr ""
535
586
 
536
587
  msgid "Add to this filter using the 'Add filter rule' button."
537
588
  msgstr ""
538
589
 
590
+ msgid "Add-ons"
591
+ msgstr ""
592
+
539
593
  msgid "Added"
540
594
  msgstr ""
541
595
 
@@ -554,6 +608,9 @@ msgstr ""
554
608
  msgid "Addons"
555
609
  msgstr ""
556
610
 
611
+ msgid "Affected Repositories"
612
+ msgstr ""
613
+
557
614
  msgid "Affected repositories"
558
615
  msgstr ""
559
616
 
@@ -584,6 +641,9 @@ msgstr ""
584
641
  msgid "All subpaths must have a slash at the end and none at the front"
585
642
  msgstr ""
586
643
 
644
+ msgid "All up to date"
645
+ msgstr ""
646
+
587
647
  msgid "All versions"
588
648
  msgstr ""
589
649
 
@@ -593,6 +653,9 @@ msgstr ""
593
653
  msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
594
654
  msgstr ""
595
655
 
656
+ msgid "Allow a host to be registered to multiple content view environments with 'subscription-manager register --environments'."
657
+ msgstr ""
658
+
596
659
  msgid "Allow deleting repositories in published content views"
597
660
  msgstr ""
598
661
 
@@ -602,6 +665,9 @@ msgstr ""
602
665
  msgid "Allow hosts to re-register themselves only when they are in build mode"
603
666
  msgstr ""
604
667
 
668
+ msgid "Allow multiple content views"
669
+ msgstr ""
670
+
605
671
  msgid "Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
606
672
  msgstr ""
607
673
 
@@ -611,6 +677,9 @@ msgstr ""
611
677
  msgid "Alter a host's host collections"
612
678
  msgstr ""
613
679
 
680
+ msgid "Alternate Content Source HTTP Proxy"
681
+ msgstr ""
682
+
614
683
  msgid "Alternate Content Sources"
615
684
  msgstr ""
616
685
 
@@ -623,7 +692,13 @@ msgstr ""
623
692
  msgid "Alternate content source deleted"
624
693
  msgstr ""
625
694
 
626
- msgid "Alternate content sources"
695
+ msgid "Alternate content source edited"
696
+ msgstr ""
697
+
698
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
699
+ msgstr ""
700
+
701
+ msgid "Alternate content sources use the HTTP proxy of their assigned smart proxy for communication."
627
702
  msgstr ""
628
703
 
629
704
  msgid "Always Use Latest (currently %{version})"
@@ -635,7 +710,7 @@ msgstr ""
635
710
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
636
711
  msgstr ""
637
712
 
638
- msgid "An alternate content source can be added by using the \"Add source\" button above."
713
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
639
714
  msgstr ""
640
715
 
641
716
  msgid "An environment is missing a prior"
@@ -662,9 +737,6 @@ msgstr ""
662
737
  msgid "Ansible Collection"
663
738
  msgstr ""
664
739
 
665
- msgid "Ansible Collection Details"
666
- msgstr ""
667
-
668
740
  msgid "Ansible Collections"
669
741
  msgstr ""
670
742
 
@@ -677,9 +749,15 @@ msgstr ""
677
749
  msgid "Applicability Batch Size"
678
750
  msgstr ""
679
751
 
752
+ msgid "Applicable"
753
+ msgstr "可套用"
754
+
680
755
  msgid "Applicable Content Hosts"
681
756
  msgstr ""
682
757
 
758
+ msgid "Applicable errata apply to at least one package installed on the host."
759
+ msgstr ""
760
+
683
761
  msgid "Application"
684
762
  msgstr "應用程式"
685
763
 
@@ -713,6 +791,9 @@ msgstr "架構"
713
791
  msgid "Architecture of content in the repository"
714
792
  msgstr ""
715
793
 
794
+ msgid "Architecture restricted to {archRestricted}. If host architecture does not match, the repository will not be available on this host."
795
+ msgstr ""
796
+
716
797
  msgid "Architecture(s)"
717
798
  msgstr "架構"
718
799
 
@@ -816,6 +897,9 @@ msgstr ""
816
897
  msgid "Auth URL requires Auth token be set."
817
898
  msgstr ""
818
899
 
900
+ msgid "Authentication type"
901
+ msgstr ""
902
+
819
903
  msgid "Author"
820
904
  msgstr "作者"
821
905
 
@@ -837,6 +921,9 @@ msgstr ""
837
921
  msgid "Autosearch delay"
838
922
  msgstr ""
839
923
 
924
+ msgid "Available"
925
+ msgstr ""
926
+
840
927
  msgid "Available Entitlements"
841
928
  msgstr ""
842
929
 
@@ -846,9 +933,15 @@ msgstr ""
846
933
  msgid "Available Schema Versions"
847
934
  msgstr ""
848
935
 
936
+ msgid "Back"
937
+ msgstr "上一步"
938
+
849
939
  msgid "Backend System Status"
850
940
  msgstr "後端系統狀態"
851
941
 
942
+ msgid "Base URL"
943
+ msgstr ""
944
+
852
945
  msgid "Base URL for finding alternate content"
853
946
  msgstr ""
854
947
 
@@ -894,6 +987,9 @@ msgstr "將此搜尋加入書籤"
894
987
  msgid "Bookmarks marked as public are available to all users"
895
988
  msgstr ""
896
989
 
990
+ msgid "Both"
991
+ msgstr ""
992
+
897
993
  msgid "Both major and minor parameters have to be used to override a CV version"
898
994
  msgstr ""
899
995
 
@@ -906,6 +1002,12 @@ msgstr "Bugfix"
906
1002
  msgid "Bugs"
907
1003
  msgstr ""
908
1004
 
1005
+ msgid "Bulk alternate content source delete has started."
1006
+ msgstr ""
1007
+
1008
+ msgid "Bulk alternate content source refresh has started."
1009
+ msgstr ""
1010
+
909
1011
  msgid "Bulk generate applicability for host %s"
910
1012
  msgstr ""
911
1013
 
@@ -990,6 +1092,9 @@ msgstr "已取消"
990
1092
  msgid "Cancelled."
991
1093
  msgstr "已取消。"
992
1094
 
1095
+ msgid "Candlepin"
1096
+ msgstr ""
1097
+
993
1098
  msgid "Candlepin Event"
994
1099
  msgstr "Candlepin 事件"
995
1100
 
@@ -1002,6 +1107,9 @@ msgstr ""
1002
1107
  msgid "Candlepin is not running properly"
1003
1108
  msgstr ""
1004
1109
 
1110
+ msgid "Candlepin returned different consumer uuid than requested (%s), updating uuid in subscription_facet."
1111
+ msgstr ""
1112
+
1005
1113
  msgid "Cannot add %s repositories to a content view."
1006
1114
  msgstr "無法新增 %s 個軟體庫到內容視域上。"
1007
1115
 
@@ -1020,6 +1128,9 @@ msgstr "無法新增複合式版本至另一個複合式內容視域中"
1020
1128
  msgid "Cannot add default content view to composite content view"
1021
1129
  msgstr "無法新增預設內容視域至複合式內容視域中"
1022
1130
 
1131
+ msgid "Cannot add generated content view versions to composite content view"
1132
+ msgstr ""
1133
+
1023
1134
  msgid "Cannot add repositories to a composite content view"
1024
1135
  msgstr "無法新增軟體庫至複合式內容視域中"
1025
1136
 
@@ -1113,7 +1224,7 @@ msgstr ""
1113
1224
  msgid "Cannot set auto publish to a non-composite content view"
1114
1225
  msgstr ""
1115
1226
 
1116
- msgid "Cannot skip metadata check on non-yum repositories."
1227
+ msgid "Cannot skip metadata check on non-yum/deb repositories."
1117
1228
  msgstr ""
1118
1229
 
1119
1230
  msgid "Cannot specify components for non-composite views"
@@ -1135,7 +1246,7 @@ msgid "Cannot validate contents on non-yum/deb repositories."
1135
1246
  msgstr ""
1136
1247
 
1137
1248
  msgid "Capacity"
1138
- msgstr ""
1249
+ msgstr "容量"
1139
1250
 
1140
1251
  msgid "Change Content Source"
1141
1252
  msgstr ""
@@ -1149,6 +1260,9 @@ msgstr ""
1149
1260
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1150
1261
  msgstr ""
1151
1262
 
1263
+ msgid "Check if the specified organization has Simple Content Access enabled"
1264
+ msgstr ""
1265
+
1152
1266
  msgid "Check if the specified organization is eligible for Simple Content Access"
1153
1267
  msgstr ""
1154
1268
 
@@ -1170,9 +1284,18 @@ msgstr ""
1170
1284
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1171
1285
  msgstr ""
1172
1286
 
1287
+ msgid "Choose content credentials if required for this RHUI source."
1288
+ msgstr ""
1289
+
1173
1290
  msgid "Clear any previous registration and run subscription-manager with --force."
1174
1291
  msgstr ""
1175
1292
 
1293
+ msgid "Clear filters"
1294
+ msgstr ""
1295
+
1296
+ msgid "Clear search"
1297
+ msgstr ""
1298
+
1176
1299
  msgid "Click here to go to the tasks page for the task."
1177
1300
  msgstr ""
1178
1301
 
@@ -1194,6 +1317,9 @@ msgstr ""
1194
1317
  msgid "Combined Profile Update for %s"
1195
1318
  msgstr ""
1196
1319
 
1320
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1321
+ msgstr ""
1322
+
1197
1323
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1198
1324
  msgstr ""
1199
1325
 
@@ -1203,16 +1329,16 @@ msgstr ""
1203
1329
  msgid "Comma-separated list of tags to sync for a container image repository"
1204
1330
  msgstr ""
1205
1331
 
1332
+ msgid "Compare"
1333
+ msgstr ""
1334
+
1206
1335
  msgid "Component"
1207
1336
  msgstr "元件"
1208
1337
 
1209
1338
  msgid "Component Content View"
1210
1339
  msgstr ""
1211
1340
 
1212
- msgid "Component content view"
1213
- msgstr ""
1214
-
1215
- msgid "Component content views"
1341
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1216
1342
  msgstr ""
1217
1343
 
1218
1344
  msgid "Components"
@@ -1245,7 +1371,7 @@ msgstr ""
1245
1371
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
1246
1372
  msgstr ""
1247
1373
 
1248
- msgid "Consisting of multiple component content views"
1374
+ msgid "Consisting of multiple content views"
1249
1375
  msgstr ""
1250
1376
 
1251
1377
  msgid "Consists of content views"
@@ -1365,8 +1491,8 @@ msgstr ""
1365
1491
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1366
1492
  msgstr ""
1367
1493
 
1368
- msgid "Content View and Environment not set for registration."
1369
- msgstr "內容視域與環境並未設定給註冊用。"
1494
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1495
+ msgstr ""
1370
1496
 
1371
1497
  msgid "Content View id"
1372
1498
  msgstr ""
@@ -1377,6 +1503,21 @@ msgstr ""
1377
1503
  msgid "Content Views"
1378
1504
  msgstr "內容視域"
1379
1505
 
1506
+ msgid "Content cannot be imported into a Composite Content View. "
1507
+ msgstr ""
1508
+
1509
+ msgid "Content credential"
1510
+ msgstr ""
1511
+
1512
+ msgid "Content credentials"
1513
+ msgstr ""
1514
+
1515
+ msgid "Content facet for host %s has more than one content view. Use #content_views instead."
1516
+ msgstr ""
1517
+
1518
+ msgid "Content facet for host %s has more than one lifecycle environment. Use #lifecycle_environments instead."
1519
+ msgstr ""
1520
+
1380
1521
  msgid "Content files to upload. Can be a single file or array of files."
1381
1522
  msgstr "欲上傳的內容檔案。能夠是單一檔案或檔案集。"
1382
1523
 
@@ -1395,10 +1536,10 @@ msgstr ""
1395
1536
  msgid "Content override search parameters"
1396
1537
  msgstr ""
1397
1538
 
1398
- msgid "Content source ID"
1539
+ msgid "Content source"
1399
1540
  msgstr ""
1400
1541
 
1401
- msgid "Content source successfully updated."
1542
+ msgid "Content source ID"
1402
1543
  msgstr ""
1403
1544
 
1404
1545
  msgid "Content source was not set for host '%{host}'"
@@ -1419,6 +1560,9 @@ msgstr ""
1419
1560
  msgid "Content view ${name} created"
1420
1561
  msgstr ""
1421
1562
 
1563
+ msgid "Content view '%{cv_name}' is a generated content view, which cannot be assigned to hosts or activation keys."
1564
+ msgstr ""
1565
+
1422
1566
  msgid "Content view '%{view}' is not in environment '%{env}'"
1423
1567
  msgstr "內容視域 '%{view}' 不在 '%{env}' 環境中"
1424
1568
 
@@ -1428,9 +1572,18 @@ msgstr "內容檢視 '%{view}' 並不位於生命週期環境 '%{env}' 中。"
1428
1572
  msgid "Content view ID"
1429
1573
  msgstr ""
1430
1574
 
1575
+ msgid "Content view and environment not set for registration."
1576
+ msgstr ""
1577
+
1431
1578
  msgid "Content view details"
1432
1579
  msgstr ""
1433
1580
 
1581
+ msgid "Content view environments and activation key must all belong to the same organization"
1582
+ msgstr ""
1583
+
1584
+ msgid "Content view environments must have both a content view and an environment"
1585
+ msgstr ""
1586
+
1434
1587
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1435
1588
  msgstr ""
1436
1589
 
@@ -1440,6 +1593,9 @@ msgstr "內容視域識別子"
1440
1593
  msgid "Content view label"
1441
1594
  msgstr "內容視域標籤"
1442
1595
 
1596
+ msgid "Content view must be specified"
1597
+ msgstr ""
1598
+
1443
1599
  msgid "Content view name"
1444
1600
  msgstr ""
1445
1601
 
@@ -1461,6 +1617,9 @@ msgstr ""
1461
1617
  msgid "Content views"
1462
1618
  msgstr ""
1463
1619
 
1620
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1621
+ msgstr ""
1622
+
1464
1623
  msgid "Content_Host_Status"
1465
1624
  msgstr ""
1466
1625
 
@@ -1494,6 +1653,9 @@ msgstr ""
1494
1653
  msgid "Copy version units to library"
1495
1654
  msgstr ""
1496
1655
 
1656
+ msgid "Cores per socket"
1657
+ msgstr "每個插槽的核心數"
1658
+
1497
1659
  msgid "Cores: %s"
1498
1660
  msgstr "核心:%s"
1499
1661
 
@@ -1599,14 +1761,20 @@ msgstr "找不到先前的環境「%s」"
1599
1761
  msgid "Couldn't find product with id '%s'"
1600
1762
  msgstr "找不到 id 為「%s」的產品"
1601
1763
 
1764
+ msgid "Couldn't find products with id '%s'"
1765
+ msgstr ""
1766
+
1602
1767
  msgid "Couldn't find repository '%s'"
1603
1768
  msgstr "找不到軟體庫「%s」"
1604
1769
 
1605
1770
  msgid "Couldn't find smart proxies with id '%s'"
1606
1771
  msgstr ""
1607
1772
 
1608
- msgid "Couldn't find specified Content View and Lifecycle Environment."
1609
- msgstr "找不到特定的內容視域與生命週期環境。"
1773
+ msgid "Couldn't find smart proxies with name '%s'"
1774
+ msgstr ""
1775
+
1776
+ msgid "Couldn't find specified content view and lifecycle environment."
1777
+ msgstr ""
1610
1778
 
1611
1779
  msgid "Couldn't find subject of synchronization"
1612
1780
  msgstr "找不到要同步的東西"
@@ -1617,6 +1785,9 @@ msgstr "計數"
1617
1785
  msgid "Create"
1618
1786
  msgstr "建立"
1619
1787
 
1788
+ msgid "Create ACS"
1789
+ msgstr ""
1790
+
1620
1791
  msgid "Create Alternate Content Source"
1621
1792
  msgstr ""
1622
1793
 
@@ -1632,12 +1803,18 @@ msgstr ""
1632
1803
  msgid "Create Repositories"
1633
1804
  msgstr ""
1634
1805
 
1806
+ msgid "Create Syncable Export History"
1807
+ msgstr ""
1808
+
1635
1809
  msgid "Create a Content Credential"
1636
1810
  msgstr ""
1637
1811
 
1638
1812
  msgid "Create a content view"
1639
1813
  msgstr "建立內容視域"
1640
1814
 
1815
+ msgid "Create a custom product"
1816
+ msgstr ""
1817
+
1641
1818
  msgid "Create a custom repository"
1642
1819
  msgstr "建立自訂軟體庫"
1643
1820
 
@@ -1656,12 +1833,12 @@ msgstr "建立產品"
1656
1833
  msgid "Create a sync plan"
1657
1834
  msgstr "建立同步計劃"
1658
1835
 
1659
- msgid "Create an ACS"
1660
- msgstr ""
1661
-
1662
1836
  msgid "Create an activation key"
1663
1837
  msgstr "建立啟動金鑰"
1664
1838
 
1839
+ msgid "Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization."
1840
+ msgstr ""
1841
+
1665
1842
  msgid "Create an environment"
1666
1843
  msgstr "建立環境"
1667
1844
 
@@ -1671,22 +1848,37 @@ msgstr "在組織中建立環境"
1671
1848
  msgid "Create an upload request"
1672
1849
  msgstr "建立上傳請求"
1673
1850
 
1851
+ msgid "Create content credentials with the generated SSL certificate and key."
1852
+ msgstr ""
1853
+
1674
1854
  msgid "Create content view"
1675
1855
  msgstr ""
1676
1856
 
1677
1857
  msgid "Create filter"
1678
1858
  msgstr ""
1679
1859
 
1860
+ msgid "Create host collection"
1861
+ msgstr ""
1862
+
1680
1863
  msgid "Create organization"
1681
1864
  msgstr "建立組織"
1682
1865
 
1866
+ msgid "Create package filter rule"
1867
+ msgstr ""
1868
+
1869
+ msgid "Create rule"
1870
+ msgstr ""
1871
+
1872
+ msgid "Credentials"
1873
+ msgstr ""
1874
+
1683
1875
  msgid "Critical"
1684
1876
  msgstr "重要"
1685
1877
 
1686
1878
  msgid "Cron expression is not valid!"
1687
1879
  msgstr ""
1688
1880
 
1689
- msgid "Current organization has no manifest imported."
1881
+ msgid "Current organization does not have a manifest imported."
1690
1882
  msgstr ""
1691
1883
 
1692
1884
  msgid "Current organization is not set."
@@ -1695,6 +1887,12 @@ msgstr ""
1695
1887
  msgid "Current organization not set."
1696
1888
  msgstr ""
1697
1889
 
1890
+ msgid "Custom"
1891
+ msgstr ""
1892
+
1893
+ msgid "Custom CDN"
1894
+ msgstr ""
1895
+
1698
1896
  msgid "Custom Content Repositories"
1699
1897
  msgstr "自訂內容軟體庫"
1700
1898
 
@@ -1707,6 +1905,12 @@ msgstr "無法停用自訂的軟體庫。"
1707
1905
  msgid "Customize with Rex"
1708
1906
  msgstr ""
1709
1907
 
1908
+ msgid "DEB name"
1909
+ msgstr ""
1910
+
1911
+ msgid "DEB package updates"
1912
+ msgstr ""
1913
+
1710
1914
  msgid "Database connection"
1711
1915
  msgstr "資料庫連線"
1712
1916
 
@@ -1722,12 +1926,18 @@ msgstr ""
1722
1926
  msgid "Days from Now"
1723
1927
  msgstr ""
1724
1928
 
1929
+ msgid "Deb"
1930
+ msgstr ""
1931
+
1725
1932
  msgid "Deb Package"
1726
1933
  msgstr ""
1727
1934
 
1728
1935
  msgid "Deb Packages"
1729
1936
  msgstr ""
1730
1937
 
1938
+ msgid "Deb name"
1939
+ msgstr ""
1940
+
1731
1941
  msgid "Deb package identifiers to filter content by"
1732
1942
  msgstr ""
1733
1943
 
@@ -1836,6 +2046,12 @@ msgstr ""
1836
2046
  msgid "Default user data for new Operating Systems created from synced content"
1837
2047
  msgstr ""
1838
2048
 
2049
+ msgid "Define RHUI repository paths with guided steps."
2050
+ msgstr ""
2051
+
2052
+ msgid "Define repositories structured under a common web or filesystem path."
2053
+ msgstr ""
2054
+
1839
2055
  msgid "Delete"
1840
2056
  msgstr "刪除"
1841
2057
 
@@ -1974,7 +2190,7 @@ msgstr "銷毀同步計劃"
1974
2190
  msgid "Destroy an activation key"
1975
2191
  msgstr "銷毀啟動金鑰"
1976
2192
 
1977
- msgid "Destroy an alternate content source"
2193
+ msgid "Destroy an alternate content source."
1978
2194
  msgstr ""
1979
2195
 
1980
2196
  msgid "Destroy an environment"
@@ -1983,6 +2199,9 @@ msgstr "銷毀環境"
1983
2199
  msgid "Destroy an environment in an organization"
1984
2200
  msgstr "銷毀組織中的一個環境"
1985
2201
 
2202
+ msgid "Destroy one or more alternate content sources"
2203
+ msgstr ""
2204
+
1986
2205
  msgid "Destroy one or more hosts"
1987
2206
  msgstr "銷毀一或更多部主機"
1988
2207
 
@@ -2034,6 +2253,9 @@ msgstr "尋找"
2034
2253
  msgid "Discover Repositories"
2035
2254
  msgstr "尋找軟體庫"
2036
2255
 
2256
+ msgid "Distribute archived content view versions"
2257
+ msgstr ""
2258
+
2037
2259
  msgid "Do not include this array of content views"
2038
2260
  msgstr "不包含此內容視域集"
2039
2261
 
@@ -2070,15 +2292,36 @@ msgstr "編輯"
2070
2292
  msgid "Edit RPM rule"
2071
2293
  msgstr ""
2072
2294
 
2295
+ msgid "Edit URL and subpaths"
2296
+ msgstr ""
2297
+
2073
2298
  msgid "Edit content view assignment"
2074
2299
  msgstr ""
2075
2300
 
2301
+ msgid "Edit credentials"
2302
+ msgstr ""
2303
+
2304
+ msgid "Edit details"
2305
+ msgstr ""
2306
+
2076
2307
  msgid "Edit filter rule"
2077
2308
  msgstr ""
2078
2309
 
2310
+ msgid "Edit package filter rule"
2311
+ msgstr ""
2312
+
2313
+ msgid "Edit products"
2314
+ msgstr ""
2315
+
2079
2316
  msgid "Edit rule"
2080
2317
  msgstr ""
2081
2318
 
2319
+ msgid "Edit smart proxies"
2320
+ msgstr ""
2321
+
2322
+ msgid "Edit system purpose attributes"
2323
+ msgstr ""
2324
+
2082
2325
  msgid "Editing Entitlements"
2083
2326
  msgstr ""
2084
2327
 
@@ -2100,9 +2343,15 @@ msgstr ""
2100
2343
  msgid "Either set the latest content view or the content view version. Cannot set both"
2101
2344
  msgstr ""
2102
2345
 
2346
+ msgid "Empty content view versions"
2347
+ msgstr ""
2348
+
2103
2349
  msgid "Enable"
2104
2350
  msgstr "啟用"
2105
2351
 
2352
+ msgid "Enable Red Hat repositories"
2353
+ msgstr ""
2354
+
2106
2355
  msgid "Enable Simple Content Access"
2107
2356
  msgstr ""
2108
2357
 
@@ -2115,6 +2364,9 @@ msgstr ""
2115
2364
  msgid "Enable a repository from the set"
2116
2365
  msgstr "啟用一個軟體庫"
2117
2366
 
2367
+ msgid "Enable repository sets"
2368
+ msgstr ""
2369
+
2118
2370
  msgid "Enable simple content access for a manifest"
2119
2371
  msgstr ""
2120
2372
 
@@ -2148,9 +2400,18 @@ msgstr "增強"
2148
2400
  msgid "Enter a name"
2149
2401
  msgstr ""
2150
2402
 
2403
+ msgid "Enter a name for your source."
2404
+ msgstr ""
2405
+
2151
2406
  msgid "Enter a valid date: MM/DD/YYYY"
2152
2407
  msgstr ""
2153
2408
 
2409
+ msgid "Enter basic authentication information or choose content credentials if required for this source."
2410
+ msgstr ""
2411
+
2412
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2413
+ msgstr ""
2414
+
2154
2415
  msgid "Entitlements"
2155
2416
  msgstr ""
2156
2417
 
@@ -2244,11 +2505,11 @@ msgstr ""
2244
2505
  msgid "Exclude"
2245
2506
  msgstr "排除"
2246
2507
 
2247
- msgid "Exclude all Module Streams with no errata."
2508
+ msgid "Exclude all RPMs not associated to any errata"
2248
2509
  msgstr ""
2249
2510
 
2250
- msgid "Exclude all RPMs with no errata."
2251
- msgstr "排除所有不含勘誤的 RPM。"
2511
+ msgid "Exclude all module streams not associated to any errata"
2512
+ msgstr ""
2252
2513
 
2253
2514
  msgid "Exclude filter"
2254
2515
  msgstr ""
@@ -2292,6 +2553,11 @@ msgstr ""
2292
2553
  msgid "Export as CSV"
2293
2554
  msgstr ""
2294
2555
 
2556
+ msgid ""
2557
+ "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2558
+ " Defaults to importable."
2559
+ msgstr ""
2560
+
2295
2561
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2296
2562
  msgstr ""
2297
2563
 
@@ -2341,6 +2607,9 @@ msgstr ""
2341
2607
  msgid "Fetch traces for one or more hosts"
2342
2608
  msgstr ""
2343
2609
 
2610
+ msgid "Fetching content credentials"
2611
+ msgstr ""
2612
+
2344
2613
  msgid "Field to sort the results on"
2345
2614
  msgstr "用來排序結果的欄位"
2346
2615
 
@@ -2398,6 +2667,9 @@ msgstr "以訂閱來篩選產品"
2398
2667
  msgid "Filter products by sync plan id"
2399
2668
  msgstr "透過同步計畫 ID 來篩選產品"
2400
2669
 
2670
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2671
+ msgstr ""
2672
+
2401
2673
  msgid "Filter rule added"
2402
2674
  msgstr ""
2403
2675
 
@@ -2431,6 +2703,12 @@ msgstr "篩選器"
2431
2703
  msgid "Filters deleted"
2432
2704
  msgstr ""
2433
2705
 
2706
+ msgid "Filters will appear here when the filter is created."
2707
+ msgstr ""
2708
+
2709
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2710
+ msgstr ""
2711
+
2434
2712
  msgid "Finish"
2435
2713
  msgstr ""
2436
2714
 
@@ -2472,7 +2750,7 @@ msgstr ""
2472
2750
  msgid "Force sync even if no upstream changes are detected. Non-yum repositories are skipped."
2473
2751
  msgstr ""
2474
2752
 
2475
- msgid "Force sync even if no upstream changes are detected. Only used with yum repositories."
2753
+ msgid "Force sync even if no upstream changes are detected. Only used with yum or deb repositories."
2476
2754
  msgstr ""
2477
2755
 
2478
2756
  msgid "Forces a republish of the specified repository, regenerating metadata and symlinks on the filesystem."
@@ -2490,6 +2768,9 @@ msgstr "有完整權利"
2490
2768
  msgid "GPG Key URL"
2491
2769
  msgstr "GPG 金鑰的網址"
2492
2770
 
2771
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2772
+ msgstr ""
2773
+
2493
2774
  msgid "Generate and Download"
2494
2775
  msgstr "產生與下載"
2495
2776
 
@@ -2502,7 +2783,7 @@ msgstr ""
2502
2783
  msgid "Generated"
2503
2784
  msgstr ""
2504
2785
 
2505
- msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2786
+ msgid "Generated content views cannot be assigned to hosts or activation keys"
2506
2787
  msgstr ""
2507
2788
 
2508
2789
  msgid "Generated content views cannot be directly published. They can updated only via export."
@@ -2535,6 +2816,9 @@ msgstr "為指定的軟體庫取得同步化的狀態"
2535
2816
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2536
2817
  msgstr "給定一組主機與勘誤,列出需要更新的內容視域版本與環境。"
2537
2818
 
2819
+ msgid "Given criteria doesn't match any DEBs. Try changing your rule."
2820
+ msgstr ""
2821
+
2538
2822
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2539
2823
  msgstr ""
2540
2824
 
@@ -2565,6 +2849,9 @@ msgstr ""
2565
2849
  msgid "HTTP Proxy identifier to associated"
2566
2850
  msgstr ""
2567
2851
 
2852
+ msgid "HW properties"
2853
+ msgstr ""
2854
+
2568
2855
  msgid "Has to be > 0"
2569
2856
  msgstr ""
2570
2857
 
@@ -2643,6 +2930,9 @@ msgstr ""
2643
2930
  msgid "Host collections updated"
2644
2931
  msgstr ""
2645
2932
 
2933
+ msgid "Host configurations are not updated yet"
2934
+ msgstr ""
2935
+
2646
2936
  msgid "Host content and subscription details"
2647
2937
  msgstr "主機內容和訂閱詳細資料"
2648
2938
 
@@ -2694,6 +2984,9 @@ msgstr ""
2694
2984
  msgid "Hosts"
2695
2985
  msgstr "主機"
2696
2986
 
2987
+ msgid "Hosts to update"
2988
+ msgstr ""
2989
+
2697
2990
  msgid "Hosts with Installable Errata"
2698
2991
  msgstr "主機與可安裝的勘誤"
2699
2992
 
@@ -2772,7 +3065,7 @@ msgstr "同步計劃的 ID"
2772
3065
  msgid "ID: %s doesn't exist "
2773
3066
  msgstr "ID:%s 不存在"
2774
3067
 
2775
- msgid "Id"
3068
+ msgid "IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type."
2776
3069
  msgstr ""
2777
3070
 
2778
3071
  msgid "Id of a deb package to find repositories that contain the deb"
@@ -2790,6 +3083,9 @@ msgstr ""
2790
3083
  msgid "Id of an erratum to find repositories that contain the erratum"
2791
3084
  msgstr "勘誤 ID,用來尋找包含勘誤的軟體庫"
2792
3085
 
3086
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3087
+ msgstr ""
3088
+
2793
3089
  msgid "Id of the content host"
2794
3090
  msgstr "內容主機的 ID"
2795
3091
 
@@ -2862,6 +3158,9 @@ msgstr ""
2862
3158
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2863
3159
  msgstr "指定後,使用相符的 ID 與數量,移除訂閱服務的第一個項目"
2864
3160
 
3161
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3162
+ msgstr ""
3163
+
2865
3164
  msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
2866
3165
  msgstr ""
2867
3166
 
@@ -2874,6 +3173,9 @@ msgstr ""
2874
3173
  msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
2875
3174
  msgstr ""
2876
3175
 
3176
+ msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3177
+ msgstr ""
3178
+
2877
3179
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2878
3180
  msgstr ""
2879
3181
 
@@ -2895,6 +3197,9 @@ msgstr ""
2895
3197
  msgid "Ignorable content can be only set for Yum repositories."
2896
3198
  msgstr ""
2897
3199
 
3200
+ msgid "Ignore %s can not be set in combination with 'Complete Mirroring' mirroring policy."
3201
+ msgstr ""
3202
+
2898
3203
  msgid "Ignore errors"
2899
3204
  msgstr ""
2900
3205
 
@@ -2907,6 +3212,9 @@ msgstr ""
2907
3212
  msgid "Ignore subscriptions that are unavailable to the specified host"
2908
3213
  msgstr "忽略對於特定主機不可用的訂閱服務"
2909
3214
 
3215
+ msgid "Ignored hosts"
3216
+ msgstr ""
3217
+
2910
3218
  msgid "Immediate"
2911
3219
  msgstr "立即"
2912
3220
 
@@ -2991,11 +3299,11 @@ msgstr ""
2991
3299
  msgid "Include"
2992
3300
  msgstr "包含"
2993
3301
 
2994
- msgid "Include all Module Streams with no errata."
3302
+ msgid "Include all RPMs not associated to any errata"
2995
3303
  msgstr ""
2996
3304
 
2997
- msgid "Include all RPMs with no errata."
2998
- msgstr "包括所有不含勘誤的 RPM。"
3305
+ msgid "Include all module streams not associated to any errata"
3306
+ msgstr ""
2999
3307
 
3000
3308
  msgid "Include content views generated by imports/exports. Defaults to false"
3001
3309
  msgstr ""
@@ -3061,7 +3369,7 @@ msgid "Initiate a sync of the products attached to the sync plan"
3061
3369
  msgstr "對連上同步計畫的產品進行同步"
3062
3370
 
3063
3371
  msgid "Install"
3064
- msgstr ""
3372
+ msgstr "安裝"
3065
3373
 
3066
3374
  msgid "Install Applicable Errata"
3067
3375
  msgstr "安裝可套用的勘誤"
@@ -3120,12 +3428,15 @@ msgstr ""
3120
3428
  msgid "Installable"
3121
3429
  msgstr "可安裝"
3122
3430
 
3123
- msgid "Installable errata"
3431
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3124
3432
  msgstr ""
3125
3433
 
3126
3434
  msgid "Installable errata from content view"
3127
3435
  msgstr ""
3128
3436
 
3437
+ msgid "Installable updates"
3438
+ msgstr ""
3439
+
3129
3440
  msgid "Installation of errata requested: %{errata}"
3130
3441
  msgstr ""
3131
3442
 
@@ -3138,6 +3449,9 @@ msgstr ""
3138
3449
  msgid "Installation status"
3139
3450
  msgstr ""
3140
3451
 
3452
+ msgid "Installed"
3453
+ msgstr "已安裝"
3454
+
3141
3455
  msgid "Installed Packages"
3142
3456
  msgstr "已安裝的套件"
3143
3457
 
@@ -3183,9 +3497,6 @@ msgstr ""
3183
3497
  msgid "Invalid"
3184
3498
  msgstr "無效"
3185
3499
 
3186
- msgid "Invalid SSL CA certificate given for CDN"
3187
- msgstr ""
3188
-
3189
3500
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3190
3501
  msgstr ""
3191
3502
 
@@ -3213,6 +3524,9 @@ msgstr "提供了無效的勘誤類型 %{invalid_types}。勘誤類型能夠是
3213
3524
  msgid "Invalid event_type %s"
3214
3525
  msgstr ""
3215
3526
 
3527
+ msgid "Invalid export format provided. Format must be one of %s "
3528
+ msgstr ""
3529
+
3216
3530
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
3217
3531
  msgstr "指定了無效的篩選器規則,'version' 不可指定為與 'min_version' 或 'max_version' 相同的變數值組"
3218
3532
 
@@ -3231,6 +3545,15 @@ msgstr "提供了無效的參數 - content_type 必須是 %s 之一"
3231
3545
  msgid "Invalid params provided - date_type must be one of %s"
3232
3546
  msgstr "提供了無效的參數 - date_type 必須是 %s 之一"
3233
3547
 
3548
+ msgid "Invalid params provided - with_content must be one of %s"
3549
+ msgstr ""
3550
+
3551
+ msgid "Invalid path provided. Content can be only imported from file system. "
3552
+ msgstr ""
3553
+
3554
+ msgid "Invalid release version: [%s]"
3555
+ msgstr ""
3556
+
3234
3557
  msgid "Invalid repository in the metadata %{repo} error=%{error}"
3235
3558
  msgstr ""
3236
3559
 
@@ -3249,7 +3572,13 @@ msgstr "已簽發"
3249
3572
  msgid "Issued from"
3250
3573
  msgstr ""
3251
3574
 
3252
- msgid "Job ${description} has started."
3575
+ msgid "Items will appear here when a filter rule is added."
3576
+ msgstr ""
3577
+
3578
+ msgid "Job '${description}' completed"
3579
+ msgstr ""
3580
+
3581
+ msgid "Job '${description}' has started."
3253
3582
  msgstr ""
3254
3583
 
3255
3584
  msgid "Katello ID of local pool to update"
@@ -3321,9 +3650,21 @@ msgstr "內容的標籤"
3321
3650
  msgid "Label of the content view"
3322
3651
  msgstr ""
3323
3652
 
3653
+ msgid "Last check-in:"
3654
+ msgstr ""
3655
+
3656
+ msgid "Last checkin"
3657
+ msgstr ""
3658
+
3324
3659
  msgid "Last published"
3325
3660
  msgstr ""
3326
3661
 
3662
+ msgid "Last refresh"
3663
+ msgstr ""
3664
+
3665
+ msgid "Last refresh :"
3666
+ msgstr ""
3667
+
3327
3668
  msgid "Last task"
3328
3669
  msgstr ""
3329
3670
 
@@ -3339,11 +3680,14 @@ msgstr ""
3339
3680
  msgid "Learn more about adding Subscription Manifests"
3340
3681
  msgstr ""
3341
3682
 
3683
+ msgid "Legacy content host UI"
3684
+ msgstr ""
3685
+
3342
3686
  msgid "Less than"
3343
3687
  msgstr ""
3344
3688
 
3345
3689
  msgid "Library"
3346
- msgstr ""
3690
+ msgstr "函示庫"
3347
3691
 
3348
3692
  msgid "Library lifecycle environments may not be deleted."
3349
3693
  msgstr "不可刪除函式庫生命週期環境。"
@@ -3384,6 +3728,9 @@ msgstr ""
3384
3728
  msgid "Lifecycle environment for the host."
3385
3729
  msgstr ""
3386
3730
 
3731
+ msgid "Lifecycle environment must be specified"
3732
+ msgstr ""
3733
+
3387
3734
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3388
3735
  msgstr ""
3389
3736
 
@@ -3405,6 +3752,9 @@ msgstr ""
3405
3752
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3406
3753
  msgstr ""
3407
3754
 
3755
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3756
+ msgstr ""
3757
+
3408
3758
  msgid "Limit to environment"
3409
3759
  msgstr ""
3410
3760
 
@@ -3435,6 +3785,9 @@ msgstr "列出所有 :resource_id"
3435
3785
  msgid "List all organizations"
3436
3786
  msgstr "列出所有組織"
3437
3787
 
3788
+ msgid "List alternate content sources."
3789
+ msgstr ""
3790
+
3438
3791
  msgid "List an activation key's subscriptions"
3439
3792
  msgstr "列出啟動金鑰的訂閱"
3440
3793
 
@@ -3504,7 +3857,7 @@ msgstr ""
3504
3857
  msgid "List of Products for sync plan"
3505
3858
  msgstr "同步計畫的產品清單"
3506
3859
 
3507
- msgid "List of alternate_content_sources"
3860
+ msgid "List of alternate content source IDs"
3508
3861
  msgstr ""
3509
3862
 
3510
3863
  msgid "List of component content view version ids for composite views"
@@ -3597,6 +3950,9 @@ msgstr ""
3597
3950
  msgid "List of repository ids"
3598
3951
  msgstr "軟體庫 ID 清單"
3599
3952
 
3953
+ msgid "List of resources types that will be automatically associated"
3954
+ msgstr ""
3955
+
3600
3956
  msgid "List of subscription products in a subscription"
3601
3957
  msgstr "訂閱中的訂閱產品清單"
3602
3958
 
@@ -3655,7 +4011,7 @@ msgid "Loading versions"
3655
4011
  msgstr ""
3656
4012
 
3657
4013
  msgid "Loading..."
3658
- msgstr ""
4014
+ msgstr "載入中……"
3659
4015
 
3660
4016
  msgid "Low"
3661
4017
  msgstr ""
@@ -3702,6 +4058,12 @@ msgstr ""
3702
4058
  msgid "Manifest refreshed"
3703
4059
  msgstr ""
3704
4060
 
4061
+ msgid "Manual"
4062
+ msgstr "手動式"
4063
+
4064
+ msgid "Manual authentication"
4065
+ msgstr ""
4066
+
3705
4067
  msgid "Mark Content Host Statuses as Unknown for %s"
3706
4068
  msgstr ""
3707
4069
 
@@ -3765,6 +4127,9 @@ msgstr ""
3765
4127
  msgid "Missing arguments %{substitutions} for %{content_url}"
3766
4128
  msgstr "沒有引數 %{substitutions} 給 %{content_url}"
3767
4129
 
4130
+ msgid "Model"
4131
+ msgstr "型號"
4132
+
3768
4133
  msgid "Moderate"
3769
4134
  msgstr "控管"
3770
4135
 
@@ -3786,7 +4151,7 @@ msgstr ""
3786
4151
  msgid "Module streams"
3787
4152
  msgstr ""
3788
4153
 
3789
- msgid "Module streams will appear here when available."
4154
+ msgid "Module streams will appear here after enabling Red Hat repositories or creating custom products."
3790
4155
  msgstr ""
3791
4156
 
3792
4157
  msgid "Multi-entitlement"
@@ -3804,11 +4169,19 @@ msgstr "NA"
3804
4169
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3805
4170
  msgstr ""
3806
4171
 
4172
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4173
+ msgstr ""
4174
+
3807
4175
  msgid ""
3808
4176
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
3809
4177
  " %{repos}"
3810
4178
  msgstr ""
3811
4179
 
4180
+ msgid ""
4181
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4182
+ " %{repos}"
4183
+ msgstr ""
4184
+
3812
4185
  msgid ""
3813
4186
  "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \n"
3814
4187
  " %{repos}"
@@ -3820,6 +4193,9 @@ msgstr ""
3820
4193
  msgid "Name"
3821
4194
  msgstr "名稱"
3822
4195
 
4196
+ msgid "Name and label of default content view should not be changed"
4197
+ msgstr ""
4198
+
3823
4199
  msgid "Name is a required parameter."
3824
4200
  msgstr ""
3825
4201
 
@@ -3844,6 +4220,12 @@ msgstr ""
3844
4220
  msgid "Name of the upstream docker repository"
3845
4221
  msgstr ""
3846
4222
 
4223
+ msgid "Name source"
4224
+ msgstr ""
4225
+
4226
+ msgid "Names of smart proxies to associate"
4227
+ msgstr ""
4228
+
3847
4229
  msgid "Needs to only be set for docker tags"
3848
4230
  msgstr ""
3849
4231
 
@@ -3856,6 +4238,9 @@ msgstr "巢狀"
3856
4238
  msgid "Network Sync"
3857
4239
  msgstr ""
3858
4240
 
4241
+ msgid "Never"
4242
+ msgstr "永不"
4243
+
3859
4244
  msgid "Never Synced"
3860
4245
  msgstr "從未同步"
3861
4246
 
@@ -3952,6 +4337,9 @@ msgstr "未提供內容。"
3952
4337
  msgid "No content ids provided"
3953
4338
  msgstr "未提供內容 ID"
3954
4339
 
4340
+ msgid "No content in selected versions."
4341
+ msgstr ""
4342
+
3955
4343
  msgid "No content view history events found."
3956
4344
  msgstr "找不到內容視域的歷史事件。"
3957
4345
 
@@ -4003,13 +4391,19 @@ msgstr ""
4003
4391
  msgid "No host collections found."
4004
4392
  msgstr "找不到主機集項目。"
4005
4393
 
4394
+ msgid "No host collections yet"
4395
+ msgstr ""
4396
+
4397
+ msgid "No hosts found"
4398
+ msgstr ""
4399
+
4006
4400
  msgid "No hosts have been specified."
4007
4401
  msgstr "未指定主機。"
4008
4402
 
4009
4403
  msgid "No hosts registered with subscription-manager found in selection."
4010
4404
  msgstr ""
4011
4405
 
4012
- msgid "No hosts with content source found!"
4406
+ msgid "No hosts were specified"
4013
4407
  msgstr ""
4014
4408
 
4015
4409
  msgid "No installed packages and/or enabled repositories have been reported by %s."
@@ -4027,9 +4421,15 @@ msgstr ""
4027
4421
  msgid "No matching "
4028
4422
  msgstr ""
4029
4423
 
4424
+ msgid "No matching ${name} found."
4425
+ msgstr ""
4426
+
4030
4427
  msgid "No matching ${selectedContentType} found"
4031
4428
  msgstr ""
4032
4429
 
4430
+ msgid "No matching DEB found."
4431
+ msgstr ""
4432
+
4033
4433
  msgid "No matching RPM found."
4034
4434
  msgstr ""
4035
4435
 
@@ -4114,6 +4514,9 @@ msgstr ""
4114
4514
  msgid "No products are enabled."
4115
4515
  msgstr ""
4116
4516
 
4517
+ msgid "No profiles to show"
4518
+ msgstr ""
4519
+
4117
4520
  msgid "No pulp workers running."
4118
4521
  msgstr "沒有 pulp 工作者執行中。"
4119
4522
 
@@ -4189,6 +4592,9 @@ msgstr ""
4189
4592
  msgid "Not all necessary pulp workers running at %s."
4190
4593
  msgstr ""
4191
4594
 
4595
+ msgid "Not installed"
4596
+ msgstr "未安裝"
4597
+
4192
4598
  msgid "Not running"
4193
4599
  msgstr ""
4194
4600
 
@@ -4207,6 +4613,9 @@ msgstr "請注意:括號中的數字反映了來自於主機所無法使用之
4207
4613
  msgid "Nothing selected"
4208
4614
  msgstr ""
4209
4615
 
4616
+ msgid "Number of CPU(s)"
4617
+ msgstr ""
4618
+
4210
4619
  msgid "Number of host applicability calculations to process per task."
4211
4620
  msgstr ""
4212
4621
 
@@ -4219,6 +4628,9 @@ msgstr ""
4219
4628
  msgid "Number to Allocate"
4220
4629
  msgstr ""
4221
4630
 
4631
+ msgid "OS restricted to {osRestricted}. If host OS does not match, the repository will not be available on this host."
4632
+ msgstr ""
4633
+
4222
4634
  msgid "OSTree Branch"
4223
4635
  msgstr "OSTree 分支"
4224
4636
 
@@ -4240,6 +4652,9 @@ msgstr "顯示訂閱服務的可用物件,值可以是「host」或「activati
4240
4652
  msgid "On Demand"
4241
4653
  msgstr "視需求"
4242
4654
 
4655
+ msgid "On the RHUA Instance, check the available repositories."
4656
+ msgstr ""
4657
+
4243
4658
  msgid "On-disk location for exported repositories"
4244
4659
  msgstr "匯入軟體庫的磁碟位置"
4245
4660
 
@@ -4315,6 +4730,9 @@ msgstr "需要的組織"
4315
4730
  msgid "Orphaned Content Protection Time"
4316
4731
  msgstr ""
4317
4732
 
4733
+ msgid "Orphaned content facets for deleted hosts exist for the content view and environment. Please run rake task : katello:clean_orphaned_facets and try again!"
4734
+ msgstr ""
4735
+
4318
4736
  msgid "Other"
4319
4737
  msgstr "其它"
4320
4738
 
@@ -4534,12 +4952,6 @@ msgstr ""
4534
4952
  msgid "Path"
4535
4953
  msgstr "路徑"
4536
4954
 
4537
- msgid "Path for ssl cert used for pulp server auth"
4538
- msgstr "pulp 伺服器授權所使用的 SSL 金鑰憑證"
4539
-
4540
- msgid "Path for ssl key used for pulp server auth"
4541
- msgstr "pulp 伺服器授權所使用的 SSL 金鑰路徑"
4542
-
4543
4955
  msgid "Path suffixes for finding alternate content"
4544
4956
  msgstr ""
4545
4957
 
@@ -4624,6 +5036,9 @@ msgstr "請從下方清單中選擇一項,而您將會被重新導向。"
4624
5036
  msgid "Please wait while the task starts.."
4625
5037
  msgstr ""
4626
5038
 
5039
+ msgid "Please wait..."
5040
+ msgstr "請稍等..."
5041
+
4627
5042
  msgid "Policy to set for mirroring content. Must be one of %s."
4628
5043
  msgstr ""
4629
5044
 
@@ -4713,9 +5128,18 @@ msgstr ""
4713
5128
  msgid "Product: '%{product}', Repository: '%{repository}'"
4714
5129
  msgstr ""
4715
5130
 
5131
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5132
+ msgstr ""
5133
+
4716
5134
  msgid "Products"
4717
5135
  msgstr "產品"
4718
5136
 
5137
+ msgid "Products updated."
5138
+ msgstr ""
5139
+
5140
+ msgid "Profiles"
5141
+ msgstr ""
5142
+
4719
5143
  msgid "Promote"
4720
5144
  msgstr "Promote"
4721
5145
 
@@ -4800,18 +5224,9 @@ msgstr ""
4800
5224
  msgid "Pulp 3 is not enabled on Smart proxy!"
4801
5225
  msgstr ""
4802
5226
 
4803
- msgid "Pulp Docker registry port"
4804
- msgstr ""
4805
-
4806
5227
  msgid "Pulp bulk load size"
4807
5228
  msgstr ""
4808
5229
 
4809
- msgid "Pulp client cert"
4810
- msgstr ""
4811
-
4812
- msgid "Pulp client key"
4813
- msgstr ""
4814
-
4815
5230
  msgid "Pulp database connection issue at %s."
4816
5231
  msgstr ""
4817
5232
 
@@ -4890,12 +5305,18 @@ msgstr "要新增此訂閱的數量"
4890
5305
  msgid "Quantity to Allocate"
4891
5306
  msgstr ""
4892
5307
 
5308
+ msgid "RAM"
5309
+ msgstr ""
5310
+
4893
5311
  msgid "RAM: %s GB"
4894
5312
  msgstr "記憶體:%s GB"
4895
5313
 
4896
5314
  msgid "RH Repos"
4897
5315
  msgstr ""
4898
5316
 
5317
+ msgid "RHUI"
5318
+ msgstr ""
5319
+
4899
5320
  msgid "RPM"
4900
5321
  msgstr "RPM"
4901
5322
 
@@ -4908,6 +5329,12 @@ msgstr ""
4908
5329
  msgid "RPM name"
4909
5330
  msgstr ""
4910
5331
 
5332
+ msgid "RPM package groups"
5333
+ msgstr ""
5334
+
5335
+ msgid "RPM package updates"
5336
+ msgstr ""
5337
+
4911
5338
  msgid "RPM packages"
4912
5339
  msgstr ""
4913
5340
 
@@ -4974,6 +5401,9 @@ msgstr ""
4974
5401
  msgid "Red Hat content will be consumed from the {type}."
4975
5402
  msgstr ""
4976
5403
 
5404
+ msgid "Red Hat content will be consumed from {type}."
5405
+ msgstr ""
5406
+
4977
5407
  msgid "Red Hat content will be enabled and consumed via the {type} process."
4978
5408
  msgstr ""
4979
5409
 
@@ -4989,15 +5419,27 @@ msgstr "不能操控 Red Hat 軟體庫"
4989
5419
  msgid "Refresh"
4990
5420
  msgstr "重新整理"
4991
5421
 
5422
+ msgid "Refresh Alternate Content Source"
5423
+ msgstr ""
5424
+
4992
5425
  msgid "Refresh Content Host Statuses for %s"
4993
5426
  msgstr ""
4994
5427
 
4995
5428
  msgid "Refresh Manifest"
4996
5429
  msgstr "更新清單"
4997
5430
 
5431
+ msgid "Refresh alternate content sources"
5432
+ msgstr ""
5433
+
5434
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5435
+ msgstr ""
5436
+
4998
5437
  msgid "Refresh previously imported manifest for Red Hat provider"
4999
5438
  msgstr "為 Red Hat 供應者更新之前匯入的清單"
5000
5439
 
5440
+ msgid "Refresh source"
5441
+ msgstr ""
5442
+
5001
5443
  msgid "Refresh_Content_Host_Status"
5002
5444
  msgstr ""
5003
5445
 
@@ -5007,13 +5449,16 @@ msgstr ""
5007
5449
  msgid "Register host '%s' before attaching subscriptions"
5008
5450
  msgstr ""
5009
5451
 
5452
+ msgid "Registered"
5453
+ msgstr "已註冊"
5454
+
5010
5455
  msgid "Registered by"
5011
5456
  msgstr ""
5012
5457
 
5013
5458
  msgid "Registered on"
5014
5459
  msgstr ""
5015
5460
 
5016
- msgid "Registered through"
5461
+ msgid "Registering to multiple environments is not enabled."
5017
5462
  msgstr ""
5018
5463
 
5019
5464
  msgid "Registration details"
@@ -5031,24 +5476,27 @@ msgstr ""
5031
5476
  msgid "Reindex subscriptions"
5032
5477
  msgstr "重新索引訂閱服務"
5033
5478
 
5034
- msgid "Related component content views"
5479
+ msgid "Related composite content views"
5035
5480
  msgstr ""
5036
5481
 
5037
- msgid "Related component cvs: "
5482
+ msgid "Related composite content views: "
5038
5483
  msgstr ""
5039
5484
 
5040
- msgid "Related composite content views"
5485
+ msgid "Related content views"
5041
5486
  msgstr ""
5042
5487
 
5043
- msgid "Related composite cvs: "
5488
+ msgid "Related content views will appear here when created."
5044
5489
  msgstr ""
5045
5490
 
5046
- msgid "Related content views will appear here when created."
5491
+ msgid "Related content views: "
5047
5492
  msgstr ""
5048
5493
 
5049
5494
  msgid "Release"
5050
5495
  msgstr "發行版"
5051
5496
 
5497
+ msgid "Release version"
5498
+ msgstr ""
5499
+
5052
5500
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
5053
5501
  msgstr ""
5054
5502
 
@@ -5067,6 +5515,9 @@ msgstr "重新載入資料"
5067
5515
  msgid "Remote action:"
5068
5516
  msgstr "遠端動作:"
5069
5517
 
5518
+ msgid "Remote execution job '${description}' failed."
5519
+ msgstr ""
5520
+
5070
5521
  msgid "Removal of package group(s) requested: %{groups}"
5071
5522
  msgstr ""
5072
5523
 
@@ -5127,7 +5578,7 @@ msgstr ""
5127
5578
  msgid "Remove one or more host collections from one or more hosts"
5128
5579
  msgstr "從一或多台主機刪除一或多個主機集項目"
5129
5580
 
5130
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5581
+ msgid "Remove one or more subscriptions from an upstream manifest"
5131
5582
  msgstr ""
5132
5583
 
5133
5584
  msgid "Remove package"
@@ -5178,6 +5629,9 @@ msgstr "正在移除套件群組..."
5178
5629
  msgid "Removing Package..."
5179
5630
  msgstr "正在移除套件..."
5180
5631
 
5632
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5633
+ msgstr ""
5634
+
5181
5635
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5182
5636
  msgstr ""
5183
5637
 
@@ -5262,7 +5716,7 @@ msgstr ""
5262
5716
  msgid "Repository sets reset to default"
5263
5717
  msgstr ""
5264
5718
 
5265
- msgid "Repository sets will appear here when available."
5719
+ msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5266
5720
  msgstr ""
5267
5721
 
5268
5722
  msgid "Republish Repositories of %{name} %{version}"
@@ -5397,6 +5851,9 @@ msgstr ""
5397
5851
  msgid "Return packages that can be added to the specified object. Only the value 'content_view_version' is supported."
5398
5852
  msgstr ""
5399
5853
 
5854
+ msgid "Return same, different or all results"
5855
+ msgstr ""
5856
+
5400
5857
  msgid "Return subscriptions that match installed products of the specified host"
5401
5858
  msgstr "回傳符合特定主機上已安裝項目的訂閱服務"
5402
5859
 
@@ -5424,6 +5881,9 @@ msgstr ""
5424
5881
  msgid "Review details"
5425
5882
  msgstr ""
5426
5883
 
5884
+ msgid "Review the information below and click "
5885
+ msgstr ""
5886
+
5427
5887
  msgid "Review your currently selected changes for "
5428
5888
  msgstr ""
5429
5889
 
@@ -5442,21 +5902,30 @@ msgstr ""
5442
5902
  msgid "Run Sync Plan:"
5443
5903
  msgstr ""
5444
5904
 
5445
- msgid "Run job invocation"
5446
- msgstr ""
5447
-
5448
5905
  msgid "Running"
5449
5906
  msgstr "執行中"
5450
5907
 
5451
5908
  msgid "SKU"
5452
5909
  msgstr ""
5453
5910
 
5911
+ msgid "SLA"
5912
+ msgstr ""
5913
+
5454
5914
  msgid "SRPM details"
5455
5915
  msgstr ""
5456
5916
 
5457
5917
  msgid "SSL CA Content Credential"
5458
5918
  msgstr ""
5459
5919
 
5920
+ msgid "SSL CA certificate"
5921
+ msgstr ""
5922
+
5923
+ msgid "SSL client certificate"
5924
+ msgstr ""
5925
+
5926
+ msgid "SSL client key"
5927
+ msgstr ""
5928
+
5460
5929
  msgid "SSL version used to communicate with the CDN"
5461
5930
  msgstr ""
5462
5931
 
@@ -5466,6 +5935,9 @@ msgstr ""
5466
5935
  msgid "Save"
5467
5936
  msgstr "儲存"
5468
5937
 
5938
+ msgid "Saving alternate content source..."
5939
+ msgstr ""
5940
+
5469
5941
  msgid "Schedule errata for installation using katello-agent. %s"
5470
5942
  msgstr ""
5471
5943
 
@@ -5535,6 +6007,15 @@ msgstr "選擇組織"
5535
6007
  msgid "Select Value"
5536
6008
  msgstr ""
5537
6009
 
6010
+ msgid "Select a CA certificate"
6011
+ msgstr ""
6012
+
6013
+ msgid "Select a client certificate"
6014
+ msgstr ""
6015
+
6016
+ msgid "Select a client key"
6017
+ msgstr ""
6018
+
5538
6019
  msgid "Select a content view"
5539
6020
  msgstr ""
5540
6021
 
@@ -5550,6 +6031,9 @@ msgstr ""
5550
6031
  msgid "Select a provider to install katello-host-tools-tracer"
5551
6032
  msgstr ""
5552
6033
 
6034
+ msgid "Select add-ons"
6035
+ msgstr ""
6036
+
5553
6037
  msgid "Select all"
5554
6038
  msgstr ""
5555
6039
 
@@ -5565,20 +6049,23 @@ msgstr ""
5565
6049
  msgid "Select an environment above"
5566
6050
  msgstr ""
5567
6051
 
6052
+ msgid "Select an option"
6053
+ msgstr ""
6054
+
5568
6055
  msgid "Select an organization"
5569
6056
  msgstr ""
5570
6057
 
5571
6058
  msgid "Select available version of ${cvName} to use"
5572
6059
  msgstr ""
5573
6060
 
5574
- msgid "Select available version of components to use"
6061
+ msgid "Select available version of content views to use"
5575
6062
  msgstr ""
5576
6063
 
5577
6064
  msgid "Select content view"
5578
6065
  msgstr ""
5579
6066
 
5580
6067
  msgid "Select environment"
5581
- msgstr ""
6068
+ msgstr "選擇環境"
5582
6069
 
5583
6070
  msgid "Select host collection(s) to associate with host {hostName}."
5584
6071
  msgstr ""
@@ -5604,9 +6091,27 @@ msgstr ""
5604
6091
  msgid "Select page"
5605
6092
  msgstr ""
5606
6093
 
6094
+ msgid "Select products"
6095
+ msgstr ""
6096
+
6097
+ msgid "Select products to associate to this source."
6098
+ msgstr ""
6099
+
5607
6100
  msgid "Select row"
5608
6101
  msgstr ""
5609
6102
 
6103
+ msgid "Select smart proxies to be used with this source."
6104
+ msgstr ""
6105
+
6106
+ msgid "Select smart proxy"
6107
+ msgstr ""
6108
+
6109
+ msgid "Select source type"
6110
+ msgstr ""
6111
+
6112
+ msgid "Select system purpose attributes for host {hostName}."
6113
+ msgstr ""
6114
+
5610
6115
  msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
5611
6116
  msgstr "選擇要用來佈建此主機的安裝媒介。請為已同步的 Kickstart 軟體庫選擇「已同步內容」、或為其它媒介選擇「所有媒介」。"
5612
6117
 
@@ -5709,7 +6214,7 @@ msgstr ""
5709
6214
  msgid "Show an activation key"
5710
6215
  msgstr "顯示啟動金鑰"
5711
6216
 
5712
- msgid "Show an alternate content source"
6217
+ msgid "Show an alternate content source."
5713
6218
  msgstr ""
5714
6219
 
5715
6220
  msgid "Show an environment"
@@ -5736,6 +6241,9 @@ msgstr "顯示啟動金鑰的可用發行版本"
5736
6241
  msgid "Show releases available for the content host"
5737
6242
  msgstr "顯示內容主機的可用發行版本"
5738
6243
 
6244
+ msgid "Show repositories enabled on the host that are known to Katello"
6245
+ msgstr ""
6246
+
5739
6247
  msgid "Show the available repository types"
5740
6248
  msgstr "顯示可用軟體庫類型"
5741
6249
 
@@ -5757,6 +6265,9 @@ msgstr ""
5757
6265
  msgid "Simple Content Access has been enabled for '%{subject}'."
5758
6266
  msgstr ""
5759
6267
 
6268
+ msgid "Simplified"
6269
+ msgstr ""
6270
+
5760
6271
  msgid "Single content view consisting of e.g. repositories"
5761
6272
  msgstr ""
5762
6273
 
@@ -5769,12 +6280,18 @@ msgstr ""
5769
6280
  msgid "Skipped pulp_auth check after failed pulp check"
5770
6281
  msgstr "pulp 檢查失敗後,跳過 pulp_auth"
5771
6282
 
6283
+ msgid "Smart proxies"
6284
+ msgstr "智慧代理"
6285
+
5772
6286
  msgid "Smart proxy IDs"
5773
6287
  msgstr "智慧型代理伺服器的 ID"
5774
6288
 
5775
6289
  msgid "Smart proxy content source not found!"
5776
6290
  msgstr ""
5777
6291
 
6292
+ msgid "Sockets"
6293
+ msgstr "插槽"
6294
+
5778
6295
  msgid "Sockets: %s"
5779
6296
  msgstr "插槽:%s"
5780
6297
 
@@ -5787,7 +6304,7 @@ msgstr ""
5787
6304
  msgid "Solve dependencies"
5788
6305
  msgstr ""
5789
6306
 
5790
- msgid "Some hosts are ignored!"
6307
+ msgid "Some hosts are not registered as content hosts and will be ignored."
5791
6308
  msgstr ""
5792
6309
 
5793
6310
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -5811,13 +6328,13 @@ msgstr ""
5811
6328
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5812
6329
  msgstr ""
5813
6330
 
5814
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6331
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
5815
6332
  msgstr ""
5816
6333
 
5817
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6334
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5818
6335
  msgstr ""
5819
6336
 
5820
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6337
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5821
6338
  msgstr ""
5822
6339
 
5823
6340
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -5865,9 +6382,15 @@ msgstr ""
5865
6382
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5866
6383
  msgstr ""
5867
6384
 
6385
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6386
+ msgstr ""
6387
+
5868
6388
  msgid "Something went wrong while loading the content views. See the logs for more information"
5869
6389
  msgstr ""
5870
6390
 
6391
+ msgid "Something went wrong while refreshing alternate content sources: "
6392
+ msgstr ""
6393
+
5871
6394
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5872
6395
  msgstr ""
5873
6396
 
@@ -5880,6 +6403,9 @@ msgstr ""
5880
6403
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5881
6404
  msgstr ""
5882
6405
 
6406
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6407
+ msgstr ""
6408
+
5883
6409
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
5884
6410
  msgstr ""
5885
6411
 
@@ -5898,9 +6424,33 @@ msgstr ""
5898
6424
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
5899
6425
  msgstr ""
5900
6426
 
6427
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6428
+ msgstr ""
6429
+
6430
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6431
+ msgstr ""
6432
+
6433
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6434
+ msgstr ""
6435
+
6436
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6437
+ msgstr ""
6438
+
5901
6439
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5902
6440
  msgstr ""
5903
6441
 
6442
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6443
+ msgstr ""
6444
+
6445
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6446
+ msgstr ""
6447
+
6448
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6449
+ msgstr ""
6450
+
6451
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6452
+ msgstr ""
6453
+
5904
6454
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5905
6455
  msgstr ""
5906
6456
 
@@ -5919,6 +6469,9 @@ msgstr "來源 RPM"
5919
6469
  msgid "Source RPMs"
5920
6470
  msgstr "來源 RPM"
5921
6471
 
6472
+ msgid "Source type"
6473
+ msgstr ""
6474
+
5922
6475
  msgid "Specify an export chunk size less than 1_000_000 GB"
5923
6476
  msgstr ""
5924
6477
 
@@ -5947,7 +6500,7 @@ msgid "Starts"
5947
6500
  msgstr "起始"
5948
6501
 
5949
6502
  msgid "State"
5950
- msgstr ""
6503
+ msgstr "狀態"
5951
6504
 
5952
6505
  msgid "Status"
5953
6506
  msgstr "狀態"
@@ -5976,12 +6529,12 @@ msgstr "提交"
5976
6529
  msgid "Subnet IDs"
5977
6530
  msgstr "子網路的 ID"
5978
6531
 
6532
+ msgid "Subpaths"
6533
+ msgstr ""
6534
+
5979
6535
  msgid "Subscription"
5980
6536
  msgstr "訂閱"
5981
6537
 
5982
- msgid "Subscription Allocation"
5983
- msgstr ""
5984
-
5985
6538
  msgid "Subscription Details"
5986
6539
  msgstr "訂閱詳細資訊"
5987
6540
 
@@ -6012,9 +6565,6 @@ msgstr "訂閱狀態"
6012
6565
  msgid "Subscription UUID"
6013
6566
  msgstr ""
6014
6567
 
6015
- msgid "Subscription Watch"
6016
- msgstr ""
6017
-
6018
6568
  msgid "Subscription connection enabled"
6019
6569
  msgstr ""
6020
6570
 
@@ -6039,6 +6589,9 @@ msgstr "訂閱清單檔案"
6039
6589
  msgid "Subscription not found"
6040
6590
  msgstr ""
6041
6591
 
6592
+ msgid "Subscription status"
6593
+ msgstr ""
6594
+
6042
6595
  msgid "Subscription was not persisted - %{error_message}"
6043
6596
  msgstr ""
6044
6597
 
@@ -6057,6 +6610,9 @@ msgstr ""
6057
6610
  msgid "Subscriptions information based on selected activation keys:"
6058
6611
  msgstr "根基於啟動金鑰的訂閱資訊:"
6059
6612
 
6613
+ msgid "Subscriptions service"
6614
+ msgstr ""
6615
+
6060
6616
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
6061
6617
  msgstr ""
6062
6618
 
@@ -6075,12 +6631,18 @@ msgstr "已成功變更 %s 產品的同步計畫"
6075
6631
  msgid "Successfully initiated removal of %s product(s)"
6076
6632
  msgstr "已成功開始移除 %s 項產品之活動"
6077
6633
 
6634
+ msgid "Successfully refreshed."
6635
+ msgstr ""
6636
+
6078
6637
  msgid "Successfully removed %s Host(s)."
6079
6638
  msgstr "已成功移除 %s 台主機。"
6080
6639
 
6081
6640
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6082
6641
  msgstr "已成功移除 %{count} 台內容主機,從主機集項目 %{host_collection}。"
6083
6642
 
6643
+ msgid "Successfully synced capsule."
6644
+ msgstr ""
6645
+
6084
6646
  msgid "Successfully synchronized."
6085
6647
  msgstr ""
6086
6648
 
@@ -6162,9 +6724,15 @@ msgstr "同步一或多項產品"
6162
6724
  msgid "Sync plan identifier to attach"
6163
6725
  msgstr "同步要連接的計畫識別子"
6164
6726
 
6727
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6728
+ msgstr ""
6729
+
6165
6730
  msgid "Sync state"
6166
6731
  msgstr ""
6167
6732
 
6733
+ msgid "Syncable export"
6734
+ msgstr ""
6735
+
6168
6736
  msgid "Synced "
6169
6737
  msgstr ""
6170
6738
 
@@ -6213,6 +6781,12 @@ msgstr "系統狀態"
6213
6781
  msgid "System purpose"
6214
6782
  msgstr ""
6215
6783
 
6784
+ msgid "System purpose attributes updated"
6785
+ msgstr ""
6786
+
6787
+ 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."
6788
+ msgstr ""
6789
+
6216
6790
  msgid "Tag name"
6217
6791
  msgstr ""
6218
6792
 
@@ -6243,9 +6817,6 @@ msgstr "'%s' 環境不可包含變更集!"
6243
6817
  msgid "The Alternate Content Source type"
6244
6818
  msgstr ""
6245
6819
 
6246
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6247
- msgstr ""
6248
-
6249
6820
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6250
6821
  msgstr ""
6251
6822
 
@@ -6297,9 +6868,6 @@ msgstr ""
6297
6868
  msgid "The field to sort the data by. Defaults to the created date."
6298
6869
  msgstr ""
6299
6870
 
6300
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6301
- msgstr ""
6302
-
6303
6871
  msgid "The following hosts have errata that apply to them: "
6304
6872
  msgstr "下列主機含有套用至它們的勘誤:"
6305
6873
 
@@ -6326,6 +6894,9 @@ msgstr ""
6326
6894
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6327
6895
  msgstr ""
6328
6896
 
6897
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6898
+ msgstr ""
6899
+
6329
6900
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6330
6901
  msgstr ""
6331
6902
 
@@ -6367,7 +6938,7 @@ msgstr "您嘗試存取的網頁需要選擇特定組織。"
6367
6938
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
6368
6939
  msgstr ""
6369
6940
 
6370
- msgid "The port used by Pulp Crane to provide Docker Registries"
6941
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6371
6942
  msgstr ""
6372
6943
 
6373
6944
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
@@ -6379,6 +6950,9 @@ msgstr "推送 %{content_view} 至 <b>%{environment}</b> 的程序已完成。
6379
6950
  msgid "The repository is already enabled"
6380
6951
  msgstr "軟體庫已啟用"
6381
6952
 
6953
+ msgid "The repository's publication is missing. Please run a 'complete sync' on %s."
6954
+ msgstr ""
6955
+
6382
6956
  msgid "The request did not contain any repository information."
6383
6957
  msgstr ""
6384
6958
 
@@ -6412,13 +6986,19 @@ msgstr "「%s」的同步已完成。以下為新勘誤的摘要。"
6412
6986
  msgid "The token key to use for authentication."
6413
6987
  msgstr ""
6414
6988
 
6989
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6990
+ msgstr ""
6991
+
6992
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6993
+ msgstr ""
6994
+
6415
6995
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6416
6996
  msgstr "內容的類型。支援以下類型:「package」(套件)與「package_group」(套件群組)。"
6417
6997
 
6418
6998
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6419
6999
  msgstr "內容的類型。支援以下類型;「package」(套件)、「package_group」(套件群組)與「errata」(勘誤)。"
6420
7000
 
6421
- msgid "There are no Subscription Allocations to display"
7001
+ msgid "There are no Manifests to display"
6422
7002
  msgstr ""
6423
7003
 
6424
7004
  msgid "There are no Subscriptions to display"
@@ -6445,6 +7025,9 @@ msgstr "未指定環境或是版本,或是指定了無效的環境/版本。
6445
7025
  msgid "There is no Manifest History to display."
6446
7026
  msgstr ""
6447
7027
 
7028
+ msgid "There is no downloaded content to clean."
7029
+ msgstr ""
7030
+
6448
7031
  msgid "There is no such HTTP proxy"
6449
7032
  msgstr ""
6450
7033
 
@@ -6487,6 +7070,9 @@ msgstr ""
6487
7070
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6488
7071
  msgstr ""
6489
7072
 
7073
+ msgid "This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \"%{name}\" before deleting."
7074
+ msgstr ""
7075
+
6490
7076
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6491
7077
  msgstr "此憑證能讓使用者透過瀏覽器檢視任何環境中的軟體庫。"
6492
7078
 
@@ -6511,7 +7097,7 @@ msgstr ""
6511
7097
  msgid "This host does not have any packages."
6512
7098
  msgstr ""
6513
7099
 
6514
- msgid "This host has errata that are applicable, but not installable."
7100
+ msgid "This host has errata that are applicable, but not installable. Adjust your filters and try again."
6515
7101
  msgstr ""
6516
7102
 
6517
7103
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -6520,13 +7106,13 @@ msgstr ""
6520
7106
  msgid "This host's organization is in Simple Content Access mode. Auto-attach is disabled"
6521
7107
  msgstr ""
6522
7108
 
6523
- msgid "This is disabled because a manifest related task is in progress."
7109
+ msgid "This is disabled because a manifest task is in progress"
6524
7110
  msgstr ""
6525
7111
 
6526
- msgid "This is disabled because a manifest task is in progress"
7112
+ msgid "This is disabled because a manifest-related task is in progress."
6527
7113
  msgstr ""
6528
7114
 
6529
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7115
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6530
7116
  msgstr ""
6531
7117
 
6532
7118
  msgid "This is disabled because no manifest exists"
@@ -6541,10 +7127,10 @@ msgstr ""
6541
7127
  msgid "This is not a linked repository"
6542
7128
  msgstr ""
6543
7129
 
6544
- msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage at {subscriptionWatch}."
7130
+ msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage with the {subscriptionsService}."
6545
7131
  msgstr ""
6546
7132
 
6547
- msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
7133
+ msgid "This organization is not using {scaLink}. Entitlement-based subscription management is deprecated and will be removed in a future version."
6548
7134
  msgstr ""
6549
7135
 
6550
7136
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
@@ -6595,12 +7181,24 @@ msgstr ""
6595
7181
  msgid "Title"
6596
7182
  msgstr "提示"
6597
7183
 
7184
+ msgid "To get started, add this host to a host collection."
7185
+ msgstr ""
7186
+
7187
+ msgid "To update the selected host configuration, update hosts manually in the next section."
7188
+ msgstr ""
7189
+
7190
+ msgid "To update the selected host configuration, {link}, or update hosts manually in the next section."
7191
+ msgstr ""
7192
+
6598
7193
  msgid "Toggling Simple Content Access will refresh your manifest."
6599
7194
  msgstr ""
6600
7195
 
6601
7196
  msgid "Total steps: "
6602
7197
  msgstr ""
6603
7198
 
7199
+ msgid "Tracer"
7200
+ msgstr ""
7201
+
6604
7202
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6605
7203
  msgstr ""
6606
7204
 
@@ -6610,18 +7208,33 @@ msgstr ""
6610
7208
  msgid "Traces"
6611
7209
  msgstr ""
6612
7210
 
7211
+ msgid "Traces are being enabled"
7212
+ msgstr ""
7213
+
6613
7214
  msgid "Traces are not enabled"
6614
7215
  msgstr ""
6615
7216
 
6616
7217
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6617
7218
  msgstr ""
6618
7219
 
7220
+ msgid "Traces may be enabled by a user with the appropriate permissions."
7221
+ msgstr ""
7222
+
6619
7223
  msgid "Traces may be listed here after {pkgLink}."
6620
7224
  msgstr ""
6621
7225
 
7226
+ msgid "Traces not available"
7227
+ msgstr ""
7228
+
6622
7229
  msgid "Traces that require logout cannot be restarted remotely"
6623
7230
  msgstr ""
6624
7231
 
7232
+ msgid "Traces will be shown here to a user with the appropriate permissions."
7233
+ msgstr ""
7234
+
7235
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7236
+ msgstr ""
7237
+
6625
7238
  msgid "Trigger an auto-attach of subscriptions"
6626
7239
  msgstr "觸發自動連接訂閱服務"
6627
7240
 
@@ -6652,9 +7265,18 @@ msgstr ""
6652
7265
  msgid "Type of content: \"cert\", \"gpg_key\""
6653
7266
  msgstr ""
6654
7267
 
7268
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7269
+ msgstr ""
7270
+
6655
7271
  msgid "URL"
6656
7272
  msgstr "URL"
6657
7273
 
7274
+ msgid "URL and paths"
7275
+ msgstr ""
7276
+
7277
+ msgid "URL and subpaths"
7278
+ msgstr ""
7279
+
6658
7280
  msgid "URL needs to have a trailing /"
6659
7281
  msgstr ""
6660
7282
 
@@ -6688,6 +7310,12 @@ msgstr "無法連線"
6688
7310
  msgid "Unable to connect. Got: %s"
6689
7311
  msgstr "無法連線。收到:%s"
6690
7312
 
7313
+ msgid "Unable to create ContentViewEnvironment. Check the logs for more information."
7314
+ msgstr ""
7315
+
7316
+ msgid "Unable to delete any alternate content source. You either do not have the permission to delete, or none of the alternate content sources exist."
7317
+ msgstr ""
7318
+
6691
7319
  msgid "Unable to detect pulp storage"
6692
7320
  msgstr "無法偵測 pulp 儲存"
6693
7321
 
@@ -6721,6 +7349,9 @@ msgstr "無法重新指定內容主機。請指定 system_content_view_id 與 sy
6721
7349
  msgid "Unable to reassign systems. Please check system_content_view_id and system_environment_id."
6722
7350
  msgstr "無法重新指定系統。請檢查 system_content_view_id 與 system_environment_id。"
6723
7351
 
7352
+ msgid "Unable to refresh any alternate content source. You either do not have the permission to refresh, or none of the alternate content sources exist."
7353
+ msgstr ""
7354
+
6724
7355
  msgid "Unable to send errata e-mail notification: %{error}"
6725
7356
  msgstr "無法收到勘誤的電子郵件通知:%{error}"
6726
7357
 
@@ -6850,7 +7481,7 @@ msgstr "更新同步計畫"
6850
7481
  msgid "Update an activation key"
6851
7482
  msgstr "更新啟動金鑰"
6852
7483
 
6853
- msgid "Update an alternate content source"
7484
+ msgid "Update an alternate content source."
6854
7485
  msgstr ""
6855
7486
 
6856
7487
  msgid "Update an environment"
@@ -7006,6 +7637,9 @@ msgstr ""
7006
7637
  msgid "Upload request id"
7007
7638
  msgstr "上傳需求 ID"
7008
7639
 
7640
+ msgid "Upstream Candlepin"
7641
+ msgstr ""
7642
+
7009
7643
  msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7010
7644
  msgstr ""
7011
7645
 
@@ -7054,6 +7688,15 @@ msgstr ""
7054
7688
  msgid "Usage of host"
7055
7689
  msgstr ""
7056
7690
 
7691
+ msgid "Usage type"
7692
+ msgstr ""
7693
+
7694
+ msgid "Use HTTP Proxies"
7695
+ msgstr ""
7696
+
7697
+ msgid "Use HTTP proxies"
7698
+ msgstr ""
7699
+
7057
7700
  msgid "Use remote execution by default"
7058
7701
  msgstr ""
7059
7702
 
@@ -7099,6 +7742,9 @@ msgstr "有效"
7099
7742
  msgid "Value must either be a boolean or 'default' for 'enabled'"
7100
7743
  msgstr ""
7101
7744
 
7745
+ msgid "Verify SSL"
7746
+ msgstr "驗證 SSL"
7747
+
7102
7748
  msgid "Verify checksum"
7103
7749
  msgstr ""
7104
7750
 
@@ -7126,6 +7772,12 @@ msgstr ""
7126
7772
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7127
7773
  msgstr ""
7128
7774
 
7775
+ msgid "Version ${versionOne}"
7776
+ msgstr ""
7777
+
7778
+ msgid "Version ${versionTwo}"
7779
+ msgstr ""
7780
+
7129
7781
  msgid "Version details updated."
7130
7782
  msgstr ""
7131
7783
 
@@ -7138,6 +7790,9 @@ msgstr "版本"
7138
7790
  msgid "Versions "
7139
7791
  msgstr ""
7140
7792
 
7793
+ msgid "Versions to compare"
7794
+ msgstr ""
7795
+
7141
7796
  msgid "Versions to exclusively include in the action"
7142
7797
  msgstr ""
7143
7798
 
@@ -7150,30 +7805,45 @@ msgstr ""
7150
7805
  msgid "View %{view} has not been promoted to %{env}"
7151
7806
  msgstr "檢視 %{view} 並未被推送到 %{env}"
7152
7807
 
7808
+ msgid "View Subscription Usage"
7809
+ msgstr ""
7810
+
7153
7811
  msgid "View a report of the affected hosts"
7154
7812
  msgstr ""
7155
7813
 
7814
+ msgid "View applicable errata"
7815
+ msgstr ""
7816
+
7817
+ msgid "View by"
7818
+ msgstr ""
7819
+
7156
7820
  msgid "View matching content"
7157
7821
  msgstr ""
7158
7822
 
7159
7823
  msgid "View tasks "
7160
7824
  msgstr ""
7161
7825
 
7162
- msgid "View the Content Views page to manage and promote content views, or select a different environment."
7826
+ msgid "View the Content Views page"
7827
+ msgstr ""
7828
+
7829
+ msgid "View the job"
7163
7830
  msgstr ""
7164
7831
 
7165
7832
  msgid "Virtual"
7166
7833
  msgstr "虛擬"
7167
7834
 
7835
+ msgid "Virtual guests"
7836
+ msgstr ""
7837
+
7838
+ msgid "Virtual host"
7839
+ msgstr ""
7840
+
7168
7841
  msgid "Waiting to start."
7169
7842
  msgstr ""
7170
7843
 
7171
7844
  msgid "Warning"
7172
7845
  msgstr "警告"
7173
7846
 
7174
- msgid "What's next?"
7175
- msgstr ""
7176
-
7177
7847
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
7178
7848
  msgstr ""
7179
7849
 
@@ -7213,6 +7883,9 @@ msgstr ""
7213
7883
  msgid "Whether to include available content attribute in results"
7214
7884
  msgstr "是否要在結果中包括可用的內容屬性"
7215
7885
 
7886
+ msgid "Whether to turn on Simple Content Access for the organization."
7887
+ msgstr ""
7888
+
7216
7889
  msgid "Workers"
7217
7890
  msgstr "工作者"
7218
7891
 
@@ -7285,9 +7958,6 @@ msgstr ""
7285
7958
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
7286
7959
  msgstr ""
7287
7960
 
7288
- msgid "You may want to check the host's content view and lifecycle environment."
7289
- msgstr ""
7290
-
7291
7961
  msgid "You were not allowed to add %s"
7292
7962
  msgstr "不允許新增 %s"
7293
7963
 
@@ -7309,6 +7979,12 @@ msgstr ""
7309
7979
  msgid "Your search returned no matching "
7310
7980
  msgstr ""
7311
7981
 
7982
+ msgid "Your search returned no matching ${name}."
7983
+ msgstr ""
7984
+
7985
+ msgid "Your search returned no matching DEBs."
7986
+ msgstr ""
7987
+
7312
7988
  msgid "Your search returned no matching Module streams."
7313
7989
  msgstr ""
7314
7990
 
@@ -7321,12 +7997,18 @@ msgstr ""
7321
7997
  msgid "Your search returned no matching hosts."
7322
7998
  msgstr ""
7323
7999
 
8000
+ msgid "Yum"
8001
+ msgstr ""
8002
+
7324
8003
  msgid "Yum Metadata: %s"
7325
8004
  msgstr "Yum Metadata:%s"
7326
8005
 
7327
8006
  msgid "a content unit"
7328
8007
  msgstr ""
7329
8008
 
8009
+ msgid "a custom CDN URL"
8010
+ msgstr ""
8011
+
7330
8012
  msgid "a deb package"
7331
8013
  msgstr ""
7332
8014
 
@@ -7414,6 +8096,12 @@ msgstr "註冊後自動連接訂閱"
7414
8096
  msgid "base url to perform repo discovery on"
7415
8097
  msgstr "進行軟體庫復原的基礎網址"
7416
8098
 
8099
+ msgid "bug fix"
8100
+ msgstr ""
8101
+
8102
+ msgid "bug fixes"
8103
+ msgstr ""
8104
+
7417
8105
  msgid "bulk add filter rules"
7418
8106
  msgstr ""
7419
8107
 
@@ -7477,8 +8165,8 @@ msgstr "無法包含不屬於此內容視域的篩選器"
7477
8165
  msgid "cannot contain more than %s characters"
7478
8166
  msgstr "不可包含超過 %s 個字元"
7479
8167
 
7480
- msgid "checking Candlepin task status"
7481
- msgstr "檢查 Candlepin 任務狀態"
8168
+ msgid "checking %s task status"
8169
+ msgstr ""
7482
8170
 
7483
8171
  msgid "checking Pulp task status"
7484
8172
  msgstr "檢查 Pulp 任務狀態"
@@ -7498,9 +8186,6 @@ msgstr ""
7498
8186
  msgid "content release version"
7499
8187
  msgstr "內容發行版本"
7500
8188
 
7501
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7502
- msgstr ""
7503
-
7504
8189
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7505
8190
  msgstr ""
7506
8191
 
@@ -7555,7 +8240,7 @@ msgstr "欲進行比較的內容視域版本"
7555
8240
  msgid "create a filter for a content view"
7556
8241
  msgstr "為內容視域建立篩選器"
7557
8242
 
7558
- msgid "deb Packages"
8243
+ msgid "deb, package, package group, or docker tag names"
7559
8244
  msgstr ""
7560
8245
 
7561
8246
  msgid "deb_ids is not an array"
@@ -7582,12 +8267,21 @@ msgstr "篩選器描述"
7582
8267
  msgid "description of the repository"
7583
8268
  msgstr ""
7584
8269
 
8270
+ msgid "disk"
8271
+ msgstr ""
8272
+
7585
8273
  msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7586
8274
  msgstr ""
7587
8275
 
7588
8276
  msgid "enables or disables synchronization"
7589
8277
  msgstr "啟用或停用同步"
7590
8278
 
8279
+ msgid "enhancement"
8280
+ msgstr ""
8281
+
8282
+ msgid "enhancements"
8283
+ msgstr ""
8284
+
7591
8285
  msgid "environment"
7592
8286
  msgstr "環境"
7593
8287
 
@@ -7711,8 +8405,8 @@ msgstr "用來篩選內容的 ID"
7711
8405
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
7712
8406
  msgstr ""
7713
8407
 
7714
- msgid "initiating Candlepin task"
7715
- msgstr "初始化 Candlepin 任務"
8408
+ msgid "initiating %s task"
8409
+ msgstr ""
7716
8410
 
7717
8411
  msgid "initiating Pulp task"
7718
8412
  msgstr "初始化 Pulp 任務"
@@ -7771,9 +8465,6 @@ msgstr "環境的標籤"
7771
8465
  msgid "label of the repository"
7772
8466
  msgstr ""
7773
8467
 
7774
- msgid "limit to only repositories of this type"
7775
- msgstr ""
7776
-
7777
8468
  msgid "limit to only repositories with this download policy"
7778
8469
  msgstr ""
7779
8470
 
@@ -7891,9 +8582,6 @@ msgstr "取得給訂閱服務使用的清單歷史"
7891
8582
  msgid "of environment must be unique within one organization"
7892
8583
  msgstr "一個組織中的環境名稱必須是獨特的"
7893
8584
 
7894
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
7895
- msgstr ""
7896
-
7897
8585
  msgid "only show the repositories readable by this user with this username"
7898
8586
  msgstr ""
7899
8587
 
@@ -8005,6 +8693,15 @@ msgstr "單一資源回應的根節點(選用)"
8005
8693
  msgid "rule identifier"
8006
8694
  msgstr "規則識別子"
8007
8695
 
8696
+ msgid "run job invocation"
8697
+ msgstr ""
8698
+
8699
+ msgid "security advisories"
8700
+ msgstr ""
8701
+
8702
+ msgid "security advisory"
8703
+ msgstr ""
8704
+
8008
8705
  msgid "service level"
8009
8706
  msgstr "服務等級"
8010
8707
 
@@ -8059,9 +8756,6 @@ msgstr "Red Hat 供應者的以下屬性可以更新:[ %s ]"
8059
8756
  msgid "to"
8060
8757
  msgstr ""
8061
8758
 
8062
- msgid "to update configuration on all hosts, or"
8063
- msgstr ""
8064
-
8065
8759
  msgid "true if the latest version of the component's content view is desired"
8066
8760
  msgstr ""
8067
8761
 
@@ -8074,10 +8768,7 @@ msgstr "如果此軟體庫可以透過 HTTP 出版,設為真"
8074
8768
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8075
8769
  msgstr ""
8076
8770
 
8077
- msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8078
- msgstr ""
8079
-
8080
- msgid "type of repo"
8771
+ msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8081
8772
  msgstr ""
8082
8773
 
8083
8774
  msgid "types of filters"
@@ -8092,9 +8783,6 @@ msgstr ""
8092
8783
  msgid "update a filter"
8093
8784
  msgstr "更新篩選器"
8094
8785
 
8095
- msgid "update configuration on the hosts manually:"
8096
- msgstr ""
8097
-
8098
8786
  msgid "updating package group..."
8099
8787
  msgstr "正在更新套件群組..."
8100
8788
 
@@ -8122,8 +8810,8 @@ msgstr "透過遠端執行"
8122
8810
  msgid "view content view tabs."
8123
8811
  msgstr ""
8124
8812
 
8125
- msgid "waiting for Candlepin to finish the task"
8126
- msgstr "等待 Candlepin 完成任務"
8813
+ msgid "waiting for %s to finish the task"
8814
+ msgstr ""
8127
8815
 
8128
8816
  msgid "waiting for Pulp to finish the task"
8129
8817
  msgstr "等待 Pulp 完成任務"