katello 4.4.2.2 → 4.5.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (444) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
  3. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +98 -0
  4. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
  5. data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
  7. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
  8. data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
  9. data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
  11. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
  12. data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
  13. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/repositories_controller.rb +9 -3
  15. data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
  16. data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
  17. data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
  18. data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
  19. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
  21. data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
  22. data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +2 -2
  24. data/app/lib/actions/katello/content_view/destroy.rb +2 -1
  25. data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
  26. data/app/lib/actions/katello/content_view/publish.rb +7 -9
  27. data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
  28. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
  29. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +25 -22
  31. data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
  32. data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
  33. data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
  34. data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
  35. data/app/lib/actions/katello/product/content_create.rb +10 -8
  36. data/app/lib/actions/katello/repository/destroy.rb +36 -12
  37. data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
  38. data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
  39. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
  40. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
  41. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
  42. data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
  43. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
  44. data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
  45. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
  46. data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
  47. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +18 -0
  48. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
  49. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +18 -0
  50. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  51. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
  52. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
  53. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +4 -1
  54. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -0
  55. data/app/lib/katello/api/v2/error_handling.rb +1 -0
  56. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
  57. data/app/lib/katello/util/errata.rb +2 -3
  58. data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
  59. data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
  60. data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
  61. data/app/models/katello/alternate_content_source.rb +66 -0
  62. data/app/models/katello/authorization/alternate_content_source.rb +33 -0
  63. data/app/models/katello/authorization/repository.rb +3 -3
  64. data/app/models/katello/candlepin/repository_mapper.rb +13 -6
  65. data/app/models/katello/cdn_configuration.rb +15 -15
  66. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
  67. data/app/models/katello/concerns/host_managed_extensions.rb +7 -5
  68. data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
  69. data/app/models/katello/concerns/organization_extensions.rb +4 -2
  70. data/app/models/katello/concerns/setting_extensions.rb +14 -0
  71. data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
  72. data/app/models/katello/content.rb +1 -0
  73. data/app/models/katello/content_credential.rb +6 -0
  74. data/app/models/katello/content_override.rb +7 -3
  75. data/app/models/katello/content_view.rb +33 -2
  76. data/app/models/katello/content_view_erratum_filter.rb +26 -12
  77. data/app/models/katello/content_view_filter.rb +4 -0
  78. data/app/models/katello/content_view_version.rb +12 -0
  79. data/app/models/katello/content_view_version_export_history.rb +3 -1
  80. data/app/models/katello/erratum.rb +9 -5
  81. data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
  82. data/app/models/katello/host/content_facet.rb +14 -0
  83. data/app/models/katello/host_available_module_stream.rb +12 -0
  84. data/app/models/katello/product_content.rb +1 -0
  85. data/app/models/katello/purpose_sla_status.rb +1 -1
  86. data/app/models/katello/purpose_status.rb +2 -2
  87. data/app/models/katello/repository.rb +7 -4
  88. data/app/models/katello/root_repository.rb +1 -1
  89. data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
  90. data/app/models/katello/sync_plan.rb +1 -1
  91. data/app/presenters/katello/product_content_presenter.rb +15 -0
  92. data/app/services/katello/applicable_host_queue.rb +1 -1
  93. data/app/services/katello/content_unit_indexer.rb +2 -1
  94. data/app/services/katello/product_content_finder.rb +12 -2
  95. data/app/services/katello/pulp3/alternate_content_source.rb +117 -0
  96. data/app/services/katello/pulp3/api/file.rb +8 -0
  97. data/app/services/katello/pulp3/api/yum.rb +8 -0
  98. data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
  99. data/app/services/katello/pulp3/content_view_version/import.rb +97 -71
  100. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
  101. data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
  102. data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
  103. data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
  104. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +88 -39
  105. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
  106. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
  107. data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
  108. data/app/services/katello/pulp3/repository/yum.rb +70 -12
  109. data/app/services/katello/pulp3/repository.rb +7 -91
  110. data/app/services/katello/pulp3/service_common.rb +66 -0
  111. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
  112. data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
  113. data/app/views/foreman/job_templates/change_content_source.erb +1 -1
  114. data/app/views/foreman/job_templates/install_errata.erb +5 -5
  115. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +7 -6
  116. data/app/views/foreman/job_templates/install_group.erb +4 -4
  117. data/app/views/foreman/job_templates/install_package.erb +4 -4
  118. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
  119. data/app/views/foreman/job_templates/remove_group.erb +4 -4
  120. data/app/views/foreman/job_templates/remove_package.erb +4 -4
  121. data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
  122. data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
  123. data/app/views/foreman/job_templates/restart_services.erb +3 -3
  124. data/app/views/foreman/job_templates/update_group.erb +4 -4
  125. data/app/views/foreman/job_templates/update_package.erb +4 -4
  126. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
  127. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +15 -0
  128. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
  129. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
  130. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  131. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
  132. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
  133. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  134. data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
  135. data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
  136. data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
  137. data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
  138. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
  139. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
  140. data/app/views/katello/sync_management/_repo.html.erb +8 -29
  141. data/config/routes/api/v2.rb +7 -0
  142. data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
  143. data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
  144. data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
  145. data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
  146. data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
  147. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +10 -12
  148. data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
  149. data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
  150. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
  151. data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
  152. data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
  153. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
  154. data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
  155. data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
  156. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
  157. data/db/seeds.d/110-content-view-autopublish.rb +13 -0
  158. data/db/seeds.d/150-module_job_templates.rb +1 -1
  159. data/engines/bastion/README.md +1 -0
  160. data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
  161. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +10 -5
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -9
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
  189. data/lib/katello/engine.rb +1 -5
  190. data/lib/katello/permission_creator.rb +32 -4
  191. data/lib/katello/plugin.rb +378 -4
  192. data/lib/katello/tasks/reset.rake.bak +67 -0
  193. data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
  194. data/lib/katello/version.rb +1 -1
  195. data/locale/action_names.rb +47 -41
  196. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  197. data/locale/bn/katello.po +820 -106
  198. data/locale/bn/katello.po.time_stamp +0 -0
  199. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  200. data/locale/cs/katello.po +818 -104
  201. data/locale/cs/katello.po.time_stamp +0 -0
  202. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  203. data/locale/de/katello.po +893 -179
  204. data/locale/de/katello.po.time_stamp +0 -0
  205. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  206. data/locale/en/katello.po +817 -103
  207. data/locale/en/katello.po.time_stamp +0 -0
  208. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  209. data/locale/es/katello.po +882 -168
  210. data/locale/es/katello.po.time_stamp +0 -0
  211. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  212. data/locale/fr/katello.po +1219 -505
  213. data/locale/fr/katello.po.time_stamp +0 -0
  214. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  215. data/locale/gu/katello.po +826 -112
  216. data/locale/gu/katello.po.time_stamp +0 -0
  217. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  218. data/locale/hi/katello.po +826 -112
  219. data/locale/hi/katello.po.time_stamp +0 -0
  220. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  221. data/locale/it/katello.po +863 -148
  222. data/locale/it/katello.po.time_stamp +0 -0
  223. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ja/katello.po +1216 -499
  225. data/locale/ja/katello.po.time_stamp +0 -0
  226. data/locale/katello.pot +3847 -2507
  227. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/kn/katello.po +826 -112
  229. data/locale/kn/katello.po.time_stamp +0 -0
  230. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  231. data/locale/ko/katello.po +912 -198
  232. data/locale/ko/katello.po.time_stamp +0 -0
  233. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/mr/katello.po +826 -112
  235. data/locale/mr/katello.po.time_stamp +0 -0
  236. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  237. data/locale/or/katello.po +826 -112
  238. data/locale/or/katello.po.time_stamp +0 -0
  239. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/pa/katello.po +826 -112
  241. data/locale/pa/katello.po.time_stamp +0 -0
  242. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  243. data/locale/pt/katello.po +817 -103
  244. data/locale/pt/katello.po.time_stamp +0 -0
  245. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/pt_BR/katello.po +879 -165
  247. data/locale/pt_BR/katello.po.time_stamp +0 -0
  248. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  249. data/locale/ru/katello.po +927 -213
  250. data/locale/ru/katello.po.time_stamp +0 -0
  251. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/ta/katello.po +820 -106
  253. data/locale/ta/katello.po.time_stamp +0 -0
  254. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  255. data/locale/te/katello.po +826 -112
  256. data/locale/te/katello.po.time_stamp +0 -0
  257. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/zh_CN/katello.po +1202 -486
  259. data/locale/zh_CN/katello.po.time_stamp +0 -0
  260. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  261. data/locale/zh_TW/katello.po +856 -142
  262. data/locale/zh_TW/katello.po.time_stamp +0 -0
  263. data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
  264. data/webpack/components/Errata/index.js +38 -8
  265. data/webpack/components/Packages/index.js +1 -4
  266. data/webpack/components/Search/Search.js +18 -3
  267. data/webpack/components/SelectAllCheckbox/index.js +1 -0
  268. data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
  269. data/webpack/components/Table/EmptyStateMessage.js +21 -7
  270. data/webpack/components/Table/MainTable.js +29 -4
  271. data/webpack/components/Table/TableHooks.js +63 -19
  272. data/webpack/components/Table/TableWrapper.js +4 -2
  273. data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
  274. data/webpack/components/Table/components/TranslatedPlural.js +57 -0
  275. data/webpack/components/TypeAhead/TypeAhead.js +8 -0
  276. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
  277. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +5 -2
  278. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
  279. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +256 -0
  280. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +202 -0
  281. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
  282. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
  283. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
  284. data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
  285. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
  286. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
  287. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
  288. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
  289. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
  290. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +187 -0
  291. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
  292. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
  293. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
  294. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
  295. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +110 -0
  296. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
  297. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
  298. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
  299. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
  300. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
  301. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
  302. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +62 -39
  303. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
  304. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
  305. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
  306. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +486 -116
  307. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +147 -1
  308. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +6 -3
  309. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
  310. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +2 -1
  311. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +48 -19
  312. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +35 -47
  313. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  314. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
  315. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
  316. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +269 -132
  317. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +47 -11
  318. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -42
  319. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +36 -1
  320. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +94 -46
  321. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +18 -2
  322. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
  323. data/webpack/containers/Application/config.js +5 -0
  324. data/webpack/global_index.js +30 -7
  325. data/webpack/global_test_setup.js +13 -0
  326. data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
  327. data/webpack/redux/actions/RedHatRepositories/helpers.js +9 -8
  328. data/webpack/scenes/AlternateContentSources/ACSActions.js +53 -0
  329. data/webpack/scenes/AlternateContentSources/ACSConstants.js +4 -0
  330. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
  331. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -0
  332. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +152 -0
  333. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
  334. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
  335. data/webpack/scenes/AlternateContentSources/index.js +4 -0
  336. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
  337. data/webpack/scenes/Content/Table/ContentTable.js +1 -0
  338. data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
  339. data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
  340. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
  341. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
  342. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +4 -3
  343. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -1
  344. data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
  345. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
  346. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
  347. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -3
  348. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -4
  349. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
  350. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +4 -4
  351. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
  352. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
  353. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
  354. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +17 -3
  355. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
  356. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
  357. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
  358. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
  359. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
  360. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
  361. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
  362. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
  363. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  364. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
  365. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
  366. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
  367. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
  368. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
  369. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
  370. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
  371. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
  372. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
  373. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
  374. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
  375. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
  376. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
  377. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
  378. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
  379. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
  380. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
  381. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
  382. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
  383. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
  384. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
  385. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
  386. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
  387. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
  388. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
  389. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
  390. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
  391. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
  392. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
  393. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
  394. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
  395. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
  396. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
  397. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
  398. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
  399. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
  400. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
  402. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
  403. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
  404. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
  405. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  406. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
  407. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
  408. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
  409. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
  410. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
  411. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +4 -4
  412. data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
  413. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
  414. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
  415. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +9 -5
  416. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
  417. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
  418. data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
  419. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
  420. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -4
  421. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +1 -1
  422. data/webpack/scenes/ContentViews/helpers.js +3 -0
  423. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
  424. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
  425. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
  426. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
  427. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
  428. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
  429. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
  430. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
  431. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
  432. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
  433. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
  434. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
  435. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
  436. data/webpack/scenes/Tasks/TaskActions.js +6 -0
  437. data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
  438. data/webpack/scenes/Tasks/helpers.js +33 -5
  439. data/webpack/utils/helpers.js +2 -0
  440. metadata +158 -40
  441. data/app/models/setting/content.rb +0 -201
  442. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  443. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
  444. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
@@ -6,16 +6,16 @@
6
6
  # Translators:
7
7
  # Martin Liu <liuzh66@gmail.com>, 2020
8
8
  # 0868a4d1af5275b3f70b0a6dac4c99a4, 2020
9
- # Bryan Kearney <bryan.kearney@gmail.com>, 2021
10
- # tim123, 2021
11
- # Amit Upadhye <aupadhye@redhat.com>, 2021
9
+ # tim123, 2022
10
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2022
11
+ # Amit Upadhye <aupadhye@redhat.com>, 2022
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
15
  "Project-Id-Version: katello 2.5.0\n"
16
16
  "Report-Msgid-Bugs-To: \n"
17
17
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
18
- "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2021\n"
18
+ "Last-Translator: Amit Upadhye <aupadhye@redhat.com>, 2022\n"
19
19
  "Language-Team: Chinese (China) (https://www.transifex.com/foreman/teams/114/zh"
20
20
  "_CN/)\n"
21
21
  "MIME-Version: 1.0\n"
@@ -53,46 +53,49 @@ msgid " View task details "
53
53
  msgstr " 查看任务详情 "
54
54
 
55
55
  msgid " ago"
56
- msgstr ""
56
+ msgstr ""
57
57
 
58
58
  msgid " ago."
59
+ msgstr " 前。"
60
+
61
+ msgid " and"
59
62
  msgstr ""
60
63
 
61
64
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
62
- msgstr ""
65
+ msgstr " 不符合环境路径顺序。建议的做法是提升到路径中的下一环境。"
63
66
 
64
67
  msgid " content view is used in listed component content views. For more information, "
65
- msgstr ""
68
+ msgstr " 用于列出的组件内容视图中的内容视图。如需更多信息, "
66
69
 
67
70
  msgid " content view is used in listed composite content views."
68
- msgstr ""
71
+ msgstr " 内容视图用于列出复合内容视图。"
69
72
 
70
73
  msgid " environment cannot be set to an environment already on its path"
71
74
  msgstr " 环境不能设置到一个已在路径中的环境"
72
75
 
73
76
  msgid " found."
74
- msgstr ""
77
+ msgstr " 找到。"
75
78
 
76
79
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
77
- msgstr ""
80
+ msgstr " 不符合环境路径顺序。建议的做法是提升到路径中的下一环境。"
78
81
 
79
82
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
80
- msgstr ""
83
+ msgstr "${deleteFlow ? '删除' : 'Removing'} 版本 ${versionNameToRemove}"
81
84
 
82
85
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
83
- msgstr ""
86
+ msgstr "${pluralize(akResponse.length, 'activation key')} 将移到内容视图 ${selectedCVNameForAK} 中 "
84
87
 
85
88
  msgid "${pluralize(hostResponse.length, 'host')} will be moved to content view ${selectedCVNameForHosts} in "
86
- msgstr ""
89
+ msgstr "${pluralize(hostResponse.length,'host')} 将移到内容视图 ${selectedCVNameForHosts} 中 "
87
90
 
88
91
  msgid "${pluralize(versionCount, 'content view version')} in the environments below will be removed when content view is deleted"
89
- msgstr ""
92
+ msgstr "在下面环境中的 ${pluralize(versionCount, 'content view version')} 将在内容视图被删除时被删除"
90
93
 
91
94
  msgid "${selectedContentType}"
92
- msgstr ""
95
+ msgstr "${selectedContentType}"
93
96
 
94
97
  msgid "${selectedContentType} will appear here when created."
95
- msgstr ""
98
+ msgstr "${selectedContentType} 在创建后将在此处显示。"
96
99
 
97
100
  msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
98
101
  msgstr "%s%s 有 %s 主机和 %s 主机组,它们需要在删除后重新关联。删除 %s?"
@@ -119,9 +122,12 @@ msgstr "%s 已被删除"
119
122
  msgid "%s is not a valid package name"
120
123
  msgstr "%s 不是一个有效的软件包名称"
121
124
 
122
- msgid "%s is required"
125
+ msgid "%s is not a valid path"
123
126
  msgstr ""
124
127
 
128
+ msgid "%s is required"
129
+ msgstr "%s 是必需的"
130
+
125
131
  msgid "%s is unreachable. %s"
126
132
  msgstr "%s 无法访问。%s"
127
133
 
@@ -348,7 +354,7 @@ msgid "A backend service [ %s ] is unreachable"
348
354
  msgstr "一个后端服务 [ %s ] 无法被访问"
349
355
 
350
356
  msgid "A content view can be added by using the \"Create content view\" button above."
351
- msgstr "可以使用下面的 \"New content view\" 按钮添加一个内容视图。"
357
+ msgstr "您可以使用上面的 \"Create content view\" 按钮添加内容视图。"
352
358
 
353
359
  msgid "A content_type must be provided."
354
360
  msgstr "必須提供 content_type。"
@@ -368,9 +374,6 @@ msgstr "一个新版本 "
368
374
  msgid "A post-promotion summary of hosts with installable errata"
369
375
  msgstr "具有可安装勘误的主机的提升后的摘要"
370
376
 
371
- msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
372
- msgstr "在断开连接模式下运行的服务器不会与 Red Hat CDN 进行通信。"
373
-
374
377
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
375
378
  msgstr "自动修复进程的服务级别,例如 SELF-SUPPORT"
376
379
 
@@ -384,17 +387,23 @@ msgid "A summary of new errata after a repository is synchronized"
384
387
  msgstr "軟體庫同步後的新勘誤摘要"
385
388
 
386
389
  msgid "ANY"
387
- msgstr ""
390
+ msgstr "任何"
388
391
 
389
392
  msgid "About page"
390
393
  msgstr "About 页面"
391
394
 
395
+ msgid "Abstract"
396
+ msgstr ""
397
+
392
398
  msgid "Abstract async task"
393
399
  msgstr "抽象 async 任务"
394
400
 
395
401
  msgid "Accept action timeout"
396
402
  msgstr "接受操作超时"
397
403
 
404
+ msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
405
+ msgstr ""
406
+
398
407
  msgid "Account Number"
399
408
  msgstr "帐号"
400
409
 
@@ -413,12 +422,12 @@ msgstr "操作未经授权在选定主机上执行。"
413
422
  msgid "Action with sub plans"
414
423
  msgstr "有子计划的操作"
415
424
 
416
- msgid "Actions"
417
- msgstr ""
418
-
419
425
  msgid "Activation Keys"
420
426
  msgstr "激活码"
421
427
 
428
+ msgid "Activation key"
429
+ msgstr ""
430
+
422
431
  msgid "Activation key ID"
423
432
  msgstr "激活码 ID"
424
433
 
@@ -429,7 +438,7 @@ msgid "Activation key(s) for Subscription Manager."
429
438
  msgstr "Subscription Manager 的激活码。"
430
439
 
431
440
  msgid "Activation keys"
432
- msgstr ""
441
+ msgstr "激活码"
433
442
 
434
443
  msgid "Activation keys and subscriptions can be managed"
435
444
  msgstr "可管理啟動金鑰與訂閱"
@@ -450,10 +459,10 @@ msgid "Add"
450
459
  msgstr "添加"
451
460
 
452
461
  msgid "Add Bookmark"
453
- msgstr ""
462
+ msgstr "添加书签"
454
463
 
455
464
  msgid "Add RPM rule"
456
- msgstr ""
465
+ msgstr "添加 RPM 规则"
457
466
 
458
467
  msgid "Add Subscriptions"
459
468
  msgstr "添加订阅"
@@ -465,26 +474,32 @@ msgid "Add component"
465
474
  msgstr "添加组件"
466
475
 
467
476
  msgid "Add component content views"
468
- msgstr ""
477
+ msgstr "添加组件内容视图"
469
478
 
470
479
  msgid "Add components to the content view"
471
480
  msgstr "将组件添加到内容视图"
472
481
 
473
482
  msgid "Add content views"
474
- msgstr ""
483
+ msgstr "添加内容视图"
475
484
 
476
485
  msgid "Add custom cron logic for sync plan"
477
486
  msgstr "为同步计划添加自定义 cron 逻辑"
478
487
 
479
488
  msgid "Add errata"
480
- msgstr ""
489
+ msgstr "添加勘误"
481
490
 
482
491
  msgid "Add filter rule"
483
- msgstr ""
492
+ msgstr "增加过滤规则"
484
493
 
485
494
  msgid "Add filters using the 'Add filter' button above."
486
495
  msgstr "使用上方的“添加过滤器”按钮添加过滤器。"
487
496
 
497
+ msgid "Add host to collections"
498
+ msgstr ""
499
+
500
+ msgid "Add host to host collections"
501
+ msgstr ""
502
+
488
503
  msgid "Add host to the host collection"
489
504
  msgstr "新增主機到主機集"
490
505
 
@@ -492,7 +507,7 @@ msgid "Add lifecycle environments to the smart proxy"
492
507
  msgstr "将生命周期环境添加到智能代理"
493
508
 
494
509
  msgid "Add new bookmark"
495
- msgstr ""
510
+ msgstr "添加新书签"
496
511
 
497
512
  msgid "Add one or more host collections to one or more hosts"
498
513
  msgstr "将一个或多个主机集合添加到一个或多个主机"
@@ -504,9 +519,12 @@ msgid "Add products to sync plan"
504
519
  msgstr "新增產品至同步計劃"
505
520
 
506
521
  msgid "Add repositories"
507
- msgstr ""
522
+ msgstr "添加仓库"
508
523
 
509
524
  msgid "Add rule"
525
+ msgstr "添加规则"
526
+
527
+ msgid "Add source"
510
528
  msgstr ""
511
529
 
512
530
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
@@ -516,19 +534,16 @@ msgid "Add subscriptions to one or more hosts"
516
534
  msgstr "将订阅添加到一个或多个主机"
517
535
 
518
536
  msgid "Add to this filter using the 'Add RPM rule' button."
519
- msgstr ""
537
+ msgstr "使用 'Add RPM 规则' 按钮添加到此过滤器。"
520
538
 
521
539
  msgid "Add to this filter using the 'Add filter rule' button."
522
- msgstr ""
523
-
524
- msgid "Add traces by applying updates on this host."
525
- msgstr ""
540
+ msgstr "使用 'Add filter rule' 按钮添加到这个过滤。"
526
541
 
527
542
  msgid "Added"
528
543
  msgstr "添加"
529
544
 
530
545
  msgid "Added %s"
531
- msgstr ""
546
+ msgstr "添加的 %s"
532
547
 
533
548
  msgid "Added Content:"
534
549
  msgstr "已新增內容:"
@@ -543,7 +558,7 @@ msgid "Addons"
543
558
  msgstr "插件"
544
559
 
545
560
  msgid "Affected repositories"
546
- msgstr ""
561
+ msgstr "受影响的仓库"
547
562
 
548
563
  msgid "After generating the incremental update, apply the changes to the specified hosts. Only Errata are supported currently."
549
564
  msgstr "生成增量更新后,对特定主机应用改变。当前仅支持勘误。"
@@ -552,13 +567,13 @@ msgid "Agent action"
552
567
  msgstr "代理操作"
553
568
 
554
569
  msgid "All"
555
- msgstr ""
570
+ msgstr "全部"
556
571
 
557
572
  msgid "All Media"
558
573
  msgstr "所有介质"
559
574
 
560
575
  msgid "All Repositories"
561
- msgstr ""
576
+ msgstr "所有仓库"
562
577
 
563
578
  msgid "All available architectures for this repo are enabled."
564
579
  msgstr "此仓库的所有可用架构均已启用。"
@@ -566,29 +581,53 @@ msgstr "此仓库的所有可用架构均已启用。"
566
581
  msgid "All errata applied"
567
582
  msgstr "所有已应用的勘误"
568
583
 
569
- msgid "All versions"
584
+ msgid "All errata up-to-date"
570
585
  msgstr ""
571
586
 
572
- msgid "All versions will be removed from these environments"
587
+ msgid "All subpaths must have a slash at the end and none at the front"
573
588
  msgstr ""
574
589
 
575
- msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
576
- msgstr "只要主机处于构建模式,允许主机注册绕过 'Host Profile Assume'。"
590
+ msgid "All versions"
591
+ msgstr "所有版本"
592
+
593
+ msgid "All versions will be removed from these environments"
594
+ msgstr "所有版本都将从这些环境中删除"
577
595
 
578
596
  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)"
597
+ msgstr "允许 Katello 直接更新主机安装的软件包、启用的仓库以直模块清单,而不是直接嵌套在 Dynflow 任务中(如果 Puma 进程使用太多内存,则关闭它)"
598
+
599
+ msgid "Allow deleting repositories in published content views"
600
+ msgstr ""
601
+
602
+ msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
579
603
  msgstr ""
580
604
 
581
605
  msgid "Allow hosts to re-register themselves only when they are in build mode"
582
606
  msgstr "仅当主机处于构建模式时才允许主机重新注册"
583
607
 
584
- 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."
585
- msgstr "只要其他主机未使用注册的 DMI UUID,就允许新的主机注册假定注册的配置文件具有匹配的主机名。"
608
+ 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."
609
+ msgstr ""
586
610
 
587
611
  msgid "Also include the latest upgradable package version for each host package"
612
+ msgstr "还包括每个主机软件包的最新可升级软件包版本"
613
+
614
+ msgid "Alter a host's host collections"
615
+ msgstr ""
616
+
617
+ msgid "Alternate Content Sources"
618
+ msgstr ""
619
+
620
+ msgid "Alternate content source ${name} created"
621
+ msgstr ""
622
+
623
+ msgid "Alternate content source ID"
624
+ msgstr ""
625
+
626
+ msgid "Alternate content source deleted"
588
627
  msgstr ""
589
628
 
590
- msgid "Alter a hosts host collections"
591
- msgstr "更改主机主机集合"
629
+ msgid "Alternate content sources"
630
+ msgstr ""
592
631
 
593
632
  msgid "Always Use Latest (currently %{version})"
594
633
  msgstr "始终使用最新(当前为 %{version})"
@@ -599,6 +638,9 @@ msgstr "始终更新至最新版本"
599
638
  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."
600
639
  msgstr "池中处理与主机相关的任务执行的 worker 数量。当设置为 0 时,将使用默认队列。需要重新启动 dynflowd/foreman-tasks 服务。"
601
640
 
641
+ msgid "An alternate content source can be added by using the \"Add source\" button above."
642
+ msgstr ""
643
+
602
644
  msgid "An environment is missing a prior"
603
645
  msgstr "环境缺少一个前"
604
646
 
@@ -616,6 +658,8 @@ msgid ""
616
658
  "An error occurred during upload \n"
617
659
  "%{error_message}"
618
660
  msgstr ""
661
+ "同步时发生错误 \n"
662
+ "%{error_message}"
619
663
 
620
664
  msgid "Another component already includes content view with ID %s"
621
665
  msgstr "另一个组件已经包含了 ID 为 %s 的内容视图"
@@ -630,40 +674,40 @@ msgid "Ansible Collections"
630
674
  msgstr "Ansible 系列"
631
675
 
632
676
  msgid "Ansible collection"
633
- msgstr ""
677
+ msgstr "Ansible 集合"
634
678
 
635
679
  msgid "Ansible collections"
636
- msgstr ""
680
+ msgstr "Ansible 集合"
637
681
 
638
682
  msgid "Applicability Batch Size"
639
683
  msgstr "适用批次数量"
640
684
 
641
685
  msgid "Applicable Content Hosts"
642
- msgstr ""
686
+ msgstr "适用的内容主机"
643
687
 
644
688
  msgid "Application"
645
- msgstr ""
689
+ msgstr "应用"
646
690
 
647
691
  msgid "Apply"
648
- msgstr ""
692
+ msgstr "应用"
649
693
 
650
694
  msgid "Apply Erratum"
651
- msgstr ""
695
+ msgstr "应用勘误"
652
696
 
653
697
  msgid "Apply to all repositories in the CV"
654
- msgstr ""
698
+ msgstr "应用到 CV 中的所有软件仓库"
655
699
 
656
700
  msgid "Apply to subset of repositories"
657
- msgstr ""
701
+ msgstr "适用于仓库的子集"
658
702
 
659
703
  msgid "Apply via Katello agent"
660
- msgstr ""
704
+ msgstr "通过 Katello 代理应用"
661
705
 
662
706
  msgid "Apply via customized remote execution"
663
- msgstr ""
707
+ msgstr "通过自定义远程执行应用"
664
708
 
665
709
  msgid "Apply via remote execution"
666
- msgstr ""
710
+ msgstr "通过远程执行应用"
667
711
 
668
712
  msgid "Arch"
669
713
  msgstr "架构"
@@ -678,7 +722,7 @@ msgid "Architecture(s)"
678
722
  msgstr "架构"
679
723
 
680
724
  msgid "Are you sure you want to delete %(entitlementCount)s subscription(s)? This action will remove the subscription(s) and refresh your manifest. All systems using these subscription(s) will lose them and also may lose access to updates and Errata."
681
- msgstr ""
725
+ msgstr "您确定要删除 %(entitlementCount)s 订阅?此操作将删除订阅并刷新清单。使用这些订阅的所有系统都将丢失,并可能丢失对更新和勘误的访问。"
682
726
 
683
727
  msgid "Are you sure you want to delete the manifest?"
684
728
  msgstr "您确定要删除清单吗?"
@@ -741,6 +785,9 @@ msgstr "将发行版本分配给一个或多个主机"
741
785
  msgid "Associated location IDs"
742
786
  msgstr "关联的位置 ID"
743
787
 
788
+ msgid "Associated version"
789
+ msgstr ""
790
+
744
791
  msgid "Associations"
745
792
  msgstr "关联"
746
793
 
@@ -757,7 +804,7 @@ msgid "At least one organization must exist."
757
804
  msgstr "至少必须存在一个组织。"
758
805
 
759
806
  msgid "Atleast one errata type needs to be selected."
760
- msgstr ""
807
+ msgstr "至少需要选择一个勘误。"
761
808
 
762
809
  msgid "Attach a subscription"
763
810
  msgstr "連接訂閱"
@@ -784,7 +831,7 @@ msgid "Auto attach subscriptions"
784
831
  msgstr "自动附加订阅"
785
832
 
786
833
  msgid "Auto publish"
787
- msgstr ""
834
+ msgstr "自动发布"
788
835
 
789
836
  msgid "Autopublish"
790
837
  msgstr "自动发布"
@@ -802,11 +849,14 @@ msgid "Available Repositories"
802
849
  msgstr "可用仓库"
803
850
 
804
851
  msgid "Available Schema Versions"
805
- msgstr ""
852
+ msgstr "可用的 Schema 版本"
806
853
 
807
854
  msgid "Backend System Status"
808
855
  msgstr "后端系统状态"
809
856
 
857
+ msgid "Base URL for finding alternate content"
858
+ msgstr ""
859
+
810
860
  msgid "Base URL to perform repo discovery on"
811
861
  msgstr "执行仓库发现操纵的基础 URL"
812
862
 
@@ -816,12 +866,24 @@ msgstr "禁用 Basearch"
816
866
  msgid "Basearch to enable"
817
867
  msgstr "啟用 Basearch"
818
868
 
869
+ msgid "Basic authentication password"
870
+ msgstr ""
871
+
872
+ msgid "Basic authentication username"
873
+ msgstr ""
874
+
819
875
  msgid "Batch size to sync repositories in."
820
876
  msgstr "同步仓库的批量大小。"
821
877
 
822
- msgid "Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host."
878
+ msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
879
+ msgstr ""
880
+
881
+ msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
823
882
  msgstr ""
824
883
 
884
+ msgid "Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host."
885
+ msgstr "以下是对于这个内容主机当前可用的仓库集。对于红帽订阅,额外的内容可以通过 {rhrp} 获得。修改默认设置需要 subscription-manager 1.10 或更新版本来在这个主机上安装。"
886
+
825
887
  msgid "Beta"
826
888
  msgstr "Beta"
827
889
 
@@ -832,10 +894,10 @@ msgid "Bind entitlements to an allocation"
832
894
  msgstr "将权利绑定到一个分配"
833
895
 
834
896
  msgid "Bookmark this search"
835
- msgstr ""
897
+ msgstr "收藏本搜索"
836
898
 
837
899
  msgid "Bookmarks marked as public are available to all users"
838
- msgstr ""
900
+ msgstr "标记为公共的书签可供所有用户使用"
839
901
 
840
902
  msgid "Both major and minor parameters have to be used to override a CV version"
841
903
  msgstr "需要使用主要版本和次要版本参数来覆盖 CV 版本"
@@ -847,26 +909,35 @@ msgid "Bugfix"
847
909
  msgstr "程序漏洞修正"
848
910
 
849
911
  msgid "Bugs"
850
- msgstr ""
912
+ msgstr "程序错误"
851
913
 
852
914
  msgid "Bulk generate applicability for host %s"
853
- msgstr ""
915
+ msgstr "为主机 %s 批量生成适用性"
854
916
 
855
917
  msgid "Bulk generate applicability for hosts"
856
918
  msgstr "批量生成主机的适用性"
857
919
 
858
- msgid "CDN Configuration"
920
+ msgid "Bulk remove versions from a content view and reassign systems and keys"
859
921
  msgstr ""
860
922
 
923
+ msgid "CDN Configuration"
924
+ msgstr "CDN 配置"
925
+
861
926
  msgid "CDN Configuration for Red Hat Content"
862
- msgstr ""
927
+ msgstr "红帽内容的 CDN 配置"
863
928
 
864
929
  msgid "CDN Configuration updated."
865
- msgstr ""
930
+ msgstr "更新的 CDN 配置。"
866
931
 
867
932
  msgid "CDN SSL version"
868
933
  msgstr "CDN SSL 版本"
869
934
 
935
+ msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
936
+ msgstr ""
937
+
938
+ msgid "CDN configuration type. One of %s."
939
+ msgstr ""
940
+
870
941
  msgid "CDN loading error: %s not found"
871
942
  msgstr "CDN 加载错误:没有找到 %s"
872
943
 
@@ -880,7 +951,7 @@ msgid "CVE identifier"
880
951
  msgstr "CVE 标识符"
881
952
 
882
953
  msgid "CVEs"
883
- msgstr ""
954
+ msgstr "CVE"
884
955
 
885
956
  msgid "Calculate Applicable Errata based on a particular Content View"
886
957
  msgstr "根據特定內容視域,計算可套用的勘誤"
@@ -888,8 +959,11 @@ msgstr "根據特定內容視域,計算可套用的勘誤"
888
959
  msgid "Calculate Applicable Errata based on a particular Environment"
889
960
  msgstr "根據特定環境,計算可套用的勘誤"
890
961
 
891
- msgid "Calculate errata host status based only on errata in a Host's Content View and Lifecycle Environment"
892
- msgstr "仅根据主机的内容视图和生命周期环境中的勘误来计算勘误主机状态"
962
+ msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
963
+ msgstr ""
964
+
965
+ msgid "Can communicate with the Red Hat Portal for subscriptions."
966
+ msgstr ""
893
967
 
894
968
  msgid "Can not add product %s because it is disabled."
895
969
  msgstr "无法添加产品 %s,因为已将其禁用。"
@@ -1011,6 +1085,9 @@ msgstr "没有内容单元类型的内容单元无法通过"
1011
1085
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
1012
1086
  msgstr "无法在组合内容视图版本 (%{name} version version %{version} 上执行增量更新"
1013
1087
 
1088
+ msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
1089
+ msgstr ""
1090
+
1014
1091
  msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
1015
1092
  msgstr "无法无序升级环境。强制绕过限制。"
1016
1093
 
@@ -1054,7 +1131,7 @@ msgid "Cannot sync file:// repositories with the On Demand Download Policy"
1054
1131
  msgstr "无法同步带有按需下载策略的 file:// 仓库"
1055
1132
 
1056
1133
  msgid "Cannot upload Ansible collections."
1057
- msgstr ""
1134
+ msgstr "无法上传 Ansible 集合。"
1058
1135
 
1059
1136
  msgid "Cannot upload Container Image content."
1060
1137
  msgstr "无法上传容器镜像内容。"
@@ -1062,6 +1139,18 @@ msgstr "无法上传容器镜像内容。"
1062
1139
  msgid "Cannot validate contents on non-yum/deb repositories."
1063
1140
  msgstr "无法验证非 yum/deb 仓库中的内容。"
1064
1141
 
1142
+ msgid "Capacity"
1143
+ msgstr ""
1144
+
1145
+ msgid "Change Content Source"
1146
+ msgstr ""
1147
+
1148
+ msgid "Change content source"
1149
+ msgstr ""
1150
+
1151
+ msgid "Change host content source"
1152
+ msgstr ""
1153
+
1065
1154
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1066
1155
  msgstr "检查是否可以与 Red Hat Subscription Management 建立连接。"
1067
1156
 
@@ -1074,6 +1163,9 @@ msgstr "操作前检查服务"
1074
1163
  msgid "Checksum"
1075
1164
  msgstr "Checksum"
1076
1165
 
1166
+ msgid "Checksum is a required parameter."
1167
+ msgstr ""
1168
+
1077
1169
  msgid "Checksum of file to upload"
1078
1170
  msgstr "上传文件的 Checksum"
1079
1171
 
@@ -1089,6 +1181,9 @@ msgstr "清除之前的所有注册,并使用 --force 运行 subscription-mana
1089
1181
  msgid "Click here to go to the tasks page for the task."
1090
1182
  msgstr "单击此处进入任务的任务页面。"
1091
1183
 
1184
+ msgid "Click {update} below to save changes."
1185
+ msgstr ""
1186
+
1092
1187
  msgid "Clone"
1093
1188
  msgstr "克隆"
1094
1189
 
@@ -1104,8 +1199,14 @@ msgstr "组合的配置集更新"
1104
1199
  msgid "Combined Profile Update for %s"
1105
1200
  msgstr "%s 的组合配置集更新"
1106
1201
 
1107
- msgid "Comma-separated list of tags to sync for Container Image repository"
1108
- msgstr "逗号分隔的标签列表,以同步容器镜像仓库"
1202
+ msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1203
+ msgstr ""
1204
+
1205
+ msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
1206
+ msgstr ""
1207
+
1208
+ msgid "Comma-separated list of tags to sync for a container image repository"
1209
+ msgstr ""
1109
1210
 
1110
1211
  msgid "Component"
1111
1212
  msgstr "组件"
@@ -1117,13 +1218,13 @@ msgid "Component content view"
1117
1218
  msgstr "组件内容视图"
1118
1219
 
1119
1220
  msgid "Component content views"
1120
- msgstr ""
1221
+ msgstr "组件内容视图"
1121
1222
 
1122
1223
  msgid "Components"
1123
- msgstr ""
1224
+ msgstr "组件"
1124
1225
 
1125
1226
  msgid "Composite"
1126
- msgstr ""
1227
+ msgstr "组成"
1127
1228
 
1128
1229
  msgid "Composite Content View"
1129
1230
  msgstr "复合内容视图"
@@ -1135,7 +1236,7 @@ msgid "Composite content view"
1135
1236
  msgstr "複合式內容視域"
1136
1237
 
1137
1238
  msgid "Composite content views"
1138
- msgstr ""
1239
+ msgstr "复合内容视图"
1139
1240
 
1140
1241
  msgid "Compute resource IDs"
1141
1242
  msgstr "運算資源 ID"
@@ -1153,10 +1254,10 @@ msgid "Consisting of multiple component content views"
1153
1254
  msgstr "由多个组件内容视图组成"
1154
1255
 
1155
1256
  msgid "Consists of content views"
1156
- msgstr ""
1257
+ msgstr "由内容视图组成"
1157
1258
 
1158
1259
  msgid "Consists of repositories"
1159
- msgstr ""
1260
+ msgstr "由仓库组成"
1160
1261
 
1161
1262
  msgid "Consumed"
1162
1263
  msgstr "已消耗"
@@ -1183,19 +1284,22 @@ msgid "Container image tag"
1183
1284
  msgstr "容器镜像标签"
1184
1285
 
1185
1286
  msgid "Container image tags"
1186
- msgstr ""
1287
+ msgstr "容器镜像标签"
1187
1288
 
1188
1289
  msgid "Container manifest lists"
1189
- msgstr ""
1290
+ msgstr "容器清单列表"
1190
1291
 
1191
1292
  msgid "Container manifests"
1293
+ msgstr "容器清单"
1294
+
1295
+ msgid "Container tags"
1192
1296
  msgstr ""
1193
1297
 
1194
1298
  msgid "Content"
1195
1299
  msgstr "内容"
1196
1300
 
1197
1301
  msgid "Content Count"
1198
- msgstr ""
1302
+ msgstr "内容数"
1199
1303
 
1200
1304
  msgid "Content Credential ID"
1201
1305
  msgstr "内容凭证 ID"
@@ -1203,14 +1307,14 @@ msgstr "内容凭证 ID"
1203
1307
  msgid "Content Credential numeric identifier"
1204
1308
  msgstr "内容凭证数字标识符"
1205
1309
 
1206
- msgid "Content Credential to use for SSL CA"
1310
+ msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
1207
1311
  msgstr ""
1208
1312
 
1209
1313
  msgid "Content Credentials"
1210
1314
  msgstr "内容凭证"
1211
1315
 
1212
1316
  msgid "Content Details"
1213
- msgstr ""
1317
+ msgstr "内容详情"
1214
1318
 
1215
1319
  msgid "Content Download URL"
1216
1320
  msgstr "内容下载 URL"
@@ -1236,9 +1340,6 @@ msgstr "内容视图"
1236
1340
  msgid "Content View %{view}: Versions: %{versions}"
1237
1341
  msgstr "内容视图 %{view}: 版本: %{versions}"
1238
1342
 
1239
- msgid "Content View Dependency Solving Default"
1240
- msgstr "内容视图依赖关系解决方案默认值"
1241
-
1242
1343
  msgid "Content View Details"
1243
1344
  msgstr "内容视图详情"
1244
1345
 
@@ -1251,11 +1352,8 @@ msgstr "內容视图过滤器标识符"
1251
1352
  msgid "Content View ID"
1252
1353
  msgstr "内容视图 ID"
1253
1354
 
1254
- msgid "Content View Label"
1255
- msgstr ""
1256
-
1257
1355
  msgid "Content View Name"
1258
- msgstr ""
1356
+ msgstr "内容视图名称"
1259
1357
 
1260
1358
  msgid "Content View Version %{id} not in all specified environments %{envs}"
1261
1359
  msgstr "内容视图版本 %{id} 没有在所有指定的环境 %{envs} 中。"
@@ -1278,6 +1376,9 @@ msgstr "未设置内容视图和环境以进行注册。"
1278
1376
  msgid "Content View id"
1279
1377
  msgstr "内容视图 ID"
1280
1378
 
1379
+ msgid "Content View label not provided."
1380
+ msgstr ""
1381
+
1281
1382
  msgid "Content Views"
1282
1383
  msgstr "内容视图"
1283
1384
 
@@ -1288,17 +1389,23 @@ msgid "Content host must be unregistered before performing this action."
1288
1389
  msgstr "在执行此操作之前,内容主机必需还没有注册。"
1289
1390
 
1290
1391
  msgid "Content hosts"
1291
- msgstr ""
1392
+ msgstr "內容主机"
1292
1393
 
1293
- msgid "Content imported from %{path} into content view '%{name}' by %{user}"
1294
- msgstr "由 %{user} 从 %{path} 导入到内容视图 '%{name}' 的内容 "
1394
+ msgid "Content imported by %{user} into content view '%{name}'"
1395
+ msgstr ""
1295
1396
 
1296
1397
  msgid "Content not uploaded to pulp"
1398
+ msgstr "没有上传到 pulp 的内容"
1399
+
1400
+ msgid "Content override search parameters"
1297
1401
  msgstr ""
1298
1402
 
1299
1403
  msgid "Content source ID"
1300
1404
  msgstr "内容源 ID"
1301
1405
 
1406
+ msgid "Content source successfully updated."
1407
+ msgstr ""
1408
+
1302
1409
  msgid "Content source was not set for host '%{host}'"
1303
1410
  msgstr "没有为主机 '%{host}' 设置内容源"
1304
1411
 
@@ -1327,7 +1434,7 @@ msgid "Content view ID"
1327
1434
  msgstr "内容视图 ID"
1328
1435
 
1329
1436
  msgid "Content view details"
1330
- msgstr ""
1437
+ msgstr "内容视图详情"
1331
1438
 
1332
1439
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1333
1440
  msgstr "内容视图具有仓库标签 '%s',它没有在 repos_units 参数中指定。"
@@ -1339,7 +1446,7 @@ msgid "Content view label"
1339
1446
  msgstr "内容视图标签"
1340
1447
 
1341
1448
  msgid "Content view name"
1342
- msgstr ""
1449
+ msgstr "内容视图名称"
1343
1450
 
1344
1451
  msgid "Content view not provided in the metadata"
1345
1452
  msgstr "元数据中未提供的内容视图"
@@ -1357,7 +1464,7 @@ msgid "Content view version import history identifier"
1357
1464
  msgstr "内容视图版本导入的历史标识符"
1358
1465
 
1359
1466
  msgid "Content views"
1360
- msgstr ""
1467
+ msgstr "内容视图"
1361
1468
 
1362
1469
  msgid "Content_Host_Status"
1363
1470
  msgstr "Content_Host_Status"
@@ -1374,6 +1481,9 @@ msgstr "合同"
1374
1481
  msgid "Contract Number"
1375
1482
  msgstr "合同号"
1376
1483
 
1484
+ msgid "Copied to clipboard"
1485
+ msgstr ""
1486
+
1377
1487
  msgid "Copy"
1378
1488
  msgstr "复制"
1379
1489
 
@@ -1381,6 +1491,9 @@ msgid "Copy an activation key"
1381
1491
  msgstr "复制激活码"
1382
1492
 
1383
1493
  msgid "Copy content view"
1494
+ msgstr "复制内容视图"
1495
+
1496
+ msgid "Copy to clipboard"
1384
1497
  msgstr ""
1385
1498
 
1386
1499
  msgid "Copy version units to library"
@@ -1426,7 +1539,7 @@ msgid "Could not remove the lifecycle environment from the smart proxy"
1426
1539
  msgstr "无法从智能代理中删除生命周期环境"
1427
1540
 
1428
1541
  msgid "Couldn't establish a connection to %s"
1429
- msgstr ""
1542
+ msgstr "无法建立到 %s 的连接"
1430
1543
 
1431
1544
  msgid "Couldn't find %{content_type} with id '%{id}'"
1432
1545
  msgstr "没有找到带有 id '%{id}' 的 %{content_type}"
@@ -1468,7 +1581,7 @@ msgid "Couldn't find content view versions '%s'"
1468
1581
  msgstr "找不到内容视图版本%s'"
1469
1582
 
1470
1583
  msgid "Couldn't find content view with id: '%s'"
1471
- msgstr ""
1584
+ msgstr "找不到 id 为 '%s' 的内容视图"
1472
1585
 
1473
1586
  msgid "Couldn't find environment '%s'"
1474
1587
  msgstr "找不到环境 '%s'"
@@ -1494,6 +1607,9 @@ msgstr "没有找到带有 id '%s' 的产品"
1494
1607
  msgid "Couldn't find repository '%s'"
1495
1608
  msgstr "没有找到仓库 '%s'"
1496
1609
 
1610
+ msgid "Couldn't find smart proxies with id '%s'"
1611
+ msgstr ""
1612
+
1497
1613
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1498
1614
  msgstr "找不到指定的内容视图和生命周期环境。"
1499
1615
 
@@ -1506,6 +1622,9 @@ msgstr "计数"
1506
1622
  msgid "Create"
1507
1623
  msgstr "创建"
1508
1624
 
1625
+ msgid "Create Alternate Content Source"
1626
+ msgstr ""
1627
+
1509
1628
  msgid "Create Export History"
1510
1629
  msgstr "创建导出历史记录"
1511
1630
 
@@ -1542,6 +1661,9 @@ msgstr "建立產品"
1542
1661
  msgid "Create a sync plan"
1543
1662
  msgstr "建立同步計劃"
1544
1663
 
1664
+ msgid "Create an ACS"
1665
+ msgstr ""
1666
+
1545
1667
  msgid "Create an activation key"
1546
1668
  msgstr "建立啟動金鑰"
1547
1669
 
@@ -1564,7 +1686,7 @@ msgid "Create organization"
1564
1686
  msgstr "创建机构"
1565
1687
 
1566
1688
  msgid "Critical"
1567
- msgstr ""
1689
+ msgstr "关键"
1568
1690
 
1569
1691
  msgid "Cron expression is not valid!"
1570
1692
  msgstr "Cron 表达式无效!"
@@ -1587,6 +1709,9 @@ msgstr "只需为自定义 cron 的间隔值设置自定义 cron 表达式"
1587
1709
  msgid "Custom repositories cannot be disabled."
1588
1710
  msgstr "無法停用自訂的軟體庫。"
1589
1711
 
1712
+ msgid "Customize with Rex"
1713
+ msgstr ""
1714
+
1590
1715
  msgid "Database connection"
1591
1716
  msgstr "資料庫連線"
1592
1717
 
@@ -1609,10 +1734,10 @@ msgid "Deb Packages"
1609
1734
  msgstr "Deb 软件包"
1610
1735
 
1611
1736
  msgid "Deb package identifiers to filter content by"
1612
- msgstr ""
1737
+ msgstr "用于过滤内容的 Deb 软件包标识符"
1613
1738
 
1614
1739
  msgid "Deb packages"
1615
- msgstr ""
1740
+ msgstr "Deb 软件包"
1616
1741
 
1617
1742
  msgid "Debug Certificate"
1618
1743
  msgstr "除錯憑證"
@@ -1623,14 +1748,11 @@ msgstr "Debug RPM"
1623
1748
  msgid "Default Custom Repository download policy"
1624
1749
  msgstr "默认的自定义仓库下载策略"
1625
1750
 
1626
- msgid "Default HTTP Proxy for syncing content"
1627
- msgstr "用于内容同步的默认 HTTP 代理"
1628
-
1629
- msgid "Default HTTP proxy"
1630
- msgstr "默认的 HTTP 代理"
1751
+ msgid "Default HTTP Proxy"
1752
+ msgstr ""
1631
1753
 
1632
- msgid "Default Location subscribed hosts"
1633
- msgstr "订阅的主机的默认位置"
1754
+ msgid "Default HTTP proxy for syncing content"
1755
+ msgstr ""
1634
1756
 
1635
1757
  msgid "Default Location where new subscribed hosts will put upon registration"
1636
1758
  msgstr "注册时将新的注册的主机放入的默认位置"
@@ -1657,13 +1779,13 @@ msgid "Default content view versions cannot be promoted"
1657
1779
  msgstr "无法提升默认的内容视图版本"
1658
1780
 
1659
1781
  msgid "Default download policy for Smart Proxy syncs (either 'inherit', immediate', or 'on_demand')"
1660
- msgstr ""
1782
+ msgstr "智能代理同步默认下载策略('inherit'、immediate' 或'on_demand')"
1661
1783
 
1662
1784
  msgid "Default download policy for custom repositories (either 'immediate' or 'on_demand')"
1663
- msgstr ""
1785
+ msgstr "用于自定义仓库的默认下载策略('immediate' 或'on_demand')"
1664
1786
 
1665
1787
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
1666
- msgstr ""
1788
+ msgstr "用于启用的红帽仓库默认下载策略('immediate' 或'on_demand')"
1667
1789
 
1668
1790
  msgid "Default finish template for new Operating Systems created from synced content"
1669
1791
  msgstr "从同步内容创建的新操作系统的默认完成模板"
@@ -1674,6 +1796,9 @@ msgstr "从同步内容创建的新操作系统的默认 iPXE 模板"
1674
1796
  msgid "Default kexec template for new Operating Systems created from synced content"
1675
1797
  msgstr "从同步内容创建的新操作系统的默认 kexec 模板"
1676
1798
 
1799
+ msgid "Default location for subscribed hosts"
1800
+ msgstr ""
1801
+
1677
1802
  msgid "Default partitioning table for new Operating Systems created from synced content"
1678
1803
  msgstr "从同步内容创建的新操作系统的默认分区表"
1679
1804
 
@@ -1741,7 +1866,7 @@ msgid "Delete Upstream Subscription"
1741
1866
  msgstr "删除上游订阅"
1742
1867
 
1743
1868
  msgid "Delete Version"
1744
- msgstr ""
1869
+ msgstr "删除版本"
1745
1870
 
1746
1871
  msgid "Delete a content view"
1747
1872
  msgstr "刪除內容視域"
@@ -1765,7 +1890,7 @@ msgid "Delete an upload request"
1765
1890
  msgstr "删除上传请求"
1766
1891
 
1767
1892
  msgid "Delete content view"
1768
- msgstr ""
1893
+ msgstr "删除內容视图"
1769
1894
 
1770
1895
  msgid "Delete manifest from Red Hat provider"
1771
1896
  msgstr "從 Red Hat 供應者中刪除清單"
@@ -1774,26 +1899,38 @@ msgid "Delete multiple filters from a content view"
1774
1899
  msgstr "从内容视图中删除多个过滤器"
1775
1900
 
1776
1901
  msgid "Delete version"
1902
+ msgstr "删除版本"
1903
+
1904
+ msgid "Delete versions"
1777
1905
  msgstr ""
1778
1906
 
1779
1907
  msgid "Deleted consumer '%s'"
1780
1908
  msgstr "删除消费者 '%s'"
1781
1909
 
1782
1910
  msgid "Deleted from "
1783
- msgstr ""
1911
+ msgstr "从删除 "
1784
1912
 
1785
1913
  msgid "Deleted from %{environment}"
1786
1914
  msgstr "从 {environment} 删除"
1787
1915
 
1788
1916
  msgid "Deleting content view : "
1789
- msgstr ""
1917
+ msgstr "删除内容视图:"
1790
1918
 
1791
1919
  msgid "Deleting manifest in '%{subject}' failed."
1792
1920
  msgstr "删除 '%{subject}' 中的清单失败。"
1793
1921
 
1922
+ msgid "Deleting version {versionList}"
1923
+ msgstr ""
1924
+
1925
+ msgid "Deleting versions: {versionList}"
1926
+ msgstr ""
1927
+
1794
1928
  msgid "Description"
1795
1929
  msgstr "描述"
1796
1930
 
1931
+ msgid "Description for the alternate content source"
1932
+ msgstr ""
1933
+
1797
1934
  msgid "Description for the content view"
1798
1935
  msgstr "内容视图的描述"
1799
1936
 
@@ -1815,6 +1952,9 @@ msgstr "目标服务器名称"
1815
1952
  msgid "Destroy"
1816
1953
  msgstr "销毁"
1817
1954
 
1955
+ msgid "Destroy Alternate Content Source"
1956
+ msgstr ""
1957
+
1818
1958
  msgid "Destroy Content Host"
1819
1959
  msgstr "销毁内容主机"
1820
1960
 
@@ -1839,6 +1979,9 @@ msgstr "銷毀同步計劃"
1839
1979
  msgid "Destroy an activation key"
1840
1980
  msgstr "销毁一个激活码"
1841
1981
 
1982
+ msgid "Destroy an alternate content source"
1983
+ msgstr ""
1984
+
1842
1985
  msgid "Destroy an environment"
1843
1986
  msgstr "销毁环境"
1844
1987
 
@@ -1878,18 +2021,18 @@ msgstr "禁用简单内容访问"
1878
2021
  msgid "Disable a repository from the set"
1879
2022
  msgstr "从集合中禁用仓库"
1880
2023
 
2024
+ msgid "Disable module stream"
2025
+ msgstr ""
2026
+
1881
2027
  msgid "Disable simple content access for a manifest"
1882
2028
  msgstr "禁用对一个清单的简单内容访问"
1883
2029
 
1884
2030
  msgid "Disabled"
1885
- msgstr ""
2031
+ msgstr "禁用"
1886
2032
 
1887
2033
  msgid "Disabling Simple Content Access failed for '%{subject}'."
1888
2034
  msgstr "为 '%{subject}' 禁用简单内容访问失败。"
1889
2035
 
1890
- msgid "Disconnected mode"
1891
- msgstr "断开的模式"
1892
-
1893
2036
  msgid "Discover"
1894
2037
  msgstr "发现"
1895
2038
 
@@ -1905,9 +2048,6 @@ msgstr "不要等待 ImportUpload 操作完成。默认值:false"
1905
2048
  msgid "Do not wait for the update action to finish. Default: true"
1906
2049
  msgstr "不要等待更新操作完成。默认值:true"
1907
2050
 
1908
- msgid "Docker Tags"
1909
- msgstr ""
1910
-
1911
2051
  msgid "Domain IDs"
1912
2052
  msgstr "區域 ID"
1913
2053
 
@@ -1917,9 +2057,12 @@ msgstr "capsule 的下载政策,必须为 %s 之一"
1917
2057
  msgid "Download a debug certificate"
1918
2058
  msgstr "下载调试证书"
1919
2059
 
1920
- msgid "Duplicate artifact detected"
2060
+ msgid "Download rate limit"
1921
2061
  msgstr ""
1922
2062
 
2063
+ msgid "Duplicate artifact detected"
2064
+ msgstr "检测到重复工件"
2065
+
1923
2066
  msgid "Duration"
1924
2067
  msgstr "Duration"
1925
2068
 
@@ -1930,13 +2073,16 @@ msgid "Edit"
1930
2073
  msgstr "编辑"
1931
2074
 
1932
2075
  msgid "Edit RPM rule"
2076
+ msgstr "编辑 RPM 规则"
2077
+
2078
+ msgid "Edit content view assignment"
1933
2079
  msgstr ""
1934
2080
 
1935
2081
  msgid "Edit filter rule"
1936
- msgstr ""
2082
+ msgstr "列表过滤规则"
1937
2083
 
1938
2084
  msgid "Edit rule"
1939
- msgstr ""
2085
+ msgstr "编辑规则"
1940
2086
 
1941
2087
  msgid "Editing Entitlements"
1942
2088
  msgstr "编辑权利"
@@ -1966,10 +2112,10 @@ msgid "Enable Simple Content Access"
1966
2112
  msgstr "启用简单内容访问"
1967
2113
 
1968
2114
  msgid "Enable Tracer"
1969
- msgstr ""
2115
+ msgstr "启用跟踪"
1970
2116
 
1971
2117
  msgid "Enable Traces"
1972
- msgstr ""
2118
+ msgstr "启用跟踪"
1973
2119
 
1974
2120
  msgid "Enable a repository from the set"
1975
2121
  msgstr "从集合中启用存储库"
@@ -1990,11 +2136,14 @@ msgid "Enabling Simple Content Access failed for '%{subject}'."
1990
2136
  msgstr "为 '%{subject}' 启用简单内容访问失败。"
1991
2137
 
1992
2138
  msgid "Enabling will install the katello-host-tools-tracer package on the host."
1993
- msgstr ""
2139
+ msgstr "启用后 将在主机上安装 katello-host-tools-tracer 软件包。"
1994
2140
 
1995
2141
  msgid "End Date"
1996
2142
  msgstr "结束日期"
1997
2143
 
2144
+ msgid "End date"
2145
+ msgstr ""
2146
+
1998
2147
  msgid "Ends"
1999
2148
  msgstr "结束"
2000
2149
 
@@ -2002,6 +2151,9 @@ msgid "Enhancement"
2002
2151
  msgstr "功能增强"
2003
2152
 
2004
2153
  msgid "Enter a name"
2154
+ msgstr "输入名称"
2155
+
2156
+ msgid "Enter a valid date: MM/DD/YYYY"
2005
2157
  msgstr ""
2006
2158
 
2007
2159
  msgid "Entitlements"
@@ -2022,14 +2174,17 @@ msgstr "环境标识符"
2022
2174
  msgid "Environments"
2023
2175
  msgstr "环境"
2024
2176
 
2025
- msgid "Equal to"
2177
+ msgid "Epoch"
2026
2178
  msgstr ""
2027
2179
 
2180
+ msgid "Equal to"
2181
+ msgstr "等于"
2182
+
2028
2183
  msgid "Errata"
2029
2184
  msgstr "勘误"
2030
2185
 
2031
2186
  msgid "Errata - by date range"
2032
- msgstr ""
2187
+ msgstr "勘误 - 按日期范围"
2033
2188
 
2034
2189
  msgid "Errata ID"
2035
2190
  msgstr "勘误 ID"
@@ -2053,7 +2208,7 @@ msgid "Errata to explicitly exclude in the action. All other applicable errata w
2053
2208
  msgstr "勘误明确排除在操作之外。除非还传递了包含的参数,否则所有其他适用的勘误都将包含在操作中。"
2054
2209
 
2055
2210
  msgid "Errata type"
2056
- msgstr ""
2211
+ msgstr "勘误类型"
2057
2212
 
2058
2213
  msgid "Erratum"
2059
2214
  msgstr "勘误"
@@ -2079,6 +2234,9 @@ msgstr "连接到 Pulp 服务时出错"
2079
2234
  msgid "Error connecting. Got: %s"
2080
2235
  msgstr "连接错误。获得:%s"
2081
2236
 
2237
+ msgid "Error loading content views"
2238
+ msgstr ""
2239
+
2082
2240
  msgid "Error refreshing status for %s: "
2083
2241
  msgstr "%s 的错误刷新状态: "
2084
2242
 
@@ -2092,22 +2250,22 @@ msgid "Exclude"
2092
2250
  msgstr "排除"
2093
2251
 
2094
2252
  msgid "Exclude all Module Streams with no errata."
2095
- msgstr ""
2253
+ msgstr "排除所有没有勘误的模块流。"
2096
2254
 
2097
2255
  msgid "Exclude all RPMs with no errata."
2098
- msgstr ""
2256
+ msgstr "排除所有没有勘误的 RPM。"
2099
2257
 
2100
2258
  msgid "Exclude filter"
2101
- msgstr ""
2259
+ msgstr "排除的过滤"
2102
2260
 
2103
2261
  msgid "Excluded"
2104
2262
  msgstr "排除"
2105
2263
 
2106
2264
  msgid "Excluded errata"
2107
- msgstr ""
2265
+ msgstr "排除的勘误"
2108
2266
 
2109
2267
  msgid "Excludes"
2110
- msgstr ""
2268
+ msgstr "排除"
2111
2269
 
2112
2270
  msgid "Exit"
2113
2271
  msgstr "退出"
@@ -2127,6 +2285,12 @@ msgstr "导出 CSV"
2127
2285
  msgid "Export Library"
2128
2286
  msgstr "导出库"
2129
2287
 
2288
+ msgid "Export Repository"
2289
+ msgstr ""
2290
+
2291
+ msgid "Export Sync"
2292
+ msgstr ""
2293
+
2130
2294
  msgid "Export Types"
2131
2295
  msgstr "导出类型"
2132
2296
 
@@ -2137,7 +2301,7 @@ msgid "Export history identifier used for incremental export. If not provided th
2137
2301
  msgstr "用于增量导出的导出历史记录标识符。如果未提供,将使用最新的出口历史记录。"
2138
2302
 
2139
2303
  msgid "Exported content view"
2140
- msgstr ""
2304
+ msgstr "导出内容视图"
2141
2305
 
2142
2306
  msgid "Exported version"
2143
2307
  msgstr "导出的版本"
@@ -2151,6 +2315,9 @@ msgstr "失敗"
2151
2315
  msgid "Failed to delete %{host}: %{errors}"
2152
2316
  msgstr "删除 %{host} 失败:%{errors}"
2153
2317
 
2318
+ msgid "Failed to delete latest content view version of Content View '%{subject}'."
2319
+ msgstr ""
2320
+
2154
2321
  msgid "Failed to download %s package."
2155
2322
  msgid_plural "Failed to download %s packages."
2156
2323
  msgstr[0] "下载 %s 软件包失败。"
@@ -2189,7 +2356,7 @@ msgid "File contents"
2189
2356
  msgstr "文件內容"
2190
2357
 
2191
2358
  msgid "Filename"
2192
- msgstr ""
2359
+ msgstr "文件名"
2193
2360
 
2194
2361
  msgid "Files"
2195
2362
  msgstr "文件"
@@ -2207,10 +2374,10 @@ msgid "Filter created"
2207
2374
  msgstr "篩選器已建立"
2208
2375
 
2209
2376
  msgid "Filter deleted"
2210
- msgstr ""
2377
+ msgstr "篩選器已刪除"
2211
2378
 
2212
2379
  msgid "Filter edited"
2213
- msgstr ""
2380
+ msgstr "编辑的过滤"
2214
2381
 
2215
2382
  msgid "Filter only composite content views"
2216
2383
  msgstr "只过滤组合内容视图"
@@ -2237,19 +2404,19 @@ msgid "Filter products by sync plan id"
2237
2404
  msgstr "透過同步計畫 ID 來篩選產品"
2238
2405
 
2239
2406
  msgid "Filter rule added"
2240
- msgstr ""
2407
+ msgstr "添加的过滤规则"
2241
2408
 
2242
2409
  msgid "Filter rule edited"
2243
- msgstr ""
2410
+ msgstr "编辑的过滤规则"
2244
2411
 
2245
2412
  msgid "Filter rule removed"
2246
- msgstr ""
2413
+ msgstr "删除的过滤规则"
2247
2414
 
2248
2415
  msgid "Filter rules added"
2249
- msgstr ""
2416
+ msgstr "添加的过滤规则"
2250
2417
 
2251
2418
  msgid "Filter rules deleted"
2252
- msgstr ""
2419
+ msgstr "删除的过滤规则。"
2253
2420
 
2254
2421
  msgid "Filter versions by environment"
2255
2422
  msgstr "按环境过滤版本"
@@ -2267,10 +2434,10 @@ msgid "Filters"
2267
2434
  msgstr "过滤器"
2268
2435
 
2269
2436
  msgid "Filters deleted"
2270
- msgstr ""
2437
+ msgstr "删除的过滤"
2271
2438
 
2272
2439
  msgid "Finish"
2273
- msgstr ""
2440
+ msgstr "完成"
2274
2441
 
2275
2442
  msgid "Finish action timeout"
2276
2443
  msgstr "完成操纵超时"
@@ -2295,16 +2462,16 @@ msgid "Force a sync and validate the checksums of all content. Only used with yu
2295
2462
  msgstr "强制一个同步并验证所有内容的 checksums。仅用于yum仓库。"
2296
2463
 
2297
2464
  msgid "Force delete the repository by removing it from all content view versions"
2298
- msgstr ""
2465
+ msgstr "从所有内容视图版本中删除存储库来强制删除存储库"
2299
2466
 
2300
2467
  msgid "Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy"
2301
- msgstr ""
2468
+ msgstr "强制元数据重新生成继续。当存储库使用 'Complete Mirroring' mirroring 策略时这样做是危险的"
2302
2469
 
2303
2470
  msgid "Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy."
2304
- msgstr ""
2471
+ msgstr "强制元数据重新生成继续。当存储库使用 'Complete Mirroring' mirroring 策略时这样做是危险的。"
2305
2472
 
2306
2473
  msgid "Force promotion"
2307
- msgstr ""
2474
+ msgstr "强制提升"
2308
2475
 
2309
2476
  msgid "Force regenerate applicability."
2310
2477
  msgstr "强制重新生成适用性。"
@@ -2322,7 +2489,7 @@ msgid "Forces a republish of the version's repositories' metadata"
2322
2489
  msgstr "强制重新发布版本仓库的元数据"
2323
2490
 
2324
2491
  msgid "Full description"
2325
- msgstr ""
2492
+ msgstr "完整描述"
2326
2493
 
2327
2494
  msgid "Fully entitled"
2328
2495
  msgstr "有完整權利"
@@ -2339,11 +2506,20 @@ msgstr "产生主机适用性"
2339
2506
  msgid "Generate repository applicability"
2340
2507
  msgstr "生成仓库适用性"
2341
2508
 
2509
+ msgid "Generated"
2510
+ msgstr ""
2511
+
2512
+ msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2513
+ msgstr ""
2514
+
2515
+ msgid "Generated content views cannot be directly published. They can updated only via export."
2516
+ msgstr ""
2517
+
2342
2518
  msgid "Get all content available, not just that provided by subscriptions"
2343
2519
  msgstr "获取所有可用内容,而不仅仅是订阅提供的内容"
2344
2520
 
2345
2521
  msgid "Get all content available, not just that provided by subscriptions."
2346
- msgstr ""
2522
+ msgstr "获取所有可用内容,而不仅仅是订阅提供的内容。"
2347
2523
 
2348
2524
  msgid "Get content and overrides for the host"
2349
2525
  msgstr "获取主机的内容和替代"
@@ -2367,19 +2543,22 @@ msgid "Given a set of hosts and errata, lists the content view versions and envi
2367
2543
  msgstr "给定一组主机和勘误,列出需要更新的内容视图版本和环境。"
2368
2544
 
2369
2545
  msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2370
- msgstr ""
2546
+ msgstr "给定条件与任何 RPM 都不匹配。尝试更改您的规则。"
2371
2547
 
2372
2548
  msgid "Given criteria doesn't match any activation keys. Try changing your rule."
2373
- msgstr ""
2549
+ msgstr "给定条件与任何激活码都不匹配。尝试更改您的规则。"
2374
2550
 
2375
2551
  msgid "Given criteria doesn't match any hosts. Try changing your rule."
2552
+ msgstr "给定条件与任何主机都不匹配。尝试更改您的规则。"
2553
+
2554
+ msgid "Go to job details"
2376
2555
  msgstr ""
2377
2556
 
2378
2557
  msgid "Go to task page"
2379
2558
  msgstr "转到任务页面"
2380
2559
 
2381
2560
  msgid "Greater than"
2382
- msgstr ""
2561
+ msgstr "大于"
2383
2562
 
2384
2563
  msgid "Group %{id} already created."
2385
2564
  msgstr "组 %{id} 已创建。"
@@ -2397,11 +2576,17 @@ msgid "Has to be > 0"
2397
2576
  msgstr "必须大于 0"
2398
2577
 
2399
2578
  msgid "Helper"
2579
+ msgstr "帮助"
2580
+
2581
+ msgid "Hide affected activation keys"
2400
2582
  msgstr ""
2401
2583
 
2402
- msgid "Hide description"
2584
+ msgid "Hide affected hosts"
2403
2585
  msgstr ""
2404
2586
 
2587
+ msgid "Hide description"
2588
+ msgstr "隐藏描述"
2589
+
2405
2590
  msgid "History"
2406
2591
  msgstr "历史"
2407
2592
 
@@ -2450,15 +2635,27 @@ msgstr "主机订阅状态"
2450
2635
  msgid "Host Tasks Workers Pool Size"
2451
2636
  msgstr "主机任务 Worker 池的大小"
2452
2637
 
2638
+ msgid "Host collection"
2639
+ msgstr ""
2640
+
2453
2641
  msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
2454
2642
  msgstr "主机集合'%{name} '超出了最大使用限制 '%{limit} '"
2455
2643
 
2456
2644
  msgid "Host collection is empty."
2457
2645
  msgstr "主机集合为空。"
2458
2646
 
2647
+ msgid "Host collections"
2648
+ msgstr ""
2649
+
2650
+ msgid "Host collections updated"
2651
+ msgstr ""
2652
+
2459
2653
  msgid "Host content and subscription details"
2460
2654
  msgstr "主机内容和订阅详细信息"
2461
2655
 
2656
+ msgid "Host content view and environment updated"
2657
+ msgstr ""
2658
+
2462
2659
  msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
2463
2660
  msgstr "主机创建已被跳过%s,因为它与 %s 共享一个 BIOS UUID。要报告此虚拟机管理程序,请覆盖其dmi.system.uuid fact,或在 Candlepin 配置中将 'candlepin.use_system_uuid_for_matching' 设置为'true'。"
2464
2661
 
@@ -2481,7 +2678,7 @@ msgid "Host has not been registered with subscription-manager."
2481
2678
  msgstr "主机还没有通过 subscription-manager 注册。"
2482
2679
 
2483
2680
  msgid "Host id to list applicable deb packages for"
2484
- msgstr ""
2681
+ msgstr "用于列出适用的 deb 软件包的主机 ID"
2485
2682
 
2486
2683
  msgid "Host id to list applicable errata for"
2487
2684
  msgstr "列出适用勘误的主机 ID"
@@ -2502,7 +2699,7 @@ msgid "Host with ID %s not found."
2502
2699
  msgstr "没有找到带有 ID %s 的主机。"
2503
2700
 
2504
2701
  msgid "Hosts"
2505
- msgstr ""
2702
+ msgstr "主机"
2506
2703
 
2507
2704
  msgid "Hosts with Installable Errata"
2508
2705
  msgstr "有可安装勘误的主机"
@@ -2510,8 +2707,8 @@ msgstr "有可安装勘误的主机"
2510
2707
  msgid "Hosts: "
2511
2708
  msgstr "主机:"
2512
2709
 
2513
- msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2514
- msgstr "capsule 上应同时同步多少个存储库。较小的数字可能导致更长的同步时间。较大的数字将增加 dynflow 负载。"
2710
+ msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2711
+ msgstr ""
2515
2712
 
2516
2713
  msgid "How to order the sorted results (e.g. ASC for ascending)"
2517
2714
  msgstr "如何排序結果的順序(比方說 ASC 從下到上)"
@@ -2573,12 +2770,18 @@ msgstr "要禁用的仓库 ID"
2573
2770
  msgid "ID of the repository set to enable"
2574
2771
  msgstr "設為啟用的軟體庫集之 ID"
2575
2772
 
2773
+ msgid "ID of the repository within the set to disable"
2774
+ msgstr ""
2775
+
2576
2776
  msgid "ID of the sync plan"
2577
2777
  msgstr "同步計劃的 ID"
2578
2778
 
2579
2779
  msgid "ID: %s doesn't exist "
2580
2780
  msgstr "ID:%s 不存在 "
2581
2781
 
2782
+ msgid "Id"
2783
+ msgstr ""
2784
+
2582
2785
  msgid "Id of a deb package to find repositories that contain the deb"
2583
2786
  msgstr "用来查找包括 deb 的仓库的 deb 软件包 ID"
2584
2787
 
@@ -2598,7 +2801,7 @@ msgid "Id of the content host"
2598
2801
  msgstr "内容主机 ID"
2599
2802
 
2600
2803
  msgid "Id of the content view to limit the synchronization on"
2601
- msgstr ""
2804
+ msgstr "将同步限制于在的内容视图 ID"
2602
2805
 
2603
2806
  msgid "Id of the environment to limit the synchronization on"
2604
2807
  msgstr "将同步限制于的环境 ID"
@@ -2619,7 +2822,7 @@ msgid "Id of the organization to limit environments on"
2619
2822
  msgstr "把环境限制于的机构 ID"
2620
2823
 
2621
2824
  msgid "Id of the repository to limit the synchronization on"
2622
- msgstr ""
2825
+ msgstr "将同步限制于在的仓库 ID"
2623
2826
 
2624
2827
  msgid "Id of the smart proxy"
2625
2828
  msgstr "智能代理 ID"
@@ -2651,22 +2854,31 @@ msgstr "生命周期环境的标识符"
2651
2854
  msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
2652
2855
  msgstr "指定是否应在操作系统版本不匹配的客户端上禁用存储库。传递 [] 以启用,而不考虑操作系统版本。最大长度1;允许的标签为: %s"
2653
2856
 
2857
+ msgid "Ids of smart proxies to associate"
2858
+ msgstr ""
2859
+
2654
2860
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2655
2861
  msgstr "如果启用了自动搜索,在键入时执行搜索之前延迟的毫秒数。"
2656
2862
 
2657
- msgid "If hosts fail to register because of duplicate DMI UUIDs add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2658
- msgstr "如果主机由于重复的 DMI UUID 而未能注册,请在此处添加以逗号分隔的值。随后的注册将为受影响的主机生成唯一的 DMI UUID。"
2863
+ msgid "If SSL should be verified for the upstream URL"
2864
+ msgstr ""
2865
+
2866
+ msgid "If hosts fail to register because of duplicate DMI UUIDs, add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2867
+ msgstr ""
2659
2868
 
2660
2869
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2661
2870
  msgstr "指定後,使用相符的 ID 與數量,移除訂閱服務的第一個項目"
2662
2871
 
2663
- 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."
2872
+ 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."
2664
2873
  msgstr ""
2665
2874
 
2666
2875
  msgid "If this is enabled, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
2667
- msgstr ""
2876
+ msgstr "如果这个被启用,并且设置并提供了register_hostname_fact,注册将仅使用该 fact 按名称查找新主机,并且将忽略所有主机名匹配"
2668
2877
 
2669
2878
  msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
2879
+ msgstr "如果这个被启用,使用远程执行替代 katello-agent 来进行远程操作"
2880
+
2881
+ 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."
2670
2882
  msgstr ""
2671
2883
 
2672
2884
  msgid "If true, only return repository sets that are associated with an active subscriptions"
@@ -2684,6 +2896,9 @@ msgstr "如果为 true,在添加指定勘误或软件包时,需要的依赖
2684
2896
  msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
2685
2897
  msgstr "如果为 true,则使用指定的、已被升级到生命周期环境中的 content_view_version_id 来发布新的组合版本"
2686
2898
 
2899
+ msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
2900
+ msgstr ""
2901
+
2687
2902
  msgid "Ignorable content can be only set for Yum repositories."
2688
2903
  msgstr "可忽略内容只能为 Yum 仓库设置"
2689
2904
 
@@ -2720,6 +2935,9 @@ msgstr "导入新清单"
2720
2935
  msgid "Import Puppet classes"
2721
2936
  msgstr "导入 Puppet 类"
2722
2937
 
2938
+ msgid "Import Repository"
2939
+ msgstr ""
2940
+
2723
2941
  msgid "Import Types"
2724
2942
  msgstr "导入类型"
2725
2943
 
@@ -2741,10 +2959,16 @@ msgstr "导入一个内容视图版本"
2741
2959
  msgid "Import a content view version to the library"
2742
2960
  msgstr "将一个内容视图版本导入到库"
2743
2961
 
2962
+ msgid "Import a repository"
2963
+ msgstr ""
2964
+
2744
2965
  msgid "Import facts"
2745
- msgstr "匯入詳情"
2966
+ msgstr "导入事实"
2746
2967
 
2747
2968
  msgid "Import only"
2969
+ msgstr "仅导入"
2970
+
2971
+ msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
2748
2972
  msgstr ""
2749
2973
 
2750
2974
  msgid "Import uploads into a repository"
@@ -2756,9 +2980,12 @@ msgstr "创建后不能更改仅导入"
2756
2980
  msgid "Import-only content views can not be published directly"
2757
2981
  msgstr "仅导入的内容视图不能直接发布"
2758
2982
 
2759
- msgid "Important"
2983
+ msgid "Import/Export"
2760
2984
  msgstr ""
2761
2985
 
2986
+ msgid "Important"
2987
+ msgstr "重要"
2988
+
2762
2989
  msgid "Importing manifest into '%{subject}' failed."
2763
2990
  msgstr "将清单导入 '%{subject}' 失败。"
2764
2991
 
@@ -2772,22 +2999,25 @@ msgid "Include"
2772
2999
  msgstr "包括"
2773
3000
 
2774
3001
  msgid "Include all Module Streams with no errata."
2775
- msgstr ""
3002
+ msgstr "包括所有没有勘误的模块流。"
2776
3003
 
2777
3004
  msgid "Include all RPMs with no errata."
3005
+ msgstr "包括所有没有勘误的 RPM。"
3006
+
3007
+ msgid "Include content views generated by imports/exports. Defaults to false"
2778
3008
  msgstr ""
2779
3009
 
2780
3010
  msgid "Include filter"
2781
- msgstr ""
3011
+ msgstr "包含的过滤"
2782
3012
 
2783
3013
  msgid "Included"
2784
3014
  msgstr "包含"
2785
3015
 
2786
3016
  msgid "Included errata"
2787
- msgstr ""
3017
+ msgstr "包含的勘误"
2788
3018
 
2789
3019
  msgid "Includes"
2790
- msgstr ""
3020
+ msgstr "包括"
2791
3021
 
2792
3022
  msgid "Includes associated content view filter ids in response"
2793
3023
  msgstr "在响应中包含相关的内容视图过滤器 ID"
@@ -2808,7 +3038,7 @@ msgid "Incremental Update of %{content_view_count} Content View Version(s) "
2808
3038
  msgstr "增量更新 %{content_view_count} 个内容视图版本"
2809
3039
 
2810
3040
  msgid "Incremental update"
2811
- msgstr ""
3041
+ msgstr "增量更新"
2812
3042
 
2813
3043
  msgid "Incremental update requires at least one content unit"
2814
3044
  msgstr "增量更新至少需要一个内容单元"
@@ -2837,6 +3067,9 @@ msgstr "从仓库继承"
2837
3067
  msgid "Initiate a sync of the products attached to the sync plan"
2838
3068
  msgstr "启动同步计划中附加产品的同步"
2839
3069
 
3070
+ msgid "Install"
3071
+ msgstr ""
3072
+
2840
3073
  msgid "Install Applicable Errata"
2841
3074
  msgstr "安装适用的勘误"
2842
3075
 
@@ -2846,6 +3079,9 @@ msgstr "在 %s 上安装适用的勘误"
2846
3079
  msgid "Install content on one or more hosts using katello-agent. %s"
2847
3080
  msgstr "使用 katello-agent 在一个或多个主机上安装内容。%s"
2848
3081
 
3082
+ msgid "Install errata using scoped search query"
3083
+ msgstr ""
3084
+
2849
3085
  msgid "Install errata via Katello interface"
2850
3086
  msgstr "通过 Katello 界面安装勘误"
2851
3087
 
@@ -2870,19 +3106,31 @@ msgstr "通过 Katello 界面安装软件包组"
2870
3106
  msgid "Install package via Katello interface"
2871
3107
  msgstr "通过 Katello 界面安装软件包"
2872
3108
 
3109
+ msgid "Install packages"
3110
+ msgstr ""
3111
+
2873
3112
  msgid "Install packages remotely using katello-agent. %s"
2874
3113
  msgstr "使用 katello-agent 远程安装软件包。 %s"
2875
3114
 
2876
- msgid "Installable"
3115
+ msgid "Install packages via Katello interface"
3116
+ msgstr ""
3117
+
3118
+ msgid "Install via customized remote execution"
3119
+ msgstr ""
3120
+
3121
+ msgid "Install via katello-agent"
2877
3122
  msgstr ""
2878
3123
 
2879
- msgid "Installable Errata"
3124
+ msgid "Install via remote execution"
2880
3125
  msgstr ""
2881
3126
 
2882
- msgid "Installable errata from Content View"
2883
- msgstr "内容视图中的可安装勘误"
3127
+ msgid "Installable"
3128
+ msgstr "可安装"
3129
+
3130
+ msgid "Installable errata"
3131
+ msgstr ""
2884
3132
 
2885
- msgid "Installable errata will appear here when available."
3133
+ msgid "Installable errata from content view"
2886
3134
  msgstr ""
2887
3135
 
2888
3136
  msgid "Installation of errata requested: %{errata}"
@@ -2894,10 +3142,22 @@ msgstr "要求安装的软件包组:%{groups}"
2894
3142
  msgid "Installation of package(s) requested: %{packages}"
2895
3143
  msgstr "要求安装的软件包:%{packages}"
2896
3144
 
3145
+ msgid "Installation status"
3146
+ msgstr ""
3147
+
2897
3148
  msgid "Installed Packages"
2898
3149
  msgstr "已安装软件包"
2899
3150
 
2900
- msgid "Installed Version"
3151
+ msgid "Installed module profiles will be removed. Additionally, all packages whose names are provided by specific modules will be removed. Packages required by other installed modules profiles and packages whose names are also provided by other modules are not removed."
3152
+ msgstr ""
3153
+
3154
+ msgid "Installed products"
3155
+ msgstr ""
3156
+
3157
+ msgid "Installed profile"
3158
+ msgstr ""
3159
+
3160
+ msgid "Installed version"
2901
3161
  msgstr ""
2902
3162
 
2903
3163
  msgid "Installing Erratum..."
@@ -2931,7 +3191,7 @@ msgid "Invalid"
2931
3191
  msgstr "无效"
2932
3192
 
2933
3193
  msgid "Invalid SSL CA certificate given for CDN"
2934
- msgstr ""
3194
+ msgstr "为 CDN 指定无效的 SSL CA 证书"
2935
3195
 
2936
3196
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
2937
3197
  msgstr "内容视图 ID 的关联无效。内容视图必须与要保存的内容视图版本匹配"
@@ -2964,7 +3224,7 @@ msgid "Invalid filter rule specified, 'version' cannot be specified in the same
2964
3224
  msgstr "指定了无效的过滤器规则,“ version” 不能在同一个tuple 中与 'min_version' 或 'max_version' 一起指定。"
2965
3225
 
2966
3226
  msgid "Invalid mirroring policy for repository type %{type}, only %{policies} are valid."
2967
- msgstr ""
3227
+ msgstr "对于仓库类型 %{type} 的无效的镜像策略,只有 %{policies} 有效。"
2968
3228
 
2969
3229
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2970
3230
  msgstr "在此操作的请求中发送了无效的参数。请与系统管理员联系。"
@@ -2978,6 +3238,9 @@ msgstr "提供了无效的参数 - content_type 必須是 %s 之一"
2978
3238
  msgid "Invalid params provided - date_type must be one of %s"
2979
3239
  msgstr "提供了无效参数 - date_type 必须是 %s 之一"
2980
3240
 
3241
+ msgid "Invalid repository in the metadata %{repo} error=%{error}"
3242
+ msgstr ""
3243
+
2981
3244
  msgid "Invalid value specified for Container Image repositories."
2982
3245
  msgstr "为容器镜像仓库指定的值无效。"
2983
3246
 
@@ -2988,6 +3251,12 @@ msgid "Invalid value specified for ignorable content. Permissible values %s"
2988
3251
  msgstr "为可忽略的内容指定了无效的值。允许值为 %s"
2989
3252
 
2990
3253
  msgid "Issued"
3254
+ msgstr "发布"
3255
+
3256
+ msgid "Issued from"
3257
+ msgstr ""
3258
+
3259
+ msgid "Job ${description} has started."
2991
3260
  msgstr ""
2992
3261
 
2993
3262
  msgid "Katello ID of local pool to update"
@@ -3002,6 +3271,12 @@ msgstr "Katello: 安装软件包"
3002
3271
  msgid "Katello: Install Package Group"
3003
3272
  msgstr "Katello: 安装软件包组"
3004
3273
 
3274
+ msgid "Katello: Install errata by search query"
3275
+ msgstr ""
3276
+
3277
+ msgid "Katello: Install packages by search query"
3278
+ msgstr ""
3279
+
3005
3280
  msgid "Katello: Module Stream Actions"
3006
3281
  msgstr "Katello:模块流操作"
3007
3282
 
@@ -3011,9 +3286,12 @@ msgstr "Katello: 删除软件包"
3011
3286
  msgid "Katello: Remove Package Group"
3012
3287
  msgstr "Katello: 删除软件包组"
3013
3288
 
3014
- msgid "Katello: Resolve Traces"
3289
+ msgid "Katello: Remove Packages by search query"
3015
3290
  msgstr ""
3016
3291
 
3292
+ msgid "Katello: Resolve Traces"
3293
+ msgstr "Katello: 解决 Trace"
3294
+
3017
3295
  msgid "Katello: Service Restart"
3018
3296
  msgstr "Katello:服务重启"
3019
3297
 
@@ -3023,6 +3301,9 @@ msgstr "Katello: 更新软件包"
3023
3301
  msgid "Katello: Update Package Group"
3024
3302
  msgstr "Katello:更新软件包组"
3025
3303
 
3304
+ msgid "Katello: Update Packages by search query"
3305
+ msgstr ""
3306
+
3026
3307
  msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
3027
3308
  msgstr "subscription-manager fact 的键-值哈希,使用句点 (.) 进行嵌套"
3028
3309
 
@@ -3044,6 +3325,9 @@ msgstr "标记"
3044
3325
  msgid "Label of the content"
3045
3326
  msgstr "内容标签"
3046
3327
 
3328
+ msgid "Label of the content view"
3329
+ msgstr ""
3330
+
3047
3331
  msgid "Last published"
3048
3332
  msgstr "最新发布的"
3049
3333
 
@@ -3062,13 +3346,10 @@ msgstr "最新版本"
3062
3346
  msgid "Learn more about adding Subscription Manifests"
3063
3347
  msgstr "了解有关添加订阅清单的更多信息"
3064
3348
 
3065
- msgid "Leave blank if consuming Red Hat Content from the Default Content View or CDN "
3066
- msgstr ""
3067
-
3068
- msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
3069
- msgstr ""
3070
-
3071
3349
  msgid "Less than"
3350
+ msgstr "小于"
3351
+
3352
+ msgid "Library"
3072
3353
  msgstr ""
3073
3354
 
3074
3355
  msgid "Library lifecycle environments may not be deleted."
@@ -3093,7 +3374,7 @@ msgid "Lifecycle Environment ID"
3093
3374
  msgstr "生命周期环境 ID"
3094
3375
 
3095
3376
  msgid "Lifecycle Environment Label"
3096
- msgstr ""
3377
+ msgstr "生命周期环境 ID"
3097
3378
 
3098
3379
  msgid "Lifecycle Environments"
3099
3380
  msgstr "生命周期环境"
@@ -3113,9 +3394,15 @@ msgstr "主机的生命周期环境。"
3113
3394
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3114
3395
  msgstr "生命周期环境没有附加到智能代理,因此没有改变。"
3115
3396
 
3397
+ msgid "Lifecycle environment: {lce}"
3398
+ msgstr ""
3399
+
3116
3400
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3117
3401
  msgstr "无法在默认的智能代理上修改生命周期环境。所有生命周期环境中的内容都将存在于此智能代理中。"
3118
3402
 
3403
+ msgid "Limit content to enabled / disabled / overridden"
3404
+ msgstr ""
3405
+
3119
3406
  msgid "Limit content to just that available in the activation key's content view version"
3120
3407
  msgstr "将内容限制为仅激活码的内容视图版本中可用的内容"
3121
3408
 
@@ -3123,19 +3410,19 @@ msgid "Limit content to just that available in the host's content view version"
3123
3410
  msgstr "将内容限制为主机内容视图版本中的可用内容"
3124
3411
 
3125
3412
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3126
- msgstr ""
3413
+ msgstr "将内容限制为仅在主机或激活码的内容视图版本中,以及生命周期环境中可用的内容。"
3127
3414
 
3128
3415
  msgid "Limit to environment"
3129
- msgstr ""
3416
+ msgstr "限制到环境"
3130
3417
 
3131
3418
  msgid "Limits"
3132
3419
  msgstr "限度"
3133
3420
 
3134
3421
  msgid "List %s"
3135
- msgstr ""
3422
+ msgstr "列出 %s"
3136
3423
 
3137
3424
  msgid "List :resource"
3138
- msgstr ""
3425
+ msgstr "列出 :resource"
3139
3426
 
3140
3427
  msgid "List :resource_id"
3141
3428
  msgstr "列出:resource_id"
@@ -3174,7 +3461,7 @@ msgid "List content views"
3174
3461
  msgstr "列出内容视图"
3175
3462
 
3176
3463
  msgid "List deb packages"
3177
- msgstr ""
3464
+ msgstr "列出 deb 软件包"
3178
3465
 
3179
3466
  msgid "List deb packages installed on the host"
3180
3467
  msgstr "列出安装在主机上的 deb 软件包"
@@ -3224,6 +3511,9 @@ msgstr "要安装的勘误 ID 列表。将在 %s 中删除。"
3224
3511
  msgid "List of Products for sync plan"
3225
3512
  msgstr "同步计划的产品列表"
3226
3513
 
3514
+ msgid "List of alternate_content_sources"
3515
+ msgstr ""
3516
+
3227
3517
  msgid "List of component content view version ids for composite views"
3228
3518
  msgstr "复合视图的组件内容视图版本 ID 列表"
3229
3519
 
@@ -3320,6 +3610,12 @@ msgstr "訂閱中的訂閱產品清單"
3320
3610
  msgid "List of subscription products in an activation key"
3321
3611
  msgstr "啟動金鑰中的訂閱產品清單"
3322
3612
 
3613
+ msgid "List of versions to exclude and not run an action on"
3614
+ msgstr ""
3615
+
3616
+ msgid "List of versions to perform an action on"
3617
+ msgstr ""
3618
+
3323
3619
  msgid "List organization subscriptions"
3324
3620
  msgstr "列出机构订阅"
3325
3621
 
@@ -3363,6 +3659,12 @@ msgid "Loading"
3363
3659
  msgstr "加载"
3364
3660
 
3365
3661
  msgid "Loading versions"
3662
+ msgstr "加载版本"
3663
+
3664
+ msgid "Loading..."
3665
+ msgstr ""
3666
+
3667
+ msgid "Low"
3366
3668
  msgstr ""
3367
3669
 
3368
3670
  msgid "Make copy of a content view"
@@ -3414,7 +3716,7 @@ msgid "Matched"
3414
3716
  msgstr "匹配"
3415
3717
 
3416
3718
  msgid "Matching content"
3417
- msgstr ""
3719
+ msgstr "匹配内容"
3418
3720
 
3419
3721
  msgid "Max %(maxQuantity)s"
3420
3722
  msgstr "最高 %(maxQuantity)s"
@@ -3422,6 +3724,9 @@ msgstr "最高 %(maxQuantity)s"
3422
3724
  msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
3423
3725
  msgstr "已达到激活码 '%{name}' 的最大主机限制 (%{limit})"
3424
3726
 
3727
+ msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
3728
+ msgstr ""
3729
+
3425
3730
  msgid "Maximum number of content hosts exceeded for host collection(s): %s"
3426
3731
  msgstr "已超过主机集的最大內容主机数量:%s"
3427
3732
 
@@ -3429,7 +3734,7 @@ msgid "Maximum number of hosts in the host collection"
3429
3734
  msgstr "主機集中的最大主機數量"
3430
3735
 
3431
3736
  msgid "Maximum version"
3432
- msgstr ""
3737
+ msgstr "最大版本"
3433
3738
 
3434
3739
  msgid "May not add a type or date range rule to a filter that has existing rules."
3435
3740
  msgstr "不可將一項類型或日期範圍規則加入一個含有既有規則的篩選器。"
@@ -3450,13 +3755,13 @@ msgid "Messaging connection"
3450
3755
  msgstr "訊息連線"
3451
3756
 
3452
3757
  msgid "Metadata republishing must be forced because it is a dangerous operation."
3453
- msgstr ""
3758
+ msgstr "必须强制进行元数据重新发布,因为它是一个危险的操作。"
3454
3759
 
3455
3760
  msgid "Metadata taken from the upstream export history for this Content View Version"
3456
3761
  msgstr "从此 Content View 版本的上游导出历史记录中获取的元数据"
3457
3762
 
3458
3763
  msgid "Minimum version"
3459
- msgstr ""
3764
+ msgstr "最小版本"
3460
3765
 
3461
3766
  msgid "Mismatched"
3462
3767
  msgstr "不匹配"
@@ -3468,10 +3773,10 @@ msgid "Missing arguments %{substitutions} for %{content_url}"
3468
3773
  msgstr "缺少 %{content_url} 的 %{substitutions} 参数"
3469
3774
 
3470
3775
  msgid "Moderate"
3471
- msgstr ""
3776
+ msgstr "中等"
3472
3777
 
3473
3778
  msgid "Modular"
3474
- msgstr ""
3779
+ msgstr "模块化"
3475
3780
 
3476
3781
  msgid "Module Stream"
3477
3782
  msgstr "模块流"
@@ -3486,6 +3791,9 @@ msgid "Module stream"
3486
3791
  msgstr "模块流"
3487
3792
 
3488
3793
  msgid "Module streams"
3794
+ msgstr "模块流"
3795
+
3796
+ msgid "Module streams will appear here when available."
3489
3797
  msgstr ""
3490
3798
 
3491
3799
  msgid "Multi-entitlement"
@@ -3517,15 +3825,24 @@ msgstr ""
3517
3825
  "注意:无法完全导入内容视图版本 '%{content_view} %{current}',它包括没有 'immediate' 下载策略的仓库。更新下载策论并同步受影响的仓库。在同步重新发布的内容视图后,导入生成的版本。 \n"
3518
3826
  " %{repos}"
3519
3827
 
3828
+ msgid "NOTE: Unable to fully export repository '%{repository}' because it does not have the 'immediate' download policy. Update the download policy and sync the affected repository to include them in the export."
3829
+ msgstr ""
3830
+
3520
3831
  msgid "Name"
3521
3832
  msgstr "名称"
3522
3833
 
3834
+ msgid "Name is a required parameter."
3835
+ msgstr ""
3836
+
3523
3837
  msgid "Name of new activation key"
3524
3838
  msgstr "新啟動金鑰的名稱"
3525
3839
 
3526
3840
  msgid "Name of the Content Credential"
3527
3841
  msgstr "内容凭证的名称"
3528
3842
 
3843
+ msgid "Name of the alternate content source"
3844
+ msgstr ""
3845
+
3529
3846
  msgid "Name of the content view"
3530
3847
  msgstr "內容視域的名稱"
3531
3848
 
@@ -3547,6 +3864,9 @@ msgstr "只需要为文件仓库或 docker 标签设置"
3547
3864
  msgid "Nest"
3548
3865
  msgstr "嵌套"
3549
3866
 
3867
+ msgid "Network Sync"
3868
+ msgstr ""
3869
+
3550
3870
  msgid "Never Synced"
3551
3871
  msgstr "從未同步"
3552
3872
 
@@ -3613,20 +3933,29 @@ msgstr "找不到容器 registry 的 URL。请检查配置。"
3613
3933
  msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
3614
3934
  msgstr "没有内容视图 %{component} 的版本已存在,作为复合内容视图 %{composite} 版本 %{version} 的组件"
3615
3935
 
3616
- msgid "No applicable errata"
3936
+ msgid "No action is needed because there are no applicable errata for this host."
3617
3937
  msgstr ""
3618
3938
 
3939
+ msgid "No action required"
3940
+ msgstr ""
3941
+
3942
+ msgid "No applicable errata"
3943
+ msgstr "没有适用的勘误"
3944
+
3619
3945
  msgid "No applicable errata for %s, skipping"
3620
3946
  msgstr "没有适用于%s 的勘误,跳过"
3621
3947
 
3948
+ msgid "No applications to restart"
3949
+ msgstr ""
3950
+
3622
3951
  msgid "No artifacts to show"
3623
3952
  msgstr "没有可显示的工件"
3624
3953
 
3625
3954
  msgid "No content"
3626
- msgstr ""
3955
+ msgstr "没有内容"
3627
3956
 
3628
3957
  msgid "No content added."
3629
- msgstr ""
3958
+ msgstr "没有添加内容。"
3630
3959
 
3631
3960
  msgid "No content has been provided."
3632
3961
  msgstr "未提供內容。"
@@ -3638,6 +3967,9 @@ msgid "No content view history events found."
3638
3967
  msgstr "找不到内容视图历史记录事件。"
3639
3968
 
3640
3969
  msgid "No content views available"
3970
+ msgstr "没有可用的内容视图"
3971
+
3972
+ msgid "No content views available for the selected environment"
3641
3973
  msgstr ""
3642
3974
 
3643
3975
  msgid "No content views belong to ${label}"
@@ -3649,6 +3981,9 @@ msgstr "未提供 content_view_version_ids"
3649
3981
  msgid "No description"
3650
3982
  msgstr "没有描述"
3651
3983
 
3984
+ msgid "No description provided"
3985
+ msgstr ""
3986
+
3652
3987
  msgid "No enabled repositories match your search criteria."
3653
3988
  msgstr "没有启用的仓库符合您的搜索条件。"
3654
3989
 
@@ -3659,10 +3994,10 @@ msgid "No environments"
3659
3994
  msgstr "没有环境"
3660
3995
 
3661
3996
  msgid "No errata available for this content view."
3662
- msgstr ""
3997
+ msgstr "列出可用于内容主机的勘误"
3663
3998
 
3664
3999
  msgid "No errata available to add to this filter."
3665
- msgstr ""
4000
+ msgstr "没有可添加到此过滤器的勘误。"
3666
4001
 
3667
4002
  msgid "No errors"
3668
4003
  msgstr "无错误"
@@ -3673,6 +4008,9 @@ msgstr "找不到现有的导出历史记录来执行增量导出。必须执行
3673
4008
  msgid "No file uploaded"
3674
4009
  msgstr "为上传文件"
3675
4010
 
4011
+ msgid "No host collections"
4012
+ msgstr ""
4013
+
3676
4014
  msgid "No host collections found."
3677
4015
  msgstr "找不到主机集合。"
3678
4016
 
@@ -3682,11 +4020,14 @@ msgstr "没有指定主机。"
3682
4020
  msgid "No hosts registered with subscription-manager found in selection."
3683
4021
  msgstr "在选择中未找到 subscription-manager 注册的主机。"
3684
4022
 
4023
+ msgid "No hosts with content source found!"
4024
+ msgstr ""
4025
+
3685
4026
  msgid "No installed packages and/or enabled repositories have been reported by %s."
3686
4027
  msgstr "%s 还没有报告任何安装的软件包和/或启用的仓库。"
3687
4028
 
3688
4029
  msgid "No items have been specified."
3689
- msgstr ""
4030
+ msgstr "没有指定项。"
3690
4031
 
3691
4032
  msgid "No manifest file uploaded"
3692
4033
  msgstr "未上傳清單檔案"
@@ -3695,25 +4036,28 @@ msgid "No manifest found. Import a manifest with the appropriate subscriptions b
3695
4036
  msgstr "没有找到清单。导入内容之前导入带有适当订阅的清单。"
3696
4037
 
3697
4038
  msgid "No matching "
3698
- msgstr ""
4039
+ msgstr "未匹配 "
3699
4040
 
3700
4041
  msgid "No matching ${selectedContentType} found"
3701
- msgstr ""
4042
+ msgstr "没有找到匹配的 ${selectedContentType}。"
3702
4043
 
3703
4044
  msgid "No matching RPM found."
3704
- msgstr ""
4045
+ msgstr "未找到匹配的 RPM。"
3705
4046
 
3706
4047
  msgid "No matching activation keys found."
4048
+ msgstr "未找到匹配的激活码。"
4049
+
4050
+ msgid "No matching alternate content sources found"
3707
4051
  msgstr ""
3708
4052
 
3709
4053
  msgid "No matching content views found"
3710
4054
  msgstr "找不到匹配的内容视图"
3711
4055
 
3712
4056
  msgid "No matching errata found"
3713
- msgstr ""
4057
+ msgstr "未找到匹配的勘误"
3714
4058
 
3715
4059
  msgid "No matching filter rules found."
3716
- msgstr ""
4060
+ msgstr "找不到匹配的过滤器"
3717
4061
 
3718
4062
  msgid "No matching filters found"
3719
4063
  msgstr "找不到匹配的过滤器"
@@ -3721,23 +4065,26 @@ msgstr "找不到匹配的过滤器"
3721
4065
  msgid "No matching history record found"
3722
4066
  msgstr "找不到匹配的历史记录"
3723
4067
 
3724
- msgid "No matching hosts found."
4068
+ msgid "No matching host collections found"
3725
4069
  msgstr ""
3726
4070
 
4071
+ msgid "No matching hosts found."
4072
+ msgstr "未找到匹配的主机。"
4073
+
3727
4074
  msgid "No matching packages found"
3728
- msgstr ""
4075
+ msgstr "没有找到匹配的软件包组"
3729
4076
 
3730
4077
  msgid "No matching repositories found"
3731
4078
  msgstr "找不到匹配的仓库"
3732
4079
 
3733
4080
  msgid "No matching repository sets found"
3734
- msgstr ""
4081
+ msgstr "找不到匹配的仓库"
3735
4082
 
3736
4083
  msgid "No matching rules found."
3737
4084
  msgstr "未找到匹配规则."
3738
4085
 
3739
4086
  msgid "No matching traces found"
3740
- msgstr ""
4087
+ msgstr "未找到匹配的跟踪"
3741
4088
 
3742
4089
  msgid "No matching version found"
3743
4090
  msgstr "未找到匹配的版本"
@@ -3749,6 +4096,12 @@ msgid "No new packages."
3749
4096
  msgstr "沒有新的软件包。"
3750
4097
 
3751
4098
  msgid "No packages"
4099
+ msgstr "没有软件包"
4100
+
4101
+ msgid "No packages available to install"
4102
+ msgstr ""
4103
+
4104
+ msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
3752
4105
  msgstr ""
3753
4106
 
3754
4107
  msgid "No packages removed"
@@ -3772,17 +4125,14 @@ msgstr "没有需要重新启动的进程"
3772
4125
  msgid "No products are enabled."
3773
4126
  msgstr "没有启用任何产品。"
3774
4127
 
3775
- msgid "No profiles to show"
3776
- msgstr "没有可显示的配置集"
3777
-
3778
4128
  msgid "No pulp workers running."
3779
4129
  msgstr "沒有 pulp 工作者執行中。"
3780
4130
 
3781
4131
  msgid "No pulpcore content apps are running at %s."
3782
- msgstr ""
4132
+ msgstr "在 %s 上没有允许 没有 pulpcore 内容应用程序。"
3783
4133
 
3784
4134
  msgid "No pulpcore workers are running at %s."
3785
- msgstr ""
4135
+ msgstr "在 %s 上没有运行 pulpcore worker。"
3786
4136
 
3787
4137
  msgid "No recently synced products"
3788
4138
  msgstr "没有最近同步的产品"
@@ -3797,7 +4147,7 @@ msgid "No repositories enabled."
3797
4147
  msgstr "没有启用的仓库"
3798
4148
 
3799
4149
  msgid "No repositories selected."
3800
- msgstr ""
4150
+ msgstr "没有选择仓库"
3801
4151
 
3802
4152
  msgid "No repositories to show"
3803
4153
  msgstr "没有要显示的仓库"
@@ -3806,7 +4156,7 @@ msgid "No repository sets match your search criteria."
3806
4156
  msgstr "没有仓库集符合您的搜索条件。"
3807
4157
 
3808
4158
  msgid "No repository sets to show."
3809
- msgstr ""
4159
+ msgstr "没有要显示的仓库集。"
3810
4160
 
3811
4161
  msgid "No rules have been added to this filter."
3812
4162
  msgstr "没有规则被添加到此过滤器。"
@@ -3841,9 +4191,6 @@ msgstr "没有"
3841
4191
  msgid "None provided"
3842
4192
  msgstr "没有提供"
3843
4193
 
3844
- msgid "Not Specified"
3845
- msgstr "未指定"
3846
-
3847
4194
  msgid "Not a number"
3848
4195
  msgstr "不是一个数字"
3849
4196
 
@@ -3856,11 +4203,14 @@ msgstr "并非所有需要的 pulp worker 都在 %s 上运行。"
3856
4203
  msgid "Not running"
3857
4204
  msgstr "未运行"
3858
4205
 
4206
+ msgid "Not specified"
4207
+ msgstr ""
4208
+
3859
4209
  msgid "Not yet published"
3860
4210
  msgstr "尚未发布"
3861
4211
 
3862
4212
  msgid "Note: Deleting a subscription manifest is STRONGLY discouraged. Deleting a manifest will:"
3863
- msgstr ""
4213
+ msgstr "注:强烈不建议删除订阅清单。删除清单将会:"
3864
4214
 
3865
4215
  msgid "Note: The number in parentheses reflects all applicable errata from the Library environment that are unavailable to the host. You will need to promote this content to the relevant content view in order to make it available."
3866
4216
  msgstr "注意:括号中的数字反映了主机环境不可用的所有适用于库环境的勘误。您需要将该内容提升到相关的内容视图,以使其可用。"
@@ -3884,16 +4234,16 @@ msgid "OSTree Branch"
3884
4234
  msgstr "OSTree Branch"
3885
4235
 
3886
4236
  msgid "OSTree Ref"
3887
- msgstr ""
4237
+ msgstr "OSTree Ref"
3888
4238
 
3889
4239
  msgid "OSTree Refs"
3890
- msgstr ""
4240
+ msgstr "OSTree Ref"
3891
4241
 
3892
4242
  msgid "OSTree ref"
3893
- msgstr ""
4243
+ msgstr "OSTree ref"
3894
4244
 
3895
4245
  msgid "OSTree refs"
3896
- msgstr ""
4246
+ msgstr "OSTree ref"
3897
4247
 
3898
4248
  msgid "Object to show subscriptions available for, either 'host' or 'activation_key'"
3899
4249
  msgstr "显示可用于“主机”或“ activation_key”的订阅的对象"
@@ -3926,10 +4276,10 @@ msgid "One or more processes require restarting"
3926
4276
  msgstr "一个或多个进程需要重新启动"
3927
4277
 
3928
4278
  msgid "Only On Demand repositories may have space reclaimed."
3929
- msgstr ""
4279
+ msgstr "只有 On Demand 存储库可能才有可以重新声明的空间。"
3930
4280
 
3931
4281
  msgid "Only On Demand smart proxies may have space reclaimed."
3932
- msgstr ""
4282
+ msgstr "只有 On Demand 智能代理可能才有可以重新声明的空间。"
3933
4283
 
3934
4284
  msgid "Only one Red Hat provider permitted for an Organization"
3935
4285
  msgstr "一个机构仅允许一个 Red Hat 供应商"
@@ -3955,9 +4305,6 @@ msgstr "必须提供机构 ID"
3955
4305
  msgid "Organization Information not provided."
3956
4306
  msgstr "未提供的机构信息。"
3957
4307
 
3958
- msgid "Organization Label"
3959
- msgstr ""
3960
-
3961
4308
  msgid "Organization cannot be blank."
3962
4309
  msgstr "组织不能为空。"
3963
4310
 
@@ -3977,16 +4324,16 @@ msgid "Organization required"
3977
4324
  msgstr "需要的机构"
3978
4325
 
3979
4326
  msgid "Orphaned Content Protection Time"
3980
- msgstr ""
4327
+ msgstr "孤立的内容保护时间"
3981
4328
 
3982
4329
  msgid "Other"
3983
4330
  msgstr "其他"
3984
4331
 
3985
4332
  msgid "Other Content Types"
3986
- msgstr ""
4333
+ msgstr "其他內容类型"
3987
4334
 
3988
4335
  msgid "Overridden"
3989
- msgstr ""
4336
+ msgstr "覆盖"
3990
4337
 
3991
4338
  msgid "Override content for activation_key"
3992
4339
  msgstr "覆盖 activation_key 的內容"
@@ -4007,10 +4354,10 @@ msgid "Override to a boolean value or 'default'"
4007
4354
  msgstr "覆盖为布尔值或 'default'"
4008
4355
 
4009
4356
  msgid "Override to disabled"
4010
- msgstr ""
4357
+ msgstr "覆盖来禁用"
4011
4358
 
4012
4359
  msgid "Override to enabled"
4013
- msgstr ""
4360
+ msgstr "覆盖来启用"
4014
4361
 
4015
4362
  msgid "Override value. Provide a boolean value if name is 'enabled'"
4016
4363
  msgstr "覆盖值。如果名为“ enabled”,则提供一个布尔值"
@@ -4109,10 +4456,10 @@ msgid "Package Remove scheduled by %s"
4109
4456
  msgstr "%s 调度的软件包删除"
4110
4457
 
4111
4458
  msgid "Package Type"
4112
- msgstr ""
4459
+ msgstr "软件包类型"
4113
4460
 
4114
4461
  msgid "Package Types"
4115
- msgstr ""
4462
+ msgstr "软件包类型"
4116
4463
 
4117
4464
  msgid "Package Update"
4118
4465
  msgstr "软件包更新"
@@ -4157,19 +4504,16 @@ msgid "Package installation: \"%{package}\" "
4157
4504
  msgstr "软件包安装:\"%{package}\" "
4158
4505
 
4159
4506
  msgid "Package types to sync for Python content, separated by comma. Leave empty to get every package type. Package types are: bdist_dmg, bdist_dumb, bdist_egg, bdist_msi, bdist_rpm, bdist_wheel, bdist_wininst, sdist."
4160
- msgstr ""
4507
+ msgstr "为 Python 内容同步的软件包类型,以逗号隔开。留空代表获得每个软件包类型。软件包类型包括 bdist_dmg、bdist_dumb、bdist_egg、bdist_msi、bdist_msi、bdist_rpm、bdist_wheel、bdist_wininst、sdist、sdist."
4161
4508
 
4162
4509
  msgid "Packages"
4163
4510
  msgstr "软件包"
4164
4511
 
4165
- msgid "Packages management functionality on this page is incomplete"
4166
- msgstr ""
4167
-
4168
4512
  msgid "Packages must be provided"
4169
4513
  msgstr "必须提供软件包"
4170
4514
 
4171
4515
  msgid "Packages will appear here when available."
4172
- msgstr ""
4516
+ msgstr "当软件包可用时,将在此处显示。"
4173
4517
 
4174
4518
  msgid "Page number, starting at 1"
4175
4519
  msgstr "頁數,從 1 開始"
@@ -4184,13 +4528,13 @@ msgid "Partition template IDs"
4184
4528
  msgstr "分割區範本 ID"
4185
4529
 
4186
4530
  msgid "Password"
4187
- msgstr ""
4531
+ msgstr "密码"
4188
4532
 
4189
- msgid "Password for authentication"
4533
+ msgid "Password for authentication. Relevant only for 'upstream_server' type."
4190
4534
  msgstr ""
4191
4535
 
4192
4536
  msgid "Password of the upstream authentication token."
4193
- msgstr ""
4537
+ msgstr "上游身份验证令牌的密码。"
4194
4538
 
4195
4539
  msgid "Password of the upstream repository user used for authentication"
4196
4540
  msgstr "上游仓库用户用来进行身份验证的密码"
@@ -4199,7 +4543,7 @@ msgid "Password to access URL"
4199
4543
  msgstr "访问 URL 的密码"
4200
4544
 
4201
4545
  msgid "Path"
4202
- msgstr ""
4546
+ msgstr "路径"
4203
4547
 
4204
4548
  msgid "Path for ssl cert used for pulp server auth"
4205
4549
  msgstr "用于 pulp 服务器验证的 SSL 证书的路径"
@@ -4207,6 +4551,9 @@ msgstr "用于 pulp 服务器验证的 SSL 证书的路径"
4207
4551
  msgid "Path for ssl key used for pulp server auth"
4208
4552
  msgstr "用于 pulp 服务器验证的 SSL 密钥的路径"
4209
4553
 
4554
+ msgid "Path suffixes for finding alternate content"
4555
+ msgstr ""
4556
+
4210
4557
  msgid "Paused"
4211
4558
  msgstr "暂停"
4212
4559
 
@@ -4225,6 +4572,12 @@ msgstr "执行内容视图版本的完全导出。"
4225
4572
  msgid "Performs a full-export of the repositories in library."
4226
4573
  msgstr "对库中的仓库执行完全导出。"
4227
4574
 
4575
+ msgid "Performs a full-export of the repository in library."
4576
+ msgstr ""
4577
+
4578
+ msgid "Performs a incremental-export of the repository in library."
4579
+ msgstr ""
4580
+
4228
4581
  msgid "Performs an incremental-export of a content view version."
4229
4582
  msgstr "执行内容视图版本的增量导出。"
4230
4583
 
@@ -4258,6 +4611,12 @@ msgstr "请将数字限制在 10 位"
4258
4611
  msgid "Please select a content source before assigning a kickstart repository"
4259
4612
  msgstr "在分配 kickstart 仓库之前,请先选择内容来源"
4260
4613
 
4614
+ msgid "Please select a lifecycle environment and a content view to move these activation keys."
4615
+ msgstr ""
4616
+
4617
+ msgid "Please select a lifecycle environment and a content view to move this activation key."
4618
+ msgstr ""
4619
+
4261
4620
  msgid "Please select an architecture before assigning a kickstart repository"
4262
4621
  msgstr "在分配 kickstart 仓库之前,请先选择一个架构"
4263
4622
 
@@ -4274,14 +4633,44 @@ msgid "Please select one from the list below and you will be redirected."
4274
4633
  msgstr "请从下面的列表中选择一个,您将被重定向。"
4275
4634
 
4276
4635
  msgid "Please wait while the task starts.."
4277
- msgstr ""
4636
+ msgstr "请等待任务启动.."
4278
4637
 
4279
4638
  msgid "Policy to set for mirroring content. Must be one of %s."
4639
+ msgstr "为镜像内容设置的策略。必须是 %s 之一。"
4640
+
4641
+ msgid "Prefer registered through proxy for remote execution"
4642
+ msgstr ""
4643
+
4644
+ msgid "Prefer using a proxy to which a host is registered when using remote execution"
4645
+ msgstr ""
4646
+
4647
+ msgid "Prevent from further updates"
4280
4648
  msgstr ""
4281
4649
 
4282
4650
  msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
4283
4651
  msgstr "在元数据中指定的前内容查看版本 - '%{name}'不存在。请先导入“%{name}”的元数据,然后再导入“%{current}” "
4284
4652
 
4653
+ msgid "Problem searching"
4654
+ msgstr ""
4655
+
4656
+ msgid "Problem searching errata"
4657
+ msgstr ""
4658
+
4659
+ msgid "Problem searching host collections"
4660
+ msgstr ""
4661
+
4662
+ msgid "Problem searching module streams"
4663
+ msgstr ""
4664
+
4665
+ msgid "Problem searching packages"
4666
+ msgstr ""
4667
+
4668
+ msgid "Problem searching repository sets"
4669
+ msgstr ""
4670
+
4671
+ msgid "Problem searching traces"
4672
+ msgstr ""
4673
+
4285
4674
  msgid "Processing metadata"
4286
4675
  msgstr "处理元数据"
4287
4676
 
@@ -4301,7 +4690,7 @@ msgid "Product ID"
4301
4690
  msgstr "产品 ID"
4302
4691
 
4303
4692
  msgid "Product Name"
4304
- msgstr ""
4693
+ msgstr "产品名称"
4305
4694
 
4306
4695
  msgid "Product and Repositories"
4307
4696
  msgstr "產品與軟體庫"
@@ -4340,9 +4729,6 @@ msgstr "产品:'%{product}',参考:'%{repository}'"
4340
4729
  msgid "Products"
4341
4730
  msgstr "产品"
4342
4731
 
4343
- msgid "Profiles"
4344
- msgstr "配置集"
4345
-
4346
4732
  msgid "Promote"
4347
4733
  msgstr "升级"
4348
4734
 
@@ -4353,10 +4739,10 @@ msgid "Promote errata"
4353
4739
  msgstr "升级勘误"
4354
4740
 
4355
4741
  msgid "Promote version ${versionNameToPromote}"
4356
- msgstr ""
4742
+ msgstr "提升版本 ${versionNameToPromote}"
4357
4743
 
4358
4744
  msgid "Promoted to "
4359
- msgstr ""
4745
+ msgstr "提升到"
4360
4746
 
4361
4747
  msgid "Promoted to %{environment}"
4362
4748
  msgstr "提升到 {environment}"
@@ -4370,6 +4756,9 @@ msgstr "为 {content_view} 提升摘要"
4370
4756
  msgid "Promotion to Environment"
4371
4757
  msgstr "升级到环境"
4372
4758
 
4759
+ msgid "Provide the required information and click {update} below to save changes."
4760
+ msgstr ""
4761
+
4373
4762
  msgid "Provided Products"
4374
4763
  msgstr "提供的产品"
4375
4764
 
@@ -4383,7 +4772,7 @@ msgid "Proxies"
4383
4772
  msgstr "代理服务器"
4384
4773
 
4385
4774
  msgid "Public"
4386
- msgstr ""
4775
+ msgstr "公共的"
4387
4776
 
4388
4777
  msgid "Public key block in DER encoding or certificate content"
4389
4778
  msgstr "以 DER 编码的公钥块或证书内容"
@@ -4398,13 +4787,13 @@ msgid "Publish a content view"
4398
4787
  msgstr "出版內容視域"
4399
4788
 
4400
4789
  msgid "Publish new version"
4401
- msgstr ""
4790
+ msgstr "发布新版本"
4402
4791
 
4403
4792
  msgid "Publish new version - "
4404
4793
  msgstr "发布新版本 - "
4405
4794
 
4406
4795
  msgid "Published date"
4407
- msgstr ""
4796
+ msgstr "发布的日期"
4408
4797
 
4409
4798
  msgid "Published new version"
4410
4799
  msgstr "已出版的新版本"
@@ -4476,22 +4865,22 @@ msgid "Pulp task error"
4476
4865
  msgstr "Pulp 任务错误"
4477
4866
 
4478
4867
  msgid "Python Package"
4479
- msgstr ""
4868
+ msgstr "Python 软件包"
4480
4869
 
4481
4870
  msgid "Python Packages"
4482
- msgstr ""
4871
+ msgstr "Python 软件包"
4483
4872
 
4484
4873
  msgid "Python package"
4485
- msgstr ""
4874
+ msgstr "Python 软件包"
4486
4875
 
4487
4876
  msgid "Python packages"
4488
- msgstr ""
4877
+ msgstr "Python 软件包"
4489
4878
 
4490
4879
  msgid "Python packages to exclude from the upstream URL, names separated by newline. You may also specify versions, for example: django~=2.0."
4491
- msgstr ""
4880
+ msgstr "要从上游 URL 中排除的 Python 软件包,名称以换行符分开。您也可以指定版本,例如: django~=2.0。"
4492
4881
 
4493
4882
  msgid "Python packages to include from the upstream URL, names separated by newline. You may also specify versions, for example: django~=2.0. Leave empty to include every package."
4494
- msgstr ""
4883
+ msgstr "要从上游 URL 包括的 Python 软件包,名称以换行符分开。您也可以指定版本,例如:django~=2.0。留空代表包含每一个软件包。"
4495
4884
 
4496
4885
  msgid "Quantity"
4497
4886
  msgstr "数量"
@@ -4524,53 +4913,65 @@ msgid "RPM"
4524
4913
  msgstr "RPM"
4525
4914
 
4526
4915
  msgid "RPM Package Groups"
4527
- msgstr ""
4916
+ msgstr "RPM 软件包组"
4528
4917
 
4529
4918
  msgid "RPM Packages"
4530
- msgstr ""
4919
+ msgstr "RPM 软件包"
4531
4920
 
4532
4921
  msgid "RPM name"
4533
4922
  msgstr "RPM名称"
4534
4923
 
4924
+ msgid "RPM packages"
4925
+ msgstr ""
4926
+
4535
4927
  msgid "RPMs"
4536
- msgstr "RPMs"
4928
+ msgstr "RPM"
4537
4929
 
4538
4930
  msgid "Range"
4539
- msgstr ""
4931
+ msgstr "范围"
4540
4932
 
4541
4933
  msgid "Realm IDs"
4542
4934
  msgstr "領域 ID"
4543
4935
 
4936
+ msgid "Reassign affected activation key"
4937
+ msgstr ""
4938
+
4544
4939
  msgid "Reassign affected activation keys"
4940
+ msgstr "重新分配受影响的激活码"
4941
+
4942
+ msgid "Reassign affected host"
4545
4943
  msgstr ""
4546
4944
 
4547
4945
  msgid "Reassign affected hosts"
4548
- msgstr ""
4946
+ msgstr "重新分配受影响的主机"
4549
4947
 
4550
4948
  msgid "Reboot required"
4551
4949
  msgstr "需要重启"
4552
4950
 
4553
4951
  msgid "Recalculate"
4554
- msgstr ""
4952
+ msgstr "重新计算"
4555
4953
 
4556
4954
  msgid "Recently Expired Subscriptions"
4557
4955
  msgstr "最近过期的订阅"
4558
4956
 
4559
4957
  msgid "Reclaim Space"
4560
- msgstr ""
4958
+ msgstr "重新声明空间"
4561
4959
 
4562
4960
  msgid "Reclaim space from On Demand repositories"
4563
- msgstr ""
4961
+ msgstr "重新声明来自 On Demand 软件仓库的空间"
4564
4962
 
4565
4963
  msgid "Reclaim space from all On Demand repositories on a smart proxy"
4566
- msgstr ""
4964
+ msgstr "从一个智能代理上的所有 On Demand 软件仓库重新声明空间"
4567
4965
 
4568
4966
  msgid "Reclaim space from an On Demand repository"
4569
- msgstr ""
4967
+ msgstr "重新声明来自 On Demand 存储库的空间"
4570
4968
 
4571
4969
  msgid "Recommended Repositories"
4572
4970
  msgstr "推荐的仓库"
4573
4971
 
4972
+ msgid "Red Hat CDN"
4973
+ msgstr ""
4974
+
4574
4975
  msgid "Red Hat CDN URL"
4575
4976
  msgstr "Red Hat CDN 網址"
4576
4977
 
@@ -4578,6 +4979,15 @@ msgid "Red Hat Repositories"
4578
4979
  msgstr "Red Hat 仓库"
4579
4980
 
4580
4981
  msgid "Red Hat Repositories page"
4982
+ msgstr "红帽仓库页"
4983
+
4984
+ msgid "Red Hat content will be consumed from an {type}."
4985
+ msgstr ""
4986
+
4987
+ msgid "Red Hat content will be consumed from the {type}."
4988
+ msgstr ""
4989
+
4990
+ msgid "Red Hat content will be enabled and consumed via the {type} process."
4581
4991
  msgstr ""
4582
4992
 
4583
4993
  msgid "Red Hat products cannot be manipulated."
@@ -4593,7 +5003,7 @@ msgid "Refresh"
4593
5003
  msgstr "刷新"
4594
5004
 
4595
5005
  msgid "Refresh Content Host Statuses for %s"
4596
- msgstr ""
5006
+ msgstr "为 %s 刷新内容主机状态"
4597
5007
 
4598
5008
  msgid "Refresh Manifest"
4599
5009
  msgstr "刷新清单"
@@ -4602,7 +5012,7 @@ msgid "Refresh previously imported manifest for Red Hat provider"
4602
5012
  msgstr "為 Red Hat 供應者更新之前匯入的清單"
4603
5013
 
4604
5014
  msgid "Refresh_Content_Host_Status"
4605
- msgstr ""
5015
+ msgstr "Refresh_Content_Host_Status"
4606
5016
 
4607
5017
  msgid "Register a host with subscription and information"
4608
5018
  msgstr "注册具有订阅和信息的主机"
@@ -4610,6 +5020,18 @@ msgstr "注册具有订阅和信息的主机"
4610
5020
  msgid "Register host '%s' before attaching subscriptions"
4611
5021
  msgstr "在附加订阅之前注册主机 '%s'"
4612
5022
 
5023
+ msgid "Registered by"
5024
+ msgstr ""
5025
+
5026
+ msgid "Registered on"
5027
+ msgstr ""
5028
+
5029
+ msgid "Registered through"
5030
+ msgstr ""
5031
+
5032
+ msgid "Registration details"
5033
+ msgstr ""
5034
+
4613
5035
  msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
4614
5036
  msgstr "Registry 名称特征导致这些仓库的容器镜像名称重复:%s。"
4615
5037
 
@@ -4623,22 +5045,22 @@ msgid "Reindex subscriptions"
4623
5045
  msgstr "重新索引订阅"
4624
5046
 
4625
5047
  msgid "Related component content views"
4626
- msgstr ""
5048
+ msgstr "相关组件内容视图"
4627
5049
 
4628
5050
  msgid "Related component cvs: "
4629
- msgstr ""
5051
+ msgstr "相关组件 cvs: "
4630
5052
 
4631
5053
  msgid "Related composite content views"
4632
- msgstr ""
5054
+ msgstr "相关的复合内容视图"
4633
5055
 
4634
5056
  msgid "Related composite cvs: "
4635
- msgstr ""
5057
+ msgstr "相关复合 cvs: "
4636
5058
 
4637
5059
  msgid "Related content views will appear here when created."
4638
- msgstr ""
5060
+ msgstr "相关的内容视图在创建时将在此处显示。"
4639
5061
 
4640
5062
  msgid "Release"
4641
- msgstr ""
5063
+ msgstr "发行"
4642
5064
 
4643
5065
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
4644
5066
  msgstr "为这个主机使用的发行版本(7Server,7.1 等)"
@@ -4695,9 +5117,15 @@ msgid "Remove from Environment"
4695
5117
  msgstr "从环境中移除"
4696
5118
 
4697
5119
  msgid "Remove from environment"
4698
- msgstr ""
5120
+ msgstr "从环境中移除"
4699
5121
 
4700
5122
  msgid "Remove from environments"
5123
+ msgstr "从环境中移除"
5124
+
5125
+ msgid "Remove host from collections"
5126
+ msgstr ""
5127
+
5128
+ msgid "Remove host from host collections"
4701
5129
  msgstr ""
4702
5130
 
4703
5131
  msgid "Remove hosts from the host collection"
@@ -4706,6 +5134,9 @@ msgstr "从主机集合中删除主机"
4706
5134
  msgid "Remove lifecycle environments from the smart proxy"
4707
5135
  msgstr "从智能代理中删除生命周期环境"
4708
5136
 
5137
+ msgid "Remove module stream"
5138
+ msgstr ""
5139
+
4709
5140
  msgid "Remove one or more host collections from one or more hosts"
4710
5141
  msgstr "从一个或多个主机中删除一个或多个主机集合"
4711
5142
 
@@ -4727,6 +5158,9 @@ msgstr "通过 Katello 接口删除软件包组"
4727
5158
  msgid "Remove package via Katello interface"
4728
5159
  msgstr "通过 Katello 界面删除软件包"
4729
5160
 
5161
+ msgid "Remove packages via Katello interface"
5162
+ msgstr ""
5163
+
4730
5164
  msgid "Remove products from sync plan"
4731
5165
  msgstr "從同步計畫中移除產品"
4732
5166
 
@@ -4743,7 +5177,7 @@ msgid "Remove versions and/or environments from a content view and reassign syst
4743
5177
  msgstr "从内容视图中删除版本和/或环境,并重新分配系统和密钥"
4744
5178
 
4745
5179
  msgid "Remove versions from environments"
4746
- msgstr ""
5180
+ msgstr "从环境中删除版本"
4747
5181
 
4748
5182
  msgid "Removed component from content view"
4749
5183
  msgstr "从内容视图中删除的组件"
@@ -4758,7 +5192,7 @@ msgid "Removing Package..."
4758
5192
  msgstr "正在删除软件包..."
4759
5193
 
4760
5194
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
4761
- msgstr ""
5195
+ msgstr "从所有环境中移出此版本不会删除此版本。版本仍可用于以后的提升。"
4762
5196
 
4763
5197
  msgid "Repo Type"
4764
5198
  msgstr "仓库类型"
@@ -4766,6 +5200,9 @@ msgstr "仓库类型"
4766
5200
  msgid "Repositories"
4767
5201
  msgstr "软件仓库"
4768
5202
 
5203
+ msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
5204
+ msgstr ""
5205
+
4769
5206
  msgid "Repositories from published Content Views are not allowed."
4770
5207
  msgstr "不允许来自发布的内容视图中的仓库。"
4771
5208
 
@@ -4809,40 +5246,37 @@ msgid "Repository not found"
4809
5246
  msgstr "找不到軟體庫"
4810
5247
 
4811
5248
  msgid "Repository path"
4812
- msgstr ""
5249
+ msgstr "仓库路径"
4813
5250
 
4814
5251
  msgid "Repository set disabled"
4815
- msgstr ""
5252
+ msgstr "禁用的仓库集"
4816
5253
 
4817
5254
  msgid "Repository set enabled"
4818
- msgstr ""
5255
+ msgstr "启用的仓库集"
4819
5256
 
4820
5257
  msgid "Repository set name to search on"
4821
5258
  msgstr "要搜索的仓库集名称"
4822
5259
 
4823
5260
  msgid "Repository set reset to default"
4824
- msgstr ""
5261
+ msgstr "将仓库集设置为默认值"
4825
5262
 
4826
5263
  msgid "Repository sets"
4827
- msgstr ""
5264
+ msgstr "仓库集"
4828
5265
 
4829
5266
  msgid "Repository sets are not available for custom products."
4830
5267
  msgstr "仓库集不适用于自定义产品。"
4831
5268
 
4832
5269
  msgid "Repository sets disabled"
4833
- msgstr ""
5270
+ msgstr "禁用的仓库集"
4834
5271
 
4835
5272
  msgid "Repository sets enabled"
4836
- msgstr ""
5273
+ msgstr "启用的仓库集"
4837
5274
 
4838
5275
  msgid "Repository sets reset to default"
4839
- msgstr ""
5276
+ msgstr "将仓库集设置为默认值"
4840
5277
 
4841
5278
  msgid "Repository sets will appear here when available."
4842
- msgstr ""
4843
-
4844
- msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
4845
- msgstr ""
5279
+ msgstr "仓库集在可用时将在此处显示。"
4846
5280
 
4847
5281
  msgid "Republish Repositories of %{name} %{version}"
4848
5282
  msgstr "重新发布 %{name}%{version} 的仓库"
@@ -4851,34 +5285,43 @@ msgid "Republish Version Repositories"
4851
5285
  msgstr "发布版本库"
4852
5286
 
4853
5287
  msgid "Require you to upload the subscription-manifest and re-attach subscriptions to hosts and activation keys."
4854
- msgstr ""
5288
+ msgstr "需要您上传 subscription-manifest 并为主机和激活码重新附加订阅。"
4855
5289
 
4856
5290
  msgid "Requirements is not valid yaml."
4857
- msgstr ""
5291
+ msgstr "Requirements 不是有效的 yaml。"
4858
5292
 
4859
5293
  msgid "Requirements yaml should be a key-value pair structure."
4860
- msgstr ""
5294
+ msgstr "Requirements yaml 应当是键值对结构。"
4861
5295
 
4862
5296
  msgid "Requirements yaml should have a 'collections' key"
4863
- msgstr ""
5297
+ msgstr "Requirements yaml 应当有 'collections' 键"
4864
5298
 
4865
5299
  msgid "Requires Virt-Who"
4866
5300
  msgstr "需要 Virt-Who"
4867
5301
 
5302
+ msgid "Reset"
5303
+ msgstr ""
5304
+
4868
5305
  msgid "Reset filters"
5306
+ msgstr "重置过滤"
5307
+
5308
+ msgid "Reset module stream"
4869
5309
  msgstr ""
4870
5310
 
4871
5311
  msgid "Reset to default"
5312
+ msgstr "重置为默认"
5313
+
5314
+ msgid "Reset to the default state"
4872
5315
  msgstr ""
4873
5316
 
4874
5317
  msgid "Resolve traces"
4875
- msgstr ""
5318
+ msgstr "解决 Trace"
4876
5319
 
4877
5320
  msgid "Resolve traces for one or more hosts"
4878
5321
  msgstr "为一个或多个主机解析跟踪"
4879
5322
 
4880
5323
  msgid "Resolve traces via Katello interface"
4881
- msgstr ""
5324
+ msgstr "通过 Katello 接口重启服务"
4882
5325
 
4883
5326
  msgid "Resource"
4884
5327
  msgstr "资源"
@@ -4887,16 +5330,16 @@ msgid "Restart Services via Katello interface"
4887
5330
  msgstr "通过 Katello 接口重启服务"
4888
5331
 
4889
5332
  msgid "Restart app"
4890
- msgstr ""
5333
+ msgstr "重启应用"
4891
5334
 
4892
5335
  msgid "Restart via customized remote execution"
4893
- msgstr ""
5336
+ msgstr "通过自定义远程执行重启"
4894
5337
 
4895
5338
  msgid "Restart via remote execution"
4896
- msgstr ""
5339
+ msgstr "通过远程执行重启"
4897
5340
 
4898
- msgid "Restrict Composite Content View promotion"
4899
- msgstr "限制复合内容视图升级"
5341
+ msgid "Restrict composite content view promotion"
5342
+ msgstr ""
4900
5343
 
4901
5344
  msgid "Result"
4902
5345
  msgstr "结果"
@@ -4914,13 +5357,13 @@ msgid "Return custom products only"
4914
5357
  msgstr "仅返回定制产品"
4915
5358
 
4916
5359
  msgid "Return deb packages that are applicable to one or more hosts (defaults to true if host_id is specified)"
4917
- msgstr ""
5360
+ msgstr "返回适用于一个或多个主机的 deb 软件包(如果指定了host_id,则默认为 true)"
4918
5361
 
4919
5362
  msgid "Return deb packages that are upgradable on one or more hosts"
4920
- msgstr ""
5363
+ msgstr "返回可在一个或多个主机上可升级的 deb 软件包"
4921
5364
 
4922
5365
  msgid "Return deb packages that can be added to the specified object. Only the value 'content_view_version' is supported."
4923
- msgstr ""
5366
+ msgstr "返回可以添加到指定对象的 deb 软件包。仅支持值 'content_view_version'。"
4924
5367
 
4925
5368
  msgid "Return enabled products only"
4926
5369
  msgstr "仅退回启用的产品"
@@ -4929,7 +5372,7 @@ msgid "Return errata that are applicable to one or more hosts (defaults to true
4929
5372
  msgstr "返回适用于一个或多个主机的勘误(如果指定了 host_id,则默认为 true)"
4930
5373
 
4931
5374
  msgid "Return errata that are applicable to this host. Defaults to false)"
4932
- msgstr ""
5375
+ msgstr "返回适用于此主机的勘误。默认为 false。"
4933
5376
 
4934
5377
  msgid "Return errata that are upgradable on one or more hosts"
4935
5378
  msgstr "返回可在一个或多个主机上可升级的勘误"
@@ -4941,13 +5384,13 @@ msgid "Return name and stream information only)"
4941
5384
  msgstr "仅返回名称和流信息)"
4942
5385
 
4943
5386
  msgid "Return only errata of a particular severity (None, Low, Moderate, Important, Critical)"
4944
- msgstr ""
5387
+ msgstr "仅返回特定严重级别的勘误(无、低、中、重要、严重)"
4945
5388
 
4946
5389
  msgid "Return only errata of a particular type (security, bugfix, enhancement)"
4947
- msgstr ""
5390
+ msgstr "仅返回特定类型的勘误(安全、错误修复、功能增强)"
4948
5391
 
4949
5392
  msgid "Return only packages of a particular status (upgradable or up-to-date)"
4950
- msgstr ""
5393
+ msgstr "仅返回特定状态的软件包(可升级或最新)"
4951
5394
 
4952
5395
  msgid "Return only subscriptions which can be attached to the upstream allocation"
4953
5396
  msgstr "仅返回可以附加到上游分配的订阅"
@@ -4980,19 +5423,22 @@ msgid "Return the content of a repo gpg key, used directly by yum"
4980
5423
  msgstr "返回一个仓库 GPG 密钥的內容,直接由 yum 所使用"
4981
5424
 
4982
5425
  msgid "Return the enabled content types"
4983
- msgstr ""
5426
+ msgstr "返回启用的内容类型"
4984
5427
 
4985
5428
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
4986
5429
  msgstr "返回可以添加及当前被添加的内容。支持值“ content_view_filter”"
4987
5430
 
4988
- msgid "Review Details"
5431
+ msgid "Review affected environment"
4989
5432
  msgstr ""
4990
5433
 
4991
- msgid "Review details"
5434
+ msgid "Review affected environments"
4992
5435
  msgstr ""
4993
5436
 
5437
+ msgid "Review details"
5438
+ msgstr "审阅详情"
5439
+
4994
5440
  msgid "Review your currently selected changes for "
4995
- msgstr ""
5441
+ msgstr "查看您当前选择的更改 "
4996
5442
 
4997
5443
  msgid "Role"
4998
5444
  msgstr "角色"
@@ -5003,15 +5449,15 @@ msgstr "主机角色"
5003
5449
  msgid "Roles"
5004
5450
  msgstr "角色"
5005
5451
 
5006
- msgid "Rpm packages"
5007
- msgstr ""
5008
-
5009
5452
  msgid "Rules to be added"
5010
- msgstr ""
5453
+ msgstr "要添加的规则"
5011
5454
 
5012
5455
  msgid "Run Sync Plan:"
5013
5456
  msgstr "运行同步计划:"
5014
5457
 
5458
+ msgid "Run job invocation"
5459
+ msgstr ""
5460
+
5015
5461
  msgid "Running"
5016
5462
  msgstr "執行中"
5017
5463
 
@@ -5022,7 +5468,7 @@ msgid "SRPM details"
5022
5468
  msgstr "SRPM 详情"
5023
5469
 
5024
5470
  msgid "SSL CA Content Credential"
5025
- msgstr ""
5471
+ msgstr "SSL CA 内容凭证"
5026
5472
 
5027
5473
  msgid "SSL version used to communicate with the CDN"
5028
5474
  msgstr "用于与 CDN 通信的 SSL 版本"
@@ -5037,15 +5483,21 @@ msgid "Schedule errata for installation using katello-agent. %s"
5037
5483
  msgstr "为使用 katello-agent 的安装调度勘误。%s"
5038
5484
 
5039
5485
  msgid "Schema Version 1"
5040
- msgstr ""
5486
+ msgstr "模式版本1"
5041
5487
 
5042
5488
  msgid "Schema Version 2"
5043
- msgstr ""
5489
+ msgstr "模式版本2"
5044
5490
 
5045
5491
  msgid "Search"
5046
5492
  msgstr "搜索"
5047
5493
 
5048
5494
  msgid "Search Query"
5495
+ msgstr "搜索查询"
5496
+
5497
+ msgid "Search available packages"
5498
+ msgstr ""
5499
+
5500
+ msgid "Search host collections"
5049
5501
  msgstr ""
5050
5502
 
5051
5503
  msgid "Search pattern (defaults to '*')"
@@ -5063,6 +5515,9 @@ msgstr "在其中执行操纵的主机的搜索字符串"
5063
5515
  msgid "Search string for hosts to perform an action on"
5064
5516
  msgstr "在其中执行操纵的主机的搜索字符串"
5065
5517
 
5518
+ msgid "Search string for versions to perform an action on"
5519
+ msgstr ""
5520
+
5066
5521
  msgid "Security"
5067
5522
  msgstr "安全"
5068
5523
 
@@ -5075,6 +5530,9 @@ msgstr "可安装的安全勘误"
5075
5530
  msgid "Select"
5076
5531
  msgstr "选择"
5077
5532
 
5533
+ msgid "Select ..."
5534
+ msgstr ""
5535
+
5078
5536
  msgid "Select All"
5079
5537
  msgstr "选择所有"
5080
5538
 
@@ -5091,16 +5549,22 @@ msgid "Select Value"
5091
5549
  msgstr "选择值"
5092
5550
 
5093
5551
  msgid "Select a content view"
5552
+ msgstr "选择一个内容视图"
5553
+
5554
+ msgid "Select a lifecycle environment and a content view to move these hosts."
5555
+ msgstr ""
5556
+
5557
+ msgid "Select a lifecycle environment and a content view to move this host."
5094
5558
  msgstr ""
5095
5559
 
5096
5560
  msgid "Select a lifecycle environment from the available promotion paths to promote new version."
5097
5561
  msgstr "从可用的提升路径中选择生命周期环境来提升新版本。"
5098
5562
 
5099
5563
  msgid "Select a provider to install katello-host-tools-tracer"
5100
- msgstr ""
5564
+ msgstr "选择安装 katello-host-tools-tracer 的供应商"
5101
5565
 
5102
5566
  msgid "Select all"
5103
- msgstr ""
5567
+ msgstr "选择所有"
5104
5568
 
5105
5569
  msgid "Select all rows"
5106
5570
  msgstr "选择所有行"
@@ -5108,6 +5572,12 @@ msgstr "选择所有行"
5108
5572
  msgid "Select an Organization"
5109
5573
  msgstr "现在一个机构"
5110
5574
 
5575
+ msgid "Select an environment"
5576
+ msgstr ""
5577
+
5578
+ msgid "Select an environment above"
5579
+ msgstr ""
5580
+
5111
5581
  msgid "Select an organization"
5112
5582
  msgstr "选择一个机构"
5113
5583
 
@@ -5115,25 +5585,37 @@ msgid "Select available version of ${cvName} to use"
5115
5585
  msgstr "选择一个可用版本 ${cvName} 来使用"
5116
5586
 
5117
5587
  msgid "Select available version of components to use"
5118
- msgstr ""
5588
+ msgstr "选择一个可用的组件版本来使用"
5119
5589
 
5120
5590
  msgid "Select content view"
5591
+ msgstr "选择内容视图"
5592
+
5593
+ msgid "Select environment"
5594
+ msgstr ""
5595
+
5596
+ msgid "Select host collection(s) to associate with host {hostName}."
5597
+ msgstr ""
5598
+
5599
+ msgid "Select host collection(s) to remove from host {hostName}."
5121
5600
  msgstr ""
5122
5601
 
5123
5602
  msgid "Select hosts to assign to %s"
5124
5603
  msgstr "选择要分配给 %s 的主机"
5125
5604
 
5126
5605
  msgid "Select lifecycle environment"
5127
- msgstr ""
5606
+ msgstr "选择生命周期环境"
5128
5607
 
5129
5608
  msgid "Select none"
5130
- msgstr ""
5609
+ msgstr "全部不选择"
5131
5610
 
5132
5611
  msgid "Select one"
5612
+ msgstr "选择一个"
5613
+
5614
+ msgid "Select packages to install to the host {hostName}."
5133
5615
  msgstr ""
5134
5616
 
5135
5617
  msgid "Select page"
5136
- msgstr ""
5618
+ msgstr "选择页"
5137
5619
 
5138
5620
  msgid "Select row"
5139
5621
  msgstr "选择行"
@@ -5142,16 +5624,13 @@ msgid "Select the installation media that will be used to provision this host. C
5142
5624
  msgstr "选择用于置备这个主机的安装媒体。为同步的 Kickstart 仓库选择 'Synced Content',为其他媒体选择 'All Media'。"
5143
5625
 
5144
5626
  msgid "Selected environment "
5145
- msgstr ""
5627
+ msgstr "选择的环境 "
5146
5628
 
5147
5629
  msgid "Selected environments "
5148
- msgstr ""
5630
+ msgstr "选择的环境 "
5149
5631
 
5150
5632
  msgid "Sending a list of included IDs is not allowed when all items are being selected."
5151
- msgstr ""
5152
-
5153
- msgid "Service Level"
5154
- msgstr "服务等级"
5633
+ msgstr "当选择所有项目时,不允许发送包含 ID 的列表。"
5155
5634
 
5156
5635
  msgid "Service Level %s"
5157
5636
  msgstr "服务等级 %s"
@@ -5159,6 +5638,9 @@ msgstr "服务等级 %s"
5159
5638
  msgid "Service Level (SLA)"
5160
5639
  msgstr "服务等级 (SLA)"
5161
5640
 
5641
+ msgid "Service level"
5642
+ msgstr ""
5643
+
5162
5644
  msgid "Service level of host"
5163
5645
  msgstr "主机服务等级"
5164
5646
 
@@ -5171,6 +5653,9 @@ msgstr "设置主机的内容覆盖"
5171
5653
  msgid "Set content overrides to one or more hosts"
5172
5654
  msgstr "为一个或更多主机设置内容覆盖"
5173
5655
 
5656
+ msgid "Set true to override to enabled; Set false to override to disabled.'"
5657
+ msgstr ""
5658
+
5174
5659
  msgid "Set true to remove an override and reset it to 'default'"
5175
5660
  msgstr "设置为 true 以删除覆盖并将它重置为 'default'"
5176
5661
 
@@ -5190,10 +5675,10 @@ msgid "Severity"
5190
5675
  msgstr "嚴重"
5191
5676
 
5192
5677
  msgid "Severity must be one of: %s"
5193
- msgstr ""
5678
+ msgstr "严重级别必须是 %s 中的一个。"
5194
5679
 
5195
5680
  msgid "Show %s"
5196
- msgstr ""
5681
+ msgstr "显示 %s"
5197
5682
 
5198
5683
  msgid "Show :a_resource"
5199
5684
  msgstr "显示:a_resource"
@@ -5225,12 +5710,21 @@ msgstr "显示订阅"
5225
5710
  msgid "Show a sync plan"
5226
5711
  msgstr "顯示同步計畫"
5227
5712
 
5228
- msgid "Show all"
5713
+ msgid "Show affected activation keys"
5714
+ msgstr ""
5715
+
5716
+ msgid "Show affected hosts"
5229
5717
  msgstr ""
5230
5718
 
5719
+ msgid "Show all"
5720
+ msgstr "显示所有"
5721
+
5231
5722
  msgid "Show an activation key"
5232
5723
  msgstr "顯示啟動金鑰"
5233
5724
 
5725
+ msgid "Show an alternate content source"
5726
+ msgstr ""
5727
+
5234
5728
  msgid "Show an environment"
5235
5729
  msgstr "顯示環境"
5236
5730
 
@@ -5244,7 +5738,7 @@ msgid "Show filter rule info"
5244
5738
  msgstr "显示过滤器规则信息"
5245
5739
 
5246
5740
  msgid "Show full description"
5247
- msgstr ""
5741
+ msgstr "显示完整描述"
5248
5742
 
5249
5743
  msgid "Show organization"
5250
5744
  msgstr "顯示組織"
@@ -5277,7 +5771,7 @@ msgid "Simple Content Access has been enabled for '%{subject}'."
5277
5771
  msgstr "已为 '%{subject}' 启用了简单内容访问。"
5278
5772
 
5279
5773
  msgid "Single content view consisting of e.g. repositories"
5280
- msgstr ""
5774
+ msgstr "包含例如仓库的单一内容视图"
5281
5775
 
5282
5776
  msgid "Size of file to upload"
5283
5777
  msgstr "要上传的文件大小"
@@ -5298,7 +5792,7 @@ msgid "Sockets: %s"
5298
5792
  msgstr "插槽:%s"
5299
5793
 
5300
5794
  msgid "Solution"
5301
- msgstr ""
5795
+ msgstr "解决方案"
5302
5796
 
5303
5797
  msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
5304
5798
  msgstr "在内容视图发布中默认解决 RPM 的依赖关系,默认为 false"
@@ -5306,6 +5800,9 @@ msgstr "在内容视图发布中默认解决 RPM 的依赖关系,默认为 fal
5306
5800
  msgid "Solve dependencies"
5307
5801
  msgstr "解决依赖关系"
5308
5802
 
5803
+ msgid "Some hosts are ignored!"
5804
+ msgstr ""
5805
+
5309
5806
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
5310
5807
  msgstr "您的某些输入包含错误。请更新它们,然后再次保存更改。"
5311
5808
 
@@ -5313,76 +5810,88 @@ msgid "Some services are not properly started. See the About page for more infor
5313
5810
  msgstr "有些服务没有正确启动。如需更多信息,请参阅 About 页面。"
5314
5811
 
5315
5812
  msgid "Something went wrong while adding a bookmark: ${getBookmarkErrorMsgs(error.response)}"
5316
- msgstr ""
5813
+ msgstr "添加书签时出现问题:${getBookmarkErrorMsgs(error.response)}"
5317
5814
 
5318
5815
  msgid "Something went wrong while adding a filter rule! ${getResponseErrorMsgs(error.response)}"
5319
- msgstr ""
5816
+ msgstr "添加过滤规则时出现问题!${getResponseErrorMsgs(error.response)}"
5320
5817
 
5321
5818
  msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
5322
5819
  msgstr "添加组件时出现问题!${getResponseErrorMsgs(error.response)}"
5323
5820
 
5324
5821
  msgid "Something went wrong while adding filter rules! ${getResponseErrorMsgs(error.response)}"
5325
- msgstr ""
5822
+ msgstr "添加过滤规则时出现问题!${getResponseErrorMsgs(error.response)}"
5326
5823
 
5327
5824
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5328
5825
  msgstr "创建过滤器时出现问题!${getResponseErrorMsgs(error.response)}"
5329
5826
 
5330
5827
  msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5331
- msgstr ""
5828
+ msgstr "删除过滤规则时出错!${getResponseErrorMsgs(error.response)}"
5332
5829
 
5333
5830
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5334
5831
  msgstr "删除过滤器时出错!${getResponseErrorMsgs(error.response)}"
5335
5832
 
5833
+ msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
5834
+ msgstr ""
5835
+
5336
5836
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
5337
5837
  msgstr "删除此过滤器时出错!${getResponseErrorMsgs(error.response)}"
5338
5838
 
5339
- msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
5839
+ msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
5340
5840
  msgstr ""
5341
5841
 
5842
+ msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
5843
+ msgstr "编辑一个过滤规则时出错!${getResponseErrorMsgs(error.response)}"
5844
+
5342
5845
  msgid "Something went wrong while editing the filter! ${getResponseErrorMsgs(error.response)}"
5343
- msgstr ""
5846
+ msgstr "编辑过滤器时出错! ${getResponseErrorMsgs(error.response)}"
5344
5847
 
5345
5848
  msgid "Something went wrong while editing version details. ${getResponseErrorMsgs(error.response)}"
5346
- msgstr ""
5849
+ msgstr "编辑版本详情时出现错误。${getResponseErrorMsgs(error.response)}"
5347
5850
 
5348
5851
  msgid "Something went wrong while fetching ${lowerCase(pluralLabel)}! ${getResponseErrorMsgs(error.response)}"
5349
- msgstr ""
5852
+ msgstr "获取 ${lowerCase(pluralLabel)} 时出错!${getResponseErrorMsgs(error.response)}"
5350
5853
 
5351
5854
  msgid "Something went wrong while fetching files! ${getResponseErrorMsgs(error.response)}"
5352
- msgstr ""
5855
+ msgstr "获取文件时出错!${getResponseErrorMsgs(error.response)}"
5353
5856
 
5354
5857
  msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
5355
- msgstr ""
5858
+ msgstr "获取 rpm 软件包时发生错误!${getResponseErrorMsgs(error.response)}"
5356
5859
 
5357
- msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5860
+ msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
5358
5861
  msgstr ""
5359
5862
 
5360
- msgid "Something went wrong while getting docker tags! ${getResponseErrorMsgs(error.response)}"
5361
- msgstr ""
5863
+ msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5864
+ msgstr "获取 deb 软件包时出错! ${getResponseErrorMsgs(error.response)}"
5362
5865
 
5363
5866
  msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
5364
- msgstr ""
5867
+ msgstr "获取勘误时出错! ${getResponseErrorMsgs(error.response)}"
5365
5868
 
5366
5869
  msgid "Something went wrong while getting module streams! ${getResponseErrorMsgs(error.response)}"
5367
- msgstr ""
5870
+ msgstr "获取模块流时出错! ${getResponseErrorMsgs(error.response)}"
5368
5871
 
5369
5872
  msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
5873
+ msgstr "获取仓库时出错! ${getResponseErrorMsgs(error.response)}"
5874
+
5875
+ msgid "Something went wrong while getting the data. See the logs for more information"
5370
5876
  msgstr ""
5371
5877
 
5372
5878
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5879
+ msgstr "获取版本详情时出现错误。${getResponseErrorMsgs(error.response)}"
5880
+
5881
+ msgid "Something went wrong while loading the content views. See the logs for more information"
5373
5882
  msgstr ""
5374
5883
 
5375
5884
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5376
- msgstr ""
5885
+ msgstr "删除过滤规则时出现问题!${getResponseErrorMsgs(error.response)}"
5377
5886
 
5378
5887
  msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
5379
5888
  msgstr "删除组件时出现问题!${getResponseErrorMsgs(error.response)}"
5380
5889
 
5381
5890
  msgid "Something went wrong while retrieving package groups! ${getResponseErrorMsgs(error.response)}"
5382
- msgstr ""
5891
+ msgstr "获取软件包组时出错!${getResponseErrorMsgs(error.response)}"
5383
5892
 
5384
5893
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5385
- msgstr ""
5894
+ msgstr "获取激活码时出错! ${getResponseErrorMsgs(error.response)}"
5386
5895
 
5387
5896
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
5388
5897
  msgstr "获取内容视图组件时出错! ${getResponseErrorMsgs(error.response)}"
@@ -5403,14 +5912,17 @@ msgid "Something went wrong while retrieving the content view versions! ${getRes
5403
5912
  msgstr "获取内容视图版本时出错! ${getResponseErrorMsgs(error.response)}"
5404
5913
 
5405
5914
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5406
- msgstr ""
5915
+ msgstr "获取主机时出错!${getResponseErrorMsgs(error.response)}"
5407
5916
 
5408
5917
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5409
5918
  msgstr "获取仓库类型时出错!${getResponseErrorMsgs(error.response)}"
5410
5919
 
5411
- msgid "Something went wrong! Please check server logs!"
5920
+ msgid "Something went wrong while updating the content source. See the logs for more information"
5412
5921
  msgstr ""
5413
5922
 
5923
+ msgid "Something went wrong! Please check server logs!"
5924
+ msgstr "出现错误!请检查服务器日志!"
5925
+
5414
5926
  msgid "Sort field and order, eg. 'id DESC'"
5415
5927
  msgstr "进行排序的项和顺序,例如 ‘id DESC’"
5416
5928
 
@@ -5418,7 +5930,7 @@ msgid "Source RPM"
5418
5930
  msgstr "源 RPM"
5419
5931
 
5420
5932
  msgid "Source RPMs"
5421
- msgstr ""
5933
+ msgstr "來源 RPM"
5422
5934
 
5423
5935
  msgid "Specify an export chunk size less than 1_000_000 GB"
5424
5936
  msgstr "指定小于 1_000_000 GB 的导出块"
@@ -5441,14 +5953,20 @@ msgstr "起始日期和时间不能为空"
5441
5953
  msgid "Start Time"
5442
5954
  msgstr "起始時間"
5443
5955
 
5956
+ msgid "Start date"
5957
+ msgstr ""
5958
+
5444
5959
  msgid "Starts"
5445
5960
  msgstr "开始"
5446
5961
 
5962
+ msgid "State"
5963
+ msgstr ""
5964
+
5447
5965
  msgid "Status"
5448
5966
  msgstr "状态"
5449
5967
 
5450
5968
  msgid "Status must be one of: %s"
5451
- msgstr ""
5969
+ msgstr "状态必须是 %s 中的一个。"
5452
5970
 
5453
5971
  msgid "Storage"
5454
5972
  msgstr "存储"
@@ -5456,6 +5974,12 @@ msgstr "存储"
5456
5974
  msgid "Stream"
5457
5975
  msgstr "流"
5458
5976
 
5977
+ msgid "Streamed"
5978
+ msgstr ""
5979
+
5980
+ msgid "Streams based on the host based on the installation status"
5981
+ msgstr ""
5982
+
5459
5983
  msgid "Streams based on the host based on their status"
5460
5984
  msgstr "基于基于它们的状态的主机的流"
5461
5985
 
@@ -5498,9 +6022,15 @@ msgstr "订阅池 UUID"
5498
6022
  msgid "Subscription Status"
5499
6023
  msgstr "订阅状态"
5500
6024
 
6025
+ msgid "Subscription UUID"
6026
+ msgstr ""
6027
+
5501
6028
  msgid "Subscription Watch"
5502
6029
  msgstr "订阅查看"
5503
6030
 
6031
+ msgid "Subscription connection enabled"
6032
+ msgstr ""
6033
+
5504
6034
  msgid "Subscription expiration notification"
5505
6035
  msgstr "订阅到期通知"
5506
6036
 
@@ -5517,7 +6047,7 @@ msgid "Subscription manager name registration fact strict matching"
5517
6047
  msgstr "订阅管理员名称注册事实严格匹配"
5518
6048
 
5519
6049
  msgid "Subscription manifest file"
5520
- msgstr "訂閱清單檔案"
6050
+ msgstr "订阅清单文件"
5521
6051
 
5522
6052
  msgid "Subscription not found"
5523
6053
  msgstr "没有找到订阅"
@@ -5579,8 +6109,8 @@ msgstr "支持的内容类型"
5579
6109
  msgid "Sync Canceled"
5580
6110
  msgstr "已取消同步"
5581
6111
 
5582
- msgid "Sync Connection Timeout"
5583
- msgstr "同步连接超时"
6112
+ msgid "Sync Connect Timeout"
6113
+ msgstr ""
5584
6114
 
5585
6115
  msgid "Sync Content View on Smart Proxy(ies)"
5586
6116
  msgstr "在智能代理上同步内容视图"
@@ -5603,8 +6133,14 @@ msgstr "同步计划"
5603
6133
  msgid "Sync Repository on Smart Proxy(ies)"
5604
6134
  msgstr "在智能代理上同步仓库"
5605
6135
 
5606
- msgid "Sync Smart Proxies after Content View promotion"
5607
- msgstr "升级内容视图后同步智能代理"
6136
+ msgid "Sync Smart Proxies after content view promotion"
6137
+ msgstr ""
6138
+
6139
+ msgid "Sync Sock Connect Timeout"
6140
+ msgstr ""
6141
+
6142
+ msgid "Sync Sock Read Timeout"
6143
+ msgstr ""
5608
6144
 
5609
6145
  msgid "Sync Status"
5610
6146
  msgstr "同步状态"
@@ -5615,6 +6151,9 @@ msgstr "同步摘要"
5615
6151
  msgid "Sync Summary for %s"
5616
6152
  msgstr "为 %s 同步摘要"
5617
6153
 
6154
+ msgid "Sync Total Timeout"
6155
+ msgstr ""
6156
+
5618
6157
  msgid "Sync a repository"
5619
6158
  msgstr "同步軟體庫"
5620
6159
 
@@ -5640,7 +6179,7 @@ msgid "Sync state"
5640
6179
  msgstr "同步状态"
5641
6180
 
5642
6181
  msgid "Synced "
5643
- msgstr ""
6182
+ msgstr "同步的 "
5644
6183
 
5645
6184
  msgid "Synced Content"
5646
6185
  msgstr "同步的内容"
@@ -5676,7 +6215,7 @@ msgid "Syncing Complete."
5676
6215
  msgstr "同步完成。"
5677
6216
 
5678
6217
  msgid "Synopsis"
5679
- msgstr ""
6218
+ msgstr "synopsis"
5680
6219
 
5681
6220
  msgid "System Purpose"
5682
6221
  msgstr "系统目的"
@@ -5684,9 +6223,12 @@ msgstr "系统目的"
5684
6223
  msgid "System Status"
5685
6224
  msgstr "系统状态"
5686
6225
 
5687
- msgid "Tag name"
6226
+ msgid "System purpose"
5688
6227
  msgstr ""
5689
6228
 
6229
+ msgid "Tag name"
6230
+ msgstr "标签名称"
6231
+
5690
6232
  msgid "Tags"
5691
6233
  msgstr "标签"
5692
6234
 
@@ -5694,7 +6236,7 @@ msgid "Task"
5694
6236
  msgstr "任务"
5695
6237
 
5696
6238
  msgid "Task ${task.humanized.action} completed with a result of ${task.result}. ${task.errors ? getErrors(task) : ''}"
5697
- msgstr ""
6239
+ msgstr "任务 ${task.humanized.action} 完成,结果为 ${task.result}. ${task.errors ? getErrors(task) : ''}"
5698
6240
 
5699
6241
  msgid "Task ${task.humanized.action} has started."
5700
6242
  msgstr "任务 ${task.humanized.action} 已开始。"
@@ -5711,6 +6253,9 @@ msgstr "临时"
5711
6253
  msgid "The '%s' environment cannot contain a changeset!"
5712
6254
  msgstr "'%s' 环境不能包括 changeset!"
5713
6255
 
6256
+ msgid "The Alternate Content Source type"
6257
+ msgstr ""
6258
+
5714
6259
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
5715
6260
  msgstr "提供导入清单的订阅分配已被删除。请创建新的订阅分配并导入新清单。"
5716
6261
 
@@ -5723,6 +6268,9 @@ msgstr "在此组合视图上要求的操作不能执行,除非所有组件的
5723
6268
  msgid "The actual file contents"
5724
6269
  msgstr "實際的檔案內容"
5725
6270
 
6271
+ msgid "The content type for the Alternate Content Source"
6272
+ msgstr ""
6273
+
5726
6274
  msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
5727
6275
  msgstr "无法删除当前组织。请先切换到其他组织,然后再删除。"
5728
6276
 
@@ -5732,8 +6280,8 @@ msgstr "默认内容视图无法编辑,发布或删除。"
5732
6280
  msgid "The default content view cannot be promoted"
5733
6281
  msgstr "无法克隆到默认内容视图"
5734
6282
 
5735
- msgid "The default dependency solving value for new Content Views."
5736
- msgstr "新的内容视图的默认依赖关系解决值。"
6283
+ msgid "The default dependency solving value for new content views."
6284
+ msgstr ""
5737
6285
 
5738
6286
  msgid "The description for the content view version"
5739
6287
  msgstr "內容视图版本的描述"
@@ -5762,6 +6310,9 @@ msgstr "导出的内容视图版本 '%{content_view} %{current}' 无法从版本
5762
6310
  msgid "The field to sort the data by. Defaults to the created date."
5763
6311
  msgstr "数据排序依据的字段。默认为创建日期。"
5764
6312
 
6313
+ msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6314
+ msgstr ""
6315
+
5765
6316
  msgid "The following hosts have errata that apply to them: "
5766
6317
  msgstr "以下主机有应用到它们的勘误:"
5767
6318
 
@@ -5770,15 +6321,39 @@ msgid ""
5770
6321
  " %{repos}"
5771
6322
  msgstr "导入元数据中提供的以下存储库的内容类型或供应商类型不正确。在导入%{repos} 之前,请确保导出和导入存储库的类型相同。"
5772
6323
 
6324
+ msgid "The id of the content source"
6325
+ msgstr ""
6326
+
6327
+ msgid "The id of the content view"
6328
+ msgstr ""
6329
+
5773
6330
  msgid "The id of the host to alter"
5774
6331
  msgstr "要修改的主機之 ID"
5775
6332
 
6333
+ msgid "The id of the lifecycle environment"
6334
+ msgstr ""
6335
+
6336
+ msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
6337
+ msgstr ""
6338
+
5776
6339
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
5777
6340
  msgstr "将特定内容视图版本升级到的环境列表(以替换较旧的版本)。"
5778
6341
 
5779
6342
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
5780
6343
  msgstr "在机构 %{subject} 中导入的清单不再有效。请导入一个新的清单。"
5781
6344
 
6345
+ msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
6346
+ msgstr ""
6347
+
6348
+ msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
6349
+ msgstr ""
6350
+
6351
+ msgid "The maximum number of seconds for Pulp to establish a new connection or for waiting for a free connection from a pool if pool connection limits are exceeded."
6352
+ msgstr ""
6353
+
6354
+ msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
6355
+ msgstr ""
6356
+
5782
6357
  msgid "The maximum number of versions of each package to keep."
5783
6358
  msgstr "要保留的每个软件包的最大版本数。"
5784
6359
 
@@ -5830,10 +6405,10 @@ msgid "The requested traces were not found for this host"
5830
6405
  msgstr "找不到此主机的请求跟踪"
5831
6406
 
5832
6407
  msgid "The selected kickstart repository is not part of the assigned content view, lifecycle environment, content source, operating system, and architecture"
5833
- msgstr ""
6408
+ msgstr "所选的 kickstart 仓库不是所分配的内容视图,内容源、操纵系统和架构的一部分"
5834
6409
 
5835
6410
  msgid "The selected/Inherited Content View is not available for this Lifecycle Environment"
5836
- msgstr ""
6411
+ msgstr "此生命周期环境不支持所选/继承的内容视图"
5837
6412
 
5838
6413
  msgid "The specified organization is in Simple Content Access mode. Attaching subscriptions is disabled"
5839
6414
  msgstr "指定的机构处于“简单内容访问”模式。附加订阅已禁用"
@@ -5865,9 +6440,18 @@ msgstr "没有可显示的订阅"
5865
6440
  msgid "There are no errata that need to be applied to registered content hosts."
5866
6441
  msgstr "无需将勘误表应用于已注册的内容主机。"
5867
6442
 
6443
+ msgid "There are no host collections available to add."
6444
+ msgstr ""
6445
+
5868
6446
  msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
5869
6447
  msgstr "没有启用产品或仓库。尝试通过 %{custom} 或 %{redhat} 启用。"
5870
6448
 
6449
+ msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
6450
+ msgstr ""
6451
+
6452
+ msgid "There are {numberOfHosts} hosts that need to be reassigned."
6453
+ msgstr ""
6454
+
5871
6455
  msgid "There either were no environments nor versions specified or there were invalid environments/versions specified. Please check environment_ids and content_view_version_ids parameters."
5872
6456
  msgstr "未指定環境或是版本,或是指定了無效的環境/版本。請檢查 environment_ids 和 content_view_version_ids 參數。"
5873
6457
 
@@ -5880,11 +6464,17 @@ msgstr "没有这样的 HTTP 代理"
5880
6464
  msgid "There is nothing to see here"
5881
6465
  msgstr "这里没什么可看的"
5882
6466
 
6467
+ msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
6468
+ msgstr ""
6469
+
6470
+ msgid "There is {numberOfHosts} host that needs to be reassigned."
6471
+ msgstr ""
6472
+
5883
6473
  msgid "There was a problem retrieving Activation Key data from the server."
5884
6474
  msgstr "从服务器检索激活码数据时出现问题。"
5885
6475
 
5886
6476
  msgid "There was an error retrieving data from the server. Check your connection and try again."
5887
- msgstr ""
6477
+ msgstr "从服务器检索数据时出错。请检查您的连接并重试。"
5888
6478
 
5889
6479
  msgid "There was an issue with the backend service %s: "
5890
6480
  msgstr "后端服务出现问题%s: "
@@ -5905,7 +6495,7 @@ msgid "This action doesn't support package groups"
5905
6495
  msgstr "這項動作不支援套件群組"
5906
6496
 
5907
6497
  msgid "This action should only be taken in extreme circumstances or for debugging purposes."
5908
- msgstr ""
6498
+ msgstr "只有在极端情况下或进行调试时才应采取此操作。"
5909
6499
 
5910
6500
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
5911
6501
  msgstr "此操作使用 katello-agent,当前已禁用。改为使用远程执行。"
@@ -5914,27 +6504,27 @@ msgid "This certificate allows a user to view the repositories in any environmen
5914
6504
  msgstr "此憑證能讓使用者透過瀏覽器檢視任何環境中的軟體庫。"
5915
6505
 
5916
6506
  msgid "This content view does not have any versions associated."
5917
- msgstr ""
6507
+ msgstr "此内容视图没有任何关联的版本。"
5918
6508
 
5919
6509
  msgid "This content view version doesn't have a history."
5920
6510
  msgstr "此内容视图版本没有历史记录。"
5921
6511
 
5922
6512
  msgid "This content view will be automatically updated to the latest version."
5923
- msgstr ""
6513
+ msgstr "此内容视图将自动更新至最新版本。"
5924
6514
 
5925
6515
  msgid "This content view will be deleted. Changes will be effective after clicking Delete."
5926
- msgstr ""
6516
+ msgstr "此内容视图将被删除。改变将在点 Delete 后生效。"
5927
6517
 
5928
6518
  msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
5929
- msgstr ""
6519
+ msgstr "此勘误不可安装,因为它不在此主机的内容视图和生命周期环境中。"
5930
6520
 
5931
- msgid "This host currently does not have traces."
5932
- msgstr ""
5933
-
5934
- msgid "This host does not have any installable errata."
6521
+ msgid "This host does not have any Module streams."
5935
6522
  msgstr ""
5936
6523
 
5937
6524
  msgid "This host does not have any packages."
6525
+ msgstr "该主机没有任何软件包。"
6526
+
6527
+ msgid "This host has errata that are applicable, but not installable."
5938
6528
  msgstr ""
5939
6529
 
5940
6530
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -5965,13 +6555,16 @@ msgid "This is not a linked repository"
5965
6555
  msgstr "没有连接的仓库"
5966
6556
 
5967
6557
  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}."
6558
+ msgstr "该机构已启用“简单内容访问”。不需要主机将订阅附加到访问仓库。{br} 了解总体订阅使用的详情{subscriptionWatch}。"
6559
+
6560
+ msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
5968
6561
  msgstr ""
5969
6562
 
5970
6563
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
5971
6564
  msgstr "不建议使用此仓库。使用前,请参阅 %(anchorBegin)s文档%(anchorEnd)s"
5972
6565
 
5973
6566
  msgid "This request may only be performed on a Smart proxy that has the Pulpcore feature with mirror=true."
5974
- msgstr ""
6567
+ msgstr "该请求只能在具有带有 mirror=true 的 Pulp 功能的智能代理上执行。"
5975
6568
 
5976
6569
  msgid "This service is available for unauthenticated users"
5977
6570
  msgstr "此服务适用于未经身份验证的用户"
@@ -5986,25 +6579,25 @@ msgid "This subscription is not relevant to the current organization."
5986
6579
  msgstr "此订阅与当前机构无关。"
5987
6580
 
5988
6581
  msgid "This version has not been promoted to any environments."
5989
- msgstr ""
6582
+ msgstr "此版本尚未提升到任何环境中。"
5990
6583
 
5991
6584
  msgid "This version is not promoted to any environments."
5992
- msgstr ""
6585
+ msgstr "这个版本没有推广到任何环境中。"
5993
6586
 
5994
6587
  msgid "This version will be removed from:"
5995
- msgstr ""
6588
+ msgstr "该版本将从以下位置删除:"
5996
6589
 
5997
6590
  msgid "This will create a copy of {cv}, including details, repositories, and filters. Generated data such as history, tasks and versions will not be copied."
5998
- msgstr ""
6591
+ msgstr "这将创建一个 {cv} 的副本,包括详情、仓库和过滤器。生成的数据,如历史记录、任务和版本不会被复制。"
5999
6592
 
6000
6593
  msgid "Time in minutes to consider orphan content as orphaned."
6001
- msgstr ""
6594
+ msgstr "将孤立的内容视为孤立经过的时间(以分钟为单位)。"
6002
6595
 
6003
- msgid "Time in seconds to wait for a Host to finish a remote action"
6004
- msgstr "等待主机完成远程操作的时间(以秒为单位)"
6596
+ msgid "Time in seconds to wait for a host to finish a katello-agent action"
6597
+ msgstr ""
6005
6598
 
6006
- msgid "Time in seconds to wait for a Host to pickup a remote action"
6007
- msgstr "等待主机选择一个远程操作的时间(以秒为单位)"
6599
+ msgid "Time in seconds to wait for a host to pick up a katello-agent action"
6600
+ msgstr ""
6008
6601
 
6009
6602
  msgid "Timeout when refreshing a manifest (in seconds)"
6010
6603
  msgstr "刷新清单时超时(以秒为单位)"
@@ -6021,11 +6614,8 @@ msgstr "切换简单内容访问将刷新您的清单。"
6021
6614
  msgid "Total steps: "
6022
6615
  msgstr "总步骤: "
6023
6616
 
6024
- msgid "Total timeout in seconds for connections when syncing"
6025
- msgstr "同步时连接的总超时时间(以秒为单位)"
6026
-
6027
6617
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6028
- msgstr ""
6618
+ msgstr "跟踪器可帮助管理员识别修补系统后需要重新启动的应用程序。"
6029
6619
 
6030
6620
  msgid "Tracer profile uploaded successfully"
6031
6621
  msgstr "Tracer 配置集上传成功"
@@ -6034,13 +6624,16 @@ msgid "Traces"
6034
6624
  msgstr "Traces"
6035
6625
 
6036
6626
  msgid "Traces are not enabled"
6037
- msgstr ""
6627
+ msgstr "未启用跟踪(trace)"
6038
6628
 
6039
6629
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6630
+ msgstr "跟踪可帮助管理员识别修补系统后需要重新启动的应用程序。"
6631
+
6632
+ msgid "Traces may be listed here after {pkgLink}."
6040
6633
  msgstr ""
6041
6634
 
6042
6635
  msgid "Traces that require logout cannot be restarted remotely"
6043
- msgstr ""
6636
+ msgstr "需要登出的跟踪无法远程重启"
6044
6637
 
6045
6638
  msgid "Trigger an auto-attach of subscriptions"
6046
6639
  msgstr "触发订阅的自动附加"
@@ -6049,10 +6642,10 @@ msgid "Trigger an auto-attach of subscriptions on one or more hosts"
6049
6642
  msgstr "在一个或多个主机上触发一个自动附加订阅"
6050
6643
 
6051
6644
  msgid "Try changing your search criteria."
6052
- msgstr ""
6645
+ msgstr "尝试更改搜索设置。"
6053
6646
 
6054
6647
  msgid "Try changing your search query."
6055
- msgstr ""
6648
+ msgstr "尝试更改您的搜索。"
6056
6649
 
6057
6650
  msgid "Try changing your search settings."
6058
6651
  msgstr "尝试更改搜索设置。"
@@ -6064,7 +6657,7 @@ msgid "Type"
6064
6657
  msgstr "类型"
6065
6658
 
6066
6659
  msgid "Type must be one of: %s"
6067
- msgstr ""
6660
+ msgstr "类型必须是 %s 中的一个。"
6068
6661
 
6069
6662
  msgid "Type of content"
6070
6663
  msgstr "内容类型"
@@ -6073,16 +6666,16 @@ msgid "Type of content: \"cert\", \"gpg_key\""
6073
6666
  msgstr "内容类型:\"cert\",\"gpg_key\""
6074
6667
 
6075
6668
  msgid "URL"
6076
- msgstr ""
6669
+ msgstr "URL"
6077
6670
 
6078
6671
  msgid "URL needs to have a trailing /"
6079
6672
  msgstr "URL 需要一个末尾的 /"
6080
6673
 
6081
6674
  msgid "URL of a PyPI content source such as https://pypi.org."
6082
- msgstr ""
6675
+ msgstr "PyPI 内容源的 URL,如 https://pypi.org。"
6083
6676
 
6084
6677
  msgid "URL of an OSTree repository."
6085
- msgstr ""
6678
+ msgstr "OSTree 存储库的 URL。"
6086
6679
 
6087
6680
  msgid "UUID"
6088
6681
  msgstr "UUID"
@@ -6103,7 +6696,7 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
6103
6696
  msgstr "来自主机的 hypervisor 的虚拟客户机的 UUID"
6104
6697
 
6105
6698
  msgid "Unable to connect"
6106
- msgstr ""
6699
+ msgstr "无法连接"
6107
6700
 
6108
6701
  msgid "Unable to connect. Got: %s"
6109
6702
  msgstr "无法连接。得到了: %s"
@@ -6120,9 +6713,15 @@ msgstr "在机构 '%s' 中找不到产品 '%s'"
6120
6713
  msgid "Unable to get users"
6121
6714
  msgstr "无法获取用户"
6122
6715
 
6716
+ msgid "Unable to import in to Content View specified in the metadata - '%{name}'. The 'import_only' attribute for the content view is set to false. To mark this Content View as importable, have your system administrator run the following command on the server. "
6717
+ msgstr ""
6718
+
6123
6719
  msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
6124
6720
  msgstr "无法增量导出。从最新增量进行更新之前,请对库内容进行完全导出。"
6125
6721
 
6722
+ msgid "Unable to incrementally export. Do a Full Export on the repository content."
6723
+ msgstr ""
6724
+
6126
6725
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
6127
6726
  msgstr "无法重新分配 activation_keys。请检查 activation_key_content_view_id 和 activation_key_environment_id。"
6128
6727
 
@@ -6165,11 +6764,14 @@ msgstr "没有权利"
6165
6764
  msgid "Unfiltered params array: %s."
6166
6765
  msgstr "为过滤的参数数组:%s"
6167
6766
 
6767
+ msgid "Uninstall and reset"
6768
+ msgstr ""
6769
+
6168
6770
  msgid "Uninstall packages remotely using katello-agent. %s"
6169
6771
  msgstr "使用 katello-agent 远程卸载软件包。 %s"
6170
6772
 
6171
6773
  msgid "Unknown"
6172
- msgstr "未知"
6774
+ msgstr "未知的"
6173
6775
 
6174
6776
  msgid "Unknown Action"
6175
6777
  msgstr "未知操作"
@@ -6205,7 +6807,7 @@ msgid "Unsubscribed hypervisor"
6205
6807
  msgstr "取消订阅的虚拟机监控程序"
6206
6808
 
6207
6809
  msgid "Unsupported CDN resource"
6208
- msgstr ""
6810
+ msgstr "不支持的 CDN 资源"
6209
6811
 
6210
6812
  msgid "Unsupported URL protocol %s."
6211
6813
  msgstr "不支持的 URL 协议 %s。"
@@ -6214,14 +6816,17 @@ msgid "Unsupported event type %{type}. Supported: %{types}"
6214
6816
  msgstr "不支持的事件类型 %{type}。支持:%{types}"
6215
6817
 
6216
6818
  msgid "Up-to date"
6217
- msgstr ""
6819
+ msgstr "最新"
6218
6820
 
6219
6821
  msgid "Update"
6220
6822
  msgstr "更新"
6221
6823
 
6222
- msgid "Update CDN Configuration"
6824
+ msgid "Update Alternate Content Source"
6223
6825
  msgstr ""
6224
6826
 
6827
+ msgid "Update CDN Configuration"
6828
+ msgstr "更新 CDN 配置"
6829
+
6225
6830
  msgid "Update Content Overrides"
6226
6831
  msgstr "更新内容覆盖"
6227
6832
 
@@ -6258,6 +6863,9 @@ msgstr "更新同步計畫"
6258
6863
  msgid "Update an activation key"
6259
6864
  msgstr "更新一个激活码"
6260
6865
 
6866
+ msgid "Update an alternate content source"
6867
+ msgstr ""
6868
+
6261
6869
  msgid "Update an environment"
6262
6870
  msgstr "更新环境"
6263
6871
 
@@ -6309,6 +6917,9 @@ msgstr "通过 Katello 接口更新软件包"
6309
6917
  msgid "Update packages remotely using katello-agent. %s"
6310
6918
  msgstr "使用 katello-agent 远程更新软件包。 %s"
6311
6919
 
6920
+ msgid "Update packages via Katello interface"
6921
+ msgstr ""
6922
+
6312
6923
  msgid "Update redhat repository"
6313
6924
  msgstr "更新 redhat 仓库"
6314
6925
 
@@ -6322,11 +6933,14 @@ msgid "Update services requiring restart"
6322
6933
  msgstr "更新服务需要重启"
6323
6934
 
6324
6935
  msgid "Update the CDN configuration"
6325
- msgstr ""
6936
+ msgstr "更新 CDN 配置"
6326
6937
 
6327
6938
  msgid "Update the HTTP proxy configuration on the repositories of one or more products."
6328
6939
  msgstr "更新一个或多个产品的仓库上的 HTTP 代理配置。"
6329
6940
 
6941
+ msgid "Update the content source for specified hosts and generate the reconfiguration script"
6942
+ msgstr ""
6943
+
6330
6944
  msgid "Update the information about enabled repositories"
6331
6945
  msgstr "更新关于启用的软件仓库的信息"
6332
6946
 
@@ -6342,6 +6956,9 @@ msgstr "已更新"
6342
6956
  msgid "Updated component details"
6343
6957
  msgstr "更新的组件详情"
6344
6958
 
6959
+ msgid "Updated from"
6960
+ msgstr ""
6961
+
6345
6962
  msgid "Updates"
6346
6963
  msgstr "更新"
6347
6964
 
@@ -6367,19 +6984,19 @@ msgid "Updating repository authentication configuration"
6367
6984
  msgstr "更新仓库身份验证配置"
6368
6985
 
6369
6986
  msgid "Upgradable"
6370
- msgstr ""
6987
+ msgstr "可升级"
6371
6988
 
6372
- msgid "Upgradable To"
6989
+ msgid "Upgradable to"
6373
6990
  msgstr ""
6374
6991
 
6375
6992
  msgid "Upgrade"
6376
- msgstr ""
6993
+ msgstr "升级"
6377
6994
 
6378
6995
  msgid "Upgrade via customized remote execution"
6379
- msgstr ""
6996
+ msgstr "通过自定义远程执行升级"
6380
6997
 
6381
6998
  msgid "Upgrade via remote execution"
6382
- msgstr ""
6999
+ msgstr "通过远程执行升级"
6383
7000
 
6384
7001
  msgid "Upload Content Credential contents"
6385
7002
  msgstr "上传内容凭证内容"
@@ -6397,40 +7014,46 @@ msgid "Upload into"
6397
7014
  msgstr "上传到"
6398
7015
 
6399
7016
  msgid "Upload profiles without Dynflow"
6400
- msgstr ""
7017
+ msgstr "上传没有 Dynflow 的配置集"
6401
7018
 
6402
7019
  msgid "Upload request id"
6403
7020
  msgstr "上传请求 ID"
6404
7021
 
7022
+ msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7023
+ msgstr ""
7024
+
7025
+ msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
7026
+ msgstr ""
7027
+
6405
7028
  msgid "Upstream Name cannot be blank when Repository URL is provided."
6406
7029
  msgstr "当提供仓库 URL 时,上游名称不能为空。"
6407
7030
 
7031
+ msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
7032
+ msgstr ""
7033
+
6408
7034
  msgid "Upstream identity certificate not available"
6409
7035
  msgstr "上游身份证明不可用"
6410
7036
 
6411
7037
  msgid "Upstream organization %s does not provide this content path"
6412
- msgstr ""
7038
+ msgstr "上游机构 %s 没有提供这个内容路径"
6413
7039
 
6414
7040
  msgid "Upstream organization %{org_label} does not have a content view with the label %{cv_label}"
6415
- msgstr ""
7041
+ msgstr "上游机构 %{org_label} 没有带有标签 %{cv_label} 的内容视图。"
6416
7042
 
6417
7043
  msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
6418
- msgstr ""
7044
+ msgstr "上游机构 %{org_label} 没有带有标签 %{lce_label} 的生命周期环境。"
6419
7045
 
6420
- msgid "Upstream organization to sync CDN content from"
7046
+ msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
6421
7047
  msgstr ""
6422
7048
 
6423
7049
  msgid "Upstream password requires upstream username be set."
6424
7050
  msgstr "上游密码要求设置上游用户名。"
6425
7051
 
6426
- msgid "Upstream server to sync CDN content from"
6427
- msgstr ""
6428
-
6429
7052
  msgid "Upstream username and password may only be set on custom repositories."
6430
7053
  msgstr "上游用户名和密码可能只能在自定义仓库上设置。"
6431
7054
 
6432
7055
  msgid "Upstream username and upstream password cannot be blank for ULN repositories"
6433
- msgstr ""
7056
+ msgstr "对于 ULN 软件仓库,上游用户名和上游密码不能为空"
6434
7057
 
6435
7058
  msgid "Upstream username requires upstream password be set."
6436
7059
  msgstr "上游用户名需要设置上游密码。"
@@ -6466,9 +7089,9 @@ msgid "User must be logged in."
6466
7089
  msgstr "用户必须登录。"
6467
7090
 
6468
7091
  msgid "Username"
6469
- msgstr ""
7092
+ msgstr "用户名"
6470
7093
 
6471
- msgid "Username for authentication"
7094
+ msgid "Username for authentication. Relevant only for 'upstream_server' type."
6472
7095
  msgstr ""
6473
7096
 
6474
7097
  msgid "Username of the upstream repository user used for authentication"
@@ -6478,9 +7101,9 @@ msgid "Username to access URL"
6478
7101
  msgstr "访问 URL 的用户名"
6479
7102
 
6480
7103
  msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
6481
- msgstr ""
7104
+ msgstr "用户名、密码、组织标签和 SSL CA 内容凭据必须一同提供。"
6482
7105
 
6483
- msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using a non-Red Hat CDN."
7106
+ msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
6484
7107
  msgstr ""
6485
7108
 
6486
7109
  msgid "Valid"
@@ -6508,23 +7131,32 @@ msgid "Version ${item.version}"
6508
7131
  msgstr "版本 ${item.version}"
6509
7132
 
6510
7133
  msgid "Version ${version.version}"
6511
- msgstr ""
7134
+ msgstr "版本 ${version.version}"
6512
7135
 
6513
7136
  msgid "Version ${versionNameToRemove} will be deleted from all environments. It will no longer be available for promotion."
6514
- msgstr ""
7137
+ msgstr "版本 ${versionNameToRemove} 将从所有环境中删除。它将不再可用于提升。"
6515
7138
 
6516
7139
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
6517
- msgstr ""
7140
+ msgstr "版本 ${versionNameToRemove} 将从列出的环境中删除。它将不再可用于提升。"
6518
7141
 
6519
7142
  msgid "Version details updated."
6520
- msgstr ""
7143
+ msgstr "更新的版本详情"
6521
7144
 
6522
7145
  msgid "Version in use"
6523
- msgstr ""
7146
+ msgstr "使用的版本"
6524
7147
 
6525
7148
  msgid "Versions"
6526
7149
  msgstr "版本"
6527
7150
 
7151
+ msgid "Versions "
7152
+ msgstr ""
7153
+
7154
+ msgid "Versions to exclusively include in the action"
7155
+ msgstr ""
7156
+
7157
+ msgid "Versions to explicitly exclude in the action. All other versions will be included in the action, unless an included parameter is passed as well."
7158
+ msgstr ""
7159
+
6528
7160
  msgid "Versions will appear here when the content view is published."
6529
7161
  msgstr "在发布内容视图时历史记录将显示在此处。"
6530
7162
 
@@ -6535,25 +7167,31 @@ msgid "View a report of the affected hosts"
6535
7167
  msgstr "查看受影响主机的报告"
6536
7168
 
6537
7169
  msgid "View matching content"
7170
+ msgstr "显示匹配内容"
7171
+
7172
+ msgid "View tasks "
7173
+ msgstr ""
7174
+
7175
+ msgid "View the Content Views page to manage and promote content views, or select a different environment."
6538
7176
  msgstr ""
6539
7177
 
6540
7178
  msgid "Virtual"
6541
7179
  msgstr "虚拟"
6542
7180
 
6543
- msgid "Visit the previous Packages page"
6544
- msgstr ""
6545
-
6546
7181
  msgid "Waiting to start."
6547
- msgstr ""
7182
+ msgstr "等待开始。"
6548
7183
 
6549
7184
  msgid "Warning"
7185
+ msgstr "警告"
7186
+
7187
+ msgid "What's next?"
6550
7188
  msgstr ""
6551
7189
 
6552
7190
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
6553
- msgstr ""
7191
+ msgstr "当设置 \"Releases/Distributions\" 时,还必须设置 \"Upstream URL\"。"
6554
7192
 
6555
7193
  msgid "When \"Upstream URL\" is set, \"Releases/Distributions\" must also be set!"
6556
- msgstr ""
7194
+ msgstr "当设置 \"Upstream URL\" 时,还必须设置 \"Releases/Distributions\"。"
6557
7195
 
6558
7196
  msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
6559
7197
  msgstr "启用“简单内容访问”后,主机不需要将订阅附加到访问存储库。"
@@ -6570,8 +7208,8 @@ msgstr "当通过 subscription-manager 取消注册主机时,还需要同时
6570
7208
  msgid "Whether or not the host collection may have unlimited hosts"
6571
7209
  msgstr "主機集項目是否有無上限的主機"
6572
7210
 
6573
- msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
6574
- msgstr "在内容视图被升级后是否自动同步智能代理。"
7211
+ msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
7212
+ msgstr ""
6575
7213
 
6576
7214
  msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
6577
7215
  msgstr "在这些操作前,是否检查后端服务(如 pulp 和 candlepin)的状态"
@@ -6600,9 +7238,6 @@ msgstr "Yay 空状态"
6600
7238
  msgid "Yes"
6601
7239
  msgstr "是"
6602
7240
 
6603
- msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
6604
- msgstr "您当前在断开模式下操作,该模式下禁止访问 Red Hat Subcription Management。如果您想更改此设置,请更新内容设置“断开连接模式”。"
6605
-
6606
7241
  msgid "You are not allowed to promote to Environments %s"
6607
7242
  msgstr "您不允许提升到环境 %s"
6608
7243
 
@@ -6622,9 +7257,12 @@ msgid "You cannot set an organization's parent_id. This feature is disabled."
6622
7257
  msgstr "您无法设置机构的 parent_id。此功能被禁用。"
6623
7258
 
6624
7259
  msgid "You currently don't have any ${selectedContentType}."
6625
- msgstr ""
7260
+ msgstr "您目前没有任何 ${selectedContentType}。"
6626
7261
 
6627
7262
  msgid "You currently don't have any Content views."
7263
+ msgstr "您目前没有任何内容视图。"
7264
+
7265
+ msgid "You currently don't have any alternate content sources."
6628
7266
  msgstr ""
6629
7267
 
6630
7268
  msgid "You currently don't have any filters for this content view."
@@ -6634,19 +7272,19 @@ msgid "You currently don't have any history for this content view."
6634
7272
  msgstr "您目前没有这个内容视图的历史记录。"
6635
7273
 
6636
7274
  msgid "You currently don't have any repositories associated with this content."
6637
- msgstr ""
7275
+ msgstr "您目前没有与此内容关联的任何仓库。"
6638
7276
 
6639
7277
  msgid "You currently don't have any repositories to add to this content view."
6640
7278
  msgstr "您目前没有要添加到此内容视图的任何仓库。"
6641
7279
 
6642
7280
  msgid "You currently don't have any repositories to add to this filter."
6643
- msgstr ""
7281
+ msgstr "您目前没有要添加到此过滤的仓库。"
6644
7282
 
6645
7283
  msgid "You currently don't have any versions for this content view."
6646
7284
  msgstr "您目前没有这个内容视图的版本。"
6647
7285
 
6648
7286
  msgid "You currently don\\'t have any related content views."
6649
- msgstr ""
7287
+ msgstr "您目前没有任何相关的内容视图。"
6650
7288
 
6651
7289
  msgid "You do not have permissions to delete %s"
6652
7290
  msgstr "您没有权限删除 %s"
@@ -6660,6 +7298,9 @@ msgstr "您有订阅将在 %s 天内过期"
6660
7298
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
6661
7299
  msgstr "您有尚未保存的更改。您要退出而不保存更改吗?"
6662
7300
 
7301
+ msgid "You may want to check the host's content view and lifecycle environment."
7302
+ msgstr ""
7303
+
6663
7304
  msgid "You were not allowed to add %s"
6664
7305
  msgstr "您不允许添加 %s"
6665
7306
 
@@ -6679,25 +7320,28 @@ msgid "Your search query was invalid. Please revise it and try again. The full e
6679
7320
  msgstr "您的搜索查询无效。请对其进行修改,然后重试。完整的错误已发送到应用程序日志。"
6680
7321
 
6681
7322
  msgid "Your search returned no matching "
7323
+ msgstr "您的搜索没有返回匹配"
7324
+
7325
+ msgid "Your search returned no matching Module streams."
6682
7326
  msgstr ""
6683
7327
 
6684
7328
  msgid "Your search returned no matching RPMs."
6685
- msgstr ""
7329
+ msgstr "您的搜索没有返回匹配的 RPM。"
6686
7330
 
6687
7331
  msgid "Your search returned no matching activation keys."
6688
- msgstr ""
7332
+ msgstr "您的搜索没有返回的匹配激活码。"
6689
7333
 
6690
7334
  msgid "Your search returned no matching hosts."
6691
- msgstr ""
7335
+ msgstr "您的搜索没有返回匹配的主机。"
6692
7336
 
6693
7337
  msgid "Yum Metadata: %s"
6694
7338
  msgstr "Yum 元数据:%s"
6695
7339
 
6696
7340
  msgid "a content unit"
6697
- msgstr ""
7341
+ msgstr "一个内容单元"
6698
7342
 
6699
7343
  msgid "a deb package"
6700
- msgstr ""
7344
+ msgstr "一个 deb 软件包"
6701
7345
 
6702
7346
  msgid "a docker manifest"
6703
7347
  msgstr "一个 docker 清单"
@@ -6742,7 +7386,7 @@ msgid "add all packages without errata to the included/excluded list. (package f
6742
7386
  msgstr "把没有勘误的所有软件包添加到包括/排除列表中。(仅限于过滤器)"
6743
7387
 
6744
7388
  msgid "all environments"
6745
- msgstr ""
7389
+ msgstr "所有环境"
6746
7390
 
6747
7391
  msgid "all packages"
6748
7392
  msgstr "所有软件包"
@@ -6784,10 +7428,10 @@ msgid "base url to perform repo discovery on"
6784
7428
  msgstr "执行仓库发现的基本 url"
6785
7429
 
6786
7430
  msgid "bulk add filter rules"
6787
- msgstr ""
7431
+ msgstr "批量添加过滤规则"
6788
7432
 
6789
7433
  msgid "bulk delete filter rules"
6790
- msgstr ""
7434
+ msgstr "批量删除过滤规则"
6791
7435
 
6792
7436
  msgid "can the activation key have unlimited hosts"
6793
7437
  msgstr "激活码可以有无限个主机"
@@ -6795,6 +7439,9 @@ msgstr "激活码可以有无限个主机"
6795
7439
  msgid "can't be blank"
6796
7440
  msgstr "不能为空"
6797
7441
 
7442
+ msgid "cannot add filter to generated content views"
7443
+ msgstr ""
7444
+
6798
7445
  msgid "cannot add filter to import-only view"
6799
7446
  msgstr "无法将过滤器添加到仅导入视图"
6800
7447
 
@@ -6849,6 +7496,9 @@ msgstr "檢查 Candlepin 任務狀態"
6849
7496
  msgid "checking Pulp task status"
6850
7497
  msgstr "檢查 Pulp 任務狀態"
6851
7498
 
7499
+ msgid "click here"
7500
+ msgstr ""
7501
+
6852
7502
  msgid "composite content view identifier"
6853
7503
  msgstr "组合内容视图标识符"
6854
7504
 
@@ -6865,6 +7515,9 @@ msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
6865
7515
  msgstr "内容类型('deb'、'docker_manifest'、'file'、'ostree'、'rpm'、'srpm')"
6866
7516
 
6867
7517
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7518
+ msgstr "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7519
+
7520
+ msgid "content view Dependency Solving Default"
6868
7521
  msgstr ""
6869
7522
 
6870
7523
  msgid "content view component ID. Identifier of the component association"
@@ -6928,7 +7581,7 @@ msgid "delete a filter"
6928
7581
  msgstr "删除过滤器"
6929
7582
 
6930
7583
  msgid "delete the content view with all the versions and environments"
6931
- msgstr ""
7584
+ msgstr "删除带有所有版本和环境的内容视图"
6932
7585
 
6933
7586
  msgid "description"
6934
7587
  msgstr "描述"
@@ -6942,8 +7595,8 @@ msgstr "篩選器描述"
6942
7595
  msgid "description of the repository"
6943
7596
  msgstr "仓库的描述"
6944
7597
 
6945
- msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
6946
- msgstr "yum 仓库的下载策略('immediate' 或 'on_demand')"
7598
+ msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
7599
+ msgstr ""
6947
7600
 
6948
7601
  msgid "enables or disables synchronization"
6949
7602
  msgstr "启用或禁用同步"
@@ -7017,6 +7670,9 @@ msgstr "过滤器标识符"
7017
7670
  msgid "filter identifiers"
7018
7671
  msgstr "过滤器标识符"
7019
7672
 
7673
+ msgid "filter only environments containing this label"
7674
+ msgstr ""
7675
+
7020
7676
  msgid "filter only environments containing this name"
7021
7677
  msgstr "只篩選包含此名稱的環境"
7022
7678
 
@@ -7080,6 +7736,9 @@ msgstr "正在安装勘误..."
7080
7736
  msgid "installing erratum..."
7081
7737
  msgstr "正在安装勘误..."
7082
7738
 
7739
+ msgid "installing or updating packages"
7740
+ msgstr ""
7741
+
7083
7742
  msgid "installing package group..."
7084
7743
  msgstr "正在安装软件包组..."
7085
7744
 
@@ -7107,9 +7766,18 @@ msgstr "已附加到 capsule"
7107
7766
  msgid "is invalid"
7108
7767
  msgstr "无效"
7109
7768
 
7769
+ msgid "is not a valid type. Must be one of the following: %s"
7770
+ msgstr ""
7771
+
7772
+ msgid "is not allowed for ACS. Must be one of the following: %s"
7773
+ msgstr ""
7774
+
7110
7775
  msgid "is not enabled. must be one of the following: %s"
7111
7776
  msgstr "没有启用。需要是以下之一:%s"
7112
7777
 
7778
+ msgid "is only allowed for Yum repositories."
7779
+ msgstr ""
7780
+
7113
7781
  msgid "label of the environment"
7114
7782
  msgstr "環境的標籤"
7115
7783
 
@@ -7182,6 +7850,9 @@ msgstr "必须包含有效的公共 GPG 密钥"
7182
7850
  msgid "must contain valid Public GPG Key"
7183
7851
  msgstr "必须包含有效的公共 GPG 密钥"
7184
7852
 
7853
+ msgid "must not be a negative value."
7854
+ msgstr ""
7855
+
7185
7856
  msgid "must not contain leading or trailing white spaces."
7186
7857
  msgstr "不得包含前导或尾随空格。"
7187
7858
 
@@ -7278,6 +7949,9 @@ msgstr "软件包:版本"
7278
7949
  msgid "package_ids is not an array"
7279
7950
  msgstr "package_ids 不是一个数组"
7280
7951
 
7952
+ msgid "package_names_for_job_template: Action must be one of %s"
7953
+ msgstr ""
7954
+
7281
7955
  msgid "params 'show_all_for' and 'available_for' must be used independently"
7282
7956
  msgstr "参数“ show_all_for”和“ available_for”必须独立使用"
7283
7957
 
@@ -7354,7 +8028,7 @@ msgid "set true if you want to see only library environments"
7354
8028
  msgstr "如果僅想看函示庫環境,設為真"
7355
8029
 
7356
8030
  msgid "sha256"
7357
- msgstr ""
8031
+ msgstr "sha256"
7358
8032
 
7359
8033
  msgid "show archived repositories"
7360
8034
  msgstr "显示归档的仓库"
@@ -7395,6 +8069,12 @@ msgstr "临时覆盖 feed 网址以进行同步"
7395
8069
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
7396
8070
  msgstr "以下属性不能为红帽供应商更新: [ %s ]"
7397
8071
 
8072
+ msgid "to"
8073
+ msgstr ""
8074
+
8075
+ msgid "to update configuration on all hosts, or"
8076
+ msgstr ""
8077
+
7398
8078
  msgid "true if the latest version of the component's content view is desired"
7399
8079
  msgstr "如果需要组件内容视图的最新版本,则为 true"
7400
8080
 
@@ -7405,10 +8085,10 @@ msgid "true if this repository can be published via HTTP"
7405
8085
  msgstr "如果可以通过 HTTP 发布此存储库,则为 true"
7406
8086
 
7407
8087
  msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
7408
- msgstr ""
8088
+ msgstr "如果此仓库在同步时必须从源镜像并且删除过时的 rpm,则为 true(已弃用)"
7409
8089
 
7410
8090
  msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
7411
- msgstr ""
8091
+ msgstr "过滤器类型 (例如 rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
7412
8092
 
7413
8093
  msgid "type of repo"
7414
8094
  msgstr "仓库类型"
@@ -7419,9 +8099,15 @@ msgstr "过滤器类型"
7419
8099
  msgid "unknown permission for %s"
7420
8100
  msgstr "%s 的未知权限"
7421
8101
 
8102
+ msgid "unlimited"
8103
+ msgstr ""
8104
+
7422
8105
  msgid "update a filter"
7423
8106
  msgstr "更新篩選器"
7424
8107
 
8108
+ msgid "update configuration on the hosts manually:"
8109
+ msgstr ""
8110
+
7425
8111
  msgid "updating package group..."
7426
8112
  msgstr "正在更新软件包组..."
7427
8113
 
@@ -7434,17 +8120,20 @@ msgstr "正在更新软件包..."
7434
8120
  msgid "updating packages..."
7435
8121
  msgstr "正在更新套件..."
7436
8122
 
8123
+ msgid "upstream Foreman server"
8124
+ msgstr ""
8125
+
7437
8126
  msgid "url not defined."
7438
8127
  msgstr "未定义 url"
7439
8128
 
7440
8129
  msgid "via customized remote execution"
7441
- msgstr ""
8130
+ msgstr "通过自定义远程执行"
7442
8131
 
7443
8132
  msgid "via remote execution"
7444
- msgstr ""
8133
+ msgstr "通过远程执行"
7445
8134
 
7446
8135
  msgid "view content view tabs."
7447
- msgstr ""
8136
+ msgstr "查看内容视图标签页。"
7448
8137
 
7449
8138
  msgid "waiting for Candlepin to finish the task"
7450
8139
  msgstr "等待 Candlepin 完成任务"
@@ -7453,13 +8142,13 @@ msgid "waiting for Pulp to finish the task"
7453
8142
  msgstr "等待 Pulp 完成任务"
7454
8143
 
7455
8144
  msgid "waiting for Pulp to finish the task %s"
7456
- msgstr ""
8145
+ msgstr "等待 Pulp 完成任务 %s"
7457
8146
 
7458
8147
  msgid "waiting for Pulp to start the task"
7459
8148
  msgstr "等待 Pulp 開始任務"
7460
8149
 
7461
8150
  msgid "waiting for Pulp to start the task %s"
7462
- msgstr ""
8151
+ msgstr "等待 Pulp 开始任务 %s"
7463
8152
 
7464
8153
  msgid "whitespace-separated list of architectures to be synced from deb-archive"
7465
8154
  msgstr "从 deb-archive 同步的、以空格分隔的架构列表"
@@ -7478,3 +8167,30 @@ msgstr "是"
7478
8167
 
7479
8168
  msgid "{0} items selected"
7480
8169
  msgstr "已选择 {0} 个项目"
8170
+
8171
+ msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8172
+ msgstr ""
8173
+
8174
+ msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
8175
+ msgstr ""
8176
+
8177
+ msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
8178
+ msgstr ""
8179
+
8180
+ msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
8181
+ msgstr ""
8182
+
8183
+ msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
8184
+ msgstr ""
8185
+
8186
+ msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
8187
+ msgstr ""
8188
+
8189
+ msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
8190
+ msgstr ""
8191
+
8192
+ msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
8193
+ msgstr ""
8194
+
8195
+ msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
8196
+ msgstr ""