katello 3.17.0.rc1 → 3.17.0.rc2

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

Potentially problematic release.


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

Files changed (293) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +5 -3
  3. data/app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb +1 -1
  4. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -2
  5. data/app/controllers/katello/api/v2/api_controller.rb +1 -1
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -1
  7. data/app/controllers/katello/api/v2/content_uploads_controller.rb +5 -5
  8. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +47 -0
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +50 -19
  10. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +1 -1
  11. data/app/controllers/katello/api/v2/host_tracer_controller.rb +0 -5
  12. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +15 -0
  13. data/app/controllers/katello/api/v2/repositories_controller.rb +24 -14
  14. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  15. data/app/controllers/katello/concerns/api/v2/{associations_permission_check.rb → authorization.rb} +20 -2
  16. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +11 -5
  17. data/app/helpers/katello/content_view_helper.rb +1 -1
  18. data/app/lib/actions/candlepin/product/content_add.rb +1 -2
  19. data/app/lib/actions/katello/capsule_content/refresh_repos.rb +1 -1
  20. data/app/lib/actions/katello/capsule_content/sync.rb +2 -2
  21. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +17 -3
  22. data/app/lib/actions/katello/content_view/capsule_sync.rb +1 -1
  23. data/app/lib/actions/katello/content_view/destroy.rb +2 -2
  24. data/app/lib/actions/katello/content_view/incremental_updates.rb +1 -1
  25. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -0
  26. data/app/lib/actions/katello/content_view/publish.rb +12 -7
  27. data/app/lib/actions/katello/content_view_puppet_environment/clone.rb +1 -1
  28. data/app/lib/actions/katello/content_view_puppet_environment/create.rb +2 -2
  29. data/app/lib/actions/katello/content_view_version/incremental_update.rb +4 -4
  30. data/app/lib/actions/katello/organization/manifest_delete.rb +1 -0
  31. data/app/lib/actions/katello/organization/manifest_import.rb +1 -0
  32. data/app/lib/actions/katello/organization/manifest_refresh.rb +1 -0
  33. data/app/lib/actions/katello/product/content_create.rb +3 -3
  34. data/app/lib/actions/katello/product/destroy.rb +25 -4
  35. data/app/lib/actions/katello/repository/clone_contents.rb +3 -3
  36. data/app/lib/actions/katello/repository/clone_to_environment.rb +2 -2
  37. data/app/lib/actions/katello/repository/clone_to_version.rb +1 -1
  38. data/app/lib/actions/katello/repository/create.rb +1 -1
  39. data/app/lib/actions/katello/repository/destroy.rb +10 -4
  40. data/app/lib/actions/katello/repository/export.rb +3 -3
  41. data/app/lib/actions/katello/repository/finish_upload.rb +2 -2
  42. data/app/lib/actions/katello/repository/import_upload.rb +3 -3
  43. data/app/lib/actions/katello/repository/metadata_generate.rb +1 -1
  44. data/app/lib/actions/katello/repository/multi_clone_contents.rb +6 -10
  45. data/app/lib/actions/katello/repository/purge_empty_content.rb +1 -1
  46. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  47. data/app/lib/actions/katello/repository/sync.rb +35 -25
  48. data/app/lib/actions/katello/repository/update.rb +30 -19
  49. data/app/lib/actions/katello/repository/update_http_proxy_details.rb +1 -1
  50. data/app/lib/actions/katello/repository/update_metadata_sync.rb +1 -1
  51. data/app/lib/actions/katello/repository/upload_files.rb +2 -2
  52. data/app/lib/actions/katello/repository/verify_checksum.rb +28 -0
  53. data/app/lib/actions/pulp/content_view_puppet_environment/copy_contents.rb +1 -1
  54. data/app/lib/actions/pulp/orchestration/orphan_cleanup/remove_orphans.rb +1 -1
  55. data/app/lib/actions/pulp/orchestration/repository/sync.rb +2 -1
  56. data/app/lib/actions/pulp/repository/copy_all_units.rb +1 -1
  57. data/app/lib/actions/pulp/repository/copy_units.rb +1 -1
  58. data/app/lib/actions/pulp/repository/create.rb +1 -1
  59. data/app/lib/actions/pulp/repository/destroy.rb +1 -1
  60. data/app/lib/actions/pulp/repository/remove_units.rb +2 -2
  61. data/app/lib/actions/pulp/repository/sync.rb +3 -2
  62. data/app/lib/actions/pulp3/capsule_content/sync.rb +3 -1
  63. data/app/lib/actions/pulp3/content_guard/refresh_all_distributions.rb +19 -0
  64. data/app/lib/actions/pulp3/content_migration.rb +3 -3
  65. data/app/lib/actions/pulp3/content_view_version/create_exporter.rb +20 -0
  66. data/app/lib/actions/pulp3/content_view_version/destroy_exporter.rb +16 -0
  67. data/app/lib/actions/pulp3/content_view_version/export.rb +19 -0
  68. data/app/lib/actions/pulp3/import_migration.rb +3 -3
  69. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +69 -0
  70. data/app/lib/actions/pulp3/orchestration/repository/copy_all_units.rb +1 -2
  71. data/app/lib/actions/pulp3/orchestration/repository/create.rb +1 -1
  72. data/app/lib/actions/pulp3/orchestration/repository/sync.rb +3 -1
  73. data/app/lib/actions/pulp3/orchestration/repository/trigger_update_repo_cert_guard.rb +22 -0
  74. data/app/lib/actions/pulp3/orchestration/repository/upload_content.rb +1 -1
  75. data/app/lib/actions/pulp3/repository/copy_content.rb +0 -1
  76. data/app/lib/actions/pulp3/repository/multi_copy_units.rb +2 -2
  77. data/app/lib/actions/pulp3/repository/presenters/repair_presenter.rb +85 -0
  78. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +11 -5
  79. data/app/lib/actions/pulp3/repository/repair.rb +29 -0
  80. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  81. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -2
  82. data/app/lib/actions/pulp3/repository/save_version.rb +20 -16
  83. data/app/lib/actions/pulp3/repository/save_versions.rb +1 -1
  84. data/app/lib/actions/pulp3/repository/sync.rb +1 -1
  85. data/app/lib/actions/pulp3/repository/update_cv_repository_cert_guard.rb +6 -2
  86. data/app/lib/actions/pulp3/repository/upload_file.rb +2 -2
  87. data/app/lib/katello/concerns/base_template_scope_extensions.rb +5 -3
  88. data/app/lib/katello/concerns/permission_extensions.rb +14 -0
  89. data/app/lib/katello/foreman.rb +1 -1
  90. data/app/lib/katello/resources/candlepin/product.rb +0 -11
  91. data/app/lib/katello/resources/registry.rb +3 -3
  92. data/app/models/katello/authorization/content_view_version_export_history.rb +11 -0
  93. data/app/models/katello/authorization/product.rb +4 -0
  94. data/app/models/katello/authorization/repository.rb +8 -0
  95. data/app/models/katello/concerns/content_facet_host_extensions.rb +2 -1
  96. data/app/models/katello/concerns/organization_extensions.rb +6 -1
  97. data/app/models/katello/concerns/pulp_database_unit.rb +2 -2
  98. data/app/models/katello/concerns/redhat_extensions.rb +4 -2
  99. data/app/models/katello/concerns/smart_proxy_extensions.rb +33 -16
  100. data/app/models/katello/concerns/subscription_facet_host_extensions.rb +1 -1
  101. data/app/models/katello/content_view.rb +1 -1
  102. data/app/models/katello/content_view_package_filter.rb +1 -1
  103. data/app/models/katello/content_view_puppet_environment.rb +1 -1
  104. data/app/models/katello/content_view_version.rb +3 -1
  105. data/app/models/katello/content_view_version_export_history.rb +22 -0
  106. data/app/models/katello/docker_meta_tag.rb +1 -1
  107. data/app/models/katello/errata_status.rb +21 -12
  108. data/app/models/katello/erratum.rb +1 -1
  109. data/app/models/katello/glue/candlepin/owner.rb +4 -2
  110. data/app/models/katello/glue/pulp/repo.rb +3 -1
  111. data/app/models/katello/host/content_facet.rb +8 -0
  112. data/app/models/katello/kt_environment.rb +1 -1
  113. data/app/models/katello/package_group.rb +1 -1
  114. data/app/models/katello/ping.rb +8 -3
  115. data/app/models/katello/pulp3/content_guard.rb +1 -1
  116. data/app/models/katello/purpose_status.rb +2 -2
  117. data/app/models/katello/repository.rb +23 -15
  118. data/app/models/katello/rhsm_fact_parser.rb +1 -1
  119. data/app/models/katello/root_repository.rb +2 -15
  120. data/app/models/katello/sync_plan.rb +8 -0
  121. data/app/models/setting/content.rb +3 -1
  122. data/app/services/cert/certs.rb +10 -2
  123. data/app/services/katello/candlepin/event_handler.rb +1 -0
  124. data/app/services/katello/host_status_manager.rb +7 -0
  125. data/app/services/katello/pulp/content.rb +1 -1
  126. data/app/services/katello/pulp/repository.rb +7 -7
  127. data/app/services/katello/pulp/repository/deb.rb +2 -2
  128. data/app/services/katello/pulp/repository/docker.rb +5 -5
  129. data/app/services/katello/pulp/repository/file.rb +2 -2
  130. data/app/services/katello/pulp/repository/ostree.rb +2 -2
  131. data/app/services/katello/pulp/repository/puppet.rb +2 -2
  132. data/app/services/katello/pulp/repository/yum.rb +5 -6
  133. data/app/services/katello/pulp/smart_proxy_repository.rb +1 -1
  134. data/app/services/katello/pulp3/ansible_collection.rb +2 -2
  135. data/app/services/katello/pulp3/api/core.rb +16 -0
  136. data/app/services/katello/pulp3/content.rb +3 -3
  137. data/app/services/katello/pulp3/content_view_version/export.rb +71 -0
  138. data/app/services/katello/pulp3/distribution.rb +2 -2
  139. data/app/services/katello/pulp3/docker_blob.rb +2 -2
  140. data/app/services/katello/pulp3/docker_manifest.rb +2 -2
  141. data/app/services/katello/pulp3/docker_manifest_list.rb +2 -2
  142. data/app/services/katello/pulp3/docker_tag.rb +2 -2
  143. data/app/services/katello/pulp3/erratum.rb +2 -2
  144. data/app/services/katello/pulp3/file_unit.rb +2 -2
  145. data/app/services/katello/pulp3/migration.rb +139 -34
  146. data/app/services/katello/pulp3/migration_plan.rb +50 -14
  147. data/app/services/katello/pulp3/migration_switchover.rb +41 -9
  148. data/app/services/katello/pulp3/module_stream.rb +2 -2
  149. data/app/services/katello/pulp3/package_group.rb +2 -2
  150. data/app/services/katello/pulp3/repository.rb +9 -9
  151. data/app/services/katello/pulp3/repository/docker.rb +18 -10
  152. data/app/services/katello/pulp3/repository/yum.rb +25 -13
  153. data/app/services/katello/pulp3/repository_mirror.rb +2 -1
  154. data/app/services/katello/pulp3/rpm.rb +2 -2
  155. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +2 -2
  156. data/app/services/katello/pulp3/smart_proxy_repository.rb +1 -1
  157. data/app/services/katello/pulp3/srpm.rb +2 -2
  158. data/app/services/katello/pulp3/task_group.rb +1 -1
  159. data/app/services/katello/pulp3/yum_metadata_file.rb +2 -2
  160. data/app/services/katello/registration_manager.rb +9 -3
  161. data/app/services/katello/repository_type.rb +1 -1
  162. data/app/services/katello/smart_proxy_helper.rb +14 -17
  163. data/app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb +10 -2
  164. data/app/views/katello/api/v2/content_view_repositories/show_all.json.rabl +8 -0
  165. data/app/views/katello/api/v2/content_view_version_export_histories/index.json.rabl +7 -0
  166. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +13 -0
  167. data/app/views/katello/api/v2/package_groups/show.json.rabl +1 -1
  168. data/app/views/katello/api/v2/packages/show.json.rabl +1 -1
  169. data/app/views/katello/api/v2/repositories/base.json.rabl +2 -1
  170. data/app/views/katello/api/v2/srpms/show.json.rabl +1 -1
  171. data/app/views/katello/api/v2/sync_plans/show.json.rabl +2 -1
  172. data/config/routes/api/rhsm.rb +1 -0
  173. data/config/routes/api/v2.rb +8 -1
  174. data/db/migrate/20200818040551_add_content_view_version_export_history.rb +13 -0
  175. data/db/migrate/20200818192230_update_system_purpose_status.rb +12 -0
  176. data/db/migrate/20200820145217_add_download_concurrency_to_katello_root_repositories.rb +5 -0
  177. data/db/migrate/20200910140340_remove_distribution_uuid.rb +5 -0
  178. data/db/migrate/20200914200906_remove_auto_enabled.rb +5 -0
  179. data/engines/bastion/app/assets/javascripts/bastion/bastion.js +1 -0
  180. data/engines/bastion/app/assets/javascripts/bastion/routing.module.js +1 -1
  181. data/engines/bastion/vendor/assets/javascripts/bastion/angular-ui-router/stateEvents.js +300 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/activation-keys.controller.js +1 -1
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-add-subscriptions.controller.js +1 -1
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js +1 -1
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-subscriptions.controller.js +1 -1
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-products.controller.js +1 -1
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-repositories.controller.js +1 -1
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +1 -1
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-host-collections-modal.controller.js +1 -1
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-module-streams-modal.controller.js +1 -1
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-repository-sets-modal.controller.js +1 -1
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-subscriptions-modal.controller.js +1 -1
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-traces-modal.controller.js +1 -1
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts-helper.service.js +1 -1
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +1 -1
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +1 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-errata.controller.js +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -1
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-applicable.controller.js +1 -1
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -1
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -1
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-host-collections.controller.js +1 -1
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-add-subscriptions.controller.js +1 -1
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details-info.controller.js +4 -2
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-host-collections.controller.js +1 -1
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-subscriptions.controller.js +1 -1
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +2 -2
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +1 -1
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-available-content-views.controller.js +1 -1
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js +1 -1
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-docker-repositories.controller.js +1 -1
  212. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-available-ostree-repositories.controller.js +1 -1
  213. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-docker-repositories-list.controller.js +1 -1
  214. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-ostree-repositories-list.controller.js +1 -1
  215. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js +1 -1
  216. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js +1 -1
  217. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js +1 -1
  218. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-names.controller.js +1 -1
  219. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-module-versions.controller.js +1 -1
  220. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/puppet-modules/content-view-puppet-modules.controller.js +1 -1
  221. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js +1 -1
  222. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/debs.controller.js +1 -1
  223. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb-content-views.controller.js +1 -1
  224. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb-repositories.controller.js +1 -1
  225. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js +1 -1
  226. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-repositories.controller.js +1 -1
  227. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/files/details/file-content-views.controller.js +1 -1
  228. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/files/details/file-repositories.controller.js +1 -1
  229. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/files/files.controller.js +1 -1
  230. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/host-collections.controller.js +1 -1
  231. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +57 -12
  232. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +45 -8
  233. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +42 -5
  234. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +36 -0
  235. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +36 -0
  236. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +36 -0
  237. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +45 -8
  238. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +36 -0
  239. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +36 -0
  240. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +36 -0
  241. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +4 -4
  242. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/fenced-pages.service.js +11 -2
  243. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/organization-selector.controller.js +5 -14
  244. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/ostree-branches/details/ostree-branch-repositories.controller.js +1 -1
  245. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package-repositories.controller.js +1 -1
  246. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.controller.js +1 -1
  247. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/product-bulk-action.factory.js +1 -0
  248. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-sync-plan-modal.controller.js +1 -1
  249. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +1 -1
  250. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +1 -1
  251. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +6 -0
  252. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +7 -1
  253. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +0 -9
  254. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +1 -1
  255. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +0 -11
  256. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
  257. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.controller.js +16 -1
  258. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/views/products.html +6 -0
  259. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-content-views.controller.js +1 -1
  260. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/details/puppet-module-repositories.controller.js +1 -1
  261. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/puppet-modules/puppet-modules.controller.js +1 -1
  262. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/sync-plan-details-info.controller.js +4 -3
  263. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html +1 -1
  264. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/sync-plans.controller.js +1 -1
  265. data/lib/katello/engine.rb +2 -0
  266. data/lib/katello/permission_creator.rb +14 -9
  267. data/lib/katello/tasks/clean_published_repo_directories.rake +3 -3
  268. data/lib/katello/tasks/pulp3_content_switchover.rake +24 -6
  269. data/lib/katello/tasks/pulp3_migration.rake +4 -2
  270. data/lib/katello/tasks/pulp3_post_migration_check.rake +2 -2
  271. data/lib/katello/tasks/reimport.rake +1 -1
  272. data/lib/katello/tasks/repository.rake +15 -2
  273. data/lib/katello/tasks/unify_hosts.rake +1 -0
  274. data/lib/katello/tasks/upgrades/3.11/update_puppet_repos.rake +3 -3
  275. data/lib/katello/tasks/upgrades/3.12/remove_pulp2_notifier.rake +2 -2
  276. data/lib/katello/tasks/upgrades/3.8/clear_checksum_type.rake +2 -2
  277. data/lib/katello/version.rb +1 -1
  278. data/locale/action_names.rb +47 -47
  279. data/locale/katello.pot +160 -160
  280. data/webpack/containers/Application/config.js +4 -4
  281. data/webpack/redux/actions/RedHatRepositories/helpers.js +1 -1
  282. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +22 -32
  283. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +0 -14
  284. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -5
  285. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +15 -6
  286. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +0 -1
  287. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  288. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsReducer.test.js +24 -0
  289. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsReducer.test.js.snap +114 -26
  290. metadata +67 -33
  291. data/app/lib/actions/candlepin/product/content_update_enablement.rb +0 -18
  292. data/app/lib/actions/katello/repository/content_update.rb +0 -41
  293. data/app/lib/actions/katello/repository/update_cv_repo_cert_guard.rb +0 -17
@@ -762,6 +762,7 @@ msgid "An error occurred saving the Environment:"
762
762
  msgstr "保存环境时出错:"
763
763
 
764
764
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
765
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
765
766
  msgid "An error occurred saving the Filter:"
766
767
  msgstr "保存过滤器时出错:"
767
768
 
@@ -1408,6 +1409,18 @@ msgid ""
1408
1409
  "newer to be installed on this host."
1409
1410
  msgstr "更改默认设置需要在该主机中安装 subscription-manager 版本 1.0 或者更新的版本。"
1410
1411
 
1412
+ #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1413
+ msgid ""
1414
+ "Changing the Content View will not affect the Content Host until its next checkin.\n"
1415
+ " To update the Content Host immediately run the following command:"
1416
+ msgstr ""
1417
+
1418
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1419
+ msgid ""
1420
+ "Changing the Content View will not affect the Content Hosts until their next checkin.\n"
1421
+ " To update the Content Hosts immediately run the following command:"
1422
+ msgstr ""
1423
+
1411
1424
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
1412
1425
  #: app/assets/javascripts/bastion_katello/files/details/views/file-info.html
1413
1426
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
@@ -2253,6 +2266,11 @@ msgstr "编辑"
2253
2266
  msgid "Enable"
2254
2267
  msgstr "启用"
2255
2268
 
2269
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2270
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2271
+ msgid "Enable on Registration"
2272
+ msgstr ""
2273
+
2256
2274
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
2257
2275
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2258
2276
  msgid "Enable Traces"
@@ -2424,6 +2442,10 @@ msgstr "事件"
2424
2442
  msgid "Exclude"
2425
2443
  msgstr "排除"
2426
2444
 
2445
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2446
+ msgid "Exclude all Module Streams with no errata."
2447
+ msgstr ""
2448
+
2427
2449
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2428
2450
  msgid "Exclude all RPMs with no errata."
2429
2451
  msgstr "排除所有不包含勘误的 RPM。"
@@ -2523,6 +2545,10 @@ msgstr "已成功更新过滤器规则。"
2523
2545
  msgid "Filter Saved"
2524
2546
  msgstr "已保存过滤器"
2525
2547
 
2548
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
2549
+ msgid "Filter Updated -"
2550
+ msgstr ""
2551
+
2526
2552
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
2527
2553
  msgid "Filter:"
2528
2554
  msgstr "过滤器:"
@@ -2810,6 +2836,10 @@ msgstr ""
2810
2836
  msgid "Include"
2811
2837
  msgstr "包括"
2812
2838
 
2839
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2840
+ msgid "Include all Module Streams with no errata."
2841
+ msgstr ""
2842
+
2813
2843
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2814
2844
  msgid "Include all RPMs with no errata."
2815
2845
  msgstr "包括所有不含勘误的 RPM。"
@@ -5020,6 +5050,12 @@ msgid ""
5020
5050
  "will be synced."
5021
5051
  msgstr "选择“完成同步”将导致仅同步所选产品的 Yum 库。选择“验证内容”将导致仅同步使用“中间”或“后台”下载策略的 Yum 库。"
5022
5052
 
5053
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5054
+ msgid ""
5055
+ "Selecting this option will automatically enable this Repository when a Host "
5056
+ "registers and consumes this subscription."
5057
+ msgstr ""
5058
+
5023
5059
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5024
5060
  msgid ""
5025
5061
  "Selecting this option will result in contents that are no longer part of the"
@@ -746,6 +746,7 @@ msgid "An error occurred saving the Environment:"
746
746
  msgstr "儲存環境時發生了錯誤:"
747
747
 
748
748
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
749
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
749
750
  msgid "An error occurred saving the Filter:"
750
751
  msgstr "儲存篩選條件時發生錯誤:"
751
752
 
@@ -1389,6 +1390,18 @@ msgid ""
1389
1390
  "newer to be installed on this host."
1390
1391
  msgstr "改變預設設定需要在此主機上安裝 1.10 以上版本的 subscription-manager。"
1391
1392
 
1393
+ #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1394
+ msgid ""
1395
+ "Changing the Content View will not affect the Content Host until its next checkin.\n"
1396
+ " To update the Content Host immediately run the following command:"
1397
+ msgstr ""
1398
+
1399
+ #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1400
+ msgid ""
1401
+ "Changing the Content View will not affect the Content Hosts until their next checkin.\n"
1402
+ " To update the Content Hosts immediately run the following command:"
1403
+ msgstr ""
1404
+
1392
1405
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
1393
1406
  #: app/assets/javascripts/bastion_katello/files/details/views/file-info.html
1394
1407
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
@@ -2227,6 +2240,11 @@ msgstr "編輯"
2227
2240
  msgid "Enable"
2228
2241
  msgstr "啟用"
2229
2242
 
2243
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2244
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2245
+ msgid "Enable on Registration"
2246
+ msgstr ""
2247
+
2230
2248
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
2231
2249
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2232
2250
  msgid "Enable Traces"
@@ -2398,6 +2416,10 @@ msgstr "事件"
2398
2416
  msgid "Exclude"
2399
2417
  msgstr "排除"
2400
2418
 
2419
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2420
+ msgid "Exclude all Module Streams with no errata."
2421
+ msgstr ""
2422
+
2401
2423
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2402
2424
  msgid "Exclude all RPMs with no errata."
2403
2425
  msgstr "排除所有不含勘誤的 RPM。"
@@ -2497,6 +2519,10 @@ msgstr ""
2497
2519
  msgid "Filter Saved"
2498
2520
  msgstr "已儲存篩選器"
2499
2521
 
2522
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
2523
+ msgid "Filter Updated -"
2524
+ msgstr ""
2525
+
2500
2526
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
2501
2527
  msgid "Filter:"
2502
2528
  msgstr "篩選器:"
@@ -2782,6 +2808,10 @@ msgstr ""
2782
2808
  msgid "Include"
2783
2809
  msgstr "包含"
2784
2810
 
2811
+ #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2812
+ msgid "Include all Module Streams with no errata."
2813
+ msgstr ""
2814
+
2785
2815
  #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2786
2816
  msgid "Include all RPMs with no errata."
2787
2817
  msgstr "包括所有不含勘誤的 RPM。"
@@ -4979,6 +5009,12 @@ msgid ""
4979
5009
  "will be synced."
4980
5010
  msgstr ""
4981
5011
 
5012
+ #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
5013
+ msgid ""
5014
+ "Selecting this option will automatically enable this Repository when a Host "
5015
+ "registers and consumes this subscription."
5016
+ msgstr ""
5017
+
4982
5018
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4983
5019
  msgid ""
4984
5020
  "Selecting this option will result in contents that are no longer part of the"
@@ -1,12 +1,12 @@
1
1
  angular.module('Bastion.i18n').run(['gettextCatalog', function (gettextCatalog) {
2
2
  /* jshint -W100 */
3
- gettextCatalog.setStrings('de', {"- Date and Type":"- Datum und Typ","-- select an interval --":"-- Intervall wählen --","(Not all Activation Keys editable )":"(Nicht alle Aktivierungsschlüssel sind änderbar)","(Not all Content Hosts editable )":"(Nicht alle Inhaltshosts sind änderbar)","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} kann nicht gelöscht werden, da eine oder mehrere Inhaltsansichtsversionen noch in einer Lebenszyklusumgebung enthalten sind.\n Jede Inhaltsansichtsversion muss aus ihren Lebenszyklusumgebungen entfernt werden, bevor die Inhaltsansicht gelöscht werden kann.","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} relevant","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} installierbar","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} Errata","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} Errata","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} Puppet-Module","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} Pakete","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} Pakete","{{ repository.last_sync_words }} ago":"vor {{ repository.last_sync_words }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} Aktivierungsschlüssel werden nach {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }} verlegt","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} Inhaltshosts werden nach {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }} verlegt","{{ type.display }}":"{{ type.display }}","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} Errata","{{ version.package_count }} Packages":"{{ version.package_count }} Pakete","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} Puppet-Module","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* Diese markierten Inhaltsansichtsversionen stammen aus Verbund-Inhaltsansichten. Komponenten, die eine Aktualisierung erfordern, werden darunter aufgelistet.","%(consumed)s out of %(quantity)s":"%(consumed)s von %(quantity)s","<b>Description</b>":"<b>Beschreibung</b>","<b>Packages</b>":"<b>Pakete</b>","<b>Reboot Suggested</b>":"<b>Neustart empfohlen</b>","<b>Title</b>":"<b>Titel</b>","<b>Type</b>":"<b>Typ</b>","<b>Updated</b>":"<b>Aktualisiert</b>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n Für Umgebungen mit Stern wird Übertragung vorgeschlagen.","1 repository sync in progress.":["1 Repository-Synchronisation in Arbeit.","{{ product.sync_summary.pending}} Repository-Synchronisationen in Arbeit."],"1 successfully synced repository.":["1 erfolgreich synchronisiertes Repository.","{{ product.sync_summary.success}} erfolgreich synchronisierte Repositorys."],"A composite view contains other content views.":"Eine Verbundinhaltsansicht enthält mehrere andere Inhaltsansichten.","Account":"Account","Action":"Aktion","Action Type":"Aktionstyp","Actions":"Aktionen","Activation Key":["Aktivierungsschlüssel","Aktivierungsschlüssel"],"Activation Key Content":"Aktivierungsschlüsselinhalt","Activation Key removed.":"Aktivierungsschlüssel entfernt","Activation Key updated":"Aktivierungsschlüssel aktualisiert","Activation Key:":"Aktivierungsschlüssel:","Activation Keys":"Aktivierungsschlüssel","Activation Keys using Version {{ version.version }}":"Aktivierungsschlüssel mit Version {{ version.version }}","Add":"Hinzufügen","Add Content Hosts to:":"Inhaltshosts hinzufügen zu:","Add Content Views":"Inhaltshosts hinzufügen","Add Errata":"Errata hinzufügen","Add New Environment":"Neue Umgebung hinzufügen","Add New Module":"Neues Modul hinzufügen","Add Package Group":"Paketgruppe hinzufügen","Add Repositories":"Repositorys hinzufügen","Add Rule":"Regel hinzufügen","Add Selected":"Auswahl hinzufügen","add some repositories.":"fügen Sie Repositorys hinzu.","Add Subscriptions for Activation Key:":"Subskriptionen für Aktivierungsschlüssel hinzufügen:","Add To":"Hinzufügen zu","Added %x host collections to activation key \"%y\".":"%x Hostsammlungen wurden zum Aktivierungsschlüssel \"%y\" hinzugefügt.","Added %x host collections to content host \"%y\".":"%x Hostsammlungen wurden zum Inhaltshost \"%y\" hinzugefügt.","Added %x products to sync plan \"%y\".":"%x Produkte wurden zum Synchronisationsplan \"%y\" hinzugefügt.","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Lebenszyklusumgebung wird zu \"{{ priorEnvironment.name }}\" hinzugefügt","Advisory":"Advisory","Affected Activation Keys":"Betroffene Aktivierungsschlüssel","Affected Content Hosts":"Betroffene Inhaltshosts","Affected Hosts":"Betroffene Hosts","Affected repositories have been updated.":"Betroffene Repositorys wurden aktualisiert.","All Content Views":"Alle Inhaltsansichten","All Products":"Alle Produkte","All Repositories":"Alle Repositorys","All Versions":"Alle Versionen","An error occured: %s":"Ein Fehler ist aufgetreten: %s","An error occurred removing the Activation Key:":"Fehler beim Entfernen des Aktivierungsschlüssels:","An error occurred removing the content hosts.":"Fehler beim Entfernen der Inhaltshosts:","An error occurred removing the environment:":"Fehler beim Entfernen der Umgebung:","An error occurred removing the Host Collection:":"Fehler beim Entfernen der Hostsammlung:","An error occurred removing the subscriptions.":"Fehler beim Entfernen der Subskriptionen:","An error occurred saving the Activation Key:":"Fehler beim Speichern des Aktivierungsschlüssels:","An error occurred saving the Content Host:":"Fehler beim Speichern des Inhaltshosts:","An error occurred saving the Environment:":"Fehler beim Speichern der Umgebung:","An error occurred saving the Filter:":"Fehler beim Speichern des Filters:","An error occurred saving the Host Collection:":"Fehler beim Speichern der Hostsammlung:","An error occurred saving the Product:":"Fehler beim Speichern des Produkts:","An error occurred saving the Repository:":"Fehler beim Speichern des Repositorys:","An error occurred saving the Sync Plan:":"Fehler beim Speichern des Synchronisationsplans:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Fehler beim automatischen Verknüpfen von Subskriptionen. Bitte werfen Sie einen Blick auf die Protokolldatei für weitere Informationen.","An error occurred updating the Content View:":"Fehler beim Aktualisieren der Inhaltsansicht:","An error occurred:":"Ein Fehler ist aufgetreten:","Applicable":"Relevant","Applicable Errata":"Relevante Errata","Application":"Anwendung","Apply":"Anwenden","Apply {{ errata.errata_id }}":"{{ errata.errata_id }} anwenden","Apply Errata":"Errata anwenden","Apply Errata to Content Hosts":"Errata auf Inhaltshosts anwenden","Apply Errata to Content Hosts immediately after publishing.":"Errata sofort nach Veröffentlichung auf Inhaltshosts anwenden.","Apply Selected":"Auswahl anwenden","Apply to Content Hosts":"Auf Inhaltshosts anwenden","Apply to Hosts":"Auf Hosts anwenden","Applying":"Anwenden","Arch":"Architektur","Architecture":"Architektur","Architectures":"Architekturen","Archived Copy":"Archivierte Kopie","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"Sind Sie sicher, dass Sie die {{ table.numSelected }} gewählten Inhaltshosts zu den ausgewählten Hostsammlungen hinzufügen möchten?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"Sind Sie sicher, dass Sie die {{ table.numSelected }} gewählten Inhaltshosts zu {{ selected.contentView.name }} in {{ selected.environment.name }} zuweisen möchten?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Sind Sie sicher, dass Sie {{ content.content }} auf den {{ getSelectedSystemIds().length }} ausgewählten Systemen installieren möchten?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"Sind Sie sicher, dass Sie {{ content.content }} von den {{ getSelectedSystemIds().length }} ausgewählten Systemen entfernen möchten?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"Sind Sie sicher, dass Sie den Aktivierungsschlüssel \"{{ activationKey.name }}\" entfernen möchten?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"Sind Sie sicher, dass Sie die Hostsammlung \"{{ hostCollection.name }}\" entfernen möchten?","Are you sure you want to remove product \"{{ product.name }}\"?":"Sind Sie sicher, dass Sie das Produkt \"{{ product.name }}\" entfernen möchten?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"Sind Sie sicher, dass Sie das Repository \"{{ repository.name }}\" entfernen möchten?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"Sind Sie sicher, dass Sie den Synchronisationsplan \"{{ syncPlan.name }}\" entfernen möchten?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"Sind Sie sicher, dass Sie die {{ table.numSelected }} gewählten Inhaltshosts aus der ausgewählten Hostsammlung entfernen möchten?","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Sind Sie sicher, dass Sie {{ content.content }} auf den {{ getSelectedSystemIds().length }} ausgewählten Systemen aktualisieren möchten?","As part of this deletion, 1 Content View Version will be deleted.":["Im Rahmen dieses Löschvorgangs wird 1 Inhaltsansichtsversion gelöscht.","Im Rahmen dieses Löschvorgangs werden {{ versions.length }} Inhaltsansichtsversionen gelöscht."],"Assign":"Zuweisen","Associations":"Zuweisungen","At least one Errata needs to be selected to Apply.":"Mindestens ein Erratum muss zum Anwenden ausgewählt werden.","Attached":"Verknüpft","Author":"Autor","Auto-Attach":"Automatische Verknüpfung","Automatic":"Automatisch","Available Content Views for Composite Content View:":"Verfügbare Inhaltsansichten für Verbundinhaltsansicht:","Available Puppet Modules for Content View:":"Verfügbare Puppet-Module für Inhaltsansicht:","Back":"Zurück","Back To Errata List":"Zurück zur Errata-Liste","Basic Information":"Allgemeine Informationen","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Nachfolgend finden Sie die Repository-Inhaltsgruppen, die derzeit für diesen Inhaltshost über dessen Subskriptionen zur Verfügung stehen. Für Red Hat Subskriptionen können weitere Inhalte verfügbar gemacht werden auf der Seite","Bug Fix":"Bugfix","Bug Fix Advisory":"Bugfix-Advisory","Bugfix":"Bugfix","Build Host":"Build-Host","Cancel":"Abbrechen","Capacity":"Kapazität","Certificate":"Zertifikat","Change assigned Lifecycle Environment or Content View":"Ändern der zugewiesenen Lebenszyklusumgebung oder Inhaltsansicht","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"Um die Standardeinstellungen für Inhaltshosts zu ändern, die sich mit diesem Aktivierungsschlüssel registrieren, muss subscription-manager Version 1.10 oder höher auf dem Host installiert sein.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"Um die Standardeinstellungen zu ändern, muss subscription-manager Version 1.10 oder höher auf diesem Host installiert sein.","Checksum":"Prüfsumme","Checksum Type":"Prüfsummentyp","Choose a lifecycle environment from the available promotion paths.":"Wählen Sie eine Lebenszyklusumgebung aus den verfügbaren Übertragungspfaden.","Click here to check the status of the task.":"Klicken Sie hier, um den Status der Task zu prüfen.","Click here to select Errata for an Incremental Update.":"Klicken Sie hier, um Errata für eine inkrementelle Aktualisierung auszuwählen.","Close":"Schließen","Completely remove version?":"Version vollständig entfernen?","Components":"Komponenten","Components:":"Komponenten:","Composite":"Verbund","Composite View":"Verbundansicht","Composite View?":"Verbundansicht?","Confirm":"Bestätigen","Confirm Remove":"Entfernen bestätigen","Confirm Version Removal: Version {{ version.version }}":"Entfernen der Version bestätigen: Version {{ version.version }}","Content":"Inhalt","Content Counts":"Anzahl der Inhalte","Content Host":"Inhaltshost","Content Host Bulk Content":"Inhaltshost-Masseninhalt","Content Host Bulk Subscriptions":"Inhaltshost-Massensubskriptionen","Content Host Content":"Inhalte des Inhaltshosts","Content Host Counts":"Inhaltshostanzahl","Content Host Limit":"Inhaltshostgrenze","Content Host Properties":"Eigenschaften des Inhaltshosts","Content Host Registration":"Registrierung eines Inhaltshosts","Content Host Status":"Status des Inhaltshosts","Content Host:":"Inhaltshost:","Content Hosts":"Inhaltshosts","Content Hosts for Activation Key:":"Inhaltshosts für Aktivierungsschlüssel:","Content Hosts for:":"Inhaltshosts für:","Content Hosts using Version {{ version.version }}":"Inhaltshosts mit Version {{ version.version }}","Content Type":"Inhaltstyp","Content View":"Inhaltsansicht","Content View Name":"Name der Inhaltsansicht","Content View updated.":"Inhaltsansicht aktualisiert.","Content View Version":"Version der Inhaltsansicht","Content View:":"Inhaltsansicht:","Content Views":"Inhaltsansichten","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Inhaltsansichten <div>{{ library.counts.content_views || 0 }}</div>","Content Views for Composite Content View:":"Inhaltsansichten für Verbundinhaltsansicht:","Context":"Kontext","Contract":"Vertrag","Copy Activation Key":"Aktivierungsschlüssel kopieren","Cores per Socket":"Kerne pro Socket","Create":"Erstellen","Create new view":"Neue Ansicht erstellen","Create New View":"Neue Ansicht erstellen","Create Selected":"Auswahl erstellen","Create Sync Plan":"Synchronisationsplan erstellen","Create view from existing views":"Ansicht aus vorhandenen Ansichten erstellen","Critical":"Kritisch","Current Subscriptions for Activation Key:":"Derzeitige Subskriptionen für Aktivierungsschlüssel:","Currently Selected Puppet Modules":"Derzeit ausgewählte Puppet-Module","CVEs":"CVEs","daily":"täglich","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Täglich um {{ product.sync_plan.sync_date | date:'mediumTime' }} (Serverzeit)","Date":"Datum","Date Type":"Datumstyp","Default":"Standard","Delete Hosts":"Hosts löschen","Delete Version {{ version.version }}":"Version {{ version.version }} löschen","Deleted from %s":"Gelöscht von %s","Deleting from %count environments.":"Von %count Umgebungen löschen.","Deleting from 1 environment.":"Von 1 Umgebung löschen.","Deletion from %s":"Löschen von %s","Dependencies":"Abhängigkeiten","Description":"Beschreibung","Details":"Details","Details for Activation Key:":"Details für Aktivierungsschlüssel:","Details for Content View:":"Details für Inhaltsansicht:","Details for Product:":"Details für Produkt:","Disable":"Deaktivieren","Disabled":"Deaktiviert","Discover":"Suchen","Docker Repositories":"Docker-Repositorys","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Docker-Repositorys <div>{{ library.counts.docker_repositories || 0 }}</div>","Download Policy":"Richtlinie herunterladen","Edit":"Bearbeiten","Enable":"Aktivieren","End Date":"Enddatum","Enhancement":"Erweiterung","Enter Package Group Name(s)...":"Paketgruppennamen eingeben …","Enter Package Name(s)...":"Paketnamen eingeben …","Environment":"Umgebung","Environment saved":"Umgebung gespeichert","Environments":"Umgebungen","Environments List":"Umgebungsliste","Equal To":"Ist gleich","Errata":"Errata","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Errata <div>{{ library.counts.errata.total || 0 }}</div>","Errata Details":"Errata-Details","Errata Filter:":"Errata-Filter:","Errata for:":"Errata für:","Errata ID":"Errata-ID","Errata Installation":"Installieren von Errata","Errata successfully added.":"Errata erfolgreich hinzugefügt.","Errata successfully removed.":"Errata erfolgreich entfernt.","Errata Task List":"Errata-Taskliste","Errata Tasks":"Errata-Tasks","Errata Type":"Errata-Typ","Errata:":"Errata:","Erratum - by ID":"Erratum – nach ID","Erratum Date Range":"Erratum-Datumsbereich","Error during upload:":"Fehler beim Hochladen:","Event":"Ereignis","Exclude":"Ausschließen","Exclude all RPMs with no errata.":"Alle RPMs ohne Errata ausschließen.","Existing Product":"Vorhandenes Produkt","Expires":"Endet","File too large. Please use the CLI instead.":"Datei zu groß. Bitte stattdessen die Befehlszeilenschnittstelle verwenden.","Filename":"Dateiname","Files":"Dateien","Filter":"Filter","Filter information for:":"Informationen filtern für:","Filter Saved":"Filter gespeichert","Filter:":"Filter:","Filter...":"Filtern …","Filters":"Filter","Filters for Content View:":"Filter für Inhaltsansicht:","Filters successfully removed.":"Filter erfolgreich entfernt.","Finished At":"Abgeschlossen am","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Für ältere Betriebssysteme wie Red Hat Enterprise Linux 5 oder CentOS 5 wird die Verwendung von sha1 empfohlen.","Force Promote?":"Übertragung erzwingen?","GPG Key":"GPG-Schlüssel","Greater Than":"Größer als","Group Install":"Gruppeninstallation","Group Remove":"Gruppenentfernung","here":"hier","Hide affected Activation Keys":"Betroffene Aktivierungsschlüssel ausblenden","Hide affected Content Hosts":"Betroffene Inhaltshosts ausblenden","History":"Chronik","History for Content View:":"Chronik für Inhaltsansicht:","Host Collection Management":"Verwaltung von Hostsammlungen","Host Collection Membership":"Mitgliedschaft in Hostsammlung","Host Collection removed.":"Hostsammlung entfernt","Host Collection updated":"Hostsammlung aktualisiert","Host Collection:":"Hostsammlung:","Host Collections":"Hostsammlungen","Host Collections for:":"Hostsammlungen für:","Host Count":"Hostanzahl","Host Group":"Hostgruppe","Host Limit":"Hostgrenze","Hostname":"Hostname","Hosts":"Hosts","hourly":"stündlich","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"Stündlich um {{ product.sync_plan.sync_date | date:'m' }} Minuten und {{ product.sync_plan.sync_date | date:'s' }} Sekunden","HTTP Proxy":"HTTP-Proxy","Id":"ID","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Falls Sie Teile dieser Aktivierungsschlüssel lieber in andere Inhaltsansichten oder Lebenszyklusumgebungen verlegen möchten, klicken Sie","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Falls Sie Teile dieser Aktivierungsschlüssel lieber in andere Inhaltsansichten oder Lebenszyklusumgebungen verlegen möchten, klicken Sie <a href=\"{{ activationKeyLink() }}\">hier</a>, um sie einzeln zu verwalten.","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Falls Sie Teile dieser Inhaltshosts lieber in andere Inhaltsansichten oder Umgebungen verlegen möchten, klicken Sie <a href=\"{{ contentHostsLink() }}\">hier</a>, um diese Inhaltshosts mittels Massenaktionen zu verwalten.","Image":"Image","Important":"Wichtig","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Um eine Inhaltsansicht zu einer Verbundansicht hinzuzufügen, müssen Sie zunächst eine anfängliche Version der Inhaltsansicht veröffentlichen.","Include":"Einschließen","Include all RPMs with no errata.":"Alle RPMs ohne Errata einschließen.","Inclusion Type":"Art der Einbeziehung ","Incremental Update":"Inkrementelle Aktualisierung","Install":"Installieren","Install Selected":"Auswahl installieren","Install the pre-built bootstrap RPM:":"Installieren Sie das integrierte Bootstrap-RPM:","Installable":"Installierbar","Installable Errata":"Installierbare Errata","Installed":"Installiert","Installed Package":"Installiertes Paket","Installed Packages":"Installierte Pakete","Installed Products":"Installierte Produkte","Interfaces":"Schnittstellen","Interval":"Intervall","IPv4 Address":"IPv4-Adresse","IPv6 Address":"IPv6-Adresse","Issued":"Ausgegeben","Katello Agent":"Katello-Agents","Label":"Kennung","Last Checkin":"Letzte Anmeldung","Last Published":"Letzte Veröffentlichung","Last Puppet Report":"Letzter Puppet-Bericht","Last Sync":"Letzte Synchronisation","Last synced":"Letzte Synchronisation","Last Updated On":"Letzte Aktualisierung:","Latest (Currently %s)":"Aktuellste (derzeit %s)","Less Than":"Kleiner als","Library":"Library","Library Synced Content":"Von Library synchronisierte Inhalte","Lifecycle Environment Paths":"Lebenszyklus-Umgebungspfade","Lifecycle Environments":"Lebenszyklusumgebungen","Limit":"Grenze","Limit:":"Grenze:","List/Remove":"Auflisten/Entfernen","Loading Environment Paths...":"Umgebungspfade werden geladen …","Loading...":"Laden …","Manage Packages":"Pakete verwalten","Manage Packages for Repository:":"Pakete für Repository verwalten:","Manage Puppet Modules for Repository:":"Puppet-Module für Repository verwalten:","Mirror on Sync":"Sync spiegeln","Model":"Modell","Moderate":"Moderat (Mittel)","Module %s removed from Content View.":"Module %s aus Inhaltsansicht entfernt.","Module Streams":"Module Streams","More Details":"Mehr Details","N/A":"N/A","Name":"Name","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"Name des Upstream-Repositorys, das Sie synchronisieren möchten. Beispiel: \"busybox\" oder \"fedora/ssh\".","Networking":"Netzwerk","Never synced":"Nie synchronisiert","New Activation Key":"Neuer Aktivierungsschlüssel","New Environment":"Neue Umgebung","New Filter":"Neuer Filter","New Filter for Content View:":"Neuer Filter für Inhaltsansicht:","New Name:":"Neuer Name:","New Product":"Neues Produkt","New Repository":"Neues Repository","New Sync Plan":"Neuer Synchronisationsplan","New sync plan successfully created.":"Neuer Synchronisationsplan erfolgreich erstellt.","Next":"Weiter","Next Sync":"Nächste Synchronisation","No":"Nein","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"Keine Berechtigung zum Bearbeiten auf einigen der Aktivierungsschlüssel in dieser Lebenszyklusumgebung.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"Keine Berechtigung zum Bearbeiten auf einigen der Inhaltshosts in dieser Lebenszyklusumgebung.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"Keine Berechtigung zum Übertragen/Entfernen in dieser Lebenszyklusumgebung.","No activation keys are affected.":"Keine Aktivierungsschlüssel sind betroffen.","No Content Hosts are affected.":"Keine Inhaltshosts sind betroffen.","No Content Hosts match this Erratum.":"Keine Inhaltshosts entsprechen diesem Erratum.","No Content Views available, please select another environment.":"Keine Inhaltshosts verfügbar, bitte wählen Sie eine andere Umgebung.","No content views exist for {{selected.environment.name}}":"Keine Inhaltsansichten existieren für {{selected.environment.name}}","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Keine Hostsammlungen zum Anzeigen. Sie können Hostsammlungen hinzufügen, wenn Sie im Hauptmenü \"Hosts\" auf \"Hostsammlungen\" klicken.","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"Keine Hostsammlungen zum Anzeigen. Sie können Hostsammlungen hinzufügen, wenn Sie auf den Reiter \"Hinzufügen\" klicken.","No Repositories contain this Erratum.":"Keine Repositorys enthalten dieses Erratum.","None":"Keine","Not installed":"Nicht installiert","Not Synced":"Nicht synchronisiert","Not yet published":"Noch nicht veröffentlicht","Number of CPUs":"Anzahl der CPUs","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"Ein oder mehrere der ausgewählten Errata sind nicht installierbar über Ihre veröffentlichten Inhaltsansichtsversionen, die auf den ausgewählten Hosts laufen. Es werden neue Versionen der Inhaltsansicht (siehe unten)\n erstellt, wodurch dieses Errata in der Umgebung des Hosts installierbar wird. Diese neue Version ersetzt die aktuelle Version in der Lebenszyklusumgebung\n Ihres Hosts. Um diese Errata sofort nach Veröffentlichung auf Hosts zu installieren, setzen Sie einen Haken am Auswahlfeld unten.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"Nur Inhaltshosts anzeigen, für die die Errata derzeit in der Lebenszyklusumgebung des Hosts installierbar ist.","Operating System":"Betriebssystem","Organization":"Organisation","Original Sync Date":"Erste Synchronisation","OS":"Betriebssystem","OSTree Branches":"OSTree-Branches","OSTree Repositories":"OSTree-Repositorys","Package":"Paket","Package Actions":"Paketaktionen","Package Filter:":"Paketfilter:","Package Group":"Paketgruppe","Package Group Filter:":"Paketgruppenfilter:","Package Group successfully added.":"Paketgruppe erfolgreich hinzugefügt.","Package Group successfully removed.":"Paketgruppe erfolgreich entfernt.","Package Groups":"Paketgruppen","Package Install":"Paketinstallation","Package Installation, Removal, and Update":"Installieren, Entfernen und Aktualisieren von Paketen","Package Remove":"Paketentfernung","Package successfully added.":"Paket erfolgreich hinzugefügt.","Package successfully removed.":"Paket erfolgreich entfernt.","Package successfully updated.":"Paket erfolgreich aktualisiert.","Package Update":"Paketaktualisierung","Package/Group Name":"Paket-/Gruppenname","Packages":"Pakete","Packages <div>{{ library.counts.packages || 0 }}</div>":"Pakete <div>{{ library.counts.packages || 0 }}</div>","Packages for:":"Pakete für:","Parameters":"Parameter","Password":"Passwort","Path":"Pfad","Perform":"Ausführen","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"Bitte wählen Sie eine Lebenszyklusumgebung und Inhaltsansicht, in die diese betroffenen Aktivierungsschlüssel verlegt werden sollen:","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"Bitte wählen Sie eine Lebenszyklusumgebung und Inhaltsansicht, in die diese Inhaltshosts verlegt werden sollen:","Please select a Lifecycle Environment.":"Bitte wählen Sie eine Lebenszyklusumgebung.","Please select an environment.":"Bitte wählen Sie eine Umgebung.","Please select one from the list below and you will be redirected.":"Bitte wählen Sie aus der Liste unten, Sie werden anschließend weitergeleitet.","Product":"Produkt","Product Count":"Produktanzahl","Product Enhancement Advisory":"Produkterweiterungs-Advisory","Product information for:":"Produktinformationen für:","Product Management for Sync Plan:":"Produktverwaltung für Synchronisationsplan:","Product Name":"Produktname","Product Saved":"Produkt gespeichert","Products":"Produkte","Products <div>{{ library.counts.products || 0 }}</div>":"Produkte <div>{{ library.counts.products || 0 }}</div>","Promote":"Übertragen","Promote Content View:":"Inhaltsansicht übertragen:","Promote Version":"Version übertragen","Promote Version {{ version.version }}":"Version {{ version.version }} übertragen","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"Version übertragen auf {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"Übertragen nach %s","Promoting to %count environments.":"Übertragen in %count Umgebungen.","Promoting to 1 environment.":"Übertragen in 1 Umgebung.","Promotion History":"Übertragungschronik","Provisioning Details":"Bereitstellungsdetails","Provisioning Host Details":"Bereitstellungshost-Details","Publish Content View:":"Inhaltsansicht veröffentlichen:","Publish New Version":"Neue Version veröffentlichen","Publish via HTTP":"Über HTTP veröffentlichen","Publish via HTTPS":"Über HTTPS veröffentlichen","Published":"Veröffentlicht","Published At":"Veröffentlicht unter","Published new version":"Neue Version veröffentlicht","Published Repository Information":"Repository-Informationen veröffentlicht","Publishing and promoting to %count environments.":"Veröffentlichen und übertragen in %count Umgebungen.","Publishing and promoting to 1 environment.":"Veröffentlichen und übertragen in 1 Umgebung.","Puppet Environment":"Puppet-Umgebung","Puppet module added to Content View":"Puppet-Modul zur Inhaltsansicht hinzugefügt","Puppet Modules":"Puppet-Module","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Puppet-Module <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"Puppet-Module für Inhaltsansicht:","Quantity":"Anzahl","RAM (GB)":"RAM (GB)","Range":"Bereich","Reboot Suggested":"Neustart empfohlen","Reboot Suggested?":"Neustart empfohlen?","Red Hat Repositories page":"Red Hat Repositorys","Red Hat Repositories page.":"Red Hat Repositorys-Seite.","Refresh Table":"Tabelle aktualisieren","Register a Content Host":"Inhaltshost registrieren","Register Content Host":"Inhaltshosts registrieren","Registered":"Registriert","Registered By":"Registriert durch","Registry URL":"Registry-URL","Release":"Release","Release Version":"Release-Version","Removal of selected repositories initiated successfully.":"Entfernen der ausgewählten Repositorys erfolgreich eingeleitet.","Remove":"Entfernen","Remove Activation Key \"{{ activationKey.name }}\"?":"Aktivierungsschlüssel \"{{ activationKey.name }}\" entfernen?","Remove Content View":"Inhaltsansicht entfernen","Remove Content Views":"Inhaltsansichten entfernen","Remove Errata":"Errata entfernen","Remove From":"Entfernen von","Remove Host Collection \"{{ hostCollection.name }}\"?":"Host-Sammlung \"{{ hostCollection.name }}\" entfernen?","Remove Module":"Modul entfernen","Remove Package Group":"Paketgruppe entfernen","Remove Packages":"Pakete entfernen","Remove Product":"Produkt entfernen","Remove Product \"{{ product.name }}\"?":"Produkt \"{{ product.name }}\" entfernen?","Remove Puppet Modules":"Puppet-Module entfernen","Remove Repositories":"Repositorys entfernen","Remove Repository":"Repository entfernen","Remove Repository \"{{ repository.name }}\"?":"Repository \"{{ repository.name }}\" entfernen?","Remove Selected":"Ausgewählte entfernen","Remove Successful.":"Erfolgreich entfernt.","Remove Sync Plan":"Synchronisationsplan entfernen","Remove Sync Plan \"{{ syncPlan.name }}\"?":"Synchronisationsplan \"{{ syncPlan.name }}\" entfernen?","Remove Version":"Version entfernen","Remove Version Confirmation":"Entfernen der Version bestätigen","Removed %x host collections from activation key \"%y\".":"%x Hostsammlungen wurden vom Aktivierungsschlüssel \"%y\" entfernt.","Removed %x host collections from content host \"%y\".":"%x Hostsammlungen wurden vom Inhaltshost \"%y\" entfernt.","Removed %x products from sync plan \"%y\".":"%x Produkte wurden vom Synchronisationsplan \"%y\" entfernt.","Removing Repositories":"Repositorys werden entfernt","Repo Discovery":"Repository-Suche","Repositories":"Repositorys","Repositories containing Errata {{ errata.errata_id }}":"Repositorys mit Errata {{ errata.errata_id }}","Repositories for Content View:":"Repositorys für Inhaltsansicht:","Repositories for Errata:":"Repositorys für Errata:","Repositories for Filter:":"Repositorys für Filter:","Repositories for Product:":"Repositorys für Produkt:","Repository":"Repository","Repository \"%s\" successfully deleted":"Repository \"%s\" erfolgreich gelöscht","Repository %s successfully created.":"Repository %s erfolgreich erstellt.","Repository Count":"Repository-Anzahl","Repository Discovery":"Repository-Suche","Repository Name":"Repository-Name","Repository Saved.":"Repository gespeichert.","Repository Selection":"Repository-Auswahl","Repository:":"Repository:","Result":"Ergebnis","Role":"Rolle","RPM":"RPM","RPM Name":"RPM-Name","RPMs":"RPMs","Run Auto-Attach":"Automatische Verknüpfung ausführen","Save Successful.":"Erfolgreich gespeichert.","Security":"Sicherheit","Security Advisory":"Sicherheits-Advisory","Select a Content Source:":"Inhaltsquelle wählen:","Select A New Puppet Module To Add":"Neues Puppet-Modul zum Hinzufügen wählen","Select a Version":"Version wählen","Select an Available Version of {{ $stateParams.moduleName }}":"Verfügbare Version von {{ $stateParams.moduleName }} wählen","Select an Organization":"Organisation wählen","Select new version":"Neue Version wählen","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"Wählen Sie die Lebenszyklusumgebungen, von denen Sie Version {{ version.version }} entfernen möchten:","Select Version":"Version wählen","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"Wenn Sie diese Option wählen, wird die Version vollständig gelöscht und ist nicht länger zur Übertragung verfügbar. Die Version muss aus allen Lebenszyklusumgebungen entfernt werden, um diese Option zu wählen.","Service Level":"Servicelevel","Severity":"Schweregrad","Show affected Activation Keys":"Betroffene Aktivierungsschlüssel anzeigen","Show affected Content Hosts":"Betroffene Inhaltshosts anzeigen","Sockets":"Sockets","Solution":"Lösung","Source RPM":"Quell-RPM","Start Date":"Startdatum","Start Time":"Startzeit","Started At":"Gestartet am","Starting":"Start","Starts":"Beginnt","State":"Status","Status":"Status","Stream":"Stream","Subscription Details":"Subskriptionsdetails","Subscription Status":"Subskriptionsstatus","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Subskriptionen","Subscriptions for Activation Key:":"Subskriptionen für Aktivierungsschlüssel:","Subscriptions for:":"Subskriptionen für:","Successfully added %s subscriptions.":"%s Subskriptionen erfolgreich hinzugefügt.","Successfully deleted %cv version %ver.":"%cv Version %ver erfolgreich gelöscht.","Successfully initiated deletion of %cv version %ver.":"Löschen von %cv Version %ver erfolgreich initiiert.","Successfully initiated promotion of %cv version %ver to %env.":"Übertragen von %cv Version %ver in %env erfolgreich initiiert.","Successfully initiated removal of %cv version %ver.":"Entfernen von %cv Version %ver erfolgreich initiiert.","Successfully promoted %cv version %ver to %env":"%cv Version %ver erfolgreich in %env übertragen","Successfully published %cv version %ver and promoted to Library":"%cv Version %ver erfolgreich veröffentlicht und in Library übertragen","Successfully removed %cv version %ver from environments: %env":"%cv Version %ver erfolgreich aus Umgebungen %env entfernt","Successfully removed %s items.":"%s Elemente erfolgreich entfernt.","Successfully removed %s subscriptions.":"%s Subskriptionen erfolgreich entfernt.","Successfully removed 1 item.":"1 Element erfolgreich entfernt.","Successfully updated subscriptions.":"Subskriptionen erfolgreich aktualisiert.","Summary":"Zusammenfassung","Support Level":"Supportlevel","Sync Enabled":"Synchronisation aktiviert","Sync Interval":"Synchronisationsintervall","Sync Now":"Jetzt synchronisieren","Sync Plan":"Synchronisationsplan","Sync Plan %s has been deleted.":"Synchronisationsplan %s wurde gelöscht.","Sync Plan Saved":"Synchronisationsplan gespeichert","Sync Plan:":"Synchronisationsplan:","Sync Plans":"Synchronisationspläne","Sync State":"Syncronisationsstatus","Sync Status":"Synchronisationsstatus","Synced manually, no interval set.":"Manuell synchronisiert, kein Intervall festgelegt.","Tags":"Tags","Task Details":"Taskdetails","Tasks":"Tasks","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"Die nachfolgend aufgeführten Aktivierungsschlüssel verwenden derzeit diese Inhaltsansichtsversion. Bevor Sie die Version löschen, müssen Sie diese Aktivierungsschlüssel in eine Lebenszyklusumgebung verlegen, in der diese Version nicht in Gebrauch ist.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"Das Archiv dieser Version wird gelöscht. Diese Version wird nicht mehr verfügbar sein, sobald der Löschvorgang abgeschlossen ist.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"Das Archiv dieser Version wird nicht gelöscht. Diese Version wird weiterhin zur Übertragung in eine Lebenszyklusumgebung verfügbar sein.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Die nachfolgend aufgeführten Inhaltshosts verwenden derzeit diese Inhaltsansichtsversion. Bevor Sie die Version entfernen, müssen Sie diese Inhaltshosts in eine Umgebung verlegen, in der diese Version nicht in Gebrauch ist.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"Die Inhaltsansicht oder Lebenszyklusumgebung muss aktualisiert werden, um Errata für diese Hosts verfügbar zu machen.","The following actions can be performed on content hosts in this host collection:":"Die folgenden Aktionen können auf Inhaltshosts in dieser Hostsammlung ausgeführt werden:","The page you are attempting to access requires selecting a specific organization.":"Die Seite, auf die Sie zugreifen möchten, erfordert die Auswahl einer bestimmten Organisation.","The selected environment contains no Content Views, please select a different environment.":"Die gewählte Umgebung einhält keine Inhaltsansichten, bitte wählen Sie eine andere Umgebung.","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Mit dieser Inhaltsansicht sind derzeit keine Repositorys verknüpft. Sie können welche hinzufügen, indem Sie auf den Reiter \"Hinzufügen\" klicken.","There are currently no repositories to add to this Content View,":"Es gibt keine Repositorys zum Hinzufügen zu dieser Inhaltsansicht,","There are no Content Views in this Environment.":"Es gibt keine Inhaltsansichten in dieser Umgebung.","There are no Content Views that match the criteria.":"Es gibt keine Inhaltsansichten, die mit diesen Kriterien übereinstimmen.","There are no Errata associated with this Content Host to display.":"Es gibt keine anzuzeigenden Errata, die mit diesem Inhaltshost verknüpft sind.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"Es gibt keine Errata in dieser Organisation. Erstellen Sie ein oder mehrere Produkte mit Errata, um auf dieser Seite Errata anzuzeigen.","There are no Errata to display.":"Es gibt keine anzuzeigenden Errata.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Es sind keine Hostsammlungen verfügbar. Sie können neue Hostsammlungen erstellen, wenn Sie im Hauptmenü \"Hosts\" auf \"Hostsammlungen\" klicken.","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"Derzeit läuft eine inkrementelle Aktualisierung. Diese Aktualisierung muss abgeschlossen sein, bevor vorhandene Aktualisierungen angewendet werden können.","This activation key is not associated with any content hosts.":"Dieser Aktivierungsschlüssel ist derzeit mit keinen Inhaltshosts verknüpft.","This activation key may be used during system registration. For example:":"Dieser Aktivierungsschlüssel kann während der Systemregistrierung verwendet werden. Zum Beispiel:","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Diese Inhaltsansicht hat keine Versionen. Erstellen Sie Ihre erste Inhaltsansichtsversion über die Schaltfläche \"Neue Version veröffentlichen\" rechts.","This filter applies only to a subset of repositories in the content view.":"Dieser Filter gilt nur für eine Untergruppe von Repositorys in der Inhaltsansicht.","This filter applies to all repositories in the content view (current and future).":"Dieser Filter gilt für alle Repositorys in der Inhaltsansicht (aktuell und zukünftig).","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Diese Version kann aufgrund einer der unten genannten Gründe nicht von allen Lebenszyklusumgebungen gelöscht werden","This Version is not associated with any Lifecycle Environments.":"Diese Version ist mit keinen Lebenszyklusumgebungen verknüpft.","This version will be removed from:":"Diese Version wird entfernt von:","Title":"Titel","to manage them individually.":"um sie einzeln zu verwalten.","To register a content host to this server, follow these steps.":"Um einen Inhaltshosts bei diesem Server zu registrieren, gehen Sie folgendermaßen vor.","Topic":"Thema","Type":"Typ","Unknown":"Unbekannt","Unlimited Content Hosts:":"Unbegrenzte Inhaltshosts:","Update":"Aktualisieren","Update Repositories":"Repositorys aktualisieren","Update Sync Plan":"Synchronisationsplan aktualisieren","Updated":"Aktualisiert","Updated errata filter -":"Errata-Filter aktualisiert -","Upload":"Hochladen","Upload Package":"Paket hochladen","Upload Puppet Module":"Puppet-Modul hochladen","Uploading...":"Hochladen …","Upstream Repository Name":"Upstream-Repository-Name","User":"Benutzer","Username":"Benutzername","Version":"Version","Version Deletion":"Versionslöschung","Version Details":"Versionsdetails","Version:":"Version:","Versions":"Versionen","Versions for Content View:":"Versionen für Inhaltsansicht:","Versions for Puppet Module:":"Versionen für Puppet-Modul:","Virtual Guests":"Virtuelle Gäste","Virtual Host":"Virtuelle Hosts","weekly":"wöchentlich","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Wöchentlich am {{ product.sync_plan.sync_date | date:'EEEE' }} um {{ product.sync_plan.sync_date | date:'mediumTime' }} (Serverzeit)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Wenn die automatische Verknüpfung deaktiviert ist, werden neu registrierte Systeme mit allen zugewiesenen Subskriptionen verknüpft.","Working":"In Arbeit","Yes":"Ja","You cannot remove these repositories because they belong to a Red Hat product.":"Sie können diese Repositorys nicht entfernen, da Sie zu einem Red Hat Produkt gehören.","You cannot remove these repositories because you do not have permission.":"Sie können diese Repositorys nicht entfernen, da Sie keine Berechtigung dazu haben.","You cannot remove this product because it is a Red Hat product.":"Sie können dieses Produkt nicht entfernen, da es ein Red Hat Produkt ist.","You cannot remove this product because it was published to a content view.":"Sie können dieses Produkt nicht entfernen, da es in einer Inhaltsansicht veröffentlicht wurde.","You cannot remove this product because you do not have permission.":"Sie können dieses Produkt nicht entfernen, da Sie keine Berechtigung dazu haben.","You cannot remove this repository because it is a Red Hat repository.":"Sie können dieses Repository nicht entfernen, da es ein Red Hat Repository ist.","You cannot remove this repository because it was published to a content view.":"Sie können dieses Repository nicht entfernen, da es in einer Inhaltsansicht veröffentlicht wurde.","You cannot remove this repository because you do not have permission.":"Sie können dieses Repository nicht entfernen, da Sie keine Berechtigung dazu haben.","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"Sie haben derzeit keine Aktivierungsschlüssel. Sie können über die Schaltfläche rechts neue Aktivierungsschlüssel hinzufügen.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"Sie haben derzeit keine Inhaltshosts. Sie können neue Inhaltshosts erstellen, indem Sie im Hauptmenü den Punkt \"Inhaltshosts\" wählen und anschließend auf die Schaltfläche rechts klicken.","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"Sie haben derzeit keine Inhaltshosts. Sie können neue Inhaltshosts registrieren, indem Sie auf die Schaltfläche rechts klicken und den Anweisungen folgen.","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"Sie haben derzeit keine Inhaltsansichten. Sie können neue Inhaltsansichten hinzufügen, indem Sie auf die Schaltfläche rechts klicken.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"In dieser Inhaltsansicht sind derzeit keine Filter enthalten. Sie können über die Schaltfläche rechts einen neuen Filter hinzufügen.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"Sie haben derzeit keine Hostsammlungen. Sie können über die Schaltfläche rechts neue Hostsammlungen hinzufügen.","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"Sie haben derzeit keine Produkte<span bst-feature-flag=\"custom_products\">. Sie können über die Schaltfläche rechts Produkte hinzufügen</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"In dieser Inhaltsansicht sind derzeit keine Puppet-Module enthalten. Sie können über die Schaltfläche rechts Puppet-Module hinzufügen.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"In diesem Produkt sind derzeit keine Repositorys enthalten. Sie können über die Schaltfläche rechts Repositorys hinzufügen.","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"Sie haben derzeit keine Synchronisationspläne. Sie können über die Schaltfläche rechts einen neuen Synchronisationsplan erstellen.","You do not have any Installed Products":"Sie haben keine installierten Produkte","You must select a content view in order to save your environment.":"Sie müssen eine Inhaltsansicht auswählen, um Ihre Umgebung zu speichern.","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"Sie müssen eine neue Inhaltsansicht wählen, bevor die Änderung der Umgebung gespeichert werden kann. Klicken Sie auf \"Abbrechen\" in der Inhaltsansichtsauswahl, um Ihre Umgebungsauswahl zurückzusetzen.","You must select at least one Content Host in order to apply Errata.":"Sie müssen mindestens einen Inhaltshost auswählen, um Errata anzuwenden.","You must select at least one Errata to apply.":"Sie müssen mindestens ein Erratum zur Anwendung auswählen.","You must select at least one repository.":"Sie müssen mindestens ein Repository auswählen.","Yum Content":"Yum-Inhalte","Yum Metadata Checksum":"Yum-Metadaten-Prüfsumme","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Die Generierung von Yum-Metadaten wurde im Hintergrund initiiert. Klicken Sie <a href=\"{{ taskUrl() }}\">hier</a>, um den Fortschritt nachzuverfolgen.","Yum Repositories":"Yum-Repositorys","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Yum-Repositorys <div>{{ library.counts.yum_repositories || 0 }}</div>"});
4
- gettextCatalog.setStrings('es', {"- Date and Type":"- Fecha y tipo","-- select an interval --":"-- seleccionar un intervalo --","(Not all Activation Keys editable )":"(No todas las llaves de activación son modificables)","(Not all Content Hosts editable )":"(No todos los hosts de contenido son modificables)","{{ 'Add Selected' | translate }}":"{{ 'Añadir seleccionado' | translate }}","{{ componentContentView.puppet_modules.length || 0 }} Puppet Modules":"{{ componentContentView.puppet_modules.length || 0 }} módulos Puppet","{{ componentContentView.repositories.length || 0 }} Repositories":"{{ componentContentView.repositories.length || 0 }} repositorios","{{ contentCredential.name }}":"{{ contentCredential.name }}","{{ contentView.name }}":"{{ contentView.name }}","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} no se puede borrar porque una o más versiones de visión de contenido aún se están promoviendo a un entorno de ciclo de vida.\n Cada versión de vista de contenido debe ser retirada de los entornos de ciclo de vida antes de borrar la vista de contenido.","{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet Modules":"{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} módulos Puppet","{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories":"{{ contentViewComponent.content_view_version.repositories.length || 0 }} repositorios","{{ deb.name }}":"{{ deb.name }}","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} aplicable,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} instalable","{{ errata.title }}":"{{ errata.title }}","{{ file.name }}":"{{ file.name }}","{{ filter.inclusion | filterType }} Tag":"{{ filter.inclusion | filterType }} etiqueta","{{ host.name }}":"{{ host.name }}","{{ host.subscription_facet_attributes.user.login }}":"{{ host.subscription_facet_attributes.user.login }}","{{ installedPackageCount }} Host(s)":"{{ installedPackageCount }} host(s)","{{ package.hosts_applicable_count }} Host(s)":"{{ package.hosts_applicable_count }} host(s)","{{ package.hosts_applicable_count || 0 }} Applicable,":"{{ package.hosts_applicable_count || 0 }} aplicable,","{{ package.hosts_available_count }} Host(s)":"{{ package.hosts_available_count }} host(s)","{{ package.hosts_available_count || 0 }} Upgradable":"{{ package.hosts_available_count || 0 }} actualizable","{{ package.human_readable_size }} ({{ package.size }} Bytes)":"{{ package.human_readable_size }} ({{ package.size }} bytes)","{{ product.active_task_count }}":"{{ product.active_task_count }}","{{ product.name }}":"{{ product.name }}","{{ puppetModule.name }}":"{{ puppetModule.name }}","{{ repository.content_counts.deb }} deb Packages":"{{ repository.content_counts.deb }} Paquetes deb","{{ repository.content_counts.deb || 0 }} deb Packages":"{{ repository.content_counts.deb || 0 }} Paquetes deb","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} Erratas","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} erratas","{{ repository.content_counts.file || 0 }} Files":"{{ repository.content_counts.file || 0 }} archivos","{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches":"{{ repository.content_counts.ostree_branch || 0 }} etiquetas OSTree","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} módulos Puppet","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} paquetes","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} paquetes","{{ repository.content_counts.srpm }} Source RPMs":"{{ repository.content_counts.srpm }} RPM de fuente","{{ repository.last_sync_words }} ago":"Hace {{ repository.last_sync_words }}","{{ repository.name }}":"{{ repository.name }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} llaves de activación se moverán a {{ deleteOptions.activationKeys.contentView.name }} en {{ deleteOptions.activationKeys.environment.name }}","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} hosts de contenido se moverán a {{ deleteOptions.contentHosts.contentView.name }} en {{ deleteOptions.contentHosts.environment.name }}","{{ type.display }}":"{{ type.display }}","{{ version.deb_count }} deb Packages":"{{ version.deb_count }} Paquetes deb","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} erratas","{{ version.file_count }} Files":"{{ version.file_count }} archivos","{{ version.ostree_branch_count }} OSTree Branches":"{{ version.ostree_branch_count }} etiquetas OSTree","{{ version.package_count }} Packages":"{{ version.package_count }} paquetes","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} módulos Puppet","{{ version.srpm_count }} Source RPMs":"{{ version.srpm_count }} RPM de fuente","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* Estas versiones de vista de contenido pertenecen a Vistas de contenido compuestas. Los componentes que deben actualizarse se enumeran a continuación. ","%(consumed)s out of %(quantity)s":"%(consumed)s de %(quantity)s","%count environment(s) can be synchronized: %envs":"%count entornos se pueden sincronizar: %envs","<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>":"<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>","<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>":"<a ui-sref=\"content-view.version.details({versionId: version.id})\">Versión {{ version.version }}</a>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n Los entornos con asterisco se sugieren para promoción.","<i class=\"fa fa-warning inline-icon\"></i>\n This Host is not currently registered with subscription-manager. Click <a ui-sref=\"content-hosts.register\">here</a> for registration information.":"<i class=\"fa fa-warning inline-icon\"></i>\n En este momento, este host no se encuentra registrado con suscription-manager. \nHaga clic<a ui-sref=\"content-hosts.register\">aquí</a> para acceder a información del registro.","<span translate=\"\">\n If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">to manage them individually.</span>":"<span translate=\"\">\n Si prefiere mover porciones de llaves de activación a diferentes vistas de contenido o entorno de ciclo de vida, haga clic\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">aquí</a>\n <span translate=\"\">para administrarlas individualmente.</span>","1 repository sync in progress.":["1 sincronización de repositorio en progreso.","{{ product.sync_summary.pending}} sincronizaciones de repositorios en progreso."],"1 successfully synced repository.":["1 repositorio ha sido sincronizado correctamente. ","{{ product.sync_summary.success}} repositorios han sido sincronizados correctamente."],"A composite view contains other content views.":"Una vista compuesta contiene otras vistas de contenido.","A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n It can be promoted to other environments from the Versions tab of this Content View.":"Una nueva versión de {{ contentView.name }} se creará y promoverá al entorno de biblioteca.\n Puede promoverse a otros entornos desde la pestaña Versiones de esta vista de contenido.","A newer version is available: {{ contentViewComponent.content_view.latest_version }}":"Hay una versión más reciente disponible: {{ contentViewComponent.content_view.latest_version }}","A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>":"Se ha iniciado una sincronización en segundo plano, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">haga clic aquí para obtener más información.</a>","Account":"Cuenta","Action":"Acción","Action Type":"Tipo de acción","Actions":"Acciones","Activation Key":["Llave de activación","Llaves de activación"],"Activation Key Content":"Contenido de la llave de activación","Activation Key removed.":"Se ha eliminado la llave de activación.","Activation Key updated":"Se ha actualizado la llave de activación.","Activation Key:":"Llave de activación:","Activation Keys":"Llaves de activación","Activation Keys using Version {{ version.version }}":"Llaves de activación con la versión {{ version.version }}","Active Tasks":"Tareas activas","Add":"Añadir","Add Content Hosts to:":"Añadir hosts de contenido a:","Add Content Views":"Añadir vistas de contenido","Add Content Views to {{ contentView.name }}":"Añadir vistas de contenido a {{ contentView.name }}","Add Errata":"Añadir erratas","Add New Environment":"Añadir un nuevo entorno","Add New Module":"Añadir nuevo módulo","Add New Yum Filter":"Añadir un nuevo filtro Yum","Add Package Group":"Añadir grupo de paquetes","Add Repositories":"Añadir repositorios","Add Rule":"Añadir regla","Add Selected":"Añadir seleccionado","add some repositories.":"añadir algunos repositorios.","Add Subscriptions for Activation Key:":"Añadir suscripciones para la llave de activación:","Add Subscriptions for Content Host:":"Agregar suscripciones para el host de contenido:","Add To":"Añadir a","Added %x host collections to activation key \"%y\".":"Se han añadido %x colecciones de hosts a la llave de activación \"%y\".","Added %x host collections to content host \"%y\".":"Se han añadido %x colecciones de hosts al host de contenido \"%y\".","Added %x products to sync plan \"%y\".":"Se han añadido %x productos al plan de sincronización \"%y\".","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Adición de entorno de ciclo de vida al final de \"{{ priorEnvironment.name }}\"","Advanced Sync":"Sincronización avanzada","Advisory":"Recomendación","Affected Activation Keys":"Llaves de activación afectadas","Affected Content Hosts":"Hosts de contenido afectados","Affected Hosts":"Hosts afectados","Affected Repositories":"Repositorios afectados","Affected repositories have been updated.":"Se han actualizado los repositorios afectados.","All Content Views":"Todas las vistas de contenido","All History":"Todo el historial","All Products":"Todos los productos","All Repositories":"Todos los repositorios","All Versions":"Todas las versiones","Always Use Latest (Currently %s)":"Utilizar siempre el más reciente (actualmente, %s)","Always Use Latest (Currently no versions)":"Utilizar siempre el más reciente (en este momento, no hay versiones)","An error occured: %s":"Ocurrió un error: %s","An error occurred initiating the sync:":"Ocurrió un error al iniciar la sincronización:","An error occurred removing the Activation Key:":"Ocurrió un error al eliminar la llave de activación:","An error occurred removing the content hosts.":"Ocurrió un error al eliminar los hosts de contenido.","An error occurred removing the environment:":"Ocurrió un error al eliminar el entorno:","An error occurred removing the Host Collection:":"Ocurrió un error al eliminar la colección de hosts:","An error occurred removing the subscriptions.":"Ocurrió un error al eliminar las suscripciones.","An error occurred saving the Activation Key:":"Ocurrió un error al guardar la llave de activación:","An error occurred saving the Content Host:":"Ocurrió un error al guardar el host de contenido:","An error occurred saving the Environment:":"Ocurrió un error al guardar el entorno:","An error occurred saving the Filter:":"Ocurrió un error al guardar el filtro:","An error occurred saving the Host Collection:":"Ocurrió un error al guardar la colección de hosts:","An error occurred saving the Product:":"Ocurrió un error al guardar el producto:","An error occurred saving the Repository:":"Ocurrió un error al guardar el repositorio:","An error occurred saving the Sync Plan:":"Ocurrió un error al guardar el plan de sincronización:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Ocurrió un error al intentar asociar automáticamente las suscripciones. Revise el registro para obtener más información.","An error occurred updating the Content View:":"Ocurrió un error al actualizar la vista de contenido:","An error occurred updating the sync plan:":"Ocurrió un error al actualizar el plan de sincronización:","An error occurred while creating the Content Credential:":"Ocurrió un error al crear la credencial de contenidos:","An error occurred while creating the Product: %s":"Ocurrió un error al crear el producto: %s","An error occurred:":"Ocurrió un error:","Applicable":"Aplicable","Applicable Content Hosts":"Hosts de contenido aplicables","Applicable Errata":"Erratas aplicables","Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\".":"Se aplica solo a vistas compuestas. Publique automáticamente la vista compuesta al crear una nueva versión de una vista de contenido compuesta. Tenga en cuenta también que la publicación automática solo se podrá ejecutar cuando el componente esté marcado como \"último\".","Applicable Packages":"Paquetes aplicables","Applicable To":"Aplicable a","Applicable to Host":"Aplicable al host","Application":"Aplicación","Apply":"Aplicar","Apply {{ errata.errata_id }}":"Aplicar {{ errata.errata_id }}","Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?":"¿Aplicar {{ errata.errata_id }} a {{ contentHostIds.length }} host(s) de contenido?","Apply {{ errata.errata_id }} to all Content Host(s)?":"¿Aplicar {{ errata.errata_id }} a todos los hosts de contenido?","Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content Host(s)?":"¿Aplicar {{ errataIds.length }} erratas a {{ contentHostIds.length }} host(s) de contenido?","Apply {{ errataIds.length }} Errata to all Content Host(s)?":"¿Aplicar errata {{ errataIds.length }} a todos los hosts de contenido?","Apply Errata":"Aplicar erratas","Apply Errata to Content Host \"{{host.name}}\"?":"¿Aplicar erratas al host de contenido \"{{host.name}}\"?","Apply Errata to Content Hosts":"Aplicar erratas a hosts de contenido","Apply Errata to Content Hosts immediately after publishing.":"Aplicar erratas a hosts de contenido inmediatamente después de la publicación.","Apply Selected":"Aplicar seleccionado","Apply to Content Hosts":"Aplicar a hosts de contenido","Apply to Hosts":"Aplicar a hosts ","Applying":"Aplicación","Apt Repositories":"Repositorios Apt","Arch":"Arquitectura","Architecture":"Arquitectura","Architectures":"Arquitecturas","Archived Copy":"Copia archivada","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"¿Está seguro de que desea añadir los {{ table.numSelected }} hosts de contenido seleccionados a las colecciones de hosts elegidas?","Are you sure you want to add the sync plan to the selected products(s)?":"¿Está seguro de que desea agregar el plan de sincronización a los productos seleccionados?","Are you sure you want to apply Errata to content host \"{{ host.name }}\"?":"¿Está seguro de que desea aplicar erratas al host de contenido\"{{ host.name }}\"?","Are you sure you want to apply the {{ table.numSelected }} selected errata to the content hosts chosen?":"¿Está seguro de que desea aplicar las {{ table.numSelected }} erratas seleccionadas a los hosts de contenido elegidos?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"¿Está seguro de que desea asignar los {{ table.numSelected }} hosts de contenido seleccionados a {{ selected.contentView.name }} en {{ selected.environment.name }}?","Are you sure you want to disable the {{ table.numSelected }} repository set(s) chosen?":"¿Está seguro de querer desactivar los {{ table.numSelected }} conjuntos de repositorios elegidos?","Are you sure you want to enable the {{ table.numSelected }} repository set(s) chosen?":"¿Está seguro de querer activar los {{ table.numSelected }} conjuntos de repositorios elegidos?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"¿Está seguro de que desea instalar {{ content.content }} en los {{ getSelectedSystemIds().length }} sistemas seleccionados?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"¿Está seguro de que desea eliminar {{ content.content }} de los {{ getSelectedSystemIds().length }} sistemas seleccionados?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"¿Está seguro de que desea eliminar la llave de activación \"{{ activationKey.name }}\"?","Are you sure you want to remove Content Credential {{ contentCredential.name }}?":"¿Está seguro de que desea eliminar la credencial de contenidos {{ contentCredential.name }}?","Are you sure you want to remove Content View \"{{ contentView.name }}\"?":"¿Está seguro de que desea eliminar la vista de contenido \"{{ contentView.name }}\"?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"¿Está seguro de que desea retirar esta colección de hosts \"{{ hostCollection.name }}\"?","Are you sure you want to remove product \"{{ product.name }}\"?":"¿Está seguro de que desea retirar el producto \"{{ product.name }}\"?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"¿Está seguro de que desea retirar el repositorio \"{{ repository.name }}\"?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"¿Está seguro de que desea retirar el plan de sincronización \"{{ syncPlan.name }}\"?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"¿Está seguro de que desea eliminar los {{ table.numSelected }} hosts de contenido seleccionados de las colecciones de hosts elegidas?","Are you sure you want to remove the sync plan from the selected product(s)?":"¿Está seguro de que desea eliminar el plan de sincronización de los productos seleccionados?","Are you sure you want to reset to default the {{ table.numSelected }} repository set(s) chosen?":"¿Está seguro de que desea restablecer el valor predeterminado de los {{ table.numSelected }} conjuntos de repositorios seleccionados?","Are you sure you want to restart services on content host \"{{ host.name }}\"?":"¿Está seguro de que desea reiniciar los servicios en el host de contenido \"{{ host.name }}\"?","Are you sure you want to set the Release Version the {{ table.numSelected }} content host(s) selected to {{ selected.release }}?. This action will affect only those Content Hosts that belong to the appropriate Content View and Lifecycle Environment containining that release version.":"¿Está seguro de que desea definir la versión de lanzamiento seleccionada por el(los) {{ table.numSelected }} host(s) de contenido seleccionado(s) para {{ selected.release }}? Esta acción afectará únicamente los hosts de contenido que pertenezcan a la vista de contenido correspondiente y al entorno del ciclo de vida que contenga dicha versión de lanzamiento.","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"¿Está seguro de que desea actualizar {{ content.content }} en los {{ getSelectedSystemIds().length }} sistemas seleccionados?","Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?":"¿Está seguro de que desea actualizar todos los paquetes del(de los) {{ getSelectedSystemIds().length }} sistema(s) seleccionado(s)?","As part of this deletion, 1 Content View Version will be deleted.":["Como parte del borrado, se borrará 1 versión de vista de contenido."," Como parte del borrado, se borrarán {{ versions.length }} versiones de vista de contenido."],"Assign":"Asignar","Assign Release Version":"Asignar versión de lanzamiento","Associations":"Asociaciones","At least one Errata needs to be selected to Apply.":"Se debe seleccionar por lo menos una errata para que aplique.","Attached":"Asociada","Author":"Autor","Auto Publish":"Publicación automática","Auto-Attach":"Asociar automáticamente","Automatic":"Automático","Available Content Views for Composite Content View:":"Vistas de contenido disponibles para vista de contenido compuesta:","Available Puppet Modules for Content View:":"Módulos Puppet disponibles para vista de contenido:","Available Schema Versions":"Versiones de esquema disponibles","Back":"Atrás","Back To Errata List":"Volver a la lista de erratas","Backend Identifier":"Identificador de backend","Basic Information":"Información básica","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"A continuación, se indican los conjuntos de contenido de repositorio que están disponibles para este host de contenido mediante sus suscripciones. En el caso de suscripciones Red Hat, se puede ofrecer contenido adicional mediante","Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"A continuación, se mencionan los conjuntos de repositorio disponibles actualmente para esta clave de activación mediante sus suscripciones. En el caso de suscripciones Red Hat, se puede ofrecer contenido adicional mediante","Between versions {{ rule.min_version }} and {{ rule.max_version }}":"Entre las versiones {{ rule.min_version }} y {{ rule.max_version }}","Bootable":"De arranque","Branch Info":"Información de sucursal","Branch Name":"Nombre de la etiqueta","Bug Fix":"Corrección de errores","Bug Fix Advisory":"Recomendación de corrección de errores","Bugfix":"Corrección de errores","Build Host":"Crear host","Build Information":"Desarrollar información","Build Time":"Tiempo de construcción","Cancel":"Cancelar","Cannot Remove":"No es posible eliminar","Cannot republish Repository without the proper permissions.":"No es posible volver a publicar el repositorio sin los permisos correspondientes.","Cannot republish Repository, a sync is already in progress.":"No es posible volver a publicar el repositorio ya que hay una sincronización en curso.","Cannot sync Repository without a URL.":"No es posible sincronizar un repositorio sin una URL.","Cannot sync Repository without the proper permissions.":"No es posible sincronizar un repositorio sin los permisos correspondientes.","Cannot sync Repository, a sync is already in progress.":"No es posible sincronizar el repositorio ya que hay una sincronización en curso.","Capacity":"Capacidad","Certificate":"Certificado","Change assigned Lifecycle Environment or Content View":"Cambiar entorno del ciclo de vida o vista de contenido asignados","Change Host Collections":"Cambiar colecciones de hosts","Change Lifecycle Environment":"Cambiar el entorno de ciclo de vida","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"Para modificar la configuración predeterminada de los hosts de contenido que se registran con esta llave de activación debe tener instalada en este host la herramienta subscription-manager versión 1.10 o posterior.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"Para modificar la configuración predeterminada debe tener instalada en el host la herramienta subscription-manager versión 1.10 o posterior.","Checksum":"Suma de verificación","Checksum Type":"Tipo de suma de verificación","Choose <b>Default</b> to enable the repository for all architectures":"Elija <b>Default</b> para habilitar el repositorio para todas las arquitecturas","Choose a lifecycle environment from the available promotion paths.":"Elija un entorno del ciclo de vida de las rutas de promoción disponibles.","Choose one of the policy selections for downloading ostree content from upstream url during synchronization. Choose \"Latest\" for downloading the latest version of the upstream branch. Choose \"All History\" to download all available versions of the upstream repository (this may take a large amount of space). Choose \"Custom Depth\" and provide an number to indicate the number of prior versions of the upstream branch to download.":"Elija una de las selecciones de políticas para descargar contenido ostree de la URL de upstream durante la sincronización. Seleccione \"Más reciente\" para descargar la última versión de la rama ascendente. Seleccione \"Todo el historial\" para descargar todas las versiones disponibles del repositorio upstream (puede consumir mucho espacio). Seleccione \"Profundidad personalizada\" e indique un número para señalar el número de versiones anteriores que pueden descargarse de la rama ascendente.","Click here to check the status of the task.":"Haga clic para verificar el estatus de la tarea.","Click here to select Errata for an Incremental Update.":"Haga clic para seleccionar erratas para una actualización incremental. ","Close":"Cerrar","Comma separated list of components to sync from (leave clear to sync all). Example: main":"Lista de componentes (separados por comas) desde los cuales ejecutar la sincronización (dejar en blanco para sincronizar desde todos) (p. ej. principal)","Comma separated list of processor architectures to filter the sync by. Example: amd64":"Lista de arquitecturas de procesador (separadas por comas) con las cuales filtrar la sincronización (p. ej., amd64)","Comma separated list of releases (suite or codename) to sync from. Default: stable":"Lista de lanzamientos (conjunto o nombre del código) (separados por comas) desde los cuales ejecutar la sincronización. Valor predeterminado: estable","Commit":"Validar","Complete Sync":"Completar sincronización","Completely remove version?":"¿Eliminar completamente la versión?","Components":"Componentes","Components:":"Componentes:","Composite":"Compuesto","Composite View":"Vista de compuesto","Composite View?":"¿Vista compuesta?","Confirm":"Confirmar","Confirm Remove":"Confirmar eliminación","Confirm Version Removal: Version {{ version.version }}":"Confirmar eliminación de versión: Versión {{ version.version }}","Container Images":"Imágenes de contenedores","Content":"Contenido","Content Counts":"Recuentos de contenido","Content Credential %s has been created.":"Se ha creado la credencial de contenidos %s.","Content Credential Contents":"Contenidos de la credencial de contenidos","Content Credential successfully uploaded":"La credencial de contenidos se cargó correctamente","Content credential updated":"Credencial de contenidos actualizada","Content Credentials":"Credenciales de contenidos","Content Host":"Host de contenido","Content Host Bulk Content":"Contenido masivo del host de contenido","Content Host Bulk Subscriptions":"Suscripciones masivas del host de contenido","Content Host Content":"Contenido del host de contenido","Content Host Counts":"Recuento de host de contenido","Content Host Limit":"Límite del host de contenido","Content Host Properties":"Propiedades del host de contenido","Content Host Registration":"Registro del host de contenido","Content Host Status":"Estado del host de contenido","Content Host:":"Host de contenido:","Content Hosts":"Hosts de contenido","Content Hosts for Activation Key:":"Hosts de contenido para la llave de activación:","Content Hosts for:":"Hosts de contenido para:","Content Hosts using Version {{ version.version }}":"Hosts de contenido que utilizan la versión {{ version.version }}","Content Type":"Tipo de contenido","Content View":"Vista de contenido","Content View Name":"Nombre de vista de contenido","Content View updated.":"Se ha actualizado la vista de contenido.","Content View Version":"Versión de vista de contenido","Content View:":"Vista de contenido:","Content Views":"Vistas de contenido","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Vista de contenido <div>{{ library.counts.content_views || 0 }}</div>","Content Views for {{ contentView.name }}":"Vistas de contenido para {{ contentView.name }}","Content Views for Composite Content View:":"Vistas de contenido para la vista de contenido compuesta:","Content Views for Deb:":"Vistas de contenido para Deb:","Content Views for File:":"Vistas de contenido para el archivo:","Content Views for Puppet Module:":"Vistas de contenido para el módulo Puppet:","Content Views that contain this Deb":"Vistas de contenido que contienen este Deb:","Content Views that contain this File":"Vistas de contenido que incluyen este archivo","Content Views that contain this Puppet Module":"Vistas de contenido que incluyen este módulo Puppet","Context":"Contenido","Contract":"Contrato","Copy Activation Key":"Copiar llave de activación","Copy Content View":"Copiar vista de contenido","Copy Content View:":"Copiar vista de contenido:","Copy Host Collection":"Copiar colección de hosts","Cores per Socket":"Núcleos por socket","Create":"Crear","Create a copy of {{ activationKey.name }}":"Crear una copia de {{ activationKey.name }}","Create a copy of {{ contentView.name }}":"Crear una copia de {{ contentView.name }}","Create a copy of {{ hostCollection.name }}":"Crear una copia de {{ hostCollection.name }}","Create a rule using the add button above.":"Crear una regla utilizando el botón de agregar, abajo.","Create Activation Key":"Crear llaves de activación","Create Content Credential":"Crear credencial de contenidos","Create Content View":"Crear vista de contenido","Create Discovered Repositories":"Crear repositorios descubiertos","Create Environment Path":"Crear ruta de entorno","Create Host Collection":"Crear colección de hosts","Create new view":"Crear vista","Create New View":"Crear vista","Create Product":"Crear producto","Create Selected":"Crear seleccionado","Create Status":"Crear estatus","Create Sync Plan":"Crear plan de sincronización","Create view from existing views":"Crear vista de entre las vistas existentes","Creating repository...":"Creando repositorio...","Critical":"Crítico","Current Subscriptions for Activation Key:":"Suscripciones actuales para la llave de activación:","Currently Selected Puppet Modules":"Módulos Puppet seleccionados actualmente","Custom Depth":"Profundidad personalizada","Custom Depth (Currently %s)":"Profundidad personalizada (actualmente, %s)","CVEs":"CVE","daily":"A diario","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Diariamente a las {{ product.sync_plan.sync_date | date:'mediumTime' }} (Hora del servidor)","Date":"Fecha","Date Type":"Tipo de fecha","deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"la generación de metadatos deb se ha iniciado en segundo plano. Haga clic <a href=\"{{ taskUrl() }}\">aquí</a> para supervisar el progreso.","deb Packages":"Paquetes deb","Deb Packages":"Paquetes Deb","Deb:":"Deb:","Debs":"Debs","Default":"Predeterminado","Delete Hosts":"Borrar hosts","Delete Version {{ version.version }}":"Borrar la versión {{ version.version }}","Deleted from %s":"Borrado de %s","Deleting from %count environments.":"Borrando de %count entornos.","Deleting from 1 environment.":"Borrado de 1 entorno.","Deletion from %s":"Borrado desde %s","Dependencies":"Dependencias","Description":"Descripción","Details":"Información","Details for {{ contentView.name }}":"Detalles de {{ contentView.name }}","Details for Activation Key:":"Detalles de la llave de activación:","Details for Content View:":"Detalles de la vista de contenido:","Details for Product:":"Detalles del producto:","Details for Repository:":"Detalles del repositorio:","Digest":"Digest","Disable":"Inhabilitar","Disabled":"Deshabilitado","Disabled (overridden)":"Deshabilitado (anulado)","Discover":"Descubrir","Discovered Repository":"Repositorio descubierto","Discovery failed. Error: %s":"Ocurrió un error en el descubrimiento. Error: %s","Distribution":"Distribución","Distribution Information":"Información de distribución","Docker Repositories":"Repositorios Docker","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Repositorios Docker <div>{{ library.counts.docker_repositories || 0 }}</div>","Docker Repository Selection":"Selección de repositorio Docker","Done":"Terminado","Download Policy":"Descargar política","Edit":"Editar","Enable":"Habilitar","Enabled":"Habilitado","Enabled (overridden)":"Habilitado (anulado)","End Date":"Fecha de terminación","Enhancement":"Mejora","Enter Package Group Name(s)...":"Introducir nombres de grupos de paquetes...","Enter Package Name(s)...":"Ingresar nombres de paquetes...","Environment":"Entorno","Environment saved":"Entorno guardado","Environments":"Entornos","Environments List":"Lista de entornos","Equal To":"Igual que","Errata":"Erratas","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Erratas <div>{{ library.counts.errata.total || 0 }}</div>","Errata are automatically Applicable if they are Installable":"Las erratas pueden aplicarse en forma automática en caso de ser instalables","Errata Details":"Detalles de las erratas","Errata Filter:":"Filtro de erratas:","Errata for:":"Erratas para:","Errata ID":"ID de erratas","Errata Installation":"Instalación de erratas","Errata successfully added.":"Las erratas se han añadido correctamente.","Errata successfully removed.":"Las erratas se han eliminado correctamente.","Errata Task List":"Lista de tareas de erratas","Errata Tasks":"Tareas de erratas","Errata Type":"Tipo de erratas","Errata:":"Erratas:","Erratum - by ID":"Errata - por ID","Erratum - Date and Type":"Errata - Fecha y tipo","Erratum Date Range":"Intervalos de fechas de la errata","Error during upload:":"Error durante la carga:","Event":"Evento","Exclude":"Excluir","Exclude all RPMs with no errata.":"Excluir todos los RPM sin erratas.","Existing Product":"Productos existentes","Expires":"Expira","Export":"Exportar","Exported content view":"Vista de contenido exportado","Family":"Familia","File Information":"Información del archivo","File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Se inició la eliminación del archivo en segundo plano. Haga clic <a href=\"{{ taskUrl() }}\">aquí</a> para controlar el avance.","File Repositories":"Repositorios de archivos","File too large.":"Archivo demasiado grande.","File too large. Please use the CLI instead.":"Archivo demasiado grande. Use CLI en su lugar.","File:":"Archivo:","Filename":"Nombre de archivo","Files":"Archivos","Files in package {{ package.nvrea }}":"Archivos en el paquete {{ package.nvrea }}","Filter":"Filtro","Filter information for:":"Información de filtro para:","Filter rule successfully removed.":"Se eliminó correctamente la regla de filtro.","Filter rule successfully updated.":"Se actualizó correctamente la regla de filtro.","Filter Saved":"Filtro guardado","Filter:":"Filtro:","Filter...":"Filtrar...","Filters":"Filtros","Filters for Content View:":"Filtros de la vista de contenido:","Filters successfully removed.":"Los filtros se han eliminado correctamente.","Finished At":"Finalizado a las","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Para sistemas operativos tales como Red Hat Enterprise Linux 5 o CentOS 5 se recomienda usar sha1.","Force Promote?":"¿Forzar promover?","Force Puppet Environment":"Forzar entorno Puppet","GPG Key":"llave GPG","Greater Than":"Mayor que","Greater than version {{ rule.min_version }}":"Superior a la versión {{ rule.min_version }}","Group":"Grupo","Group Install":"Instalación de grupo","Group Remove":"Eliminación de grupo","Helper":"Agente","here":"aquí","Hide affected Activation Keys":"Ocultar llaves de activación afectadas","Hide affected Content Hosts":"Ocultar hosts de contenido afectados","History":"Historial","History for Content View:":"Historial para la vista de contenido:","Host %s has been deleted.":"Se ha eliminado el host %s.","Host %s has been unregistered.":"Se ha cancelado el registro del host %s.","Host Collection Management":"Administración de colecciones de hosts","Host Collection Membership":"Afiliación de colecciones de hosts","Host Collection removed.":"Se ha eliminado la colección de hosts.","Host Collection updated":"Colección de hosts actualizada","Host Collection:":"Colección de hosts:","Host Collections":"colecciones de hosts","Host Collections for:":"Colecciones de hosts de:","Host Count":"Cuenta de host","Host Group":"Grupo de hosts","Host Limit":"Límite de host","Hostname":"Nombre de host","Hosts":"Hosts","hourly":"Por hora","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"Cada hora a los {{ product.sync_plan.sync_date | date:'m' }} minutos y {{ product.sync_plan.sync_date | date:'s' }} segundos","HTTP Proxy":"Proxy HTTP","Id":"ID","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Si prefiere mover partes de estas teclas de activación a otras vistas de contenido o entornos del ciclo de vida, haga clic","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Si prefiere mover partes de estas teclas de activación a otras vistas de contenido o entornos del ciclo de vida, haga clic <a href=\"{{ activationKeyLink() }}\">aquí</a> para gestionarlas de forma individual.","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Si prefiere mover partes de estos hosts de contenido a otras vistas de contenido o entornos, haga clic <a href=\"{{ contentHostsLink() }}\">aquí</a> para gestionar estos hosts de contenido de forma masiva.","Image":"Imagen","Immediate":"Inmediato","Important":"Importante","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Para añadir una vista de contenido a una vista compuesta, primero debe publicar una versión inicial de la vista de contenido.","In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n or ask your admin for a certificate.":"Para explorar este repositorio, debe <a ng-href=\"/organizations/{{ organization }}/edit\">descargar el certificado</a>\n o solicitar un certificado a su administrador.","Include":"Incluir","Include all RPMs with no errata.":"Incluir todos los RPM sin erratas.","Inclusion Type":"Tipo de inclusión","Incremental update":"Actualización incremental","Incremental Update":"Actualización incremental","Install":"Instalación","Install Selected":"Instalar seleccionado","Install the pre-built bootstrap RPM:":"Instale el RPM pre-built bootstrap","Installable":"Instalable","Installable Errata":"Erratas instalables","Installable Updates":"Actualizaciones instalables","Installed":"Instalado","Installed On":"Instalado en","Installed Package":"Paquete instalado","Installed Packages":"Paquetes instalados","Installed Products":"Productos instalados","Interfaces":"Interfaces","Interval":"Intervalo","IPv4 Address":"Dirección IPv4","IPv6 Address":"Dirección IPv6","Issued":"Emitido","Issued On":"Emitido el","Katello Agent":"Agente Katello","Label":"Etiqueta","Last Checkin":"Última conexión","Last Published":"Última publicación","Last Puppet Report":"Último informe de Puppet","Last Sync":"Última sincronización","Last Updated On":"Última actualización","Latest (Currently %s)":"Última (actualmente, %s)","Latest (Currently no version)":"Última (actualmente, sin versión)","Latest Only":"Solo la última","Less Than":"Menor que","Less than version {{ rule.max_version }}":"Inferior a la versión {{ rule.max_version }}","Library":"Biblioteca","Library Repositories":"Repositorios de biblioteca","Library Repositories that contain this Deb.":"Repositorios de biblioteca que contienen este Deb.","Library Repositories that contain this File.":"Repositorios de biblioteca que contienen este archivo.","Library Repositories that contain this Puppet Module.":"Repositorios de biblioteca que contienen este módulo Puppet.","Library Synced Content":"Contenido de biblioteca sincronizado ","License":"Licencia","Lifecycle Environment":"Entorno del ciclo de vida","Lifecycle Environment Paths":"Rutas de entornos del ciclo de vida","Lifecycle Environments":"Entornos del ciclo de vida","Limit":"Límite","Limit Repository Sets to only those available in this Activation Key's Lifecycle Environment":"Limitar los conjuntos de repositorios únicamente a aquellos disponibles en este entorno de ciclo de vida de la clave de activación","Limit Repository Sets to only those available in this Host's Lifecycle Environment":"Limitar los conjuntos de repositorios únicamente a aquellos disponibles en el entorno de ciclo de vida del host","Limit to environment":"Limitar al entorno","Limit to Environment":"Limitar al entorno","Limit:":"Límite:","List":"Lista","List/Remove":"Mostrar/Eliminar","Loading Environment Paths...":"Cargando rutas de entornos...","Loading...":"Cargando...","Loading...\"":"Cargando...\"","Manage deb Packages for Repository:":"Administrar paquetes deb para repositorio:","Manage Errata":"Administrar erratas","Manage Files for Repository:":"Administrar archivos para el repositorio:","Manage OSTree Branches for Repository:":"Administrar etiquetas OSTree para repositorio:","Manage Packages":"Administrar paquetes","Manage Packages for Repository:":"Administrar paquetes para el repositorio:","Manage Puppet Modules for {{ repository.name }}":"Administrar módulos Puppet para {{ repository.name }}","Manage Puppet Modules for Repository:":"Administrar módulos Puppet para repositorio","Manage Repository Sets":"Administrar conjuntos de repositorios","Manage Subscriptions":"Administrar suscripciones","Manage Sync Plan":"Administrar plan de sincronización","Manifest Lists":"Listas de manifiestos","Manifest Type":"Tipo de manifiesto","Many Content View actions are disabled while a version task is in progress.":"Se desactivan varias vistas de contenido mientras hay una tarea de versión en curso.","Maximum Version":"Versión máxima","Minimum Version":"Versión mínima","Mirror on Sync":"Reflejar en la sincronización","Model":"Modelo","Moderate":"Moderado","Module %s removed from Content View.":"Se ha eliminado el módulo %s de la vista de contenido.","Module Stream":"Secuencia del módulo","Module Streams":"Secuencias del módulo","More Details":"Más información","N/A":"N/D","Name":"Nombre","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"Nombre del repositorio de la corriente de desarrollo principal que desea sincronizar. Por ejemplo: 'busybox' o 'fedora/ssh'.","Networking":"Red","Never":"Nunca","Never synced":"Nunca sincronizado","New Activation Key":"Nueva llave de activación","New Environment":"Nuevo Entorno","New Filter":"Nuevo filtro","New Filter for Content View:":"Nuevo filtro para la vista de contenido:","New Name:":"Nuevo nombre:","New Product":"Nuevo producto","New Repository":"Nuevo repositorio","New Sync Plan":"Nuevo plan de sincronización","New sync plan successfully created.":"El nuevo plan de sincronización se ha creado correctamente.","Next":"Siguiente","Next Sync":"Próxima sincronización","No":"No","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"No hay permisos de edición en algunas de las llaves de activación de ese entorno del ciclo de vida.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"No hay permisos de edición en algunos de los hosts de contenido de ese entorno del ciclo de vida.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"No hay permisos de promoción/eliminación en el entorno del ciclo de vida.","No activation keys are affected.":"No hay llaves de activación afectadas.","No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".":"No hay opciones de versión alternativa. Las versiones disponibles dependen de lo que está disponible en \"{{ host.content_facet_attributes.content_view.name }}\", la vista de contenido <a href=\"/content_views\">seleccionada</a> a la que se adjunta este host de contenido para el entorno de ciclo de vida <a href=\"/lifecycle_environments\">determinado</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".","No Content Hosts are affected.":"No hay hosts de contenido afectados.","No Content Hosts match this Erratum.":"No hay contenidos que coincidan con esta errata.","No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first.":"No hay vistas de contenido disponibles para agregar a {{ contentView.name }}. Primero, deben crearse vistas de contenido no compuestas.","No Content Views available, please select another environment.":"No hay vistas de contenido disponibles; seleccione otro entorno.","No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views.":"No hay vistas de contenido que pertenezcan a {{ contentView.name }}. Utilice la pestaña Añadir para añadir vistas de contenidos.","No Content Views contain this Deb":"Ninguna vista de contenido contiene este Deb","No Content Views contain this File":"No hay vistas de contenido que incluyan este archivo","No Content Views contain this Puppet Module":"No hay vistas de contenido que incluya este módulo Puppet","No content views exist for {{selected.environment.name}}":"No existen vistas de contenido para {{selected.environment.name}}","No Content Views match the search.":"No hay vistas de contenido que coincidan con la búsqueda.","No discovered repositories.":"No se hallaron repositorios.","No Errata to display":"No se visualizaron erratas","No Host Collections match your search.":"No hay colecciones de hosts que coincidan con su búsqueda.","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"No hay colecciones a mostrar, puede agregar colecciones de hosts después de seleccionar 'Colecciones de hosts' bajo 'Hosts' en el menú principal. ","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"No hay colecciones a mostrar, puede agregar Colecciones de hosts después de seleccionar la pestaña 'Añadir'.","No matching results.":"No hay resultados coincidentes.","No products are available to add to this Sync Plan.":"No hay productos disponibles para añadir a este plan de sincronización.","No products are have been added to this Sync Plan.":"No se agregaron productos a este plan de sincronización.","No puppet modules found":"No se hallaron módulos Puppet","No releases exist in the Library.":"No existen lanzamientos en la Biblioteca.","No Repositories contain this Branch.":"No hay repositorios que contengan esta rama.","No Repositories contain this Deb":"Ningún repositorio contiene este Deb","No Repositories contain this Erratum.":"No hay repositorios que contengan esta errata.","No Repositories contain this File":"No hay repositorios que contengan este archivo","No Repositories contain this Package.":"No hay repositorios que contengan este paquete.","No Repositories contain this Puppet Module":"No hay repositorios que contengan este módulo Puppet","No repository sets provided through subscriptions.":"No se proporcionaron conjuntos de repositorios a través de suscripciones.","No sync information available.":"No hay información de sincronización disponible.","No tasks exist for this resource.":"No existen tareas para este recurso.","No versions found for {{ $stateParams.moduleName }}":"No se hallaron versiones para {{ $stateParams.moduleName }}","None":"Ninguno","Not installed":"No instalado","Not started":"No iniciado","Not Synced":"No sincronizado","Not yet published":"Aún no se ha publicado","Number of CPUs":"Número de CPU","Number of Repositories":"Número de repositorios","On Demand":"A pedido","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"Una o más de las erratas seleccionadas no se pueden instalar por medio de las versiones de Vista de contenido publicado que se ejecutan en los hosts seleccionados. Se crearán las nuevas Versiones de vista de contenido (especificadas a continuación), lo que permitirá que esta errata se pueda instalar en el entorno del host. Esta nueva versión reemplazará la versión actual en el entorno del ciclo de vida del host. Para instalar estas erratas de inmediato en los hosts luego de publicar, marque la casilla que se encuentra debajo.","One or more RPMs are not showing up in the local repository even though they exist in the upstream repository.":"Uno o más de los RPM no aparecen en el repositorio local, aun cuando existan en el repositorio upstream.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"Mostrar solo los hosts de contenido donde la errata se puede instalar actualmente en el entorno del ciclo de vida del host","Only show Errata that are Applicable to one or more Content Hosts":"Mostrar únicamente erratas aplicables a uno o más hosts de contenido","Only show Errata that are Installable on one or more Content Hosts":"Mostrar únicamente erratas que puedan instalarse en uno o más hosts de contenido","Only show Packages that are Applicable to one or more Content Hosts":"Mostrar únicamente paquetes que sean aplicables a uno o más hosts de contenido","Only show Packages that are Upgradable on one or more Content Hosts":"Mostrar únicamente paquetes que puedan actualizarse en uno o más hosts de contenido","Only show Subscriptions for products not already covered by a Subscription":"Mostrar únicamente suscripciones de productos que no estén cubiertos por una suscripción","Only show Subscriptions which can be applied to products installed on this Host":"Mostrar únicamente suscripciones que puedan aplicarse a los productos instalados en este host","Only show Subscriptions which can be attached to this Host":"Mostrar únicamente suscripciones que puedan adjuntarse a este host","Only the Applications with a Helper can be restarted.":"Solo pueden reiniciarse las aplicaciones con un Ayudante.","Operating System":"Sistema operativo","Optimized Sync":"Sincronización optimizada","Organization":"Organización","Original Sync Date":"Fecha de la sincronización original","OS":"SO","OSTree Branch metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Se inició la generación de metadatos OsTree Branch en segundo plano. Haga clic\n <a ng-href=\"{{ taskUrl() }}\">aquí</a> para controlar el avance.","OSTree Branch:":"OSTree Branch:","OSTree Branches":"Etiquetas OSTree","OSTree Content":"Contenido OSTree","OSTree Repositories":"Repositorios OSTree","OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>":"Repositorios OSTree <div>{{ library.counts.ostree_repositories || 0 }}</div>","Override to Disabled":"Anular para desactivar","Override to Enabled":"Anular para activar","Package":"Paquete","Package Actions":"Acciones de paquete","Package Filter:":"Filtro de paquete:","Package Group":"Grupo de paquetes","Package Group Filter:":"Filtro de grupo de paquetes:","Package Group successfully added.":"El grupo de paquetes se ha añadido correctamente.","Package Group successfully removed.":"El grupo de paquetes se ha eliminado correctamente.","Package Groups":"Grupos de paquetes","Package Groups for Repository:":"Grupos de paquetes para el repositorio:","Package Information":"Información del paquete","Package Install":"Instalación de paquetes","Package Installation, Removal, and Update":"Instalación, eliminación y actualización de paquetes","Package Remove":"Retiro de paquetes","Package successfully added.":"El paquete se ha añadido correctamente.","Package successfully removed.":"El paquete se ha eliminado correctamente.","Package successfully updated.":"El paquete se ha actualizado correctamente.","Package Update":"Actualización de paquetes","Package Updates":"Actualizaciones de paquetes","Package:":"Paquete:","Package/Group Name":"Nombre del grupo/paquete","Packages":"Paquetes","Packages <div>{{ library.counts.packages || 0 }}</div>":"Paquetes <div>{{ library.counts.packages || 0 }}</div>","Packages are automatically Applicable if they are Upgradable":"Los paquetes son de aplicación automática en caso de ser actualizables","Packages for:":"Paquetes para:","Parameters":"Parámetros","Part of a manifest list":"Parte de una lista de manifiestos","Password":"Contraseña","Password of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Contraseña del usuario del repositorio upstream para la autenticación. Dejar en blanco si el repositorio no requiere de una autenticación.","Paste contents of Content Credential":"Pegar contenidos de la credencial de contenidos","Path":"Trayecto","Perform":"Realizar","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"Seleccione un entorno del ciclo de vida y una vista de contenido a los que mover las llaves de activación afectadas:","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"Seleccione un entorno del ciclo de vida y una vista de contenido a los que mover estos hosts de contenido:","Please select a Lifecycle Environment.":"Seleccione un entorno del ciclo de vida.","Please select an environment.":"Seleccione un entorno.","Please select one from the list below and you will be redirected.":"Por favor, seleccione uno de la lista de abajo y será reenviado.","Plus %y more errors":"Además de %y errores más","Plus 1 more error":"Además de 1 error más","Product":"Producto","Product Count":"Recuento de productos","Product Enhancement Advisory":"Recomendación de mejoras de productos","Product information for:":"Información de producto para:","Product Management for Sync Plan:":"Administración de productos para el plan de sincronización:","Product Name":"Nombre de producto","Product Options":"Opciones de productos","Product Saved":"Producto guardado","Product syncs has been initiated in the background. Click %s to monitor the progress.":"Se inició la sincronización de productos en segundo plano. Haga clic en %s para controlar el progreso.","Products":"Productos","Products <div>{{ library.counts.products || 0 }}</div>":"Productos <div>{{ library.counts.products || 0 }}</div>","Products for":"Productos para","Products not covered":"Productos no cubiertos","Project Page":"Página de proyecto","Promote":"Promover","Promote Content View:":"Promover vista de contenido:","Promote Version":"Promover versión","Promote Version {{ version.version }}":"Promover versión {{ version.version }}","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"¿Promover la versión a {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"Promovida a %s","Promoting to %count environments.":"Promovida a %count entornos.","Promoting to 1 environment.":"Se está promoviendo a 1 entorno.","Promotion History":"Historial de promociones","Provides":"Proporciona","Provisioning Details":"Detalles de aprovisionamiento","Provisioning Host Details":"Detalles de host de aprovisionamiento","Publish Content View:":"Publicar vista de contenido:","Publish New Version":"Publicar nueva versión","Publish via HTTP":"Publicar mediante HTTP","Publish via HTTPS":"Publicar mediante HTTPS","Published":"Publicado","Published At":"Publicada a las","Published new version":"Nueva versión publicada","Published Repository Information":"Se ha publicado información de repositorio","Publishing and promoting to %count environments.":"Publicando y promoviendo a %count entornos.","Publishing and promoting to 1 environment.":"Publicando y promoviendo a 1 entorno.","Puppet Environment":"Entorno de Puppet","Puppet module added to Content View":"Se ha añadido el módulo Puppet a la vista de contenido","Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Se ha iniciado la generación de metadatos del módulo Puppet en segundo plano.\n Haga clic<a ng-href=\"{{ taskUrl() }}\">aquí</a> para controlar el progreso.","Puppet Module:":"Módulo Puppet:","Puppet Modules":"Módulos Puppet","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Módulos Puppet <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"Módulos Puppet para la vista de contenido:","Quantity":"Cantidad","RAM (GB)":"RAM (GB)","Range":"Rango","Reboot Suggested":"Se sugiere un reinicio","Reboot Suggested?":"¿Se sugiere reiniciar?","Recalculate\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>":"Recalcular\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>","Red Hat Repositories page":"Página de repositorios Red Hat","Red Hat Repositories page.":"Página de repositorios Red Hat","Refresh Table":"Actualizar tabla","Regenerate Repository Metadata":"Regenerar metadatos del repositorio","Register a Content Host":"Registrar un host de contenido","Register Content Host":"Registrar host de contenido","Registered":"Registrado","Registered By":"Registrado por","Registered Through":"Registrado a través de","Registry to Discover":"Registro para descubrir","Registry URL":"URL de registro","Release":"Lanzamiento","Release Version":"Versión de lanzamiento","Release Version:":"Versión de lanzamiento:","Releases":"Lanzamientos","Remote execution plugin is required to be able to run any helpers.":"Es necesario eliminar el complemento de ejecución para lanzar los asistentes.","Removal of selected repositories initiated successfully.":"La eliminación de los repositorios seleccionados se inició correctamente.","Remove":"Borrar","Remove {{ contentView.name }}":"Eliminar {{ contentView.name }}","Remove Activation Key \"{{ activationKey.name }}\"?":"¿Está seguro de que desea retirar la llave de activación \"{{ activationKey.name }}\"?","Remove Content Credential":"Credencial de contenidos remota","Remove Content Credential {{ contentCredential.name }}":"Eliminar credencial de contenidos {{ contentCredential.name }}","Remove Content View":"Eliminar vista de contenido","Remove Content Views":"Eliminar vistas de contenido","Remove Environment":"Eliminar entorno","Remove Errata":"Eliminar erratas","Remove Files":"Eliminar archivos","Remove From":"Eliminar desde","Remove Host Collection \"{{ hostCollection.name }}\"?":"¿Retirar colección de hosts \"{{ hostCollection.name }}\"?","Remove Module":"Eliminar módulo","Remove Package Group":"Eliminar grupo de paquetes","Remove Packages":"Eliminar paquetes","Remove Product":"Retirar producto","Remove Product \"{{ product.name }}\"?":"¿Retirar el producto \"{{ product.name }}\"?","Remove Puppet Modules":"Retirar módulos Puppet.","Remove Repositories":"Eliminar repositorios","Remove Repository":"Retirar repositorio","Remove Repository \"{{ repository.name }}\"?":"¿Retirar el repositorio \"{{ repository.name }}\"?","Remove Rule":"Eliminar regla","Remove Selected":"Retirar seleccionado","Remove Successful.":"La eliminación se ha realizado correctamente.","Remove Sync Plan":"Retirar plan de sincronización","Remove Sync Plan \"{{ syncPlan.name }}\"?":"¿Retirar el plan de sincronización \"{{ syncPlan.name }}\"?","Remove Tags":"Eliminar etiquetas","Remove Version":"Eliminar versión","Remove Version Confirmation":"Eliminar confirmación de versión","Removed %x host collections from activation key \"%y\".":"Se han eliminado %x colecciones de hosts de la llave de activación \"%y\".","Removed %x host collections from content host \"%y\".":"Se han eliminado %x colecciones de hosts del host de contenido \"%y\".","Removed %x products from sync plan \"%y\".":"Se han eliminado %x productos del plan de sincronización \"%y\".","Removing Repositories":"Eliminando repositorios","Repo Discovery":"Detección de repositorio","Repositories":"Repositorios","Repositories containing branch {{ branch.name }}":"Repositorios que contengan la rama {{ branch.name }}","Repositories containing Errata {{ errata.errata_id }}":"Repositorios que contengan las erratas {{ errata.errata_id }}","Repositories containing package {{ package.nvrea }}":"Repositorios que contienen el paquete {{ package.nvrea }}","Repositories for":"Repositorios para","Repositories for Content View:":"Repositorios para la vista de contenido:","Repositories for Deb:":"Repositorios para Deb:","Repositories for Errata:":"Repositorios para erratas:","Repositories for File:":"Repositorios para el archivo:","Repositories for Filter:":"Repositorios para el filtro:","Repositories for Package:":"Repositorios para paquete:","Repositories for Product:":"Repositorios para el producto:","Repositories for Puppet Module:":"Repositorios para módulo Puppet:","Repositories to Create":"Repositorios para crear","Repository":"Repositorio","Repository \"%s\" successfully deleted":"Repositorio \"%s\" ha sido borrado correctamente","Repository %s successfully created.":"El repositorio %s se ha creado correctamente.","Repository Count":"Recuento de repositorios","Repository created":"Repositorio creado","Repository Discovery":"Descubrimiento de repositorio","Repository Label":"Etiqueta del repositorio","Repository Name":"Nombre de repositorio","Repository Options":"Opciones de repositorio","Repository Path":"Ruta de repositorio","Repository Saved.":"Se ha guardado el repositorio.","Repository Selection":"Selección de repositorio","Repository Sets":"Conjuntos de repositorios","Repository Sets settings saved successfully.":"La configuración de los conjuntos de repositorios se guardó correctamente.","Repository Type":"Tipo de repositorio","Repository URL":"URL del repositorio","Repository:":"Repositorio:","Republish Repository Metadata":"Volver a publicar los metadatos del repositorio","Requires":"Requiere","Reset to Default":"Restablecer a los valores predeterminados","Restart":"Reiniciar","Restart Selected":"Reinicio seleccionado","Restart Services on Content Host \"{{host.name}}\"?":"¿Reiniciar servicios en el host de contenido \"{{host.name}}\"?","Restrict to architecture":"Restringir a arquitectura","Restrict to Architecture":"Restringir a arquitectura","Result":"Resultado:","Role":"Rol","RPM":"RPM","RPM Name":"Nombre de RPM","rpm Package Groups":"Grupos de paquetes rpm","rpm Packages":"Paquetes rpm","RPMs":"RPM","Run Auto-Attach":"Ejecutar Auto-adjuntar","Run Repository Creation\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>":"Ejecutar creación del repositorio\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>","Run Sync Plan":"Ejecutar plan de sincronización","Save":"Guardar","Save Successful.":"Se ha guardado correctamente.","Schema Version":"Versión de esquema","Schema Version 1":"Versión de esquema 1","Schema Version 2":"Versión de esquema 2","Security":"Seguridad","Security Advisory":"Recomendación de seguridad ","Select":"Seleccionar","Select a Content Source:":"Seleccione una fuente de contenido: ","Select A New Puppet Module To Add":"Seleccionar el nuevo módulo Puppet a añadir","Select a Version":"Seleccionar una versión","Select Action":"Seleccionar una acción","Select an Available Version of {{ $stateParams.moduleName }}":"Seleccionar una versión disponible de {{ $stateParams.moduleName }}","Select an Organization":"Seleccionar una organización","Select Content View":"Seleccionar vista de contenido","Select Environment":"Seleccionar entorno","Select new version":"Seleccionar nueva versión","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"Seleccione los entornos del ciclo de vida de los que desea eliminar la versión {{ version.version }}:","Select Version":"Seleccionar versión","Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\" or \"Background\" download policies will be synced.":"El hecho de seleccionar \"Completar sincronización\" hará que solo los repositorios Yum del producto seleccionado se sincronicen. Seleccionar \"Validar contenido\" hará que solo se sincronicen los repositorios Yum que utilizan políticas de descarga \"Inmediata\" o \"En segundo plano\".","Selecting this option will result in contents that are no longer part of the upstream repository being removed during synchronization.":"Si selecciona esta opción, el contenido que ya no forma parte del repositorio de desarrollo principal se eliminará durante la sincronización.","Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification.":"El hecho de seleccionar esta opción ocasionará que Katello verifique que los certificados SSL de la URL de upstream estén firmados por un CA confiable. Quite esta marca si no quiere que se realice esta verificación.","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"Si se selecciona esta opción, la versión se borrará completamente y dejará de estar disponible para su promoción. La versión se debe eliminar de todos los entornos del ciclo de vida para seleccionar esta opción.","Serve via HTTP":"Servir a través de HTTP","Service Level":"Nivel de servicio","Set Release Version":"Definir versión de lanzamiento","Severity":"Gravedad","Show affected Activation Keys":"Mostrar llaves de activación afectadas","Show affected Content Hosts":"Mostrar host de contenido afectados","Show All":"Mostrar todo","Show all Repository Sets in Organization":"Mostrar todos los conjuntos de repositorios en la organización","Size":"Tamaño","Smart proxy currently syncing to your locations...":"Proxy inteligente sincronizándose en este momento con sus ubicaciones...","Smart proxy is synchronized":"Proxy inteligente está sincronizado","Sockets":"Sockets","Solution":"Solución","Some of the Errata shown below may not be installable as they are not in this Content Host's\n Content View and Lifecycle Environment. In order to apply such Errata an Incremental Update is required.":"Es posible que algunas de las erratas que se muestran abajo no puedan instalarse al no estar incluidas en la vista de contenido\n y en el entorno de ciclo de vida de este host de contenido. Es preciso realizar una Actualización incremental para poder aplicar esta errata.","Something went wrong when retrieving the resource.":"Algo ha fallado al recuperar el recurso.","Something went wrong when saving the resource.":"Algo pasó al guardar el recurso.","Source":"Fuente","Source RPM":"RPM de origen","Source RPMs":"RPM de fuente","SSL CA Cert":"Certificado CA de SSL","SSL Certificate":"Certificado SSL","SSL Client Cert":"Certificado de cliente de SSL","SSL Client Key":"Clave de cliente SSL","Standard sync, optimized for speed by bypassing any unneeded steps.":"Sincronización estándar, optimizada para la velocidad al omitir los pasos innecesarios.","Start Date":"Fecha de inicio","Start Time":"Hora de inicio","Started At":"Iniciado el","Starting":"Iniciando","Starts":"Inicia","State":"Estado","Status":"Estatus","Stream":"Secuencia","Subscription Details":"Información de suscripción","Subscription Management":"Administración de suscripción","Subscription Status":"Estatus de suscripción","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"registro de subscription-manager --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Suscripciones","Subscriptions for Activation Key:":"Suscripciones para la llave de activación:","Subscriptions for Content Host:":"Suscripciones para el host de contenido:","Subscriptions for:":"Suscripciones para:","Success!":"¡Exito!","Successfully added %s subscriptions.":"%s suscripciones se han añadido correctamente.","Successfully deleted %cv version %ver.":"%cv version %ver se ha borrado correctamente.","Successfully initiated deletion of %cv version %ver.":"El borrado de %cv version %ver se ha iniciado correctamente.","Successfully initiated promotion of %cv version %ver to %env.":"La promoción de %cv version %ver a %env se ha iniciado correctamente.","Successfully initiated removal of %cv version %ver.":"La eliminación de %cv version %ver se ha iniciado correctamente.","Successfully promoted %cv version %ver to %env":"%cv version %ver se ha promovido a %env correctamente","Successfully published %cv version %ver and promoted to Library":"%cv version %ver se ha publicado y se ha promovido a la biblioteca correctamente","Successfully removed %cv version %ver from environments: %env":"%cv version %ver se ha eliminado correctamente de los entornos: %env","Successfully removed %s items.":"Se retiraron %s elementos.","Successfully removed %s subscriptions.":"%s suscripciones se han eliminado correctamente.","Successfully removed 1 item.":"Se retiró 1 ítem.","Successfully scheduled an update of all packages":"Se programó correctamente una actualización de todos los paquetes","Successfully scheduled package installation":"Se programó correctamente la instalación del paquete","Successfully scheduled package removal":"Se programó correctamente la eliminación del paquete","Successfully scheduled package update":"Se programó correctamente la actualización del paquete","Successfully updated subscriptions.":"Las suscripciones se han actualizado correctamente.","Successfully uploaded content:":"Se cargó correctamente el contenido:","Summary":"Resumen","Support Level":"Nivel de soporte","Sync":"Sincronización","Sync Enabled":"Se habilitó sincronización ","Sync even if the upstream metadata appears to have no change. This option is only relevant for yum repositories and will take longer than an optimized sync. Choose this option if:":"Sincronizar, aun cuando, aparentemente, no se hayan producido cambios en los metadatos upstream. Esta opción es únicamente relevante para repositorios yum y demorará más que una sincronización optimizada. Elija esta opción si:","Sync Interval":"Intervalo de sincronización","Sync Now":"Sincronizar ahora","Sync Plan":"Plan de sincronización","Sync Plan %s has been deleted.":"El plan de sincronización %s se ha borrado.","Sync Plan created and assigned to product.":"Plan de sincronización creado y asignado al producto.","Sync Plan Saved":"Plan de sincronización guardado","Sync Plan:":"Plan de sincronización:","Sync Plans":"Planes de sincronización","Sync Selected":"Sincronización seleccionada","Sync Settings":"Configuración de la sincronización","Sync State":"Estado de la sincronización","Sync Status":"Estatus de sincronización","Synced manually, no interval set.":"Se ha sincronizado de forma manual. No se ha establecido un intervalo.","Synchronization is about to start...":"La sincronización está por comenzar...","Synchronization is being cancelled...":"La sincronización se está cancelando...","System Purpose":"Propósito del sistema","Tags":"Etiquetas","Task Details":"Detalles de tareas","Tasks":"Tareas","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"Las teclas de activación que se muestran a continuación utilizan actualmente esta versión de vista de contenido. Antes de borrar la versión, debe mover estas teclas de activación a un entorno del ciclo de vida donde no se esté utilizando esta versión.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"El archivo de esta versión se borrará. Esta versión no estará disponible una vez que finalice el borrado.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"El archivo de esta versión no se borrará. Esta versión aún estará disponible para ser promovida a un entorno del ciclo de vida.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Los hosts de contenido que se muestran a continuación utilizan actualmente esta versión de vista de contenido. Antes de eliminar la versión, debe mover estos hosts de contenido a un entorno donde no se esté utilizando esta versión.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"La vista de contenido o entorno de ciclo de vida debe ser actualizada para que la errata esté disponible para estos hosts. ","The following actions can be performed on content hosts in this host collection:":"Las siguientes acciones se pueden realizar en hosts de contenido en esta colección de hosts:","The host has not reported any applicable packages for upgrade.":"El host no ha informado ningún paquete aplicable para actualizar.","The host has not reported any installed packages, registering with subscription-manager should cause these to be reported.":"El host no ha informado ningún paquete instalado, el registro con subscription-manager debería informar estos paquetes.","The page you are attempting to access requires selecting a specific organization.":"Para acceder a la página debe seleccionar una organización específica.","The selected environment contains no Content Views, please select a different environment.":"El entorno seleccionado no contiene vistas de contenido. Seleccione otro entorno.","The time the sync should happen in your current time zone.":"La hora en que debería tener lugar la sincronización en su zona horaria actual.","There are {{ errataCount }} total Errata in this organization but none match the above filters.":"Hay {{ errataCount }} erratas totales en esta organización pero ninguna coincide con los filtros anteriores.","There are {{ packageCount }} total Packages in this organization but none match the above filters.":"Hay un total de {{ packageCount }} paquetes en esta organización, pero ninguno coincide con los filtros de arriba.","There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"En este momento, no hay repositorios Docker asociados con esta vista de contenido. Puede agregar algunos. Para ello, haga clic en la pestaña \"Añadir\" arriba.","There are currently no Docker Repositories to add to this Content View,":"En este momento, no hay repositorios Docker para añadir a esta vista de contenido.","There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"En este momento, no hay repositorios de archivos asociados con esta vista de contenido. Puede añadir algunos. Para ello, haga clic en la pestaña \"Añadir\" arriba.","There are currently no File Repositories to add to this Content View,":"En este momento, no hay repositorios de archivos para añadir a esta vista de contenido.","There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"En este momento, no hay repositorios OSTree asociados con esta vista de contenido. Puede añadir algunos. Para ello, haga clic en la pestaña \"Añadir\" arriba.","There are currently no OSTree Repositories to add to this Content View,":"En este momento, no hay repositorios OSTree para añadir a esta vista de contenido.","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Actualmente no hay repositorios asociados a esta vista de contenido. Puede añadir alguno haciendo clic en la pestaña anterior \"Añadir\".","There are currently no repositories to add to this Content View,":"Actualmente no hay ningún repositorio que añadir a esta vista de contenido,","There are no Content Views in this Environment.":"No hay vistas de contenido en este entorno.","There are no Content Views that match the criteria.":"No hay vistas de contenido que coincidan con los criterios.","There are no Errata associated with this Content Host to display.":"No hay erratas asociadas con este Host de contenido para mostrar.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"No hay erratas en esta organización. Cree uno más productos con erratas para ver erratas en esta página.","There are no Errata to display.":"No hay erratas a mostrar.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"No hay colecciones de hosts disponibles. Cree una nueva colección de hosts después de seleccionar 'Colecciones de hosts' bajo 'Hosts' en el menú. ","There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page.":"No hay paquetes en esta organización. Cree uno o más productos con paquetes para ver paquetes en esta página.","There are no Sync Plans available. You can create new Sync Plans after selecting 'Sync Plans' under 'Hosts' in main menu.":"No hay planes de sincronización disponibles. Puede crear nuevos planes de sincronización tras seleccionar \"Planes de sincronización\" en la opción \"Hosts\", en el menú principal.","There are no Traces to display.":"No hay rastros para mostrar.","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"Actualmente hay una tarea de actualización incremental en progreso. Esta actualización debe terminar antes de aplicar las actualizaciones existentes.","There is currently no history associated with this Content View.":"En este momento, no hay un historial asociado con esta vista de contenido.","This action will affect only those Content Hosts that require a change.\n If the Content Host does not have the selected Subscription no action will take place.":"Esta acción afectará únicamente los hosts de contenido que requieran de un cambio.\n Si el host de contenido no posee la suscripción seleccionada, no se iniciarán acciones.","This activation key is not associated with any content hosts.":"Esta llave de activación no está asociada a ningún host de contenido.","This activation key may be used during system registration. For example:":"Esta llave de activación se puede utilizar durante el registro de sistema. Por ejemplo:","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Este contenido no tiene versiones, primero cree su versión de vista de contenido con el botón de la derecha \"Publicar nueva versión\".","This filter applies only to a subset of repositories in the content view.":"Este filtro solo se aplica a un subconjunto de repositorios en la vista de contenido.","This filter applies to all repositories in the content view (current and future).":"Este filtro se aplica a todos los repositorios en la vista de contenido (actuales y futuros).","This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n Change the setting \"Delete Host upon Unregister\" to false on the <a href=\"/settings\">settings page</a> to prevent this.":"Esta operación también puede eliminar los recursos administrados vinculados al host, como máquinas virtuales y registros DNS.\n Para evitarlo, cambie el parámetro \"Eliminar host al cancelar registro\" para que el valor sea falso en <a href=\"/settings\">settings page</a>.","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Esta versión no se puede borrar de algunos de los entornos del ciclo de vida debido a una de las siguientes razones.","This Version is not associated with any Lifecycle Environments.":"Esta versión no está asociada a ningún entorno del ciclo de vida.","This version will be removed from:":"Se eliminará esta versión de:","Title":"Título","to manage them individually.":"para administrarlas de forma individual.","To register a content host to this server, follow these steps.":"Para registrar un host de contenido para este servidor, siga los siguientes pasos:","Toggle Dropdown":"Alternar menú desplegable","Topic":"Tema:","Traces":"Rastros","Traces for:":"Rastros para:","Type":"Tipo","Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}":"Tipo: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}","Unable to determine version":"No se puede determinar la versión.","Unauthenticated Pull":"Extracción no autenticada","Unknown":"Desconocido","Unlimited Content Hosts:":"Hosts de contenido ilimitados:","Unlimited Hosts":"Hosts ilimitados","Unregister Host":"Cancelar el registro del host","Unregister Host \"{{host.name}}\"?":"¿Cancelar el registro del host \"{{host.name}}\"?","Unregister Options:":"Opciones para cancelar el registro:","Unregister the host as a subscription consumer. Provisioning and configuration information is preserved.":"Cancelar el registro del host como un usuario de suscripción. Se conserva la información de aprovisionamiento y configuración.","Unsupported Type!":"Tipo no compatible.","Update":"Actualizar","Update All Packages":"Actualizar todos los paquetes","Update Packages":"Actualizar paquetes","Update Repositories":"Actualizar repositorios","Update Sync Plan":"Actualizar plan de sincronización","Updated":"Actualizado","Updated errata filter -":"Filtro de erratas actualizado -","Updated On":"Actualizado el","Upgradable":"Actualizable","Upgradable For":"Actualizable para","Upgradable Package":"Paquete actualizable","Upgrade Selected":"Actualización seleccionada","Upload":"Cargar","Upload Content Credential file":"Cargar archivo de credencial de contenidos","Upload File":"Cargar archivo","Upload Package":"Cargar paquete","Upload Puppet Module":"Cargar módulo puppet","Uploading...":"Cargando...","Upstream Image Name":"Nombre de la imagen upstream","Upstream Password":"Contraseña upstream","Upstream Repository Name":"Nombre de repositorio principal","Upstream Sync Policy":"Política de sincronización upstream","Upstream URL":"URL upstream","Upstream Username":"Nombre de usuario upstream","Url":"URL","URL of the registry you want to sync. Example: https://registry-1.docker.io/":"URL del registro que desea sincronizar. Por ejemplo: https://registry-1.docker.io/","URL to Discover":"URL para descubrir","Used as":"Utilizado como","User":"Usuario","Username":"Nombre de usuario","Username of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Nombre de usuario del usuario del repositorio upstream para la autenticación. Dejar en blanco en caso de que el repositorio no requiera de autenticación.","Validate Content Sync":"Validar sincronización del contenido","Variant":"Variante","Verify SSL":"Verificar SSL ","Version":"Versión","Version {{ rule.version }}":"Versión {{ rule.version }}","Version Deletion":"Borrado de versión","Version Details":"Detalles de la versión","Version:":"Versión:","Versions":"Versiones","Versions for Content View:":"Versiones de la vista de contenido:","Versions for Puppet Module:":"Versiones del módulo puppet:","via Katello agent":"por medio del agente Katello","via Katello Agent":"por medio del agente Katello","via remote execution":"por medio de la ejecución remota","via remote execution - customize first":"por medio de la ejecución remota - primero se debe personalizar","Virtual Guest":"Huésped virtual","Virtual Guests":"Huéspedes virtuales","Virtual Host":"Host virtual","weekly":"Semanal","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Semanalmente el {{ product.sync_plan.sync_date | date:'EEEE' }} a las {{ product.sync_plan.sync_date | date:'mediumTime' }} (Hora del servidor)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Cuando auto-vincular está inhabilitado,los sistemas de registro se vincularán a todas las suscripciones asociadas. ","When validating content, repositories using the \"On Demand\" download policy will download all packages within the repository.":"Al validar el contenido, los repositorios que utilicen la política de descarga \"A pedido\" descargarán todos los paquetes del repositorio.","Working":"En funcionamiento","Yes":"Sí","You cannot remove these repositories because they belong to a Red Hat product.":"No se pueden eliminar estos repositorios porque pertenecen a un producto de Red Hat.","You cannot remove these repositories because you do not have permission.":"No se pueden eliminar estos repositorios porque no tiene permiso.","You cannot remove this product because it is a Red Hat product.":"No se puede eliminar este producto porque es un producto de Red Hat.","You cannot remove this product because it was published to a content view.":"No se puede eliminar este producto porque se ha publicado en una vista de contenido.","You cannot remove this product because you do not have permission.":"No se puede eliminar este producto porque no tiene permiso.","You cannot remove this repository because it is a Red Hat repository.":"No se puede eliminar este repositorio porque es un repositorio Red Hat.","You cannot remove this repository because it was published to a content view.":"No se puede eliminar este repositorio porque se ha publicado en una vista de contenido.","You cannot remove this repository because you do not have permission.":"No se puede eliminar este repositorio porque no tiene permiso.","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"Actualmente no tiene llaves de activación, agregue llaves de activación con el botón de la derecha.","You currently don't have any Content Credential, you can add Content Credentials using the button on the right.":"Actualmente no tiene ninguna credencial de contenidos. Puede añadir credenciales de contenidos con el botón a la derecha.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"Actualmente no tiene ningún host de contenido, para crear un host de contenido, seleccione Host de contenido desde el menú principal y luego haga clic en el botón de la derecha.","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"Actualmente no tiene hosts de contenido. Para registrar un host, haga clic en el botón a la derecha y siga las instrucciones. ","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"Actualmente no tiene vistas de contenido. Para agregar una vista de contenido use el botón de la derecha.","You currently don't have any Debs.":"Actualmente no tiene ningún Deb.","You currently don't have any Files.":"Actualmente no tiene archivos.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"Actualmente no dispone de filtros en esta vista de contenido. Puede añadir un nuevo filtro mediante el botón que se encuentra a la derecha.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"Actualmente no tiene colecciones de hosts, agregue colecciones de hosts con el botón de la derecha.","You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.":"Actualmente no tiene hosts en este grupo de hosts, puede agregar hosts de contenido después de seleccionar la pestaña 'Añadir'.","You currently don't have any OSTree Branches.":"Actualmente no tiene OSTree Branches.","You currently don't have any Products associated with this Content Credential.":"Actualmente no tiene ningún producto asociado con esta credencial de contenidos.","You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu":"Actualmente no tiene productos a los que suscribirse, puede agregar productos después de seleccionar 'Productos' en 'Contenido' en el menú principal","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"Actualmente no tiene productos <span bst-feature-flag=\"custom_products\">, agregue productos con el botón a la derecha</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"Actualmente no tiene módulos Puppet incluidos en esta vista de contenido, agregue módulos Puppet con el botón de la derecha.","You currently don't have any Puppet Modules.":"Actualmente no tiene ningún Módulo Puppet.","You currently don't have any Repositories associated with this Content Credential.":"Actualmente no tiene ningún repositorio asociado con esta credencial de contenidos.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"Actualmente no tiene repositorios incluidos en este producto, agregue repositorios con el botón de la derecha.","You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab.":"Actualmente no tiene suscripciones asociadas a esta llave de activación, puede agregar suscripciones después de seleccionar la pestaña 'Añadir'.","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"Actualmente no tiene ningún plan de sincronización. Para agregar un plan de sincronización use el botón a la derecha.","You do not have any Installed Products":"No tiene productos instalados","You must select a content view in order to save your environment.":"Seleccione una vista de contenido para guardar un entorno ","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"Debe seleccionar una nueva vista de contenido antes de que el cambio de entorno pueda ser guardado. Utilice el botón Cancelar en la selección de vista de contenido para revertir la selección de entorno.","You must select at least one Content Host in order to apply Errata.":"Debe seleccionar un host de contenido para aplicar erratas. ","You must select at least one Errata to apply.":"Debe seleccionar al menos una errata para aplicar.","You must select at least one repository.":"Debe seleccionar al menos un repositorio.","Your search returned zero Activation Keys.":"La búsqueda no arrojó claves de activación.","Your search returned zero Content Credential.":"La búsqueda no arrojó credenciales de contenidos.","Your search returned zero Content Hosts.":"La búsqueda no arrojó hosts de contenido.","Your search returned zero Content View.":"La búsqueda no arrojó vista de contenido.","Your search returned zero Content Views":"La búsqueda no arrojó vistas de contenido","Your search returned zero Content Views.":"La búsqueda no arrojó vistas de contenido.","Your search returned zero Debs.":"La búsqueda no arrojó ningún Deb.","Your search returned zero Errata.":"La búsqueda no arrojó errata.","Your search returned zero Erratum.":"La búsqueda no arrojó erratas.","Your search returned zero Files.":"La búsqueda no arrojó archivos.","Your search returned zero Filters.":"La búsqueda no arrojó filtros.","Your search returned zero Host Collections.":"La búsqueda no arrojó colecciones de host.","Your search returned zero Hosts.":"La búsqueda no arrojó hosts.","Your search returned zero Lifecycle Environments.":"La búsqueda no arrojó entornos de ciclo de vida.","Your search returned zero Packages.":"La búsqueda no arrojó paquetes.","Your search returned zero Products.":"La búsqueda no arrojó productos.","Your search returned zero Puppet Modules.":"La búsqueda no arrojó módulos Puppet.","Your search returned zero Repositories":"La búsqueda no arrojó repositorios","Your search returned zero Repositories.":"La búsqueda no arrojó repositorios.","Your search returned zero repository sets.":"La búsqueda no arrojó conjuntos de repositorios.","Your search returned zero Repository Sets.":"La búsqueda no arrojó conjuntos de repositorios.","Your search returned zero results.":"La búsqueda no arrojó resultados.","Your search returned zero Subscriptions.":"La búsqueda no arrojó suscripciones.","Your search returned zero Sync Plans.":"La búsqueda no arrojó planes de sincronización.","Your search returned zero Traces.":"La búsqueda no arrojó rastros.","Your search returned zero versions for {{ $stateParams.moduleName }}":"La búsqueda no arrojó versiones de {{ $stateParams.moduleName }}","Yum Content":"Contenido Yum","Yum Metadata Checksum":"Suma de verificación de metadatos Yum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La generación de metadatos Yum se ha iniciado en segundo plano. Haga clic <a href=\"{{ taskUrl() }}\">aquí</a> para supervisar el progreso.","Yum Repositories":"Repositorios Yum","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Repositorios Yum <div>{{ library.counts.yum_repositories || 0 }}</div>"});
5
- gettextCatalog.setStrings('fr', {"- Date and Type":"- Date et type","-- select an interval --":"-- sélectionnez un intervalle --","(Not all Activation Keys editable )":"(toutes les clés d'activation ne sont pas modifiables)","(Not all Content Hosts editable )":"(tous les hôtes de contenu ne sont pas modifiables)","{{ 'Add Selected' | translate }}":"{{ 'Add Selected' | translate }}","{{ componentContentView.puppet_modules.length || 0 }} Puppet Modules":"{{ componentContentView.puppet_modules.length || 0 }} modules Puppet","{{ componentContentView.repositories.length || 0 }} Repositories":"{{ componentContentView.repositories.length || 0 }} référentiels","{{ contentCredential.name }}":"{{ contentCredential.name }}","{{ contentView.name }}":"{{ contentView.name }}","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} ne peut pas être supprimé car une ou plusieurs versions d'affichage de contenu sont encore rattachées à un environnement de cycle de vie.\n Chaque version d'affichage de contenu doit être supprimée de son environnement de cycle de vie avant que l'affichage de contenu ne puisse être supprimé.","{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet Modules":"{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} modules Puppet","{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories":"{{ contentViewComponent.content_view_version.repositories.length || 0 }} référentiels","{{ deb.name }}":"{{ deb.name }}","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} applicable,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} pouvant être installés","{{ errata.title }}":"{{ errata.title }}","{{ file.name }}":"{{ file.name }}","{{ filter.inclusion | filterType }} Tag":"{{ filter.inclusion | filterType }} Balise","{{ host.name }}":"{{ host.name }}","{{ host.subscription_facet_attributes.user.login }}":"{{ host.subscription_facet_attributes.user.login }}","{{ installedPackageCount }} Host(s)":"{{ installedPackageCount }} hôte(s)","{{ package.hosts_applicable_count }} Host(s)":"{{ package.hosts_applicable_count }} hôte(s)","{{ package.hosts_applicable_count || 0 }} Applicable,":"{{ package.hosts_applicable_count || 0 }} applicable,","{{ package.hosts_available_count }} Host(s)":"{{ package.hosts_available_count }} hôte(s)","{{ package.hosts_available_count || 0 }} Upgradable":"{{ package.hosts_available_count || 0 }} pouvant être mis à niveau","{{ package.human_readable_size }} ({{ package.size }} Bytes)":"{{ package.human_readable_size }} ({{ package.size }} octets)","{{ product.active_task_count }}":"{{ product.active_task_count }}","{{ product.name }}":"{{ product.name }}","{{ puppetModule.name }}":"{{ puppetModule.name }}","{{ repository.content_counts.deb }} deb Packages":"{{ repository.content_counts.deb }} Packages deb","{{ repository.content_counts.deb || 0 }} deb Packages":"{{ repository.content_counts.deb || 0 }} Packages deb","{{ repository.content_counts.docker_manifest }} Container Image Manifests":"{{ repository.content_counts.docker_manifest }} Manifestes d'images de conteneurs","{{ repository.content_counts.docker_manifest || 0 }} Container Image Manifests":"{{ repository.content_counts.docker_manifest || 0 }} Manifestes d'images de conteneurs","{{ repository.content_counts.docker_manifest_list }} Container Image Manifest Lists":"{{ repository.content_counts.docker_manifest_list }} Liste de manifeste d'images de conteneurs","{{ repository.content_counts.docker_manifest_list || 0 }} Container Image Manifest Lists":"{{ repository.content_counts.docker_manifest_list || 0 }} Listes de manifeste d'images de conteneurs","{{ repository.content_counts.docker_tag }} Container Image Tags":"{{ repository.content_counts.docker_tag }} Balises d'images de conteneurs","{{ repository.content_counts.docker_tag || 0 }} Container Image Tags":"{{ repository.content_counts.docker_tag || 0 }} Balises d'images de conteneurs","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} errata","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} Errata","{{ repository.content_counts.file || 0 }} Files":"{{ repository.content_counts.file || 0 }} Fichier(s)","{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches":"{{ repository.content_counts.ostree_branch || 0 }} Branches OSTree","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} Modules Puppet","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} Paquets","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} Paquets","{{ repository.content_counts.srpm }} Source RPMs":"{{ repository.content_counts.srpm }} RPM source","{{ repository.last_sync_words }} ago":"Il y a {{ repository.last_sync_words }}","{{ repository.name }}":"{{ repository.name }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} clés d'activation seront déplacées vers {{ deleteOptions.activationKeys.contentView.name }} dans {{ deleteOptions.activationKeys.environment.name }}","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} Les hôtes de contenu seront déplacés vers {{ deleteOptions.contentHosts.contentView.name }} dans {{ deleteOptions.contentHosts.environment.name }}","{{ type.display }}":"{{ type.display }}","{{ version.deb_count }} deb Packages":"{{ version.deb_count }} Packages deb","{{ version.docker_manifest_count }} Container Image Manifests":"{{ version.docker_manifest_count }} Manifestes d'images de conteneurs","{{ version.docker_manifest_list_count }} Container Image Manifest Lists":"{{ version.docker_manifest_list_count }} Liste de manifeste d'images de conteneurs","{{ version.docker_tag_count }} Container Image Tags":"{{ version.docker_tag_count }} Balise d'images de conteneurs","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} errata","{{ version.file_count }} Files":"{{ version.file_count }} fichiers","{{ version.ostree_branch_count }} OSTree Branches":"{{ version.ostree_branch_count }} branches OSTree","{{ version.package_count }} Packages":"{{ version.package_count }} paquets","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} modules Puppet","{{ version.srpm_count }} Source RPMs":"{{ version.srpm_count }} RPM source","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* Ces versions d'affichages de contenu marked proviennent d'affichages de contenu composites. Les composants nécessitant une mise à jour sont énumérés ci-dessous.","%(consumed)s out of %(quantity)s":"%(consumed)s sur %(quantity)s","%count environment(s) can be synchronized: %envs":"%count environnement(s) peuvent être synchronisés : %envs","<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>":"<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>","<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>":"<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>","<b>Description</b>":"<b>Description</b>","<b>Packages</b>":"<b>Paquetages</b>","<b>Reboot Suggested</b>":"<b>Redémarrage suggéré</b>","<b>Solution</b>":"<b>Solution</b>","<b>Title</b>":"<b>Titre</b>","<b>Type</b>":"<b>Type</b>","<b>Updated</b>":"<b>Mis à jour</b>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n Environments étoilés candidats à la promotion.","<i class=\"fa fa-warning inline-icon\"></i>\n This Host is not currently registered with subscription-manager. Click <a ui-sref=\"content-hosts.register\">here</a> for registration information.":"<i class=\"fa fa-warning inline-icon\"></i>\n Cet hôte n'est actuellement pas enregistré auprès du gestionnaire d'abonnements. Cliquez <a ui-sref=\"content-hosts.register\">ici</a> pour obtenir des informations relatives à l'enregistrement.","<span translate=\"\">\n If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">to manage them individually.</span>":"<span translate=\"\">\n Si vous préférez déplacer des portions de ces clés d'activation vers différents affichages de contenu ou environnements du cycle de vie, cliquez\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">ici</a>\n <span translate=\"\">pour les gérer individuellement.</span>","A composite view contains other content views.":"Une vue composite contient d'autres affichages du contenu.","A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n It can be promoted to other environments from the Versions tab of this Content View.":"Une nouvelle version de {{ contentView.name }} sera créée et transférée vers l'environnement de la Bibliothèque.\n Elle peut être transférée vers d'autres environnements à partir de l'onglet Versions de cet affichage de contenu.","A newer version is available: {{ contentViewComponent.content_view.latest_version }}":"Une version plus récente est disponible : {{ contentViewComponent.content_view.latest_version }}","A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>":"Une synchronisation a été initiée en arrière-plan, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">cliquez pour en savoir plus</a>","Account":"Compte","Action":"Action","Action Type":"Type d'action","Actions":"Actions","Activation Key":["Clé d'activation","Clés d'activation"],"Activation Key Content":"Contenu de la clé d'activation","Activation Key removed.":"Clé d'activation supprimée.","Activation Key updated":"Clé d'activation mise à jour","Activation Key:":"Clé d'activation :","Activation Keys":"Clés d'activation","Activation Keys using Version {{ version.version }}":"Clés d'activation en utilisant la Version {{ version.version }}","Active Tasks":"Tâches actives","Add":"Ajouter","Add Content Hosts to:":"Ajouter des hôtes de contenu à :","Add Content Views":"Ajouter les affichages du contenu","Add Content Views to {{ contentView.name }}":"Ajouter les affichages du contenu à {{ contentView.name }}","Add Errata":"Ajouter des errata","Add New Container Image Tag Filter":"Ajouter un nouveau filtre de balise d'images de conteneur","Add New Environment":"Ajouter un nouvel environnement","Add New Module":"Ajouter un nouveau module","Add New Yum Filter":"Ajouter un nouveau filtre Yum","Add Package Group":"Ajouter un groupe de paquets","Add Repositories":"Ajouter des référentiels","Add Rule":"Ajouter une règle","Add Selected":"Ajouter les éléments sélectionnés","add some repositories.":"ajouter des référentiels.","Add Subscriptions for Activation Key:":"Ajouter des abonnements pour la clé d'activation :","Add Subscriptions for Content Host:":"Ajouter des abonnements à l'hôte de contenu :","Add To":"Ajouter à","Added %x host collections to activation key \"%y\".":"%x collections d'hôtes ajoutées à la clé d'activation \"%y\".","Added %x host collections to content host \"%y\".":"%x collections d'hôtes ajoutées à l'hôte de contenu \"%y\".","Added %x products to sync plan \"%y\".":"%x produits ajoutés au plan de synchronisation \"%y\".","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Ajouter un environnement de cycle de vie à la fin de \"{{ priorEnvironment.name }}\"","Advanced Sync":"Synchronisation avancée","Advisory":"Alerte","Affected Activation Keys":"Clés d'activation affectées","Affected Content Hosts":"Hôtes de contenu affectés","Affected Hosts":"Hôtes affectés","Affected Repositories":"Référentiels affectés","Affected repositories have been updated.":"Les référentiels affectés ont été mis à jour","All Content Views":"Tous les affichages de contenu","All History":"Tout l'historique","All Products":"Tous les produits","All Repositories":"Tous les référentiels","All Versions":"Toutes les versions","Always Use Latest (Currently %s)":"Toujours utiliser la plus récente (actuellement %s)","Always Use Latest (Currently no versions)":"Toujours utiliser la plus récente (actuellement aucune version)","An error occured: %s":"Une erreur s'est produite : %s","An error occurred initiating the sync:":"Une erreur s'est produite lors de l'initialisation de la synchronisation :","An error occurred removing the Activation Key:":"Une erreur s’est produite lors de la suppression de la clé d'activation :","An error occurred removing the content hosts.":"Une erreur s’est produite lors de la suppression des hôtes de contenu.","An error occurred removing the environment:":"Une erreur s’est produite lors de la suppression de l'environnement :","An error occurred removing the Host Collection:":"Une erreur s’est produite lors de la suppression de la collection d'hôtes :","An error occurred removing the subscriptions.":"Une erreur s’est produite lors de la suppression des produits.","An error occurred saving the Activation Key:":"Une erreur s’est produite lors de l'enregistrement de la clé d'activation :","An error occurred saving the Content Host:":"Une erreur s’est produite lors de l'enregistrement de l'hôte de contenu :","An error occurred saving the Environment:":"Une erreur s'est produite lors de l'enregistrement de l'environnement :","An error occurred saving the Filter:":"Une erreur s’est produite lors de l'enregistrement du filtre :","An error occurred saving the Host Collection:":"Une erreur s’est produite lors de l'enregistrement de la collection d'hôtes :","An error occurred saving the Product:":"Une erreur s’est produite lors de l'enregistrement du produit :","An error occurred saving the Repository:":"Une erreur s’est produite lors de l'enregistrement du référentiel :","An error occurred saving the Sync Plan:":"Une erreur s’est produite lors de l'enregistrement du plan de synchronisation :","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Une erreur s'est produite lors de la tentative d'attachement automatiquement des abonnements. Veuillez vérifier votre fichier journal pour obtenir plus d'informations.","An error occurred updating the Content View:":"Une erreur s’est produite lors de la mise à jour de l'affichage du contenu :","An error occurred updating the sync plan:":"Une erreur s'est produite lors de la mise à jour du plan de synchronisation :","An error occurred while creating the Content Credential:":"Une erreur s'est produite lors de la création des informations d'identification de contenu :","An error occurred while creating the Product: %s":"Une erreur s'est produite lors de la création du produit : %s","An error occurred:":"Une erreur s'est produite :","Applicable":"Applicable","Applicable Content Hosts":"Hôtes de contenu applicables","Applicable Errata":"Errata applicables","Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\".":"Applicable uniquement aux vues composites. Publiez automatiquement une vue composite lorsqu'une nouvelle version de vue de contenu de composant est créée. Notez également que la publication automatique n'aura lieu que lorsque le composant est marqué comme la version la plus récente, « latest ».","Applicable Packages":"Paquetages applicables","Applicable To":"Applicable à","Applicable to Host":"Applicable à l'hôte","Application":"Application","Apply":"Appliquer","Apply {{ errata.errata_id }}":"Appliquer {{ errata.errata_id }}","Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?":"Appliquer {{ errata.errata_id }} à {{ contentHostIds.length }} hôte(s) de contenu ?","Apply {{ errata.errata_id }} to all Content Host(s)?":"Appliquer {{ errata.errata_id }} à tous les hôtes de contenu ?","Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content Host(s)?":"Appliquer {{ errataIds.length }} Errata à {{ contentHostIds.length }} hôte(s) de contenu ?","Apply {{ errataIds.length }} Errata to all Content Host(s)?":"Appliquer l'errata {{ errataIds.length }} à tous les hôtes de contenu ?","Apply Errata":"Appliquer l'errata","Apply Errata to Content Host \"{{host.name}}\"?":"Doit-on appliquer l'errata à l'hôte de contenu \"{{host.name}}\" ?","Apply Errata to Content Hosts":"Appliquer l'errata aux hôtes de contenu","Apply Errata to Content Hosts immediately after publishing.":"Appliquer les errata aux hôtes de contenu tout de suite après la publication.","Apply Selected":"Appliquer Sélectionné","Apply to Content Hosts":"Appliquer aux hôtes de contenu","Apply to Hosts":"Appliquer aux hôtes","Applying":"Application","Apt Repositories":"Référentiels Apt","Arch":"Arch","Architecture":"Architecture","Architectures":"Architectures","Archived Copy":"Copie archivée","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"Êtes-vous sûr de vouloir ajouter le(s) {{ table.numSelected }} hôte(s) de contenu sélectionnés à la/aux collection(s) d'hôtes choisie(s) ?","Are you sure you want to add the sync plan to the selected products(s)?":"Êtes-vous sûr de vouloir ajouter le plan de synchronisation au(x) produit(s) sélectionné(s) ?","Are you sure you want to apply Errata to content host \"{{ host.name }}\"?":"Êtes-vous sûr de vouloir appliquer les errata à l'hôte de contenu \"{{ host.name }}\" ?","Are you sure you want to apply the {{ table.numSelected }} selected errata to the content hosts chosen?":"Êtes-vous sûr de vouloir appliquer les {{ table.numSelected }} errata sélectionnés aux hôtes de contenu choisis ?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"Êtes-vous sûr de vouloir attribuer le(s) {{ table.numSelected }} hôte(s) de contenu sélectionnés à {{ selected.contentView.name }} dans {{ selected.environment.name }} ?","Are you sure you want to disable the {{ table.numSelected }} repository set(s) chosen?":"Êtes-vous sûr de vouloir désactiver le(s) {{ table.numSelected }} ensemble(s) de référentiels choisi(s) ?","Are you sure you want to enable the {{ table.numSelected }} repository set(s) chosen?":"Voulez-vous vraiment activer le(s) {{ table.numSelected }} ensemble(s) de référentiels choisis ?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Êtes-vous sûr de vouloir installer {{ content.content }} sur le(s) {{ getSelectedSystemIds().length }} système(s) sélectionné(s) ?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"Êtes-vous sûr de vouloir supprimer {{ content.content }} du/des {{ getSelectedSystemIds().length }} système(s) sélectionné(s) ?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"Voulez-vous vraiment supprimer la clé d'activation « {{ activationKey.name }} » ?","Are you sure you want to remove Content Credential {{ contentCredential.name }}?":"Voulez-vous vraiment supprimer les informations d'identification de contenu {{ contentCredential.name }} ?","Are you sure you want to remove Content View \"{{ contentView.name }}\"?":"Voulez-vous vraiment supprimer l'affichage du contenu « {{ contentView.name }} » ?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"Êtes-vous sûr de vouloir supprimer la collection d'hôtes \"{{ hostCollection.name }}\" ?","Are you sure you want to remove product \"{{ product.name }}\"?":"Êtes-vous sûr de vouloir supprimer le produit \"{{ product.name }}\" ?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"Êtes-vous sûr de vouloir supprimer le référentiel \"{{ repository.name }}\" ?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"Êtes-vous sûr de vouloir supprimer le plan de synchronisation \"{{ syncPlan.name }}\" ?","Are you sure you want to remove the {{ table.getSelected()[0].name }} file?":["Voulez-vous vraiment supprimer le fichier {{ table.getSelected()[0].name }} ?","Voulez-vous vraiment supprimer les {{ table.numSelected }} fichiers sélectionnés ?"],"Are you sure you want to remove the {{ table.getSelected()[0].name }} package?":["Voulez-vous vraiment supprimer le paquetage {{ table.getSelected()[0].name }} ?","Voulez-vous vraiment supprimer les {{ table.numSelected }} paquetages sélectionnés ?"],"Are you sure you want to remove the {{ table.getSelected()[0].name }} product?":["Voulez-vous vraiment supprimer le produit {{ table.getSelected()[0].name }} ?","Voulez-vous vraiment supprimer les {{ table.numSelected().length }} produits sélectionnés ?"],"Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"Êtes-vous sûr de vouloir supprimer le(s) {{ table.numSelected }} hôte(s) de contenu sélectionnés de la/des collection(s) d'hôtes choisie(s) ?","Are you sure you want to remove the sync plan from the selected product(s)?":"Voulez-vous vraiment supprimer le plan de synchronisation du ou des produits sélectionnés ?","Are you sure you want to reset to default the {{ table.numSelected }} repository set(s) chosen?":"Voulez-vous vraiment réinitialiser les valeurs par défaut du/des {{ table.numSelected }} ensemble(s) de référentiels choisi(s) ?","Are you sure you want to restart services on content host \"{{ host.name }}\"?":"Voulez-vous vraiment redémarrer les services sur l'hôte de contenu « {{ host.name }} » ?","Are you sure you want to set the Release Version the {{ table.numSelected }} content host(s) selected to {{ selected.release }}?. This action will affect only those Content Hosts that belong to the appropriate Content View and Lifecycle Environment containining that release version.":"Voulez-vous vraiment définir la version de publication du/des {{ table.numSelected }} hôte(s) de contenu sélectionné(s) sur {{ selected.release }} ?. Cette action n'affectera que les hôtes de contenu qui appartiennent à l'affichage de contenu et à l'environnement de cycle de vie appropriés contenant cette version de publication.","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Êtes-vous sûr de vouloir mettre à jour {{ content.content }} sur le(s) {{ getSelectedSystemIds().length }} système(s) sélectionné(s) ?","Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?":"Voulez-vous vraiment mettre à jour tous les paquetages sur le(s) {{ getSelectedSystemIds().length }} système(s) sélectionné(s) ?","Assign":"Attribuer","Assign Lifecycle Environment and Content View":"Attribuer l'environnement de cycle de vie et l'affichage du contenu","Assign Release Version":"Attribuer une version de publication","Associations":"Associations","At least one Errata needs to be selected to Apply.":"Au moins un errata doit être sélectionné pour appliquer.","Attached":"Attaché","Author":"Auteur","Auto Publish":"Publication automatique","Auto-Attach":"Attacher automatiquement","Automatic":"Automatique","Available Content Views for Composite Content View:":"Affichages du contenu disponibles pour l'affichage du contenu composite :","Available Puppet Modules for Content View:":"Modules puppet disponibles pour l'affichage du contenu :","Available Schema Versions":"Versions de schéma disponibles","Back":"Retour","Back To Errata List":"Retour à la liste d'errata","Backend Identifier":"Identifiant du serveur principal","Basic Information":"Informations de base","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Les ensembles de contenus de référentiels actuellement disponibles pour cet hôte de contenu à travers ses abonnements sont situés ci-dessous. Pour les abonnements Red Hat, du contenu supplémentaire est disponible via","Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Les ensembles de référentiels actuellement disponibles pour cette clé d'activation à travers ses abonnements sont situés ci-dessous. Pour les abonnements Red Hat, du contenu supplémentaire est disponible via","Between versions {{ rule.min_version }} and {{ rule.max_version }}":"Entre les versions {{ rule.min_version }} et {{ rule.max_version }}","Bootable":"Amorçable","Branch Info":"Informations sur la branche","Branch Name":"Nom de la branche","Bug Fix":"Correctif de bogue","Bug Fix Advisory":"Alerte de correctif de bogue","Bugfix":"Correction de bogues","Build Host":"Hôte de création","Build Information":"Informations de création","Build Time":"Temps de génération","Cancel":"Annuler","Cannot Remove":"Suppression impossible","Cannot republish Repository without the proper permissions.":"Impossible d'effectuer une nouvelle publication du référentiel sans les autorisations appropriées.","Cannot republish Repository, a sync is already in progress.":"Nouvelle publication du référentiel impossible. Une synchronisation est déjà en cours.","Cannot sync Repository without a URL.":"Impossible de synchroniser le référentiel sans URL.","Cannot sync Repository without the proper permissions.":"Impossible de synchroniser le référentiel sans les autorisations appropriées.","Cannot sync Repository, a sync is already in progress.":"Synchronisation du référentiel impossible. Une synchronisation est déjà en cours.","Capacity":"Capacité","Certificate":"Certificat","Change assigned Lifecycle Environment or Content View":"Modifier l'environnement de cycle de vie attribué ou l'affichage du contenu","Change Host Collections":"Modifier les collections d'hôtes","Change Lifecycle Environment":"Modifier l'environnement du cycle de vie","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"Une version 1.10 ou ultérieure de subscription-manager doit être installée sur cet hôte pour modifier les paramètres par défaut pour les hôtes de contenu qui s'enregistrent avec cette clé d'activation.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"Une version 1.10 ou ultérieure de subscription-manager doit être installée sur cet hôte pour modifier les paramètres par défaut.","Checksum":"Somme de contrôle","Checksum Type":"Type de somme de contrôle","Choose <b>Default</b> to enable the repository for all architectures":"Choisir <b>Default</b> pour activer le référentiel pour toutes les architectures","Choose a lifecycle environment from the available promotion paths.":"Choisir un environnement de cycle de vie à partir des chemins d'accès de promotion disponibles.","Choose one of the policy selections for downloading ostree content from upstream url during synchronization. Choose \"Latest\" for downloading the latest version of the upstream branch. Choose \"All History\" to download all available versions of the upstream repository (this may take a large amount of space). Choose \"Custom Depth\" and provide an number to indicate the number of prior versions of the upstream branch to download.":"Choisissez une des sélections de stratégie pour télécharger le contenu ostree depuis l'URL en amont pendant la synchronisation. Choisissez « La plus récente » pour télécharger la dernière version de la branche en amont. Choisissez « Tout l'historique » pour télécharger toutes les versions disponibles du référentiel en amont (cette opération est très gourmande en espace). Choisissez « Personnaliser la profondeur » et spécifiez un nombre pour indiquer le nombre de versions précédentes de la branche en amont à télécharger.","Click here to check the status of the task.":"Cliquez ici pour vérifier le statut de la tâche.","Click here to select Errata for an Incremental Update.":"Cliquez ici pour sélectionner les erratas pour une mise à jour croissante.","Click to view task":"Cliquez pour voir la tâche","Close":"Fermer","Comma separated list of components to sync from (leave clear to sync all). Example: main":"Liste des composants à synchroniser, séparés par des virgules (laisser vide pour tout synchroniser). Exemple : main","Comma separated list of processor architectures to filter the sync by. Example: amd64":"Liste des architectures de processeur séparées par des virgules selon laquelle effectuer la synchronisation. Exemple : amd64","Comma separated list of releases (suite or codename) to sync from. Default: stable":"Liste des versions séparées par des virgules (suite ou nom de code) à partir de laquelle effectuer la synchronisation. Valeur par défaut : stable","Commit":"Valider","Complete Sync":"Terminer la synchronisation","Completely remove version?":"Supprimer la version entièrement ?","Components":"Composants","Components:":"Composants :","Composite":"Composite","Composite View":"Affichage composite","Composite View?":"Affichage composite ?","Confirm":"Confirmer","Confirm Remove":"Confirmer la suppression","Confirm Version Removal: Version {{ version.version }}":"Confirmer la suppression de la version : Version {{ version.version }}","Container Image Manifest":"Manifeste d'image de conteneur","Container Image Manifest Lists":"Listes des manifestes d'images de conteneurs","Container Image Manifests":"Manifestes d'images de conteneurs","Container Image metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération des métadonnées d'image de conteneur a été initiée en arrière plan. Cliquer\n <a ng-href=\"{{ taskUrl() }}\">ici</a> pour contrôler la progression.","Container Image Tag":"Balise d'image de conteneur","Container Image Tag Filter:":"Filtre de balise d'image de conteneur :","Container Image Tags":"Balises d'image de conteneur","Container Images":"Images de conteneur","Content":"Contenu","Content Counts":"Nombre de contenus","Content Credential %s has been created.":"Les informations d'identification de contenu %s ont été créées.","Content Credential Contents":"Contenu des informations d'identification de contenu","Content Credential successfully uploaded":"Informations d'identification de contenu téléchargées avec succès","Content credential updated":"Informations d'identification de contenu mises à jour","Content Credentials":"Informations d'identification de contenu","Content Host":"Hôte du contenu","Content Host Bulk Content":"Contenu par lot d'hôte de contenu","Content Host Bulk Subscriptions":"Abonnements par lots d'hôte de contenu","Content Host Content":"Contenu d'hôte de contenu","Content Host Counts":"Nombre d'hôtes de contenu","Content Host Limit":"Limite d'hôte de contenu","Content Host Properties":"Propriétés d'hôte de contenu","Content Host Registration":"Enregistrement d'hôte de contenu","Content Host Status":"Statut d'hôte de contenu","Content Host:":"Hôte de contenu :","Content Hosts":"Hôtes de contenu","Content Hosts for Activation Key:":"Hôtes de contenu pour clé d'activation :","Content Hosts for:":"Hôtes de contenu pour :","Content Hosts using Version {{ version.version }}":"Hôtes de contenu utilisant la Version {{ version.version }}","Content Type":"Type de contenu","Content View":"Affichage du contenu","Content View Name":"Nom de l'affichage de contenu","Content View updated.":"Affichage du contenu mis à jour.","Content View Version":"Version de l'affichage de contenu","Content View:":"Affichage du contenu :","Content Views":"Affichages du contenu","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Affichages de contenu <div>{{ library.counts.content_views || 0 }}</div>","Content Views for {{ contentView.name }}":"Affichages du contenu pour {{ contentView.name }}","Content Views for Composite Content View:":"Affichages du contenu pour l'affichage du contenu composite :","Content Views for Deb:":"Affichages de contenu pour Deb :","Content Views for File:":"Affichages du contenu pour le fichier :","Content Views for Puppet Module:":"Affichages de contenu pour le module Puppet :","Content Views that contain this Deb":"Affichages de contenu contenant ce Deb","Content Views that contain this File":"Affichages du contenu comportant ce fichier","Content Views that contain this Puppet Module":"Affichages du contenu comportant ce module Puppet","Context":"Contenu","Contract":"Contrat","Copy Activation Key":"Copier la clé d'activation","Copy Content View":"Copier l'affichage du contenu","Copy Content View:":"Copier l'affichage du contenu :","Copy Host Collection":"Copier la collection d'hôtes","Cores per Socket":"Noyaux par Socket","Create":"Créer","Create a copy of {{ activationKey.name }}":"Créer une copie de {{ activationKey.name }}","Create a copy of {{ contentView.name }}":"Créer une copie de {{ contentView.name }}","Create a copy of {{ hostCollection.name }}":"Créer une copie de {{ hostCollection.name }}","Create a rule using the add button above.":"Créez une règle à l'aide du bouton ajouter ci-dessus.","Create Activation Key":"Création des clés d'activation","Create Content Credential":"Créer des informations d'identification de contenu","Create Content View":"Créer un affichage du contenu","Create Discovered Repositories":"Créer des référentiels détectés","Create Environment Path":"Créer un chemin d'accès à l'environnement","Create Host Collection":"Créer une collection d'hôtes","Create new view":"Créer un nouvel affichage","Create New View":"Créer un nouvel affichage","Create Product":"Créer un produit","Create Selected":"Créer sélectionné","Create Status":"Créer un statut","Create Sync Plan":"Créer un plan de synchronisation","Create view from existing views":"Créer un affichage à partir d'affichages existants","Creating repository...":"Création du référentiel en cours...","Critical":"Critique","Current Lifecycle Environment (%e/%cv)":"Environnement de cycle de vie actuel (%e/%cv)","Current Subscriptions for Activation Key:":"Abonnements actuels pour la clé d'activation :","Currently %s":"Actuellement %s\n","Currently Selected Puppet Modules":"Modules Puppet sélectionnés actuellement","custom cron":"cron personnalisé","Custom Cron":"Cron personnalisé","Custom Depth":"Personnaliser la profondeur","Custom Depth (Currently %s)":"Personnaliser la profondeur (actuellement %s)","Customize":"Personnaliser","CVEs":"CVE","daily":"quotidien","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Chaque jour à {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)","Date":"Date","Date Type":"Type de date","deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées deb a été initiée en arrière-plan. Cliquez <a href=\"{{ taskUrl() }}\">ici</a> pour vérifier la progression.","deb Packages":"Packages deb","Deb Packages":"Packages deb","Deb:":"Deb :","Debs":"Debs","Default":"Défaut","Delete Hosts":"Supprimer ces hôtes","Delete Version {{ version.version }}":"Supprimer la version {{ version.version }}","Deleted from %s":"Supprimé de %s","Deleting from %count environments.":"Suppression à partir de %count environnements ","Deleting from 1 environment.":"Suppression à partir de 1 environnement.","Deletion from %s":"Suppression à partir de %s","Delta RPM":"RPM Delta","Dependencies":"Les dépendances","Description":"Description","Details":"Détails","Details for {{ contentView.name }}":"Détails de {{ contentView.name }}","Details for Activation Key:":"Détails de la clé d'activation :","Details for Container Image Tag:":"Détails de la balise d'image de conteneur :","Details for Content View:":"Détails de l'affichage du contenu :","Details for Product:":"Détails du produit :","Details for Repository:":"Détails du référentiel :","Digest":"Digest","Disable":"Désactiver","Disabled":"Désactivé","Disabled (overridden)":"Désactivé (remplacé)","Discover":"Découvrir","Discovered Repository":"Référentiel détecté","Discovery failed. Error: %s":"Échec de la détection. Erreur : %s","Distribution":"Distribution","Distribution Information":"Information Distribution","Docker metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées Docker a été initiée en arrière-plan. Cliquez <a ng-href=\"{{ taskUrl() }}\">ici</a> pour vérifier la progression.","Docker Repositories":"Référentiels Docker","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Référentiels Docker <div>{{ library.counts.docker_repositories || 0 }}</div>","Docker Repository Selection":"Sélection de référentiel Docker","Done":"Terminé","Download Policy":"Politique de téléchargement","Edit":"Modifier","Enable":"Activer","Enabled":"Activé(e)","Enabled (overridden)":"Activé (remplacé)","End Date":"Date de fin","Enhancement":"Amélioration","Enter Package Group Name(s)...":"Veuillez saisir le(s) nom(s) de groupe(s) de paquets...","Enter Package Name(s)...":"Veuillez saisir le(s) nom(s) de paquet(s)...","Environment":"Environnement","Environment saved":"Environnement enregistré","Environments":"Environnements","Environments List":"Liste des environnements","Equal To":"Égal à","Errata":"Errata","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Errata <div>{{ library.counts.errata.total || 0 }}</div>","Errata are automatically Applicable if they are Installable":"Les errata sont automatiquement applicables si installables","Errata Details":"Détails d'errata","Errata Filter:":"Filtre d'errata :","Errata for:":"Errata pour :","Errata ID":"ID d'errata","Errata Installation":"Installation d'errata","Errata successfully added.":"Errata ajouté(s).","Errata successfully removed.":"Errata supprimé(s).","Errata Task List":"Liste des tâches d'errata","Errata Tasks":"Tâches d'errata","Errata Type":"Type d'errata","Errata:":"Errata :","Erratum - by ID":"Erratum : par id","Erratum - Date and Type":"Erratum : date et type","Erratum Date Range":"Plage de dates d'erratum","Error during upload:":"Erreur lors du téléchargement :","Event":"Événement","Exclude":"Exclure","Exclude all RPMs with no errata.":"Exclut tous les RPM sans errata.","Existing Product":"Produit existant","Expires":"Expire","Export":"Exporter","Exported content view":"Vue de contenu exporté","Family":"Famille","File Information":"Information Fichier","File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La suppression de fichiers a été initiée en arrière-plan. Cliquez <a href=\"{{ taskUrl() }}\">ici</a> pour contrôler la progression.","File Repositories":"Référentiels de fichiers","File too large.":"Fichier trop volumineux.","File too large. Please use the CLI instead.":"Fichier trop volumineux. Veuillez utiliser le CLI.","File:":"Fichier :","Filename":"Nom de fichier","Files":"Fichiers","Files in package {{ package.nvrea }}":"Fichiers du paquetage {{ package.nvrea }}","Filter":"Filtre","Filter by Status:":"Filtrer par Statut :","Filter information for:":"Information de filtre pour :","Filter rule successfully removed.":"Règle de filtre supprimée.","Filter rule successfully updated.":"Règle de filtre mise à jour.","Filter Saved":"Filtre enregistré","Filter:":"Filtre :","Filter...":"Filtre...","Filters":"Filtres","Filters for Content View:":"Filtres pour affichage du contenu :","Filters successfully removed.":"Filtres supprimés.","Finished At":"Fini à","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Pour les systèmes d'exploitation plus anciens, tels que Red Hat Enterprise Linux 5 ou CentOS 5, il est recommandé d'utiliser sha1.","Force Promote?":"Forcer Promotion ?","Force Puppet Environment":"Forcer l'environnement Puppet","GPG Key":"Clé GPG","Greater Than":"Supérieur à","Greater than version {{ rule.min_version }}":"Postérieure à la version {{ rule.min_version }}","Group":"Groupe","Group Install":"Installation de groupe","Group Remove":"Suppression de groupe","Helper":"Assistant","here":"ici","Hide affected Activation Keys":"Masquer les clés d'activation affectées","Hide affected Content Hosts":"Masquer les hôtes de contenu affectés","History":"Historique","History for Content View:":"Historique de l'affichage du contenu :","Host %s has been deleted.":"L'hôte %s a été supprimé.","Host %s has been unregistered.":"L'hôte %s a été désenregistré.","Host Collection Management":"Gestion de collection d'hôtes","Host Collection Membership":"Abonnement de collection d'hôtes","Host Collection removed.":"Collection d'hôtes supprimée","Host Collection updated":"Collection d'hôtes mise à jour","Host Collection:":"Collection d'hôtes :","Host Collections":"Collections d'hôtes","Host Collections for:":"Collections d'hôtes pour :","Host Count":"Nombre d'hôtes","Host Group":"Groupe d'hôtes","Host Limit":"Limite d'hôte","Hostname":"Nom d'hôte","Hosts":"Hôtes","hourly":"horaire","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"Chaque heure à {{ product.sync_plan.sync_date | date:'m' }} minutes et {{ product.sync_plan.sync_date | date:'s' }} secondes","HTTP Proxy":"Mandataire HTTP","Id":"Id","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Si vous préférez déplacer des portions de ces clés d'activations vers différents affichages du contenu ou environnements de cycle de vie, cliquez","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Si vous préférez déplacer des portions de ces clés d'activations vers différents affichages du contenu ou environnements de cycle de vie, cliquez <a href=\"{{ activationKeyLink() }}\">ici</a> pour les gérer individuellement.","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Si vous préférez déplacer des portions de ces hôtes de contenu vers différents environnements ou affichages du contenu, cliquez <a href=\"{{ contentHostsLink() }}\">ici</a> pour gérer ces hôtes de contenu par lots.","Ignorable Content":"Contenu pouvant être ignoré","Image":"Image","Immediate":"Immédiatement","Important":"Important","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Pour ajouter un affichage du contenu à un affichage composite, vous devez d'abord publier une version initiale de l'affichage du contenu.","In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n or ask your admin for a certificate.":"Pour parcourir ce référentiel, vous devez <a ng-href=\"/organizations/{{ organization }}/edit\">télécharger le certificat</a>\n ou en demander un à votre administrateur.","Include":"Inclure","Include all RPMs with no errata.":"Inclure tous les RPM sans errata.","Inclusion Type":"Type d'inclusion","Incremental update":"Mise à jour incrémentielle","Incremental Update":"Mise à jour croissante","Install":"Installer","Install client package:":"Installer le package client :","Install Selected":"Installer sélectionné","Install the pre-built bootstrap RPM:":"Installez le RPM bootstrap existant :","Installable":"Installable","Installable Errata":"Errata installable","Installable Updates":"Mises à jour installables","Installed":"Installé","Installed On":"Installé sur","Installed Package":"Paquet installé","Installed Packages":"Paquets installés","Installed Products":"Produits installés","Installed Profile":"Profil installé","Interfaces":"Interfaces","Interval":"Intervalle","IPv4 Address":"Adresse IPv4","IPv6 Address":"Adresse IPv6","Issued":"Émis","Issued On":"Fourni le","Katello Agent":"Agent Katello","Label":"Étiquette","Last Checkin":"Dernière connexion","Last Published":"Dernière publication","Last Puppet Report":"Dernier rapport Puppet","Last Sync":"Dernière synchronisation","Last synced":"Dernière synchronisation","Last Updated On":"Dernière mise à jour effectuée le","Latest (Currently %s)":"Les (Currently %s) plus récents","Latest (Currently no version)":"La plus récente (actuellement aucune version)","Latest Only":"La plus récente uniquement","Learn more about these packages in the <a href=\"https://theforeman.org/plugins/katello/\">Documentation</a>":"Approfondissez vos connaissances sur ces packages dans la <a href=\"https://theforeman.org/plugins/katello/\">Documentation</a>","Less Than":"Inférieur à","Less than version {{ rule.max_version }}":"Antérieure à la version {{ rule.max_version }}","Library":"Bibliothèque","Library Repositories":"Référentiels de bibliothèques","Library Repositories that contain this Deb.":"Référentiels de bibliothèques qui contiennent ce Deb.","Library Repositories that contain this File.":"Référentiels de bibliothèques qui contiennent ce fichier.","Library Repositories that contain this Puppet Module.":"Référentiels de bibliothèques qui contiennent ce module Puppet.","Library Synced Content":"Contenu synchronisé de bibliothèque","License":"Licence","Lifecycle Environment":"Environnement de cycle de vie","Lifecycle Environment Paths":"Chemins d'environnement de cycle de vie","Lifecycle Environment:":"Environnement de cycle de vie :","Lifecycle Environments":"Environnements de cycle de vie","Limit":"Limite","Limit Repository Sets to only those available in this Activation Key's Lifecycle Environment":"Limiter les ensembles de référentiels à ceux qui sont disponibles dans l'environnement de cycle de vie de cette clé d'activation","Limit Repository Sets to only those available in this Host's Lifecycle Environment":"Limiter les ensembles de référentiels à ceux qui sont disponibles dans l'environnement de cycle de vie de cet hôte","Limit to environment":"Limiter à l'environnement","Limit to Environment":"Limiter à l'environnement","Limit to Lifecycle Environment":"Limiter à l'environnement de cycle de vie","Limit:":"Limite :","List":"Liste","List/Remove":"Répertorier/Supprimer","Loading Environment Paths...":"Chargement de chemins d'environnement...","Loading...":"Chargement...","Loading...\"":"Chargement en cours...»","Manage Container Image Manifests for Repository:":"Gérer les manifestes d'images de conteneurs pour le référentiel :","Manage deb Packages for Repository:":"Gérer les packages deb pour le référentiel :","Manage Errata":"Gérer les errata","Manage Files for Repository:":"Gérer les fichiers pour le référentiel :","Manage OSTree Branches for Repository:":"Gérer les branches OSTree pour le référentiel :","Manage Packages":"Gérer les paquets","Manage Packages for Repository:":"Gérer les paquets pour le référentiel :","Manage Puppet Modules for {{ repository.name }}":"Gérer les modules Puppet pour {{ repository.name }}","Manage Puppet Modules for Repository:":"Gérez les modules Puppet pour le référentiel :","Manage Repository Sets":"Gérer les ensembles de référentiels","Manage Subscriptions":"Gérer les abonnements","Manage Sync Plan":"Gérer le plan de synchronisation","Manifest Lists":"Listes de manifestes","Manifest Type":"Type de manifeste","Many Content View actions are disabled while a version task is in progress.":"De nombreuses actions de l'affichage de contenu sont désactivées pendant qu'une tâche de version est en cours.","Maximum Version":"Version maximum","Minimum Version":"Version minimum","Mirror on Sync":"Mirroir Sync","Model":"Modèle","Moderate":"Modéré","Module %s removed from Content View.":"Module %s supprimé de l'affichage du contenu.","Module Stream":"Flux de module","Module Streams":"Flux de module","More Details":"Plus de détails","N/A":"N/A","Name":"Nom","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"Nom du référentiel en amont que vous souhaitez synchroniser. Exemple : 'busybox' ou 'fedora/ssh'.","Networking":"Réseau","Never":"Jamais","Never registered":"Jamais enregistré","Never synced":"Jamais synchronisé","New Activation Key":"Nouvelle clé d'activation","New Environment":"Nouvel environnement","New Filter":"Nouveau filtre","New Filter for Content View:":"Nouveau filtre pour l'affichage du contenu :","New Name:":"Nouveau nom :","New Product":"Nouveau produit","New Repository":"Nouveau référentiel","New Sync Plan":"Nouveau plan de synchronisation","New sync plan successfully created.":"Nouveau plan de synchronisation créé.","Next":"Suivant","Next Sync":"Prochaine synchronisation","No":"Non","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"Aucune permission de « Modification » sur certaines clés d'activation dans cet environnement de cycle de vie.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"Aucune permission de « Modification » sur certains hôtes de contenu dans cet environnement de cycle de vie.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"Aucune permission de « Promouvoir/Supprimer » sur l'environnement de cycle de vie.","No activation keys are affected.":"Aucune clé d'activation n'est affectée.","No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".":"Aucune autre version n'est disponible. Les versions disponibles sont basées sur ce qui est disponible dans « {{ host.content_facet_attributes.content_view.name }} », l' <a href=\"/content_views\">affichage du contenu</a> sélectionné auquel cet hôte de contenu est attaché pour l'<a href=\"/lifecycle_environments\">environnement de cycle de vie</a> donné, « {{ host.content_facet_attributes.lifecycle_environment.name }} ».","No Content Hosts are affected.":"Aucun hôte de contenu affecté","No Content Hosts match this Erratum.":"Aucun hôte de contenu ne correspond à cet erratum.","No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first.":"Aucun affichage du contenu disponible à ajouter à {{ contentView.name }}. Créez d'abord des affichages du contenu non composites.","No Content Views available, please select another environment.":"Aucun affichage du contenu disponible, veuillez sélectionner un autre environnement","No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views.":"Aucun affichage du contenu n'appartient à {{ contentView.name }}. Utilisez l'onglet ajouter pour ajouter des affichages du contenu.","No Content Views contain this Deb":"Aucun affichage de contenu ne contient ce Deb","No Content Views contain this File":"Aucun affichage du contenu ne comporte ce fichier","No Content Views contain this Puppet Module":"Aucun affichage du contenu ne comporte ce module Puppet","No content views exist for {{selected.environment.name}}":"Il n'existe aucun affichage du contenu pour {{selected.environment.name}}.","No Content Views match the search.":"Aucun affichage du contenu ne correspond à la recherche.","No discovered repositories.":"Aucun référentiel détecté.","No enabled Repository Sets provided through subscriptions.":"Aucun ensemble de référentiels fourni avec ces abonnements.","No Errata to display":"Aucun erratum à afficher.","No Host Collections match your search.":"Aucune collection d'hôtes ne correspond à votre recherche.","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Aucune collection d'hôte à afficher. Vous pouvez ajouter des collections d'hôtes après avoir sélectionné « Collections d'hôtes » sous « Hôtes » dans le menu principal.","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"Aucune collection d'hôte à afficher. Vous pouvez ajouter des collections d'hôtes après avoir sélectionné l'onglet « Ajouter ».","No matching results.":"Aucun résultat correspondant.","No products are available to add to this Sync Plan.":"Aucun produit disponible à ajouter à ce plan de synchronisation.","No products are have been added to this Sync Plan.":"Aucun produit n'a été ajouté à ce plan de synchronisation.","No puppet modules found":"Aucun module puppet trouvé","No releases exist in the Library.":"Aucune publication existante dans la bibliothèque.","No Repositories contain this Branch.":"Aucun référentiel ne contient cette branche.","No Repositories contain this Deb":"Aucun référentiel ne contient ce Deb","No Repositories contain this Erratum.":"Aucun référentiel ne contient cet erratum.","No Repositories contain this File":"Aucun référentiel ne contient ce fichier.","No Repositories contain this Package.":"Aucun référentiel ne contient ce paquet.","No Repositories contain this Puppet Module":"Aucun référentiel ne contient ce module Puppet","No repository sets provided through subscriptions.":"Aucun ensemble de référentiels fourni avec ces abonnements.","No sync information available.":"Aucune information de synchronisation disponible.","No tasks exist for this resource.":"Aucune tâche existante pour cette ressource.","No versions found for {{ $stateParams.moduleName }}":"Aucune version trouvée pour {{ $stateParams.moduleName }}","None":"Aucun","Not installed":"Non installé.","Not started":"Non démarré","Not Synced":"Pas synchronisé","Not yet published":"Pas encore publié","Number of CPUs":"Nombre de CPU","Number of Repositories":"Nombre de référentiels","On Demand":"À la demande","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"Une ou plusieurs des errata sélectionnés n'ont pas pu être installés par le biais de vos versions d'affichage de contenu publiées installées sur vos hôtes sélectionnés. Les nouvelles versions d'affichage de contenu (indiquées ci-dessous)\n seront créées, ce qui permettra d'installer cet errata sur l'environnement de l'hôte. Cette nouvelle version viendra remplacer la version actuelle dans l'environnement de cycle de vie de votre\n hôte. Pour installer ces errata sur des hôtes tout de suite après la publication, veuillez cocher la case ci-dessous.","One or more RPMs are not showing up in the local repository even though they exist in the upstream repository.":"Un ou plusieurs RPM n'apparaissent pas dans le référentiel local même s'ils sont présents dans le référentiel en amont.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"N'afficher que les hôtes de contenu où l'errata est actuellement installable dans l'environnement de cycle de vie de l'hôte.","Only show Errata that are Applicable to one or more Content Hosts":"N'afficher que les errata applicables à un ou plusieurs hôtes de contenu","Only show Errata that are Installable on one or more Content Hosts":"N'afficher que les errata pouvant être installés sur un ou plusieurs hôtes de contenu","Only show Packages that are Applicable to one or more Content Hosts":"N'afficher que les paquetages applicables à un ou plusieurs hôtes de contenu","Only show Packages that are Upgradable on one or more Content Hosts":"N'afficher que les paquetages pouvant être mis à niveau sur un ou plusieurs hôtes de contenu","Only show Subscriptions for products not already covered by a Subscription":"N'afficher que les abonnements de produits non encore couverts par un abonnement","Only show Subscriptions which can be applied to products installed on this Host":"N'afficher que les abonnements pouvant s'appliquer aux produits installés sur cet hôte","Only show Subscriptions which can be attached to this Host":"N'afficher que les abonnements pouvant être attachés à cet hôte","Only the Applications with a Helper can be restarted.":"Seules les applications dotées d'un assistant peuvent être redémarrées.","Operating System":"Système d'exploitation","Optimized Sync":"Synchronisation optimisée","Organization":"Organisation","Original Sync Date":"Date de synchronisation d'origine","OS":"OS","OSTree Branch metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées de la branche OSTree a été initiée en arrière-plan.\n Cliquez <a ng-href=\"{{ taskUrl() }}\">ici</a> pour surveiller la progression.","OSTree Branch:":"Branche OSTree :","OSTree Branches":"Branches OSTree","OSTree Content":"Contenu OSTree","OSTree Repositories":"Référentiels OSTree","OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>":"Référentiels OSTree <div>{{ library.counts.ostree_repositories || 0 }}</div>","Override to Disabled":"Remplacer par Désactivé","Override to Enabled":"Remplacer par Activé","Package":"Paquet","Package Actions":"Actions de paquets","Package Filter:":"Filtre de paquet :","Package Group":"Groupe de paquets","Package Group Filter:":"Filtre de groupe de paquets :","Package Group successfully added.":"Groupe de paquets ajouté.","Package Group successfully removed.":"Groupe de paquets supprimé.","Package Groups":"Groupes de paquets","Package Groups for Repository:":"Groupe de paquets pour le référentiel :","Package Information":"Informations sur les paquetages","Package Install":"Installation de paquet","Package Installation, Removal, and Update":"Installation, suppression et mise à jour de paquet","Package Remove":"Suppression de paquets","Package successfully added.":"Paquet ajouté.","Package successfully removed.":"Paquet supprimé.","Package successfully updated.":"Paquet mis à jour.","Package Update":"Mise à jour de paquets","Package Updates":"Mises à jour des paquetages","Package:":"Paquet :","Package/Group Name":"Nom de paquet/groupe","Packages":"Paquets","Packages <div>{{ library.counts.packages || 0 }}</div>":"Paquets <div>{{ library.counts.packages || 0 }}</div>","Packages are automatically Applicable if they are Upgradable":"Les paquetages sont automatiquement applicables s'ils peuvent être mis à niveau","Packages for:":"Paquets pour :","Parameters":"Paramètres","Part of a manifest list":"Partie d'une liste de manifeste","Password":"Mot de passe","Password of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Mot de passe de l'utilisateur de référentiel en amont pour l'authentification. Laissez vide si le référentiel ne requiert pas d'authentification.","Paste contents of Content Credential":"Coller le contenu des informations d'identification de contenu","Path":"Chemin","Perform":"Effectuer","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"Veuillez sélectionner un environnement de cycle de vie et un affichage du contenu pour déplacer les clés d'activation affectées vers :","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"Veuillez sélectionner un environnement de cycle de vie et un affichage du contenu pour déplacer ces hôtes de contenu vers :","Please select a Lifecycle Environment.":"Veuillez sélectionner un environnement de cycle de vie.","Please select an environment.":"Veuillez sélectionner un environnement","Please select one from the list below and you will be redirected.":"Veuillez en sélectionner un à partir de la liste ci-dessous pour être redirigé.","Plus %y more errors":"Plus %y erreurs supplémentaires","Plus 1 more error":"Plus 1 erreur supplémentaire","Previous Lifecycle Environment (%e/%cv)":"Environnement de cycle de vie précédent (%e/%cv)","Prior Environment":"Environnement précédent","Product":"Produit","Product Count":"Nombre de produits","Product delete operation has been initiated in the background.":"La suppression du produit a été initiée en arrière-plan.","Product Enhancement Advisory":"Alerte d'amélioration de produit","Product information for:":"Information de produit pour :","Product Management for Sync Plan:":"Gestion de produits pour le plan de synchronisation :","Product Name":"Nom de produit","Product Options":"Options du produit","Product Saved":"Produit enregistré","Product sync has been initiated in the background.":"La synchronisation du produit a été initiée en arrière-plan.","Product syncs has been initiated in the background. Click %s to monitor the progress.":"La synchronisation du produit a été initiée en arrière-plan. Cliquez sur %s pour contrôler la progression.","Products":"Produits","Products <div>{{ library.counts.products || 0 }}</div>":"Produits <div>{{ library.counts.products || 0 }}</div>","Products for":"Produits pour","Products not covered":"Produits non couverts","Project Page":"Page du projet","Promote":"Promouvoir","Promote Content View:":"Promouvoir l'affichage du contenu","Promote Version":"Promouvoir la version","Promote Version {{ version.version }}":"Promouvoir la version {{ version.version }}","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"Promouvoir la version dans {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"Promu à %s","Promoting to %count environments.":"Promouvoir à %count environnements.","Promoting to 1 environment.":"Promouvoir à 1 environnement.","Promotion History":"Historique de promotion","Provides":"Fournit","Provisioning Details":"Détails de provisioning","Provisioning Host Details":"Détails d'hôte de provisioning","Publish Content View:":"Publier l'affichage du contenu :","Publish New Version":"Publier la nouvelle version","Publish via HTTP":"Publier via HTTP","Publish via HTTPS":"Publier via HTTPS","Published":"Publié le","Published At":"Publié à","Published new version":"Nouvelle version publiée","Published Repository Information":"Informations de référentiel publiées","Publishing and promoting to %count environments.":"Publier et promouvoir à %count environnements.","Publishing and promoting to 1 environment.":"Publier et promouvoir à 1 environnement.","Puppet Environment":"Environnement Puppet","Puppet module added to Content View":"Module puppet ajouté à l'affichage du contenu","Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées de module Puppet a été initiée en arrière-plan.\n Cliquez <a ng-href=\"{{ taskUrl() }}\">ici</a> pour contrôler la progression.","Puppet Module:":"Module Puppet :","Puppet Modules":"Modules Puppet","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Modules puppet <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"Modules puppet pour l'affichage du contenu :","Quantity":"Quantité","Quantity (To Add)":"Quantité (à ajouter)","RAM (GB)":"RAM (Go)","Range":"Gamme","Reboot Suggested":"Redémarrage suggéré","Reboot Suggested?":"Redémarrage suggéré ?","Recalculate\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>":"Recalculer\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>","Red Hat Repositories page":"Page des référentiels Red Hat","Red Hat Repositories page.":"Page des référentiels Red Hat.","Refresh Table":"Actualiser la table","Regenerate Repository Metadata":"Régénérer les métadonnées de référentiel","Register a Content Host":"Enregistrer un hôte de contenu","Register Content Host":"Enregistrer l'hôte de contenu","Register using subscription-manager:":"Enregistrer via subscription-manager :","Registered":"Enregistré","Registered By":"Enregistré par","Registered Through":"Enregistré via","Registry Name Pattern":"Modèle de nom de registre","Registry to Discover":"Registre à détecter","Registry URL":"URL de registre","Release":"Version","Release Version":"Version de publication","Release Version:":"Version de sortie :","Releases":"Versions","Remote execution plugin is required to be able to run any helpers.":"Le plug-in d'exécution à distance est requis pour permettre l'exécution des assistants.","Removal of selected repositories initiated successfully.":"Suppression des référentiels initiés.","Remove":"Supprimer","Remove {{ contentView.name }}":"Supprimer {{ contentView.name }}","Remove Activation Key \"{{ activationKey.name }}\"?":"Supprimer la clé d'activation \"{{ activationKey.name }}\" ?","Remove Container Image Manifests":"Supprimer les manifestes d'images de conteneurs","Remove Content Credential":"Supprimer les informations d'identification de contenu","Remove Content Credential {{ contentCredential.name }}":"Supprimer les informations d'identification de contenu {{ contentCredential.name }}","Remove Content View":"Supprimer l'affichage du contenu","Remove Content Views":"Supprimer les affichages du contenu","Remove Environment":"Supprimer l'environnement","Remove Errata":"Supprimer les errata","Remove Files":"Supprimer les fichiers","Remove From":"Supprimer de","Remove Host Collection \"{{ hostCollection.name }}\"?":"Supprimer la collection d'hôtes \"{{ hostCollection.name }}\" ?","Remove Module":"Supprimer le module","Remove Package Group":"Supprimer le groupe de paquets","Remove Packages":"Supprimer les paquets","Remove Product":"Supprimer le produit","Remove Product \"{{ product.name }}\"?":"Supprimer le produit \"{{ product.name }}\" ?","Remove Puppet Modules":"Supprimer les modules Puppet","Remove Repositories":"Supprimer les référentiels","Remove Repository":"Supprimer le référentiel","Remove Repository \"{{ repository.name }}\"?":"Supprimer le référentiel \"{{ repository.name }}\" ?","Remove Rule":"Supprimer une règle","Remove Selected":"Supprimer la sélection","Remove Successful.":"Suppression réussie.","Remove Sync Plan":"Supprimer le plan de synchronisation","Remove Sync Plan \"{{ syncPlan.name }}\"?":"Supprimer le plan de synchronisation \"{{ syncPlan.name }}\" ?","Remove Tags":"Supprimer les balises","Remove Version":"Supprimer la version","Remove Version Confirmation":"Supprimer la confirmation de la version","Removed %x host collections from activation key \"%y\".":"%x collections d'hôtes supprimées de la clé d'activation \"%y\".","Removed %x host collections from content host \"%y\".":"%x collections d'hôtes supprimées de l'hôte de contenu \"%y\".","Removed %x products from sync plan \"%y\".":"%x produits supprimés du plan de synchronisation \"%y\".","Removing Repositories":"Supprimer les référentiels","Repo Discovery":"Découverte de référentiels","Repositories":"Référentiels","Repositories containing branch {{ branch.name }}":"Référentiels contenant la branche {{ branch.name }}","Repositories containing Errata {{ errata.errata_id }}":"Référentiels contenant l'errata {{ errata.errata_id }}","Repositories containing package {{ package.nvrea }}":"Référentiels contenant le paquet {{ package.nvrea }}","Repositories for":"Référentiels pour","Repositories for Content View:":"Référentiels pour l'affichage du contenu :","Repositories for Deb:":"Référentiels pour Deb :","Repositories for Errata:":"Référentiels pour l'errata :","Repositories for File:":"Référentiels pour le fichier :","Repositories for Filter:":"Référentiels pour le filtre :","Repositories for Package:":"Référentiel pour le paquet :","Repositories for Product:":"Référentiels pour le produit :","Repositories for Puppet Module:":"Référentiels pour le module Puppet :","Repositories to Create":"Référentiels à créer","Repository":"Référentiel","Repository \"%s\" successfully deleted":"Le référentiel \"%s\" a été supprimé.","Repository %s successfully created.":"Référentiel %s créé.","Repository Count":"Nombre de référentiels","Repository created":"Référentiel créé","Repository Discovery":"Découverte de référentiels","Repository Label":"Etiquette de référentiel","Repository Name":"Nom du référentiel","Repository Options":"Options du référentiel","Repository Path":"Chemin d'accès au référentiel","Repository Saved.":"Référentiel enregistré.","Repository Selection":"Sélection de référentiel","Repository Sets":"Ensembles de référentiels","Repository Sets settings saved successfully.":"Paramètres des ensembles de référentiels enregistrés.","Repository Type":"Type de référentiel","Repository URL":"URl de référentiel","Repository:":"Référentiel :","Republish Repository Metadata":"Publier de nouveau les métadonnées de référentiel","Requires":"Nécessite","Reset to Default":"Rétablir les valeurs par défaut","Restart":"Redémarrer","Restart Selected":"Redémarrage sélectionné","Restart Services on Content Host \"{{host.name}}\"?":"Redémarrer les services sur l'hôte de contenu « {{host.name}} » ?","Restrict to architecture":"Restreindre à l'architecture","Restrict to Architecture":"Restreindre à l'Architecture","Result":"Résultat","Role":"Rôle","RPM":"RPM","RPM Name":"Nom RPM","rpm Package Groups":"Groupes de packages rpm","rpm Packages":"Packages rpm","RPMs":"Les RPM","Run Auto-Attach":"Exécuter Auto-attach","Run Repository Creation\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>":"Exécuter la création de référentiels\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>","Run Sync Plan":"Exécuter Sync Plan","Save":"Enregistrer","Save Successful.":"Enregistrement réussi.","Schema Version":"Version du schéma","Schema Version 1":"Schéma version 1","Schema Version 2":"Schéma version 2","Security":"Sécurité","Security Advisory":"Alerte de sécurité","Select":"Sélectionner","Select a Content Source:":"Sélectionnez une source de contenu :","Select A New Puppet Module To Add":"Sélectionner un nouveau module Puppet à ajouter","Select a Version":"Sélectionner une version","Select Action":"Choisir l'action","Select an Available Version of {{ $stateParams.moduleName }}":"Sélectionner une version disponible de {{ $stateParams.moduleName }}","Select an Organization":"Sélectionner une organisation","Select content units to ignore while synchronizing this repository.":"Sélectionner les unités de contenu à ignorer quand vous synchronisez ce référentiel.","Select Content View":"Sélectionner l'affichage de contenu","Select Environment":"Sélectionner l'environnement","Select new version":"Sélectionner une nouvelle version","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"Sélectionner les environnements de cycle de vie desquels vous souhaiteriez supprimer Version {{ version.version }} :","Select Version":"Sélectionner version","Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\" or \"Background\" download policies will be synced.":"Si vous sélectionnez « Terminer la synchronisation », seuls les référentiels Yum du produit sélectionné seront synchronisés. Si vous sélectionnez « Valider le contenu », seuls les référentiels Yum utilisant les règles de téléchargement « Immédiates » ou « Arrière-plan » seront synchronisés.","Selecting this option will result in contents that are no longer part of the upstream repository being removed during synchronization.":"La sélection de cette option entraînera la suppression de contenus ne faisant plus partie du référentiel en amont pendant la synchronisation.","Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification.":"Si vous sélectionnez cette option, Katello vérifiera que les certificats SSL des URL en amont sont signés par une autorité de certification (CA) de confiance. Désélectionnez-la si vous ne souhaitez pas que cette vérification intervienne.","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"La sélection de cette option entraînera la suppression totale de la Version et ne la rendra plus disponible à la promotion. La version doit être supprimée de tous les environnements de cycle de vie pour sélectionner cette option.","Serve via HTTP":"Servir via HTTP","Service Level":"Niveau de service","Set Release Version":"Définir une version de publication","Severity":"Sévérité","Show affected Activation Keys":"Afficher les clés d'activation affectées","Show affected Content Hosts":"Afficher les hôtes de contenu affectés","Show All":"Tout afficher","Show all Repository Sets in Organization":"Afficher tous les ensembles de référentiels de l'organisation","Size":"Taille","Smart proxy currently syncing to your locations...":"Smart proxy en cours de synchronisation sur vos emplacements...","Smart proxy is synchronized":"Le smart proxy est synchronisé","Sockets":"Sockets","Solution":"Solution","Some of the Errata shown below may not be installable as they are not in this Content Host's\n Content View and Lifecycle Environment. In order to apply such Errata an Incremental Update is required.":"Certains errata affichés ci-dessous ne peuvent pas être installés puisqu'ils n'appartiennent pas à\n l'affichage de contenu et à l'environnement de cycle de vie de l'hôte de contenu. Pour appliquer ces errata, une mise à jour incrémentielle est requise.","Something went wrong when retrieving the resource.":"Quelque chose s'est passé lors de l'extraction de la ressource.","Something went wrong when saving the resource.":"Quelque chose s'est passé lors de l'enregistrement de la ressource.","Source":"Source","Source RPM":"RPM source","Source RPMs":"RPM source","SSL CA Cert":"Certificat CA SSL","SSL Certificate":"Certificat SSL","SSL Client Cert":"Certificat client SSL","SSL Client Key":"Clé du client SSL","Standard sync, optimized for speed by bypassing any unneeded steps.":"Synchronisation standard, dont la vitesse est optimisée en ignorant les étapes superflues.","Start Date":"Date de début","Start Time":"Date de lancement","Started At":"Date de début","Starting":"Démarrage","Starts":"Commence","State":"État ","Status":"État","Stream":"Flux","Subscription Details":"Détails de l'abonnement","Subscription Management":"Gestion des abonnements","Subscription Status":"Statut de l'abonnement","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Abonnements","Subscriptions for Activation Key:":"Abonnements pour la clé d'activation :","Subscriptions for Content Host:":"Abonnements pour l'hôte de contenu :","Subscriptions for:":"Abonnements pour :","Success!":"Succès !","Successfully added %s subscriptions.":"%s abonnements ajoutés.","Successfully deleted %cv version %ver.":"%cv version %ver supprimée.","Successfully initiated deletion of %cv version %ver.":"Suppression de %cv version %ver initiée.","Successfully initiated promotion of %cv version %ver to %env.":"Promotion de %cv version %ver à %env initiée.","Successfully initiated removal of %cv version %ver.":"Suppression de %cv version %ver initiée.","Successfully promoted %cv version %ver to %env":"%cv version %ver promue à %env.","Successfully published %cv version %ver and promoted to Library":"%cv version %ver publiée et promue à la Bibliothèque.","Successfully removed %cv version %ver from environments: %env":"%cv version %ver supprimée des environnements : %env","Successfully removed %s items.":"%s éléments supprimés.","Successfully removed %s subscriptions.":"%s abonnements supprimés.","Successfully removed 1 item.":"1 élément supprimé.","Successfully scheduled an update of all packages":"Planification réussie d'une mise à jour de tous les paquetages","Successfully scheduled package installation":"Planification réussie de l'installation du paquetage","Successfully scheduled package removal":"Planification réussie de la suppression du paquetage","Successfully scheduled package update":"Planification réussie de la mise à jour du paquetage","Successfully updated subscriptions.":"Abonnements mis à jour.","Successfully uploaded content:":"Téléchargement du contenu réussi :","Summary":"Récapitulatif","Support Level":"Niveau de service","Sync":"Sync","Sync Enabled":"Synchronisation activée.","Sync even if the upstream metadata appears to have no change. This option is only relevant for yum repositories and will take longer than an optimized sync. Choose this option if:":"La synchronisation intervient même si les métadonnées en amont semblent inchangées. Cette option ne s'applique que pour les référentiels yum et prendra plus de temps qu'une synchronisation optimisée. Choisissez cette option dans les cas suivants :","Sync Interval":"Intervalle de synchronisation","Sync Now":"Synchroniser","Sync Plan":"Plan de synchronisation","Sync Plan %s has been deleted.":"Le plan de synchronisation %s a été supprimé.","Sync Plan created and assigned to product.":"Plan de synchronisation créé et attribué au produit.","Sync Plan saved":"Plan de synchronisation enregistré","Sync Plan Saved":"Plan de synchronisation enregistré","Sync Plan:":"Plan de synchronisation :","Sync Plans":"Plans de synchronisation","Sync Selected":"Synchronisation sélectionnée","Sync Settings":"Paramètres de synchronisation","Sync State":"État de synchronisation","Sync Status":"Statut de la synchronisation","Synced manually, no interval set.":"Synchronisé manuellement, aucun intervalle défini.","Synchronization is about to start...":"La synchronisation va commencer...","Synchronization is being cancelled...":"La synchronisation a été annulée...","System Purpose":"Objectif système","Tags":"Balises","Task Details":"Détails de la tâche","Tasks":"Tâches","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"Les clés d'activation répertoriées ci-dessous utilisent actuellement cette version d'affichage du contenu. Avant de supprimer la version, veuillez déplacer ces clés d'activation vers un environnement de cycle de vie où cette version n'est pas utilisée.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"L'archive de cette version sera supprimée. Cette version ne sera plus disponible une fois la suppression terminée.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"L'archive de cette version ne sera pas supprimée. Cette version pourra toujours être promue à l'environnement du cycle de vie.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Les hôtes de contenu répertoriés ci-dessous utilisent actuellement cette version d'affichage du contenu. Avant de supprimer cette version, veuillez déplacer ces hôtes de contenu vers un environnement où cette version n'est pas utilisée.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"L'affichage de contenu ou environnement de cycle de vie doit être mis à jour pour rendre les errata disponibles pour ces hôtes.","The following actions can be performed on content hosts in this host collection:":"Les actions suivantes peuvent être effectuées sur les hôtes de contenu dans cette collection d'hôtes :","The host has not reported any applicable packages for upgrade.":"L'hôte n'a notifié aucun paquetage applicable à la mise à niveau.","The host has not reported any installed packages, registering with subscription-manager should cause these to be reported.":"L'hôte n'a notifié aucun paquet installé. L'inscription au subscription_manager aura dû entraîner une notification.","The host requires being attached to a content view and the lifecycle environment you have chosen has no content views promoted to it.\n See the <a href=\"/content_views\">content views page</a> to manage and promote a content view.":"L'hôte doit être relié à un affichage de contenu et à l'environnement de cycle de vie que vous avez choisi ne possède pas d'affichage de contenu.\n Veuillez consulter la <a href=\"/content_views\">page d'affichage de contenu</a> pour gérer et attribuer un affichage de contenu.","The page you are attempting to access requires selecting a specific organization.":"Veuillez sélectionner une organisation spécifique afin d'accéder à cette page.","The selected environment contains no Content Views, please select a different environment.":"L'environnement sélectionné ne contient pas d'affichage du contenu. Veuillez sélectionner un autre environnement.","The time the sync should happen in your current time zone.":"Heure à laquelle doit intervenir la synchronisation dans votre fuseau horaire.","There are {{ errataCount }} total Errata in this organization but none match the above filters.":"Il y a un total de {{ errataCount }} errata dans cette organisation, mais aucun ne correspond aux filtres ci-dessus.","There are {{ packageCount }} total Packages in this organization but none match the above filters.":"Il y a un total de {{ packageCount }} paquetages dans cette organisation, mais aucun ne correspond aux filtres ci-dessus.","There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Aucun référentiel Docker n'est actuellement associé à cet affichage de contenu. Vous pouvez en ajouter en cliquant sur l'onglet « Ajouter » ci-dessus.","There are currently no Docker Repositories to add to this Content View,":"Il n'y a actuellement aucun référentiel Docker à ajouter à cet affichage du contenu,","There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Il n'y a actuellement aucun référentiel de fichier associé à cet affichage du contenu. Vous pouvez en ajouter en cliquant sur l'onglet « Ajouter » ci-dessus.","There are currently no File Repositories to add to this Content View,":"Il n'y a actuellement aucun référentiel de fichier à ajouter à cet affichage du contenu,","There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Il n'y a actuellement aucun référentiel OASTree associé à cet affichage du contenu. Vous pouvez en ajouter en cliquant sur l'onglet « Ajouter » ci-dessus.","There are currently no OSTree Repositories to add to this Content View,":"Il n'y a actuellement aucun référentiel OSTree à ajouter à cet affichage du contenu,","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Il n'y a actuellement aucun référentiel associé à cet affichage du contenu. Vous pouvez en ajouter quelques uns en cliquant sur l'onglet « Ajouter » ci-dessus.","There are currently no repositories to add to this Content View,":"Il n'y a actuellement aucun référentiel à ajouter à cet affichage du contenu,","There are no %(contentType)s that match the criteria.":"Il n'existe aucun %(contentType)s correspondant à ce critère","There are no Content Views in this Environment.":"Cet environnement ne contient pas d'affichage de contenu.","There are no Content Views that match the criteria.":"Aucun affichage de contenu ne correspond à ce critère.","There are no Errata associated with this Content Host to display.":"Il n'y a aucun errata associé à cet hôte de contenu à afficher.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"Il n'existe aucun errata dans cette organisation. Créer un ou plusieurs Produit(s) avec Errata pour afficher les Errata sur cette page.","There are no Errata to display.":"Aucun errata à afficher.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Aucune collection d'hôte disponible. Vous pouvez créer de nouvelles collections d'hôtes après avoir sélectionné « Collections d'hôtes » sous « Hôtes » dans le menu principal.","There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page.":"Il n'existe aucun paquet dans cette organisation. Créer un ou plusieurs Produit(s) avec des paquets pour afficher de paquets sur cette page.","There are no Sync Plans available. You can create new Sync Plans after selecting 'Sync Plans' under 'Hosts' in main menu.":"Aucun plan de synchronisation disponible. Vous pouvez créer d'autres plans de synchronisation en sélectionnant « Plans de synchronisation » sous « Hôtes » dans le menu principal.","There are no Traces to display.":"Aucune trace à afficher.","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"Une tâche de mise à jour croissante est actuellement en cours. Cette mise à jour doit se terminer avant d'appliquer les mises à jour existantes.","There is currently no history associated with this Content View.":"Aucun historique n'est actuellement associé à cet affichage de contenu.","This action will affect only those Content Hosts that require a change.\n If the Content Host does not have the selected Subscription no action will take place.":"Cette action n'affectera que les hôtes de contenu qui exigent un changement.\n Si l'hôte de contenu ne dispose pas de l'abonnement sélectionné, aucune action ne sera prise.","This activation key is not associated with any content hosts.":"Cette clé d'activation n'est associée à aucun hôte de contenu.","This activation key may be used during system registration. For example:":"Cette clé d'activation peut être utilisée au cours de l'enregistrement du système. Exemple :","This Container Image Tag is not present in any Lifecycle Environments.":"Cette balise d'image de conteneur n'est présente dans aucun environnement de cycle de vie.","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Cet affichage de contenu ne possède aucune version, créez votre première version d'affichage de contenu à l'aide du bouton Publier une nouvelle version situé à droite.","This filter applies only to a subset of repositories in the content view.":"Le filtre s'applique uniquement à un sous-ensemble de référentiels dans l'affichage du contenu.","This filter applies to all repositories in the content view (current and future).":"Ce filtre s'applique à tous les référentiels dans l'affichage du contenu (actuel et futur).","This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n Change the setting \"Delete Host upon Unregister\" to false on the <a href=\"/settings\">settings page</a> to prevent this.":"Cette opération peut également supprimer les ressources gérées liées à l'hôte, telles que les machines virtuelles et les enregistrements DNS.\n Changez le paramètre « Supprimer l'hôte lors du désenregistrement » sur false dans la <a href=\"/settings\">page des paramètres</a> pour empêcher cela.","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Cette version ne peut pas être supprimée de l'un des environnements de cycle de vie à cause de l'une des raisons ci-dessous.","This Version is not associated with any Lifecycle Environments.":"Cette version n'est associée à aucun environnement de cycle de vie.","This version will be removed from:":"Cette version sera supprimée de :","Title":"Titre","to manage them individually.":"pour les gérer individuellement.","To register a content host to this server, follow these steps.":"Pour enregistrer un hôte de contenu sur ce serveur, suivez ces étapes.","To report package & errata information:":"Pour rapporter le package et les informations d'errata :","Toggle Dropdown":"Afficher la liste déroulante","Topic":"Sujet","Traces":"Traces","Traces for:":"Traces pour :","Type":"Type","Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}":"Type : {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}","Unable to determine version":"Impossible de déterminer la version","Unauthenticated Pull":"Extraction non authentifiée","Unknown":"Inconnu","Unlimited Content Hosts:":"Hôtes de contenu illimité :","Unlimited Hosts":"Hôtes illimités","Unregister Host":"Désenregistrer l'hôte","Unregister Host \"{{host.name}}\"?":"Désenregistrer l'hôte « {{host.name}} » ?","Unregister Options:":"Options de désenregistrement :","Unregister the host as a subscription consumer. Provisioning and configuration information is preserved.":"Annuler l'enregistrement de l'hôte en tant que consommateur d'abonnements. Les informations de mise en service et de configuration sont conservées.","Unsupported Type!":"Type non pris en charge !","Update":"Mettre à jour","Update All Packages":"Mettre à jour tous les paquetages","Update Packages":"Mettre à jour les paquetages","Update Repositories":"Mettre à jour les référentiels","Update Sync Plan":"Mettre à jour le plan de synchronisation","Updated":"Mis à jour","Updated errata filter -":"Mettre à jour le filtre d'errata -","Updated On":"Mis à jour le","Upgradable":"Pouvant être mis à niveau","Upgradable For":"Pouvant être mis à niveau pour","Upgradable Package":"Paquetage pouvant être mis à niveau","Upgrade Available":"Mise à niveau disponible","Upgrade Selected":"Mise à niveau sélectionnée","Upload":"Télécharger","Upload Content Credential file":"Télécharger le fichier des informations d'identification de contenu","Upload File":"Transférer le fichier","Upload Package":"Télécharger le package","Upload Puppet Module":"Télécharger le module puppet","Uploading...":"Téléchargement...","Upstream Authorization":"Autorisation en amont","Upstream Image Name":"Nom de l'image en amont","Upstream Password":"Mot de passe en amont","Upstream Repository Name":"Nom du référentiel en amont","Upstream Sync Policy":"Stratégie de synchronisation en amont","Upstream URL":"URL en amont","Upstream Username":"Nom d'utilisateur en amont","Url":"Url","URL of the registry you want to sync. Example: https://registry-1.docker.io/":"URL du registre que vous souhaiter sync. Exemple : https://registry-1.docker.io/","URL to Discover":"URL à découvrir","Use the cancel button on content view selection to revert your lifecycle environment selection.":"Utiliser le bouton Annuler sur la sélection d'affichage du contenu pour rétablir la sélection de votre environnement de cycle de vie.","Used as":"Utilisé en tant que","User":"Utilisateur","Username":"Nom d'utilisateur","Username of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Nom d'utilisateur de l'utilisateur du référentiel en amont pour l'authentification. Laissez vide si le référentiel ne requiert pas d'authentification.","Using a username and password:":"Utiliser un nom d'utilisateur et un mot de passe :","Using an Activation Key:":"Utiliser une clé d'activation :","Validate Content Sync":"Valider la synchronisation du contenu","Variant":"Variante","Verify SSL":"Vérifier SSL","Version":"Version","Version {{ rule.version }}":"Version {{ rule.version }}","Version Deletion":"Suppression de version","Version Details":"Détails de la version","Version:":"Version :","Versions":"Versions","Versions for Content View:":"Versions pour l'affichage du contenu :","Versions for Puppet Module:":"Versions pour le module Puppet :","via Katello agent":"via l'agent Katello","via Katello Agent":"via Agent Katello","via remote execution":"via exécution distante","via remote execution - customize first":"via exécution distante - personnaliser tout d'abord","View Container Image Manifest Lists for Repository:":"Afficher les listes de manifestes d'images de conteneurs pour le référentiel :","View Docker Tags for Repository:":"Afficher les balises Docker pour le référentiel :","Virtual Guest":"Invité virtuel","Virtual Guests":"Invités virtuels","Virtual Host":"Hôte virtuel","weekly":"hebdomadaire","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Hebdomadaire le {{ product.sync_plan.sync_date | date:'EEEE' }} à {{ product.sync_plan.sync_date | date:'mediumTime' }} (heure du serveur)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Lorsque Auto Attach est désactivé, l'enregistrement de systèmes sera attaché à tous les abonnements associés.","When validating content, repositories using the \"On Demand\" download policy will download all packages within the repository.":"Lors de la validation du contenu, les référentiels utilisant la stratégie de téléchargement « À la demande » téléchargeront tous les paquetages contenus dans le référentiel.","Working":"Chargement","Yes":"Oui","You cannot remove these repositories because they belong to a Red Hat product.":"Vous ne pouvez pas supprimer ces référentiels car ils appartiennent à un produit Red Hat.","You cannot remove these repositories because you do not have permission.":"Vous ne pouvez pas supprimer ces référentiels car nous n'avez pas la permission.","You cannot remove this product because it is a Red Hat product.":"Vous ne pouvez pas supprimer ce produit car c'est un produit Red Hat.","You cannot remove this product because it was published to a content view.":"Vous ne pouvez pas supprimer ce produit car il a été publié sur un affichage du contenu.","You cannot remove this product because you do not have permission.":"Vous ne pouvez pas supprimer ces produits car nous n'avez pas de permission.","You cannot remove this repository because it is a Red Hat repository.":"Vous ne pouvez pas supprimer ce référentiel car c'est un référentiel Red Hat.","You cannot remove this repository because it was published to a content view.":"Vous ne pouvez pas supprimer ce référentiel car il a été publié sur un affichage du contenu.","You cannot remove this repository because you do not have permission.":"Vous ne pouvez pas supprimer ce référentiel car nous n'avez pas de permission.","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"Vous n'avez pour l'instant aucune Clé d'activation. Vous pouvez ajouter des Clés d'activation en utilisant le bouton situé sur la droite.","You currently don't have any Container Image Tags.":"Vous ne possédez aucune balise d'image de conteneur actuellement.","You currently don't have any Content Credential, you can add Content Credentials using the button on the right.":"Vous ne possédez actuellement aucune information d'identification de contenu. Vous pouvez ajouter des informations d'identification de contenu à l'aide du bouton situé à droite.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"Vous n'avez pour l'instant aucun hôte de contenu. Vous pouvez créer des nouveaux hôtes de contenu en sélectionnant Hôte de contenu à partir du menu principal et en cliquant ensuite sur le bouton situé à droite.","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"Vous ne possédez aucun hôte de contenu, vous pouvez en enregistrer un en cliquant sur le bouton situé à droite et en suivant les instructions.","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"Vous ne possédez aucun affichage de contenu. Un affichage de contenu peut être ajouté à l'aide du bouton situé à droite.","You currently don't have any Debs.":"Vous n'avez actuellement aucun Deb.","You currently don't have any Files.":"Vous ne possédez aucun fichier actuellement.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"Vous ne possédez actuellement aucun filtre inclus dans cet affichage du contenu. Vous pouvez ajouter un nouveau filtre à l'aide du bouton situé sur la droite.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"Vous ne possédez actuellement aucune Collection d'hôtes. Vous pouvez ajouter des Collections d'hôtes à l'aide du bouton situé à droite.","You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.":"Vous n'avez pour l'instant aucun Hôte dans ce groupe d'hôtes. Vous pouvez ajouter des Hôtes de contenu après avoir sélectionné l'onglet « Ajouter ».","You currently don't have any OSTree Branches.":"Vous ne possédez aucune branche OSTree pour le moment.","You currently don't have any Products associated with this Content Credential.":"Vous n'avez actuellement aucun produit associé à ces informations d'identification de contenu.","You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu":"Vous ne possédez actuellement aucun Produit auquel vous abonner, vous pouvez ajouter des Produits après avoir sélectionné « Produits » sous « Contenu » dans le menu principal","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"Vous ne possédez actuellement aucun produit<span bst-feature-flag=\"custom_products\">. Vous pouvez ajouter des Produits en utilisant le bouton sur la droite</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"Vous ne possédez actuellement aucun Module Puppet inclus dans cet affichage du contenu. Vous pouvez ajouter des Modules Puppet à l'aide du bouton situé sur la droite.","You currently don't have any Puppet Modules.":"Vous ne possédez aucun module Puppet actuellement.","You currently don't have any Repositories associated with this Content Credential.":"Vous n'avez actuellement aucun référentiel associé à ces informations d'identification de contenu.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"Vous ne possédez actuellement aucun filtre inclus dans cet affichage de contenu. Vous pouvez ajouter des référentiels à l'aide du bouton situé sur la droite.","You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab.":"Vous ne possédez actuellement aucun Abonnement associé à cette Clé d'activation. Vous pouvez ajouter des Abonnements après avoir sélectionné l'onglet « Ajouter ».","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"Vous ne possédez aucun Plan de synchronisation. Un plan de synchronisation peut être créé à l'aide du bouton situé à droite.","You do not have any Installed Products":"Vous n'avez aucun produit installé","You must select a content view in order to save your environment.":"Vous devez sélectionner un affichage de contenu pour enregistrer votre environnement.","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"Vous devez sélectionner un nouvel affichage du contenu pour que votre modification d'environnement puisse être enregistrée. Utiliser le bouton Annuler sur la sélection d'affichage du contenu pour rétablir la sélection de votre environnement.","You must select a new content view before your change of lifecycle environment can be saved.":"Vous devez sélectionner un nouvel affichage du contenu pour que votre modification d'environnement de cycle de vie puisse être enregistrée.","You must select at least one Content Host in order to apply Errata.":"Vous devez sélectionner au moins un Hôte de contenu afin d'appliquer les errata.","You must select at least one Errata to apply.":"Vous devez sélectionner au moins un errata à appliquer.","You must select at least one repository.":"Vous devez sélectionner au moins un référentiel.","Your search returned zero %(contentType)s that match the criteria.":"Votre recherche n'a retourné aucun %(contentType)s correspondant au critère.","Your search returned zero Activation Keys.":"Votre recherche n'a retourné aucune clé d'activation.","Your search returned zero Container Image Tags.":"Votre recherche n'a retourné aucune balise d'image de conteneur.","Your search returned zero Content Credential.":"Votre recherche n'a retourné aucune information d'identification de contenu.","Your search returned zero Content Hosts.":"Votre recherche n'a retourné aucun hôte de contenu.","Your search returned zero Content View.":"Votre recherche n'a retourné aucun affichage du contenu.","Your search returned zero Content Views":"Votre recherche n'a retourné aucun affichage du contenu","Your search returned zero Content Views.":"Votre recherche n'a retourné aucun affichage du contenu.","Your search returned zero Debs.":"Votre recherche n'a retourné aucun Deb.","Your search returned zero Errata.":"Votre recherche n'a retourné aucun erratum.","Your search returned zero Erratum.":"Votre recherche n'a retourné aucun erratum.","Your search returned zero Files.":"Votre recherche n'a retourné aucun fichier.","Your search returned zero Filters.":"Votre recherche n'a retourné aucun filtre.","Your search returned zero Host Collections.":"Votre recherche n'a retourné aucune collection d'hôtes.","Your search returned zero Hosts.":"Votre recherche n'a retourné aucun hôte.","Your search returned zero Lifecycle Environments.":"Votre recherche n'a retourné aucun environnement de cycle de vie.","Your search returned zero Packages.":"Votre recherche n'a retourné aucun paquetage.","Your search returned zero Products.":"Votre recherche n'a retourné aucun produit.","Your search returned zero Puppet Modules.":"Votre recherche n'a retourné aucun module Puppet.","Your search returned zero Repositories":"Votre recherche n'a retourné aucun référentiel","Your search returned zero Repositories.":"Votre recherche n'a retourné aucun référentiel.","Your search returned zero repository sets.":"Votre recherche n'a retourné aucun ensemble de référentiels.","Your search returned zero Repository Sets.":"Votre recherche n'a retourné aucun ensemble de référentiels.","Your search returned zero results.":"Votre recherche n'a retourné aucun résultat.","Your search returned zero Subscriptions.":"Votre recherche n'a retourné aucun abonnement.","Your search returned zero Sync Plans.":"Votre recherche n'a retourné aucun plan de synchronisation.","Your search returned zero Traces.":"Votre recherche n'a retourné aucune trace.","Your search returned zero versions for {{ $stateParams.moduleName }}":"Votre recherche n'a retourné aucune version pour {{ $stateParams.moduleName }}","Yum Content":"Contenu Yum","Yum Metadata Checksum":"Somme de contrôle de métadonnées Yum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées Yum a été initiée en arrière-plan. Cliquez <a href=\"{{ taskUrl() }}\">ici</a> pour vérifier la progression.","Yum Repositories":"Référentiels Yum","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Référentiels Yum <div>{{ library.counts.yum_repositories || 0 }}</div>"});
3
+ gettextCatalog.setStrings('de', {"- Date and Type":"- Datum und Typ","-- select an interval --":"-- Intervall wählen --","(Not all Activation Keys editable )":"(Nicht alle Aktivierungsschlüssel sind änderbar)","(Not all Content Hosts editable )":"(Nicht alle Inhaltshosts sind änderbar)","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} kann nicht gelöscht werden, da eine oder mehrere Inhaltsansichtsversionen noch in einer Lebenszyklusumgebung enthalten sind.\n Jede Inhaltsansichtsversion muss aus ihren Lebenszyklusumgebungen entfernt werden, bevor die Inhaltsansicht gelöscht werden kann.","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} relevant","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} installierbar","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} Errata","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} Errata","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} Puppet-Module","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} Pakete","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} Pakete","{{ repository.last_sync_words }} ago":"vor {{ repository.last_sync_words }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} Aktivierungsschlüssel werden nach {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }} verlegt","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} Inhaltshosts werden nach {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }} verlegt","{{ type.display }}":"{{ type.display }}","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} Errata","{{ version.package_count }} Packages":"{{ version.package_count }} Pakete","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} Puppet-Module","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* Diese markierten Inhaltsansichtsversionen stammen aus Verbund-Inhaltsansichten. Komponenten, die eine Aktualisierung erfordern, werden darunter aufgelistet.","%(consumed)s out of %(quantity)s":"%(consumed)s von %(quantity)s","<b>Description</b>":"<b>Beschreibung</b>","<b>Packages</b>":"<b>Pakete</b>","<b>Reboot Suggested</b>":"<b>Neustart empfohlen</b>","<b>Title</b>":"<b>Titel</b>","<b>Type</b>":"<b>Typ</b>","<b>Updated</b>":"<b>Aktualisiert</b>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n Für Umgebungen mit Stern wird Übertragung vorgeschlagen.","1 repository sync in progress.":["1 Repository-Synchronisation in Arbeit.","{{ product.sync_summary.pending}} Repository-Synchronisationen in Arbeit."],"1 successfully synced repository.":["1 erfolgreich synchronisiertes Repository.","{{ product.sync_summary.success}} erfolgreich synchronisierte Repositorys."],"A composite view contains other content views.":"Eine Verbundinhaltsansicht enthält mehrere andere Inhaltsansichten.","Account":"Account","Action":"Aktion","Action Type":"Aktionstyp","Actions":"Aktionen","Activation Key":["Aktivierungsschlüssel","Aktivierungsschlüssel"],"Activation Key Content":"Aktivierungsschlüsselinhalt","Activation Key removed.":"Aktivierungsschlüssel entfernt","Activation Key updated":"Aktivierungsschlüssel aktualisiert","Activation Key:":"Aktivierungsschlüssel:","Activation Keys":"Aktivierungsschlüssel","Activation Keys using Version {{ version.version }}":"Aktivierungsschlüssel mit Version {{ version.version }}","Add":"Hinzufügen","Add Content Hosts to:":"Inhaltshosts hinzufügen zu:","Add Content Views":"Inhaltshosts hinzufügen","Add Errata":"Errata hinzufügen","Add New Environment":"Neue Umgebung hinzufügen","Add New Module":"Neues Modul hinzufügen","Add Package Group":"Paketgruppe hinzufügen","Add Repositories":"Repositorys hinzufügen","Add Rule":"Regel hinzufügen","Add Selected":"Auswahl hinzufügen","add some repositories.":"fügen Sie Repositorys hinzu.","Add Subscriptions for Activation Key:":"Subskriptionen für Aktivierungsschlüssel hinzufügen:","Add To":"Hinzufügen zu","Added %x host collections to activation key \"%y\".":"%x Hostsammlungen wurden zum Aktivierungsschlüssel \"%y\" hinzugefügt.","Added %x host collections to content host \"%y\".":"%x Hostsammlungen wurden zum Inhaltshost \"%y\" hinzugefügt.","Added %x products to sync plan \"%y\".":"%x Produkte wurden zum Synchronisationsplan \"%y\" hinzugefügt.","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Lebenszyklusumgebung wird zu \"{{ priorEnvironment.name }}\" hinzugefügt","Advisory":"Advisory","Affected Activation Keys":"Betroffene Aktivierungsschlüssel","Affected Content Hosts":"Betroffene Inhaltshosts","Affected Hosts":"Betroffene Hosts","Affected repositories have been updated.":"Betroffene Repositorys wurden aktualisiert.","All Content Views":"Alle Inhaltsansichten","All Products":"Alle Produkte","All Repositories":"Alle Repositorys","All Versions":"Alle Versionen","An error occured: %s":"Ein Fehler ist aufgetreten: %s","An error occurred removing the Activation Key:":"Fehler beim Entfernen des Aktivierungsschlüssels:","An error occurred removing the content hosts.":"Fehler beim Entfernen der Inhaltshosts:","An error occurred removing the environment:":"Fehler beim Entfernen der Umgebung:","An error occurred removing the Host Collection:":"Fehler beim Entfernen der Hostsammlung:","An error occurred removing the subscriptions.":"Fehler beim Entfernen der Subskriptionen:","An error occurred saving the Activation Key:":"Fehler beim Speichern des Aktivierungsschlüssels:","An error occurred saving the Content Host:":"Fehler beim Speichern des Inhaltshosts:","An error occurred saving the Environment:":"Fehler beim Speichern der Umgebung:","An error occurred saving the Filter:":"Fehler beim Speichern des Filters:","An error occurred saving the Host Collection:":"Fehler beim Speichern der Hostsammlung:","An error occurred saving the Product:":"Fehler beim Speichern des Produkts:","An error occurred saving the Repository:":"Fehler beim Speichern des Repositorys:","An error occurred saving the Sync Plan:":"Fehler beim Speichern des Synchronisationsplans:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Fehler beim automatischen Verknüpfen von Subskriptionen. Bitte werfen Sie einen Blick auf die Protokolldatei für weitere Informationen.","An error occurred updating the Content View:":"Fehler beim Aktualisieren der Inhaltsansicht:","An error occurred while creating the Product: %s":"Fehler beim Speichern des Produkts:","An error occurred:":"Ein Fehler ist aufgetreten:","Applicable":"Relevant","Applicable Errata":"Relevante Errata","Applicable Packages":"Anwendbare Pakete","Applicable To":"Anwendbar auf","Applicable to Host":"Anwendbar auf Host","Application":"Anwendung","Apply":"Anwenden","Apply {{ errata.errata_id }}":"{{ errata.errata_id }} anwenden","Apply Errata":"Errata anwenden","Apply Errata to Content Hosts":"Errata auf Inhaltshosts anwenden","Apply Errata to Content Hosts immediately after publishing.":"Errata sofort nach Veröffentlichung auf Inhaltshosts anwenden.","Apply Selected":"Auswahl anwenden","Apply to Content Hosts":"Auf Inhaltshosts anwenden","Apply to Hosts":"Auf Hosts anwenden","Applying":"Anwenden","Apt Actions":"Apt Aktionen","Apt Repositories":"Apt Repositories","Arch":"Architektur","Architecture":"Architektur","Architectures":"Architekturen","Archived Copy":"Archivierte Kopie","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"Sind Sie sicher, dass Sie die {{ table.numSelected }} gewählten Inhaltshosts zu den ausgewählten Hostsammlungen hinzufügen möchten?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"Sind Sie sicher, dass Sie die {{ table.numSelected }} gewählten Inhaltshosts zu {{ selected.contentView.name }} in {{ selected.environment.name }} zuweisen möchten?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Sind Sie sicher, dass Sie {{ content.content }} auf den {{ getSelectedSystemIds().length }} ausgewählten Systemen installieren möchten?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"Sind Sie sicher, dass Sie {{ content.content }} von den {{ getSelectedSystemIds().length }} ausgewählten Systemen entfernen möchten?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"Sind Sie sicher, dass Sie den Aktivierungsschlüssel \"{{ activationKey.name }}\" entfernen möchten?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"Sind Sie sicher, dass Sie die Hostsammlung \"{{ hostCollection.name }}\" entfernen möchten?","Are you sure you want to remove product \"{{ product.name }}\"?":"Sind Sie sicher, dass Sie das Produkt \"{{ product.name }}\" entfernen möchten?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"Sind Sie sicher, dass Sie das Repository \"{{ repository.name }}\" entfernen möchten?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"Sind Sie sicher, dass Sie den Synchronisationsplan \"{{ syncPlan.name }}\" entfernen möchten?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"Sind Sie sicher, dass Sie die {{ table.numSelected }} gewählten Inhaltshosts aus der ausgewählten Hostsammlung entfernen möchten?","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Sind Sie sicher, dass Sie {{ content.content }} auf den {{ getSelectedSystemIds().length }} ausgewählten Systemen aktualisieren möchten?","As part of this deletion, 1 Content View Version will be deleted.":["Im Rahmen dieses Löschvorgangs wird 1 Inhaltsansichtsversion gelöscht.","Im Rahmen dieses Löschvorgangs werden {{ versions.length }} Inhaltsansichtsversionen gelöscht."],"Assign":"Zuweisen","Associations":"Zuweisungen","At least one Errata needs to be selected to Apply.":"Mindestens ein Erratum muss zum Anwenden ausgewählt werden.","Attached":"Verknüpft","Author":"Autor","Auto Publish":"Automatisch veröffentlichen","Auto-Attach":"Automatische Verknüpfung","Auto-Attach Details":"Automatische Verknüpfung der Details","Automatic":"Automatisch","Available Content Views for Composite Content View:":"Verfügbare Inhaltsansichten für Verbundinhaltsansicht:","Available Puppet Modules for Content View:":"Verfügbare Puppet-Module für Inhaltsansicht:","Back":"Zurück","Back To Errata List":"Zurück zur Errata-Liste","Basic Information":"Allgemeine Informationen","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Nachfolgend finden Sie die Repository-Inhaltsgruppen, die derzeit für diesen Inhaltshost über dessen Subskriptionen zur Verfügung stehen. Für Red Hat Subskriptionen können weitere Inhalte verfügbar gemacht werden auf der Seite","Bootable":"Bootfähig","Bug Fix":"Bugfix","Bug Fix Advisory":"Bugfix-Advisory","Bugfix":"Bugfix","Build Host":"Build-Host","Cancel":"Abbrechen","Cannot Remove":"Löschen nicht möglich","Cannot republish Repository without the proper permissions.":"Sie können dieses Repository ohne die erforderlichen Rechte nicht neu veröffentlichen.","Cannot republish Repository, a sync is already in progress.":"Sie können das Repository nicht neu veröffentlichen, da bereits eine Aktualisierung stattfindet.","Cannot sync Repository without a URL.":"Sie können das Repository ohne URL nicht synchroniseren.","Cannot sync Repository without the proper permissions.":"Sie können dieses Repository ohne die erforderlichen Rechte nicht veröffentlichen.","Cannot sync Repository, a sync is already in progress.":"Sie können das Repository nicht synchroniseren, da es bereits synchronisiert wird.","Capacity":"Kapazität","Certificate":"Zertifikat","Change assigned Lifecycle Environment or Content View":"Ändern der zugewiesenen Lebenszyklusumgebung oder Inhaltsansicht","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"Um die Standardeinstellungen für Inhaltshosts zu ändern, die sich mit diesem Aktivierungsschlüssel registrieren, muss subscription-manager Version 1.10 oder höher auf dem Host installiert sein.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"Um die Standardeinstellungen zu ändern, muss subscription-manager Version 1.10 oder höher auf diesem Host installiert sein.","Checksum":"Prüfsumme","Checksum Type":"Prüfsummentyp","Choose a lifecycle environment from the available promotion paths.":"Wählen Sie eine Lebenszyklusumgebung aus den verfügbaren Übertragungspfaden.","Click here to check the status of the task.":"Klicken Sie hier, um den Status der Task zu prüfen.","Click here to select Errata for an Incremental Update.":"Klicken Sie hier, um Errata für eine inkrementelle Aktualisierung auszuwählen.","Close":"Schließen","Completely remove version?":"Version vollständig entfernen?","Components":"Komponenten","Components:":"Komponenten:","Composite":"Verbund","Composite View":"Verbundansicht","Composite View?":"Verbundansicht?","Confirm":"Bestätigen","Confirm Remove":"Entfernen bestätigen","Confirm Version Removal: Version {{ version.version }}":"Entfernen der Version bestätigen: Version {{ version.version }}","Content":"Inhalt","Content Counts":"Anzahl der Inhalte","Content Host":"Inhaltshost","Content Host Bulk Content":"Inhaltshost-Masseninhalt","Content Host Bulk Subscriptions":"Inhaltshost-Massensubskriptionen","Content Host Content":"Inhalte des Inhaltshosts","Content Host Counts":"Inhaltshostanzahl","Content Host Limit":"Inhaltshostgrenze","Content Host Properties":"Eigenschaften des Inhaltshosts","Content Host Registration":"Registrierung eines Inhaltshosts","Content Host Status":"Status des Inhaltshosts","Content Host:":"Inhaltshost:","Content Hosts":"Inhaltshosts","Content Hosts for Activation Key:":"Inhaltshosts für Aktivierungsschlüssel:","Content Hosts for:":"Inhaltshosts für:","Content Hosts using Version {{ version.version }}":"Inhaltshosts mit Version {{ version.version }}","Content Type":"Inhaltstyp","Content View":"Inhaltsansicht","Content View Name":"Name der Inhaltsansicht","Content View updated.":"Inhaltsansicht aktualisiert.","Content View Version":"Version der Inhaltsansicht","Content View:":"Inhaltsansicht:","Content Views":"Inhaltsansichten","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Inhaltsansichten <div>{{ library.counts.content_views || 0 }}</div>","Content Views for Composite Content View:":"Inhaltsansichten für Verbundinhaltsansicht:","Context":"Kontext","Contract":"Vertrag","Copy Activation Key":"Aktivierungsschlüssel kopieren","Cores per Socket":"Kerne pro Socket","Create":"Erstellen","Create new view":"Neue Ansicht erstellen","Create New View":"Neue Ansicht erstellen","Create Selected":"Auswahl erstellen","Create Sync Plan":"Synchronisationsplan erstellen","Create view from existing views":"Ansicht aus vorhandenen Ansichten erstellen","Critical":"Kritisch","Current Subscriptions for Activation Key:":"Derzeitige Subskriptionen für Aktivierungsschlüssel:","Currently Selected Puppet Modules":"Derzeit ausgewählte Puppet-Module","CVEs":"CVEs","daily":"täglich","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Täglich um {{ product.sync_plan.sync_date | date:'mediumTime' }} (Serverzeit)","Date":"Datum","Date Type":"Datumstyp","Default":"Standard","Delete Hosts":"Hosts löschen","Delete Version {{ version.version }}":"Version {{ version.version }} löschen","Deleted from %s":"Gelöscht von %s","Deleting from %count environments.":"Von %count Umgebungen löschen.","Deleting from 1 environment.":"Von 1 Umgebung löschen.","Deletion from %s":"Löschen von %s","Dependencies":"Abhängigkeiten","Description":"Beschreibung","Details":"Details","Details for Activation Key:":"Details für Aktivierungsschlüssel:","Details for Content View:":"Details für Inhaltsansicht:","Details for Product:":"Details für Produkt:","Disable":"Deaktivieren","Disabled":"Deaktiviert","Discover":"Suchen","Docker Repositories":"Docker-Repositorys","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Docker-Repositorys <div>{{ library.counts.docker_repositories || 0 }}</div>","Download Policy":"Richtlinie herunterladen","Edit":"Bearbeiten","Enable":"Aktivieren","End Date":"Enddatum","Enhancement":"Erweiterung","Enter Package Group Name(s)...":"Paketgruppennamen eingeben …","Enter Package Name(s)...":"Paketnamen eingeben …","Environment":"Umgebung","Environment saved":"Umgebung gespeichert","Environments":"Umgebungen","Environments List":"Umgebungsliste","Equal To":"Ist gleich","Errata":"Errata","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Errata <div>{{ library.counts.errata.total || 0 }}</div>","Errata Details":"Errata-Details","Errata Filter:":"Errata-Filter:","Errata for:":"Errata für:","Errata ID":"Errata-ID","Errata Installation":"Installieren von Errata","Errata successfully added.":"Errata erfolgreich hinzugefügt.","Errata successfully removed.":"Errata erfolgreich entfernt.","Errata Task List":"Errata-Taskliste","Errata Tasks":"Errata-Tasks","Errata Type":"Errata-Typ","Errata:":"Errata:","Erratum - by ID":"Erratum – nach ID","Erratum Date Range":"Erratum-Datumsbereich","Error during upload:":"Fehler beim Hochladen:","Event":"Ereignis","Exclude":"Ausschließen","Exclude all RPMs with no errata.":"Alle RPMs ohne Errata ausschließen.","Existing Product":"Vorhandenes Produkt","Expires":"Endet","File too large. Please use the CLI instead.":"Datei zu groß. Bitte stattdessen die Befehlszeilenschnittstelle verwenden.","Filename":"Dateiname","Files":"Dateien","Filter":"Filter","Filter information for:":"Informationen filtern für:","Filter Saved":"Filter gespeichert","Filter:":"Filter:","Filter...":"Filtern …","Filters":"Filter","Filters for Content View:":"Filter für Inhaltsansicht:","Filters successfully removed.":"Filter erfolgreich entfernt.","Finished At":"Abgeschlossen am","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Für ältere Betriebssysteme wie Red Hat Enterprise Linux 5 oder CentOS 5 wird die Verwendung von sha1 empfohlen.","Force Promote?":"Übertragung erzwingen?","GPG Key":"GPG-Schlüssel","Greater Than":"Größer als","Group Install":"Gruppeninstallation","Group Remove":"Gruppenentfernung","here":"hier","Hide affected Activation Keys":"Betroffene Aktivierungsschlüssel ausblenden","Hide affected Content Hosts":"Betroffene Inhaltshosts ausblenden","History":"Chronik","History for Content View:":"Chronik für Inhaltsansicht:","Host Collection Management":"Verwaltung von Hostsammlungen","Host Collection Membership":"Mitgliedschaft in Hostsammlung","Host Collection removed.":"Hostsammlung entfernt","Host Collection updated":"Hostsammlung aktualisiert","Host Collection:":"Hostsammlung:","Host Collections":"Hostsammlungen","Host Collections for:":"Hostsammlungen für:","Host Count":"Hostanzahl","Host Group":"Hostgruppe","Host Limit":"Hostgrenze","Hostname":"Hostname","Hosts":"Hosts","hourly":"stündlich","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"Stündlich um {{ product.sync_plan.sync_date | date:'m' }} Minuten und {{ product.sync_plan.sync_date | date:'s' }} Sekunden","HTTP Proxy":"HTTP-Proxy","Id":"ID","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Falls Sie Teile dieser Aktivierungsschlüssel lieber in andere Inhaltsansichten oder Lebenszyklusumgebungen verlegen möchten, klicken Sie","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Falls Sie Teile dieser Aktivierungsschlüssel lieber in andere Inhaltsansichten oder Lebenszyklusumgebungen verlegen möchten, klicken Sie <a href=\"{{ activationKeyLink() }}\">hier</a>, um sie einzeln zu verwalten.","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Falls Sie Teile dieser Inhaltshosts lieber in andere Inhaltsansichten oder Umgebungen verlegen möchten, klicken Sie <a href=\"{{ contentHostsLink() }}\">hier</a>, um diese Inhaltshosts mittels Massenaktionen zu verwalten.","Image":"Image","Important":"Wichtig","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Um eine Inhaltsansicht zu einer Verbundansicht hinzuzufügen, müssen Sie zunächst eine anfängliche Version der Inhaltsansicht veröffentlichen.","Include":"Einschließen","Include all RPMs with no errata.":"Alle RPMs ohne Errata einschließen.","Inclusion Type":"Art der Einbeziehung ","Incremental Update":"Inkrementelle Aktualisierung","Install":"Installieren","Install Selected":"Auswahl installieren","Install the pre-built bootstrap RPM:":"Installieren Sie das integrierte Bootstrap-RPM:","Installable":"Installierbar","Installable Errata":"Installierbare Errata","Installed":"Installiert","Installed Package":"Installiertes Paket","Installed Packages":"Installierte Pakete","Installed Products":"Installierte Produkte","Interfaces":"Schnittstellen","Interval":"Intervall","IPv4 Address":"IPv4-Adresse","IPv6 Address":"IPv6-Adresse","Issued":"Ausgegeben","Katello Agent":"Katello-Agents","Label":"Kennung","Last Checkin":"Letzte Anmeldung","Last Published":"Letzte Veröffentlichung","Last Puppet Report":"Letzter Puppet-Bericht","Last Sync":"Letzte Synchronisation","Last synced":"Letzte Synchronisation","Last Updated On":"Letzte Aktualisierung:","Latest (Currently %s)":"Aktuellste (derzeit %s)","Less Than":"Kleiner als","Library":"Library","Library Synced Content":"Von Library synchronisierte Inhalte","Lifecycle Environment Paths":"Lebenszyklus-Umgebungspfade","Lifecycle Environments":"Lebenszyklusumgebungen","Limit":"Grenze","Limit:":"Grenze:","List/Remove":"Auflisten/Entfernen","Loading Environment Paths...":"Umgebungspfade werden geladen …","Loading...":"Laden …","Manage Packages":"Pakete verwalten","Manage Packages for Repository:":"Pakete für Repository verwalten:","Manage Puppet Modules for Repository:":"Puppet-Module für Repository verwalten:","Mirror on Sync":"Sync spiegeln","Model":"Modell","Moderate":"Moderat (Mittel)","Module %s removed from Content View.":"Module %s aus Inhaltsansicht entfernt.","Module Streams":"Module Streams","More Details":"Mehr Details","N/A":"N/A","Name":"Name","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"Name des Upstream-Repositorys, das Sie synchronisieren möchten. Beispiel: \"busybox\" oder \"fedora/ssh\".","Networking":"Netzwerk","Never synced":"Nie synchronisiert","New Activation Key":"Neuer Aktivierungsschlüssel","New Environment":"Neue Umgebung","New Filter":"Neuer Filter","New Filter for Content View:":"Neuer Filter für Inhaltsansicht:","New Name:":"Neuer Name:","New Product":"Neues Produkt","New Repository":"Neues Repository","New Sync Plan":"Neuer Synchronisationsplan","New sync plan successfully created.":"Neuer Synchronisationsplan erfolgreich erstellt.","Next":"Weiter","Next Sync":"Nächste Synchronisation","No":"Nein","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"Keine Berechtigung zum Bearbeiten auf einigen der Aktivierungsschlüssel in dieser Lebenszyklusumgebung.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"Keine Berechtigung zum Bearbeiten auf einigen der Inhaltshosts in dieser Lebenszyklusumgebung.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"Keine Berechtigung zum Übertragen/Entfernen in dieser Lebenszyklusumgebung.","No activation keys are affected.":"Keine Aktivierungsschlüssel sind betroffen.","No Content Hosts are affected.":"Keine Inhaltshosts sind betroffen.","No Content Hosts match this Erratum.":"Keine Inhaltshosts entsprechen diesem Erratum.","No Content Views available, please select another environment.":"Keine Inhaltshosts verfügbar, bitte wählen Sie eine andere Umgebung.","No content views exist for {{selected.environment.name}}":"Keine Inhaltsansichten existieren für {{selected.environment.name}}","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Keine Hostsammlungen zum Anzeigen. Sie können Hostsammlungen hinzufügen, wenn Sie im Hauptmenü \"Hosts\" auf \"Hostsammlungen\" klicken.","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"Keine Hostsammlungen zum Anzeigen. Sie können Hostsammlungen hinzufügen, wenn Sie auf den Reiter \"Hinzufügen\" klicken.","No Repositories contain this Erratum.":"Keine Repositorys enthalten dieses Erratum.","None":"Keine","Not installed":"Nicht installiert","Not Synced":"Nicht synchronisiert","Not yet published":"Noch nicht veröffentlicht","Number of CPUs":"Anzahl der CPUs","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"Ein oder mehrere der ausgewählten Errata sind nicht installierbar über Ihre veröffentlichten Inhaltsansichtsversionen, die auf den ausgewählten Hosts laufen. Es werden neue Versionen der Inhaltsansicht (siehe unten)\n erstellt, wodurch dieses Errata in der Umgebung des Hosts installierbar wird. Diese neue Version ersetzt die aktuelle Version in der Lebenszyklusumgebung\n Ihres Hosts. Um diese Errata sofort nach Veröffentlichung auf Hosts zu installieren, setzen Sie einen Haken am Auswahlfeld unten.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"Nur Inhaltshosts anzeigen, für die die Errata derzeit in der Lebenszyklusumgebung des Hosts installierbar ist.","Operating System":"Betriebssystem","Organization":"Organisation","Original Sync Date":"Erste Synchronisation","OS":"Betriebssystem","OSTree Branches":"OSTree-Branches","OSTree Repositories":"OSTree-Repositorys","Package":"Paket","Package Actions":"Paketaktionen","Package Filter:":"Paketfilter:","Package Group":"Paketgruppe","Package Group Filter:":"Paketgruppenfilter:","Package Group successfully added.":"Paketgruppe erfolgreich hinzugefügt.","Package Group successfully removed.":"Paketgruppe erfolgreich entfernt.","Package Groups":"Paketgruppen","Package Install":"Paketinstallation","Package Installation, Removal, and Update":"Installieren, Entfernen und Aktualisieren von Paketen","Package Remove":"Paketentfernung","Package successfully added.":"Paket erfolgreich hinzugefügt.","Package successfully removed.":"Paket erfolgreich entfernt.","Package successfully updated.":"Paket erfolgreich aktualisiert.","Package Update":"Paketaktualisierung","Package/Group Name":"Paket-/Gruppenname","Packages":"Pakete","Packages <div>{{ library.counts.packages || 0 }}</div>":"Pakete <div>{{ library.counts.packages || 0 }}</div>","Packages for:":"Pakete für:","Parameters":"Parameter","Password":"Passwort","Path":"Pfad","Perform":"Ausführen","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"Bitte wählen Sie eine Lebenszyklusumgebung und Inhaltsansicht, in die diese betroffenen Aktivierungsschlüssel verlegt werden sollen:","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"Bitte wählen Sie eine Lebenszyklusumgebung und Inhaltsansicht, in die diese Inhaltshosts verlegt werden sollen:","Please select a Lifecycle Environment.":"Bitte wählen Sie eine Lebenszyklusumgebung.","Please select an environment.":"Bitte wählen Sie eine Umgebung.","Please select one from the list below and you will be redirected.":"Bitte wählen Sie aus der Liste unten, Sie werden anschließend weitergeleitet.","Product":"Produkt","Product Count":"Produktanzahl","Product Enhancement Advisory":"Produkterweiterungs-Advisory","Product information for:":"Produktinformationen für:","Product Management for Sync Plan:":"Produktverwaltung für Synchronisationsplan:","Product Name":"Produktname","Product Saved":"Produkt gespeichert","Products":"Produkte","Products <div>{{ library.counts.products || 0 }}</div>":"Produkte <div>{{ library.counts.products || 0 }}</div>","Promote":"Übertragen","Promote Content View:":"Inhaltsansicht übertragen:","Promote Version":"Version übertragen","Promote Version {{ version.version }}":"Version {{ version.version }} übertragen","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"Version übertragen auf {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"Übertragen nach %s","Promoting to %count environments.":"Übertragen in %count Umgebungen.","Promoting to 1 environment.":"Übertragen in 1 Umgebung.","Promotion History":"Übertragungschronik","Provisioning Details":"Bereitstellungsdetails","Provisioning Host Details":"Bereitstellungshost-Details","Publish Content View:":"Inhaltsansicht veröffentlichen:","Publish New Version":"Neue Version veröffentlichen","Publish via HTTP":"Über HTTP veröffentlichen","Publish via HTTPS":"Über HTTPS veröffentlichen","Published":"Veröffentlicht","Published At":"Veröffentlicht unter","Published new version":"Neue Version veröffentlicht","Published Repository Information":"Repository-Informationen veröffentlicht","Publishing and promoting to %count environments.":"Veröffentlichen und übertragen in %count Umgebungen.","Publishing and promoting to 1 environment.":"Veröffentlichen und übertragen in 1 Umgebung.","Puppet Environment":"Puppet-Umgebung","Puppet module added to Content View":"Puppet-Modul zur Inhaltsansicht hinzugefügt","Puppet Modules":"Puppet-Module","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Puppet-Module <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"Puppet-Module für Inhaltsansicht:","Quantity":"Anzahl","RAM (GB)":"RAM (GB)","Range":"Bereich","Reboot Suggested":"Neustart empfohlen","Reboot Suggested?":"Neustart empfohlen?","Red Hat Repositories page":"Red Hat Repositorys","Red Hat Repositories page.":"Red Hat Repositorys-Seite.","Refresh Table":"Tabelle aktualisieren","Register a Content Host":"Inhaltshost registrieren","Register Content Host":"Inhaltshosts registrieren","Registered":"Registriert","Registered By":"Registriert durch","Registry URL":"Registry-URL","Release":"Release","Release Version":"Release-Version","Removal of selected repositories initiated successfully.":"Entfernen der ausgewählten Repositorys erfolgreich eingeleitet.","Remove":"Entfernen","Remove Activation Key \"{{ activationKey.name }}\"?":"Aktivierungsschlüssel \"{{ activationKey.name }}\" entfernen?","Remove Content View":"Inhaltsansicht entfernen","Remove Content Views":"Inhaltsansichten entfernen","Remove Errata":"Errata entfernen","Remove From":"Entfernen von","Remove Host Collection \"{{ hostCollection.name }}\"?":"Host-Sammlung \"{{ hostCollection.name }}\" entfernen?","Remove Module":"Modul entfernen","Remove Package Group":"Paketgruppe entfernen","Remove Packages":"Pakete entfernen","Remove Product":"Produkt entfernen","Remove Product \"{{ product.name }}\"?":"Produkt \"{{ product.name }}\" entfernen?","Remove Puppet Modules":"Puppet-Module entfernen","Remove Repositories":"Repositorys entfernen","Remove Repository":"Repository entfernen","Remove Repository \"{{ repository.name }}\"?":"Repository \"{{ repository.name }}\" entfernen?","Remove Selected":"Ausgewählte entfernen","Remove Successful.":"Erfolgreich entfernt.","Remove Sync Plan":"Synchronisationsplan entfernen","Remove Sync Plan \"{{ syncPlan.name }}\"?":"Synchronisationsplan \"{{ syncPlan.name }}\" entfernen?","Remove Version":"Version entfernen","Remove Version Confirmation":"Entfernen der Version bestätigen","Removed %x host collections from activation key \"%y\".":"%x Hostsammlungen wurden vom Aktivierungsschlüssel \"%y\" entfernt.","Removed %x host collections from content host \"%y\".":"%x Hostsammlungen wurden vom Inhaltshost \"%y\" entfernt.","Removed %x products from sync plan \"%y\".":"%x Produkte wurden vom Synchronisationsplan \"%y\" entfernt.","Removing Repositories":"Repositorys werden entfernt","Repo Discovery":"Repository-Suche","Repositories":"Repositorys","Repositories containing Errata {{ errata.errata_id }}":"Repositorys mit Errata {{ errata.errata_id }}","Repositories for Content View:":"Repositorys für Inhaltsansicht:","Repositories for Errata:":"Repositorys für Errata:","Repositories for Filter:":"Repositorys für Filter:","Repositories for Product:":"Repositorys für Produkt:","Repository":"Repository","Repository \"%s\" successfully deleted":"Repository \"%s\" erfolgreich gelöscht","Repository %s successfully created.":"Repository %s erfolgreich erstellt.","Repository Count":"Repository-Anzahl","Repository Discovery":"Repository-Suche","Repository Name":"Repository-Name","Repository Saved.":"Repository gespeichert.","Repository Selection":"Repository-Auswahl","Repository:":"Repository:","Result":"Ergebnis","Role":"Rolle","RPM":"RPM","RPM Name":"RPM-Name","RPMs":"RPMs","Run Auto-Attach":"Automatische Verknüpfung ausführen","Save Successful.":"Erfolgreich gespeichert.","Security":"Sicherheit","Security Advisory":"Sicherheits-Advisory","Select a Content Source:":"Inhaltsquelle wählen:","Select A New Puppet Module To Add":"Neues Puppet-Modul zum Hinzufügen wählen","Select a Version":"Version wählen","Select an Available Version of {{ $stateParams.moduleName }}":"Verfügbare Version von {{ $stateParams.moduleName }} wählen","Select an Organization":"Organisation wählen","Select new version":"Neue Version wählen","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"Wählen Sie die Lebenszyklusumgebungen, von denen Sie Version {{ version.version }} entfernen möchten:","Select Version":"Version wählen","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"Wenn Sie diese Option wählen, wird die Version vollständig gelöscht und ist nicht länger zur Übertragung verfügbar. Die Version muss aus allen Lebenszyklusumgebungen entfernt werden, um diese Option zu wählen.","Service Level":"Servicelevel","Severity":"Schweregrad","Show affected Activation Keys":"Betroffene Aktivierungsschlüssel anzeigen","Show affected Content Hosts":"Betroffene Inhaltshosts anzeigen","Sockets":"Sockets","Solution":"Lösung","Source RPM":"Quell-RPM","Start Date":"Startdatum","Start Time":"Startzeit","Started At":"Gestartet am","Starting":"Start","Starts":"Beginnt","State":"Status","Status":"Status","Stream":"Stream","Subscription Details":"Subskriptionsdetails","Subscription Status":"Subskriptionsstatus","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Subskriptionen","Subscriptions for Activation Key:":"Subskriptionen für Aktivierungsschlüssel:","Subscriptions for:":"Subskriptionen für:","Successfully added %s subscriptions.":"%s Subskriptionen erfolgreich hinzugefügt.","Successfully deleted %cv version %ver.":"%cv Version %ver erfolgreich gelöscht.","Successfully initiated deletion of %cv version %ver.":"Löschen von %cv Version %ver erfolgreich initiiert.","Successfully initiated promotion of %cv version %ver to %env.":"Übertragen von %cv Version %ver in %env erfolgreich initiiert.","Successfully initiated removal of %cv version %ver.":"Entfernen von %cv Version %ver erfolgreich initiiert.","Successfully promoted %cv version %ver to %env":"%cv Version %ver erfolgreich in %env übertragen","Successfully published %cv version %ver and promoted to Library":"%cv Version %ver erfolgreich veröffentlicht und in Library übertragen","Successfully removed %cv version %ver from environments: %env":"%cv Version %ver erfolgreich aus Umgebungen %env entfernt","Successfully removed %s items.":"%s Elemente erfolgreich entfernt.","Successfully removed %s subscriptions.":"%s Subskriptionen erfolgreich entfernt.","Successfully removed 1 item.":"1 Element erfolgreich entfernt.","Successfully updated subscriptions.":"Subskriptionen erfolgreich aktualisiert.","Summary":"Zusammenfassung","Support Level":"Supportlevel","Sync Enabled":"Synchronisation aktiviert","Sync Interval":"Synchronisationsintervall","Sync Now":"Jetzt synchronisieren","Sync Plan":"Synchronisationsplan","Sync Plan %s has been deleted.":"Synchronisationsplan %s wurde gelöscht.","Sync Plan Saved":"Synchronisationsplan gespeichert","Sync Plan:":"Synchronisationsplan:","Sync Plans":"Synchronisationspläne","Sync State":"Syncronisationsstatus","Sync Status":"Synchronisationsstatus","Synced manually, no interval set.":"Manuell synchronisiert, kein Intervall festgelegt.","Tags":"Tags","Task Details":"Taskdetails","Tasks":"Tasks","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"Die nachfolgend aufgeführten Aktivierungsschlüssel verwenden derzeit diese Inhaltsansichtsversion. Bevor Sie die Version löschen, müssen Sie diese Aktivierungsschlüssel in eine Lebenszyklusumgebung verlegen, in der diese Version nicht in Gebrauch ist.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"Das Archiv dieser Version wird gelöscht. Diese Version wird nicht mehr verfügbar sein, sobald der Löschvorgang abgeschlossen ist.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"Das Archiv dieser Version wird nicht gelöscht. Diese Version wird weiterhin zur Übertragung in eine Lebenszyklusumgebung verfügbar sein.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Die nachfolgend aufgeführten Inhaltshosts verwenden derzeit diese Inhaltsansichtsversion. Bevor Sie die Version entfernen, müssen Sie diese Inhaltshosts in eine Umgebung verlegen, in der diese Version nicht in Gebrauch ist.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"Die Inhaltsansicht oder Lebenszyklusumgebung muss aktualisiert werden, um Errata für diese Hosts verfügbar zu machen.","The following actions can be performed on content hosts in this host collection:":"Die folgenden Aktionen können auf Inhaltshosts in dieser Hostsammlung ausgeführt werden:","The page you are attempting to access requires selecting a specific organization.":"Die Seite, auf die Sie zugreifen möchten, erfordert die Auswahl einer bestimmten Organisation.","The selected environment contains no Content Views, please select a different environment.":"Die gewählte Umgebung einhält keine Inhaltsansichten, bitte wählen Sie eine andere Umgebung.","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Mit dieser Inhaltsansicht sind derzeit keine Repositorys verknüpft. Sie können welche hinzufügen, indem Sie auf den Reiter \"Hinzufügen\" klicken.","There are currently no repositories to add to this Content View,":"Es gibt keine Repositorys zum Hinzufügen zu dieser Inhaltsansicht,","There are no Content Views in this Environment.":"Es gibt keine Inhaltsansichten in dieser Umgebung.","There are no Content Views that match the criteria.":"Es gibt keine Inhaltsansichten, die mit diesen Kriterien übereinstimmen.","There are no Errata associated with this Content Host to display.":"Es gibt keine anzuzeigenden Errata, die mit diesem Inhaltshost verknüpft sind.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"Es gibt keine Errata in dieser Organisation. Erstellen Sie ein oder mehrere Produkte mit Errata, um auf dieser Seite Errata anzuzeigen.","There are no Errata to display.":"Es gibt keine anzuzeigenden Errata.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Es sind keine Hostsammlungen verfügbar. Sie können neue Hostsammlungen erstellen, wenn Sie im Hauptmenü \"Hosts\" auf \"Hostsammlungen\" klicken.","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"Derzeit läuft eine inkrementelle Aktualisierung. Diese Aktualisierung muss abgeschlossen sein, bevor vorhandene Aktualisierungen angewendet werden können.","This activation key is not associated with any content hosts.":"Dieser Aktivierungsschlüssel ist derzeit mit keinen Inhaltshosts verknüpft.","This activation key may be used during system registration. For example:":"Dieser Aktivierungsschlüssel kann während der Systemregistrierung verwendet werden. Zum Beispiel:","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Diese Inhaltsansicht hat keine Versionen. Erstellen Sie Ihre erste Inhaltsansichtsversion über die Schaltfläche \"Neue Version veröffentlichen\" rechts.","This filter applies only to a subset of repositories in the content view.":"Dieser Filter gilt nur für eine Untergruppe von Repositorys in der Inhaltsansicht.","This filter applies to all repositories in the content view (current and future).":"Dieser Filter gilt für alle Repositorys in der Inhaltsansicht (aktuell und zukünftig).","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Diese Version kann aufgrund einer der unten genannten Gründe nicht von allen Lebenszyklusumgebungen gelöscht werden","This Version is not associated with any Lifecycle Environments.":"Diese Version ist mit keinen Lebenszyklusumgebungen verknüpft.","This version will be removed from:":"Diese Version wird entfernt von:","Title":"Titel","to manage them individually.":"um sie einzeln zu verwalten.","To register a content host to this server, follow these steps.":"Um einen Inhaltshosts bei diesem Server zu registrieren, gehen Sie folgendermaßen vor.","Topic":"Thema","Type":"Typ","Unknown":"Unbekannt","Unlimited Content Hosts:":"Unbegrenzte Inhaltshosts:","Update":"Aktualisieren","Update Repositories":"Repositorys aktualisieren","Update Sync Plan":"Synchronisationsplan aktualisieren","Updated":"Aktualisiert","Updated errata filter -":"Errata-Filter aktualisiert -","Upload":"Hochladen","Upload Package":"Paket hochladen","Upload Puppet Module":"Puppet-Modul hochladen","Uploading...":"Hochladen …","Upstream Repository Name":"Upstream-Repository-Name","User":"Benutzer","Username":"Benutzername","Version":"Version","Version Deletion":"Versionslöschung","Version Details":"Versionsdetails","Version:":"Version:","Versions":"Versionen","Versions for Content View:":"Versionen für Inhaltsansicht:","Versions for Puppet Module:":"Versionen für Puppet-Modul:","Virtual Guests":"Virtuelle Gäste","Virtual Host":"Virtuelle Hosts","weekly":"wöchentlich","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Wöchentlich am {{ product.sync_plan.sync_date | date:'EEEE' }} um {{ product.sync_plan.sync_date | date:'mediumTime' }} (Serverzeit)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Wenn die automatische Verknüpfung deaktiviert ist, werden neu registrierte Systeme mit allen zugewiesenen Subskriptionen verknüpft.","Working":"In Arbeit","Yes":"Ja","You cannot remove these repositories because they belong to a Red Hat product.":"Sie können diese Repositorys nicht entfernen, da Sie zu einem Red Hat Produkt gehören.","You cannot remove these repositories because you do not have permission.":"Sie können diese Repositorys nicht entfernen, da Sie keine Berechtigung dazu haben.","You cannot remove this product because it is a Red Hat product.":"Sie können dieses Produkt nicht entfernen, da es ein Red Hat Produkt ist.","You cannot remove this product because it was published to a content view.":"Sie können dieses Produkt nicht entfernen, da es in einer Inhaltsansicht veröffentlicht wurde.","You cannot remove this product because you do not have permission.":"Sie können dieses Produkt nicht entfernen, da Sie keine Berechtigung dazu haben.","You cannot remove this repository because it is a Red Hat repository.":"Sie können dieses Repository nicht entfernen, da es ein Red Hat Repository ist.","You cannot remove this repository because it was published to a content view.":"Sie können dieses Repository nicht entfernen, da es in einer Inhaltsansicht veröffentlicht wurde.","You cannot remove this repository because you do not have permission.":"Sie können dieses Repository nicht entfernen, da Sie keine Berechtigung dazu haben.","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"Sie haben derzeit keine Aktivierungsschlüssel. Sie können über die Schaltfläche rechts neue Aktivierungsschlüssel hinzufügen.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"Sie haben derzeit keine Inhaltshosts. Sie können neue Inhaltshosts erstellen, indem Sie im Hauptmenü den Punkt \"Inhaltshosts\" wählen und anschließend auf die Schaltfläche rechts klicken.","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"Sie haben derzeit keine Inhaltshosts. Sie können neue Inhaltshosts registrieren, indem Sie auf die Schaltfläche rechts klicken und den Anweisungen folgen.","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"Sie haben derzeit keine Inhaltsansichten. Sie können neue Inhaltsansichten hinzufügen, indem Sie auf die Schaltfläche rechts klicken.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"In dieser Inhaltsansicht sind derzeit keine Filter enthalten. Sie können über die Schaltfläche rechts einen neuen Filter hinzufügen.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"Sie haben derzeit keine Hostsammlungen. Sie können über die Schaltfläche rechts neue Hostsammlungen hinzufügen.","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"Sie haben derzeit keine Produkte<span bst-feature-flag=\"custom_products\">. Sie können über die Schaltfläche rechts Produkte hinzufügen</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"In dieser Inhaltsansicht sind derzeit keine Puppet-Module enthalten. Sie können über die Schaltfläche rechts Puppet-Module hinzufügen.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"In diesem Produkt sind derzeit keine Repositorys enthalten. Sie können über die Schaltfläche rechts Repositorys hinzufügen.","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"Sie haben derzeit keine Synchronisationspläne. Sie können über die Schaltfläche rechts einen neuen Synchronisationsplan erstellen.","You do not have any Installed Products":"Sie haben keine installierten Produkte","You must select a content view in order to save your environment.":"Sie müssen eine Inhaltsansicht auswählen, um Ihre Umgebung zu speichern.","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"Sie müssen eine neue Inhaltsansicht wählen, bevor die Änderung der Umgebung gespeichert werden kann. Klicken Sie auf \"Abbrechen\" in der Inhaltsansichtsauswahl, um Ihre Umgebungsauswahl zurückzusetzen.","You must select at least one Content Host in order to apply Errata.":"Sie müssen mindestens einen Inhaltshost auswählen, um Errata anzuwenden.","You must select at least one Errata to apply.":"Sie müssen mindestens ein Erratum zur Anwendung auswählen.","You must select at least one repository.":"Sie müssen mindestens ein Repository auswählen.","Yum Content":"Yum-Inhalte","Yum Metadata Checksum":"Yum-Metadaten-Prüfsumme","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Die Generierung von Yum-Metadaten wurde im Hintergrund initiiert. Klicken Sie <a href=\"{{ taskUrl() }}\">hier</a>, um den Fortschritt nachzuverfolgen.","Yum Repositories":"Yum-Repositorys","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Yum-Repositorys <div>{{ library.counts.yum_repositories || 0 }}</div>"});
4
+ gettextCatalog.setStrings('es', {"- Date and Type":"- Fecha y tipo","-- select an interval --":"-- seleccionar un intervalo --","(Not all Activation Keys editable )":"(No todas las llaves de activación son modificables)","(Not all Content Hosts editable )":"(No todos los hosts de contenido son modificables)","{{ 'Add Selected' | translate }}":"{{ 'Añadir seleccionado' | translate }}","{{ componentContentView.puppet_modules.length || 0 }} Puppet Modules":"{{ componentContentView.puppet_modules.length || 0 }} módulos Puppet","{{ componentContentView.repositories.length || 0 }} Repositories":"{{ componentContentView.repositories.length || 0 }} repositorios","{{ contentCredential.name }}":"{{ contentCredential.name }}","{{ contentView.name }}":"{{ contentView.name }}","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} no se puede borrar porque una o más versiones de visión de contenido aún se están promoviendo a un entorno de ciclo de vida.\n Cada versión de vista de contenido debe ser retirada de los entornos de ciclo de vida antes de borrar la vista de contenido.","{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet Modules":"{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} módulos Puppet","{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories":"{{ contentViewComponent.content_view_version.repositories.length || 0 }} repositorios","{{ deb.name }}":"{{ deb.name }}","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} aplicable,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} instalable","{{ errata.title }}":"{{ errata.title }}","{{ file.name }}":"{{ file.name }}","{{ filter.inclusion | filterType }} Tag":"{{ filter.inclusion | filterType }} etiqueta","{{ host.name }}":"{{ host.name }}","{{ host.subscription_facet_attributes.user.login }}":"{{ host.subscription_facet_attributes.user.login }}","{{ installedPackageCount }} Host(s)":"{{ installedPackageCount }} host(s)","{{ package.hosts_applicable_count }} Host(s)":"{{ package.hosts_applicable_count }} host(s)","{{ package.hosts_applicable_count || 0 }} Applicable,":"{{ package.hosts_applicable_count || 0 }} aplicable,","{{ package.hosts_available_count }} Host(s)":"{{ package.hosts_available_count }} host(s)","{{ package.hosts_available_count || 0 }} Upgradable":"{{ package.hosts_available_count || 0 }} actualizable","{{ package.human_readable_size }} ({{ package.size }} Bytes)":"{{ package.human_readable_size }} ({{ package.size }} bytes)","{{ product.active_task_count }}":"{{ product.active_task_count }}","{{ product.name }}":"{{ product.name }}","{{ puppetModule.name }}":"{{ puppetModule.name }}","{{ repository.content_counts.deb }} deb Packages":"{{ repository.content_counts.deb }} Paquetes deb","{{ repository.content_counts.deb || 0 }} deb Packages":"{{ repository.content_counts.deb || 0 }} Paquetes deb","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} Erratas","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} erratas","{{ repository.content_counts.file || 0 }} Files":"{{ repository.content_counts.file || 0 }} archivos","{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches":"{{ repository.content_counts.ostree_branch || 0 }} etiquetas OSTree","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} módulos Puppet","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} paquetes","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} paquetes","{{ repository.content_counts.srpm }} Source RPMs":"{{ repository.content_counts.srpm }} RPM de fuente","{{ repository.last_sync_words }} ago":"Hace {{ repository.last_sync_words }}","{{ repository.name }}":"{{ repository.name }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} llaves de activación se moverán a {{ deleteOptions.activationKeys.contentView.name }} en {{ deleteOptions.activationKeys.environment.name }}","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} hosts de contenido se moverán a {{ deleteOptions.contentHosts.contentView.name }} en {{ deleteOptions.contentHosts.environment.name }}","{{ type.display }}":"{{ type.display }}","{{ version.deb_count }} deb Packages":"{{ version.deb_count }} Paquetes deb","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} erratas","{{ version.file_count }} Files":"{{ version.file_count }} archivos","{{ version.ostree_branch_count }} OSTree Branches":"{{ version.ostree_branch_count }} etiquetas OSTree","{{ version.package_count }} Packages":"{{ version.package_count }} paquetes","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} módulos Puppet","{{ version.srpm_count }} Source RPMs":"{{ version.srpm_count }} RPM de fuente","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* Estas versiones de vista de contenido pertenecen a Vistas de contenido compuestas. Los componentes que deben actualizarse se enumeran a continuación. ","%(consumed)s out of %(quantity)s":"%(consumed)s de %(quantity)s","%count environment(s) can be synchronized: %envs":"%count entornos se pueden sincronizar: %envs","<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>":"<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>","<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>":"<a ui-sref=\"content-view.version.details({versionId: version.id})\">Versión {{ version.version }}</a>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n Los entornos con asterisco se sugieren para promoción.","<i class=\"fa fa-warning inline-icon\"></i>\n This Host is not currently registered with subscription-manager. Click <a ui-sref=\"content-hosts.register\">here</a> for registration information.":"<i class=\"fa fa-warning inline-icon\"></i>\n En este momento, este host no se encuentra registrado con suscription-manager. \nHaga clic<a ui-sref=\"content-hosts.register\">aquí</a> para acceder a información del registro.","<span translate=\"\">\n If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">to manage them individually.</span>":"<span translate=\"\">\n Si prefiere mover porciones de llaves de activación a diferentes vistas de contenido o entorno de ciclo de vida, haga clic\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">aquí</a>\n <span translate=\"\">para administrarlas individualmente.</span>","1 repository sync in progress.":["1 sincronización de repositorio en progreso.","{{ product.sync_summary.pending}} sincronizaciones de repositorios en progreso."],"1 successfully synced repository.":["1 repositorio ha sido sincronizado correctamente. ","{{ product.sync_summary.success}} repositorios han sido sincronizados correctamente."],"A composite view contains other content views.":"Una vista compuesta contiene otras vistas de contenido.","A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n It can be promoted to other environments from the Versions tab of this Content View.":"Una nueva versión de {{ contentView.name }} se creará y promoverá al entorno de biblioteca.\n Puede promoverse a otros entornos desde la pestaña Versiones de esta vista de contenido.","A newer version is available: {{ contentViewComponent.content_view.latest_version }}":"Hay una versión más reciente disponible: {{ contentViewComponent.content_view.latest_version }}","A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>":"Se ha iniciado una sincronización en segundo plano, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">haga clic aquí para obtener más información.</a>","Account":"Cuenta","Action":"Acción","Action Type":"Tipo de acción","Actions":"Acciones","Activation Key":["Llave de activación","Llaves de activación"],"Activation Key Content":"Contenido de la llave de activación","Activation Key removed.":"Se ha eliminado la llave de activación.","Activation Key updated":"Se ha actualizado la llave de activación.","Activation Key:":"Llave de activación:","Activation Keys":"Llaves de activación","Activation Keys using Version {{ version.version }}":"Llaves de activación con la versión {{ version.version }}","Active Tasks":"Tareas activas","Add":"Añadir","Add Content Hosts to:":"Añadir hosts de contenido a:","Add Content Views":"Añadir vistas de contenido","Add Content Views to {{ contentView.name }}":"Añadir vistas de contenido a {{ contentView.name }}","Add Errata":"Añadir erratas","Add New Environment":"Añadir un nuevo entorno","Add New Module":"Añadir nuevo módulo","Add New Yum Filter":"Añadir un nuevo filtro Yum","Add ons":"Complementos","Add Package Group":"Añadir grupo de paquetes","Add Repositories":"Añadir repositorios","Add Rule":"Añadir regla","Add Selected":"Añadir seleccionado","add some repositories.":"añadir algunos repositorios.","Add Subscriptions for Activation Key:":"Añadir suscripciones para la llave de activación:","Add Subscriptions for Content Host:":"Agregar suscripciones para el host de contenido:","Add To":"Añadir a","Added %x host collections to activation key \"%y\".":"Se han añadido %x colecciones de hosts a la llave de activación \"%y\".","Added %x host collections to content host \"%y\".":"Se han añadido %x colecciones de hosts al host de contenido \"%y\".","Added %x products to sync plan \"%y\".":"Se han añadido %x productos al plan de sincronización \"%y\".","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Adición de entorno de ciclo de vida al final de \"{{ priorEnvironment.name }}\"","Advanced Sync":"Sincronización avanzada","Advisory":"Recomendación","Affected Activation Keys":"Llaves de activación afectadas","Affected Content Hosts":"Hosts de contenido afectados","Affected Hosts":"Hosts afectados","Affected Repositories":"Repositorios afectados","Affected repositories have been updated.":"Se han actualizado los repositorios afectados.","All Content Views":"Todas las vistas de contenido","All History":"Todo el historial","All Products":"Todos los productos","All Repositories":"Todos los repositorios","All Versions":"Todas las versiones","Always Use Latest (Currently %s)":"Utilizar siempre el más reciente (actualmente, %s)","Always Use Latest (Currently no versions)":"Utilizar siempre el más reciente (en este momento, no hay versiones)","An error occured: %s":"Ocurrió un error: %s","An error occurred initiating the sync:":"Ocurrió un error al iniciar la sincronización:","An error occurred removing the Activation Key:":"Ocurrió un error al eliminar la llave de activación:","An error occurred removing the content hosts.":"Ocurrió un error al eliminar los hosts de contenido.","An error occurred removing the environment:":"Ocurrió un error al eliminar el entorno:","An error occurred removing the Host Collection:":"Ocurrió un error al eliminar la colección de hosts:","An error occurred removing the subscriptions.":"Ocurrió un error al eliminar las suscripciones.","An error occurred saving the Activation Key:":"Ocurrió un error al guardar la llave de activación:","An error occurred saving the Content Host:":"Ocurrió un error al guardar el host de contenido:","An error occurred saving the Environment:":"Ocurrió un error al guardar el entorno:","An error occurred saving the Filter:":"Ocurrió un error al guardar el filtro:","An error occurred saving the Host Collection:":"Ocurrió un error al guardar la colección de hosts:","An error occurred saving the Product:":"Ocurrió un error al guardar el producto:","An error occurred saving the Repository:":"Ocurrió un error al guardar el repositorio:","An error occurred saving the Sync Plan:":"Ocurrió un error al guardar el plan de sincronización:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Ocurrió un error al intentar asociar automáticamente las suscripciones. Revise el registro para obtener más información.","An error occurred updating the Content View:":"Ocurrió un error al actualizar la vista de contenido:","An error occurred updating the sync plan:":"Ocurrió un error al actualizar el plan de sincronización:","An error occurred while creating the Content Credential:":"Ocurrió un error al crear la credencial de contenidos:","An error occurred while creating the Product: %s":"Ocurrió un error al crear el producto: %s","An error occurred:":"Ocurrió un error:","Ansible Collections":"Colecciones de Ansible","Applicable":"Aplicable","Applicable Content Hosts":"Hosts de contenido aplicables","Applicable Errata":"Erratas aplicables","Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\".":"Se aplica solo a vistas compuestas. Publique automáticamente la vista compuesta al crear una nueva versión de una vista de contenido compuesta. Tenga en cuenta también que la publicación automática solo se podrá ejecutar cuando el componente esté marcado como \"último\".","Applicable Packages":"Paquetes aplicables","Applicable To":"Aplicable a","Applicable to Host":"Aplicable al host","Application":"Aplicación","Apply":"Aplicar","Apply {{ errata.errata_id }}":"Aplicar {{ errata.errata_id }}","Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?":"¿Aplicar {{ errata.errata_id }} a {{ contentHostIds.length }} host(s) de contenido?","Apply {{ errata.errata_id }} to all Content Host(s)?":"¿Aplicar {{ errata.errata_id }} a todos los hosts de contenido?","Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content Host(s)?":"¿Aplicar {{ errataIds.length }} erratas a {{ contentHostIds.length }} host(s) de contenido?","Apply {{ errataIds.length }} Errata to all Content Host(s)?":"¿Aplicar errata {{ errataIds.length }} a todos los hosts de contenido?","Apply Errata":"Aplicar erratas","Apply Errata to Content Host \"{{host.name}}\"?":"¿Aplicar erratas al host de contenido \"{{host.name}}\"?","Apply Errata to Content Hosts":"Aplicar erratas a hosts de contenido","Apply Errata to Content Hosts immediately after publishing.":"Aplicar erratas a hosts de contenido inmediatamente después de la publicación.","Apply Selected":"Aplicar seleccionado","Apply to Content Hosts":"Aplicar a hosts de contenido","Apply to Hosts":"Aplicar a hosts ","Applying":"Aplicación","Apt Repositories":"Repositorios Apt","Arch":"Arquitectura","Architecture":"Arquitectura","Architectures":"Arquitecturas","Archived Copy":"Copia archivada","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"¿Está seguro de que desea añadir los {{ table.numSelected }} hosts de contenido seleccionados a las colecciones de hosts elegidas?","Are you sure you want to add the sync plan to the selected products(s)?":"¿Está seguro de que desea agregar el plan de sincronización a los productos seleccionados?","Are you sure you want to apply Errata to content host \"{{ host.name }}\"?":"¿Está seguro de que desea aplicar erratas al host de contenido\"{{ host.name }}\"?","Are you sure you want to apply the {{ table.numSelected }} selected errata to the content hosts chosen?":"¿Está seguro de que desea aplicar las {{ table.numSelected }} erratas seleccionadas a los hosts de contenido elegidos?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"¿Está seguro de que desea asignar los {{ table.numSelected }} hosts de contenido seleccionados a {{ selected.contentView.name }} en {{ selected.environment.name }}?","Are you sure you want to disable the {{ table.numSelected }} repository set(s) chosen?":"¿Está seguro de querer desactivar los {{ table.numSelected }} conjuntos de repositorios elegidos?","Are you sure you want to enable the {{ table.numSelected }} repository set(s) chosen?":"¿Está seguro de querer activar los {{ table.numSelected }} conjuntos de repositorios elegidos?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"¿Está seguro de que desea instalar {{ content.content }} en los {{ getSelectedSystemIds().length }} sistemas seleccionados?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"¿Está seguro de que desea eliminar {{ content.content }} de los {{ getSelectedSystemIds().length }} sistemas seleccionados?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"¿Está seguro de que desea eliminar la llave de activación \"{{ activationKey.name }}\"?","Are you sure you want to remove Content Credential {{ contentCredential.name }}?":"¿Está seguro de que desea eliminar la credencial de contenidos {{ contentCredential.name }}?","Are you sure you want to remove Content View \"{{ contentView.name }}\"?":"¿Está seguro de que desea eliminar la vista de contenido \"{{ contentView.name }}\"?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"¿Está seguro de que desea retirar esta colección de hosts \"{{ hostCollection.name }}\"?","Are you sure you want to remove product \"{{ product.name }}\"?":"¿Está seguro de que desea retirar el producto \"{{ product.name }}\"?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"¿Está seguro de que desea retirar el repositorio \"{{ repository.name }}\"?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"¿Está seguro de que desea retirar el plan de sincronización \"{{ syncPlan.name }}\"?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"¿Está seguro de que desea eliminar los {{ table.numSelected }} hosts de contenido seleccionados de las colecciones de hosts elegidas?","Are you sure you want to remove the sync plan from the selected product(s)?":"¿Está seguro de que desea eliminar el plan de sincronización de los productos seleccionados?","Are you sure you want to reset to default the {{ table.numSelected }} repository set(s) chosen?":"¿Está seguro de que desea restablecer el valor predeterminado de los {{ table.numSelected }} conjuntos de repositorios seleccionados?","Are you sure you want to restart services on content host \"{{ host.name }}\"?":"¿Está seguro de que desea reiniciar los servicios en el host de contenido \"{{ host.name }}\"?","Are you sure you want to set the Release Version the {{ table.numSelected }} content host(s) selected to {{ selected.release }}?. This action will affect only those Content Hosts that belong to the appropriate Content View and Lifecycle Environment containining that release version.":"¿Está seguro de que desea definir la versión de lanzamiento seleccionada por el(los) {{ table.numSelected }} host(s) de contenido seleccionado(s) para {{ selected.release }}? Esta acción afectará únicamente los hosts de contenido que pertenezcan a la vista de contenido correspondiente y al entorno del ciclo de vida que contenga dicha versión de lanzamiento.","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"¿Está seguro de que desea actualizar {{ content.content }} en los {{ getSelectedSystemIds().length }} sistemas seleccionados?","Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?":"¿Está seguro de que desea actualizar todos los paquetes del(de los) {{ getSelectedSystemIds().length }} sistema(s) seleccionado(s)?","As part of this deletion, 1 Content View Version will be deleted.":["Como parte del borrado, se borrará 1 versión de vista de contenido."," Como parte del borrado, se borrarán {{ versions.length }} versiones de vista de contenido."],"Assign":"Asignar","Assign Release Version":"Asignar versión de lanzamiento","Associations":"Asociaciones","At least one Errata needs to be selected to Apply.":"Se debe seleccionar por lo menos una errata para que aplique.","Attached":"Asociada","Author":"Autor","Auto Publish":"Publicación automática","Auto-Attach":"Asociar automáticamente","Automatic":"Automático","Available Content Views for Composite Content View:":"Vistas de contenido disponibles para vista de contenido compuesta:","Available Puppet Modules for Content View:":"Módulos Puppet disponibles para vista de contenido:","Available Schema Versions":"Versiones de esquema disponibles","Back":"Atrás","Back To Errata List":"Volver a la lista de erratas","Backend Identifier":"Identificador de backend","Basic Information":"Información básica","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"A continuación, se indican los conjuntos de contenido de repositorio que están disponibles para este host de contenido mediante sus suscripciones. En el caso de suscripciones Red Hat, se puede ofrecer contenido adicional mediante","Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"A continuación, se mencionan los conjuntos de repositorio disponibles actualmente para esta clave de activación mediante sus suscripciones. En el caso de suscripciones Red Hat, se puede ofrecer contenido adicional mediante","Between versions {{ rule.min_version }} and {{ rule.max_version }}":"Entre las versiones {{ rule.min_version }} y {{ rule.max_version }}","Bootable":"De arranque","Branch Info":"Información de sucursal","Branch Name":"Nombre de la etiqueta","Bug Fix":"Corrección de errores","Bug Fix Advisory":"Recomendación de corrección de errores","Bugfix":"Corrección de errores","Build Host":"Crear host","Build Information":"Desarrollar información","Build Time":"Tiempo de construcción","Cancel":"Cancelar","Cannot Remove":"No es posible eliminar","Cannot republish Repository without the proper permissions.":"No es posible volver a publicar el repositorio sin los permisos correspondientes.","Cannot republish Repository, a sync is already in progress.":"No es posible volver a publicar el repositorio ya que hay una sincronización en curso.","Cannot sync Repository without a URL.":"No es posible sincronizar un repositorio sin una URL.","Cannot sync Repository without the proper permissions.":"No es posible sincronizar un repositorio sin los permisos correspondientes.","Cannot sync Repository, a sync is already in progress.":"No es posible sincronizar el repositorio ya que hay una sincronización en curso.","Capacity":"Capacidad","Certificate":"Certificado","Change assigned Lifecycle Environment or Content View":"Cambiar entorno del ciclo de vida o vista de contenido asignados","Change Host Collections":"Cambiar colecciones de hosts","Change Lifecycle Environment":"Cambiar el entorno de ciclo de vida","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"Para modificar la configuración predeterminada de los hosts de contenido que se registran con esta llave de activación debe tener instalada en este host la herramienta subscription-manager versión 1.10 o posterior.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"Para modificar la configuración predeterminada debe tener instalada en el host la herramienta subscription-manager versión 1.10 o posterior.","Checksum":"Suma de verificación","Checksum Type":"Tipo de suma de verificación","Choose <b>Default</b> to enable the repository for all architectures":"Elija <b>Default</b> para habilitar el repositorio para todas las arquitecturas","Choose a lifecycle environment from the available promotion paths.":"Elija un entorno del ciclo de vida de las rutas de promoción disponibles.","Choose one of the policy selections for downloading ostree content from upstream url during synchronization. Choose \"Latest\" for downloading the latest version of the upstream branch. Choose \"All History\" to download all available versions of the upstream repository (this may take a large amount of space). Choose \"Custom Depth\" and provide an number to indicate the number of prior versions of the upstream branch to download.":"Elija una de las selecciones de políticas para descargar contenido ostree de la URL de upstream durante la sincronización. Seleccione \"Más reciente\" para descargar la última versión de la rama ascendente. Seleccione \"Todo el historial\" para descargar todas las versiones disponibles del repositorio upstream (puede consumir mucho espacio). Seleccione \"Profundidad personalizada\" e indique un número para señalar el número de versiones anteriores que pueden descargarse de la rama ascendente.","Click here to check the status of the task.":"Haga clic para verificar el estatus de la tarea.","Click here to select Errata for an Incremental Update.":"Haga clic para seleccionar erratas para una actualización incremental. ","Close":"Cerrar","Comma separated list of components to sync from (leave clear to sync all). Example: main":"Lista de componentes (separados por comas) desde los cuales ejecutar la sincronización (dejar en blanco para sincronizar desde todos) (p. ej. principal)","Comma separated list of processor architectures to filter the sync by. Example: amd64":"Lista de arquitecturas de procesador (separadas por comas) con las cuales filtrar la sincronización (p. ej., amd64)","Comma separated list of releases (suite or codename) to sync from. Default: stable":"Lista de lanzamientos (conjunto o nombre del código) (separados por comas) desde los cuales ejecutar la sincronización. Valor predeterminado: estable","Commit":"Validar","Complete Sync":"Completar sincronización","Completely remove version?":"¿Eliminar completamente la versión?","Components":"Componentes","Components:":"Componentes:","Composite":"Compuesto","Composite View":"Vista de compuesto","Composite View?":"¿Vista compuesta?","Confirm":"Confirmar","Confirm Remove":"Confirmar eliminación","Confirm Version Removal: Version {{ version.version }}":"Confirmar eliminación de versión: Versión {{ version.version }}","Container Image Manifest":"Manifiesto de imagen de contenedor","Container Image Tag":"Etiqueta de imagen de contenedor","Container Image Tags":"Etiquetas de imagen de contenedor","Container Images":"Imágenes de contenedores","Content":"Contenido","Content Counts":"Recuentos de contenido","Content Credential %s has been created.":"Se ha creado la credencial de contenidos %s.","Content Credential Contents":"Contenidos de la credencial de contenidos","Content Credential successfully uploaded":"La credencial de contenidos se cargó correctamente","Content credential updated":"Credencial de contenidos actualizada","Content Credentials":"Credenciales de contenidos","Content Host":"Host de contenido","Content Host Bulk Content":"Contenido masivo del host de contenido","Content Host Bulk Subscriptions":"Suscripciones masivas del host de contenido","Content Host Content":"Contenido del host de contenido","Content Host Counts":"Recuento de host de contenido","Content Host Limit":"Límite del host de contenido","Content Host Properties":"Propiedades del host de contenido","Content Host Registration":"Registro del host de contenido","Content Host Status":"Estado del host de contenido","Content Host:":"Host de contenido:","Content Hosts":"Hosts de contenido","Content Hosts for Activation Key:":"Hosts de contenido para la llave de activación:","Content Hosts for:":"Hosts de contenido para:","Content Hosts using Version {{ version.version }}":"Hosts de contenido que utilizan la versión {{ version.version }}","Content Type":"Tipo de contenido","Content View":"Vista de contenido","Content View Name":"Nombre de vista de contenido","Content View updated.":"Se ha actualizado la vista de contenido.","Content View Version":"Versión de vista de contenido","Content View:":"Vista de contenido:","Content Views":"Vistas de contenido","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Vista de contenido <div>{{ library.counts.content_views || 0 }}</div>","Content Views for {{ contentView.name }}":"Vistas de contenido para {{ contentView.name }}","Content Views for Composite Content View:":"Vistas de contenido para la vista de contenido compuesta:","Content Views for Deb:":"Vistas de contenido para Deb:","Content Views for File:":"Vistas de contenido para el archivo:","Content Views for Puppet Module:":"Vistas de contenido para el módulo Puppet:","Content Views that contain this Deb":"Vistas de contenido que contienen este Deb:","Content Views that contain this File":"Vistas de contenido que incluyen este archivo","Content Views that contain this Puppet Module":"Vistas de contenido que incluyen este módulo Puppet","Context":"Contenido","Contract":"Contrato","Copy Activation Key":"Copiar llave de activación","Copy Content View":"Copiar vista de contenido","Copy Content View:":"Copiar vista de contenido:","Copy Host Collection":"Copiar colección de hosts","Cores per Socket":"Núcleos por socket","Create":"Crear","Create a copy of {{ activationKey.name }}":"Crear una copia de {{ activationKey.name }}","Create a copy of {{ contentView.name }}":"Crear una copia de {{ contentView.name }}","Create a copy of {{ hostCollection.name }}":"Crear una copia de {{ hostCollection.name }}","Create a rule using the add button above.":"Crear una regla utilizando el botón de agregar, abajo.","Create Activation Key":"Crear llaves de activación","Create Content Credential":"Crear credencial de contenidos","Create Content View":"Crear vista de contenido","Create Discovered Repositories":"Crear repositorios descubiertos","Create Environment Path":"Crear ruta de entorno","Create Host Collection":"Crear colección de hosts","Create new view":"Crear vista","Create New View":"Crear vista","Create Product":"Crear producto","Create Selected":"Crear seleccionado","Create Status":"Crear estatus","Create Sync Plan":"Crear plan de sincronización","Create view from existing views":"Crear vista de entre las vistas existentes","Creating repository...":"Creando repositorio...","Critical":"Crítico","Current Subscriptions for Activation Key:":"Suscripciones actuales para la llave de activación:","Currently Selected Puppet Modules":"Módulos Puppet seleccionados actualmente","Custom Depth":"Profundidad personalizada","Custom Depth (Currently %s)":"Profundidad personalizada (actualmente, %s)","CVEs":"CVE","daily":"A diario","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Diariamente a las {{ product.sync_plan.sync_date | date:'mediumTime' }} (Hora del servidor)","Date":"Fecha","Date Type":"Tipo de fecha","deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"la generación de metadatos deb se ha iniciado en segundo plano. Haga clic <a href=\"{{ taskUrl() }}\">aquí</a> para supervisar el progreso.","deb Packages":"Paquetes deb","Deb Packages":"Paquetes Deb","Deb:":"Deb:","Debs":"Debs","Default":"Predeterminado","Delete Hosts":"Borrar hosts","Delete Version {{ version.version }}":"Borrar la versión {{ version.version }}","Deleted from %s":"Borrado de %s","Deleting from %count environments.":"Borrando de %count entornos.","Deleting from 1 environment.":"Borrado de 1 entorno.","Deletion from %s":"Borrado desde %s","Dependencies":"Dependencias","Description":"Descripción","Details":"Información","Details for {{ contentView.name }}":"Detalles de {{ contentView.name }}","Details for Activation Key:":"Detalles de la llave de activación:","Details for Content View:":"Detalles de la vista de contenido:","Details for Product:":"Detalles del producto:","Details for Repository:":"Detalles del repositorio:","Digest":"Digest","Disable":"Inhabilitar","Disabled":"Deshabilitado","Disabled (overridden)":"Deshabilitado (anulado)","Discover":"Descubrir","Discovered Repository":"Repositorio descubierto","Discovery failed. Error: %s":"Ocurrió un error en el descubrimiento. Error: %s","Distribution":"Distribución","Distribution Information":"Información de distribución","Docker Repositories":"Repositorios Docker","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Repositorios Docker <div>{{ library.counts.docker_repositories || 0 }}</div>","Docker Repository Selection":"Selección de repositorio Docker","Done":"Terminado","Download Policy":"Descargar política","Edit":"Editar","Enable":"Habilitar","Enabled":"Habilitado","Enabled (overridden)":"Habilitado (anulado)","End Date":"Fecha de terminación","Enhancement":"Mejora","Enter Package Group Name(s)...":"Introducir nombres de grupos de paquetes...","Enter Package Name(s)...":"Ingresar nombres de paquetes...","Environment":"Entorno","Environment saved":"Entorno guardado","Environments":"Entornos","Environments List":"Lista de entornos","Equal To":"Igual que","Errata":"Erratas","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Erratas <div>{{ library.counts.errata.total || 0 }}</div>","Errata are automatically Applicable if they are Installable":"Las erratas pueden aplicarse en forma automática en caso de ser instalables","Errata Details":"Detalles de las erratas","Errata Filter:":"Filtro de erratas:","Errata for:":"Erratas para:","Errata ID":"ID de erratas","Errata Installation":"Instalación de erratas","Errata successfully added.":"Las erratas se han añadido correctamente.","Errata successfully removed.":"Las erratas se han eliminado correctamente.","Errata Task List":"Lista de tareas de erratas","Errata Tasks":"Tareas de erratas","Errata Type":"Tipo de erratas","Errata:":"Erratas:","Erratum - by ID":"Errata - por ID","Erratum - Date and Type":"Errata - Fecha y tipo","Erratum Date Range":"Intervalos de fechas de la errata","Error during upload:":"Error durante la carga:","Event":"Evento","Exclude":"Excluir","Exclude all RPMs with no errata.":"Excluir todos los RPM sin erratas.","Existing Product":"Productos existentes","Expires":"Expira","Export":"Exportar","Exported content view":"Vista de contenido exportado","Family":"Familia","File Information":"Información del archivo","File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Se inició la eliminación del archivo en segundo plano. Haga clic <a href=\"{{ taskUrl() }}\">aquí</a> para controlar el avance.","File Repositories":"Repositorios de archivos","File too large.":"Archivo demasiado grande.","File too large. Please use the CLI instead.":"Archivo demasiado grande. Use CLI en su lugar.","File:":"Archivo:","Filename":"Nombre de archivo","Files":"Archivos","Files in package {{ package.nvrea }}":"Archivos en el paquete {{ package.nvrea }}","Filter":"Filtro","Filter information for:":"Información de filtro para:","Filter rule successfully removed.":"Se eliminó correctamente la regla de filtro.","Filter rule successfully updated.":"Se actualizó correctamente la regla de filtro.","Filter Saved":"Filtro guardado","Filter:":"Filtro:","Filter...":"Filtrar...","Filters":"Filtros","Filters for Content View:":"Filtros de la vista de contenido:","Filters successfully removed.":"Los filtros se han eliminado correctamente.","Finished At":"Finalizado a las","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Para sistemas operativos tales como Red Hat Enterprise Linux 5 o CentOS 5 se recomienda usar sha1.","Force Promote?":"¿Forzar promover?","Force Puppet Environment":"Forzar entorno Puppet","GPG Key":"llave GPG","Greater Than":"Mayor que","Greater than version {{ rule.min_version }}":"Superior a la versión {{ rule.min_version }}","Group":"Grupo","Group Install":"Instalación de grupo","Group Remove":"Eliminación de grupo","Helper":"Agente","here":"aquí","Hide affected Activation Keys":"Ocultar llaves de activación afectadas","Hide affected Content Hosts":"Ocultar hosts de contenido afectados","History":"Historial","History for Content View:":"Historial para la vista de contenido:","Host %s has been deleted.":"Se ha eliminado el host %s.","Host %s has been unregistered.":"Se ha cancelado el registro del host %s.","Host Collection Management":"Administración de colecciones de hosts","Host Collection Membership":"Afiliación de colecciones de hosts","Host Collection removed.":"Se ha eliminado la colección de hosts.","Host Collection updated":"Colección de hosts actualizada","Host Collection:":"Colección de hosts:","Host Collections":"colecciones de hosts","Host Collections for:":"Colecciones de hosts de:","Host Count":"Cuenta de host","Host Group":"Grupo de hosts","Host Limit":"Límite de host","Hostname":"Nombre de host","Hosts":"Hosts","hourly":"Por hora","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"Cada hora a los {{ product.sync_plan.sync_date | date:'m' }} minutos y {{ product.sync_plan.sync_date | date:'s' }} segundos","HTTP Proxy":"Proxy HTTP","Id":"ID","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Si prefiere mover partes de estas teclas de activación a otras vistas de contenido o entornos del ciclo de vida, haga clic","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Si prefiere mover partes de estas teclas de activación a otras vistas de contenido o entornos del ciclo de vida, haga clic <a href=\"{{ activationKeyLink() }}\">aquí</a> para gestionarlas de forma individual.","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Si prefiere mover partes de estos hosts de contenido a otras vistas de contenido o entornos, haga clic <a href=\"{{ contentHostsLink() }}\">aquí</a> para gestionar estos hosts de contenido de forma masiva.","Image":"Imagen","Immediate":"Inmediato","Important":"Importante","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Para añadir una vista de contenido a una vista compuesta, primero debe publicar una versión inicial de la vista de contenido.","In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n or ask your admin for a certificate.":"Para explorar este repositorio, debe <a ng-href=\"/organizations/{{ organization }}/edit\">descargar el certificado</a>\n o solicitar un certificado a su administrador.","Include":"Incluir","Include all RPMs with no errata.":"Incluir todos los RPM sin erratas.","Inclusion Type":"Tipo de inclusión","Incremental update":"Actualización incremental","Incremental Update":"Actualización incremental","Install":"Instalación","Install Selected":"Instalar seleccionado","Install the pre-built bootstrap RPM:":"Instale el RPM pre-built bootstrap","Installable":"Instalable","Installable Errata":"Erratas instalables","Installable Updates":"Actualizaciones instalables","Installed":"Instalado","Installed On":"Instalado en","Installed Package":"Paquete instalado","Installed Packages":"Paquetes instalados","Installed Products":"Productos instalados","Interfaces":"Interfaces","Interval":"Intervalo","IPv4 Address":"Dirección IPv4","IPv6 Address":"Dirección IPv6","Issued":"Emitido","Issued On":"Emitido el","Katello Agent":"Agente Katello","Label":"Etiqueta","Last Checkin":"Última conexión","Last Published":"Última publicación","Last Puppet Report":"Último informe de Puppet","Last Sync":"Última sincronización","Last Updated On":"Última actualización","Latest (Currently %s)":"Última (actualmente, %s)","Latest (Currently no version)":"Última (actualmente, sin versión)","Latest Only":"Solo la última","Less Than":"Menor que","Less than version {{ rule.max_version }}":"Inferior a la versión {{ rule.max_version }}","Library":"Biblioteca","Library Repositories":"Repositorios de biblioteca","Library Repositories that contain this Deb.":"Repositorios de biblioteca que contienen este Deb.","Library Repositories that contain this File.":"Repositorios de biblioteca que contienen este archivo.","Library Repositories that contain this Puppet Module.":"Repositorios de biblioteca que contienen este módulo Puppet.","Library Synced Content":"Contenido de biblioteca sincronizado ","License":"Licencia","Lifecycle Environment":"Entorno del ciclo de vida","Lifecycle Environment Paths":"Rutas de entornos del ciclo de vida","Lifecycle Environments":"Entornos del ciclo de vida","Limit":"Límite","Limit Repository Sets to only those available in this Activation Key's Lifecycle Environment":"Limitar los conjuntos de repositorios únicamente a aquellos disponibles en este entorno de ciclo de vida de la clave de activación","Limit Repository Sets to only those available in this Host's Lifecycle Environment":"Limitar los conjuntos de repositorios únicamente a aquellos disponibles en el entorno de ciclo de vida del host","Limit to environment":"Limitar al entorno","Limit to Environment":"Limitar al entorno","Limit:":"Límite:","List":"Lista","List/Remove":"Mostrar/Eliminar","Loading Environment Paths...":"Cargando rutas de entornos...","Loading...":"Cargando...","Loading...\"":"Cargando...\"","Manage deb Packages for Repository:":"Administrar paquetes deb para repositorio:","Manage Errata":"Administrar erratas","Manage Files for Repository:":"Administrar archivos para el repositorio:","Manage OSTree Branches for Repository:":"Administrar etiquetas OSTree para repositorio:","Manage Packages":"Administrar paquetes","Manage Packages for Repository:":"Administrar paquetes para el repositorio:","Manage Puppet Modules for {{ repository.name }}":"Administrar módulos Puppet para {{ repository.name }}","Manage Puppet Modules for Repository:":"Administrar módulos Puppet para repositorio","Manage Repository Sets":"Administrar conjuntos de repositorios","Manage Subscriptions":"Administrar suscripciones","Manage Sync Plan":"Administrar plan de sincronización","Manifest Lists":"Listas de manifiestos","Manifest Type":"Tipo de manifiesto","Many Content View actions are disabled while a version task is in progress.":"Se desactivan varias vistas de contenido mientras hay una tarea de versión en curso.","Maximum Version":"Versión máxima","Minimum Version":"Versión mínima","Mirror on Sync":"Reflejar en la sincronización","Model":"Modelo","Moderate":"Moderado","Module %s removed from Content View.":"Se ha eliminado el módulo %s de la vista de contenido.","Module Stream":"Secuencia del módulo","Module Streams":"Secuencias del módulo","More Details":"Más información","N/A":"N/D","Name":"Nombre","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"Nombre del repositorio de la corriente de desarrollo principal que desea sincronizar. Por ejemplo: 'busybox' o 'fedora/ssh'.","Networking":"Red","Never":"Nunca","Never synced":"Nunca sincronizado","New Activation Key":"Nueva llave de activación","New Environment":"Nuevo Entorno","New Filter":"Nuevo filtro","New Filter for Content View:":"Nuevo filtro para la vista de contenido:","New Name:":"Nuevo nombre:","New Product":"Nuevo producto","New Repository":"Nuevo repositorio","New Sync Plan":"Nuevo plan de sincronización","New sync plan successfully created.":"El nuevo plan de sincronización se ha creado correctamente.","Next":"Siguiente","Next Sync":"Próxima sincronización","No":"No","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"No hay permisos de edición en algunas de las llaves de activación de ese entorno del ciclo de vida.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"No hay permisos de edición en algunos de los hosts de contenido de ese entorno del ciclo de vida.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"No hay permisos de promoción/eliminación en el entorno del ciclo de vida.","No activation keys are affected.":"No hay llaves de activación afectadas.","No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".":"No hay opciones de versión alternativa. Las versiones disponibles dependen de lo que está disponible en \"{{ host.content_facet_attributes.content_view.name }}\", la vista de contenido <a href=\"/content_views\">seleccionada</a> a la que se adjunta este host de contenido para el entorno de ciclo de vida <a href=\"/lifecycle_environments\">determinado</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".","No Content Hosts are affected.":"No hay hosts de contenido afectados.","No Content Hosts match this Erratum.":"No hay contenidos que coincidan con esta errata.","No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first.":"No hay vistas de contenido disponibles para agregar a {{ contentView.name }}. Primero, deben crearse vistas de contenido no compuestas.","No Content Views available, please select another environment.":"No hay vistas de contenido disponibles; seleccione otro entorno.","No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views.":"No hay vistas de contenido que pertenezcan a {{ contentView.name }}. Utilice la pestaña Añadir para añadir vistas de contenidos.","No Content Views contain this Deb":"Ninguna vista de contenido contiene este Deb","No Content Views contain this File":"No hay vistas de contenido que incluyan este archivo","No Content Views contain this Puppet Module":"No hay vistas de contenido que incluya este módulo Puppet","No content views exist for {{selected.environment.name}}":"No existen vistas de contenido para {{selected.environment.name}}","No Content Views match the search.":"No hay vistas de contenido que coincidan con la búsqueda.","No discovered repositories.":"No se hallaron repositorios.","No Errata to display":"No se visualizaron erratas","No Host Collections match your search.":"No hay colecciones de hosts que coincidan con su búsqueda.","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"No hay colecciones a mostrar, puede agregar colecciones de hosts después de seleccionar 'Colecciones de hosts' bajo 'Hosts' en el menú principal. ","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"No hay colecciones a mostrar, puede agregar Colecciones de hosts después de seleccionar la pestaña 'Añadir'.","No matching results.":"No hay resultados coincidentes.","No products are available to add to this Sync Plan.":"No hay productos disponibles para añadir a este plan de sincronización.","No products are have been added to this Sync Plan.":"No se agregaron productos a este plan de sincronización.","No puppet modules found":"No se hallaron módulos Puppet","No releases exist in the Library.":"No existen lanzamientos en la Biblioteca.","No Repositories contain this Branch.":"No hay repositorios que contengan esta rama.","No Repositories contain this Deb":"Ningún repositorio contiene este Deb","No Repositories contain this Erratum.":"No hay repositorios que contengan esta errata.","No Repositories contain this File":"No hay repositorios que contengan este archivo","No Repositories contain this Package.":"No hay repositorios que contengan este paquete.","No Repositories contain this Puppet Module":"No hay repositorios que contengan este módulo Puppet","No repository sets provided through subscriptions.":"No se proporcionaron conjuntos de repositorios a través de suscripciones.","No sync information available.":"No hay información de sincronización disponible.","No tasks exist for this resource.":"No existen tareas para este recurso.","No versions found for {{ $stateParams.moduleName }}":"No se hallaron versiones para {{ $stateParams.moduleName }}","None":"Ninguno","Not installed":"No instalado","Not started":"No iniciado","Not Synced":"No sincronizado","Not yet published":"Aún no se ha publicado","Number of CPUs":"Número de CPU","Number of Repositories":"Número de repositorios","On Demand":"A pedido","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"Una o más de las erratas seleccionadas no se pueden instalar por medio de las versiones de Vista de contenido publicado que se ejecutan en los hosts seleccionados. Se crearán las nuevas Versiones de vista de contenido (especificadas a continuación), lo que permitirá que esta errata se pueda instalar en el entorno del host. Esta nueva versión reemplazará la versión actual en el entorno del ciclo de vida del host. Para instalar estas erratas de inmediato en los hosts luego de publicar, marque la casilla que se encuentra debajo.","One or more RPMs are not showing up in the local repository even though they exist in the upstream repository.":"Uno o más de los RPM no aparecen en el repositorio local, aun cuando existan en el repositorio upstream.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"Mostrar solo los hosts de contenido donde la errata se puede instalar actualmente en el entorno del ciclo de vida del host","Only show Errata that are Applicable to one or more Content Hosts":"Mostrar únicamente erratas aplicables a uno o más hosts de contenido","Only show Errata that are Installable on one or more Content Hosts":"Mostrar únicamente erratas que puedan instalarse en uno o más hosts de contenido","Only show Packages that are Applicable to one or more Content Hosts":"Mostrar únicamente paquetes que sean aplicables a uno o más hosts de contenido","Only show Packages that are Upgradable on one or more Content Hosts":"Mostrar únicamente paquetes que puedan actualizarse en uno o más hosts de contenido","Only show Subscriptions for products not already covered by a Subscription":"Mostrar únicamente suscripciones de productos que no estén cubiertos por una suscripción","Only show Subscriptions which can be applied to products installed on this Host":"Mostrar únicamente suscripciones que puedan aplicarse a los productos instalados en este host","Only show Subscriptions which can be attached to this Host":"Mostrar únicamente suscripciones que puedan adjuntarse a este host","Only the Applications with a Helper can be restarted.":"Solo pueden reiniciarse las aplicaciones con un Ayudante.","Operating System":"Sistema operativo","Optimized Sync":"Sincronización optimizada","Organization":"Organización","Original Sync Date":"Fecha de la sincronización original","OS":"SO","OSTree Branch metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Se inició la generación de metadatos OsTree Branch en segundo plano. Haga clic\n <a ng-href=\"{{ taskUrl() }}\">aquí</a> para controlar el avance.","OSTree Branch:":"OSTree Branch:","OSTree Branches":"Etiquetas OSTree","OSTree Content":"Contenido OSTree","OSTree Repositories":"Repositorios OSTree","OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>":"Repositorios OSTree <div>{{ library.counts.ostree_repositories || 0 }}</div>","Override to Disabled":"Anular para desactivar","Override to Enabled":"Anular para activar","Package":"Paquete","Package Actions":"Acciones de paquete","Package Filter:":"Filtro de paquete:","Package Group":"Grupo de paquetes","Package Group Filter:":"Filtro de grupo de paquetes:","Package Group successfully added.":"El grupo de paquetes se ha añadido correctamente.","Package Group successfully removed.":"El grupo de paquetes se ha eliminado correctamente.","Package Groups":"Grupos de paquetes","Package Groups for Repository:":"Grupos de paquetes para el repositorio:","Package Information":"Información del paquete","Package Install":"Instalación de paquetes","Package Installation, Removal, and Update":"Instalación, eliminación y actualización de paquetes","Package Remove":"Retiro de paquetes","Package successfully added.":"El paquete se ha añadido correctamente.","Package successfully removed.":"El paquete se ha eliminado correctamente.","Package successfully updated.":"El paquete se ha actualizado correctamente.","Package Update":"Actualización de paquetes","Package Updates":"Actualizaciones de paquetes","Package:":"Paquete:","Package/Group Name":"Nombre del grupo/paquete","Packages":"Paquetes","Packages <div>{{ library.counts.packages || 0 }}</div>":"Paquetes <div>{{ library.counts.packages || 0 }}</div>","Packages are automatically Applicable if they are Upgradable":"Los paquetes son de aplicación automática en caso de ser actualizables","Packages for:":"Paquetes para:","Parameters":"Parámetros","Part of a manifest list":"Parte de una lista de manifiestos","Password":"Contraseña","Password of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Contraseña del usuario del repositorio upstream para la autenticación. Dejar en blanco si el repositorio no requiere de una autenticación.","Paste contents of Content Credential":"Pegar contenidos de la credencial de contenidos","Path":"Trayecto","Perform":"Realizar","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"Seleccione un entorno del ciclo de vida y una vista de contenido a los que mover las llaves de activación afectadas:","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"Seleccione un entorno del ciclo de vida y una vista de contenido a los que mover estos hosts de contenido:","Please select a Lifecycle Environment.":"Seleccione un entorno del ciclo de vida.","Please select an environment.":"Seleccione un entorno.","Please select one from the list below and you will be redirected.":"Por favor, seleccione uno de la lista de abajo y será reenviado.","Plus %y more errors":"Además de %y errores más","Plus 1 more error":"Además de 1 error más","Product":"Producto","Product Count":"Recuento de productos","Product Enhancement Advisory":"Recomendación de mejoras de productos","Product information for:":"Información de producto para:","Product Management for Sync Plan:":"Administración de productos para el plan de sincronización:","Product Name":"Nombre de producto","Product Options":"Opciones de productos","Product Saved":"Producto guardado","Product syncs has been initiated in the background. Click %s to monitor the progress.":"Se inició la sincronización de productos en segundo plano. Haga clic en %s para controlar el progreso.","Products":"Productos","Products <div>{{ library.counts.products || 0 }}</div>":"Productos <div>{{ library.counts.products || 0 }}</div>","Products for":"Productos para","Products not covered":"Productos no cubiertos","Project Page":"Página de proyecto","Promote":"Promover","Promote Content View:":"Promover vista de contenido:","Promote Version":"Promover versión","Promote Version {{ version.version }}":"Promover versión {{ version.version }}","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"¿Promover la versión a {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"Promovida a %s","Promoting to %count environments.":"Promovida a %count entornos.","Promoting to 1 environment.":"Se está promoviendo a 1 entorno.","Promotion History":"Historial de promociones","Provides":"Proporciona","Provisioning Details":"Detalles de aprovisionamiento","Provisioning Host Details":"Detalles de host de aprovisionamiento","Publish Content View:":"Publicar vista de contenido:","Publish New Version":"Publicar nueva versión","Publish via HTTP":"Publicar mediante HTTP","Publish via HTTPS":"Publicar mediante HTTPS","Published":"Publicado","Published At":"Publicada a las","Published new version":"Nueva versión publicada","Published Repository Information":"Se ha publicado información de repositorio","Publishing and promoting to %count environments.":"Publicando y promoviendo a %count entornos.","Publishing and promoting to 1 environment.":"Publicando y promoviendo a 1 entorno.","Puppet Environment":"Entorno de Puppet","Puppet module added to Content View":"Se ha añadido el módulo Puppet a la vista de contenido","Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Se ha iniciado la generación de metadatos del módulo Puppet en segundo plano.\n Haga clic<a ng-href=\"{{ taskUrl() }}\">aquí</a> para controlar el progreso.","Puppet Module:":"Módulo Puppet:","Puppet Modules":"Módulos Puppet","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Módulos Puppet <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"Módulos Puppet para la vista de contenido:","Quantity":"Cantidad","RAM (GB)":"RAM (GB)","Range":"Rango","Reboot Suggested":"Se sugiere un reinicio","Reboot Suggested?":"¿Se sugiere reiniciar?","Recalculate\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>":"Recalcular\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>","Red Hat Repositories page":"Página de repositorios Red Hat","Red Hat Repositories page.":"Página de repositorios Red Hat","Refresh Table":"Actualizar tabla","Regenerate Repository Metadata":"Regenerar metadatos del repositorio","Register a Content Host":"Registrar un host de contenido","Register Content Host":"Registrar host de contenido","Registered":"Registrado","Registered By":"Registrado por","Registered Through":"Registrado a través de","Registry to Discover":"Registro para descubrir","Registry URL":"URL de registro","Release":"Lanzamiento","Release Version":"Versión de lanzamiento","Release Version:":"Versión de lanzamiento:","Releases":"Lanzamientos","Remote execution plugin is required to be able to run any helpers.":"Es necesario eliminar el complemento de ejecución para lanzar los asistentes.","Removal of selected repositories initiated successfully.":"La eliminación de los repositorios seleccionados se inició correctamente.","Remove":"Borrar","Remove {{ contentView.name }}":"Eliminar {{ contentView.name }}","Remove Activation Key \"{{ activationKey.name }}\"?":"¿Está seguro de que desea retirar la llave de activación \"{{ activationKey.name }}\"?","Remove Content Credential":"Credencial de contenidos remota","Remove Content Credential {{ contentCredential.name }}":"Eliminar credencial de contenidos {{ contentCredential.name }}","Remove Content View":"Eliminar vista de contenido","Remove Content Views":"Eliminar vistas de contenido","Remove Environment":"Eliminar entorno","Remove Errata":"Eliminar erratas","Remove Files":"Eliminar archivos","Remove From":"Eliminar desde","Remove Host Collection \"{{ hostCollection.name }}\"?":"¿Retirar colección de hosts \"{{ hostCollection.name }}\"?","Remove Module":"Eliminar módulo","Remove Package Group":"Eliminar grupo de paquetes","Remove Packages":"Eliminar paquetes","Remove Product":"Retirar producto","Remove Product \"{{ product.name }}\"?":"¿Retirar el producto \"{{ product.name }}\"?","Remove Puppet Modules":"Retirar módulos Puppet.","Remove Repositories":"Eliminar repositorios","Remove Repository":"Retirar repositorio","Remove Repository \"{{ repository.name }}\"?":"¿Retirar el repositorio \"{{ repository.name }}\"?","Remove Rule":"Eliminar regla","Remove Selected":"Retirar seleccionado","Remove Successful.":"La eliminación se ha realizado correctamente.","Remove Sync Plan":"Retirar plan de sincronización","Remove Sync Plan \"{{ syncPlan.name }}\"?":"¿Retirar el plan de sincronización \"{{ syncPlan.name }}\"?","Remove Tags":"Eliminar etiquetas","Remove Version":"Eliminar versión","Remove Version Confirmation":"Eliminar confirmación de versión","Removed %x host collections from activation key \"%y\".":"Se han eliminado %x colecciones de hosts de la llave de activación \"%y\".","Removed %x host collections from content host \"%y\".":"Se han eliminado %x colecciones de hosts del host de contenido \"%y\".","Removed %x products from sync plan \"%y\".":"Se han eliminado %x productos del plan de sincronización \"%y\".","Removing Repositories":"Eliminando repositorios","Repo Discovery":"Detección de repositorio","Repositories":"Repositorios","Repositories containing branch {{ branch.name }}":"Repositorios que contengan la rama {{ branch.name }}","Repositories containing Errata {{ errata.errata_id }}":"Repositorios que contengan las erratas {{ errata.errata_id }}","Repositories containing package {{ package.nvrea }}":"Repositorios que contienen el paquete {{ package.nvrea }}","Repositories for":"Repositorios para","Repositories for Content View:":"Repositorios para la vista de contenido:","Repositories for Deb:":"Repositorios para Deb:","Repositories for Errata:":"Repositorios para erratas:","Repositories for File:":"Repositorios para el archivo:","Repositories for Filter:":"Repositorios para el filtro:","Repositories for Package:":"Repositorios para paquete:","Repositories for Product:":"Repositorios para el producto:","Repositories for Puppet Module:":"Repositorios para módulo Puppet:","Repositories to Create":"Repositorios para crear","Repository":"Repositorio","Repository \"%s\" successfully deleted":"Repositorio \"%s\" ha sido borrado correctamente","Repository %s successfully created.":"El repositorio %s se ha creado correctamente.","Repository Count":"Recuento de repositorios","Repository created":"Repositorio creado","Repository Discovery":"Descubrimiento de repositorio","Repository Label":"Etiqueta del repositorio","Repository Name":"Nombre de repositorio","Repository Options":"Opciones de repositorio","Repository Path":"Ruta de repositorio","Repository Saved.":"Se ha guardado el repositorio.","Repository Selection":"Selección de repositorio","Repository Sets":"Conjuntos de repositorios","Repository Sets settings saved successfully.":"La configuración de los conjuntos de repositorios se guardó correctamente.","Repository Type":"Tipo de repositorio","Repository URL":"URL del repositorio","Repository:":"Repositorio:","Republish Repository Metadata":"Volver a publicar los metadatos del repositorio","Requires":"Requiere","Reset to Default":"Restablecer a los valores predeterminados","Restart":"Reiniciar","Restart Selected":"Reinicio seleccionado","Restart Services on Content Host \"{{host.name}}\"?":"¿Reiniciar servicios en el host de contenido \"{{host.name}}\"?","Restrict to architecture":"Restringir a arquitectura","Restrict to Architecture":"Restringir a arquitectura","Result":"Resultado:","Role":"Rol","RPM":"RPM","RPM Name":"Nombre de RPM","rpm Package Groups":"Grupos de paquetes rpm","rpm Packages":"Paquetes rpm","RPMs":"RPM","Run Auto-Attach":"Ejecutar Auto-adjuntar","Run Repository Creation\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>":"Ejecutar creación del repositorio\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>","Run Sync Plan":"Ejecutar plan de sincronización","Save":"Guardar","Save Successful.":"Se ha guardado correctamente.","Schema Version":"Versión de esquema","Schema Version 1":"Versión de esquema 1","Schema Version 2":"Versión de esquema 2","Security":"Seguridad","Security Advisory":"Recomendación de seguridad ","Select":"Seleccionar","Select a Content Source:":"Seleccione una fuente de contenido: ","Select A New Puppet Module To Add":"Seleccionar el nuevo módulo Puppet a añadir","Select a Version":"Seleccionar una versión","Select Action":"Seleccionar una acción","Select an Available Version of {{ $stateParams.moduleName }}":"Seleccionar una versión disponible de {{ $stateParams.moduleName }}","Select an Organization":"Seleccionar una organización","Select Content View":"Seleccionar vista de contenido","Select Environment":"Seleccionar entorno","Select new version":"Seleccionar nueva versión","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"Seleccione los entornos del ciclo de vida de los que desea eliminar la versión {{ version.version }}:","Select Version":"Seleccionar versión","Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\" or \"Background\" download policies will be synced.":"El hecho de seleccionar \"Completar sincronización\" hará que solo los repositorios Yum del producto seleccionado se sincronicen. Seleccionar \"Validar contenido\" hará que solo se sincronicen los repositorios Yum que utilizan políticas de descarga \"Inmediata\" o \"En segundo plano\".","Selecting this option will result in contents that are no longer part of the upstream repository being removed during synchronization.":"Si selecciona esta opción, el contenido que ya no forma parte del repositorio de desarrollo principal se eliminará durante la sincronización.","Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification.":"El hecho de seleccionar esta opción ocasionará que Katello verifique que los certificados SSL de la URL de upstream estén firmados por un CA confiable. Quite esta marca si no quiere que se realice esta verificación.","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"Si se selecciona esta opción, la versión se borrará completamente y dejará de estar disponible para su promoción. La versión se debe eliminar de todos los entornos del ciclo de vida para seleccionar esta opción.","Serve via HTTP":"Servir a través de HTTP","Service Level":"Nivel de servicio","Service Level (SLA)":"Nivel de servicio %s (SLA)","Set Release Version":"Definir versión de lanzamiento","Severity":"Gravedad","Show affected Activation Keys":"Mostrar llaves de activación afectadas","Show affected Content Hosts":"Mostrar host de contenido afectados","Show All":"Mostrar todo","Show all Repository Sets in Organization":"Mostrar todos los conjuntos de repositorios en la organización","Size":"Tamaño","Smart proxy currently syncing to your locations...":"Proxy inteligente sincronizándose en este momento con sus ubicaciones...","Smart proxy is synchronized":"Proxy inteligente está sincronizado","Sockets":"Sockets","Solution":"Solución","Some of the Errata shown below may not be installable as they are not in this Content Host's\n Content View and Lifecycle Environment. In order to apply such Errata an Incremental Update is required.":"Es posible que algunas de las erratas que se muestran abajo no puedan instalarse al no estar incluidas en la vista de contenido\n y en el entorno de ciclo de vida de este host de contenido. Es preciso realizar una Actualización incremental para poder aplicar esta errata.","Something went wrong when retrieving the resource.":"Algo ha fallado al recuperar el recurso.","Something went wrong when saving the resource.":"Algo pasó al guardar el recurso.","Source":"Fuente","Source RPM":"RPM de origen","Source RPMs":"RPM de fuente","SSL CA Cert":"Certificado CA de SSL","SSL Certificate":"Certificado SSL","SSL Client Cert":"Certificado de cliente de SSL","SSL Client Key":"Clave de cliente SSL","Standard sync, optimized for speed by bypassing any unneeded steps.":"Sincronización estándar, optimizada para la velocidad al omitir los pasos innecesarios.","Start Date":"Fecha de inicio","Start Time":"Hora de inicio","Started At":"Iniciado el","Starting":"Iniciando","Starts":"Inicia","State":"Estado","Status":"Estatus","Stream":"Secuencia","Subscription Details":"Información de suscripción","Subscription Management":"Administración de suscripción","Subscription Status":"Estatus de suscripción","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"registro de subscription-manager --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Suscripciones","Subscriptions for Activation Key:":"Suscripciones para la llave de activación:","Subscriptions for Content Host:":"Suscripciones para el host de contenido:","Subscriptions for:":"Suscripciones para:","Success!":"¡Exito!","Successfully added %s subscriptions.":"%s suscripciones se han añadido correctamente.","Successfully deleted %cv version %ver.":"%cv version %ver se ha borrado correctamente.","Successfully initiated deletion of %cv version %ver.":"El borrado de %cv version %ver se ha iniciado correctamente.","Successfully initiated promotion of %cv version %ver to %env.":"La promoción de %cv version %ver a %env se ha iniciado correctamente.","Successfully initiated removal of %cv version %ver.":"La eliminación de %cv version %ver se ha iniciado correctamente.","Successfully promoted %cv version %ver to %env":"%cv version %ver se ha promovido a %env correctamente","Successfully published %cv version %ver and promoted to Library":"%cv version %ver se ha publicado y se ha promovido a la biblioteca correctamente","Successfully removed %cv version %ver from environments: %env":"%cv version %ver se ha eliminado correctamente de los entornos: %env","Successfully removed %s items.":"Se retiraron %s elementos.","Successfully removed %s subscriptions.":"%s suscripciones se han eliminado correctamente.","Successfully removed 1 item.":"Se retiró 1 ítem.","Successfully scheduled an update of all packages":"Se programó correctamente una actualización de todos los paquetes","Successfully scheduled package installation":"Se programó correctamente la instalación del paquete","Successfully scheduled package removal":"Se programó correctamente la eliminación del paquete","Successfully scheduled package update":"Se programó correctamente la actualización del paquete","Successfully updated subscriptions.":"Las suscripciones se han actualizado correctamente.","Successfully uploaded content:":"Se cargó correctamente el contenido:","Summary":"Resumen","Support Level":"Nivel de soporte","Sync":"Sincronización","Sync Enabled":"Se habilitó sincronización ","Sync even if the upstream metadata appears to have no change. This option is only relevant for yum repositories and will take longer than an optimized sync. Choose this option if:":"Sincronizar, aun cuando, aparentemente, no se hayan producido cambios en los metadatos upstream. Esta opción es únicamente relevante para repositorios yum y demorará más que una sincronización optimizada. Elija esta opción si:","Sync Interval":"Intervalo de sincronización","Sync Now":"Sincronizar ahora","Sync Plan":"Plan de sincronización","Sync Plan %s has been deleted.":"El plan de sincronización %s se ha borrado.","Sync Plan created and assigned to product.":"Plan de sincronización creado y asignado al producto.","Sync Plan Saved":"Plan de sincronización guardado","Sync Plan:":"Plan de sincronización:","Sync Plans":"Planes de sincronización","Sync Selected":"Sincronización seleccionada","Sync Settings":"Configuración de la sincronización","Sync State":"Estado de la sincronización","Sync Status":"Estatus de sincronización","Synced manually, no interval set.":"Se ha sincronizado de forma manual. No se ha establecido un intervalo.","Synchronization is about to start...":"La sincronización está por comenzar...","Synchronization is being cancelled...":"La sincronización se está cancelando...","System Purpose":"Propósito del sistema","Tags":"Etiquetas","Task Details":"Detalles de tareas","Tasks":"Tareas","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"Las teclas de activación que se muestran a continuación utilizan actualmente esta versión de vista de contenido. Antes de borrar la versión, debe mover estas teclas de activación a un entorno del ciclo de vida donde no se esté utilizando esta versión.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"El archivo de esta versión se borrará. Esta versión no estará disponible una vez que finalice el borrado.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"El archivo de esta versión no se borrará. Esta versión aún estará disponible para ser promovida a un entorno del ciclo de vida.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Los hosts de contenido que se muestran a continuación utilizan actualmente esta versión de vista de contenido. Antes de eliminar la versión, debe mover estos hosts de contenido a un entorno donde no se esté utilizando esta versión.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"La vista de contenido o entorno de ciclo de vida debe ser actualizada para que la errata esté disponible para estos hosts. ","The following actions can be performed on content hosts in this host collection:":"Las siguientes acciones se pueden realizar en hosts de contenido en esta colección de hosts:","The host has not reported any applicable packages for upgrade.":"El host no ha informado ningún paquete aplicable para actualizar.","The host has not reported any installed packages, registering with subscription-manager should cause these to be reported.":"El host no ha informado ningún paquete instalado, el registro con subscription-manager debería informar estos paquetes.","The page you are attempting to access requires selecting a specific organization.":"Para acceder a la página debe seleccionar una organización específica.","The selected environment contains no Content Views, please select a different environment.":"El entorno seleccionado no contiene vistas de contenido. Seleccione otro entorno.","The time the sync should happen in your current time zone.":"La hora en que debería tener lugar la sincronización en su zona horaria actual.","There are {{ errataCount }} total Errata in this organization but none match the above filters.":"Hay {{ errataCount }} erratas totales en esta organización pero ninguna coincide con los filtros anteriores.","There are {{ packageCount }} total Packages in this organization but none match the above filters.":"Hay un total de {{ packageCount }} paquetes en esta organización, pero ninguno coincide con los filtros de arriba.","There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"En este momento, no hay repositorios Docker asociados con esta vista de contenido. Puede agregar algunos. Para ello, haga clic en la pestaña \"Añadir\" arriba.","There are currently no Docker Repositories to add to this Content View,":"En este momento, no hay repositorios Docker para añadir a esta vista de contenido.","There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"En este momento, no hay repositorios de archivos asociados con esta vista de contenido. Puede añadir algunos. Para ello, haga clic en la pestaña \"Añadir\" arriba.","There are currently no File Repositories to add to this Content View,":"En este momento, no hay repositorios de archivos para añadir a esta vista de contenido.","There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"En este momento, no hay repositorios OSTree asociados con esta vista de contenido. Puede añadir algunos. Para ello, haga clic en la pestaña \"Añadir\" arriba.","There are currently no OSTree Repositories to add to this Content View,":"En este momento, no hay repositorios OSTree para añadir a esta vista de contenido.","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Actualmente no hay repositorios asociados a esta vista de contenido. Puede añadir alguno haciendo clic en la pestaña anterior \"Añadir\".","There are currently no repositories to add to this Content View,":"Actualmente no hay ningún repositorio que añadir a esta vista de contenido,","There are no Content Views in this Environment.":"No hay vistas de contenido en este entorno.","There are no Content Views that match the criteria.":"No hay vistas de contenido que coincidan con los criterios.","There are no Errata associated with this Content Host to display.":"No hay erratas asociadas con este Host de contenido para mostrar.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"No hay erratas en esta organización. Cree uno más productos con erratas para ver erratas en esta página.","There are no Errata to display.":"No hay erratas a mostrar.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"No hay colecciones de hosts disponibles. Cree una nueva colección de hosts después de seleccionar 'Colecciones de hosts' bajo 'Hosts' en el menú. ","There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page.":"No hay paquetes en esta organización. Cree uno o más productos con paquetes para ver paquetes en esta página.","There are no Sync Plans available. You can create new Sync Plans after selecting 'Sync Plans' under 'Hosts' in main menu.":"No hay planes de sincronización disponibles. Puede crear nuevos planes de sincronización tras seleccionar \"Planes de sincronización\" en la opción \"Hosts\", en el menú principal.","There are no Traces to display.":"No hay rastros para mostrar.","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"Actualmente hay una tarea de actualización incremental en progreso. Esta actualización debe terminar antes de aplicar las actualizaciones existentes.","There is currently no history associated with this Content View.":"En este momento, no hay un historial asociado con esta vista de contenido.","This action will affect only those Content Hosts that require a change.\n If the Content Host does not have the selected Subscription no action will take place.":"Esta acción afectará únicamente los hosts de contenido que requieran de un cambio.\n Si el host de contenido no posee la suscripción seleccionada, no se iniciarán acciones.","This activation key is not associated with any content hosts.":"Esta llave de activación no está asociada a ningún host de contenido.","This activation key may be used during system registration. For example:":"Esta llave de activación se puede utilizar durante el registro de sistema. Por ejemplo:","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Este contenido no tiene versiones, primero cree su versión de vista de contenido con el botón de la derecha \"Publicar nueva versión\".","This filter applies only to a subset of repositories in the content view.":"Este filtro solo se aplica a un subconjunto de repositorios en la vista de contenido.","This filter applies to all repositories in the content view (current and future).":"Este filtro se aplica a todos los repositorios en la vista de contenido (actuales y futuros).","This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n Change the setting \"Delete Host upon Unregister\" to false on the <a href=\"/settings\">settings page</a> to prevent this.":"Esta operación también puede eliminar los recursos administrados vinculados al host, como máquinas virtuales y registros DNS.\n Para evitarlo, cambie el parámetro \"Eliminar host al cancelar registro\" para que el valor sea falso en <a href=\"/settings\">settings page</a>.","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Esta versión no se puede borrar de algunos de los entornos del ciclo de vida debido a una de las siguientes razones.","This Version is not associated with any Lifecycle Environments.":"Esta versión no está asociada a ningún entorno del ciclo de vida.","This version will be removed from:":"Se eliminará esta versión de:","Title":"Título","to manage them individually.":"para administrarlas de forma individual.","To register a content host to this server, follow these steps.":"Para registrar un host de contenido para este servidor, siga los siguientes pasos:","Toggle Dropdown":"Alternar menú desplegable","Topic":"Tema:","Traces":"Rastros","Traces for:":"Rastros para:","Type":"Tipo","Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}":"Tipo: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}","Unable to determine version":"No se puede determinar la versión.","Unauthenticated Pull":"Extracción no autenticada","Unknown":"Desconocido","Unlimited Content Hosts:":"Hosts de contenido ilimitados:","Unlimited Hosts":"Hosts ilimitados","Unregister Host":"Cancelar el registro del host","Unregister Host \"{{host.name}}\"?":"¿Cancelar el registro del host \"{{host.name}}\"?","Unregister Options:":"Opciones para cancelar el registro:","Unregister the host as a subscription consumer. Provisioning and configuration information is preserved.":"Cancelar el registro del host como un usuario de suscripción. Se conserva la información de aprovisionamiento y configuración.","Unsupported Type!":"Tipo no compatible.","Update":"Actualizar","Update All Packages":"Actualizar todos los paquetes","Update Packages":"Actualizar paquetes","Update Repositories":"Actualizar repositorios","Update Sync Plan":"Actualizar plan de sincronización","Updated":"Actualizado","Updated errata filter -":"Filtro de erratas actualizado -","Updated On":"Actualizado el","Upgradable":"Actualizable","Upgradable For":"Actualizable para","Upgradable Package":"Paquete actualizable","Upgrade Selected":"Actualización seleccionada","Upload":"Cargar","Upload Content Credential file":"Cargar archivo de credencial de contenidos","Upload File":"Cargar archivo","Upload Package":"Cargar paquete","Upload Puppet Module":"Cargar módulo puppet","Uploading...":"Cargando...","Upstream Image Name":"Nombre de la imagen upstream","Upstream Password":"Contraseña upstream","Upstream Repository Name":"Nombre de repositorio principal","Upstream Sync Policy":"Política de sincronización upstream","Upstream URL":"URL upstream","Upstream Username":"Nombre de usuario upstream","Url":"URL","URL of the registry you want to sync. Example: https://registry-1.docker.io/":"URL del registro que desea sincronizar. Por ejemplo: https://registry-1.docker.io/","URL to Discover":"URL para descubrir","Usage Type":"Tipo de uso","Used as":"Utilizado como","User":"Usuario","Username":"Nombre de usuario","Username of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Nombre de usuario del usuario del repositorio upstream para la autenticación. Dejar en blanco en caso de que el repositorio no requiera de autenticación.","Validate Content Sync":"Validar sincronización del contenido","Variant":"Variante","Verify SSL":"Verificar SSL ","Version":"Versión","Version {{ rule.version }}":"Versión {{ rule.version }}","Version Deletion":"Borrado de versión","Version Details":"Detalles de la versión","Version:":"Versión:","Versions":"Versiones","Versions for Content View:":"Versiones de la vista de contenido:","Versions for Puppet Module:":"Versiones del módulo puppet:","via Katello agent":"por medio del agente Katello","via Katello Agent":"por medio del agente Katello","via remote execution":"por medio de la ejecución remota","via remote execution - customize first":"por medio de la ejecución remota - primero se debe personalizar","Virtual Guest":"Huésped virtual","Virtual Guests":"Huéspedes virtuales","Virtual Host":"Host virtual","weekly":"Semanal","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Semanalmente el {{ product.sync_plan.sync_date | date:'EEEE' }} a las {{ product.sync_plan.sync_date | date:'mediumTime' }} (Hora del servidor)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Cuando auto-vincular está inhabilitado,los sistemas de registro se vincularán a todas las suscripciones asociadas. ","When validating content, repositories using the \"On Demand\" download policy will download all packages within the repository.":"Al validar el contenido, los repositorios que utilicen la política de descarga \"A pedido\" descargarán todos los paquetes del repositorio.","Working":"En funcionamiento","Yes":"Sí","You cannot remove these repositories because they belong to a Red Hat product.":"No se pueden eliminar estos repositorios porque pertenecen a un producto de Red Hat.","You cannot remove these repositories because you do not have permission.":"No se pueden eliminar estos repositorios porque no tiene permiso.","You cannot remove this product because it is a Red Hat product.":"No se puede eliminar este producto porque es un producto de Red Hat.","You cannot remove this product because it was published to a content view.":"No se puede eliminar este producto porque se ha publicado en una vista de contenido.","You cannot remove this product because you do not have permission.":"No se puede eliminar este producto porque no tiene permiso.","You cannot remove this repository because it is a Red Hat repository.":"No se puede eliminar este repositorio porque es un repositorio Red Hat.","You cannot remove this repository because it was published to a content view.":"No se puede eliminar este repositorio porque se ha publicado en una vista de contenido.","You cannot remove this repository because you do not have permission.":"No se puede eliminar este repositorio porque no tiene permiso.","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"Actualmente no tiene llaves de activación, agregue llaves de activación con el botón de la derecha.","You currently don't have any Content Credential, you can add Content Credentials using the button on the right.":"Actualmente no tiene ninguna credencial de contenidos. Puede añadir credenciales de contenidos con el botón a la derecha.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"Actualmente no tiene ningún host de contenido, para crear un host de contenido, seleccione Host de contenido desde el menú principal y luego haga clic en el botón de la derecha.","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"Actualmente no tiene hosts de contenido. Para registrar un host, haga clic en el botón a la derecha y siga las instrucciones. ","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"Actualmente no tiene vistas de contenido. Para agregar una vista de contenido use el botón de la derecha.","You currently don't have any Debs.":"Actualmente no tiene ningún Deb.","You currently don't have any Files.":"Actualmente no tiene archivos.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"Actualmente no dispone de filtros en esta vista de contenido. Puede añadir un nuevo filtro mediante el botón que se encuentra a la derecha.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"Actualmente no tiene colecciones de hosts, agregue colecciones de hosts con el botón de la derecha.","You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.":"Actualmente no tiene hosts en este grupo de hosts, puede agregar hosts de contenido después de seleccionar la pestaña 'Añadir'.","You currently don't have any OSTree Branches.":"Actualmente no tiene OSTree Branches.","You currently don't have any Products associated with this Content Credential.":"Actualmente no tiene ningún producto asociado con esta credencial de contenidos.","You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu":"Actualmente no tiene productos a los que suscribirse, puede agregar productos después de seleccionar 'Productos' en 'Contenido' en el menú principal","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"Actualmente no tiene productos <span bst-feature-flag=\"custom_products\">, agregue productos con el botón a la derecha</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"Actualmente no tiene módulos Puppet incluidos en esta vista de contenido, agregue módulos Puppet con el botón de la derecha.","You currently don't have any Puppet Modules.":"Actualmente no tiene ningún Módulo Puppet.","You currently don't have any Repositories associated with this Content Credential.":"Actualmente no tiene ningún repositorio asociado con esta credencial de contenidos.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"Actualmente no tiene repositorios incluidos en este producto, agregue repositorios con el botón de la derecha.","You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab.":"Actualmente no tiene suscripciones asociadas a esta llave de activación, puede agregar suscripciones después de seleccionar la pestaña 'Añadir'.","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"Actualmente no tiene ningún plan de sincronización. Para agregar un plan de sincronización use el botón a la derecha.","You do not have any Installed Products":"No tiene productos instalados","You must select a content view in order to save your environment.":"Seleccione una vista de contenido para guardar un entorno ","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"Debe seleccionar una nueva vista de contenido antes de que el cambio de entorno pueda ser guardado. Utilice el botón Cancelar en la selección de vista de contenido para revertir la selección de entorno.","You must select at least one Content Host in order to apply Errata.":"Debe seleccionar un host de contenido para aplicar erratas. ","You must select at least one Errata to apply.":"Debe seleccionar al menos una errata para aplicar.","You must select at least one repository.":"Debe seleccionar al menos un repositorio.","Your search returned zero Activation Keys.":"La búsqueda no arrojó claves de activación.","Your search returned zero Content Credential.":"La búsqueda no arrojó credenciales de contenidos.","Your search returned zero Content Hosts.":"La búsqueda no arrojó hosts de contenido.","Your search returned zero Content View.":"La búsqueda no arrojó vista de contenido.","Your search returned zero Content Views":"La búsqueda no arrojó vistas de contenido","Your search returned zero Content Views.":"La búsqueda no arrojó vistas de contenido.","Your search returned zero Debs.":"La búsqueda no arrojó ningún Deb.","Your search returned zero Errata.":"La búsqueda no arrojó errata.","Your search returned zero Erratum.":"La búsqueda no arrojó erratas.","Your search returned zero Files.":"La búsqueda no arrojó archivos.","Your search returned zero Filters.":"La búsqueda no arrojó filtros.","Your search returned zero Host Collections.":"La búsqueda no arrojó colecciones de host.","Your search returned zero Hosts.":"La búsqueda no arrojó hosts.","Your search returned zero Lifecycle Environments.":"La búsqueda no arrojó entornos de ciclo de vida.","Your search returned zero Packages.":"La búsqueda no arrojó paquetes.","Your search returned zero Products.":"La búsqueda no arrojó productos.","Your search returned zero Puppet Modules.":"La búsqueda no arrojó módulos Puppet.","Your search returned zero Repositories":"La búsqueda no arrojó repositorios","Your search returned zero Repositories.":"La búsqueda no arrojó repositorios.","Your search returned zero repository sets.":"La búsqueda no arrojó conjuntos de repositorios.","Your search returned zero Repository Sets.":"La búsqueda no arrojó conjuntos de repositorios.","Your search returned zero results.":"La búsqueda no arrojó resultados.","Your search returned zero Subscriptions.":"La búsqueda no arrojó suscripciones.","Your search returned zero Sync Plans.":"La búsqueda no arrojó planes de sincronización.","Your search returned zero Traces.":"La búsqueda no arrojó rastros.","Your search returned zero versions for {{ $stateParams.moduleName }}":"La búsqueda no arrojó versiones de {{ $stateParams.moduleName }}","Yum Content":"Contenido Yum","Yum Metadata Checksum":"Suma de verificación de metadatos Yum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La generación de metadatos Yum se ha iniciado en segundo plano. Haga clic <a href=\"{{ taskUrl() }}\">aquí</a> para supervisar el progreso.","Yum Repositories":"Repositorios Yum","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Repositorios Yum <div>{{ library.counts.yum_repositories || 0 }}</div>"});
5
+ gettextCatalog.setStrings('fr', {"- Date and Type":"- Date et type","-- select an interval --":"-- sélectionnez un intervalle --","(Not all Activation Keys editable )":"(toutes les clés d'activation ne sont pas modifiables)","(Not all Content Hosts editable )":"(tous les hôtes de contenu ne sont pas modifiables)","{{ 'Add Selected' | translate }}":"{{ 'Add Selected' | translate }}","{{ componentContentView.puppet_modules.length || 0 }} Puppet Modules":"{{ componentContentView.puppet_modules.length || 0 }} modules Puppet","{{ componentContentView.repositories.length || 0 }} Repositories":"{{ componentContentView.repositories.length || 0 }} référentiels","{{ contentCredential.name }}":"{{ contentCredential.name }}","{{ contentView.name }}":"{{ contentView.name }}","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} ne peut pas être supprimé car une ou plusieurs versions d'affichage de contenu sont encore rattachées à un environnement de cycle de vie.\n Chaque version d'affichage de contenu doit être supprimée de son environnement de cycle de vie avant que l'affichage de contenu ne puisse être supprimé.","{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet Modules":"{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} modules Puppet","{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories":"{{ contentViewComponent.content_view_version.repositories.length || 0 }} référentiels","{{ deb.name }}":"{{ deb.name }}","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} applicable,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} pouvant être installés","{{ errata.title }}":"{{ errata.title }}","{{ file.name }}":"{{ file.name }}","{{ filter.inclusion | filterType }} Tag":"{{ filter.inclusion | filterType }} Balise","{{ host.name }}":"{{ host.name }}","{{ host.subscription_facet_attributes.user.login }}":"{{ host.subscription_facet_attributes.user.login }}","{{ installedPackageCount }} Host(s)":"{{ installedPackageCount }} hôte(s)","{{ package.hosts_applicable_count }} Host(s)":"{{ package.hosts_applicable_count }} hôte(s)","{{ package.hosts_applicable_count || 0 }} Applicable,":"{{ package.hosts_applicable_count || 0 }} applicable,","{{ package.hosts_available_count }} Host(s)":"{{ package.hosts_available_count }} hôte(s)","{{ package.hosts_available_count || 0 }} Upgradable":"{{ package.hosts_available_count || 0 }} pouvant être mis à niveau","{{ package.human_readable_size }} ({{ package.size }} Bytes)":"{{ package.human_readable_size }} ({{ package.size }} octets)","{{ product.active_task_count }}":"{{ product.active_task_count }}","{{ product.name }}":"{{ product.name }}","{{ puppetModule.name }}":"{{ puppetModule.name }}","{{ repository.content_counts.deb }} deb Packages":"{{ repository.content_counts.deb }} Packages deb","{{ repository.content_counts.deb || 0 }} deb Packages":"{{ repository.content_counts.deb || 0 }} Packages deb","{{ repository.content_counts.docker_manifest }} Container Image Manifests":"{{ repository.content_counts.docker_manifest }} Manifestes d'images de conteneurs","{{ repository.content_counts.docker_manifest || 0 }} Container Image Manifests":"{{ repository.content_counts.docker_manifest || 0 }} Manifestes d'images de conteneurs","{{ repository.content_counts.docker_manifest_list }} Container Image Manifest Lists":"{{ repository.content_counts.docker_manifest_list }} Liste de manifeste d'images de conteneurs","{{ repository.content_counts.docker_manifest_list || 0 }} Container Image Manifest Lists":"{{ repository.content_counts.docker_manifest_list || 0 }} Listes de manifeste d'images de conteneurs","{{ repository.content_counts.docker_tag }} Container Image Tags":"{{ repository.content_counts.docker_tag }} Balises d'images de conteneurs","{{ repository.content_counts.docker_tag || 0 }} Container Image Tags":"{{ repository.content_counts.docker_tag || 0 }} Balises d'images de conteneurs","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} errata","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} Errata","{{ repository.content_counts.file || 0 }} Files":"{{ repository.content_counts.file || 0 }} Fichier(s)","{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches":"{{ repository.content_counts.ostree_branch || 0 }} Branches OSTree","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} Modules Puppet","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} Paquets","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} Paquets","{{ repository.content_counts.srpm }} Source RPMs":"{{ repository.content_counts.srpm }} RPM source","{{ repository.last_sync_words }} ago":"Il y a {{ repository.last_sync_words }}","{{ repository.name }}":"{{ repository.name }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} clés d'activation seront déplacées vers {{ deleteOptions.activationKeys.contentView.name }} dans {{ deleteOptions.activationKeys.environment.name }}","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} Les hôtes de contenu seront déplacés vers {{ deleteOptions.contentHosts.contentView.name }} dans {{ deleteOptions.contentHosts.environment.name }}","{{ type.display }}":"{{ type.display }}","{{ version.deb_count }} deb Packages":"{{ version.deb_count }} Packages deb","{{ version.docker_manifest_count }} Container Image Manifests":"{{ version.docker_manifest_count }} Manifestes d'images de conteneurs","{{ version.docker_manifest_list_count }} Container Image Manifest Lists":"{{ version.docker_manifest_list_count }} Liste de manifeste d'images de conteneurs","{{ version.docker_tag_count }} Container Image Tags":"{{ version.docker_tag_count }} Balise d'images de conteneurs","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} errata","{{ version.file_count }} Files":"{{ version.file_count }} fichiers","{{ version.ostree_branch_count }} OSTree Branches":"{{ version.ostree_branch_count }} branches OSTree","{{ version.package_count }} Packages":"{{ version.package_count }} paquets","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} modules Puppet","{{ version.srpm_count }} Source RPMs":"{{ version.srpm_count }} RPM source","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* Ces versions d'affichages de contenu marked proviennent d'affichages de contenu composites. Les composants nécessitant une mise à jour sont énumérés ci-dessous.","%(consumed)s out of %(quantity)s":"%(consumed)s sur %(quantity)s","%count environment(s) can be synchronized: %envs":"%count environnement(s) peuvent être synchronisés : %envs","<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>":"<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>","<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>":"<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>","<b>Description</b>":"<b>Description</b>","<b>Packages</b>":"<b>Paquetages</b>","<b>Reboot Suggested</b>":"<b>Redémarrage suggéré</b>","<b>Solution</b>":"<b>Solution</b>","<b>Title</b>":"<b>Titre</b>","<b>Type</b>":"<b>Type</b>","<b>Updated</b>":"<b>Mis à jour</b>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n Environments étoilés candidats à la promotion.","<i class=\"fa fa-warning inline-icon\"></i>\n This Host is not currently registered with subscription-manager. Click <a ui-sref=\"content-hosts.register\">here</a> for registration information.":"<i class=\"fa fa-warning inline-icon\"></i>\n Cet hôte n'est actuellement pas enregistré auprès du gestionnaire d'abonnements. Cliquez <a ui-sref=\"content-hosts.register\">ici</a> pour obtenir des informations relatives à l'enregistrement.","<span translate=\"\">\n If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">to manage them individually.</span>":"<span translate=\"\">\n Si vous préférez déplacer des portions de ces clés d'activation vers différents affichages de contenu ou environnements du cycle de vie, cliquez\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">ici</a>\n <span translate=\"\">pour les gérer individuellement.</span>","A composite view contains other content views.":"Une vue composite contient d'autres affichages du contenu.","A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n It can be promoted to other environments from the Versions tab of this Content View.":"Une nouvelle version de {{ contentView.name }} sera créée et transférée vers l'environnement de la Bibliothèque.\n Elle peut être transférée vers d'autres environnements à partir de l'onglet Versions de cet affichage de contenu.","A newer version is available: {{ contentViewComponent.content_view.latest_version }}":"Une version plus récente est disponible : {{ contentViewComponent.content_view.latest_version }}","A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>":"Une synchronisation a été initiée en arrière-plan, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">cliquez pour en savoir plus</a>","Account":"Compte","Action":"Action","Action Type":"Type d'action","Actions":"Actions","Activation Key":["Clé d'activation","Clés d'activation"],"Activation Key Content":"Contenu de la clé d'activation","Activation Key removed.":"Clé d'activation supprimée.","Activation Key updated":"Clé d'activation mise à jour","Activation Key:":"Clé d'activation :","Activation Keys":"Clés d'activation","Activation Keys using Version {{ version.version }}":"Clés d'activation en utilisant la Version {{ version.version }}","Active Tasks":"Tâches actives","Add":"Ajouter","Add Content Hosts to:":"Ajouter des hôtes de contenu à :","Add Content Views":"Ajouter les affichages du contenu","Add Content Views to {{ contentView.name }}":"Ajouter les affichages du contenu à {{ contentView.name }}","Add Errata":"Ajouter des errata","Add New Container Image Tag Filter":"Ajouter un nouveau filtre de balise d'images de conteneur","Add New Environment":"Ajouter un nouvel environnement","Add New Module":"Ajouter un nouveau module","Add New Yum Filter":"Ajouter un nouveau filtre Yum","Add ons":"Ajouts","Add Package Group":"Ajouter un groupe de paquets","Add Repositories":"Ajouter des référentiels","Add Rule":"Ajouter une règle","Add Selected":"Ajouter les éléments sélectionnés","add some repositories.":"ajouter des référentiels.","Add Subscriptions for Activation Key:":"Ajouter des abonnements pour la clé d'activation :","Add Subscriptions for Content Host:":"Ajouter des abonnements à l'hôte de contenu :","Add To":"Ajouter à","Added %x host collections to activation key \"%y\".":"%x collections d'hôtes ajoutées à la clé d'activation \"%y\".","Added %x host collections to content host \"%y\".":"%x collections d'hôtes ajoutées à l'hôte de contenu \"%y\".","Added %x products to sync plan \"%y\".":"%x produits ajoutés au plan de synchronisation \"%y\".","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Ajouter un environnement de cycle de vie à la fin de \"{{ priorEnvironment.name }}\"","Advanced Sync":"Synchronisation avancée","Advisory":"Alerte","Affected Activation Keys":"Clés d'activation affectées","Affected Content Hosts":"Hôtes de contenu affectés","Affected Hosts":"Hôtes affectés","Affected Repositories":"Référentiels affectés","Affected repositories have been updated.":"Les référentiels affectés ont été mis à jour","All Content Views":"Tous les affichages de contenu","All History":"Tout l'historique","All Products":"Tous les produits","All Repositories":"Tous les référentiels","All Versions":"Toutes les versions","Always Use Latest (Currently %s)":"Toujours utiliser la plus récente (actuellement %s)","Always Use Latest (Currently no versions)":"Toujours utiliser la plus récente (actuellement aucune version)","An error occured: %s":"Une erreur s'est produite : %s","An error occurred initiating the sync:":"Une erreur s'est produite lors de l'initialisation de la synchronisation :","An error occurred removing the Activation Key:":"Une erreur s’est produite lors de la suppression de la clé d'activation :","An error occurred removing the content hosts.":"Une erreur s’est produite lors de la suppression des hôtes de contenu.","An error occurred removing the environment:":"Une erreur s’est produite lors de la suppression de l'environnement :","An error occurred removing the Host Collection:":"Une erreur s’est produite lors de la suppression de la collection d'hôtes :","An error occurred removing the subscriptions.":"Une erreur s’est produite lors de la suppression des produits.","An error occurred saving the Activation Key:":"Une erreur s’est produite lors de l'enregistrement de la clé d'activation :","An error occurred saving the Content Host:":"Une erreur s’est produite lors de l'enregistrement de l'hôte de contenu :","An error occurred saving the Environment:":"Une erreur s'est produite lors de l'enregistrement de l'environnement :","An error occurred saving the Filter:":"Une erreur s’est produite lors de l'enregistrement du filtre :","An error occurred saving the Host Collection:":"Une erreur s’est produite lors de l'enregistrement de la collection d'hôtes :","An error occurred saving the Product:":"Une erreur s’est produite lors de l'enregistrement du produit :","An error occurred saving the Repository:":"Une erreur s’est produite lors de l'enregistrement du référentiel :","An error occurred saving the Sync Plan:":"Une erreur s’est produite lors de l'enregistrement du plan de synchronisation :","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Une erreur s'est produite lors de la tentative d'attachement automatiquement des abonnements. Veuillez vérifier votre fichier journal pour obtenir plus d'informations.","An error occurred updating the Content View:":"Une erreur s’est produite lors de la mise à jour de l'affichage du contenu :","An error occurred updating the sync plan:":"Une erreur s'est produite lors de la mise à jour du plan de synchronisation :","An error occurred while creating the Content Credential:":"Une erreur s'est produite lors de la création des informations d'identification de contenu :","An error occurred while creating the Product: %s":"Une erreur s'est produite lors de la création du produit : %s","An error occurred:":"Une erreur s'est produite :","Ansible Collections":"Collections Ansible","Applicable":"Applicable","Applicable Content Hosts":"Hôtes de contenu applicables","Applicable Errata":"Errata applicables","Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\".":"Applicable uniquement aux vues composites. Publiez automatiquement une vue composite lorsqu'une nouvelle version de vue de contenu de composant est créée. Notez également que la publication automatique n'aura lieu que lorsque le composant est marqué comme la version la plus récente, « latest ».","Applicable Packages":"Paquetages applicables","Applicable To":"Applicable à","Applicable to Host":"Applicable à l'hôte","Application":"Application","Apply":"Appliquer","Apply {{ errata.errata_id }}":"Appliquer {{ errata.errata_id }}","Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?":"Appliquer {{ errata.errata_id }} à {{ contentHostIds.length }} hôte(s) de contenu ?","Apply {{ errata.errata_id }} to all Content Host(s)?":"Appliquer {{ errata.errata_id }} à tous les hôtes de contenu ?","Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content Host(s)?":"Appliquer {{ errataIds.length }} Errata à {{ contentHostIds.length }} hôte(s) de contenu ?","Apply {{ errataIds.length }} Errata to all Content Host(s)?":"Appliquer l'errata {{ errataIds.length }} à tous les hôtes de contenu ?","Apply Errata":"Appliquer l'errata","Apply Errata to Content Host \"{{host.name}}\"?":"Doit-on appliquer l'errata à l'hôte de contenu \"{{host.name}}\" ?","Apply Errata to Content Hosts":"Appliquer l'errata aux hôtes de contenu","Apply Errata to Content Hosts immediately after publishing.":"Appliquer les errata aux hôtes de contenu tout de suite après la publication.","Apply Selected":"Appliquer Sélectionné","Apply to Content Hosts":"Appliquer aux hôtes de contenu","Apply to Hosts":"Appliquer aux hôtes","Applying":"Application","Apt Repositories":"Référentiels Apt","Arch":"Arch","Architecture":"Architecture","Architectures":"Architectures","Archived Copy":"Copie archivée","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"Êtes-vous sûr de vouloir ajouter le(s) {{ table.numSelected }} hôte(s) de contenu sélectionnés à la/aux collection(s) d'hôtes choisie(s) ?","Are you sure you want to add the sync plan to the selected products(s)?":"Êtes-vous sûr de vouloir ajouter le plan de synchronisation au(x) produit(s) sélectionné(s) ?","Are you sure you want to apply Errata to content host \"{{ host.name }}\"?":"Êtes-vous sûr de vouloir appliquer les errata à l'hôte de contenu \"{{ host.name }}\" ?","Are you sure you want to apply the {{ table.numSelected }} selected errata to the content hosts chosen?":"Êtes-vous sûr de vouloir appliquer les {{ table.numSelected }} errata sélectionnés aux hôtes de contenu choisis ?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"Êtes-vous sûr de vouloir attribuer le(s) {{ table.numSelected }} hôte(s) de contenu sélectionnés à {{ selected.contentView.name }} dans {{ selected.environment.name }} ?","Are you sure you want to disable the {{ table.numSelected }} repository set(s) chosen?":"Êtes-vous sûr de vouloir désactiver le(s) {{ table.numSelected }} ensemble(s) de référentiels choisi(s) ?","Are you sure you want to enable the {{ table.numSelected }} repository set(s) chosen?":"Voulez-vous vraiment activer le(s) {{ table.numSelected }} ensemble(s) de référentiels choisis ?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Êtes-vous sûr de vouloir installer {{ content.content }} sur le(s) {{ getSelectedSystemIds().length }} système(s) sélectionné(s) ?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"Êtes-vous sûr de vouloir supprimer {{ content.content }} du/des {{ getSelectedSystemIds().length }} système(s) sélectionné(s) ?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"Voulez-vous vraiment supprimer la clé d'activation « {{ activationKey.name }} » ?","Are you sure you want to remove Content Credential {{ contentCredential.name }}?":"Voulez-vous vraiment supprimer les informations d'identification de contenu {{ contentCredential.name }} ?","Are you sure you want to remove Content View \"{{ contentView.name }}\"?":"Voulez-vous vraiment supprimer l'affichage du contenu « {{ contentView.name }} » ?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"Êtes-vous sûr de vouloir supprimer la collection d'hôtes \"{{ hostCollection.name }}\" ?","Are you sure you want to remove product \"{{ product.name }}\"?":"Êtes-vous sûr de vouloir supprimer le produit \"{{ product.name }}\" ?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"Êtes-vous sûr de vouloir supprimer le référentiel \"{{ repository.name }}\" ?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"Êtes-vous sûr de vouloir supprimer le plan de synchronisation \"{{ syncPlan.name }}\" ?","Are you sure you want to remove the {{ table.getSelected()[0].name }} file?":["Voulez-vous vraiment supprimer le fichier {{ table.getSelected()[0].name }} ?","Voulez-vous vraiment supprimer les {{ table.numSelected }} fichiers sélectionnés ?"],"Are you sure you want to remove the {{ table.getSelected()[0].name }} package?":["Voulez-vous vraiment supprimer le paquetage {{ table.getSelected()[0].name }} ?","Voulez-vous vraiment supprimer les {{ table.numSelected }} paquetages sélectionnés ?"],"Are you sure you want to remove the {{ table.getSelected()[0].name }} product?":["Voulez-vous vraiment supprimer le produit {{ table.getSelected()[0].name }} ?","Voulez-vous vraiment supprimer les {{ table.numSelected().length }} produits sélectionnés ?"],"Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"Êtes-vous sûr de vouloir supprimer le(s) {{ table.numSelected }} hôte(s) de contenu sélectionnés de la/des collection(s) d'hôtes choisie(s) ?","Are you sure you want to remove the sync plan from the selected product(s)?":"Voulez-vous vraiment supprimer le plan de synchronisation du ou des produits sélectionnés ?","Are you sure you want to reset to default the {{ table.numSelected }} repository set(s) chosen?":"Voulez-vous vraiment réinitialiser les valeurs par défaut du/des {{ table.numSelected }} ensemble(s) de référentiels choisi(s) ?","Are you sure you want to restart services on content host \"{{ host.name }}\"?":"Voulez-vous vraiment redémarrer les services sur l'hôte de contenu « {{ host.name }} » ?","Are you sure you want to set the Release Version the {{ table.numSelected }} content host(s) selected to {{ selected.release }}?. This action will affect only those Content Hosts that belong to the appropriate Content View and Lifecycle Environment containining that release version.":"Voulez-vous vraiment définir la version de publication du/des {{ table.numSelected }} hôte(s) de contenu sélectionné(s) sur {{ selected.release }} ?. Cette action n'affectera que les hôtes de contenu qui appartiennent à l'affichage de contenu et à l'environnement de cycle de vie appropriés contenant cette version de publication.","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Êtes-vous sûr de vouloir mettre à jour {{ content.content }} sur le(s) {{ getSelectedSystemIds().length }} système(s) sélectionné(s) ?","Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?":"Voulez-vous vraiment mettre à jour tous les paquetages sur le(s) {{ getSelectedSystemIds().length }} système(s) sélectionné(s) ?","Assign":"Attribuer","Assign Lifecycle Environment and Content View":"Attribuer l'environnement de cycle de vie et l'affichage du contenu","Assign Release Version":"Attribuer une version de publication","Associations":"Associations","At least one Errata needs to be selected to Apply.":"Au moins un errata doit être sélectionné pour appliquer.","Attached":"Attaché","Author":"Auteur","Auto Publish":"Publication automatique","Auto-Attach":"Attacher automatiquement","Automatic":"Automatique","Available Content Views for Composite Content View:":"Affichages du contenu disponibles pour l'affichage du contenu composite :","Available Puppet Modules for Content View:":"Modules puppet disponibles pour l'affichage du contenu :","Available Schema Versions":"Versions de schéma disponibles","Back":"Retour","Back To Errata List":"Retour à la liste d'errata","Backend Identifier":"Identifiant du serveur principal","Basic Information":"Informations de base","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Les ensembles de contenus de référentiels actuellement disponibles pour cet hôte de contenu à travers ses abonnements sont situés ci-dessous. Pour les abonnements Red Hat, du contenu supplémentaire est disponible via","Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Les ensembles de référentiels actuellement disponibles pour cette clé d'activation à travers ses abonnements sont situés ci-dessous. Pour les abonnements Red Hat, du contenu supplémentaire est disponible via","Between versions {{ rule.min_version }} and {{ rule.max_version }}":"Entre les versions {{ rule.min_version }} et {{ rule.max_version }}","Bootable":"Amorçable","Branch Info":"Informations sur la branche","Branch Name":"Nom de la branche","Bug Fix":"Correctif de bogue","Bug Fix Advisory":"Alerte de correctif de bogue","Bugfix":"Correction de bogues","Build Host":"Hôte de création","Build Information":"Informations de création","Build Time":"Temps de génération","Cancel":"Annuler","Cannot Remove":"Suppression impossible","Cannot republish Repository without the proper permissions.":"Impossible d'effectuer une nouvelle publication du référentiel sans les autorisations appropriées.","Cannot republish Repository, a sync is already in progress.":"Nouvelle publication du référentiel impossible. Une synchronisation est déjà en cours.","Cannot sync Repository without a URL.":"Impossible de synchroniser le référentiel sans URL.","Cannot sync Repository without the proper permissions.":"Impossible de synchroniser le référentiel sans les autorisations appropriées.","Cannot sync Repository, a sync is already in progress.":"Synchronisation du référentiel impossible. Une synchronisation est déjà en cours.","Capacity":"Capacité","Certificate":"Certificat","Change assigned Lifecycle Environment or Content View":"Modifier l'environnement de cycle de vie attribué ou l'affichage du contenu","Change Host Collections":"Modifier les collections d'hôtes","Change Lifecycle Environment":"Modifier l'environnement du cycle de vie","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"Une version 1.10 ou ultérieure de subscription-manager doit être installée sur cet hôte pour modifier les paramètres par défaut pour les hôtes de contenu qui s'enregistrent avec cette clé d'activation.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"Une version 1.10 ou ultérieure de subscription-manager doit être installée sur cet hôte pour modifier les paramètres par défaut.","Checksum":"Somme de contrôle","Checksum Type":"Type de somme de contrôle","Choose <b>Default</b> to enable the repository for all architectures":"Choisir <b>Default</b> pour activer le référentiel pour toutes les architectures","Choose a lifecycle environment from the available promotion paths.":"Choisir un environnement de cycle de vie à partir des chemins d'accès de promotion disponibles.","Choose one of the policy selections for downloading ostree content from upstream url during synchronization. Choose \"Latest\" for downloading the latest version of the upstream branch. Choose \"All History\" to download all available versions of the upstream repository (this may take a large amount of space). Choose \"Custom Depth\" and provide an number to indicate the number of prior versions of the upstream branch to download.":"Choisissez une des sélections de stratégie pour télécharger le contenu ostree depuis l'URL en amont pendant la synchronisation. Choisissez « La plus récente » pour télécharger la dernière version de la branche en amont. Choisissez « Tout l'historique » pour télécharger toutes les versions disponibles du référentiel en amont (cette opération est très gourmande en espace). Choisissez « Personnaliser la profondeur » et spécifiez un nombre pour indiquer le nombre de versions précédentes de la branche en amont à télécharger.","Click here to check the status of the task.":"Cliquez ici pour vérifier le statut de la tâche.","Click here to select Errata for an Incremental Update.":"Cliquez ici pour sélectionner les erratas pour une mise à jour croissante.","Click to view task":"Cliquez pour voir la tâche","Close":"Fermer","Comma separated list of components to sync from (leave clear to sync all). Example: main":"Liste des composants à synchroniser, séparés par des virgules (laisser vide pour tout synchroniser). Exemple : main","Comma separated list of processor architectures to filter the sync by. Example: amd64":"Liste des architectures de processeur séparées par des virgules selon laquelle effectuer la synchronisation. Exemple : amd64","Comma separated list of releases (suite or codename) to sync from. Default: stable":"Liste des versions séparées par des virgules (suite ou nom de code) à partir de laquelle effectuer la synchronisation. Valeur par défaut : stable","Commit":"Valider","Complete Sync":"Terminer la synchronisation","Completely remove version?":"Supprimer la version entièrement ?","Components":"Composants","Components:":"Composants :","Composite":"Composite","Composite View":"Affichage composite","Composite View?":"Affichage composite ?","Confirm":"Confirmer","Confirm Remove":"Confirmer la suppression","Confirm Version Removal: Version {{ version.version }}":"Confirmer la suppression de la version : Version {{ version.version }}","Container Image Manifest":"Manifeste d'image de conteneur","Container Image Manifest Lists":"Listes des manifestes d'images de conteneurs","Container Image Manifests":"Manifestes d'images de conteneurs","Container Image metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération des métadonnées d'image de conteneur a été initiée en arrière plan. Cliquer\n <a ng-href=\"{{ taskUrl() }}\">ici</a> pour contrôler la progression.","Container Image Tag":"Balise d'image de conteneur","Container Image Tag Filter:":"Filtre de balise d'image de conteneur :","Container Image Tags":"Balises d'image de conteneur","Container Images":"Images de conteneur","Content":"Contenu","Content Counts":"Nombre de contenus","Content Credential %s has been created.":"Les informations d'identification de contenu %s ont été créées.","Content Credential Contents":"Contenu des informations d'identification de contenu","Content Credential successfully uploaded":"Informations d'identification de contenu téléchargées avec succès","Content credential updated":"Informations d'identification de contenu mises à jour","Content Credentials":"Informations d'identification de contenu","Content Host":"Hôte du contenu","Content Host Bulk Content":"Contenu par lot d'hôte de contenu","Content Host Bulk Subscriptions":"Abonnements par lots d'hôte de contenu","Content Host Content":"Contenu d'hôte de contenu","Content Host Counts":"Nombre d'hôtes de contenu","Content Host Limit":"Limite d'hôte de contenu","Content Host Properties":"Propriétés d'hôte de contenu","Content Host Registration":"Enregistrement d'hôte de contenu","Content Host Status":"Statut d'hôte de contenu","Content Host:":"Hôte de contenu :","Content Hosts":"Hôtes de contenu","Content Hosts for Activation Key:":"Hôtes de contenu pour clé d'activation :","Content Hosts for:":"Hôtes de contenu pour :","Content Hosts using Version {{ version.version }}":"Hôtes de contenu utilisant la Version {{ version.version }}","Content Type":"Type de contenu","Content View":"Affichage du contenu","Content View Name":"Nom de l'affichage de contenu","Content View updated.":"Affichage du contenu mis à jour.","Content View Version":"Version de l'affichage de contenu","Content View:":"Affichage du contenu :","Content Views":"Affichages du contenu","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Affichages de contenu <div>{{ library.counts.content_views || 0 }}</div>","Content Views for {{ contentView.name }}":"Affichages du contenu pour {{ contentView.name }}","Content Views for Composite Content View:":"Affichages du contenu pour l'affichage du contenu composite :","Content Views for Deb:":"Affichages de contenu pour Deb :","Content Views for File:":"Affichages du contenu pour le fichier :","Content Views for Puppet Module:":"Affichages de contenu pour le module Puppet :","Content Views that contain this Deb":"Affichages de contenu contenant ce Deb","Content Views that contain this File":"Affichages du contenu comportant ce fichier","Content Views that contain this Puppet Module":"Affichages du contenu comportant ce module Puppet","Context":"Contenu","Contract":"Contrat","Copy Activation Key":"Copier la clé d'activation","Copy Content View":"Copier l'affichage du contenu","Copy Content View:":"Copier l'affichage du contenu :","Copy Host Collection":"Copier la collection d'hôtes","Cores per Socket":"Noyaux par Socket","Create":"Créer","Create a copy of {{ activationKey.name }}":"Créer une copie de {{ activationKey.name }}","Create a copy of {{ contentView.name }}":"Créer une copie de {{ contentView.name }}","Create a copy of {{ hostCollection.name }}":"Créer une copie de {{ hostCollection.name }}","Create a rule using the add button above.":"Créez une règle à l'aide du bouton ajouter ci-dessus.","Create Activation Key":"Création des clés d'activation","Create Content Credential":"Créer des informations d'identification de contenu","Create Content View":"Créer un affichage du contenu","Create Discovered Repositories":"Créer des référentiels détectés","Create Environment Path":"Créer un chemin d'accès à l'environnement","Create Host Collection":"Créer une collection d'hôtes","Create new view":"Créer un nouvel affichage","Create New View":"Créer un nouvel affichage","Create Product":"Créer un produit","Create Selected":"Créer sélectionné","Create Status":"Créer un statut","Create Sync Plan":"Créer un plan de synchronisation","Create view from existing views":"Créer un affichage à partir d'affichages existants","Creating repository...":"Création du référentiel en cours...","Critical":"Critique","Current Lifecycle Environment (%e/%cv)":"Environnement de cycle de vie actuel (%e/%cv)","Current Subscriptions for Activation Key:":"Abonnements actuels pour la clé d'activation :","Currently %s":"Actuellement %s\n","Currently Selected Puppet Modules":"Modules Puppet sélectionnés actuellement","custom cron":"cron personnalisé","Custom Cron":"Cron personnalisé","Custom Depth":"Personnaliser la profondeur","Custom Depth (Currently %s)":"Personnaliser la profondeur (actuellement %s)","Customize":"Personnaliser","CVEs":"CVE","daily":"quotidien","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Chaque jour à {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)","Date":"Date","Date Type":"Type de date","deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées deb a été initiée en arrière-plan. Cliquez <a href=\"{{ taskUrl() }}\">ici</a> pour vérifier la progression.","deb Packages":"Packages deb","Deb Packages":"Packages deb","Deb:":"Deb :","Debs":"Debs","Default":"Défaut","Delete Hosts":"Supprimer ces hôtes","Delete Version {{ version.version }}":"Supprimer la version {{ version.version }}","Deleted from %s":"Supprimé de %s","Deleting from %count environments.":"Suppression à partir de %count environnements ","Deleting from 1 environment.":"Suppression à partir de 1 environnement.","Deletion from %s":"Suppression à partir de %s","Delta RPM":"RPM Delta","Dependencies":"Les dépendances","Description":"Description","Details":"Détails","Details for {{ contentView.name }}":"Détails de {{ contentView.name }}","Details for Activation Key:":"Détails de la clé d'activation :","Details for Container Image Tag:":"Détails de la balise d'image de conteneur :","Details for Content View:":"Détails de l'affichage du contenu :","Details for Product:":"Détails du produit :","Details for Repository:":"Détails du référentiel :","Digest":"Digest","Disable":"Désactiver","Disabled":"Désactivé","Disabled (overridden)":"Désactivé (remplacé)","Discover":"Découvrir","Discovered Repository":"Référentiel détecté","Discovery failed. Error: %s":"Échec de la détection. Erreur : %s","Distribution":"Distribution","Distribution Information":"Information Distribution","Docker metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées Docker a été initiée en arrière-plan. Cliquez <a ng-href=\"{{ taskUrl() }}\">ici</a> pour vérifier la progression.","Docker Repositories":"Référentiels Docker","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Référentiels Docker <div>{{ library.counts.docker_repositories || 0 }}</div>","Docker Repository Selection":"Sélection de référentiel Docker","Done":"Terminé","Download Policy":"Politique de téléchargement","Edit":"Modifier","Enable":"Activer","Enabled":"Activé(e)","Enabled (overridden)":"Activé (remplacé)","End Date":"Date de fin","Enhancement":"Amélioration","Enter Package Group Name(s)...":"Veuillez saisir le(s) nom(s) de groupe(s) de paquets...","Enter Package Name(s)...":"Veuillez saisir le(s) nom(s) de paquet(s)...","Environment":"Environnement","Environment saved":"Environnement enregistré","Environments":"Environnements","Environments List":"Liste des environnements","Equal To":"Égal à","Errata":"Errata","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Errata <div>{{ library.counts.errata.total || 0 }}</div>","Errata are automatically Applicable if they are Installable":"Les errata sont automatiquement applicables si installables","Errata Details":"Détails d'errata","Errata Filter:":"Filtre d'errata :","Errata for:":"Errata pour :","Errata ID":"ID d'errata","Errata Installation":"Installation d'errata","Errata successfully added.":"Errata ajouté(s).","Errata successfully removed.":"Errata supprimé(s).","Errata Task List":"Liste des tâches d'errata","Errata Tasks":"Tâches d'errata","Errata Type":"Type d'errata","Errata:":"Errata :","Erratum - by ID":"Erratum : par id","Erratum - Date and Type":"Erratum : date et type","Erratum Date Range":"Plage de dates d'erratum","Error during upload:":"Erreur lors du téléchargement :","Event":"Événement","Exclude":"Exclure","Exclude all RPMs with no errata.":"Exclut tous les RPM sans errata.","Existing Product":"Produit existant","Expires":"Expire","Export":"Exporter","Exported content view":"Vue de contenu exporté","Family":"Famille","File Information":"Information Fichier","File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La suppression de fichiers a été initiée en arrière-plan. Cliquez <a href=\"{{ taskUrl() }}\">ici</a> pour contrôler la progression.","File Repositories":"Référentiels de fichiers","File too large.":"Fichier trop volumineux.","File too large. Please use the CLI instead.":"Fichier trop volumineux. Veuillez utiliser le CLI.","File:":"Fichier :","Filename":"Nom de fichier","Files":"Fichiers","Files in package {{ package.nvrea }}":"Fichiers du paquetage {{ package.nvrea }}","Filter":"Filtre","Filter by Status:":"Filtrer par Statut :","Filter information for:":"Information de filtre pour :","Filter rule successfully removed.":"Règle de filtre supprimée.","Filter rule successfully updated.":"Règle de filtre mise à jour.","Filter Saved":"Filtre enregistré","Filter:":"Filtre :","Filter...":"Filtre...","Filters":"Filtres","Filters for Content View:":"Filtres pour affichage du contenu :","Filters successfully removed.":"Filtres supprimés.","Finished At":"Fini à","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Pour les systèmes d'exploitation plus anciens, tels que Red Hat Enterprise Linux 5 ou CentOS 5, il est recommandé d'utiliser sha1.","Force Promote?":"Forcer Promotion ?","Force Puppet Environment":"Forcer l'environnement Puppet","GPG Key":"Clé GPG","Greater Than":"Supérieur à","Greater than version {{ rule.min_version }}":"Postérieure à la version {{ rule.min_version }}","Group":"Groupe","Group Install":"Installation de groupe","Group Remove":"Suppression de groupe","Helper":"Assistant","here":"ici","Hide affected Activation Keys":"Masquer les clés d'activation affectées","Hide affected Content Hosts":"Masquer les hôtes de contenu affectés","History":"Historique","History for Content View:":"Historique de l'affichage du contenu :","Host %s has been deleted.":"L'hôte %s a été supprimé.","Host %s has been unregistered.":"L'hôte %s a été désenregistré.","Host Collection Management":"Gestion de collection d'hôtes","Host Collection Membership":"Abonnement de collection d'hôtes","Host Collection removed.":"Collection d'hôtes supprimée","Host Collection updated":"Collection d'hôtes mise à jour","Host Collection:":"Collection d'hôtes :","Host Collections":"Collections d'hôtes","Host Collections for:":"Collections d'hôtes pour :","Host Count":"Nombre d'hôtes","Host Group":"Groupe d'hôtes","Host Limit":"Limite d'hôte","Hostname":"Nom d'hôte","Hosts":"Hôtes","hourly":"horaire","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"Chaque heure à {{ product.sync_plan.sync_date | date:'m' }} minutes et {{ product.sync_plan.sync_date | date:'s' }} secondes","HTTP Proxy":"Mandataire HTTP","Id":"Id","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Si vous préférez déplacer des portions de ces clés d'activations vers différents affichages du contenu ou environnements de cycle de vie, cliquez","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Si vous préférez déplacer des portions de ces clés d'activations vers différents affichages du contenu ou environnements de cycle de vie, cliquez <a href=\"{{ activationKeyLink() }}\">ici</a> pour les gérer individuellement.","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Si vous préférez déplacer des portions de ces hôtes de contenu vers différents environnements ou affichages du contenu, cliquez <a href=\"{{ contentHostsLink() }}\">ici</a> pour gérer ces hôtes de contenu par lots.","Ignorable Content":"Contenu pouvant être ignoré","Image":"Image","Immediate":"Immédiatement","Important":"Important","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Pour ajouter un affichage du contenu à un affichage composite, vous devez d'abord publier une version initiale de l'affichage du contenu.","In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n or ask your admin for a certificate.":"Pour parcourir ce référentiel, vous devez <a ng-href=\"/organizations/{{ organization }}/edit\">télécharger le certificat</a>\n ou en demander un à votre administrateur.","Include":"Inclure","Include all RPMs with no errata.":"Inclure tous les RPM sans errata.","Inclusion Type":"Type d'inclusion","Incremental update":"Mise à jour incrémentielle","Incremental Update":"Mise à jour croissante","Install":"Installer","Install client package:":"Installer le package client :","Install Selected":"Installer sélectionné","Install the pre-built bootstrap RPM:":"Installez le RPM bootstrap existant :","Installable":"Installable","Installable Errata":"Errata installable","Installable Updates":"Mises à jour installables","Installed":"Installé","Installed On":"Installé sur","Installed Package":"Paquet installé","Installed Packages":"Paquets installés","Installed Products":"Produits installés","Installed Profile":"Profil installé","Interfaces":"Interfaces","Interval":"Intervalle","IPv4 Address":"Adresse IPv4","IPv6 Address":"Adresse IPv6","Issued":"Émis","Issued On":"Fourni le","Katello Agent":"Agent Katello","Label":"Étiquette","Last Checkin":"Dernière connexion","Last Published":"Dernière publication","Last Puppet Report":"Dernier rapport Puppet","Last Sync":"Dernière synchronisation","Last synced":"Dernière synchronisation","Last Updated On":"Dernière mise à jour effectuée le","Latest (Currently %s)":"Les (Currently %s) plus récents","Latest (Currently no version)":"La plus récente (actuellement aucune version)","Latest Only":"La plus récente uniquement","Learn more about these packages in the <a href=\"https://theforeman.org/plugins/katello/\">Documentation</a>":"Approfondissez vos connaissances sur ces packages dans la <a href=\"https://theforeman.org/plugins/katello/\">Documentation</a>","Less Than":"Inférieur à","Less than version {{ rule.max_version }}":"Antérieure à la version {{ rule.max_version }}","Library":"Bibliothèque","Library Repositories":"Référentiels de bibliothèques","Library Repositories that contain this Deb.":"Référentiels de bibliothèques qui contiennent ce Deb.","Library Repositories that contain this File.":"Référentiels de bibliothèques qui contiennent ce fichier.","Library Repositories that contain this Puppet Module.":"Référentiels de bibliothèques qui contiennent ce module Puppet.","Library Synced Content":"Contenu synchronisé de bibliothèque","License":"Licence","Lifecycle Environment":"Environnement de cycle de vie","Lifecycle Environment Paths":"Chemins d'environnement de cycle de vie","Lifecycle Environment:":"Environnement de cycle de vie :","Lifecycle Environments":"Environnements de cycle de vie","Limit":"Limite","Limit Repository Sets to only those available in this Activation Key's Lifecycle Environment":"Limiter les ensembles de référentiels à ceux qui sont disponibles dans l'environnement de cycle de vie de cette clé d'activation","Limit Repository Sets to only those available in this Host's Lifecycle Environment":"Limiter les ensembles de référentiels à ceux qui sont disponibles dans l'environnement de cycle de vie de cet hôte","Limit to environment":"Limiter à l'environnement","Limit to Environment":"Limiter à l'environnement","Limit to Lifecycle Environment":"Limiter à l'environnement de cycle de vie","Limit:":"Limite :","List":"Liste","List/Remove":"Répertorier/Supprimer","Loading Environment Paths...":"Chargement de chemins d'environnement...","Loading...":"Chargement...","Loading...\"":"Chargement en cours...»","Manage Container Image Manifests for Repository:":"Gérer les manifestes d'images de conteneurs pour le référentiel :","Manage deb Packages for Repository:":"Gérer les packages deb pour le référentiel :","Manage Errata":"Gérer les errata","Manage Files for Repository:":"Gérer les fichiers pour le référentiel :","Manage OSTree Branches for Repository:":"Gérer les branches OSTree pour le référentiel :","Manage Packages":"Gérer les paquets","Manage Packages for Repository:":"Gérer les paquets pour le référentiel :","Manage Puppet Modules for {{ repository.name }}":"Gérer les modules Puppet pour {{ repository.name }}","Manage Puppet Modules for Repository:":"Gérez les modules Puppet pour le référentiel :","Manage Repository Sets":"Gérer les ensembles de référentiels","Manage Subscriptions":"Gérer les abonnements","Manage Sync Plan":"Gérer le plan de synchronisation","Manifest Lists":"Listes de manifestes","Manifest Type":"Type de manifeste","Many Content View actions are disabled while a version task is in progress.":"De nombreuses actions de l'affichage de contenu sont désactivées pendant qu'une tâche de version est en cours.","Maximum Version":"Version maximum","Minimum Version":"Version minimum","Mirror on Sync":"Mirroir Sync","Model":"Modèle","Moderate":"Modéré","Module %s removed from Content View.":"Module %s supprimé de l'affichage du contenu.","Module Stream":"Flux de module","Module Streams":"Flux de module","More Details":"Plus de détails","N/A":"N/A","Name":"Nom","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"Nom du référentiel en amont que vous souhaitez synchroniser. Exemple : 'busybox' ou 'fedora/ssh'.","Networking":"Réseau","Never":"Jamais","Never registered":"Jamais enregistré","Never synced":"Jamais synchronisé","New Activation Key":"Nouvelle clé d'activation","New Environment":"Nouvel environnement","New Filter":"Nouveau filtre","New Filter for Content View:":"Nouveau filtre pour l'affichage du contenu :","New Name:":"Nouveau nom :","New Product":"Nouveau produit","New Repository":"Nouveau référentiel","New Sync Plan":"Nouveau plan de synchronisation","New sync plan successfully created.":"Nouveau plan de synchronisation créé.","Next":"Suivant","Next Sync":"Prochaine synchronisation","No":"Non","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"Aucune permission de « Modification » sur certaines clés d'activation dans cet environnement de cycle de vie.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"Aucune permission de « Modification » sur certains hôtes de contenu dans cet environnement de cycle de vie.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"Aucune permission de « Promouvoir/Supprimer » sur l'environnement de cycle de vie.","No activation keys are affected.":"Aucune clé d'activation n'est affectée.","No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".":"Aucune autre version n'est disponible. Les versions disponibles sont basées sur ce qui est disponible dans « {{ host.content_facet_attributes.content_view.name }} », l' <a href=\"/content_views\">affichage du contenu</a> sélectionné auquel cet hôte de contenu est attaché pour l'<a href=\"/lifecycle_environments\">environnement de cycle de vie</a> donné, « {{ host.content_facet_attributes.lifecycle_environment.name }} ».","No Content Hosts are affected.":"Aucun hôte de contenu affecté","No Content Hosts match this Erratum.":"Aucun hôte de contenu ne correspond à cet erratum.","No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first.":"Aucun affichage du contenu disponible à ajouter à {{ contentView.name }}. Créez d'abord des affichages du contenu non composites.","No Content Views available, please select another environment.":"Aucun affichage du contenu disponible, veuillez sélectionner un autre environnement","No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views.":"Aucun affichage du contenu n'appartient à {{ contentView.name }}. Utilisez l'onglet ajouter pour ajouter des affichages du contenu.","No Content Views contain this Deb":"Aucun affichage de contenu ne contient ce Deb","No Content Views contain this File":"Aucun affichage du contenu ne comporte ce fichier","No Content Views contain this Puppet Module":"Aucun affichage du contenu ne comporte ce module Puppet","No content views exist for {{selected.environment.name}}":"Il n'existe aucun affichage du contenu pour {{selected.environment.name}}.","No Content Views match the search.":"Aucun affichage du contenu ne correspond à la recherche.","No discovered repositories.":"Aucun référentiel détecté.","No enabled Repository Sets provided through subscriptions.":"Aucun ensemble de référentiels fourni avec ces abonnements.","No Errata to display":"Aucun erratum à afficher.","No Host Collections match your search.":"Aucune collection d'hôtes ne correspond à votre recherche.","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Aucune collection d'hôte à afficher. Vous pouvez ajouter des collections d'hôtes après avoir sélectionné « Collections d'hôtes » sous « Hôtes » dans le menu principal.","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"Aucune collection d'hôte à afficher. Vous pouvez ajouter des collections d'hôtes après avoir sélectionné l'onglet « Ajouter ».","No matching results.":"Aucun résultat correspondant.","No products are available to add to this Sync Plan.":"Aucun produit disponible à ajouter à ce plan de synchronisation.","No products are have been added to this Sync Plan.":"Aucun produit n'a été ajouté à ce plan de synchronisation.","No puppet modules found":"Aucun module puppet trouvé","No releases exist in the Library.":"Aucune publication existante dans la bibliothèque.","No Repositories contain this Branch.":"Aucun référentiel ne contient cette branche.","No Repositories contain this Deb":"Aucun référentiel ne contient ce Deb","No Repositories contain this Erratum.":"Aucun référentiel ne contient cet erratum.","No Repositories contain this File":"Aucun référentiel ne contient ce fichier.","No Repositories contain this Package.":"Aucun référentiel ne contient ce paquet.","No Repositories contain this Puppet Module":"Aucun référentiel ne contient ce module Puppet","No repository sets provided through subscriptions.":"Aucun ensemble de référentiels fourni avec ces abonnements.","No sync information available.":"Aucune information de synchronisation disponible.","No tasks exist for this resource.":"Aucune tâche existante pour cette ressource.","No versions found for {{ $stateParams.moduleName }}":"Aucune version trouvée pour {{ $stateParams.moduleName }}","None":"Aucun","Not installed":"Non installé.","Not started":"Non démarré","Not Synced":"Pas synchronisé","Not yet published":"Pas encore publié","Number of CPUs":"Nombre de CPU","Number of Repositories":"Nombre de référentiels","On Demand":"À la demande","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"Une ou plusieurs des errata sélectionnés n'ont pas pu être installés par le biais de vos versions d'affichage de contenu publiées installées sur vos hôtes sélectionnés. Les nouvelles versions d'affichage de contenu (indiquées ci-dessous)\n seront créées, ce qui permettra d'installer cet errata sur l'environnement de l'hôte. Cette nouvelle version viendra remplacer la version actuelle dans l'environnement de cycle de vie de votre\n hôte. Pour installer ces errata sur des hôtes tout de suite après la publication, veuillez cocher la case ci-dessous.","One or more RPMs are not showing up in the local repository even though they exist in the upstream repository.":"Un ou plusieurs RPM n'apparaissent pas dans le référentiel local même s'ils sont présents dans le référentiel en amont.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"N'afficher que les hôtes de contenu où l'errata est actuellement installable dans l'environnement de cycle de vie de l'hôte.","Only show Errata that are Applicable to one or more Content Hosts":"N'afficher que les errata applicables à un ou plusieurs hôtes de contenu","Only show Errata that are Installable on one or more Content Hosts":"N'afficher que les errata pouvant être installés sur un ou plusieurs hôtes de contenu","Only show Packages that are Applicable to one or more Content Hosts":"N'afficher que les paquetages applicables à un ou plusieurs hôtes de contenu","Only show Packages that are Upgradable on one or more Content Hosts":"N'afficher que les paquetages pouvant être mis à niveau sur un ou plusieurs hôtes de contenu","Only show Subscriptions for products not already covered by a Subscription":"N'afficher que les abonnements de produits non encore couverts par un abonnement","Only show Subscriptions which can be applied to products installed on this Host":"N'afficher que les abonnements pouvant s'appliquer aux produits installés sur cet hôte","Only show Subscriptions which can be attached to this Host":"N'afficher que les abonnements pouvant être attachés à cet hôte","Only the Applications with a Helper can be restarted.":"Seules les applications dotées d'un assistant peuvent être redémarrées.","Operating System":"Système d'exploitation","Optimized Sync":"Synchronisation optimisée","Organization":"Organisation","Original Sync Date":"Date de synchronisation d'origine","OS":"OS","OSTree Branch metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées de la branche OSTree a été initiée en arrière-plan.\n Cliquez <a ng-href=\"{{ taskUrl() }}\">ici</a> pour surveiller la progression.","OSTree Branch:":"Branche OSTree :","OSTree Branches":"Branches OSTree","OSTree Content":"Contenu OSTree","OSTree Repositories":"Référentiels OSTree","OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>":"Référentiels OSTree <div>{{ library.counts.ostree_repositories || 0 }}</div>","Override to Disabled":"Remplacer par Désactivé","Override to Enabled":"Remplacer par Activé","Package":"Paquet","Package Actions":"Actions de paquets","Package Filter:":"Filtre de paquet :","Package Group":"Groupe de paquets","Package Group Filter:":"Filtre de groupe de paquets :","Package Group successfully added.":"Groupe de paquets ajouté.","Package Group successfully removed.":"Groupe de paquets supprimé.","Package Groups":"Groupes de paquets","Package Groups for Repository:":"Groupe de paquets pour le référentiel :","Package Information":"Informations sur les paquetages","Package Install":"Installation de paquet","Package Installation, Removal, and Update":"Installation, suppression et mise à jour de paquet","Package Remove":"Suppression de paquets","Package successfully added.":"Paquet ajouté.","Package successfully removed.":"Paquet supprimé.","Package successfully updated.":"Paquet mis à jour.","Package Update":"Mise à jour de paquets","Package Updates":"Mises à jour des paquetages","Package:":"Paquet :","Package/Group Name":"Nom de paquet/groupe","Packages":"Paquets","Packages <div>{{ library.counts.packages || 0 }}</div>":"Paquets <div>{{ library.counts.packages || 0 }}</div>","Packages are automatically Applicable if they are Upgradable":"Les paquetages sont automatiquement applicables s'ils peuvent être mis à niveau","Packages for:":"Paquets pour :","Parameters":"Paramètres","Part of a manifest list":"Partie d'une liste de manifeste","Password":"Mot de passe","Password of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Mot de passe de l'utilisateur de référentiel en amont pour l'authentification. Laissez vide si le référentiel ne requiert pas d'authentification.","Paste contents of Content Credential":"Coller le contenu des informations d'identification de contenu","Path":"Chemin","Perform":"Effectuer","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"Veuillez sélectionner un environnement de cycle de vie et un affichage du contenu pour déplacer les clés d'activation affectées vers :","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"Veuillez sélectionner un environnement de cycle de vie et un affichage du contenu pour déplacer ces hôtes de contenu vers :","Please select a Lifecycle Environment.":"Veuillez sélectionner un environnement de cycle de vie.","Please select an environment.":"Veuillez sélectionner un environnement","Please select one from the list below and you will be redirected.":"Veuillez en sélectionner un à partir de la liste ci-dessous pour être redirigé.","Plus %y more errors":"Plus %y erreurs supplémentaires","Plus 1 more error":"Plus 1 erreur supplémentaire","Previous Lifecycle Environment (%e/%cv)":"Environnement de cycle de vie précédent (%e/%cv)","Prior Environment":"Environnement précédent","Product":"Produit","Product Count":"Nombre de produits","Product delete operation has been initiated in the background.":"La suppression du produit a été initiée en arrière-plan.","Product Enhancement Advisory":"Alerte d'amélioration de produit","Product information for:":"Information de produit pour :","Product Management for Sync Plan:":"Gestion de produits pour le plan de synchronisation :","Product Name":"Nom de produit","Product Options":"Options du produit","Product Saved":"Produit enregistré","Product sync has been initiated in the background.":"La synchronisation du produit a été initiée en arrière-plan.","Product syncs has been initiated in the background. Click %s to monitor the progress.":"La synchronisation du produit a été initiée en arrière-plan. Cliquez sur %s pour contrôler la progression.","Products":"Produits","Products <div>{{ library.counts.products || 0 }}</div>":"Produits <div>{{ library.counts.products || 0 }}</div>","Products for":"Produits pour","Products not covered":"Produits non couverts","Project Page":"Page du projet","Promote":"Promouvoir","Promote Content View:":"Promouvoir l'affichage du contenu","Promote Version":"Promouvoir la version","Promote Version {{ version.version }}":"Promouvoir la version {{ version.version }}","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"Promouvoir la version dans {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"Promu à %s","Promoting to %count environments.":"Promouvoir à %count environnements.","Promoting to 1 environment.":"Promouvoir à 1 environnement.","Promotion History":"Historique de promotion","Provides":"Fournit","Provisioning Details":"Détails de provisioning","Provisioning Host Details":"Détails d'hôte de provisioning","Publish Content View:":"Publier l'affichage du contenu :","Publish New Version":"Publier la nouvelle version","Publish via HTTP":"Publier via HTTP","Publish via HTTPS":"Publier via HTTPS","Published":"Publié le","Published At":"Publié à","Published new version":"Nouvelle version publiée","Published Repository Information":"Informations de référentiel publiées","Publishing and promoting to %count environments.":"Publier et promouvoir à %count environnements.","Publishing and promoting to 1 environment.":"Publier et promouvoir à 1 environnement.","Puppet Environment":"Environnement Puppet","Puppet module added to Content View":"Module puppet ajouté à l'affichage du contenu","Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées de module Puppet a été initiée en arrière-plan.\n Cliquez <a ng-href=\"{{ taskUrl() }}\">ici</a> pour contrôler la progression.","Puppet Module:":"Module Puppet :","Puppet Modules":"Modules Puppet","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Modules puppet <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"Modules puppet pour l'affichage du contenu :","Quantity":"Quantité","Quantity (To Add)":"Quantité (à ajouter)","RAM (GB)":"RAM (Go)","Range":"Gamme","Reboot Suggested":"Redémarrage suggéré","Reboot Suggested?":"Redémarrage suggéré ?","Recalculate\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>":"Recalculer\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>","Red Hat Repositories page":"Page des référentiels Red Hat","Red Hat Repositories page.":"Page des référentiels Red Hat.","Refresh Table":"Actualiser la table","Regenerate Repository Metadata":"Régénérer les métadonnées de référentiel","Register a Content Host":"Enregistrer un hôte de contenu","Register Content Host":"Enregistrer l'hôte de contenu","Register using subscription-manager:":"Enregistrer via subscription-manager :","Registered":"Enregistré","Registered By":"Enregistré par","Registered Through":"Enregistré via","Registry Name Pattern":"Modèle de nom de registre","Registry to Discover":"Registre à détecter","Registry URL":"URL de registre","Release":"Version","Release Version":"Version de publication","Release Version:":"Version de sortie :","Releases":"Versions","Remote execution plugin is required to be able to run any helpers.":"Le plug-in d'exécution à distance est requis pour permettre l'exécution des assistants.","Removal of selected repositories initiated successfully.":"Suppression des référentiels initiés.","Remove":"Supprimer","Remove {{ contentView.name }}":"Supprimer {{ contentView.name }}","Remove Activation Key \"{{ activationKey.name }}\"?":"Supprimer la clé d'activation \"{{ activationKey.name }}\" ?","Remove Container Image Manifests":"Supprimer les manifestes d'images de conteneurs","Remove Content Credential":"Supprimer les informations d'identification de contenu","Remove Content Credential {{ contentCredential.name }}":"Supprimer les informations d'identification de contenu {{ contentCredential.name }}","Remove Content View":"Supprimer l'affichage du contenu","Remove Content Views":"Supprimer les affichages du contenu","Remove Environment":"Supprimer l'environnement","Remove Errata":"Supprimer les errata","Remove Files":"Supprimer les fichiers","Remove From":"Supprimer de","Remove Host Collection \"{{ hostCollection.name }}\"?":"Supprimer la collection d'hôtes \"{{ hostCollection.name }}\" ?","Remove Module":"Supprimer le module","Remove Package Group":"Supprimer le groupe de paquets","Remove Packages":"Supprimer les paquets","Remove Product":"Supprimer le produit","Remove Product \"{{ product.name }}\"?":"Supprimer le produit \"{{ product.name }}\" ?","Remove Puppet Modules":"Supprimer les modules Puppet","Remove Repositories":"Supprimer les référentiels","Remove Repository":"Supprimer le référentiel","Remove Repository \"{{ repository.name }}\"?":"Supprimer le référentiel \"{{ repository.name }}\" ?","Remove Rule":"Supprimer une règle","Remove Selected":"Supprimer la sélection","Remove Successful.":"Suppression réussie.","Remove Sync Plan":"Supprimer le plan de synchronisation","Remove Sync Plan \"{{ syncPlan.name }}\"?":"Supprimer le plan de synchronisation \"{{ syncPlan.name }}\" ?","Remove Tags":"Supprimer les balises","Remove Version":"Supprimer la version","Remove Version Confirmation":"Supprimer la confirmation de la version","Removed %x host collections from activation key \"%y\".":"%x collections d'hôtes supprimées de la clé d'activation \"%y\".","Removed %x host collections from content host \"%y\".":"%x collections d'hôtes supprimées de l'hôte de contenu \"%y\".","Removed %x products from sync plan \"%y\".":"%x produits supprimés du plan de synchronisation \"%y\".","Removing Repositories":"Supprimer les référentiels","Repo Discovery":"Découverte de référentiels","Repositories":"Référentiels","Repositories containing branch {{ branch.name }}":"Référentiels contenant la branche {{ branch.name }}","Repositories containing Errata {{ errata.errata_id }}":"Référentiels contenant l'errata {{ errata.errata_id }}","Repositories containing package {{ package.nvrea }}":"Référentiels contenant le paquet {{ package.nvrea }}","Repositories for":"Référentiels pour","Repositories for Content View:":"Référentiels pour l'affichage du contenu :","Repositories for Deb:":"Référentiels pour Deb :","Repositories for Errata:":"Référentiels pour l'errata :","Repositories for File:":"Référentiels pour le fichier :","Repositories for Filter:":"Référentiels pour le filtre :","Repositories for Package:":"Référentiel pour le paquet :","Repositories for Product:":"Référentiels pour le produit :","Repositories for Puppet Module:":"Référentiels pour le module Puppet :","Repositories to Create":"Référentiels à créer","Repository":"Référentiel","Repository \"%s\" successfully deleted":"Le référentiel \"%s\" a été supprimé.","Repository %s successfully created.":"Référentiel %s créé.","Repository Count":"Nombre de référentiels","Repository created":"Référentiel créé","Repository Discovery":"Découverte de référentiels","Repository Label":"Etiquette de référentiel","Repository Name":"Nom du référentiel","Repository Options":"Options du référentiel","Repository Path":"Chemin d'accès au référentiel","Repository Saved.":"Référentiel enregistré.","Repository Selection":"Sélection de référentiel","Repository Sets":"Ensembles de référentiels","Repository Sets settings saved successfully.":"Paramètres des ensembles de référentiels enregistrés.","Repository Type":"Type de référentiel","Repository URL":"URl de référentiel","Repository:":"Référentiel :","Republish Repository Metadata":"Publier de nouveau les métadonnées de référentiel","Requires":"Nécessite","Reset to Default":"Rétablir les valeurs par défaut","Restart":"Redémarrer","Restart Selected":"Redémarrage sélectionné","Restart Services on Content Host \"{{host.name}}\"?":"Redémarrer les services sur l'hôte de contenu « {{host.name}} » ?","Restrict to architecture":"Restreindre à l'architecture","Restrict to Architecture":"Restreindre à l'Architecture","Result":"Résultat","Role":"Rôle","RPM":"RPM","RPM Name":"Nom RPM","rpm Package Groups":"Groupes de packages rpm","rpm Packages":"Packages rpm","RPMs":"Les RPM","Run Auto-Attach":"Exécuter Auto-attach","Run Repository Creation\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>":"Exécuter la création de référentiels\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>","Run Sync Plan":"Exécuter Sync Plan","Save":"Enregistrer","Save Successful.":"Enregistrement réussi.","Schema Version":"Version du schéma","Schema Version 1":"Schéma version 1","Schema Version 2":"Schéma version 2","Security":"Sécurité","Security Advisory":"Alerte de sécurité","Select":"Sélectionner","Select a Content Source:":"Sélectionnez une source de contenu :","Select A New Puppet Module To Add":"Sélectionner un nouveau module Puppet à ajouter","Select a Version":"Sélectionner une version","Select Action":"Choisir l'action","Select an Available Version of {{ $stateParams.moduleName }}":"Sélectionner une version disponible de {{ $stateParams.moduleName }}","Select an Organization":"Sélectionner une organisation","Select content units to ignore while synchronizing this repository.":"Sélectionner les unités de contenu à ignorer quand vous synchronisez ce référentiel.","Select Content View":"Sélectionner l'affichage de contenu","Select Environment":"Sélectionner l'environnement","Select new version":"Sélectionner une nouvelle version","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"Sélectionner les environnements de cycle de vie desquels vous souhaiteriez supprimer Version {{ version.version }} :","Select Version":"Sélectionner version","Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\" or \"Background\" download policies will be synced.":"Si vous sélectionnez « Terminer la synchronisation », seuls les référentiels Yum du produit sélectionné seront synchronisés. Si vous sélectionnez « Valider le contenu », seuls les référentiels Yum utilisant les règles de téléchargement « Immédiates » ou « Arrière-plan » seront synchronisés.","Selecting this option will result in contents that are no longer part of the upstream repository being removed during synchronization.":"La sélection de cette option entraînera la suppression de contenus ne faisant plus partie du référentiel en amont pendant la synchronisation.","Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification.":"Si vous sélectionnez cette option, Katello vérifiera que les certificats SSL des URL en amont sont signés par une autorité de certification (CA) de confiance. Désélectionnez-la si vous ne souhaitez pas que cette vérification intervienne.","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"La sélection de cette option entraînera la suppression totale de la Version et ne la rendra plus disponible à la promotion. La version doit être supprimée de tous les environnements de cycle de vie pour sélectionner cette option.","Serve via HTTP":"Servir via HTTP","Service Level":"Niveau de service","Service Level (SLA)":"Niveau de service (SLA)","Set Release Version":"Définir une version de publication","Severity":"Sévérité","Show affected Activation Keys":"Afficher les clés d'activation affectées","Show affected Content Hosts":"Afficher les hôtes de contenu affectés","Show All":"Tout afficher","Show all Repository Sets in Organization":"Afficher tous les ensembles de référentiels de l'organisation","Size":"Taille","Smart proxy currently syncing to your locations...":"Smart proxy en cours de synchronisation sur vos emplacements...","Smart proxy is synchronized":"Le smart proxy est synchronisé","Sockets":"Sockets","Solution":"Solution","Some of the Errata shown below may not be installable as they are not in this Content Host's\n Content View and Lifecycle Environment. In order to apply such Errata an Incremental Update is required.":"Certains errata affichés ci-dessous ne peuvent pas être installés puisqu'ils n'appartiennent pas à\n l'affichage de contenu et à l'environnement de cycle de vie de l'hôte de contenu. Pour appliquer ces errata, une mise à jour incrémentielle est requise.","Something went wrong when retrieving the resource.":"Quelque chose s'est passé lors de l'extraction de la ressource.","Something went wrong when saving the resource.":"Quelque chose s'est passé lors de l'enregistrement de la ressource.","Source":"Source","Source RPM":"RPM source","Source RPMs":"RPM source","SSL CA Cert":"Certificat CA SSL","SSL Certificate":"Certificat SSL","SSL Client Cert":"Certificat client SSL","SSL Client Key":"Clé du client SSL","Standard sync, optimized for speed by bypassing any unneeded steps.":"Synchronisation standard, dont la vitesse est optimisée en ignorant les étapes superflues.","Start Date":"Date de début","Start Time":"Date de lancement","Started At":"Date de début","Starting":"Démarrage","Starts":"Commence","State":"État ","Status":"État","Stream":"Flux","Subscription Details":"Détails de l'abonnement","Subscription Management":"Gestion des abonnements","Subscription Status":"Statut de l'abonnement","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Abonnements","Subscriptions for Activation Key:":"Abonnements pour la clé d'activation :","Subscriptions for Content Host:":"Abonnements pour l'hôte de contenu :","Subscriptions for:":"Abonnements pour :","Success!":"Succès !","Successfully added %s subscriptions.":"%s abonnements ajoutés.","Successfully deleted %cv version %ver.":"%cv version %ver supprimée.","Successfully initiated deletion of %cv version %ver.":"Suppression de %cv version %ver initiée.","Successfully initiated promotion of %cv version %ver to %env.":"Promotion de %cv version %ver à %env initiée.","Successfully initiated removal of %cv version %ver.":"Suppression de %cv version %ver initiée.","Successfully promoted %cv version %ver to %env":"%cv version %ver promue à %env.","Successfully published %cv version %ver and promoted to Library":"%cv version %ver publiée et promue à la Bibliothèque.","Successfully removed %cv version %ver from environments: %env":"%cv version %ver supprimée des environnements : %env","Successfully removed %s items.":"%s éléments supprimés.","Successfully removed %s subscriptions.":"%s abonnements supprimés.","Successfully removed 1 item.":"1 élément supprimé.","Successfully scheduled an update of all packages":"Planification réussie d'une mise à jour de tous les paquetages","Successfully scheduled package installation":"Planification réussie de l'installation du paquetage","Successfully scheduled package removal":"Planification réussie de la suppression du paquetage","Successfully scheduled package update":"Planification réussie de la mise à jour du paquetage","Successfully updated subscriptions.":"Abonnements mis à jour.","Successfully uploaded content:":"Téléchargement du contenu réussi :","Summary":"Récapitulatif","Support Level":"Niveau de service","Sync":"Sync","Sync Enabled":"Synchronisation activée.","Sync even if the upstream metadata appears to have no change. This option is only relevant for yum repositories and will take longer than an optimized sync. Choose this option if:":"La synchronisation intervient même si les métadonnées en amont semblent inchangées. Cette option ne s'applique que pour les référentiels yum et prendra plus de temps qu'une synchronisation optimisée. Choisissez cette option dans les cas suivants :","Sync Interval":"Intervalle de synchronisation","Sync Now":"Synchroniser","Sync Plan":"Plan de synchronisation","Sync Plan %s has been deleted.":"Le plan de synchronisation %s a été supprimé.","Sync Plan created and assigned to product.":"Plan de synchronisation créé et attribué au produit.","Sync Plan saved":"Plan de synchronisation enregistré","Sync Plan Saved":"Plan de synchronisation enregistré","Sync Plan:":"Plan de synchronisation :","Sync Plans":"Plans de synchronisation","Sync Selected":"Synchronisation sélectionnée","Sync Settings":"Paramètres de synchronisation","Sync State":"État de synchronisation","Sync Status":"Statut de la synchronisation","Synced manually, no interval set.":"Synchronisé manuellement, aucun intervalle défini.","Synchronization is about to start...":"La synchronisation va commencer...","Synchronization is being cancelled...":"La synchronisation a été annulée...","System Purpose":"Objectif système","Tags":"Balises","Task Details":"Détails de la tâche","Tasks":"Tâches","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"Les clés d'activation répertoriées ci-dessous utilisent actuellement cette version d'affichage du contenu. Avant de supprimer la version, veuillez déplacer ces clés d'activation vers un environnement de cycle de vie où cette version n'est pas utilisée.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"L'archive de cette version sera supprimée. Cette version ne sera plus disponible une fois la suppression terminée.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"L'archive de cette version ne sera pas supprimée. Cette version pourra toujours être promue à l'environnement du cycle de vie.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Les hôtes de contenu répertoriés ci-dessous utilisent actuellement cette version d'affichage du contenu. Avant de supprimer cette version, veuillez déplacer ces hôtes de contenu vers un environnement où cette version n'est pas utilisée.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"L'affichage de contenu ou environnement de cycle de vie doit être mis à jour pour rendre les errata disponibles pour ces hôtes.","The following actions can be performed on content hosts in this host collection:":"Les actions suivantes peuvent être effectuées sur les hôtes de contenu dans cette collection d'hôtes :","The host has not reported any applicable packages for upgrade.":"L'hôte n'a notifié aucun paquetage applicable à la mise à niveau.","The host has not reported any installed packages, registering with subscription-manager should cause these to be reported.":"L'hôte n'a notifié aucun paquet installé. L'inscription au subscription_manager aura dû entraîner une notification.","The host requires being attached to a content view and the lifecycle environment you have chosen has no content views promoted to it.\n See the <a href=\"/content_views\">content views page</a> to manage and promote a content view.":"L'hôte doit être relié à un affichage de contenu et à l'environnement de cycle de vie que vous avez choisi ne possède pas d'affichage de contenu.\n Veuillez consulter la <a href=\"/content_views\">page d'affichage de contenu</a> pour gérer et attribuer un affichage de contenu.","The page you are attempting to access requires selecting a specific organization.":"Veuillez sélectionner une organisation spécifique afin d'accéder à cette page.","The selected environment contains no Content Views, please select a different environment.":"L'environnement sélectionné ne contient pas d'affichage du contenu. Veuillez sélectionner un autre environnement.","The time the sync should happen in your current time zone.":"Heure à laquelle doit intervenir la synchronisation dans votre fuseau horaire.","There are {{ errataCount }} total Errata in this organization but none match the above filters.":"Il y a un total de {{ errataCount }} errata dans cette organisation, mais aucun ne correspond aux filtres ci-dessus.","There are {{ packageCount }} total Packages in this organization but none match the above filters.":"Il y a un total de {{ packageCount }} paquetages dans cette organisation, mais aucun ne correspond aux filtres ci-dessus.","There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Aucun référentiel Docker n'est actuellement associé à cet affichage de contenu. Vous pouvez en ajouter en cliquant sur l'onglet « Ajouter » ci-dessus.","There are currently no Docker Repositories to add to this Content View,":"Il n'y a actuellement aucun référentiel Docker à ajouter à cet affichage du contenu,","There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Il n'y a actuellement aucun référentiel de fichier associé à cet affichage du contenu. Vous pouvez en ajouter en cliquant sur l'onglet « Ajouter » ci-dessus.","There are currently no File Repositories to add to this Content View,":"Il n'y a actuellement aucun référentiel de fichier à ajouter à cet affichage du contenu,","There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Il n'y a actuellement aucun référentiel OASTree associé à cet affichage du contenu. Vous pouvez en ajouter en cliquant sur l'onglet « Ajouter » ci-dessus.","There are currently no OSTree Repositories to add to this Content View,":"Il n'y a actuellement aucun référentiel OSTree à ajouter à cet affichage du contenu,","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Il n'y a actuellement aucun référentiel associé à cet affichage du contenu. Vous pouvez en ajouter quelques uns en cliquant sur l'onglet « Ajouter » ci-dessus.","There are currently no repositories to add to this Content View,":"Il n'y a actuellement aucun référentiel à ajouter à cet affichage du contenu,","There are no %(contentType)s that match the criteria.":"Il n'existe aucun %(contentType)s correspondant à ce critère","There are no Content Views in this Environment.":"Cet environnement ne contient pas d'affichage de contenu.","There are no Content Views that match the criteria.":"Aucun affichage de contenu ne correspond à ce critère.","There are no Errata associated with this Content Host to display.":"Il n'y a aucun errata associé à cet hôte de contenu à afficher.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"Il n'existe aucun errata dans cette organisation. Créer un ou plusieurs Produit(s) avec Errata pour afficher les Errata sur cette page.","There are no Errata to display.":"Aucun errata à afficher.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Aucune collection d'hôte disponible. Vous pouvez créer de nouvelles collections d'hôtes après avoir sélectionné « Collections d'hôtes » sous « Hôtes » dans le menu principal.","There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page.":"Il n'existe aucun paquet dans cette organisation. Créer un ou plusieurs Produit(s) avec des paquets pour afficher de paquets sur cette page.","There are no Sync Plans available. You can create new Sync Plans after selecting 'Sync Plans' under 'Hosts' in main menu.":"Aucun plan de synchronisation disponible. Vous pouvez créer d'autres plans de synchronisation en sélectionnant « Plans de synchronisation » sous « Hôtes » dans le menu principal.","There are no Traces to display.":"Aucune trace à afficher.","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"Une tâche de mise à jour croissante est actuellement en cours. Cette mise à jour doit se terminer avant d'appliquer les mises à jour existantes.","There is currently no history associated with this Content View.":"Aucun historique n'est actuellement associé à cet affichage de contenu.","This action will affect only those Content Hosts that require a change.\n If the Content Host does not have the selected Subscription no action will take place.":"Cette action n'affectera que les hôtes de contenu qui exigent un changement.\n Si l'hôte de contenu ne dispose pas de l'abonnement sélectionné, aucune action ne sera prise.","This activation key is not associated with any content hosts.":"Cette clé d'activation n'est associée à aucun hôte de contenu.","This activation key may be used during system registration. For example:":"Cette clé d'activation peut être utilisée au cours de l'enregistrement du système. Exemple :","This Container Image Tag is not present in any Lifecycle Environments.":"Cette balise d'image de conteneur n'est présente dans aucun environnement de cycle de vie.","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Cet affichage de contenu ne possède aucune version, créez votre première version d'affichage de contenu à l'aide du bouton Publier une nouvelle version situé à droite.","This filter applies only to a subset of repositories in the content view.":"Le filtre s'applique uniquement à un sous-ensemble de référentiels dans l'affichage du contenu.","This filter applies to all repositories in the content view (current and future).":"Ce filtre s'applique à tous les référentiels dans l'affichage du contenu (actuel et futur).","This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n Change the setting \"Delete Host upon Unregister\" to false on the <a href=\"/settings\">settings page</a> to prevent this.":"Cette opération peut également supprimer les ressources gérées liées à l'hôte, telles que les machines virtuelles et les enregistrements DNS.\n Changez le paramètre « Supprimer l'hôte lors du désenregistrement » sur false dans la <a href=\"/settings\">page des paramètres</a> pour empêcher cela.","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Cette version ne peut pas être supprimée de l'un des environnements de cycle de vie à cause de l'une des raisons ci-dessous.","This Version is not associated with any Lifecycle Environments.":"Cette version n'est associée à aucun environnement de cycle de vie.","This version will be removed from:":"Cette version sera supprimée de :","Title":"Titre","to manage them individually.":"pour les gérer individuellement.","To register a content host to this server, follow these steps.":"Pour enregistrer un hôte de contenu sur ce serveur, suivez ces étapes.","To report package & errata information:":"Pour rapporter le package et les informations d'errata :","Toggle Dropdown":"Afficher la liste déroulante","Topic":"Sujet","Traces":"Traces","Traces for:":"Traces pour :","Type":"Type","Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}":"Type : {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}","Unable to determine version":"Impossible de déterminer la version","Unauthenticated Pull":"Extraction non authentifiée","Unknown":"Inconnu","Unlimited Content Hosts:":"Hôtes de contenu illimité :","Unlimited Hosts":"Hôtes illimités","Unregister Host":"Désenregistrer l'hôte","Unregister Host \"{{host.name}}\"?":"Désenregistrer l'hôte « {{host.name}} » ?","Unregister Options:":"Options de désenregistrement :","Unregister the host as a subscription consumer. Provisioning and configuration information is preserved.":"Annuler l'enregistrement de l'hôte en tant que consommateur d'abonnements. Les informations de mise en service et de configuration sont conservées.","Unsupported Type!":"Type non pris en charge !","Update":"Mettre à jour","Update All Packages":"Mettre à jour tous les paquetages","Update Packages":"Mettre à jour les paquetages","Update Repositories":"Mettre à jour les référentiels","Update Sync Plan":"Mettre à jour le plan de synchronisation","Updated":"Mis à jour","Updated errata filter -":"Mettre à jour le filtre d'errata -","Updated On":"Mis à jour le","Upgradable":"Pouvant être mis à niveau","Upgradable For":"Pouvant être mis à niveau pour","Upgradable Package":"Paquetage pouvant être mis à niveau","Upgrade Available":"Mise à niveau disponible","Upgrade Selected":"Mise à niveau sélectionnée","Upload":"Télécharger","Upload Content Credential file":"Télécharger le fichier des informations d'identification de contenu","Upload File":"Transférer le fichier","Upload Package":"Télécharger le package","Upload Puppet Module":"Télécharger le module puppet","Uploading...":"Téléchargement...","Upstream Authorization":"Autorisation en amont","Upstream Image Name":"Nom de l'image en amont","Upstream Password":"Mot de passe en amont","Upstream Repository Name":"Nom du référentiel en amont","Upstream Sync Policy":"Stratégie de synchronisation en amont","Upstream URL":"URL en amont","Upstream Username":"Nom d'utilisateur en amont","Url":"Url","URL of the registry you want to sync. Example: https://registry-1.docker.io/":"URL du registre que vous souhaiter sync. Exemple : https://registry-1.docker.io/","URL to Discover":"URL à découvrir","Usage Type":"Type d'utilisation","Use the cancel button on content view selection to revert your lifecycle environment selection.":"Utiliser le bouton Annuler sur la sélection d'affichage du contenu pour rétablir la sélection de votre environnement de cycle de vie.","Used as":"Utilisé en tant que","User":"Utilisateur","Username":"Nom d'utilisateur","Username of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Nom d'utilisateur de l'utilisateur du référentiel en amont pour l'authentification. Laissez vide si le référentiel ne requiert pas d'authentification.","Using a username and password:":"Utiliser un nom d'utilisateur et un mot de passe :","Using an Activation Key:":"Utiliser une clé d'activation :","Validate Content Sync":"Valider la synchronisation du contenu","Variant":"Variante","Verify SSL":"Vérifier SSL","Version":"Version","Version {{ rule.version }}":"Version {{ rule.version }}","Version Deletion":"Suppression de version","Version Details":"Détails de la version","Version:":"Version :","Versions":"Versions","Versions for Content View:":"Versions pour l'affichage du contenu :","Versions for Puppet Module:":"Versions pour le module Puppet :","via Katello agent":"via l'agent Katello","via Katello Agent":"via Agent Katello","via remote execution":"via exécution distante","via remote execution - customize first":"via exécution distante - personnaliser tout d'abord","View Container Image Manifest Lists for Repository:":"Afficher les listes de manifestes d'images de conteneurs pour le référentiel :","View Docker Tags for Repository:":"Afficher les balises Docker pour le référentiel :","Virtual Guest":"Invité virtuel","Virtual Guests":"Invités virtuels","Virtual Host":"Hôte virtuel","weekly":"hebdomadaire","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Hebdomadaire le {{ product.sync_plan.sync_date | date:'EEEE' }} à {{ product.sync_plan.sync_date | date:'mediumTime' }} (heure du serveur)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Lorsque Auto Attach est désactivé, l'enregistrement de systèmes sera attaché à tous les abonnements associés.","When validating content, repositories using the \"On Demand\" download policy will download all packages within the repository.":"Lors de la validation du contenu, les référentiels utilisant la stratégie de téléchargement « À la demande » téléchargeront tous les paquetages contenus dans le référentiel.","Working":"Chargement","Yes":"Oui","You cannot remove these repositories because they belong to a Red Hat product.":"Vous ne pouvez pas supprimer ces référentiels car ils appartiennent à un produit Red Hat.","You cannot remove these repositories because you do not have permission.":"Vous ne pouvez pas supprimer ces référentiels car nous n'avez pas la permission.","You cannot remove this product because it is a Red Hat product.":"Vous ne pouvez pas supprimer ce produit car c'est un produit Red Hat.","You cannot remove this product because it was published to a content view.":"Vous ne pouvez pas supprimer ce produit car il a été publié sur un affichage du contenu.","You cannot remove this product because you do not have permission.":"Vous ne pouvez pas supprimer ces produits car nous n'avez pas de permission.","You cannot remove this repository because it is a Red Hat repository.":"Vous ne pouvez pas supprimer ce référentiel car c'est un référentiel Red Hat.","You cannot remove this repository because it was published to a content view.":"Vous ne pouvez pas supprimer ce référentiel car il a été publié sur un affichage du contenu.","You cannot remove this repository because you do not have permission.":"Vous ne pouvez pas supprimer ce référentiel car nous n'avez pas de permission.","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"Vous n'avez pour l'instant aucune Clé d'activation. Vous pouvez ajouter des Clés d'activation en utilisant le bouton situé sur la droite.","You currently don't have any Container Image Tags.":"Vous ne possédez aucune balise d'image de conteneur actuellement.","You currently don't have any Content Credential, you can add Content Credentials using the button on the right.":"Vous ne possédez actuellement aucune information d'identification de contenu. Vous pouvez ajouter des informations d'identification de contenu à l'aide du bouton situé à droite.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"Vous n'avez pour l'instant aucun hôte de contenu. Vous pouvez créer des nouveaux hôtes de contenu en sélectionnant Hôte de contenu à partir du menu principal et en cliquant ensuite sur le bouton situé à droite.","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"Vous ne possédez aucun hôte de contenu, vous pouvez en enregistrer un en cliquant sur le bouton situé à droite et en suivant les instructions.","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"Vous ne possédez aucun affichage de contenu. Un affichage de contenu peut être ajouté à l'aide du bouton situé à droite.","You currently don't have any Debs.":"Vous n'avez actuellement aucun Deb.","You currently don't have any Files.":"Vous ne possédez aucun fichier actuellement.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"Vous ne possédez actuellement aucun filtre inclus dans cet affichage du contenu. Vous pouvez ajouter un nouveau filtre à l'aide du bouton situé sur la droite.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"Vous ne possédez actuellement aucune Collection d'hôtes. Vous pouvez ajouter des Collections d'hôtes à l'aide du bouton situé à droite.","You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.":"Vous n'avez pour l'instant aucun Hôte dans ce groupe d'hôtes. Vous pouvez ajouter des Hôtes de contenu après avoir sélectionné l'onglet « Ajouter ».","You currently don't have any OSTree Branches.":"Vous ne possédez aucune branche OSTree pour le moment.","You currently don't have any Products associated with this Content Credential.":"Vous n'avez actuellement aucun produit associé à ces informations d'identification de contenu.","You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu":"Vous ne possédez actuellement aucun Produit auquel vous abonner, vous pouvez ajouter des Produits après avoir sélectionné « Produits » sous « Contenu » dans le menu principal","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"Vous ne possédez actuellement aucun produit<span bst-feature-flag=\"custom_products\">. Vous pouvez ajouter des Produits en utilisant le bouton sur la droite</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"Vous ne possédez actuellement aucun Module Puppet inclus dans cet affichage du contenu. Vous pouvez ajouter des Modules Puppet à l'aide du bouton situé sur la droite.","You currently don't have any Puppet Modules.":"Vous ne possédez aucun module Puppet actuellement.","You currently don't have any Repositories associated with this Content Credential.":"Vous n'avez actuellement aucun référentiel associé à ces informations d'identification de contenu.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"Vous ne possédez actuellement aucun filtre inclus dans cet affichage de contenu. Vous pouvez ajouter des référentiels à l'aide du bouton situé sur la droite.","You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab.":"Vous ne possédez actuellement aucun Abonnement associé à cette Clé d'activation. Vous pouvez ajouter des Abonnements après avoir sélectionné l'onglet « Ajouter ».","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"Vous ne possédez aucun Plan de synchronisation. Un plan de synchronisation peut être créé à l'aide du bouton situé à droite.","You do not have any Installed Products":"Vous n'avez aucun produit installé","You must select a content view in order to save your environment.":"Vous devez sélectionner un affichage de contenu pour enregistrer votre environnement.","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"Vous devez sélectionner un nouvel affichage du contenu pour que votre modification d'environnement puisse être enregistrée. Utiliser le bouton Annuler sur la sélection d'affichage du contenu pour rétablir la sélection de votre environnement.","You must select a new content view before your change of lifecycle environment can be saved.":"Vous devez sélectionner un nouvel affichage du contenu pour que votre modification d'environnement de cycle de vie puisse être enregistrée.","You must select at least one Content Host in order to apply Errata.":"Vous devez sélectionner au moins un Hôte de contenu afin d'appliquer les errata.","You must select at least one Errata to apply.":"Vous devez sélectionner au moins un errata à appliquer.","You must select at least one repository.":"Vous devez sélectionner au moins un référentiel.","Your search returned zero %(contentType)s that match the criteria.":"Votre recherche n'a retourné aucun %(contentType)s correspondant au critère.","Your search returned zero Activation Keys.":"Votre recherche n'a retourné aucune clé d'activation.","Your search returned zero Container Image Tags.":"Votre recherche n'a retourné aucune balise d'image de conteneur.","Your search returned zero Content Credential.":"Votre recherche n'a retourné aucune information d'identification de contenu.","Your search returned zero Content Hosts.":"Votre recherche n'a retourné aucun hôte de contenu.","Your search returned zero Content View.":"Votre recherche n'a retourné aucun affichage du contenu.","Your search returned zero Content Views":"Votre recherche n'a retourné aucun affichage du contenu","Your search returned zero Content Views.":"Votre recherche n'a retourné aucun affichage du contenu.","Your search returned zero Debs.":"Votre recherche n'a retourné aucun Deb.","Your search returned zero Errata.":"Votre recherche n'a retourné aucun erratum.","Your search returned zero Erratum.":"Votre recherche n'a retourné aucun erratum.","Your search returned zero Files.":"Votre recherche n'a retourné aucun fichier.","Your search returned zero Filters.":"Votre recherche n'a retourné aucun filtre.","Your search returned zero Host Collections.":"Votre recherche n'a retourné aucune collection d'hôtes.","Your search returned zero Hosts.":"Votre recherche n'a retourné aucun hôte.","Your search returned zero Lifecycle Environments.":"Votre recherche n'a retourné aucun environnement de cycle de vie.","Your search returned zero Packages.":"Votre recherche n'a retourné aucun paquetage.","Your search returned zero Products.":"Votre recherche n'a retourné aucun produit.","Your search returned zero Puppet Modules.":"Votre recherche n'a retourné aucun module Puppet.","Your search returned zero Repositories":"Votre recherche n'a retourné aucun référentiel","Your search returned zero Repositories.":"Votre recherche n'a retourné aucun référentiel.","Your search returned zero repository sets.":"Votre recherche n'a retourné aucun ensemble de référentiels.","Your search returned zero Repository Sets.":"Votre recherche n'a retourné aucun ensemble de référentiels.","Your search returned zero results.":"Votre recherche n'a retourné aucun résultat.","Your search returned zero Subscriptions.":"Votre recherche n'a retourné aucun abonnement.","Your search returned zero Sync Plans.":"Votre recherche n'a retourné aucun plan de synchronisation.","Your search returned zero Traces.":"Votre recherche n'a retourné aucune trace.","Your search returned zero versions for {{ $stateParams.moduleName }}":"Votre recherche n'a retourné aucune version pour {{ $stateParams.moduleName }}","Yum Content":"Contenu Yum","Yum Metadata Checksum":"Somme de contrôle de métadonnées Yum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"La génération de métadonnées Yum a été initiée en arrière-plan. Cliquez <a href=\"{{ taskUrl() }}\">ici</a> pour vérifier la progression.","Yum Repositories":"Référentiels Yum","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Référentiels Yum <div>{{ library.counts.yum_repositories || 0 }}</div>"});
6
6
  gettextCatalog.setStrings('it', {"- Date and Type":"- Data e Tipo","-- select an interval --":"-- selezionare un intervallo --","(Not all Activation Keys editable )":"(Non tutte le chiavi di attivazione sono modificabili )","(Not all Content Hosts editable )":"(Non tutti gli host di contenuto sono modificabili )","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} non può essere rimosso poichè una o più versioni della Visualizzazione del contenuto sono state avanzate nell'ambiente Ciclo di vita.\n Ogni versione deve essere rimossa dal rispettivo ambiente Ciclo di vita, prima di poter cancellare una Visualizzazione del contenuto.","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} applicabile,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} Installabile","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} Errata","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} Errata","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} Moduli Puppet","{{ repository.content_counts.rpm }} Packages":"Pacchetti {{ repository.content_counts.rpm }}","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} Pacchetti","{{ repository.last_sync_words }} ago":"{{ repository.last_sync_words }} fa","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} Chiavi di attivazione saranno spostate su {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} Host di contenuto saranno spostati su {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}","{{ type.display }}":"{{ type.display }}","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} Errata","{{ version.package_count }} Packages":"Pacchetti {{ version.package_count }}","{{ version.puppet_module_count }} Puppet Modules":"Moduli Puppet {{ version.puppet_module_count }}","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* Queste versioni contrassegnate di Visualizzazione del contenuto fanno parte di Visualizzazioni composite. I componenti relativi da aggiornare sono di seguito elencati. ","%(consumed)s out of %(quantity)s":"%(consumed)s di %(quantity)s","1 repository sync in progress.":["1 sincronizzazione del repository in corso.","{{ product.sync_summary.pending}} sinc dei repository in corso."],"1 successfully synced repository.":["1 repository sincronizzato con successo.","{{ product.sync_summary.success}} repository sincronizzati con successo."],"A composite view contains other content views.":"Una visualizzazione composita presenta altre visualizzazioni del contenuto.","Account":"Account","Action":"Azione","Action Type":"Tipo di Azione","Actions":"Azioni","Activation Key":["Chiave di attivazione","Chiavi di attivazione"],"Activation Key Content":"Contenuto chiavi di attivazione","Activation Key removed.":"Chiave di attivazione rimossa.","Activation Key updated":"Chiave di attivazione aggiornata","Activation Key:":"Chiave di attivazione:","Activation Keys":"Chiavi di attivazione","Activation Keys using Version {{ version.version }}":"Chiavi di attivazione usando la versione {{ version.version }}","Add":"Aggiungi","Add Content Hosts to:":"Aggiungere host di contenuto a:","Add Content Views":"Aggiungere le visualizzazioni del contenuto","Add Errata":"Aggiungi errata","Add New Environment":"Aggiungere un nuovo ambiente","Add New Module":"Aggiungi nuovo modulo","Add Package Group":"Aggiungi gruppo di pacchetti","Add Repositories":"Aggiungi repositori","Add Selected":"Aggiungi selezione","add some repositories.":"aggiungi alcuni repositori.","Add Subscriptions for Activation Key:":"Aggiungi sottoscrizioni per la chiave di attivazione:","Add To":"Aggiungi a","Added %x host collections to activation key \"%y\".":"Aggiunti gli host %x alla chiave di attivazione \"%y\".","Added %x host collections to content host \"%y\".":"Aggiunti %x insiemi di host all'host di contenuto \"%y\".","Added %x products to sync plan \"%y\".":"Aggiunti %x prodotti per la programmazione della sincronizzazione \"%y\".","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Aggiunta ambiente ciclo di vita alla fine di \"{{ priorEnvironment.name }}\"","Advisory":"Advisory","Affected Activation Keys":"Chiavi di attivazione interessate","Affected Content Hosts":"Host di contenuto interessati","Affected repositories have been updated.":"I repositori interessati sono stati aggiornati.","All Content Views":"Visualizzazione di tutti i contenuti","All Products":"Tutti i prodotti","All Repositories":"Tutti i repositori","All Versions":"Tutte le versioni","An error occurred removing the Activation Key:":"Si è verificato un errore durante la rimozione della chiave di attivazione.","An error occurred removing the content hosts.":"Si è verificato un errore durante la rimozione degli host di contenuto.","An error occurred removing the environment:":"Si è verificato un errore durante la rimozione dell'ambiente:","An error occurred removing the Host Collection:":"Si è verificato un errore durante la rimozione dell'insieme di host.","An error occurred removing the subscriptions.":"Si è verificato un errore durante la rimozione delle sottoscrizioni.","An error occurred saving the Activation Key:":"Si è verificato un errore durante il salvataggio della chiave di attivazione:","An error occurred saving the Content Host:":"Si è verificato un errore durante il salvataggio dell'host di contenuto:","An error occurred saving the Environment:":"Si è verificato un errore durante il salvataggio dell'Ambiente:","An error occurred saving the Filter:":"Si è verificato un errore durante il salvataggio del Filtro:","An error occurred saving the Host Collection:":"Si è verificato un errore durante il salvataggio dell'insieme di host.","An error occurred saving the Product:":"Si è verificato un errore durante il salvataggio del Prodotto:","An error occurred saving the Repository:":"Si è verificato un errore durante il salvataggio del Repositorio:","An error occurred saving the Sync Plan:":"Si è verificato un errore durante il salvataggio della Programmazione di sincronizzazione:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Si è verificato un errore durante l'assegnazione automatica delle sottoscrizioni. Controllare il log per maggiori informazioni.","An error occurred updating the Content View:":"Si è verificato un errore durante l'aggiornamento della Visualizzazione del contenuto:","Applicable":"Applicabile","Applicable Errata":"Errata applicabile","Apply":"Applica","Apply {{ errata.errata_id }}":"Applica {{ errata.errata_id }}","Apply Errata":"Applica Errata","Apply Errata to Content Hosts":"Applica errata agli host di contenuto","Apply Errata to Content Hosts immediately after publishing.":"Applica errata agli host di contenuto immediatamente dopo la pubblicazione.","Apply Selected":"Applica quelli selezionati","Apply to Content Hosts":"Applica agli host di contenuto","Apply to Hosts":"Applica agli host","Applying":"Applicazione in corso","Arch":"Arch","Archived Copy":"Copia archiviata","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"Sei sicuro di voler aggiungere l'host di contenuto {{ table.numSelected }} selezionato all'insieme di host desiderati?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"Sei sicuro di voler assegnare gli host di contenuto {{ table.numSelected }} selezionati su {{ selected.contentView.name }} in {{ selected.environment.name }}?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Sei sicuro di voler installare {{ content.content }} sui sistemi {{ getSelectedSystemIds().length }} selezionati?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"Sei sicuro di voler rimuovere {{ content.content }} dai sistemi {{ getSelectedSystemIds().length }} selezionati?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"Sei sicuro di voler rimuovere la chiave di attivazione \"{{ activationKey.name }}\"?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"Sei sicuro di voler rimuovere l'insieme \"{{ hostCollection.name }}\"?","Are you sure you want to remove product \"{{ product.name }}\"?":"Sei sicuro di voler rimuovere il prodotto \"{{ product.name }}\"?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"Sei sicuro di voler rimuovere il repository \"{{ repository.name }}\"?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"Sei sicuro di voler rimuovere la programmazione di sincronizzazione \"{{ syncPlan.name }}\"?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"Sei sicuro di voler rimuovere gli host di contenuto {{ table.numSelected }} dall'insieme di host desiderato?","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Sei sicuro di voler aggiornare {{ content.content }} sui sistemi {{ getSelectedSystemIds().length }} selezionati?","As part of this deletion, 1 Content View Version will be deleted.":["Come parte di questo processo, 1 Versione della visualizzazione del contenuto verrà cancellata.","Come parte di questo processo, {{ versions.length }} Versioni della visualizzazione del contenuto verranno cancellate."],"Assign":"Assegna","Associations":"Associazioni","At least one Errata needs to be selected to Apply.":"Selezionare almeno un errata da applicare.","Attached":"Connesso","Author":"Autore","Auto-Attach":"Auto-Attach","Automatic":"Automatico","Available Content Views for Composite Content View:":"Visualizzazioni del contenuto disponibili per una visualizzazione multipla:","Available Puppet Modules for Content View:":"Moduli Puppet disponibili per una Visualizzazione del contenuto:","Back":"Indietro","Back To Errata List":"Torna all'Elenco di errata","Basic Information":"Informazioni di base","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Di seguito vengono riportati gli insiemi del contenuto dei repositori attualmente disponibili per questo host per mezzo delle proprie sottoscrizioni. Per le sottoscrizioni di Red Hat, è possibile ottenere altri contenuti attraverso","Bug Fix":"Bug Fix","Bug Fix Advisory":"Bug Fix Advisory","Bugfix":"Bugfix","Cancel":"Cancella","Capacity":"Capacità","Change assigned Lifecycle Environment or Content View":"Modifica la Visualizzazione del contenuto o l'Ambiente Ciclo di vita assegnati","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"Per la modifica delle impostazioni predefinite degli host che eseguono la registrazione con questa chiave di attivazione, è necessario avere la versione 1.10 o più recente di subscription-manager sull'host in questione.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"Per la modifica delle impostazioni predefinite è necessario aver installato la versione 1.10, o versione più recente, di subscription-manager su questo host.","Checksum":"Checksum","Choose a lifecycle environment from the available promotion paths.":"Selezionere un ambiente Ciclo di vita dai percorsi di avanzamento disponibili.","Click here to check the status of the task.":"Fai clic qui per controllare lo stato dell'attività.","Click here to select Errata for an Incremental Update.":"Fai clic qui per selezionare l'Errata per un Aggiornamento incrementale","Close":"Chiudi","Completely remove version?":"Rimuovere completamente la versione?","Components":"Componenti","Components:":"Componenti:","Composite":"Composita","Composite View":"Visualizzazione composita","Composite View?":"Visualizzazione composita?","Confirm":"Conferma","Confirm Remove":"Conferma rimozione","Confirm Version Removal: Version {{ version.version }}":"Conferma rimozione versione: Versione {{ version.version }}","Content":"Contenuto","Content Counts":"Conteggi contenuto","Content Host":"Host contenuto","Content Host Bulk Content":"Contenuto in gruppo per l'host di contenuto","Content Host Bulk Subscriptions":"Sottoscrizioni in gruppo per l'host di contenuto","Content Host Content":"Contenuto per l'host","Content Host Counts":"Conteggi host di contenuto","Content Host Limit":"Limite host di contenuto","Content Host Properties":"Proprietà per l'host di contenuto","Content Host Registration":"Registrazione per l'host di contenuto","Content Host Status":"Stato dell'host di contenuto","Content Host:":"Host di contenuto:","Content Hosts":"Host di contenuto","Content Hosts for Activation Key:":"Host di contenuto per la chiave di attivazione:","Content Hosts for:":"Host di contenuto per:","Content Hosts using Version {{ version.version }}":"Host di contenuto usando la Versione {{ version.version }}","Content Type":"Tipo di Contenuto","Content View":"Visualizzazione contenuto","Content View Name":"Nome visualizzazione del contenuto","Content View updated.":"Visualizzazione contenuto aggiornata.","Content View Version":"Versione visualizzazione del contenuto","Content View:":"Visualizzazione contenuto:","Content Views":"Visualizzazioni contenuto","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Visualizzazioni contenuto <div>{{ library.counts.content_views || 0 }}</div>","Content Views for Composite Content View:":"Visualizzazioni del contenuto per una visualizzazione composita:","Contract":"Contratto","Copy Activation Key":"Copia chiave di attivazione","Cores per Socket":"Core per socket","Create":"Crea","Create new view":"Crea nuova visualizzazione","Create New View":"Crea nuova visualizzazione","Create Selected":"Crea i selezionati","Create Sync Plan":"Crea programmazione per la sincronizzazione","Create view from existing views":"Crea visualizzazione dalle visualizzazionii esistenti","Critical":"Critico","Current Subscriptions for Activation Key:":"Sottoscrizioni correnti per la chiave di attivazione:","Currently Selected Puppet Modules":"Moduli Puppet correnti selezionati","CVEs":"CVE","daily":"giornaliero","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Giornalmente il {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)","Date":"Data","Default":"Predefinita","Delete Hosts":"Rimuovi host","Delete Version {{ version.version }}":"Cancella versione {{ version.version }}","Deleted from %s":"Cancellato da %s","Deleting from %count environments.":"Rimozione da %count ambienti.","Deleting from 1 environment.":"Rimozione da 1 ambiente.","Deletion from %s":"Rimozione da %s","Description":"Descrizione","Details":"Dettagli","Details for Activation Key:":"Dettagli per la chiave di attivazione:","Details for Content View:":"Dettagli per la visualizzazione del contenuto:","Details for Product:":"Dettagli per il prodotto:","Disable":"Disabilita","Discover":"Trova","Docker Repositories":"Repository Docker","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Repository Docker <div>{{ library.counts.docker_repositories || 0 }}</div>","Edit":"Modifica","Enable":"Abilita","End Date":"Data di fine","Enhancement":"Miglioramenti","Enter Package Group Name(s)...":"Inserire i nomi dei gruppi di pacchetti...","Enter Package Name(s)...":"Inserire i nomi dei pacchetti...","Environment":"Ambiente","Environment saved":"Ambiente salvato","Environments":"Ambienti","Environments List":"Elenco ambienti","Equal To":"Uguale a ","Errata":"Errata","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Errata <div>{{ library.counts.errata.total || 0 }}</div>","Errata Details":"Informazioni errata","Errata Filter:":"Filtro errata:","Errata for:":"Errata per:","Errata ID":"ID errata","Errata Installation":"Installazione errata","Errata successfully added.":"Errata aggiunto con successo.","Errata successfully removed.":"Errata rimosso con successo.","Errata Task List":"Elenco attività errata","Errata Tasks":"Attività errata","Errata Type":"Tipo di errata","Errata:":"Errata:","Erratum - by ID":"Erratum - per ID","Erratum Date Range":"Intervallo date per l'Erratum","Error during upload:":"Errore durante il caricamento:","Event":"Evento","Exclude":"Escludi","Existing Product":"Prodotto esistente","Expires":"Scade","File too large. Please use the CLI instead.":"Il file è troppo grande. Usare CLI.","Filter":"Filtro","Filter information for:":"Informazioni filtro per:","Filter Saved":"Filtro salvato","Filter:":"Filtro:","Filter...":"Filtro...","Filters":"Filtri","Filters for Content View:":"Filtri per la Visualizzazione del contenuto:","Filters successfully removed.":"Filtri rimossi con successo.","Finished At":"Terminato ","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Per sistemi operativi come Red Hat Enterprise Linux 5 o CentOS 5 è consigliato usare sha1.","GPG Key":"Chiave GPG","Greater Than":"Maggiore di","Group Install":"Installazione gruppo","Group Remove":"Rimozione gruppo","here":"qui","Hide affected Activation Keys":"Nascondi le chiavi di attivazione interessate","Hide affected Content Hosts":"Nascondi gli host di contenuto interessati","History":"Cronologia","History for Content View:":"Cronologia per la Visualizzazione del contenuto","Host Collection Management":"Gestione insieme di host","Host Collection Membership":"Appartenenza insieme di host","Host Collection removed.":"Insieme di host rimosso.","Host Collection updated":"Insieme di host aggiornato","Host Collection:":"Insieme di host:","Host Collections":"Insiemi di host","Host Collections for:":"Insiemi di host per:","Host Count":"Conteggio host","Host Group":"Gruppo di host","Hostname":"Hostname","hourly":"ad ogni ora","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"Ogni ora {{ product.sync_plan.sync_date | date:'m' }} minuti e {{ product.sync_plan.sync_date | date:'s' }} secondi","Id":"Id","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Se preferisci spostare parte di queste Chiavi di attivazione su visualizzazioni diverse del contenuto o Ambienti Ciclo di vita.","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Se preferisci spostare parte di queste Chiavi di attivazione su visualizzazioni diverse del contenuto, o Ambienti Ciclo di vita, fare clic <a href=\"{{ activationKeyLink() }}\">qui</a> per una loro gestione individuale.","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Se preferisci spostare parte di questi host di contenuto su visualizzazioni diverse o ambienti fare clic <a href=\"{{ contentHostsLink() }}\">qui</a> per una loro gestione di gruppo.","Image":"Immagine","Important":"Importante","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Per aggiungere una visualizzazione del contenuto ad una visualizzazione composita, è necessario prima pubblicare una versione iniziale della visualizzazione stessa.","Include":"Includi","Incremental Update":"Aggiornamento incrementale","Install":"Installa","Install Selected":"Installa i selezionati","Install the pre-built bootstrap RPM:":"Installare l'RPM bootstrap esistente:","Installable":"Installabile","Installable Errata":"Errata installabile","Installed":"Installato","Installed Package":"Pacchetto installato","Installed Packages":"Pacchetti installati","Installed Products":"Prodotti installati","Interfaces":"Interfacce","Interval":"Intervallo","IPv4 Address":"Indirizzo IPv4","IPv6 Address":"Indirizzo IPv6","Issued":"Emesso","Katello Agent":"Katello Agent","Label":"Etichetta","Last Checkin":"Ultimo checkin","Last Published":"Ultimo pubblicato","Last Puppet Report":"Ultimo riporto del Puppet","Last Sync":"Ultima sincronizzazione","Last Updated On":"Ultimo aggiornato il","Latest (Currently %s)":"Ultimissimo (Corrente %s)","Less Than":"Inferiore a","Library":"Libreria ","Library Synced Content":"Contenuto libreria sincronizzato","Lifecycle Environment Paths":"Percorsi ambiente Ciclo di vita","Lifecycle Environments":"Ambienti Ciclo di vita","Limit":"Limite","Limit:":"Limite:","List/Remove":"Elenca/Rimuovi","Loading Environment Paths...":"Caricamento percorsi ambiente in corso...","Loading...":"Caricamento in corso...","Manage Packages":"Gestisci i pacchetti","Manage Packages for Repository:":"Gestisci i pacchetti per il repositorio:","Manage Puppet Modules for Repository:":"Gestisci moduli Puppet per il repository:","Model":"Modello","Moderate":"Moderato","Module %s removed from Content View.":"Modulo %s rimosso dalla Visualizzazione del contenuto.","More Details":"Più informazioni","N/A":"N/A","Name":"Nome","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"Nome del repository upstream da sincronizzare. Esempio: 'busybox' or 'fedora/ssh'.","Networking":"Networking","Never synced":"Mai sincronizzato","New Activation Key":"Nuova chiave di attivazione","New Environment":"Nuovo ambiente","New Filter":"Nuovo filtro","New Filter for Content View:":"Nuovo filtro per la Visualizzazione dell'ambiente:","New Name:":"Nuovo nome:","New Product":"Nuovo prodotto","New Repository":"Nuovo repositorio","New Sync Plan":"Nuova programmazione di sinc","New sync plan successfully created.":"Nuovo programma di sincronizzazione creato con successo.","Next":"Successivo","Next Sync":"Sincronizzazione successiva","No":"No","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"Nessun permesso di \"Modifica\" su alcune Chiavi di attivazione nell'ambiente Ciclo di vita.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"Nessun permesso di \"Modifica\" su alcuni degli host di contenuto nell'ambiente Ciclo di vita.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"Nessun permesso \"Avanza/Rimuovi\" sull'ambiente Ciclo di vita.","No activation keys are affected.":"Nessuna chiave di attivazione è interessata.","No Content Hosts are affected.":"Nessun host di contenuto è interessato.","No Content Hosts match this Erratum.":"Nessun host di contenuto corrisponde a questo erratum.","No Content Views available, please select another environment.":"Nessuna visualizzazione del contenuto disponibile, selezionare un altro ambiente.","No content views exist for {{selected.environment.name}}":"Non esiste alcuna visualizzazione del contenuto per {{selected.environment.name}}","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Nessun insieme di host da visualizzare, è possibile aggiungere un insieme dopo aver selezionato 'Insiemi di host' in 'Host' nel menu principale.","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"Nessun insieme di host da visualizzare, è possibile aggiungere un insieme dopo aver selezionato la scheda 'Aggiungi'.","No Repositories contain this Erratum.":"Nessun repository presenta questo erratum.","None":"Nessuno","Not installed":"Non installati","Not Synced":"Non sincronizzato","Not yet published":"Non ancora pubblicato","Number of CPUs":"Numero di CPU","Operating System":"Sistema Operativo","Organization":"Organizzazione","Original Sync Date":"Data originale per la sincronizzazione","OS":"OS","Package":"Pacchetto","Package Actions":"Azioni pacchetto","Package Filter:":"Filtro pacchetto:","Package Group":"Gruppo di pacchetti","Package Group Filter:":"Filtro gruppo pacchetti:","Package Group successfully added.":"Gruppo pacchetti aggiunti con successo.","Package Group successfully removed.":"Gruppo pacchetti rimossi con successo.","Package Groups":"Gruppi di pacchetti","Package Install":"Installazione pacchetto","Package Installation, Removal, and Update":"Installazione, rimozione e aggiornamento del pacchetto","Package Remove":"Rimozione pacchetto","Package successfully added.":"Pacchetto aggiunto con successo.","Package successfully removed.":"Pacchetto rimosso con successo.","Package successfully updated.":"Pacchetto aggiornato con successo.","Package Update":"Aggiornmento pacchetto","Package/Group Name":"Nome Gruppo/Pacchetto","Packages":"Pacchetti","Packages <div>{{ library.counts.packages || 0 }}</div>":"Pacchetti <div>{{ library.counts.packages || 0 }}</div>","Packages for:":"Pacchetti per:","Parameters":"Parametri","Password":"Password","Perform":"Esegui","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"Per poter spostare le Chiavi di attivazione interessate selezionare un Ambiente Ciclo di vita e una Visualizzazione del contenuto:","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"Per poter spostare gli host di contenuto selezionare un ambiente Ciclo di vita e una Visualizzazione del contenuto:","Please select a Lifecycle Environment.":"Selezionare un ambiente Ciclo di vita.","Please select an environment.":"Selezionare un ambiente.","Please select one from the list below and you will be redirected.":"Selezionarne uno dall'elenco di seguito riportato e verrai ridirezionato.","Product":"Prodotto","Product Count":"Conteggio del prodotto","Product Enhancement Advisory":"Advisory sul miglioramento del prodotto","Product information for:":"Informazioni sul prodotto per:","Product Management for Sync Plan:":"Gestione del prodotto per la programmazione della sincronizzazione:","Product Name":"Nome prodotto","Product Saved":"Prodotto salvato","Products":"Prodotti","Products <div>{{ library.counts.products || 0 }}</div>":"Prodotti <div>{{ library.counts.products || 0 }}</div>","Promote":"Avanzamento","Promote Content View:":"Visualizzazione avanzamento del contenuto:","Promote Version":"Avanzamento versione","Promote Version {{ version.version }}":"Avanzamento versione {{ version.version }}","Promoted to %s":"Avanzato a %s","Promoting to %count environments.":"Avanzamento su %count ambienti","Promoting to 1 environment.":"Avanzamento a 1 ambiente","Promotion History":"Cronologia avanzamento","Provisioning Details":"Informazioni sul provisioning","Provisioning Host Details":"Informazioni host di provisioning","Publish Content View:":"Visualizzazione pubblicazione del contenuto:","Publish New Version":"Pubblica nuova versione","Publish via HTTP":"Pubblica tramite HTTP","Publish via HTTPS":"Pubblica tramite HTTPS","Published":"Pubblicato","Published At":"Pubblicato su","Published new version":"Nuova versione pubblicata","Published Repository Information":"Informazioni repository pubblicate","Publishing and promoting to %count environments.":"Pubblicazione e avanzamento su %count ambienti.","Publishing and promoting to 1 environment.":"Pubblicazione e avanzamento su 1 ambiente.","Puppet Environment":"Ambiente Puppet","Puppet module added to Content View":"Moduli Puppet aggiunti alla visualizzazione del contenuto","Puppet Modules":"Moduli Puppet","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Moduli Puppet <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"Moduli Puppet per la visualizzazione del contenuto:","Quantity":"Quantità","RAM (GB)":"RAM (GB)","Range":"Gamma","Reboot Suggested":"Riavvio consigliato","Reboot Suggested?":"Riavvio consigliato?","Red Hat Repositories page":"Pagina repositori di Red Hat","Red Hat Repositories page.":"Pagina repository di Red Hat.","Refresh Table":"Aggiorna tabella","Register a Content Host":"Registra un host di contenuto","Register Content Host":"Registra host di contenuto","Registered":"Registrati","Registered By":"Registrato da","Registry URL":"URL registro","Release":"Release","Release Version":"Versione release","Remove":"Rimuovi","Remove Activation Key \"{{ activationKey.name }}\"?":"Rimuovere la chiave di attivazione \"{{ activationKey.name }}\"?","Remove Content View":"Rimuovi visualizzazione del contenuto","Remove Content Views":"Rimuovi visualizzazioni del contenuto","Remove Errata":"Rimuovi errata","Remove From":"Rimuovi da","Remove Host Collection \"{{ hostCollection.name }}\"?":"Rimuovere l'insieme di host \"{{ hostCollection.name }}\"?","Remove Module":"Rimuovi modulo","Remove Package Group":"Rimuovi gruppo di pacchetti","Remove Packages":"Rimuovi pacchetti","Remove Product":"Rimuovi prodotto","Remove Product \"{{ product.name }}\"?":"Rimuovere il prodotto \"{{ product.name }}\"?","Remove Puppet Modules":"Rimuovi moduli puppet","Remove Repositories":"Rimuovi repository","Remove Repository":"Rimuovi repository","Remove Repository \"{{ repository.name }}\"?":"Rrimuovere il repository \"{{ repository.name }}\"?","Remove Selected":"Rimuovi selezionati","Remove Successful.":"Rimosso con successo.","Remove Sync Plan":"Rimuovi programmazione di sinc","Remove Sync Plan \"{{ syncPlan.name }}\"?":"Rimuovere la programmazione di sincronizzazione \"{{ syncPlan.name }}\"?","Remove Version":"Rimozione versione","Remove Version Confirmation":"Conferma rimozione della versione","Removed %x host collections from activation key \"%y\".":"Rimossi %x insiemi di host dalla chiave di attivazione \"%y\".","Removed %x host collections from content host \"%y\".":"Rimossi %x insiemi di host dall'host di contenuto \"%y\".","Removed %x products from sync plan \"%y\".":"Rimossi %x prodotti dalla programmazione per la sincronizzazione \"%y\".","Removing Repositories":"Rimozione repository in corso","Repo Discovery":"Scoperta repository","Repositories":"Repository","Repositories containing Errata {{ errata.errata_id }}":"Repository contenente gli Errata {{ errata.errata_id }}","Repositories for Content View:":"Repository per la visualizzazione del contenuto:","Repositories for Errata:":"Repositori per l'errata:","Repositories for Filter:":"Repositori per il filtro:","Repositories for Product:":"Repositori per il prodotto:","Repository":"Repository","Repository \"%s\" successfully deleted":"Repository \"%s\" cancellato con successo","Repository %s successfully created.":"Repository %s creato con successo.","Repository Count":"Conteggio repository","Repository Discovery":"Scoperta repository","Repository Name":"Il nome del repository","Repository Saved.":"Repositori salvati.","Repository Selection":"Selezione repositorio","Repository:":"Repositorio:","Result":"Risultato","Role":"Ruolo","RPMs":"RPM","Run Auto-Attach":"Esegui Auto-Attach","Save Successful.":"Salvato con successo.","Security":"Sicurezza","Security Advisory":"Security Advisory","Select a Content Source:":"Seleziona un sorgente del contenuto:","Select A New Puppet Module To Add":"Seleziona un nuovo modulo Puppet da aggiungere","Select a Version":"Seleziona una versione","Select an Available Version of {{ $stateParams.moduleName }}":"Seleziona una versione disponibile di {{ $stateParams.moduleName }}","Select an Organization":"Seleziona una organizzazione","Select new version":"Seleziona una nuova versione","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"Seleziona gli ambienti Ciclo di vita dai quali desideri rimuovere la versione {{ version.version }}:","Select Version":"Seleziona versione","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"La selezione di questa opzione comporterà la cancellazione della Versione, la quale a sua volta non sarà più disponibile per l'avanzamento. Per poter selezionare questa opzione rimuovere la versione dagli ambienti Ciclo di vita.","Service Level":"Livello di servizio","Severity":"Severitá","Show affected Activation Keys":"Mostra le chiavi di attivazione interessate","Show affected Content Hosts":"Mostra gli host di contenuto interessati","Sockets":"Socket","Solution":"Soluzione","Start Date":"Data d'inizio","Start Time":"Ora d'inizio","Started At":"Iniziato","Starting":"Avviata","Starts":"Inizia","State":"Stato","Status":"Stato","Subscription Details":"Informazioni sulla sottoscrizione","Subscription Status":"Stato sottoscrizione","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Sottoscrizioni","Subscriptions for Activation Key:":"Sottoscrizioni per la chiave di attivazione:","Subscriptions for:":"Sottoscrizioni per:","Successfully added %s subscriptions.":"Aggiunte con successo %s sottoscrizioni.","Successfully deleted %cv version %ver.":"Rimossa con successo %cv versione %ver.","Successfully initiated deletion of %cv version %ver.":"Inizializzata con successo la rimozione di %cv versione %ver.","Successfully initiated promotion of %cv version %ver to %env.":"Inizializzato con successo l'avanzamento di %cv versione %ver a %env.","Successfully initiated removal of %cv version %ver.":"Inizializzata con successo la rimozione di %cv versione %ver.","Successfully promoted %cv version %ver to %env":"Inizializzato con successo l'avanzamento di %cv versione %ver a %env.","Successfully published %cv version %ver and promoted to Library":"Pubblicazione con successo di %cv versione %ver e avanzamento su Libreria ","Successfully removed %cv version %ver from environments: %env":"Rimozione con successo di %cv versione %ver dagli ambienti: %env","Successfully removed %s items.":"Rimossi %s elementi con successo.","Successfully removed %s subscriptions.":"Rimosse con successo %s sottoscrizioni.","Successfully removed 1 item.":"Rimosse con successo 1 elemento.","Successfully updated subscriptions.":"Sottoscrizioni aggiornate con successo.","Summary":"Sommario","Support Level":"Livello supporto","Sync Enabled":"Sinc abilitata","Sync Interval":"Intervallo di sincronizzazione","Sync Now":"Sincronizza ora","Sync Plan":"Programmazione di sincronizzazione","Sync Plan %s has been deleted.":"La programmazione di sincronizzazione %s è stata rimossa.","Sync Plan Saved":"Programmazione sincronizzazione salvata","Sync Plan:":"Programmazione sincronizzazione:","Sync Plans":"Programmazione di sinc","Sync State":"Stato sincronizzazione","Sync Status":"Stato di sinc","Synced manually, no interval set.":"Sincronizzato manualmente, nessun intervallo impostato.","Tags":"Tag","Task Details":"Informazione attività","Tasks":"Attività","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"Le chiavi di attivazione qui di seguito elencate attualmente utilizzano questa versione per la visualizzazione dei contenuti. Prima di rimuovere la versione sarà necessario spostare le chiavi di attivazione in un ambiente Ciclo di vita, dove questa versione non è in uso.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"L'archivia di questa versione verrà rimosso. Dopo la sua rimozione la versione non risulterà più disponibile.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"L'archivio di questa versione non sarà rimosso. Questa versione potrà essere avanzata in un ambiente Ciclo di vita.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Gli host di contenuto qui di seguito elencati attualmente utilizzano questa versione per la visualizzazione dei contenuti. Prima di rimuovere la versione sarà necessario spostare gli host di contenuto in un ambiente dove questa versione non è in uso.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"La Visualizzazione del contenuto o l'Ambiente del ciclo di vita devono essere aggiornati per rendere disponibili gli errata per gli host rilevanti.","The following actions can be performed on content hosts in this host collection:":"È possibile eseguire le seguenti azioni su host di contenuto presenti in questo insieme:","The page you are attempting to access requires selecting a specific organization.":"Per accedere alla pagina desiderata selezionare una organizzazione specifica.","The selected environment contains no Content Views, please select a different environment.":"L'ambiente selezionato non presenta alcuna visualizzazione del contenuto, selezionare un altro ambiente.","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Attualmente non è stato associato alcun repositorio a questa visualizzazione del contenuto, per questa operazione selezionare la scheda \"Aggiungi\".","There are currently no repositories to add to this Content View,":"Attualmente non è disponibile alcun repositorio da aggiungere a questa visualizzazione.","There are no Content Views in this Environment.":"Non è presente alcuna Visualizzazione del contenuto in questo Ambiente.","There are no Content Views that match the criteria.":"Non è disponibile alcuna Visualizzazione del contenuto corrispondente a questo criterio.","There are no Errata associated with this Content Host to display.":"Non è presente alcun errata associato con questo Host di contenuto da visualizzare.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"Non è presente alcun Errata in questa organizzazione. Creare uno o più prodotti con Errata per poterli visualizzare su questa pagina.","There are no Errata to display.":"Non è presente alcun errata da visualizzare.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Non è disponibile alcun insieme di host. È possibile creare un insieme dopo aver selezionato 'Insiemi di host' in 'Host' nel menu principale.","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"È attualmente in corso un Aggiornamento incrementale. Il suddetto aggiornamento deve terminare prima di applicare gli aggiornamenti esistenti.","This activation key is not associated with any content hosts.":"Questa chiave di attivazione non è stata associata con alcun host di contenuto.","This activation key may be used during system registration. For example:":"Questa chiave di attivazione può essere usata durante la registrazione del sistema. Per esempio:","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Questa Visualizzazione del contenuto non presenta alcuna versione, creare la prima Versione usando il pulsante \"Pubblica nuova versione\" sulla destra.","This filter applies only to a subset of repositories in the content view.":"Questo filtro viene applicato solo a una sottorete di repositori presenti nella visualizzazione del contenuto.","This filter applies to all repositories in the content view (current and future).":"Questo filtro viene applicato su tutti i repositori presenti nella visualizzazione del contenuto (attuali e futuri).","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Questa versione non può essere rimossa da alcuni ambienti Ciclo di vita a causa di uno dei seguenti motivi.","This Version is not associated with any Lifecycle Environments.":"Questa versione non è stata associata con alcun ambiente Ciclo di vita.","This version will be removed from:":"Questa versione verrà rimossa da:","Title":"Titolo","to manage them individually.":"per una loro gestione individuale.","To register a content host to this server, follow these steps.":"Per registrare un host di contenuto a questo server, eseguire le fasi di seguito riportate.","Topic":"Argomento","Type":"Tipo","Unknown":"Sconosciuto","Unlimited Content Hosts:":"Host di contenuto illimitati:","Update":"Aggiorna","Update Repositories":"Aggiorna repositori","Update Sync Plan":"Aggiorna programmazione sincronizzazione","Updated":"Aggiornato","Updated errata filter -":"Filtro errata aggiornato - ","Upload":"Carica","Upload Package":"Carica pacchetto","Upload Puppet Module":"Carica modulo Puppet","Uploading...":"Caricamento in corso...","Upstream Repository Name":"Nome repository upstream","User":"Utente","Username":"Nome utente","Version":"Versione","Version Deletion":"Rimozione versione","Version Details":"Informazioni versione","Version:":"Versione:","Versions":"Versioni","Versions for Content View:":"Versioni per la visualizzazione del contenuto:","Versions for Puppet Module:":"Versioni per il modulo Puppet:","Virtual Guests":"Guest virtuali","Virtual Host":"Host virtuale","weekly":"settimanalmente","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Settimanale il {{ product.sync_plan.sync_date | date:'EEEE' }} alle {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Quando Auto Attach è disabilitato, la registrazione dei sistemi verrà implementata a tutte le sottoscrizioni associate","Working":"In funzione","Yes":"Si","You cannot remove these repositories because they belong to a Red Hat product.":"Impossibile rimuovere questi repositori poichè appartengono ad un prodotto di Red Hat. ","You cannot remove these repositories because you do not have permission.":"Impossibile rimuovere questi repositori poichè non sei in possesso dei permessi necessari. ","You cannot remove this product because it is a Red Hat product.":"Impossibile rimuovere questo prodotto poichè appartiene ad un prodotto di Red Hat. ","You cannot remove this product because it was published to a content view.":"Impossibile rimuovere questo prodotto poichè è stato pubblicato su una visualizzazione del contenuto.","You cannot remove this product because you do not have permission.":"Impossibile rimuovere questo prodotto poichè non sei in possesso dei permessi necessari. ","You cannot remove this repository because it is a Red Hat repository.":"Impossibile rimuovere questo repositorio poichè appartiene ad un repositorio di Red Hat. ","You cannot remove this repository because it was published to a content view.":"Impossibile rimuovere questo repositorio poichè è stato pubblicato su una visualizzazione del contenuto.","You cannot remove this repository because you do not have permission.":"Impossibile rimuovere questo repositorio poichè non sei in possesso dei permessi necessari. ","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"Attualmente non è presente alcuna Chiave di attivazione, è possibile aggiungerne una usando il pulsante sulla destra.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"Attualmente non è presente alcun host di contenuto, è possibile crearne uno nuovo selezionando Host di contenuto dal menu principale, e successivamente il pulsante sulla destra.","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"Attualmente non sei inpossesso di alcun Host di contenuto, per registrarne uno seleziona il pulsante sulla destra e segui le istruzioni.","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"Attualemente non è presente alcuna Visualizzazione del contenuto. È possibile aggiungerne una usando il pulsante sulla destra.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"Attualmente non hai incluso alcun filtro nella visualizzazione del contenuto, aggiungere un nuovo filtro usando il pulsante sulla destra.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"Attualmente non è presente alcun Insieme di host, è possibile aggiungerne uno usando il pulsante sulla destra.","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"Attualmente non hai alcun prodotto <span bst-feature-flag=\"custom_products\">, è possibile aggiungere i Prodotti usando il pulsante sulla destra</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"Attualmente non hai incluso alcun Modulo Puppet nella Visualizzazione del contenuto, è possibile aggiungerne uno usando il pulsante sulla destra.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"Attualmente non hai incluso alcun Repository in questo Prodotto, è possibile aggiungerne uno usando il pulsante sulla destra.","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"Attualmente non sei in possesso di una Programmazione di sincronizzazione. Per crearne una usare il pulsante sulla destra.","You do not have any Installed Products":"Non hai installato alcun prodotto","You must select a content view in order to save your environment.":"Per salvare il tuo ambiente è necessario selezionare una visualizzazione del contenuto.","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"È necessario selezionare una nuova visualizzazione prima di poter salvare il nuovo ambiente. Usa il pulsante cancella sulla selezione della visualizzazione del contenuto, per repristinare la selezione dell'ambiente.","You must select at least one Content Host in order to apply Errata.":"Per applicare un Errata è necessario selezionare un Host di contenuto.","You must select at least one repository.":"Selezionare almeno un repositorio.","Yum Content":"Contenuto di yum","Yum Metadata Checksum":"Checksum metadati di yum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"L'operazione di creazione dei metadati Yum stata iniziata nel background. Fare clic <a href=\"{{ taskUrl() }}\">Qui</a> per controllare lo stato.","Yum Repositories":"Repository yum","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Repositori yum <div>{{ library.counts.yum_repositories || 0 }}</div>"});
7
7
  gettextCatalog.setStrings('ja', {"- Date and Type":"- 日付およびタイプ","-- select an interval --":"-- 間隔の選択 --","(Not all Activation Keys editable )":"(すべてのアクティベーションキーが編集可能である訳ではない )","(Not all Content Hosts editable )":"(すべてのコンテンツホストが編集可能である訳ではない )","{{ 'Add Selected' | translate }}":"{{ 'Add Selected' | translate }}","{{ componentContentView.puppet_modules.length || 0 }} Puppet Modules":"{{ componentContentView.puppet_modules.length || 0 }} Puppet モジュール","{{ componentContentView.repositories.length || 0 }} Repositories":"{{ componentContentView.repositories.length || 0 }} リポジトリー","{{ contentCredential.name }}":"{{ contentCredential.name }}","{{ contentView.name }}":"{{ contentView.name }}","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"1 つ以上のコンテンツビューバージョンがライフサイクル環境にプロモートされているため、{{ contentView.name }} を削除することができません。\n コンテンツビューを削除するには、 各コンテンツビューバージョンをライフサイクル環境から取り除いておく必要があります。","{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet Modules":"{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet モジュール","{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories":"{{ contentViewComponent.content_view_version.repositories.length || 0 }} リポジトリー","{{ deb.name }}":"{{ deb.name }}","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} 件適用可能","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} 件インストール可能","{{ errata.title }}":"{{ errata.title }}","{{ file.name }}":"{{ file.name }}","{{ filter.inclusion | filterType }} Tag":"{{ filter.inclusion | filterType }} タグ","{{ host.name }}":"{{ host.name }}","{{ host.subscription_facet_attributes.user.login }}":"{{ host.subscription_facet_attributes.user.login }}","{{ installedPackageCount }} Host(s)":"{{ installedPackageCount }} ホスト","{{ package.hosts_applicable_count }} Host(s)":"{{ package.hosts_applicable_count }} ホスト","{{ package.hosts_applicable_count || 0 }} Applicable,":"{{ package.hosts_applicable_count || 0 }} 件適用可能","{{ package.hosts_available_count }} Host(s)":"{{ package.hosts_available_count }} ホスト","{{ package.hosts_available_count || 0 }} Upgradable":"{{ package.hosts_available_count || 0 }} 件アップグレード可能","{{ package.human_readable_size }} ({{ package.size }} Bytes)":"{{ package.human_readable_size }} ({{ package.size }} バイト)","{{ product.active_task_count }}":"{{ product.active_task_count }}","{{ product.name }}":"{{ product.name }}","{{ puppetModule.name }}":"{{ puppetModule.name }}","{{ repository.content_counts.deb }} deb Packages":"{{ repository.content_counts.deb }} Deb パッケージ","{{ repository.content_counts.deb || 0 }} deb Packages":"{{ repository.content_counts.deb || 0 }} Deb パッケージ","{{ repository.content_counts.docker_manifest }} Container Image Manifests":"{{ repository.content_counts.docker_manifest }} コンテナーイメージマニフェスト","{{ repository.content_counts.docker_manifest || 0 }} Container Image Manifests":"{{ repository.content_counts.docker_manifest || 0 }} コンテナーイメージマニフェスト","{{ repository.content_counts.docker_manifest_list }} Container Image Manifest Lists":"{{ repository.content_counts.docker_manifest_list }} コンテナーイメージマニフェスト一覧","{{ repository.content_counts.docker_manifest_list || 0 }} Container Image Manifest Lists":"{{ repository.content_counts.docker_manifest_list || 0 }} コンテナーイメージマニフェスト一覧","{{ repository.content_counts.docker_tag }} Container Image Tags":"{{ repository.content_counts.docker_tag }} コンテナーイメージタグ","{{ repository.content_counts.docker_tag || 0 }} Container Image Tags":"{{ repository.content_counts.docker_tag || 0 }} コンテナーイメージタグ","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} エラータ","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} エラータ","{{ repository.content_counts.file || 0 }} Files":"{{ repository.content_counts.file || 0 }} ファイル","{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches":"{{ repository.content_counts.ostree_branch || 0 }} OSTree ブランチ","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} Puppet モジュール","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} パッケージ","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} パッケージ","{{ repository.content_counts.srpm }} Source RPMs":"{{ repository.content_counts.srpm }} ソース RPM","{{ repository.last_sync_words }} ago":"{{ repository.last_sync_words }} 前","{{ repository.name }}":"{{ repository.name }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} アクティベーションキーが {{ deleteOptions.activationKeys.environment.name }} の {{ deleteOptions.activationKeys.contentView.name }} に移行します","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} コンテンツホストが {{ deleteOptions.contentHosts.environment.name }} の {{ deleteOptions.contentHosts.contentView.name }} に移行します","{{ type.display }}":"{{ type.display }}","{{ version.deb_count }} deb Packages":"{{ version.deb_count }} Deb パッケージ","{{ version.docker_manifest_count }} Container Image Manifests":"{{ version.docker_manifest_count }} コンテナーイメージマニフェスト","{{ version.docker_manifest_list_count }} Container Image Manifest Lists":"{{ version.docker_manifest_list_count }} コンテナーイメージマニフェスト一覧","{{ version.docker_tag_count }} Container Image Tags":"{{ version.docker_tag_count }} コンテナーイメージタグ","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} エラータ","{{ version.file_count }} Files":"{{ version.file_count }} ファイル","{{ version.ostree_branch_count }} OSTree Branches":"{{ version.ostree_branch_count }} OSTree ブランチ","{{ version.package_count }} Packages":"{{ version.package_count }} パッケージ","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} Puppet モジュール","{{ version.srpm_count }} Source RPMs":"{{ version.srpm_count }} ソース RPM","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* これらのマークが付けられたコンテンツビューのバージョンは複合コンテンツビューのバージョンです。更新する必要のあるそれらのコンポーネントは以下に一覧表示されています。","%(consumed)s out of %(quantity)s":"%(quantity)s 件数中 %(consumed)s 件 ","%count environment(s) can be synchronized: %envs":"%count 環境を同期できます: %envs","<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>":"<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>","<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>":"<a ui-sref=\"content-view.version.details({versionId: version.id})\">バージョン {{ version.version }}</a>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n 星が付いた環境はプロモーション対象であることを示しています。","<i class=\"fa fa-warning inline-icon\"></i>\n This Host is not currently registered with subscription-manager. Click <a ui-sref=\"content-hosts.register\">here</a> for registration information.":"<i class=\"fa fa-warning inline-icon\"></i>\n このホストは現在 subscription-manager で登録されていません。登録情報については、<a ui-sref=\"content-hosts.register\">ここ</a>をクリックしてください。","<span translate=\"\">\n If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">to manage them individually.</span>":"<span translate=\"\">\n これらのアクティベーションキーの一部を別のコンテンツビューまたはライフサイクル環境に移動させる場合は、\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">ここ</a>\n <span translate=\"\">をクリックして、それらを別々に管理します。</span>","1 repository sync in progress.":"{{ product.sync_summary.pending}} リポジトリーの同期が進行中です。","1 successfully synced repository.":"{{ product.sync_summary.success}} リポジトリーが正常に同期されました。","A composite view contains other content views.":"複合ビューには他のコンテンツビューが組み込まれています。","A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n It can be promoted to other environments from the Versions tab of this Content View.":"新規バージョンの {{ contentView.name }} が作成され、ライブラリー環境にプロモートされます。\n このコンテンツビューのバージョンタブから、他の環境にプロモートすることができます。","A newer version is available: {{ contentViewComponent.content_view.latest_version }}":"利用可能な新規バージョン: {{ contentViewComponent.content_view.latest_version }}","A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>":"同期がバックグラウンドで開始されました。<a href=\"/foreman_tasks/tasks/{{ task.id }}\">ここ</a>をクリックして詳細を参照してください。","Account":"アカウント","Action":"アクション","Action Type":"アクションタイプ","Actions":"アクション","Activation Key":"アクティベーションキー","Activation Key Content":"アクティベーションキーのコンテンツ","Activation Key removed.":"アクティベーションキーが削除されました。","Activation Key updated":"アクティベーションキーが更新されました","Activation Key:":"アクティベーションキー:","Activation Keys":"アクティベーションキー","Activation Keys using Version {{ version.version }}":"バージョン {{ version.version }} を使用したアクティベーションキー","Active Tasks":"アクティブなタスク","Add":"追加","Add Content Hosts to:":"コンテンツホストの追加先:","Add Content Views":"コンテンツビューの追加","Add Content Views to {{ contentView.name }}":"コンテンツビューの {{ contentView.name }} への追加","Add Errata":"エラータの追加","Add New Container Image Tag Filter":"新規コンテナーイメージタグフィルターの追加","Add New Environment":"新規環境の追加","Add New Module":"新規モジュールの追加","Add New Yum Filter":"新規 Yum フィルターの追加","Add ons":"アドオン","Add Package Group":"パッケージグループの追加","Add Repositories":"リポジトリーの追加","Add Rule":"ルールの追加","Add Selected":"選択を追加","add some repositories.":"一部のリポジトリーの追加。","Add Subscriptions for Activation Key:":"アクティベーションキーのサブスクリプションを追加:","Add Subscriptions for Content Host:":"コンテンツホストのサブスクリプションを追加:","Add To":"追加先","Added %x host collections to activation key \"%y\".":"%x ホストコレクションをアクティベーションキー \"%y\" に追加。","Added %x host collections to content host \"%y\".":"%x ホストコレクションをコンテンツホスト \"%y\" に追加。","Added %x products to sync plan \"%y\".":"%x 製品を同期プラン \"%y\" に追加。","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"ライフサイクル環境を \"{{ priorEnvironment.name }}\" の末尾に追加します","Advanced Sync":"高度な同期","Advisory":"アドバイザリー","Affected Activation Keys":"影響するアクティベーションキー","Affected Content Hosts":"影響するコンテンツホスト","Affected Hosts":"影響を受けるホスト","Affected Repositories":"影響するリポジトリー","Affected repositories have been updated.":"影響するリポジトリーが更新されました","All Content Views":"すべてのコンテンツビュー","All History":"すべての履歴","All Products":"すべての製品","All Repositories":"すべてのリポジトリー","All Versions":"すべてのバージョン","Always Use Latest (Currently %s)":"常に最新を使用 (現在は %s)","Always Use Latest (Currently no versions)":"常に最新を使用 (現在はバージョンなし)","An error occured: %s":"エラーが発生しました: %s","An error occurred initiating the sync:":"同期の実行時にエラーが発生しました:","An error occurred removing the Activation Key:":"アクティベーションキーの削除時にエラーが発生しました:","An error occurred removing the content hosts.":"コンテンツホストの削除時にエラーが発生しました。","An error occurred removing the environment:":"環境の削除時にエラーが発生しました:","An error occurred removing the Host Collection:":"ホストコレクションの削除時にエラーが発生しました:","An error occurred removing the subscriptions.":"サブスクリプションの削除時にエラーが発生しました。","An error occurred saving the Activation Key:":"アクティベーションキーの保存時にエラーが発生しました:","An error occurred saving the Content Host:":"コンテンツホストの保存時にエラーが発生しました:","An error occurred saving the Environment:":"環境の保存時にエラーが発生しました:","An error occurred saving the Filter:":"フィルターの保存時にエラーが発生しました:","An error occurred saving the Host Collection:":"ホストコレクションの保存時にエラーが発生しました:","An error occurred saving the Product:":"製品の保存時にエラーが発生しました:","An error occurred saving the Repository:":"リポジトリーの保存時にエラーが発生しました:","An error occurred saving the Sync Plan:":"同期プランの保存時にエラーが発生しました:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"サブスクリプションの自動割り当てを試行する際にエラーが発生しました。ログで詳細情報を確認してください。","An error occurred updating the Content View:":"コンテンツビューの更新時にエラーが発生しました。","An error occurred updating the sync plan:":"同期プランの更新時にエラーが発生しました。","An error occurred while creating the Content Credential:":"コンテンツ認証情報の作成時にエラーが発生しました:","An error occurred while creating the Product: %s":"製品の作成時にエラーが発生しました: %s","An error occurred:":"エラーが発生しました:","Ansible Collections":"Ansible コレクション","Applicable":"適用可能","Applicable Content Hosts":"適用可能なコンテンツホスト","Applicable Errata":"適用可能なエラータ","Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\".":"複合ビューにのみ適用可能。コンポーネントコンテンツビューの新バージョン作成時に、複合ビューを自動公開します。また、コンポーネントに \"latest\" とマークされている場合にのみ、自動公開されることに注意してください。","Applicable Packages":"適用可能なパッケージ","Applicable To":"適用可能","Applicable to Host":"ホストに適用可能","Application":"アプリケーション","Apply":"適用","Apply {{ errata.errata_id }}":"{{ errata.errata_id }} を適用","Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?":"{{ errata.errata_id }} を {{ contentHostIds.length }} コンテンツホストに適用しますか?","Apply {{ errata.errata_id }} to all Content Host(s)?":"{{ errata.errata_id }} を全コンテンツホストに適用しますか?","Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content Host(s)?":"{{ errataIds.length }} エラータを {{ contentHostIds.length }} コンテンツホストに適用しますか?","Apply {{ errataIds.length }} Errata to all Content Host(s)?":"{{ errataIds.length }} を全コンテンツホストに適用しますか?","Apply Errata":"エラータを適用","Apply Errata to Content Host \"{{host.name}}\"?":"エラータをコンテンツホスト \"{{host.name}}\" に適用しますか?","Apply Errata to Content Hosts":"エラータをコンテンツホストに適用","Apply Errata to Content Hosts immediately after publishing.":"公開直後にエラータをコンテンツホストに適用","Apply Selected":"選択を適用","Apply to Content Hosts":"コンテンツホストに適用","Apply to Hosts":"ホストに適用","Applying":"適用中","Apt Repositories":"Apt リポジトリー","Arch":"アーキテクチャー","Architecture":"アーキテクチャー","Architectures":"アーキテクチャー","Archived Copy":"アーカイブされたコピー","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"選択済みのホストコレクションに対して選択された {{ table.numSelected }} コンテンツホストを追加してもよろしいですか?","Are you sure you want to add the sync plan to the selected products(s)?":"同期プランを選択された製品に追加してもよろしいですか?","Are you sure you want to apply Errata to content host \"{{ host.name }}\"?":"エラータをコンテンツホスト \"{{ host.name }}\" に適用してもよろしいですか?","Are you sure you want to apply the {{ table.numSelected }} selected errata to the content hosts chosen?":"{{ table.numSelected }} の選択されたエラータを選択済みコンテンツホストに適用してもよろしいですか?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"{{ selected.environment.name }} 内の {{ selected.contentView.name }} に対して選択された {{ table.numSelected }} コンテンツホストを割り当ててもよろしいですか?","Are you sure you want to disable the {{ table.numSelected }} repository set(s) chosen?":"選択された {{ table.numSelected }} リポジトリーセットを無効にしてもよろしいですか?","Are you sure you want to enable the {{ table.numSelected }} repository set(s) chosen?":"選択された {{ table.numSelected }} リポジトリーセットを有効にしてもよろしいですか?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"選択済みの {{ getSelectedSystemIds().length }} システムに {{ content.content }} をインストールしてもよろしいですか?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"選択済みの {{ getSelectedSystemIds().length }} システムから {{ content.content }} を削除してもよろしいですか?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"アクティベーションキー \"{{ activationKey.name }}\" を削除してもよろしいですか?","Are you sure you want to remove Content Credential {{ contentCredential.name }}?":"コンテンツ認証情報 {{ contentCredential.name }} を削除してもよろしいですか?","Are you sure you want to remove Content View \"{{ contentView.name }}\"?":"コンテンツビュー \"{{ contentView.name }}\" を削除してもよろしいですか?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"ホストコレクション \"{{ hostCollection.name }}\" を削除してもよろしいですか?","Are you sure you want to remove product \"{{ product.name }}\"?":"製品 \"{{ product.name }}\" を削除してもよろしいですか?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"リポジトリー \"{{ repository.name }}\" を削除してもよろしいですか?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"同期プラン \"{{ syncPlan.name }}\" を削除してもよろしいですか?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"選択済みのホストコレクションから選択された {{ table.numSelected }} コンテンツホストを削除してもよろしいですか?","Are you sure you want to remove the sync plan from the selected product(s)?":"選択された製品から同期プランを削除してもよろしいですか?","Are you sure you want to reset to default the {{ table.numSelected }} repository set(s) chosen?":"選択された {{ table.numSelected }} リポジトリーセットをデフォルトに再設定してもよろしいですか?","Are you sure you want to restart services on content host \"{{ host.name }}\"?":"コンテンツホスト \"{{ host.name }}\" のサービスを再起動してもよろしいですか?","Are you sure you want to set the Release Version the {{ table.numSelected }} content host(s) selected to {{ selected.release }}?. This action will affect only those Content Hosts that belong to the appropriate Content View and Lifecycle Environment containining that release version.":"選択された {{ table.numSelected }} コンテンツホストのリリースバージョンを {{ selected.release }} に設定してもよろしいですか ? このアクションは、該当のリリースバージョンを含むコンテンツビューおよびライフサイクル環境に属するコンテンツホストのみに影響を与えます 。","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"選択済みの {{ getSelectedSystemIds().length }} システムで {{ content.content }} を更新してもよろしいですか?","Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?":"選択された {{ getSelectedSystemIds().length }} システムのすべてのパッケージを更新してもよろしいですか?","As part of this deletion, 1 Content View Version will be deleted.":" この削除の一部として、 {{ versions.length }} コンテンツビューバージョンは削除されます。","Assign":"割り当て","Assign Lifecycle Environment and Content View":"ライフサイクル環境およびコンテンツビューの割り当て","Assign Release Version":"リリースバージョンの割り当て","Associations":"関連付け","At least one Errata needs to be selected to Apply.":"適用する 1 つ以上のエラータを選択する必要があります。","Attached":"割り当て済み","Author":"作成者","Auto Publish":"自動公開","Auto-Attach":"自動アタッチ","Automatic":"自動","Available Content Views for Composite Content View:":"複合コンテンツビューに利用できるコンテンツビュー:","Available Puppet Modules for Content View:":"コンテンツビューに利用できる Puppet モジュール:","Available Schema Versions":"利用できるスキーマのバージョン","Back":"戻る","Back To Errata List":"エラータ一覧に戻る","Backend Identifier":"バックエンド ID","Basic Information":"基本情報","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"以下は、サブスクリプションにより、このコンテンツホストに対して現在利用できるリポジトリーコンテンツセットです。Red Hat サブスクリプションの場合、以下から追加のコンテンツを利用できます:","Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"以下は、サブスクリプションにより、このアクティベーションキーに対して現在利用できるリポジトリーセットです。Red Hat サブスクリプションの場合、以下から追加のコンテンツを利用できます:","Between versions {{ rule.min_version }} and {{ rule.max_version }}":"バージョン {{ rule.min_version }} と {{ rule.max_version }} の間","Bootable":"ブート可能","Branch Info":"ブランチ情報","Branch Name":"ブランチ名","Bug Fix":"バグ修正","Bug Fix Advisory":"バグ修正アドバイザリー","Bugfix":"バグ修正","Build Host":"ビルドホスト","Build Information":"ビルド情報","Build Time":"ビルド時間","Cancel":"取り消し","Cannot Remove":"削除できません","Cannot republish Repository without the proper permissions.":"適切なパーミッションがなければリポジトリーを再び公開できません。","Cannot republish Repository, a sync is already in progress.":"リポジトリーを再び公開できません。同期が実行中です。","Cannot sync Repository without a URL.":"URL なしにリポジトリーを同期できません。","Cannot sync Repository without the proper permissions.":"適切なパーミッションがなければリポジトリーを同期できません。","Cannot sync Repository, a sync is already in progress.":"リポジトリーを同期できません。同期はすでに実行中です。","Capacity":"容量","Certificate":"証明書","Change assigned Lifecycle Environment or Content View":"割り当て済みのライフサイクル環境またはコンテンツビューの変更","Change Host Collections":"ホストコレクションの変更","Change Lifecycle Environment":"ライフサイクル環境の変更","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"このアクティベーションキーで登録されるコンテンツホストのデフォルト設定を変更するには、subscription-manager バージョン 1.10 以降をホストにインストールする必要があります。","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"デフォルト設定を変更するには、subscription-manager バージョン 1.10 以降をこのホスト上にインストールする必要があります。","Checksum":"チェックサム","Checksum Type":"チェックサムのタイプ","Choose <b>Default</b> to enable the repository for all architectures":"全アーキテクチャー向けのリポジトリーを有効にするには、<b>Default</b> を選択します","Choose a lifecycle environment from the available promotion paths.":"利用可能なプロモーションパスからライフサイクル環境を選択します。","Choose one of the policy selections for downloading ostree content from upstream url during synchronization. Choose \"Latest\" for downloading the latest version of the upstream branch. Choose \"All History\" to download all available versions of the upstream repository (this may take a large amount of space). Choose \"Custom Depth\" and provide an number to indicate the number of prior versions of the upstream branch to download.":"同期時にアップストリーム URL から OSTree コンテンツをダウンロードするためのポリシー選択のいずれかを選択します。アップストリームブランチの最新版をダウンロードするには、「最新」を選択します。アップストリームリポジトリーの利用可能なすべてのバージョンをダウンロードするには、「すべての履歴」を選択します (これには多くのスペースが必要になる場合があります)。「カスタム深度」を選択し、ダウンロードするアップストリームブランチの前のバージョンの番号を示す数を指定します。","Click here to check the status of the task.":"こちらをクリックしてタスクの状態を確認します。","Click here to select Errata for an Incremental Update.":"こちらをクリックして増分更新のエラータを選択します。","Close":"閉じる","Comma separated list of components to sync from (leave clear to sync all). Example: main":"同期元となるコンポーネントのコンマ区切り一覧 (すべて同期する場合は空白にしておく)。例: main","Comma separated list of processor architectures to filter the sync by. Example: amd64":"同期にフィルター適用するプロセッサーアーキテクチャーのコンマ区切り一覧。例: amd64","Comma separated list of releases (suite or codename) to sync from. Default: stable":"同期元となるリリース (スイートまたはコード名) のコンマ区切り一覧。デフォルト: stable","Commit":"コミット","Complete Sync":"同期の完了","Completely remove version?":"バージョンを完全に削除しますか?","Components":"コンポーネント","Components:":"コンポーネント:","Composite":"複合","Composite View":"複合ビュー","Composite View?":"複合ビュー?","Confirm":"確定します","Confirm Remove":"削除の確認","Confirm Version Removal: Version {{ version.version }}":"バージョンの削除を確認: バージョン {{ version.version }}","Container Image Manifest":"コンテナーイメージのマニフェスト","Container Image Manifest Lists":"コンテナーイメージマニフェスト一覧","Container Image Manifests":"コンテナーイメージマニフェスト","Container Image metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"コンテナーイメージのメタデータ生成がバックグラウンドで開始されました。\n <a ng-href=\"{{ taskUrl() }}\">ここ</a> をクリックして進捗をモニターしてください。","Container Image Tag":"コンテナーイメージタグ","Container Image Tag Filter:":"コンテナーイメージタグのフィルター:","Container Image Tags":"コンテナーイメージタグ","Container Images":"コンテナーイメージ","Content":"コンテンツ","Content Counts":"コンテンツ数","Content Credential %s has been created.":"コンテンツ認証情報 %s が作成されました。","Content Credential Contents":"コンテンツ認証情報のコンテンツ","Content Credential successfully uploaded":"コンテンツ認証情報が正常にアップロードされました","Content credential updated":"コンテンツ認証情報が更新されました","Content Credentials":"コンテンツ認証情報","Content Host":"コンテンツホスト","Content Host Bulk Content":"コンテンツホストの一括コンテンツ","Content Host Bulk Subscriptions":"コンテンツホストの一括サブスクリプション","Content Host Content":"コンテンツホストのコンテンツ","Content Host Counts":"コンテンツホスト数","Content Host Limit":"コンテンツホストの制限","Content Host Properties":"コンテンツホストのプロパティー","Content Host Registration":"コンテンツホストの登録","Content Host Status":"コンテンツホストの状態","Content Host:":"コンテンツホスト:","Content Hosts":"コンテンツホスト","Content Hosts for Activation Key:":"アクティベーションキーのコンテンツホスト:","Content Hosts for:":"次のコンテンツホスト:","Content Hosts using Version {{ version.version }}":"バージョン {{ version.version }} を使用するコンテンツホスト","Content Type":"コンテンツタイプ","Content View":"コンテンツビュー","Content View Name":"コンテンツビュー名","Content View updated.":"コンテンツビューが更新されました。","Content View Version":"コンテンツビューのバージョン","Content View:":"コンテンツビュー:","Content Views":"コンテンツビュー","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"コンテンツビュー: <div>{{ library.counts.content_views || 0 }}</div>","Content Views for {{ contentView.name }}":"{{ contentView.name }} のコンテンツビュー","Content Views for Composite Content View:":"複合コンテンツビューのコンテンツビュー:","Content Views for Deb:":"Deb のコンテンツビュー:","Content Views for File:":"ファイルのコンテンツビュー:","Content Views for Puppet Module:":"Puppet モジュールのコンテンツビュー:","Content Views that contain this Deb":"この Deb を含むコンテンツビュー","Content Views that contain this File":"このファイルを含むコンテンツビュー","Content Views that contain this Puppet Module":"この Puppet モジュールを含むコンテンツビュー","Context":"コンテキスト","Contract":"コントラクト","Copy Activation Key":"アクティベーションキーのコピー","Copy Content View":"コンテンツビューのコピー","Copy Content View:":"コンテンツビューのコピー:","Copy Host Collection":"ホストコレクションのコピー","Cores per Socket":"ソケットあたりのコア数","Create":"作成","Create a copy of {{ activationKey.name }}":"{{ activationKey.name }} のコピーの作成","Create a copy of {{ contentView.name }}":"{{ contentView.name }} のコピーの作成","Create a copy of {{ hostCollection.name }}":"{{ hostCollection.name }} のコピーの作成","Create a rule using the add button above.":"上記の追加ボタンを使ってルールを作成します。","Create Activation Key":"アクティベーションキーの作成","Create Content Credential":"コンテンツ認証情報の作成","Create Content View":"コンテンツビューの作成","Create Discovered Repositories":"検出されたリポジトリーの作成","Create Environment Path":"環境パスの作成","Create Host Collection":"ホストコレクションの作成","Create new view":"新規ビューの作成","Create New View":"新規ビューの作成","Create Product":"製品の作成","Create Selected":"選択を作成","Create Status":"ステータスの作成","Create Sync Plan":"同期プランの作成","Create view from existing views":"既存ビューからビューを作成","Creating repository...":"リポジトリーの作成...","Critical":"重大","Current Lifecycle Environment (%e/%cv)":"現在のライフサイクル環境 (%e/%cv)","Current Subscriptions for Activation Key:":"アクティベーションキーの現在のサブスクリプション:","Currently %s":"現在 %s","Currently Selected Puppet Modules":"現在選択されている Puppet モジュール","Custom Depth":"カスタム深度","Custom Depth (Currently %s)":"カスタム深度 (現在 %s)","CVEs":"CVE","daily":"毎日","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"毎日: {{ product.sync_plan.sync_date | date:'mediumTime' }} (サーバー時間)","Date":"日付","Date Type":"日付タイプ","deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Deb メタデータの生成がバックグラウンドで開始されました。進捗状況を確認するには、<a href=\"{{ taskUrl() }}\">ここ</a> をクリックします。","deb Packages":"Deb パッケージ","Deb Packages":"Deb パッケージ","Deb:":"Deb:","Debs":"Debs","Default":"デフォルト","Delete Hosts":"ホストの削除","Delete Version {{ version.version }}":"バージョン {{ version.version }} の削除","Deleted from %s":"%s から削除","Deleting from %count environments.":"%count 環境から削除中。","Deleting from 1 environment.":"1 環境から削除中。","Deletion from %s":"%s からの削除","Delta RPM":"Delta RPM","Dependencies":"依存関係","Description":"説明","Details":"詳細","Details for {{ contentView.name }}":"{{ contentView.name }} の詳細","Details for Activation Key:":"アクティベーションキーの詳細:","Details for Container Image Tag:":"コンテナーイメージタグの詳細:","Details for Content View:":"コンテンツビューの詳細:","Details for Product:":"製品の詳細:","Details for Repository:":"リポジトリーの詳細:","Digest":"ダイジェスト","Disable":"無効化","Disabled":"無効","Disabled (overridden)":"無効 (オーバーライド)","Discover":"検出","Discovered Repository":"検出されたリポジトリー","Discovery failed. Error: %s":"検出に失敗しました。エラー: %s","Distribution":"ディストリビューション","Distribution Information":"配信情報","Docker metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Docker メタデータの生成がバックグラウンドで開始されました。\n <a ng-href=\"{{ taskUrl() }}\">こちら</a> をクリックして進捗をモニターしてください。","Docker Repositories":"Docker リポジトリー","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Docker リポジトリー: <div>{{ library.counts.docker_repositories || 0 }}</div>","Docker Repository Selection":"Docker リポジトリーの選択","Done":"完了","Download Policy":"ダウンロードポリシー","Edit":"編集","Enable":"有効化","Enabled":"有効","Enabled (overridden)":"有効 (オーバーライド)","End Date":"終了日","Enhancement":"機能強化","Enter Package Group Name(s)...":"パッケージグループ名の入力...","Enter Package Name(s)...":"パッケージ名の入力...","Environment":"環境","Environment saved":"環境が保存されました","Environments":"環境","Environments List":"環境一覧","Equal To":"等しい","Errata":"エラータ","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"エラータ: <div>{{ library.counts.errata.total || 0 }}</div>","Errata are automatically Applicable if they are Installable":"エラータはインストール可能な場合に自動的に適用可能になります","Errata Details":"エラータの詳細","Errata Filter:":"エラータのフィルター:","Errata for:":"エラータの対象:","Errata ID":"エラータ ID","Errata Installation":"エラータのインストール","Errata successfully added.":"エラータが正常に追加されました。","Errata successfully removed.":"エラータが正常に削除されました。","Errata Task List":"エラータのタスク一覧","Errata Tasks":"エラータのタスク","Errata Type":"エラータのタイプ","Errata:":"エラータ:","Erratum - by ID":"エラータ - ID 別","Erratum - Date and Type":"エラータ - 日付およびタイプ","Erratum Date Range":"エラータの日付範囲","Error during upload:":"アップロード時のエラー:","Event":"イベント","Exclude":"除外","Exclude all RPMs with no errata.":"エラータがないすべての RPM を除外します。","Existing Product":"既存の製品","Expires":"期限切れ","Export":"エクスポート","Exported content view":"エクスポートされたコンテンツビュー","Family":"ファミリー","File Information":"ファイル情報","File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"ファイルの削除がバックグラウンドで開始されました。<a href=\"{{ taskUrl() }}\">ここ</a> をクリックして進捗をモニターしてください。","File Repositories":"ファイルリポジトリー","File too large.":"ファイルが大きすぎます","File too large. Please use the CLI instead.":"ファイルが大きすぎます。CLI を代わりに使用してください。","File:":"ファイル:","Filename":"ファイル名","Files":"ファイル","Files in package {{ package.nvrea }}":"パッケージ {{ package.nvrea }} のファイル","Filter":"フィルター","Filter information for:":"次の情報のフィルター:","Filter rule successfully removed.":"フィルタールールが正常に削除されました。","Filter rule successfully updated.":"フィルタールールが正常に更新されました。","Filter Saved":"フィルターが保存されました","Filter:":"フィルター:","Filter...":"フィルター...","Filters":"フィルター","Filters for Content View:":"コンテンツビューのフィルター:","Filters successfully removed.":"フィルターが正常に削除されました。","Finished At":"終了: ","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Red Hat Enterprise Linux 5 または CentOS 5 などの古いオペレーティングシステムの場合は、sha1 を使用することを推奨します。","Force Promote?":"強制的にプロモートしますか?","Force Puppet Environment":"Puppet 環境の強制","GPG Key":"GPG キー","Greater Than":"次より大きい","Greater than version {{ rule.min_version }}":"バージョン {{ rule.min_version }} の値より大きい","Group":"グループ","Group Install":"グループインストール","Group Remove":"グループの削除","Helper":"ヘルパー","here":"こちら","Hide affected Activation Keys":"影響するアクティベーションキーを非表示","Hide affected Content Hosts":"影響するコンテンツホストを非表示","History":"履歴","History for Content View:":"コンテンツビューの履歴:","Host %s has been deleted.":"ホスト %s が削除されました。","Host %s has been unregistered.":"ホスト %s の登録は解除されました。","Host Collection Management":"ホストコレクションの管理","Host Collection Membership":"ホストコレクションのメンバーシップ","Host Collection removed.":"ホストコレクションが削除されました。","Host Collection updated":"ホストコレクションが更新されました","Host Collection:":"ホストコレクション:","Host Collections":"ホストコレクション","Host Collections for:":"次のホストコレクション:","Host Count":"ホスト数","Host Group":"ホストグループ","Host Limit":"ホスト制限","Hostname":"ホスト名","Hosts":"ホスト","hourly":"毎時","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"毎時: {{ product.sync_plan.sync_date | date:'m' }} 分 {{ product.sync_plan.sync_date | date:'s' }} 秒","HTTP Proxy":"HTTP プロキシー","Id":"ID","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"これらのアクティベーションキーの一部を別のコンテンツビューまたはライフサイクル環境に移動させる場合は、次をクリックします。","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"これらのアクティベーションキーの一部を別のコンテンツビューまたはライフサイクル環境に移動させる場合は、<a href=\"{{ activationKeyLink() }}\">こちら</a> をクリックして、それらを別々に管理します。","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"これらのコンテンツホストの一部を別のコンテンツビューまたは環境に移動させる場合は、<a href=\"{{ contentHostsLink() }}\">こちら</a> をクリックして、これらのコンテンツホストを一括管理します。","Ignorable Content":"無視できるコンテンツ","Image":"画像","Immediate":"即時","Important":"重要","In order to add a content view to a composite view you must first publish an initial version of the content view.":"コンテンツビューを複合ビューに追加するには、まずコンテンツビューの初期バージョンを公開する必要があります。","In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n or ask your admin for a certificate.":"このリポジトリーを参照するには、<a ng-href=\"/organizations/{{ organization }}/edit\">証明書をダウンロード</a>するか、管理者に証明書を要求する必要があります。","Include":"組み込み","Include all RPMs with no errata.":"エラータのないすべての RPM を含めます。","Inclusion Type":"包含タイプ","Incremental update":"増分更新","Incremental Update":"増分更新","Install":"インストール","Install client package:":"クライアントパッケージのインストール:","Install Selected":"選択をインストール","Install the pre-built bootstrap RPM:":"事前作成のブートストラップ RPM のインストール:","Installable":"インストール可能","Installable Errata":"インストールできるエラータ","Installable Updates":"インストールできる更新","Installed":"インストール済み","Installed On":"インストール:","Installed Package":"インストール済みパッケージ","Installed Packages":"インストール済みパッケージ","Installed Products":"インストール済み製品","Interfaces":"インターフェース","Interval":"間隔","IPv4 Address":"IPv4 アドレス","IPv6 Address":"IPv6 アドレス","Issued":"発行","Issued On":"発行日","Katello Agent":"Katello エージェント","Label":"ラベル","Last Checkin":"最終チェックイン","Last Published":"最終公開","Last Puppet Report":"最終 Puppet レポート","Last Sync":"最終同期","Last Updated On":"最終更新日時","Latest (Currently %s)":"最新 (現在 %s)","Latest (Currently no version)":"最新 (現在はバージョンなし)","Latest Only":"最新のみ","Learn more about these packages in the <a href=\"https://theforeman.org/plugins/katello/\">Documentation</a>":"これらのパッケージについては <a href=\"https://theforeman.org/plugins/katello/\">ドキュメント</a> を参照してください。","Less Than":"次より小さい","Less than version {{ rule.max_version }}":"バージョン {{ rule.max_version }} の値よりも小さい","Library":"ライブラリー","Library Repositories":"ライブラリーリポジトリー","Library Repositories that contain this Deb.":"この Deb を含むライブラリーリポジトリー","Library Repositories that contain this File.":"このファイルを含むライブラリーリポジトリー","Library Repositories that contain this Puppet Module.":"この Puppet モジュールを含むライブラリーリポジトリー","Library Synced Content":"ライブラリーと同期したコンテンツ","License":"ライセンス","Lifecycle Environment":"ライフサイクル環境","Lifecycle Environment Paths":"ライフサイクル環境パス","Lifecycle Environment:":"ライフサイクル環境:","Lifecycle Environments":"ライフサイクル環境","Limit":"制限","Limit Repository Sets to only those available in this Activation Key's Lifecycle Environment":"リポジトリーセットをこのアクティべーションキーのライフサイクル環境で利用できるものにのみ制限する","Limit Repository Sets to only those available in this Host's Lifecycle Environment":"リポジトリーセットをこのホストのライフサイクル環境で利用できるものにのみ制限する","Limit to environment":"環境の制限","Limit to Environment":"環境の制限","Limit to Lifecycle Environment":"ライフサイクル環境への制限","Limit:":"制限:","List":"一覧","List/Remove":"一覧/削除","Loading Environment Paths...":"環境パスをロードしています...","Loading...":"ロード中...","Loading...\"":"ロード中...\"","Manage Container Image Manifests for Repository:":"リポジトリーのコンテナーイメージマニフェストの管理:","Manage deb Packages for Repository:":"リポジトリーの Deb パッケージを管理:","Manage Errata":"エラータの管理","Manage Files for Repository:":"リポジトリーのファイルの管理:","Manage OSTree Branches for Repository:":"リポジトリーの OSTree ブランチを管理:","Manage Packages":"パッケージの管理","Manage Packages for Repository:":"リポジトリーのパッケージを管理:","Manage Puppet Modules for {{ repository.name }}":"{{ repository.name }} の Puppet モジュールを管理","Manage Puppet Modules for Repository:":"リポジトリーの Puppet モジュールを管理:","Manage Repository Sets":"リポジトリーセットの管理","Manage Subscriptions":"サブスクリプションの管理","Manage Sync Plan":"同期プランの管理","Manifest Lists":"マニフェスト一覧","Manifest Type":"マニフェストタイプ","Many Content View actions are disabled while a version task is in progress.":"バージョンタスクの実行中、多くのコンテンツビューは無効になります。","Maximum Version":"最大のバージョン","Minimum Version":"最小のバージョン","Mirror on Sync":"同期時のミラーリング","Model":"モデル","Moderate":"モデレーション","Module %s removed from Content View.":"モジュール %s がコンテンツビューから削除されました。","Module Stream":"モジュールストリーム","Module Streams":"モジュールストリーム","More Details":"詳細","N/A":"該当なし","Name":"名前","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"同期するアップストリームリポジトリーの名前です。例: 'busybox' または 'fedora/ssh'。","Networking":"ネットワーク","Never":"しない","Never synced":"同期しない","New Activation Key":"新規アクティベーションキー","New Environment":"新規環境","New Filter":"新規フィルター","New Filter for Content View:":"コンテンツビューの新規フィルター:","New Name:":"新規の名前:","New Product":"新製品","New Repository":"新規リポジトリー","New Sync Plan":"新規同期プラン","New sync plan successfully created.":"新規同期プランが正常に作成されました。","Next":"次へ","Next Sync":"次の同期","No":"No","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"そのライフサイクル環境にある一部のアクティベーションキーには「編集」パーミッションがありません。","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"そのライフサイクル環境にある一部のコンテンツホストには「編集」パーミッションがありません。","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"ライフサイクル環境には、プロモート/削除パーミッションがありません。","No activation keys are affected.":"影響するアクティベーションキーはありません。","No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".":"使用可能な別のリリースバージョンはありません。使用可能なリリースは、\"{{ host.content_facet_attributes.content_view.name }}\" (このコンテンツホストが所定の <a href=\"/lifecycle_environments\">ライフサイクル環境</a>、\"{{ host.content_facet_attributes.lifecycle_environment.name }}\" に対して割り当てられる選択済みの<a href=\"/content_views\">コンテンツビュー</a>) で使用可能なものに基づきます。","No Content Hosts are affected.":"影響するコンテンツホストはありません。","No Content Hosts match this Erratum.":"このエラータに一致するコンテンツホストはありません。","No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first.":"{{ contentView.name }} に追加できるコンテンツビューはありません。最初に複合以外のコンテンツビューを作成します。","No Content Views available, please select another environment.":"利用可能なコンテンツビューはありません。別の環境を選択してください。","No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views.":"{{ contentView.name }} に属するコンテンツビューはありません。コンテンツビューを追加するために追加 (add) タグを使用します。","No Content Views contain this Deb":"この Deb を含むコンテンツビューはありません","No Content Views contain this File":"このファイルを含むコンテンツビューはありません。","No Content Views contain this Puppet Module":"この Puppet モジュールを含むコンテンツビューはありません。","No content views exist for {{selected.environment.name}}":"{{selected.environment.name}} についてのコンテンツビューは存在しません","No Content Views match the search.":"検索に一致するコンテンツビューはありません。","No discovered repositories.":"検出されたリポジトリーはありません。","No enabled Repository Sets provided through subscriptions.":"サブスクリプションで提供されているリポジトリーセットで有効なものはありません。","No Errata to display":"表示するエラータはありません。","No Host Collections match your search.":"検索に一致するホストコレクションはありません。","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"表示するホストコレクションがありません。メインメニューの「ホスト」の下にある「ホストコレクション」を選択してホストコレクションを追加できます。","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"表示するホストコレクションがありません。「追加」タブを選択してホストコレクションを追加できます。","No matching results.":"一致する結果がありません。","No products are available to add to this Sync Plan.":"この同期プランに追加できる製品がありません。","No products are have been added to this Sync Plan.":"この同期プランに追加されている製品はありません。","No puppet modules found":"Puppet モジュールが見つかりません","No releases exist in the Library.":"ライブラリーにはリリースがありません。","No Repositories contain this Branch.":"このブランチを含むリポジトリーはありません。","No Repositories contain this Deb":"この Deb を含むリポジトリーはありません","No Repositories contain this Erratum.":"このエラータを含むリポジトリーはありません。","No Repositories contain this File":"このファイルを含むリポジトリーはありません。","No Repositories contain this Package.":"このパッケージを含むリポジトリーはありません","No Repositories contain this Puppet Module":"この Puppet モジュールを含むリポジトリーはありません","No repository sets provided through subscriptions.":"サブスクリプションで提供されるリポジトリーセットはありません。","No sync information available.":"同期情報がありません","No tasks exist for this resource.":"このリソースのタスクがありません。","No versions found for {{ $stateParams.moduleName }}":"{{ $stateParams.moduleName }} のバージョンが見つかりません","None":"なし","Not installed":"インストールされていません","Not started":"開始されていません","Not Synced":"同期されていません","Not yet published":"公開されていません","Number of CPUs":"CPU 数","Number of Repositories":"リポジトリー数","On Demand":"オンデマンド","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"選択された 1 つ以上のエラータは、選択されたホストで実行されているコンテンツビューの公開済みバージョンからインストールすることができません。新規コンテンツビューバージョン (以下に指定) が作成され、\nこのエラータがホストの環境でインストール可能になります。現在のバージョンは、ホストのライフサイクル環境でこの新規バージョンに置き換えられます。公開後すぐにこれらのエラータをホストにインストールするには、\n以下のボックスにチェックを付けます。","One or more RPMs are not showing up in the local repository even though they exist in the upstream repository.":"1 つ以上の RPM はアップストリームリポジトリーに存在するにもかかわらず、ローカルリポジトリーには表示されません。","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"エラータが現在ホストのライフサイクル環境でインストール可能なコンテンツホストのみを表示します。","Only show Errata that are Applicable to one or more Content Hosts":"1 つ以上のコンテンツホストに適用可能なエラータのみを表示","Only show Errata that are Installable on one or more Content Hosts":"1 つ以上のコンテンツホストにインストール可能なエラータのみを表示","Only show Packages that are Applicable to one or more Content Hosts":"1 つ以上のコンテンツホストに適用可能なパッケージのみを表示","Only show Packages that are Upgradable on one or more Content Hosts":"1 つ以上のコンテンツホストにアップグレード可能なパッケージのみを表示","Only show Subscriptions for products not already covered by a Subscription":"次のサブスクリプションのみを表示: 対象範囲に入っていない製品を示すサブスクリプション","Only show Subscriptions which can be applied to products installed on this Host":"このホストにインストールしている製品に適用できるサブスクリプションのみを表示","Only show Subscriptions which can be attached to this Host":"このホストに割り当てられるサブスクリプションのみを表示","Only the Applications with a Helper can be restarted.":"ヘルパーのあるアプリケーションのみを再起動できます。","Operating System":"オペレーティングシステム","Optimized Sync":"最適化された同期","Organization":"組織","Original Sync Date":"最初の同期日","OS":"OS","OSTree Branch metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"OSTree ブランチメタデータ生成がバックグラウンドで開始されました。進捗を監視するには、<a ng-href=\"{{ taskUrl() }}\">ここ</a>をクリックしてください。","OSTree Branch:":"OSTree ブランチ:","OSTree Branches":"OSTree ブランチ","OSTree Content":"OSTree コンテンツ","OSTree Repositories":"OSTree リポジトリー","OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>":"OSTree リポジトリー <div>{{ library.counts.ostree_repositories || 0 }}</div>","Override to Disabled":"オーバーライドして無効にする","Override to Enabled":"オーバーライドして有効にする","Package":"パッケージ","Package Actions":"パッケージのアクション","Package Filter:":"パッケージのフィルター:","Package Group":"パッケージグループ","Package Group Filter:":"パッケージグループフィルター:","Package Group successfully added.":"パッケージグループが正常に追加されました。","Package Group successfully removed.":"パッケージグループが正常に削除されました。","Package Groups":"パッケージグループ","Package Groups for Repository:":"リポジトリーのパッケージグループ:","Package Information":"パッケージ情報","Package Install":"パッケージのインストール","Package Installation, Removal, and Update":"パッケージのインストール、削除、および更新","Package Remove":"パッケージの削除","Package successfully added.":"パッケージが正常に追加されました。","Package successfully removed.":"パッケージが正常に削除されました。","Package successfully updated.":"パッケージが正常に更新されました。","Package Update":"パッケージの更新","Package Updates":"パッケージの更新","Package:":"パッケージ:","Package/Group Name":"パッケージ/グループ名","Packages":"パッケージ","Packages <div>{{ library.counts.packages || 0 }}</div>":"パッケージ: <div>{{ library.counts.packages || 0 }}</div>","Packages are automatically Applicable if they are Upgradable":"パッケージはアップグレード可能な場合に自動的に適用可能になります","Packages for:":"次のパッケージ:","Parameters":"パラメーター","Part of a manifest list":"マニフェスト一覧の一部","Password":"パスワード","Password of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"認証用のアップストリームリポジトリーユーザーのパスワードです。リポジトリーで認証が不要な場合は空白にします。","Paste contents of Content Credential":"コンテンツ認証情報のコンテンツをペースト","Path":"パス","Perform":"実行","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"影響するアクティベーションキーの移動先となるライフサイクル環境およびコンテンツビューを選択してください。","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"これらのコンテンツホストの移動先となるライフサイクル環境およびコンテンツビューを選択してください。","Please select a Lifecycle Environment.":"ライフサイクル環境を選択してください。","Please select an environment.":"環境を選択してください。","Please select one from the list below and you will be redirected.":"以下の一覧から 1 つ選択してください。自動的に移動します。","Plus %y more errors":"さらに %y エラー","Plus 1 more error":"さらに 1 エラー","Previous Lifecycle Environment (%e/%cv)":"直前のライフサイクル環境 (%e/%cv)","Prior Environment":"以前の環境","Product":"製品","Product Count":"製品数","Product Enhancement Advisory":"製品の機能強化アドバイザリー","Product information for:":"製品情報:","Product Management for Sync Plan:":"同期プランのための製品管理:","Product Name":"製品名","Product Options":"製品オプション","Product Saved":"製品を保存","Product syncs has been initiated in the background. Click %s to monitor the progress.":"製品の同期がバックグラウンドで開始されました。%s をクリックして進捗をモニターしてください。","Products":"製品","Products <div>{{ library.counts.products || 0 }}</div>":"製品: <div>{{ library.counts.products || 0 }}</div>","Products for":"製品","Products not covered":"対象外の製品","Project Page":"プロジェクトページ","Promote":"プロモート","Promote Content View:":"コンテンツビューのプロモート:","Promote Version":"バージョンのプロモート","Promote Version {{ version.version }}":"バージョン {{ version.version }} のプロモート","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"バージョンを {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }} にプロモート","Promoted to %s":"%s にプロモート","Promoting to %count environments.":"%count 環境にプロモートしています。","Promoting to 1 environment.":"1 環境にプロモートしています。","Promotion History":"プロモーション履歴","Provides":"提供する項目","Provisioning Details":"プロビジョニングの詳細","Provisioning Host Details":"ホストのプロビジョニングの詳細","Publish Content View:":"コンテンツビューの公開:","Publish New Version":"新規バージョンの公開","Publish via HTTP":"HTTP での公開","Publish via HTTPS":"HTTPS での公開","Published":"公開","Published At":"公開:","Published new version":"新規バージョンの公開","Published Repository Information":"リポジトリー情報の公開","Publishing and promoting to %count environments.":"%count 環境に公開およびプロモート中です。","Publishing and promoting to 1 environment.":"1 環境に公開およびプロモート中です。","Puppet Environment":"Puppet 環境","Puppet module added to Content View":"コンテンツビューに追加された Puppet モジュール:","Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Puppet モジュールのメタデータ生成がバックグラウンドで開始されました。\n <a ng-href=\"{{ taskUrl() }}\">ここ</a> をクリックして進捗をモニターしてください。","Puppet Module:":"Puppet モジュール:","Puppet Modules":"Puppet モジュール","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Puppet モジュール: <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"コンテンツビューの Puppet モジュール:","Quantity":"数量","RAM (GB)":"RAM (GB)","Range":"範囲","Reboot Suggested":"再起動が推奨されています","Reboot Suggested?":"再起動が推奨されていますか?","Recalculate\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>":"再計算\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>","Red Hat Repositories page":"Red Hat リポジトリーのページ","Red Hat Repositories page.":"Red Hat リポジトリーのページ。","Refresh Table":"テーブルの更新","Regenerate Repository Metadata":"リポジトリーメタデータの再生成","Register a Content Host":"コンテンツホストの登録","Register Content Host":"コンテンツホストの登録","Register using subscription-manager:":"subscription-manager を使用して登録:","Registered":"登録済み","Registered By":"登録:","Registered Through":"登録:","Registry Name Pattern":"レジストリー名のパターン","Registry to Discover":"検出するレジストリー","Registry URL":"レジストリー URL","Release":"リリース","Release Version":"リリースバージョン","Release Version:":"リリースバージョン:","Releases":"リリース","Remote execution plugin is required to be able to run any helpers.":"ヘルパーを実行するには、リモート実行プラグインが必要です。","Removal of selected repositories initiated successfully.":"選択されたリポジトリーの削除が正常に開始されました。","Remove":"削除","Remove {{ contentView.name }}":"{{ contentView.name }} の削除","Remove Activation Key \"{{ activationKey.name }}\"?":"アクティベーションキー \"{{ activationKey.name }}\" を削除しますか?","Remove Container Image Manifests":"コンテナーイメージマニフェストの削除","Remove Content Credential":"コンテンツ認証情報の削除","Remove Content Credential {{ contentCredential.name }}":"コンテンツ認証情報 {{ contentCredential.name }} の削除","Remove Content View":"コンテンツビューの削除","Remove Content Views":"コンテンツビューの削除","Remove Environment":"環境の削除","Remove Errata":"エラータの削除","Remove Files":"ファイルの削除","Remove From":"削除元","Remove Host Collection \"{{ hostCollection.name }}\"?":"ホストコレクション \"{{ hostCollection.name }}\" を削除しますか?","Remove Module":"モジュールの削除","Remove Package Group":"パッケージグループの削除","Remove Packages":"パッケージの削除","Remove Product":"製品の削除","Remove Product \"{{ product.name }}\"?":"製品 \"{{ product.name }}\" を削除しますか?","Remove Puppet Modules":"Puppet モジュールの削除","Remove Repositories":"リポジトリーの削除","Remove Repository":"リポジトリーの削除","Remove Repository \"{{ repository.name }}\"?":"リポジトリー \"{{ repository.name }}\" を削除しますか?","Remove Rule":"ルールの削除","Remove Selected":"選択を削除","Remove Successful.":"削除が成功しました。","Remove Sync Plan":"同期プランの削除","Remove Sync Plan \"{{ syncPlan.name }}\"?":"同期プラン \"{{ syncPlan.name }}\" を削除しますか?","Remove Tags":"タグの削除","Remove Version":"バージョンの削除","Remove Version Confirmation":"バージョンの削除を確認","Removed %x host collections from activation key \"%y\".":" %x ホストコレクションがアクティベーションキー \"%y\" から削除されました。","Removed %x host collections from content host \"%y\".":"%x ホストコレクションがコンテンツホスト \"%y\" から削除されました。","Removed %x products from sync plan \"%y\".":"%x 製品が同期プラン \"%y\" から削除されました。","Removing Repositories":"リポジトリーの削除中","Repo Discovery":"リポジトリーの検出","Repositories":"リポジトリー","Repositories containing branch {{ branch.name }}":"ブランチ {{ branch.name }} を含むリポジトリー","Repositories containing Errata {{ errata.errata_id }}":"エラータ {{ errata.errata_id }} を含むリポジトリー","Repositories containing package {{ package.nvrea }}":"パッケージ {{ package.nvrea }} を含むリポジトリー","Repositories for":"リポジトリー","Repositories for Content View:":"コンテンツビューのリポジトリー:","Repositories for Deb:":"Deb のリポジトリー:","Repositories for Errata:":"エラータのリポジトリー:","Repositories for File:":"ファイルのリポジトリー:","Repositories for Filter:":"フィルターのリポジトリー:","Repositories for Package:":"パッケージのリポジトリー:","Repositories for Product:":"製品のリポジトリー:","Repositories for Puppet Module:":"Puppet モジュールのリポジトリー:","Repositories to Create":"作成するリポジトリー","Repository":"リポジトリー","Repository \"%s\" successfully deleted":"リポジトリー \"%s\" が正常に削除されました","Repository %s successfully created.":"リポジトリー %s が正常に作成されました。","Repository Count":"リポジトリー数","Repository created":"リポジトリーが作成されました","Repository Discovery":"リポジトリーの検出","Repository Label":"リポジトリーラベル","Repository Name":"リポジトリー名","Repository Options":"リポジトリーのオプション","Repository Path":"リポジトリーパス","Repository Saved.":"リポジトリーが保存されました。","Repository Selection":"リポジトリーの選択","Repository Sets":"リポジトリーセット","Repository Sets settings saved successfully.":"リポジトリーセットの設定が正常に保存されました。","Repository Type":"リポジトリータイプ","Repository URL":"リポジトリー URL","Repository:":"リポジトリー:","Republish Repository Metadata":"リポジトリーメタデータの再公開","Requires":"必要項目","Reset to Default":"デフォルトにリセット","Restart":"再起動","Restart Selected":"再起動が選択されました","Restart Services on Content Host \"{{host.name}}\"?":"コンテンツホスト \"{{host.name}}\" のサービスを再起動しますか?","Restrict to architecture":"アーキテクチャーに制限","Restrict to Architecture":"アーキテクチャーに制限","Result":"結果","Role":"ロール","RPM":"RPM","RPM Name":"RPM 名","rpm Package Groups":"RPM パッケージグループ","rpm Packages":"RPM パッケージ","RPMs":"RPM","Run Auto-Attach":"自動割り当ての実行","Run Repository Creation\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>":"リポジトリー作成の実行\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>","Run Sync Plan":"同期プランの実行","Save":"保存","Save Successful.":"保存が成功しました。","Schema Version":"スキーマのバージョン","Schema Version 1":"スキーマバージョン 1","Schema Version 2":"スキーマバージョン 2","Security":"セキュリティー","Security Advisory":"セキュリティーアドバイザリー","Select":"選択","Select a Content Source:":"コンテンツソースの選択:","Select A New Puppet Module To Add":"追加する新規 Puppet モジュールの選択","Select a Version":"バージョンの選択","Select Action":"アクションの選択","Select an Available Version of {{ $stateParams.moduleName }}":"{{ $stateParams.moduleName }} の利用可能なバージョンを選択","Select an Organization":"組織の選択","Select content units to ignore while synchronizing this repository.":"このリポジトリーを同期中に無視するコンテンツユニットを選択します。","Select Content View":"コンテンツビューの選択","Select Environment":"環境の選択","Select new version":"新規バージョンの選択","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"バージョン {{ version.version }} を削除するライフサイクル環境を選択:","Select Version":"バージョンの選択","Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\" or \"Background\" download policies will be synced.":"「完全な同期」を選択すると、選択された製品の Yum リポジトリーのみが同期します。「コンテンツの検証」を選択すると、「即時」または「バックグラウンド」ダウンロードポリシーを使用する Yum リポジトリーのみが同期します。","Selecting this option will result in contents that are no longer part of the upstream repository being removed during synchronization.":"このオプションを選択すると、アップストリームリポジトリーの一部でないコンテンツが同期中に削除されます。","Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification.":"このオプションを選択すると、Katello でアップストリーム URL の SSL 証明書が信頼された CA によって署名されていることが検証されます。この検証が不要な場合は選択を解除します。","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"このオプションを選択すると、該当バージョンが完全に削除され、プロモーション対象として使用不可になります。このオプションを選択するには、バージョンをすべてのライフサイクル環境から取り除く必要があります。","Serve via HTTP":"HTTP 経由で提供","Service Level":"サービスレベル","Service Level (SLA)":"サービスレベル (SLA)","Set Release Version":"リリースバージョンの設定","Severity":"重大度","Show affected Activation Keys":"影響するアクティベーションキーの表示","Show affected Content Hosts":"影響するコンテンツホストの表示","Show All":"すべてを表示","Show all Repository Sets in Organization":"組織にすべてのリポジトリーセットを表示","Size":"サイズ","Smart proxy currently syncing to your locations...":"現在、スマートプロキシーはロケーションと同期中です...","Smart proxy is synchronized":"スマートプロキシーが同期されています","Sockets":"ソケット","Solution":"ソリューション","Some of the Errata shown below may not be installable as they are not in this Content Host's\n Content View and Lifecycle Environment. In order to apply such Errata an Incremental Update is required.":"以下に表示されているエラータの一部は、このコンテンツホストの\nコンテンツビュー\n とライフサイクル環境にないためにインストールできない場合があります。このエラータを適用するには、増分更新が必要です。","Something went wrong when retrieving the resource.":"リソースの取得時に問題が発生しました。","Something went wrong when saving the resource.":"リソースの保存時に問題が発生しました。","Source":"ソース","Source RPM":"ソース RPM","Source RPMs":"ソース RPM","SSL CA Cert":"SSL CA 証明書","SSL Certificate":"SSL 証明書","SSL Client Cert":"SSL クライアント証明書","SSL Client Key":"SSL クライアント鍵","Standard sync, optimized for speed by bypassing any unneeded steps.":"標準的な同期で、不要なステップをバイパスすることで速度の面で最適化されています。","Start Date":"開始日","Start Time":"開始時刻","Started At":"開始時刻","Starting":"開始","Starts":"開始","State":"状態","Status":"状態","Stream":"ストリーム","Subscription Details":"サブスクリプションの詳細","Subscription Management":"サブスクリプション管理","Subscription Status":"サブスクリプションの状態","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"サブスクリプション","Subscriptions for Activation Key:":"アクティベーションキーのサブスクリプション:","Subscriptions for Content Host:":"コンテンツホストのサブスクリプション:","Subscriptions for:":"次のサブスクリプション:","Success!":"成功しました!","Successfully added %s subscriptions.":"%s サブスクリプションが正常に追加されました","Successfully deleted %cv version %ver.":"%cv バージョン %ver が正常に削除されました。","Successfully initiated deletion of %cv version %ver.":"%cv バージョン %ver の削除が正常に開始されました。","Successfully initiated promotion of %cv version %ver to %env.":"%cv バージョン %ver の %env へのプロモーションが正常に開始されました。","Successfully initiated removal of %cv version %ver.":"%cv バージョン %ver の削除が正常に開始されました。","Successfully promoted %cv version %ver to %env":"%cv バージョン %ver が %env に正常にプロモートされました ","Successfully published %cv version %ver and promoted to Library":"%cv バージョン %ver が正常に公開され、ライブラリーにプロモートされました","Successfully removed %cv version %ver from environments: %env":"%cv バージョン %ver が以下の環境から正常に削除されました: %env","Successfully removed %s items.":"%s 項目が正常に削除されました。","Successfully removed %s subscriptions.":"%s サブスクリプションが正常に削除されました。","Successfully removed 1 item.":"1 項目が正常に削除されました。","Successfully scheduled an update of all packages":"すべてのパッケージの更新が正常にスケジュールされました","Successfully scheduled package installation":"パッケージのインストールが正常にスケジュールされました","Successfully scheduled package removal":"パッケージの削除が正常にスケジュールされました","Successfully scheduled package update":"パッケージの更新が正常にスケジュールされました","Successfully updated subscriptions.":"サブスクリプションが正常に更新されました。","Successfully uploaded content:":"コンテンツが正常にアップロードされました:","Summary":"要約","Support Level":"サポートレベル","Sync":"同期","Sync Enabled":"同期が有効にされました","Sync even if the upstream metadata appears to have no change. This option is only relevant for yum repositories and will take longer than an optimized sync. Choose this option if:":"アップストリームメタデータに変更がないような場合でも同期します。このオプションは Yum リポジトリーについてのみ選択でき、最適化された同期以上の時間がかかります。以下の場合にこのオプションを選択します。","Sync Interval":"同期間隔","Sync Now":"同期開始","Sync Plan":"同期プラン","Sync Plan %s has been deleted.":"同期プラン %s が削除されました","Sync Plan created and assigned to product.":"同期プランが作成され、製品に割り当てられています。","Sync Plan Saved":"同期プランが保存されました","Sync Plan:":"同期プラン:","Sync Plans":"同期プラン","Sync Selected":"同期が選択されました","Sync Settings":"同期設定","Sync State":"同期の状態","Sync Status":"同期の状態","Synced manually, no interval set.":"手動で同期されました。間隔が設定されていません。","Synchronization is about to start...":"同期が今すぐ開始されます ...","Synchronization is being cancelled...":"同期がキャンセルされます ...","System Purpose":"システムの目的","Tags":"タグ","Task Details":"タスクの詳細","Tasks":"タスク","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"以下に一覧表示されているアクティベーションキーは、現在このコンテンツビューバージョンを使用しています。バージョンを削除する前に、これらのアクティベーションキーを、このバージョンが使用されていないライフサイクル環境に移動する必要があります。","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"このバージョンのアーカイブは削除されます。このバージョンは削除が完了すると利用できなくなります。","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"このバージョンのアーカイブは削除されません。このバージョンは依然として、ライフサイクル環境にプロモートするために使用できます。","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"以下に一覧表示されているコンテンツホストは、現在このコンテンツビューバージョンを使用しています。バージョンを削除する前に、これらのコンテンツホストを、このバージョンが使用されていない環境に移動する必要があります。","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"これらのホストに対してエラータを利用可能にするには、コンテンツビューまたはライフサイクル環境を更新する必要があります。","The following actions can be performed on content hosts in this host collection:":"以下のアクションは、このホストコレクション内のコンテンツホストで実行できます:","The host has not reported any applicable packages for upgrade.":"ホストはアップグレードに適用可能なパッケージについて報告していません。","The host has not reported any installed packages, registering with subscription-manager should cause these to be reported.":"ホストがインストール済みのパッケージを報告しませんでした。subscription-manager での登録時にこれらのパッケージは報告されるはずです。","The host requires being attached to a content view and the lifecycle environment you have chosen has no content views promoted to it.\n See the <a href=\"/content_views\">content views page</a> to manage and promote a content view.":"ホストをコンテンツビューに割り当てる必要があります。選択したライフサイクル環境には、コンテンツビューがプロモートされていません。\n コンテンツビューを管理し、プロモートするには、<a href=\"/content_views\">コンテンツビューのページ</a> を参照してください。","The page you are attempting to access requires selecting a specific organization.":"アクセスしようとしているページでは、特定の組織を選択する必要があります。","The selected environment contains no Content Views, please select a different environment.":"選択された環境にはコンテンツビューがありません。別の環境を選択してください。","The time the sync should happen in your current time zone.":"同期が実行される現在のタイムゾーンの時間です。","There are {{ errataCount }} total Errata in this organization but none match the above filters.":"この組織には合計 {{ errataCount }} エラータがありますが、どれも上記のフィルターに一致しません。","There are {{ packageCount }} total Packages in this organization but none match the above filters.":"この組織には合計 {{ packageCount }} パッケージがありますが、どれも上記のフィルターに一致しません。","There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"現在、このコンテンツビューに関連付けられた Docker リポジトリーはありません。上部の「追加」タブをクリックすると、いくつか追加することができます。","There are currently no Docker Repositories to add to this Content View,":"現在、このコンテンツビューに追加する Docker リポジトリーはありません。","There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"現在、このコンテンツビューに関連付けられたファイルリポジトリーはありません。上部の「追加」タブをクリックすると、いくつか追加することができます。","There are currently no File Repositories to add to this Content View,":"現在、このコンテンツビューに追加するファイルリポジトリーはありません。","There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"現在、このコンテンツビューに関連付けられた OSTree リポジトリーはありません。上部の「追加」タブをクリックすると、いくつか追加することができます。","There are currently no OSTree Repositories to add to this Content View,":"現在、このコンテンツビューに追加する OSTree リポジトリーはありません。","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"現在、このコンテンツビューに関連付けられたリポジトリーはありません。上部の「追加」タブをクリックすると、いくつか追加することができます。","There are currently no repositories to add to this Content View,":"現在、このコンテンツビューに追加するリポジトリーはありません。","There are no Content Views in this Environment.":"この環境にはコンテンツビューがありません。","There are no Content Views that match the criteria.":"条件に一致するコンテンツビューがありません。","There are no Errata associated with this Content Host to display.":"このコンテンツホストに関連した、表示できるエラータがありません。","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"この組織にはエラータがありません。このページにエラータを表示するには、エラータを含む 1 つ以上の製品を作成します。","There are no Errata to display.":"表示するエラータがありません。","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"利用可能なホストコレクションがありません。メインメニューの「ホスト」の下にある「ホストコレクション」を選択して新規ホストコレクションを作成できます。","There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page.":"この組織にはパッケージがありません。このページにパッケージを表示するには、パッケージを含む 1 つ以上の製品を作成します。","There are no Sync Plans available. You can create new Sync Plans after selecting 'Sync Plans' under 'Hosts' in main menu.":"利用可能な同期プランがありません。メインメニューの「ホスト」の下にある「同期プラン」を選択して新規の同期プランを作成できます。","There are no Traces to display.":"表示するトレースがありません。","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"現在、増分更新が進行中です。既存の更新を適用する前に、この更新を終了する必要があります。","There is currently no history associated with this Content View.":"現在、このコンテンツビューに関連付けられた履歴はありません。","This action will affect only those Content Hosts that require a change.\n If the Content Host does not have the selected Subscription no action will take place.":"このアクションは、変更が必要なコンテンツホストにのみ影響を与えます。\nコンテンツホストにサブスクリプションが選択されていない場合、アクションは実行されません。","This activation key is not associated with any content hosts.":"このアクティベーションキーは、いずれのコンテンツホストにも関連付けられていません。","This activation key may be used during system registration. For example:":"このアクティベーションキーは、システムの登録時に使用できます。例:","This Container Image Tag is not present in any Lifecycle Environments.":"このコンテナーイメージタグはライフサイクル環境にありません。","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"このコンテンツビューにはバージョンがありません。右側の「新規バージョンの公開」ボタンを使用して最初のコンテンツビューバージョンを作成します。","This filter applies only to a subset of repositories in the content view.":"このフィルターは、コンテンツビューのリポジトリーのサブセットにのみ適用されます。","This filter applies to all repositories in the content view (current and future).":"このフィルターは、コンテンツビューのすべてのリポジトリーに適用されます (現在および将来)。","This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n Change the setting \"Delete Host upon Unregister\" to false on the <a href=\"/settings\">settings page</a> to prevent this.":"この操作では、仮想マシンや DNS レコードといったホストにリンクされた管理リソースも削除されることがあります。\n これを防ぐには、<a href=\"/settings\">settings page</a> にある \"Delete Host upon Unregister\" を false に設定します。","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"このバージョンは、以下のいずれかの理由により、一部のライフサイクル環境から削除できません。","This Version is not associated with any Lifecycle Environments.":"このバージョンは、いずれのライフサイクル環境にも関連付けられていません。","This version will be removed from:":"このバージョンは次から削除されます:","Title":"タイトル","to manage them individually.":"それぞれを別々に管理する","To register a content host to this server, follow these steps.":"コンテンツホストをこのサーバーに登録するには、以下のステップを実行します。","To report package & errata information:":"パッケージ & エラータ情報の報告:","Toggle Dropdown":"トグルドロップダウン","Topic":"トピック","Traces":"トレース","Traces for:":"トレース:","Type":"タイプ","Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}":"タイプ: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}","Unable to determine version":"バージョンを決定できません","Unauthenticated Pull":"非認証のプル","Unknown":"不明","Unlimited Content Hosts:":"無制限のコンテンツホスト:","Unlimited Hosts":"無制限のホスト","Unregister Host":"ホストの登録解除","Unregister Host \"{{host.name}}\"?":"ホスト \"{{host.name}}\" の登録を解除しますか?","Unregister Options:":"登録解除のオプション:","Unregister the host as a subscription consumer. Provisioning and configuration information is preserved.":"ホストをサブスクリプションコンシューマーとして登録解除。プロビジョニングおよび設定情報は保持されます。","Unsupported Type!":"サポートされないタイプです!","Update":"更新","Update All Packages":"すべてのパッケージの更新","Update Packages":"パッケージの更新","Update Repositories":"リポジトリーの更新","Update Sync Plan":"同期プランの更新","Updated":"更新済み","Updated errata filter -":"エラータフィルターの更新 -","Updated On":"更新日","Upgradable":"アップグレード可能","Upgradable For":"アップグレード可能","Upgradable Package":"アップグレードできるパッケージ","Upgrade Selected":"アップグレードが選択されました","Upload":"アップロード","Upload Content Credential file":"コンテンツ認証ファイルのアップロード","Upload File":"ファイルのアップロード","Upload Package":"パッケージのアップロード","Upload Puppet Module":"Puppet モジュールのアップロード","Uploading...":"アップロード中...","Upstream Authorization":"アップストリーム承認","Upstream Image Name":"アップストリームのイメージ名","Upstream Password":"アップストリームパスワード","Upstream Repository Name":"アップストリームリポジトリー名","Upstream Sync Policy":"アップストリーム同期ポリシー","Upstream URL":"アップストリーム URL","Upstream Username":"アップストリームユーザー名","Url":"URL","URL of the registry you want to sync. Example: https://registry-1.docker.io/":"同期するレジストリーの URL。例: https://registry-1.docker.io/","URL to Discover":"検出する URL","Usage Type":"使用タイプ","Use the cancel button on content view selection to revert your lifecycle environment selection.":"コンテンツビュー選択の「取り消し」ボタンを使って、ライフサイクル環境の選択を元に戻します。","Used as":"使用","User":"ユーザー","Username":"ユーザー名","Username of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"認証用のアップストリームリポジトリーユーザーのユーザー名です。リポジトリーで認証が不要な場合は空白にします。","Using a username and password:":"ユーザー名とパスワードの使用:","Using an Activation Key:":"アクティベーションキーの使用:","Validate Content Sync":"コンテンツ同期の検証","Variant":"カーネルの種類","Verify SSL":"SSL を照合する","Version":"バージョン","Version {{ rule.version }}":"バージョン {{ rule.version }}","Version Deletion":"バージョンの削除","Version Details":"バージョンの詳細","Version:":"バージョン: ","Versions":"バージョン","Versions for Content View:":"コンテンツビューのバージョン:","Versions for Puppet Module:":"Puppet モジュールのバージョン:","via Katello agent":"Katello エージェント","via Katello Agent":"Katello エージェント","via remote execution":"リモート実行","via remote execution - customize first":"リモート実行 - 最初にカスタマイズ","View Container Image Manifest Lists for Repository:":"リポジトリーのコンテナーイメージマニフェスト一覧の表示:","View Docker Tags for Repository:":"リポジトリーの Docker タグの表示:","Virtual Guest":"仮想ゲスト","Virtual Guests":"仮想ゲスト","Virtual Host":"仮想ホスト","weekly":"毎週","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"毎週: {{ product.sync_plan.sync_date | date:'EEEE' }}、{{ product.sync_plan.sync_date | date:'mediumTime' }} (サーバー時間)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"自動割り当てが無効にされている場合、システムの登録により、すべての関連付けられたサブスクリプションに割り当てられます。","When validating content, repositories using the \"On Demand\" download policy will download all packages within the repository.":"コンテンツの検証時に、「オンデマンド」ダウンロードポリシーを使用するリポジトリーはリポジトリー内のすべてのパッケージをダウンロードします。","Working":"稼働中","Yes":"Yes","You cannot remove these repositories because they belong to a Red Hat product.":"これらのリポジトリーは Red Hat 製品に属するので、削除することはできません。","You cannot remove these repositories because you do not have permission.":"パーミッションがないので、これらのリポジトリーを削除することはできません。","You cannot remove this product because it is a Red Hat product.":"この製品は Red Hat 製品のため、削除することはできません。","You cannot remove this product because it was published to a content view.":"この製品はコンテンツビューに公開されたため、削除することはできません。","You cannot remove this product because you do not have permission.":"パーミッションがないので、この製品を削除することはできません。","You cannot remove this repository because it is a Red Hat repository.":"このリポジトリーは Red Hat リポジトリーのため、削除することはできません。","You cannot remove this repository because it was published to a content view.":"このリポジトリーはコンテンツビューに公開されたため、削除することはできません。","You cannot remove this repository because you do not have permission.":"パーミッションがないので、このリポジトリーを削除することはできません。","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"現在、アクティベーションキーがありません。右側のボタンを使ってアクティベーションキーを追加することができます。","You currently don't have any Container Image Tags.":"現在、コンテナーイメージタグはありません。","You currently don't have any Content Credential, you can add Content Credentials using the button on the right.":"現在、コンテンツ認証情報がありません。右側のボタンを使ってコンテンツ認証情報を追加することができます。","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"現在、コンテンツホストがありません。メインメニューからコンテンツホストを選択してから右側のボタンをクリックすると、新規コンテンツホストを作成することができます。","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"現在、コンテンツホストがありません。右側のボタンをクリックし、指示に従ってコンテンツホストを登録することができます。","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"現在、コンテンツビューがありません。右側のボタンを使ってコンテンツビューを追加することができます。","You currently don't have any Debs.":"現在、Deb がありません。","You currently don't have any Files.":"現在、ファイルがありません。","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"現在、このコンテンツビューにはフィルターが含まれていません。右側のボタンを使って新規フィルターを追加することができます。","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"現在、ホストコレクションがありません。右側のボタンを使ってホストコレクションを追加することができます。","You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.":"現在、このホストグループにはホストがありません。「追加」タブをクリックすると、コンテンツホストを追加することができます。","You currently don't have any OSTree Branches.":"現在、OSTree ブランチがありません。","You currently don't have any Products associated with this Content Credential.":"現在、このこの認証情報に関連付けられた製品がありません。","You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu":"現在、サブスクライブする製品がありません。メインメニューの「コンテンツ」の下にある「製品」を選択して製品を追加できます。","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"現在、製品<span bst-feature-flag=\"custom_products\">がありません。右側のボタンを使って製品を追加することができます</span>。","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"現在、このコンテンツビューには Puppet モジュールが含まれていません。右側のボタンを使って Puppet モジュールを追加することができます。","You currently don't have any Puppet Modules.":"現在、Puppet モジュールがありません。","You currently don't have any Repositories associated with this Content Credential.":"現在、このこの認証情報に関連付けられたリポジトリーがありません。","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"現在、この製品にはリポジトリーが含まれていません。右側のボタンを使ってリポジトリーを追加することができます。","You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab.":"現在、このアクティベーションキーに関連付けられたサブスクリプションはありません。「追加」タブをクリックすると、サブスクリプションを追加することができます。","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"現在、同期プランがありません。右側のボタンを使って同期プランを作成することができます。","You do not have any Installed Products":"インストール済みの製品がありません","You must select a content view in order to save your environment.":"環境を保存するにはコンテンツビューを選択する必要があります。","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"環境の変更を保存するには、まず新規コンテンツビューを選択する必要があります。コンテンツビュー選択の「取り消し」ボタンを使って、環境の選択を元に戻します。","You must select a new content view before your change of lifecycle environment can be saved.":"ライフサイクル環境の変更を保存するには、まず新規コンテンツビューを選択する必要があります。","You must select at least one Content Host in order to apply Errata.":"エラータを適用するために 1 つ以上のコンテンツホストを選択する必要があります。","You must select at least one Errata to apply.":"適用するエラータを少なくとも 1 つ選択する必要があります。","You must select at least one repository.":"1 つ以上のリポジトリーを選択する必要があります。","Your search returned zero Activation Keys.":"検索によってゼロ (0) のアクティべーションキーが返されました。","Your search returned zero Container Image Tags.":"検索によってゼロ (0) のコンテナーイメージタグが返されました。","Your search returned zero Content Credential.":"検索によってゼロ (0) のコンテンツ認証情報が返されました。","Your search returned zero Content Hosts.":"検索によってゼロ (0) のコンテンツホストが返されました。","Your search returned zero Content View.":"検索によってゼロ (0) のコンテンツビューが返されました。","Your search returned zero Content Views":"検索によってゼロ (0) のコンテンツビューが返されました。","Your search returned zero Content Views.":"検索によってゼロ (0) のコンテンツビューが返されました。","Your search returned zero Debs.":"検索によってゼロ (0) の Deb が返されました。","Your search returned zero Errata.":"検索によってゼロ (0) のエラータが返されました。","Your search returned zero Erratum.":"検索によってゼロ (0) のエラータが返されました。","Your search returned zero Files.":"検索によってゼロ (0) のファイルが返されました。","Your search returned zero Filters.":"検索によってゼロ (0) のフィルターが返されました。","Your search returned zero Host Collections.":"検索によってゼロ (0) のホストコレクションが返されました。","Your search returned zero Hosts.":"検索によってゼロ (0) のホストが返されました。","Your search returned zero Lifecycle Environments.":"検索によってゼロ (0) のライフサイクル環境が返されました。","Your search returned zero Packages.":"検索によってゼロ (0) のパッケージが返されました。","Your search returned zero Products.":"検索によってゼロ (0) の製品が返されました。","Your search returned zero Puppet Modules.":"検索によってゼロ (0) の Puppet モジュールが返されました。","Your search returned zero Repositories":"検索によってゼロ (0) のリポジトリーが返されました。","Your search returned zero Repositories.":"検索によってゼロ (0) のリポジトリーが返されました。","Your search returned zero repository sets.":"検索によってゼロ (0) のリポジトリーセットが返されました。","Your search returned zero Repository Sets.":"検索によってゼロ (0) のリポジトリーセットが返されました。","Your search returned zero results.":"検索によってゼロ (0) の結果が返されました。","Your search returned zero Subscriptions.":"検索によってゼロ (0) のサブスクリプションが返されました。","Your search returned zero Sync Plans.":"検索によってゼロ (0) の同期プランが返されました。","Your search returned zero Traces.":"検索によってゼロ (0) のトレースが返されました。","Your search returned zero versions for {{ $stateParams.moduleName }}":"検索によって {{ $stateParams.moduleName }} のゼロ (0) バージョンが返されました。","Yum Content":"Yum コンテンツ","Yum Metadata Checksum":"Yum メタデータのチェックサム","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Yum メタデータの生成がバックグラウンドで開始されました。<a href=\"{{ taskUrl() }}\">ここ</a> をクリックして進捗をモニターしてください。","Yum Repositories":"Yum リポジトリー","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Yum リポジトリー: <div>{{ library.counts.yum_repositories || 0 }}</div>"});
8
8
  gettextCatalog.setStrings('ko', {"- Date and Type":"- 날짜 및 유형 ","-- select an interval --":"-- 간격 선택 --","(Not all Activation Keys editable )":"(활성키 중 일부는 편집할 수 없음)","(Not all Content Hosts editable )":"(컨텐츠 호스트 중 일부는 편집할 수 없음)","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"하나 이상의 컨텐츠 뷰 버전이 라이프 사이클 환경으로 승격되고 있기 때문에 {{ contentView.name }}을 삭제할 수 없습니다.\n 컨텐츠 뷰를 삭제하기 전 각 컨텐츠 뷰 버전을 라이프 사이클 환경에서 삭제해야 합니다.","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} 적용 가능,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} 설치 가능 ","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} 에라타 ","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} 에라타 ","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} Puppet 모듈 ","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} 패키지 ","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} 패키지 ","{{ repository.last_sync_words }} ago":"{{ repository.last_sync_words }} 전 ","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} 활성키가 {{ deleteOptions.activationKeys.environment.name }}에 있는 {{ deleteOptions.activationKeys.contentView.name }}으로 이동합니다. ","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} 컨텐츠 호스트가 {{ deleteOptions.contentHosts.environment.name }}에 있는 {{ deleteOptions.contentHosts.contentView.name }}로 이동합니다. ","{{ type.display }}":"{{ type.display }}","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} 에라타 ","{{ version.package_count }} Packages":"{{ version.package_count }} 패키지 ","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} Puppet 모듈 ","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"*로 표시된 컨텐츠 뷰 버전은 복합 컨텐츠 뷰 버전입니다. 업데이트해야할 구성 요소는 아래에 나열되어 있습니다.","%(consumed)s out of %(quantity)s":"%(quantity)s 중 %(consumed)s","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n 별표로 표시된 환경은 승격 대상으로 제안된 환경입니다.","1 repository sync in progress.":"1개의 리포지터리 동기화가 진행 중입니다.","1 successfully synced repository.":"1개의 리포지터리가 성공적으로 동기화되었습니다.","A composite view contains other content views.":"복합 뷰에 다른 컨텐츠 뷰가 포함되어 있습니다. ","Account":"계정 ","Action":"동작 ","Action Type":"동작 유형 ","Actions":"동작 ","Activation Key":"활성키 ","Activation Key Content":"활성키 컨텐츠 ","Activation Key removed.":"활성키가 삭제되었습니다. ","Activation Key updated":"활성키가 업데이트되었습니다 ","Activation Key:":"활성키:","Activation Keys":"활성키 ","Activation Keys using Version {{ version.version }}":"{{ version.version }} 버전을 사용하는 활성키 ","Add":"추가 ","Add Content Hosts to:":"컨텐츠 호스트 추가: ","Add Content Views":"컨텐츠 뷰 추가 ","Add Errata":"에라타 추가 ","Add New Environment":"새 환경 추가 ","Add New Module":"새 모듈 추가 ","Add Package Group":"패키지 그룹 추가 ","Add Repositories":"리포지터리 추가 ","Add Selected":"선택 사항 추가 ","add some repositories.":"일부 리포지터리를 추가합니다. ","Add Subscriptions for Activation Key:":"활성키의 서브스크립션 추가:","Add To":"추가 ","Added %x host collections to activation key \"%y\".":"활성키 \"%y\"에 %x 호스트 컬렉션을 추가했습니다. ","Added %x host collections to content host \"%y\".":"컨텐츠 호스트 \"%y\"에 %x 호스트 컬렉션을 추가했습니다. ","Added %x products to sync plan \"%y\".":"동기화 계획 \"%y\"에 %x 제품을 추가했습니다. ","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"\"{{ priorEnvironment.name }}\" 마지막에 라이프사이클 환경을 추가하고 있습니다 ","Advisory":"권고","Affected Activation Keys":"영향을 받은 활성키 ","Affected Content Hosts":"영향을 받은 컨텐츠 호스트 ","Affected repositories have been updated.":"영향을 받은 리포지터리가 업데이트되었습니다. ","All Content Views":"모든 컨텐츠 보기 ","All Products":"전체 제품","All Repositories":"전체 리포지터리 ","All Versions":"모든 버전 ","An error occurred removing the Activation Key:":"활성키를 제거하는 도중 오류가 발생했습니다: ","An error occurred removing the content hosts.":"컨텐츠 호스트를 삭제하는 도중 오류가 발생했습니다. ","An error occurred removing the environment:":"환경을 삭제하는 도중 오류가 발생했습니다: ","An error occurred removing the Host Collection:":"호스트 모음을 삭제하는 도중 오류가 발생했습니다: ","An error occurred removing the subscriptions.":"서브스크립션을 삭제하는 도중 오류가 발생했습니다. ","An error occurred saving the Activation Key:":"활성키를 저장하는 도중 오류가 발생했습니다: ","An error occurred saving the Content Host:":"컨텐츠 호스트를 저장하는 도중 오류가 발생했습니다: ","An error occurred saving the Environment:":"환경을 저장하는 도중 오류가 발생했습니다: ","An error occurred saving the Filter:":"필터를 저장하는 도중 오류가 발생했습니다: ","An error occurred saving the Host Collection:":"호스트 모음을 저장하는 도중 오류가 발생했습니다: ","An error occurred saving the Product:":"제품을 저장하는 도중 오류가 발생했습니다: ","An error occurred saving the Repository:":"리포지터리를 저장하는 도중 오류가 발생했습니다: ","An error occurred saving the Sync Plan:":"동기화 계획을 저장하는 도중 오류가 발생했습니다: ","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"서브스크립션 자동 첨부를 시도하는 도중 오류가 발생했습니다. 보다 자세한 내용은 로그에서 확인하십시오. ","An error occurred updating the Content View:":"컨텐츠 뷰를 업데이트하는 도중 오류가 발생했습니다: ","Applicable":"적용 가능 ","Applicable Errata":"적용 가능한 에라타 ","Apply":"적용","Apply {{ errata.errata_id }}":"{{ errata.errata_id }} 적용 ","Apply Errata":"에라타 적용","Apply Errata to Content Hosts":"컨텐츠 호스트에 에라타 적용 ","Apply Errata to Content Hosts immediately after publishing.":"공개 후 에라타를 컨텐츠 호스트에 적용합니다. ","Apply Selected":"선택 사항 적용 ","Apply to Content Hosts":"컨텐츠 호스트에 적용 ","Apply to Hosts":"호스트에 적용 ","Applying":"적용 중 ","Arch":"아키텍처 ","Archived Copy":"아카이브 복사 ","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"선택한 호스트 컬렉션에 선택된 {{ table.numSelected }} 컨텐츠 호스트를 추가하시겠습니까? ","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"{{ selected.environment.name }}에서 {{ selected.contentView.name }}에 대해 선택된 {{ table.numSelected }} 컨텐츠 호스트를 할당하시겠습니까? ","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"선택한 {{ getSelectedSystemIds().length }} 시스템에 {{ content.content }}을(를) 설치하시겠습니까? ","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"선택한 {{ getSelectedSystemIds().length }} 시스템에서 {{ content.content }}을(를) 삭제하시겠습니까? ","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"활성키 \"{{ activationKey.name }}\"를 삭제하시겠습니까?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"호스트 컬렉션 \"{{ hostCollection.name }}\"을 삭제하시겠습니까?","Are you sure you want to remove product \"{{ product.name }}\"?":"제품 \"{{ product.name }}\"을 삭제하시겠습니까?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"리포지터리 \"{{ repository.name }}\"를 삭제하시겠습니까?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"동기화 계획 \"{{ syncPlan.name }}\"을 삭제하시겠습니까?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"선택한 호스트 컬렉션에서 선택된 {{ table.numSelected }} 컨텐츠 호스트를 삭제하시겠습니까?","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"선택한 {{ getSelectedSystemIds().length }} 시스템에서 {{ content.content }}을(를) 업데이트하시겠습니까? ","As part of this deletion, 1 Content View Version will be deleted.":"삭제의 일부로 {{ versions.length }} 컨텐츠 뷰 버전은 삭제됩니다.","Assign":"할당","Associations":"연결 ","At least one Errata needs to be selected to Apply.":"적용하려면 최소 하나의 에라타를 선택해야 합니다. ","Attached":"추가됨","Author":"작성자","Auto-Attach":"자동 첨부 ","Automatic":"자동","Available Content Views for Composite Content View:":"복합적인 컨텐츠 뷰에 대해 사용 가능한 컨텐츠 뷰: ","Available Puppet Modules for Content View:":"컨텐츠 뷰에 대해 사용 가능한 Puppet 모듈: ","Back":"뒤로 ","Back To Errata List":"에라타 목록으로 돌아가기 ","Basic Information":"기본 정보 ","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"다음은 이 서브스크립션을 통해 컨텐츠 호스트에 대해 현재 사용할 수 있는 리포지터리 컨텐츠 모음입니다. Red Hat 서브스크립션의 경우 추가 컨텐츠를 사용할 수 있습니다.","Bug Fix":"버그 수정","Bug Fix Advisory":"버그 수정 권고","Bugfix":"버그 수정 ","Cancel":"취소 ","Capacity":"용량 ","Change assigned Lifecycle Environment or Content View":"할당된 라이프 사이클 환경 또는 컨텐츠 뷰 변경 ","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"이 활성키에 등록된 컨텐츠 호스트의 기본값 설증을 변경하려면 subscription-manager 버전 1.10 이상을 호스트에 설치해야 합니다. ","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"기본값 설정을 변경하려면 호스트에 subscription-manager 버전 1.10 이상을 설치해야 합니다. ","Checksum":"체크섬 ","Choose a lifecycle environment from the available promotion paths.":"사용 가능한 승격 경로에서 라이프 사이클 환경을 선택합니다.","Click here to check the status of the task.":"여기를 클릭하여 작업 상태를 확인하십시오.","Click here to select Errata for an Incremental Update.":"여기를 클릭하여 증분 업데이트를 위한 에라타를 선택합니다.","Close":"종료 ","Completely remove version?":"버전을 완전하게 제거하시겠습니까?","Components":"구성 요소","Components:":"구성 요소:","Composite":"복합 ","Composite View":"복합적인 뷰","Composite View?":"복합 뷰입니까?","Confirm":"확인","Confirm Remove":"삭제 확인 ","Confirm Version Removal: Version {{ version.version }}":"버전 삭제 확인: 버전 {{ version.version }}","Content":"컨텐츠 ","Content Counts":"컨텐츠 수 ","Content Host":"컨텐츠 호스트 ","Content Host Bulk Content":"컨텐츠 호스트 대량 컨텐츠 ","Content Host Bulk Subscriptions":"컨텐츠 호스트 대량 서브스크립션 ","Content Host Content":"컨텐츠 호스트 컨텐츠 ","Content Host Counts":"컨텐츠 호스트 수 ","Content Host Limit":"컨텐츠 호스트 제한 ","Content Host Properties":"컨텐츠 호스트 우선 순위 ","Content Host Registration":"컨텐츠 호스트 등록 ","Content Host Status":"컨텐츠 호스트 상태 ","Content Host:":"컨텐츠 호스트: ","Content Hosts":"컨텐츠 호스트 ","Content Hosts for Activation Key:":"활성키의 컨텐츠 호스트: ","Content Hosts for:":"컨텐츠 호스트: ","Content Hosts using Version {{ version.version }}":"{{ version.version }} 버전을 사용하는 컨텐츠 호스트 ","Content Type":"컨텐츠 유형 ","Content View":"컨텐츠 뷰 ","Content View Name":"컨텐츠 뷰 이름 ","Content View updated.":"컨텐츠 뷰가 업데이트되었습니다.","Content View Version":"컨텐츠 뷰 버전 ","Content View:":"컨텐츠 뷰:","Content Views":"컨텐츠 뷰 ","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"컨텐츠 뷰 <div>{{ library.counts.content_views || 0 }}</div>","Content Views for Composite Content View:":"복합적인 컨텐츠 뷰에 대한 컨텐츠 뷰: ","Contract":"계약 ","Copy Activation Key":"활성키 복사 ","Cores per Socket":"소켓 당 코어 ","Create":"생성 ","Create new view":"새 뷰 생성 ","Create New View":"새 뷰 생성 ","Create Selected":"선택 사항 생성 ","Create Sync Plan":"동기화 계획 생성 ","Create view from existing views":"기존 뷰에서 뷰 생성 ","Critical":"중요함","Current Subscriptions for Activation Key:":"활성키의 현재 서브스크립션:","Currently Selected Puppet Modules":"현재 선택된 Puppet 모듈 ","CVEs":"CVE","daily":"매일 ","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"매일 {{ product.sync_plan.sync_date | date:'mediumTime' }} (서버 시간)","Date":"날짜 ","Default":"기본값 ","Delete Hosts":"호스트 삭제 ","Delete Version {{ version.version }}":"버전 {{ version.version }} 삭제 ","Deleted from %s":"%s에서 삭제됨 ","Deleting from %count environments.":"%count 환경에서 삭제 중 ","Deleting from 1 environment.":"1 환경에서 삭제 중 ","Deletion from %s":"%s에서 삭제","Description":"설명 ","Details":"상세 정보 ","Details for Activation Key:":"활성키 상세 정보:","Details for Content View:":"컨텐츠 뷰 상세 정보: ","Details for Product:":"제품 상세 정보: ","Disable":"비활성화 ","Discover":"검색","Docker Repositories":"Docker 리포지터리 ","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Docker 리포지터리 <div>{{ library.counts.docker_repositories || 0 }}</div>","Edit":"수정","Enable":"활성화","End Date":"종료 날짜 ","Enhancement":"기능 강화","Enter Package Group Name(s)...":"패키지 그룹 이름 입력...","Enter Package Name(s)...":"패키지 이름 입력...","Environment":"환경 ","Environment saved":"환경이 저장되었습니다 ","Environments":"환경 ","Environments List":"환경 목록 ","Equal To":"동일 ","Errata":"에라타 ","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"에라타 <div>{{ library.counts.errata.total || 0 }}</div>","Errata Details":"에라타 상세 정보 ","Errata Filter:":"에라타 필터: ","Errata for:":"에라타 대상: ","Errata ID":"에라타 ID","Errata Installation":"에라타 설치 ","Errata successfully added.":"에라타가 성공적으로 추가되었습니다. ","Errata successfully removed.":"에라타가 성공적으로 삭제되었습니다. ","Errata Task List":"에라타 작업 목록 ","Errata Tasks":"에라타 작업 ","Errata Type":"에라타 유형 ","Errata:":"에라타: ","Erratum - by ID":"에라타 - ID에 따라 ","Erratum Date Range":"에라타 날짜 범위 ","Error during upload:":"업로드 도중 오류가 발생했습니다: ","Event":"이벤트 ","Exclude":"제외 ","Exclude all RPMs with no errata.":"에라타가 없는 RPM을 모두 제외합니다.","Existing Product":"기존 제품 ","Expires":"만료 ","File too large. Please use the CLI instead.":"파일이 너무 큽니다. 대신 CLI를 사용하십시오. ","Filter":"필터 ","Filter information for:":"필터 정보: ","Filter Saved":"필터가 저장되었습니다 ","Filter:":"필터: ","Filter...":"필터...","Filters":"필터 ","Filters for Content View:":"컨텐츠 뷰 필터: ","Filters successfully removed.":"필터가 성공적으로 삭제되었습니다. ","Finished At":"종료 일시: ","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Red Hat Enterprise Linux 5 또는 CentOS 5와 같은 이전 운영 체제의 경우 sha1를 사용할 것을 권장합니다. ","Force Promote?":"강제 승격하시겠습니까?","GPG Key":"GPG 키 ","Greater Than":"이상 ","Group Install":"그룹 설치 ","Group Remove":"그룹 삭제 ","here":"여기 ","Hide affected Activation Keys":"영향을 받은 활성키 숨기기 ","Hide affected Content Hosts":"영향을 받은 컨텐츠 호스트 숨기기 ","History":"기록 ","History for Content View:":"컨텐츠 뷰 기록: ","Host Collection Management":"호스트 컬렉션 관리 ","Host Collection Membership":"호스트 컬렉션 멤버쉽 ","Host Collection removed.":"호스트 컬렉션이 삭제되었습니다. ","Host Collection updated":"호스트 컬렉션이 업데이트되었습니다 ","Host Collection:":"호스트 컬렉션: ","Host Collections":"호스트 컬렉션 ","Host Collections for:":"호스트 컬렉션: ","Host Count":"호스트 수 ","Host Group":"호스트 그룹 ","Hostname":"호스트 이름","hourly":"한 시간 마다 ","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"매시 {{ product.sync_plan.sync_date | date:'m' }} 분 {{ product.sync_plan.sync_date | date:'s' }} 초","Id":"ID","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"이러한 활성키의 일부를 다른 컨텐츠 뷰 또는 라이프 사이클 환경으로 이동하고자 하는 경우 클릭합니다 ","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"이러한 활성키의 일부를 다른 컨텐츠 뷰 또는 라이프 사이클 환경으로 이동하고자 하는 경우 <a href=\"{{ activationKeyLink() }}\">여기</a>를 클릭하여 이를 개별적으로 관리합니다. ","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"이 컨텐츠 호스트의 일부를 다른 컨텐츠 뷰 또는 환경에 이동하고자 할 경우 <a href=\"{{ contentHostsLink() }}\">여기</a>를 클릭하여 컨텐츠 호스트를 대량으로 관리합니다. ","Image":"이미지 ","Important":"중요","In order to add a content view to a composite view you must first publish an initial version of the content view.":"컨텐츠 뷰를 복합 뷰에 추가하려면 먼저 컨텐츠 뷰의 초기 버전을 공개해야 합니다. ","Include":"포함 ","Include all RPMs with no errata.":"에라타가 없는 RPM을 모두 포함합니다.","Inclusion Type":"포함 유형","Incremental Update":"증분 업데이트 ","Install":"설치 ","Install Selected":"선택 사항 설치 ","Install the pre-built bootstrap RPM:":"사전 생성된 부트스트랩 RPM을 설치합니다:","Installable":"설치 가능 ","Installable Errata":"설치 가능한 에라타 ","Installed":"설치됨 ","Installed Package":"설치된 패키지 ","Installed Packages":"설치된 패키지 ","Installed Products":"설치된 제품 ","Interfaces":"인터페이스 ","Interval":"간격 ","IPv4 Address":"IPv4 주소 ","IPv6 Address":"IPv6 주소 ","Issued":"발행됨 ","Katello Agent":"Katello 에이전트 ","Label":"레이블 ","Last Checkin":"마지막 체크인 ","Last Published":"마지막 공개 일시 ","Last Puppet Report":"마지막 Puppet 보고 ","Last Sync":"마지막 동기화","Last Updated On":"마지막 업데이트: ","Latest (Currently %s)":"최신 (현재 %s)","Less Than":"이하 ","Library":"라이브러리","Library Synced Content":"라이브러리와 동기화된 컨텐츠 ","Lifecycle Environment Paths":"라이프사이클 환경 경로 ","Lifecycle Environments":"라이프사이클 환경 ","Limit":"제한 ","Limit:":"제한: ","List/Remove":"목록/삭제","Loading Environment Paths...":"환경 경로 로딩 중...","Loading...":"로딩...","Manage Packages":"패키지 관리 ","Manage Packages for Repository:":"리포지터리의 패키지 관리: ","Manage Puppet Modules for Repository:":"리포지터리의 Puppet 모듈 관리: ","Model":"모델 ","Moderate":"중간 수준","Module %s removed from Content View.":"모듈 %s이 컨텐츠 뷰에서 삭제되었습니다.","More Details":"상세 정보 ","N/A":"해당 없음 ","Name":"이름 ","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"동기화하고자 하는 업스트림 리포지터리 이름입니다. 예: 'busybox' 또는 'fedora/ssh'.","Networking":"네트워크 구성 ","Never synced":"동기화하지 않음 ","New Activation Key":"새 활성화 키 ","New Environment":"새 환경 ","New Filter":"새 필터 ","New Filter for Content View:":"컨텐츠 뷰의 새 필터: ","New Name:":"새로운 이름:","New Product":"새 제품 ","New Repository":"새 리포지터리 ","New Sync Plan":"새 동기화 계획 ","New sync plan successfully created.":"새 동기화 계획이 성공적으로 생성되었습니다. ","Next":"다음","Next Sync":"다음 동기화 ","No":"아니오 ","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"라이프 사이클 환경에 있는 활성키 일부에는 \"편집\" 권한이 없습니다. ","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"라이프 사이클 환경에 있는 컨텐츠 호스트 일부에는 \"편집\" 권한이 없습니다. ","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"라이프 사이클 환경에는 \"승격/삭제\" 권한이 없습니다.","No activation keys are affected.":"영향을 받는 활성키가 없습니다. ","No Content Hosts are affected.":"영향을 받는 컨텐츠 호스트가 없습니다. ","No Content Hosts match this Erratum.":"이 에라타에 일치하는 컨텐츠 호스트가 없습니다. ","No Content Views available, please select another environment.":"사용 가능한 컨텐츠 뷰가 없습니다. 다른 환경을 선택하십시오. ","No content views exist for {{selected.environment.name}}":"{{selected.environment.name}}의 컨텐츠 뷰가 존재하지 않습니다 ","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"표시할 호스트 컬렉션이 없습니다. 메인 메뉴의 '호스트'에서 '호스트 컬렉션'을 선택한 후 호스트 컬렉션을 추가할 수 있습니다. ","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"표시할 호스트 컬렉션이 없습니다. '추가' 탭을 선택하여 호스트 컬렉션을 추가할 수 있습니다.","No Repositories contain this Erratum.":"이 에라타에 포함된 리포지터리가 없습니다. ","None":"없음 ","Not installed":"설치되지 않음 ","Not Synced":"동기화되지 않았습니다 ","Not yet published":"아직 공개되지 않았습니다 ","Number of CPUs":"CPU 수 ","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"선택한 에라타 중 하나 이상을 선택한 호스트에서 실행 중인 게시된 컨텐츠 뷰를 통해 설치할 수 없습니다. 이 에라타를 호스트의 환경에 설치할 수 있도록\n 아래에 지정된 새 컨텐츠 뷰 버전이 생성됩니다. 이 새 버전은 호스트의 라이프사이클 환경에 있는 현재 버전을\n 대체합니다. 게시 후 에라타를 호스트에 즉시 설치하려면 아래의 확인란을 선택하십시오.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"호스트의 라이프사이클 환경에 에라타를 현재 설치할 수 있는 컨텐츠 호스트만 표시합니다.","Operating System":"운영체제","Organization":"조직 ","Original Sync Date":"원래 동기화 날짜 ","OS":"OS","Package":"패키지 ","Package Actions":"패키지 동작 ","Package Filter:":"패키지 필터: ","Package Group":"패키지 그룹 ","Package Group Filter:":"패키지 그룹 필터: ","Package Group successfully added.":"패키지 그룹이 성공적으로 추가되었습니다. ","Package Group successfully removed.":"패키지 그룹이 성공적으로 삭제되었습니다. ","Package Groups":"패키지 그룹 ","Package Install":"패키지 설치 ","Package Installation, Removal, and Update":" 패키지 설치, 제거, 업데이트 ","Package Remove":"패키지 제거 ","Package successfully added.":"패키지가 성공적으로 추가되었습니다. ","Package successfully removed.":"패키지가 성공적으로 삭제되었습니다. ","Package successfully updated.":"패키지가 성공적으로 업데이트되었습니다.","Package Update":"패키지 업데이트 ","Package/Group Name":"패키지/그룹 이름 ","Packages":"패키지 ","Packages <div>{{ library.counts.packages || 0 }}</div>":"패키지 <div>{{ library.counts.packages || 0 }}</div>","Packages for:":"패키지 대상: ","Parameters":"매개 변수 ","Password":"암호 ","Perform":"실행 ","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"영향을 받은 활성키를 옮기려면 라이프사이클 환경 및 컨텐츠 뷰를 선택하십시오: ","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"컨텐츠 호스트를 옮기려면 라이프 사이클 환경 및 컨텐츠 뷰를 선택하십시오:","Please select a Lifecycle Environment.":"라이프 사이클 환경을 선택하십시오. ","Please select an environment.":"환경을 선택하십시오. ","Please select one from the list below and you will be redirected.":"다음 목록 중 하나를 선택하면 선택한 곳으로 이동합니다.","Product":"제품 ","Product Count":"제품 수 ","Product Enhancement Advisory":"제품 기능 개선 권고","Product information for:":"제품 정보: ","Product Management for Sync Plan:":"동기화 계획을 위한 제품 관리: ","Product Name":"제품 이름 ","Product Saved":"저장된 제품 ","Products":"제품 ","Products <div>{{ library.counts.products || 0 }}</div>":"제품 <div>{{ library.counts.products || 0 }}</div>","Promote":"승격 ","Promote Content View:":"컨텐츠 뷰 승격: ","Promote Version":"버전 승격 ","Promote Version {{ version.version }}":"버전 {{ version.version }} 승격 ","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"{{ selectedEnvironment.name }}(으)로 버전을 승격하시겠습니까?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"%s로 승격 ","Promoting to %count environments.":"%count 환경으로 승격되고 있습니다. ","Promoting to 1 environment.":"1 환경으로 승격 중 ","Promotion History":"승격 기록 ","Provisioning Details":"프로비저닝 상세 정보 ","Provisioning Host Details":"프로비저닝 호스트 상세 정보 ","Publish Content View:":"컨텐츠 뷰 공개: ","Publish New Version":"새 버전 공개 ","Publish via HTTP":"HTTP를 통해 공개 ","Publish via HTTPS":"HTTPS를 통해 공개 ","Published":"공개 일시 ","Published At":"공개 일시 ","Published new version":"새 버전 공개 ","Published Repository Information":"리포지터리 정보 공개 ","Publishing and promoting to %count environments.":"%count 환경으로 공개 및 승격 중 ","Publishing and promoting to 1 environment.":"1 환경으로 공개 및 승격 중 ","Puppet Environment":"Puppet 환경 ","Puppet module added to Content View":"Puppet 모듈이 컨텐츠 뷰에 추가되었습니다 ","Puppet Modules":"Puppet 모듈 ","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Puppet 모듈 <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"컨텐츠 뷰의 Puppet 모듈: ","Quantity":"수량 ","RAM (GB)":"RAM(GB)","Range":"범위 ","Reboot Suggested":"재부팅이 권장됩니다 ","Reboot Suggested?":"재부팅하는 것이 좋습니까?","Red Hat Repositories page":"Red Hat 리포지터리 페이지 ","Red Hat Repositories page.":"Red Hat 리포지터리 페이지.","Refresh Table":"표 새로 고침 ","Register a Content Host":"컨텐츠 호스트 등록 ","Register Content Host":"컨텐츠 호스트 등록 ","Registered":"등록됨 ","Registered By":"등록: ","Registry URL":"레지스트리 URL","Release":"릴리즈 ","Release Version":"릴리즈 버전 ","Removal of selected repositories initiated successfully.":"선택한 리포지터리의 삭제를 성공적으로 시작했습니다.","Remove":"삭제 ","Remove Activation Key \"{{ activationKey.name }}\"?":"활성키 \"{{ activationKey.name }}\"을/를 삭제하시겠습니까?","Remove Content View":"컨텐츠 뷰 삭제 ","Remove Content Views":"컨텐츠 뷰 삭제 ","Remove Errata":"에라타 삭제 ","Remove From":"삭제 대상 ","Remove Host Collection \"{{ hostCollection.name }}\"?":"호스트 컬렉션 \"{{ hostCollection.name }}\"을/를 삭제하시겠습니까?","Remove Module":"모듈 삭제 ","Remove Package Group":"패키지 그룹 삭제 ","Remove Packages":"패키지 삭제 ","Remove Product":"제품 삭제 ","Remove Product \"{{ product.name }}\"?":"제품 \"{{ product.name }}\"을/를 삭제하시겠습니까?","Remove Puppet Modules":"Puppet 모듈 삭제 ","Remove Repositories":"리포지터리 삭제 ","Remove Repository":"리포지터리 삭제 ","Remove Repository \"{{ repository.name }}\"?":"리포지터리 \"{{ repository.name }}\"을/를 삭제하시겠습니까?","Remove Selected":"선택한 사항 삭제 ","Remove Successful.":"성공적으로 삭제되었습니다. ","Remove Sync Plan":"동기화 계획 삭제 ","Remove Sync Plan \"{{ syncPlan.name }}\"?":"동기화 계획 \"{{ syncPlan.name }}\"을/를 삭제하시겠습니까?","Remove Version":"버전 삭제 ","Remove Version Confirmation":"버전 삭제 확인 ","Removed %x host collections from activation key \"%y\".":"활성키 \"%y\"에서 %x 호스트 컬렉션이 삭제되었습니다. ","Removed %x host collections from content host \"%y\".":"컨텐츠 호스트 \"%y\"에서 %x 호스트 컬렉션이 삭제되었습니다. ","Removed %x products from sync plan \"%y\".":"동기화 계획 \"%y\"에서 %x 제품이 삭제되었습니다. ","Removing Repositories":"리포지터리 삭제 중 ","Repo Discovery":"리포지터리 검색 ","Repositories":"리포지터리 ","Repositories containing Errata {{ errata.errata_id }}":"에라타 {{ errata.errata_id }}가 들어 있는 리포지터리 ","Repositories for Content View:":"컨텐츠 뷰의 리포지터리: ","Repositories for Errata:":"에라타 용 리포지터리: ","Repositories for Filter:":"필터 용 리포지터리: ","Repositories for Product:":"제품 용 리포지터리: ","Repository":"리포지터리 ","Repository \"%s\" successfully deleted":"리포지터리 \"%s\"이/가 성공적으로 삭제되었습니다","Repository %s successfully created.":"리포지터리 %s가 성공적으로 생성되었습니다.","Repository Count":"리포지터리 수 ","Repository Discovery":"리포지터리 검색 ","Repository Name":"리포지터리 이름 ","Repository Saved.":"리포지터리가 저장되었습니다. ","Repository Selection":"리포지터리 선택 ","Repository:":"리포지터리: ","Result":"결과 ","Role":"역할 ","RPM":"RPM","RPM Name":"RPM 이름","RPMs":"RPM","Run Auto-Attach":"자동 첨부 실행 ","Save Successful.":"성공적으로 저장되었습니다. ","Security":"보안 ","Security Advisory":"보안 권고 ","Select a Content Source:":"컨텐츠 소스 선택:","Select A New Puppet Module To Add":"추가할 새 Puppet 모듈 선택 ","Select a Version":"버전 선택 ","Select an Available Version of {{ $stateParams.moduleName }}":"{{ $stateParams.moduleName }}의 사용 가능한 버전 선택 ","Select an Organization":"조직 선택 ","Select new version":"새 버전 선택 ","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"버전 {{ version.version }}을 제거하고자 하는 라이프 사이클 환경 선택: ","Select Version":"버전 선택 ","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"이 옵션을 선택하면 버전이 완전하게 삭제되고 더 이상 승격 대상으로 사용할 수 없게 됩니다. 이 옵션을 선택하려면 버전을 모든 라이프 사이클 환경에서 삭제해야 합니다. ","Service Level":"서비스 레벨 ","Severity":"심각성 ","Show affected Activation Keys":"영향을 받은 활성키 표시 ","Show affected Content Hosts":"영향을 받은 컨텐츠 호스트 표시 ","Sockets":"소켓 ","Solution":"솔루션 ","Start Date":"시작 날짜 ","Start Time":"시작 시간 ","Started At":"시작 일시 ","Starting":"시작하는 중","Starts":"시작 ","State":"상태 ","Status":"상태 ","Subscription Details":"서브스크립션 정보 ","Subscription Status":"서브스크립션 상태 ","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"서브스크립션 ","Subscriptions for Activation Key:":"활성키의 서브스크립션: ","Subscriptions for:":"서브스크립션 대상: ","Successfully added %s subscriptions.":"%s 서브스크립션을 성공적으로 추가했습니다 ","Successfully deleted %cv version %ver.":"%cv 버전 %ver을 성공적으로 삭제했습니다. ","Successfully initiated deletion of %cv version %ver.":"%cv 버전 %ver 삭제가 성공적으로 시작되었습니다. ","Successfully initiated promotion of %cv version %ver to %env.":"%cv 버전 %ver to %env 승격이 성공적으로 시작되었습니다. ","Successfully initiated removal of %cv version %ver.":"%cv 버전 %ver 삭제가 성공적으로 시작되었습니다. ","Successfully promoted %cv version %ver to %env":"%cv 버전 %ver이 %env로 성공적으로 승격되었습니다 ","Successfully published %cv version %ver and promoted to Library":"%cv 버전 %ver이 성공적으로 공개되어 라이브러리로 승격되었습니다 ","Successfully removed %cv version %ver from environments: %env":"%cv 버전 %ver이 다음 환경에서 성공적으로 삭제되었습니다: %env","Successfully removed %s items.":"%s 항목을 성공적으로 삭제했습니다. ","Successfully removed %s subscriptions.":"%s 서브스크립션을 성공적으로 삭제했습니다. ","Successfully removed 1 item.":"1 개의 항목이 성공적으로 삭제되었습니다. ","Successfully updated subscriptions.":"서브스크립션을 성공적으로 업데이트했습니다. ","Summary":"요약 ","Support Level":"지원 수준 ","Sync Enabled":"동기화가 활성화됨 ","Sync Interval":"동기화 간격 ","Sync Now":"지금 동기화 ","Sync Plan":"동기화 계획 ","Sync Plan %s has been deleted.":"동기화 계획 %s을(를) 삭제했습니다. ","Sync Plan Saved":"동기화 계획이 저장되었습니다 ","Sync Plan:":"동기화 계획: ","Sync Plans":"동기화 계획 ","Sync State":"동기화 상태 ","Sync Status":"동기화 상태 ","Synced manually, no interval set.":"수동으로 동기화되었습니다. 간격이 설정되어 있지 않습니다. ","Tags":"태그","Task Details":"작업 상세 정보 ","Tasks":"작업","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"다음에 나열된 활성키는 현재 이 컨텐츠 뷰 버전을 사용하고 있습니다. 버전을 삭제하기 전 이러한 활성키를 버전이 사용되고 있지 않은 라이프 사이클 환경으로 이동해야 합니다. ","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"이 버전의 아카이브는 삭제됩니다. 삭제 완료되면 이 버전을 사용할 수 없습니다. ","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"이 버전의 아카이브는 삭제되지 않습니다. 이 버전은 라이프 사이클 환경으로 승격하는데 사용할 수 있습니다. ","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"다음에 나열된 컨텐츠 호스트는 현재 이 컨텐츠 뷰 버전을 사용하고 있습니다. 버전을 삭제하기 전 이러한 컨텐츠 호스트를 버전이 사용되고 있지 않은 환경으로 이동해야 합니다. ","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"이 호스트에서 에라타를 사용 가능하게 하려면 컨텐츠 뷰 또는 라이프 사이클 환경을 업데이트해야 합니다.","The following actions can be performed on content hosts in this host collection:":"다음과 같은 작업이 호스트 컬렉션에 있는 컨텐츠 호스트에서 실행될 수 있습니다: ","The page you are attempting to access requires selecting a specific organization.":"액세스하려는 페이지에서 특정 조직을 선택해야 합니다.","The selected environment contains no Content Views, please select a different environment.":"선택한 환경에 컨텐츠 뷰가 없습니다. 다른 환경을 선택하십시오. ","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"현재 이 컨텐츠 뷰와 연결된 리포지터리가 없습니다. 위의 \"추가\" 탭을 클릭하여 이를 추가할 수 있습니다. ","There are currently no repositories to add to this Content View,":"현재 컨텐츠 뷰에 추가할 리포지터리가 없습니다.","There are no Content Views in this Environment.":"이 환경에는 컨텐츠 뷰가 없습니다. ","There are no Content Views that match the criteria.":"조건에 일치하는 컨텐츠 뷰가 없습니다.","There are no Errata associated with this Content Host to display.":"표시할 컨텐츠 호스트에 연결된 에라타가 없습니다.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"이 조직에는 에라타가 없습니다. 이 페이지에 에라타를 표시하려면 에라타와 함께 하나 이상의 제품을 생성합니다.","There are no Errata to display.":"표시할 에라타가 없습니다. ","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"사용 가능한 호스트 컬렉션이 없습니다. 메인 메뉴의 '호스트'에서 '호스트 컬렉션'을 선택한 후 새 호스트 컬렉션을 생성합니다. ","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"현재 증분 업데이트 작업이 진행 중입니다. 기존 업데이트를 적용하기 전 이 업데이트를 완료해야 합니다.","This activation key is not associated with any content hosts.":"이 활성키는 다른 컨텐츠 호스트와 연결되어 있지 않습니다. ","This activation key may be used during system registration. For example:":"시스템 등록 도중 이 활성키를 사용할 수 있습니다. 예: ","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"이 컨텐츠 뷰에는 버전이 없습니다. 오른쪽의 \"새 버전 공개\" 버튼을 사용하여 첫 번째 컨텐츠 뷰 버전을 생성합니다.","This filter applies only to a subset of repositories in the content view.":"이 필터는 컨텐츠 뷰에 있는 리포지터리의 서브셋에만 적용합니다. ","This filter applies to all repositories in the content view (current and future).":"이 필터는 컨텐츠 뷰 (지금 및 나중)에 있는 모든 리포지터리에 적용됩니다. ","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"이 버전은 다음과 같은 이유로 라이프사이클 환경의 일부에서 삭제할 수 없습니다. ","This Version is not associated with any Lifecycle Environments.":"이 버전은 라이프사이클 환경과 연결되어 있지 않습니다. ","This version will be removed from:":"이 버전은 다음에서 삭제됩니다: ","Title":"제목","to manage them individually.":"개별적으로 관리 ","To register a content host to this server, follow these steps.":"서버에 컨텐츠 호스트를 등록하려면 다음 단계를 실행합니다:","Topic":"주제","Type":"유형","Unknown":"알 수 없음 ","Unlimited Content Hosts:":"무제한 컨텐츠 호스트: ","Update":"업데이트 ","Update Repositories":"리포지터리 업데이트 ","Update Sync Plan":"동기화 계획 업데이트 ","Updated":"업데이트 일시 ","Updated errata filter -":"업데이트된 에라타 필터 - ","Upload":"업로드 ","Upload Package":"패키지 업로드 ","Upload Puppet Module":"Puppet 모듈 업로드 ","Uploading...":"업로드 중...","Upstream Repository Name":"업스트림 리포지터리 이름 ","User":"사용자 ","Username":"사용자 이름 ","Version":"버전 ","Version Deletion":"버전 삭제","Version Details":"버전 상세 정보 ","Version:":"버전: ","Versions":"버전 ","Versions for Content View:":"컨텐츠 뷰 버전: ","Versions for Puppet Module:":"Puppet 모듈 버전 ","Virtual Guests":"가상 게스트 ","Virtual Host":"가상 호스트 ","weekly":"매주 ","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"매주 {{ product.sync_plan.sync_date | date:'EEEE' }} {{ product.sync_plan.sync_date | date:'mediumTime' }} (서버 시간)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"자동 첨부를 비활성화할 때 등록된 시스템은 모든 연관된 서브스크립션에 첨부됩니다.","Working":"작업 중 ","Yes":"예 ","You cannot remove these repositories because they belong to a Red Hat product.":"이 리포지터리는 Red Hat 제품에 속해 있기 때문에 이를 삭제할 수 없습니다. ","You cannot remove these repositories because you do not have permission.":"권한이 없기 때문에 이 리포지터리를 삭제할 수 없습니다. ","You cannot remove this product because it is a Red Hat product.":"Red Hat 제품이기 때문에 이를 삭제할 수 없습니다. ","You cannot remove this product because it was published to a content view.":"컨텐츠 뷰에 공개되어 있기 때문에 이 제품을 삭제할 수 없습니다. ","You cannot remove this product because you do not have permission.":"권한이 없기 때문에 이 제품을 삭제할 수 없습니다. ","You cannot remove this repository because it is a Red Hat repository.":"Red Hat 리포지터리이기 때문에 이를 삭제할 수 없습니다. ","You cannot remove this repository because it was published to a content view.":"컨텐츠 보기에 공개되어 있기 때문에 이 리포지터리를 삭제할 수 없습니다. ","You cannot remove this repository because you do not have permission.":"권한이 없기 때문에 이 리포지터리를 삭제할 수 없습니다. ","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"현재 활성키가 없습니다. 오른쪽에 있는 버튼을 사용하여 활성키를 추가할 수 있습니다. ","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"현재 컨텐츠 호스트가 없습니다. 메인 메뉴에서 컨텐츠 호스트를 선택한 후 오른쪽에 있는 버튼을 클릭하면 새 컨텐츠 호스트를 생성할 수 있습니다. ","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"현재 컨텐츠 호스트가 없습니다. 오른쪽 버튼을 클릭하고 지시에 따라 컨텐츠 호스트를 등록할 수 있습니다.","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"현재 컨텐츠 뷰가 없습니다. 오른쪽 버튼을 사용하여 컨텐츠 뷰를 추가할 수 있습니다.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"현재 이 컨텐츠 뷰에 필터가 포함되어 있지 않습니다. 오른쪽에 있는 버튼을 사용하여 새 필터를 추가할 수 있습니다. ","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"현재 호스트 컬렉션이 없습니다. 오른쪽에 있는 버튼을 사용하여 호스트 컬렉션을 추가할 수 있습니다. ","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"현재 제품 <span bst-feature-flag=\"custom_products\">이 없습니다. 오른쪽에 있는 버튼을 사용하여 제품을 추가할 수 있습니다</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"현재 컨텐츠 뷰에 Puppet 모듈이 포함되어 있지 않습니다. 오른쪽에 있는 버튼을 사용하여 Puppet 모듈을 추가할 수 있습니다. ","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"현재 이 제품에 리포지터리가 포함되어 있지 않습니다. 오른쪽에 있는 버튼을 사용하여 리포지터리를 추가할 수 있습니다. ","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"현재 동기화 계획이 없습니다. 오른쪽 버튼을 사용하여 동기화 계획을 생성할 수 있습니다.","You do not have any Installed Products":"설치된 제품이 없습니다 ","You must select a content view in order to save your environment.":"환경을 저장하려면 컨텐츠 뷰를 선택해야 합니다.","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"환경 변경 사항을 저장하기 전 새 컨텐츠 뷰를 선택해야 합니다. 컨텐츠 뷰 선택 취소 버튼을 사용하여 환경 선택을 취소합니다. ","You must select at least one Content Host in order to apply Errata.":"에라타를 적용하려면 최소 하나의 컨텐츠 호스트를 선택하셔야 합니다. ","You must select at least one Errata to apply.":"적용할 에라타를 하나 이상 선택해야 합니다.","You must select at least one repository.":"최소 하나의 리포지터리를 선택해야 합니다. ","Yum Content":"Yum 컨텐츠 ","Yum Metadata Checksum":"Yum 메타데이터 체크섬 ","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Yum 메타데이터 생성이 백그라운드에서 시작되었습니다. <a href=\"{{ taskUrl() }}\">여기</a>를 클릭하여 진행 상태를 모니터하십시오. ","Yum Repositories":"Yum 리포지터리 ","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Yum 리포지터리 <div>{{ library.counts.yum_repositories || 0 }}</div>"});
9
- gettextCatalog.setStrings('pt_BR', {"- Date and Type":"- Data e tipo","-- select an interval --":"-- selecione um intervalo --","(Not all Activation Keys editable )":"(Nem todas as Chaves de ativação são editáveis)","(Not all Content Hosts editable )":"(Nem todos os Hosts de conteúdo são editáveis)","{{ 'Add Selected' | translate }}":"{{ 'Add Selected' | translate }}","{{ componentContentView.puppet_modules.length || 0 }} Puppet Modules":"{{ componentContentView.puppet_modules.length || 0 }} módulos puppet","{{ componentContentView.repositories.length || 0 }} Repositories":"{{ componentContentView.repositories.length || 0 }} repositórios","{{ contentCredential.name }}":"{{ contentCredential.name }}","{{ contentView.name }}":"{{ contentView.name }}","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} não pode ser removido, pois uma ou mais Versões de visualização de conteúdo ainda estão sendo promovidas para um Ambiente de ciclo de vida.\n Cada Versão de visualização de conteúdo deve ser removida de seus Ambientes de ciclo de vida antes que a Visualização de conteúdo possa ser removida.","{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet Modules":"{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} módulos puppet ","{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories":"{{ contentViewComponent.content_view_version.repositories.length || 0 }} repositórios","{{ deb.name }}":"{{ deb.name }}","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} aplicável,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} instalável","{{ errata.title }}":"{{ errata.title }}","{{ file.name }}":"{{ file.name }}","{{ filter.inclusion | filterType }} Tag":"Tag {{ filter.inclusion | filterType }}","{{ host.name }}":"{{ host.name }}","{{ host.subscription_facet_attributes.user.login }}":"{{ host.subscription_facet_attributes.user.login }}","{{ installedPackageCount }} Host(s)":"{{ installedPackageCount }} host(s)","{{ package.hosts_applicable_count }} Host(s)":"{{ package.hosts_applicable_count }} host(s)","{{ package.hosts_applicable_count || 0 }} Applicable,":"{{ package.hosts_applicable_count || 0 }} aplicáveis,","{{ package.hosts_available_count }} Host(s)":"{{ package.hosts_available_count }} hosts","{{ package.hosts_available_count || 0 }} Upgradable":"{{ package.hosts_available_count || 0 }} podem ter updgrade ","{{ package.human_readable_size }} ({{ package.size }} Bytes)":"{{ package.human_readable_size }} ({{ package.size }} bytes)","{{ product.active_task_count }}":"{{ product.active_task_count }}","{{ product.name }}":"{{ product.name }}","{{ puppetModule.name }}":"{{ puppetModule.name }}","{{ repository.content_counts.deb }} deb Packages":"Pacotes de depuração {{ repository.content_counts.deb }}","{{ repository.content_counts.deb || 0 }} deb Packages":"Pacotes de depuração {{ repository.content_counts.deb || 0 }}","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} errata(s)","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} errata","{{ repository.content_counts.file || 0 }} Files":"{{ repository.content_counts.file || 0 }} arquivos","{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches":"{{ repository.content_counts.ostree_branch || 0 }} ramificações OSTree ","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} módulos puppet","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} pacotes","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} pacotes","{{ repository.content_counts.srpm }} Source RPMs":"RPMs de origem {{ repository.content_counts.srpm }}","{{ repository.last_sync_words }} ago":"{{ repository.last_sync_words }} atrás","{{ repository.name }}":"{{ repository.name }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} Chaves de ativação serão movidas para {{ deleteOptions.activationKeys.contentView.name }} em {{ deleteOptions.activationKeys.environment.name }}","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} Hosts de conteúdo serão movidos para {{ deleteOptions.contentHosts.contentView.name }} em {{ deleteOptions.contentHosts.environment.name }}","{{ type.display }}":"{{ type.display }}","{{ version.deb_count }} deb Packages":"Pacotes de depuração {{ version.deb_count }}","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} errata(s)","{{ version.file_count }} Files":"{{ version.file_count }} arquivos","{{ version.ostree_branch_count }} OSTree Branches":"{{ version.ostree_branch_count }} ramificações OSTree","{{ version.package_count }} Packages":"{{ version.package_count }} pacotes","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} módulos puppet","{{ version.srpm_count }} Source RPMs":"RPMs de origem {{ version.srpm_count }}","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"*Essas Versões de visualização de conteúdo marcadas são da Coleção de visualizações de conteúdo. Os seus componentes que precisam ser atualizados estão listados abaixo.","%(consumed)s out of %(quantity)s":"%(consumed)s em %(quantity)s","%count environment(s) can be synchronized: %envs":"%count ambiente(s) pode(m) ser sincronizado(s): %envs","<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>":"<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>","<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>":"<a ui-sref=\"content-view.version.details({versionId: version.id})\"> versão {{ version.version }}</a>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n Ambientes com asterisco são sugeridos para promoção.","<i class=\"fa fa-warning inline-icon\"></i>\n This Host is not currently registered with subscription-manager. Click <a ui-sref=\"content-hosts.register\">here</a> for registration information.":"<i class=\"fa fa-warning inline-icon\"></i>\n Este host não está atualmente registrado no gerente de assinaturas. Clique em <a ui-sref=\"content-hosts.register\">here</a> para obter informações de registro.","<span translate=\"\">\n If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">to manage them individually.</span>":"<span translate=\"\">\n Se você preferir mover porções dessas chaves de ativação para diferentes visualizações de conteúdo ou ambientes de ciclo de vida, clique em\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">para gerenciá-los individualmente.</span>","1 repository sync in progress.":["1 sincronização de repositório está em andamento.","{{ product.sync_summary.pending}} sincronizações de repositório em andamento."],"1 successfully synced repository.":["1 repositório sincronizado com sucesso.","{{ product.sync_summary.success}} repositórios sincronizados com sucesso."],"A composite view contains other content views.":"Uma coleção de visualização contém outras visualizações de conteúdo.","A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n It can be promoted to other environments from the Versions tab of this Content View.":"Uma nova versão de {{ contentView.name }} será criada e promovida para o ambiente da biblioteca.\n Ela pode ser promovida para outros ambientes a partir da guia Versões desta exibição de conteúdo.","A newer version is available: {{ contentViewComponent.content_view.latest_version }}":"Uma nova versão está disponível: {{ contentViewComponent.content_view.latest_version }}","A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>":"Uma sincronização foi iniciada em segundo plano, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">clique aqui para obter mais detalhes</a>","Account":"Conta","Action":"Ação","Action Type":"Tipo de ação","Actions":"Ações","Activation Key":["Chave de ativação","Chaves de ativação"],"Activation Key Content":"Conteúdo de Chave de ativação","Activation Key removed.":"Chave de ativação removida.","Activation Key updated":"Chave de ativação atualizada","Activation Key:":"Chave de ativação:","Activation Keys":"Chaves de ativação","Activation Keys using Version {{ version.version }}":"Chaves de ativação usando a versão {{ version.version }}","Active Tasks":"Tarefas ativas","Add":"Adicionar","Add Content Hosts to:":"Adicionar hosts de conteúdo ao:","Add Content Views":"Adicionar visualizações de conteúdo","Add Content Views to {{ contentView.name }}":"Adicionar visualizações de conteúdo a {{ contentView.name }}","Add Errata":"Adicionar errata","Add New Environment":"Adicionar novo ambiente","Add New Module":"Adicionar novo módulo","Add New Yum Filter":"Adicionar novo filtro Yum","Add Package Group":"Adicionar grupo de pacotes","Add Repositories":"Adicionar repositórios","Add Rule":"Adicionar regra","Add Selected":"Adicionar selecionados","add some repositories.":"adicionar alguns repositórios.","Add Subscriptions for Activation Key:":"Adicionar subscrições para chave de ativação:","Add Subscriptions for Content Host:":"Adicionar subscrições para host de conteúdo:","Add To":"Adicionar a","Added %x host collections to activation key \"%y\".":" %x coleções de host adicionadas à chave de ativação \"%y\".","Added %x host collections to content host \"%y\".":"%x coleções de host adicionadas ao host de conteúdo \"%y\".","Added %x products to sync plan \"%y\".":"%x produtos adicionados ao plano de sincronização \"%y\".","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Adicionando Ambiente de Ciclo de Vida ao final de \"{{ priorEnvironment.name }}\"","Advanced Sync":"Sincronização avançada","Advisory":"Aviso","Affected Activation Keys":"Chaves de ativação afetadas","Affected Content Hosts":"Hosts de conteúdo afetados","Affected Hosts":"Hosts afetados","Affected Repositories":"Repositórios afetados","Affected repositories have been updated.":"Os repositórios afetados foram atualizados.","All Content Views":"Todas as visualizações de conteúdo","All History":"Todo o histórico","All Products":"Todos os produtos","All Repositories":"Todos os repositórios","All Versions":"Todas as versões","Always Use Latest (Currently %s)":"Usar sempre o mais recente (atualmente %s)","Always Use Latest (Currently no versions)":"Usar sempre o mais recente (atualmente sem versões)","An error occured: %s":"Ocoreu um erro: %s","An error occurred initiating the sync:":"Ocorreu um erro ao iniciar a sincronização:","An error occurred removing the Activation Key:":"Ocorreu um erro ao remover a Chave de Ativação:","An error occurred removing the content hosts.":"Ocorreu um erro durante a remoção de hosts de conteúdo.","An error occurred removing the environment:":"Ocorreu um erro ao remover o ambiente:","An error occurred removing the Host Collection:":"Ocorreu um erro ao remover a Coleção de Host:","An error occurred removing the subscriptions.":"Ocorreu um erro ao remover as subscrições.","An error occurred saving the Activation Key:":"Ocorreu um erro ao salvar a Chave de Ativação:","An error occurred saving the Content Host:":"Ocorreu um erro ao salvar o Host de Conteúdo:","An error occurred saving the Environment:":"Ocorreu um erro ao salvar o Ambiente:","An error occurred saving the Filter:":"Ocorreu um erro ao salvar o Filtro:","An error occurred saving the Host Collection:":"Ocorreu um erro ao salvar a Coleção de Host:","An error occurred saving the Product:":"Ocorreu um erro ao salvar o Produto:","An error occurred saving the Repository:":"Ocorreu um erro ao salvar o Repositório:","An error occurred saving the Sync Plan:":"Ocorreu um erro ao salvar o Plano de Sinc:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Ocorreu um erro ao tentar anexar automaticamente as subscrições. Por favor, verifique seu log para mais informações.","An error occurred updating the Content View:":"Ocorreu um erro ao atualizar a Visualização de Conteúdo:","An error occurred updating the sync plan:":"Ocorreu um erro ao atualizar o plano de sincronização:","An error occurred while creating the Content Credential:":"Ocorreu um erro ao criar as credenciais de conteúdo:","An error occurred while creating the Product: %s":"Ocorreu um erro ao criar o produto: %s","An error occurred:":"Ocorreu um erro:","Applicable":"Aplicável","Applicable Content Hosts":"Hosts aplicáveis de conteúdo","Applicable Errata":"Errata Aplicável","Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\".":"Aplicável somente para exibições de composição. Publicar automaticamente a exibição de composição quando uma nova versão de uma exibição de conteúdo de componente é criada. Observe também que a publicação automática só acontecerá quando o componente estiver marcado como \"mais recente\".","Applicable Packages":"Pacotes aplicáveis","Applicable To":"Aplicável a","Applicable to Host":"Aplicável ao host","Application":"Aplicativo","Apply":"Aplicar","Apply {{ errata.errata_id }}":"Aplicar {{ errata.errata_id }}","Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?":"Aplicar {{ errata.errata_id }} aos hosts de conteúdo {{ contentHostIds.length }}?","Apply {{ errata.errata_id }} to all Content Host(s)?":"Aplicar {{ errata.errata_id }} a todos os hosts de conteúdo?","Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content Host(s)?":"Aplicar errata {{ errataIds.length }} aos hosts de conteúdo {{ contentHostIds.length }}?","Apply {{ errataIds.length }} Errata to all Content Host(s)?":"Aplicar a errata {{ errataIds.length }} a todos os hosts de conteúdo?","Apply Errata":"Aplicar Errata","Apply Errata to Content Host \"{{host.name}}\"?":"Aplicar Erratas ao Host de Conteúdo \"{{host.name}}\"?","Apply Errata to Content Hosts":"Aplicar Errata aos Hosts de Conteúdo","Apply Errata to Content Hosts immediately after publishing.":"Aplicar Errata aos Hosts de Conteúdo imediatamente após publicação.","Apply Selected":"Aplicar Selecionados","Apply to Content Hosts":"Aplicar aos Hosts de Conteúdo","Apply to Hosts":"Aplicar aos Hosts","Applying":"Aplicando","Apt Repositories":"Repositórios aptos","Arch":"Arq","Architecture":"Arquitetura","Architectures":"Arquiteturas","Archived Copy":"Cópia Arquivada","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"Tem certeza que deseja adicionar o(s) {{ table.numSelected }} host(s) de conteúdo selecionado(s) à(s) coleção(ões) de host escolhida(s)?","Are you sure you want to add the sync plan to the selected products(s)?":"Tem certeza de que deseja adicionar o plano de sincronização aos produtos selecionados?","Are you sure you want to apply Errata to content host \"{{ host.name }}\"?":"Tem certeza que deseja aplicar Erratas ao host de conteúdo \"{{ host.name }}\"?","Are you sure you want to apply the {{ table.numSelected }} selected errata to the content hosts chosen?":"Tem certeza de que deseja aplicar as {{ table.numSelected }} erratas selecionadas aos hosts de conteúdo escolhidos?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"Tem certeza que deseja atribuir o(s) {{ table.numSelected }} host(s) de conteúdo selecionado(s) ao(s) {{ selected.contentView.name }} em {{ selected.environment.name }}?","Are you sure you want to disable the {{ table.numSelected }} repository set(s) chosen?":"Tem certeza de que deseja desabilitar os {{ table.numSelected }} grupos de repositórios escolhidos?","Are you sure you want to enable the {{ table.numSelected }} repository set(s) chosen?":"Tem certeza de que deseja habilitar os {{ table.numSelected }} grupos de repositórios escolhidos?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Tem certeza que deseja instalar {{ content.content }} no(s) sistema(s) {{ getSelectedSystemIds().length }} selecionado(s)?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"Tem certeza que deseja remover {{ content.content }} do(s) {{ getSelectedSystemIds().length }} sistema(s) selecionado(s)?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"Tem certeza que deseja remover a Chave de Ativação \"{{ activationKey.name }}\"?","Are you sure you want to remove Content Credential {{ contentCredential.name }}?":"Tem certeza de que deseja remover a credencial de conteúdo {{ contentCredential.name }}?","Are you sure you want to remove Content View \"{{ contentView.name }}\"?":"Tem certeza de que deseja remover a visualização de conteúdo \"{{ contentView.name }}\"?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"Tem certeza que deseja remover a Coleção de Host \"{{ hostCollection.name }}\"?","Are you sure you want to remove product \"{{ product.name }}\"?":"Tem certeza que deseja remover o produto \"{{ product.name }}\"?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"Tem certeza que deseja remover o repositório \"{{ repository.name }}\"?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"Tem certeza que deseja remover o Plano de Sinc \"{{ syncPlan.name }}\"?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"Tem certeza que deseja remover o(s) {{ table.numSelected }} host(s) de conteúdo selecionado(s) da(s) coleção(ões) de host escolhida(s)?","Are you sure you want to remove the sync plan from the selected product(s)?":"Tem certeza de que deseja remover o plano de sincronização dos produtos selecionados?","Are you sure you want to reset to default the {{ table.numSelected }} repository set(s) chosen?":"Tem certeza de que deseja redefinir o padrão dos {{ table.numSelected }} grupos de repositórios selecionados?","Are you sure you want to restart services on content host \"{{ host.name }}\"?":"Tem certeza de que deseja reiniciar os serviços no host de conteúdo \"{{ host.name }}\"?","Are you sure you want to set the Release Version the {{ table.numSelected }} content host(s) selected to {{ selected.release }}?. This action will affect only those Content Hosts that belong to the appropriate Content View and Lifecycle Environment containining that release version.":"Tem certeza de que deseja definir a versão dos {{ table.numSelected }} hosts selecionados como {{ selected.release }}? Essa ação afetará somente os hosts de conteúdo que pertencem à visualização de conteúdo e ao ciclo de vida adequados que contenham a versão.","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Tem certeza que deseja atualizar{{ content.content }} no(s) {{ getSelectedSystemIds().length }} sistema(s) selecionado(s)?","Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?":"Tem certeza de que deseja atualizar todos os pacotes nos {{ getSelectedSystemIds().length }} sistemas selecionados?","As part of this deletion, 1 Content View Version will be deleted.":["Como parte desta remoção, 1 Versão de Visualização de Conteúdo será removida.","Como parte desta remoção, {{ versions.length }} Versões de Visualização de Conteúdo serão removidas."],"Assign":"Atribuir","Assign Release Version":"Atribuir versão","Associations":"Associações","At least one Errata needs to be selected to Apply.":"Ao menos uma Errata precisa ser selecionada para Aplicar.","Attached":"Anexado(a)","Author":"Autor","Auto Publish":"Publicar automaticamente","Auto-Attach":"Anexar Automaticamente","Automatic":"Automático(a)","Available Content Views for Composite Content View:":"Visualizações de Conteúdo Disponíveis para a Coleção de Visualização de Conteúdo:","Available Puppet Modules for Content View:":"Módulos Puppet Disponíveis para a Visualização de Conteúdo:","Available Schema Versions":"Versões disponíveis de esquema","Back":"Retornar","Back To Errata List":"Retornar à Lista de Erratas","Backend Identifier":"Identificador de back-end","Basic Information":"Informações Básicas","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Abaixo seguem os conjuntos de conteúdo do repositório atualmente disponíveis para este host de conteúdo através de sua subscrição. Para as subscrições Red Hat, os conteúdos adicionais podem estar disponíveis através da","Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Abaixo estão os grupos de repositórios disponíveis para essa chave de ativação por meio de suas assinaturas. Para assinaturas da Red Hat, conteúdo adicional pode ser disponibilizado por meio do","Between versions {{ rule.min_version }} and {{ rule.max_version }}":"Entre as versões {{ rule.min_version }} e {{ rule.max_version }}","Bootable":"Inicializável","Branch Info":"Informações de ramificação","Branch Name":"Nome da Ramificação","Bug Fix":"Correção de Erro","Bug Fix Advisory":"Aviso de Correção de Erros","Bugfix":"Bugfix","Build Host":"Compilar Host","Build Information":"Informações da build","Build Time":"Tempo de Compilação","Cancel":"Cancelar","Cannot Remove":"Não é possível remover","Cannot republish Repository without the proper permissions.":"Não é possível republicar o repositório sem as permissões necessárias.","Cannot republish Repository, a sync is already in progress.":"Não é possível republicar repositório, um sincronização já está em progresso.","Cannot sync Repository without a URL.":"Não é possível sincronizar repositório sem uma URL.","Cannot sync Repository without the proper permissions.":"Não é possível sincronizar repositório sem as permissões necessárias.","Cannot sync Repository, a sync is already in progress.":"Não é possível sincronizar repositório, uma sincronização já está em progresso.","Capacity":"Capacidade","Certificate":"Certificado","Change assigned Lifecycle Environment or Content View":"Mudar Visualização de Conteúdo ou Ambiente de Ciclo de Vida atribuído","Change Host Collections":"Alterar coleções de hosts","Change Lifecycle Environment":"Alterar ambiente de ciclo de vida de ambientes","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"A alteração das configurações padrão para os hosts de conteúdo que possuem registro com esta chave de ativação exige que a versão 1.10, ou mais recente, do subscription-manager seja instalada neste host.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"A alteração das configurações padrão exige que a versão 1.10, ou mais recente, do subscription-manager seja instalada neste host.","Checksum":"Soma de verificação","Checksum Type":"Tipo de soma de verificação","Choose <b>Default</b> to enable the repository for all architectures":"Selecione <b>Padrão</b> para ativar o repositório para todas as arquiteturas","Choose a lifecycle environment from the available promotion paths.":"Escolha um ambiente de ciclo de vida a partir dos caminhos de promoção disponíveis.","Choose one of the policy selections for downloading ostree content from upstream url during synchronization. Choose \"Latest\" for downloading the latest version of the upstream branch. Choose \"All History\" to download all available versions of the upstream repository (this may take a large amount of space). Choose \"Custom Depth\" and provide an number to indicate the number of prior versions of the upstream branch to download.":"Escolha uma seleção de políticas para fazer download de conteúdo OSTree da URL upstream durante a sincronização. Escolha \"Mais recente\" para fazer download da versão mais recente da ramificação upstream. Escolha \"Todo o histórico\" para fazer download de todas as versões disponíveis do repositório upstream (isso pode ocupar uma grande quantidade de espaço. Escolha \"Profundidade personalizada\" para fornecer um número que indique quantas versões anteriores da ramificação upstream serão transferidas.","Click here to check the status of the task.":"Clique aqui para verificar o status da tarefa.","Click here to select Errata for an Incremental Update.":"Clique aqui para selecionar as Erratas para uma Atualização Incremental.","Close":"Fechar","Comma separated list of components to sync from (leave clear to sync all). Example: main":"Lista separada por vírgulas dos componentes a partir da qual sincronizar (deixar em branco para sincronizar tudo). Exemplo: principal","Comma separated list of processor architectures to filter the sync by. Example: amd64":"Lista separada por vírgulas das arquiteturas do processador a partir da qual filtrar a sincronização. Exemplo:","Comma separated list of releases (suite or codename) to sync from. Default: stable":"Lista separada por vírgulas das versões (conjunto ou nome de código) a partir da qual sincronizar. Padrão: estável.","Commit":"Confirmar","Complete Sync":"Concluir sincronização","Completely remove version?":"Remover completamente a versão?","Components":"Componentes","Components:":"Componentes:","Composite":"Composição","Composite View":"Coleção de Visualização ","Composite View?":"Coleção de Visualização?","Confirm":"Confirmar","Confirm Remove":"Confirmar a Remoção","Confirm Version Removal: Version {{ version.version }}":"Confirmar a Remoção da Versão: Versão {{ version.version }}","Container Images":"Imagens do contêiner","Content":"Conteúdo","Content Counts":"Contagem de Conteúdo","Content Credential %s has been created.":"A credencial de conteúdo %s foi criada.","Content Credential Contents":"Conteúdos da credencial de conteúdo","Content Credential successfully uploaded":"Credencial de conteúdo carregada com êxito","Content credential updated":"Credencial de conteúdo atualizada","Content Credentials":"Credenciais de conteúdo","Content Host":"Host de Conteúdo","Content Host Bulk Content":"Conteúdo em Massa de Host de Conteúdo","Content Host Bulk Subscriptions":"Subscrições em Massa de Host de Conteúdo","Content Host Content":"Conteúdo de Host de Conteúdo","Content Host Counts":"Contagem de Host de Conteúdo","Content Host Limit":"Limite de Host de Conteúdo","Content Host Properties":"Propriedades de Host de Conteúdo","Content Host Registration":"Registro de Host de Conteúdo","Content Host Status":"Status de Host de Conteúdo","Content Host:":"Host de Conteúdo:","Content Hosts":"Hosts de Conteúdo","Content Hosts for Activation Key:":"Hosts de Conteúdo para Chave de Ativação:","Content Hosts for:":"Hosts de Conteúdo para:","Content Hosts using Version {{ version.version }}":"Hosts de Conteúdo usando a Versão {{ version.version }}","Content Type":"Tipo de Conteúdo","Content View":"Visualização de Conteúdo","Content View Name":"Nome de visualização de conteúdo","Content View updated.":"Visualização de Conteúdo atualizada","Content View Version":"Versão de Visualização de Conteúdo","Content View:":"Visualização de Conteúdo:","Content Views":"Visualizações de Conteúdo","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Visualizações de Conteúdo <div>{{ library.counts.content_views || 0 }}</div>","Content Views for {{ contentView.name }}":"Visualizações de conteúdo para {{ contentView.name }}","Content Views for Composite Content View:":"Visualizações de Conteúdo para a Coleção de Visualização de Conteúdo:","Content Views for Deb:":"Exibições de conteúdo para depuração:","Content Views for File:":"Visualizações de conteúdo para arquivo:","Content Views for Puppet Module:":"Visualizações de Conteúdo para o Módulo Puppet:","Content Views that contain this Deb":"Exibições de conteúdo que contêm esta depuração","Content Views that contain this File":"Visualizações de conteúdo que contêm este arquivo","Content Views that contain this Puppet Module":"Visualizações de conteúdo que contêm este módulo Puppet","Context":"Conteúdo","Contract":"Contrato","Copy Activation Key":"Copiar Chave de Ativação","Copy Content View":"Copiar visualização de conteúdo","Copy Content View:":"Copiar visualização de conteúdo:","Copy Host Collection":"Copiar coleção de hosts","Cores per Socket":"Núcleos por Soquete","Create":"Criar","Create a copy of {{ activationKey.name }}":"Criar uma cópia de {{ activationKey.name }}","Create a copy of {{ contentView.name }}":"Criar uma cópia de {{ contentView.name }}","Create a copy of {{ hostCollection.name }}":"Criar uma cópia de {{ hostCollection.name }}","Create a rule using the add button above.":"Criar uma regra usando o botão de adição acima.","Create Activation Key":"Criar Chaves de Ativação","Create Content Credential":"Criar credencial de conteúdo","Create Content View":"Criar visualização de conteúdo ","Create Discovered Repositories":"Criar repositórios descobertos","Create Environment Path":"Criar caminho de ambiente","Create Host Collection":"Criar coleção de hosts","Create new view":"Criar nova visualização","Create New View":"Criar Nova Visualização","Create Product":"Criar produto","Create Selected":" Criar Selecionado","Create Status":"Criar status","Create Sync Plan":"Criar Plano de Sinc","Create view from existing views":"Criar visualizações a partir de visualizações existentes","Creating repository...":"Criando repositório...","Critical":"Crítico","Current Subscriptions for Activation Key:":"Subscrições atuais para Chave de Ativação:","Currently Selected Puppet Modules":"Módulos Puppet Selecionados Atualmente","Custom Depth":"Profundidade personalizada","Custom Depth (Currently %s)":"Profundidade personalizada (atualmente %s)","CVEs":"CVEs","daily":"por dia","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Diariamente em {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)","Date":"Data","Date Type":"Tipo de Data","deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"A geração de metadados de depuração foi iniciada em segundo plano. Clique <a href=\"{{ taskUrl() }}\">aqui</a> para monitorar o progresso.","deb Packages":"Pacotes de depuração","Deb Packages":"Pacotes de depuração","Deb:":"Depuração:","Debs":"Depurações","Default":"Padrão","Delete Hosts":"Apagar hosts","Delete Version {{ version.version }}":"Remover Versão {{ version.version }}","Deleted from %s":"Remover de %s","Deleting from %count environments.":"Removendo de %count ambientes.","Deleting from 1 environment.":"Removendo de 1 ambiente","Deletion from %s":"Remoção de %s","Dependencies":"Dependências","Description":"Descrição","Details":"Detalhes","Details for {{ contentView.name }}":"Detalhes de {{ contentView.name }}","Details for Activation Key:":"Detalhes para a Chave de Ativação:","Details for Content View:":"Detalhes para Visualização de Contéudo:","Details for Product:":"Detalhes para Produto:","Details for Repository:":"Detalhes do repositório:","Digest":"Digerir","Disable":"Desativar ","Disabled":"Desabilitado","Disabled (overridden)":"Desabilitado (substituído)","Discover":"Descobrir","Discovered Repository":"Repositório descoberto","Discovery failed. Error: %s":"Falha do Discovery. Erro: %s","Distribution":"Distribuição","Distribution Information":"Informações de Distribuição","Docker Repositories":"Repositórios do Docker","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Repositórios do Docker <div>{{ library.counts.docker_repositories || 0 }}</div>","Docker Repository Selection":"Seleção de repositórios do Docker","Done":"Concluído","Download Policy":"Política de Download","Edit":"Editar","Enable":"Habilitar","Enabled":"Habilitado","Enabled (overridden)":"Habilitado (substituído)","End Date":"Data Final","Enhancement":"Melhoria","Enter Package Group Name(s)...":"Insira Nome(s) de Grupo de Pacote...","Enter Package Name(s)...":"Insira Nome(s) de Pacote","Environment":"Ambiente","Environment saved":"Ambiente Salvo","Environments":"Ambientes","Environments List":"Lista de Ambientes","Equal To":"Igual a","Errata":"Erratas","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Erratas <div>{{ library.counts.errata.total || 0 }}</div>","Errata are automatically Applicable if they are Installable":"As erratas serão automaticamente aplicáveis se forem instaláveis","Errata Details":"Detalhes das Erratas","Errata Filter:":"Filtro das Erratas:","Errata for:":"Erratas para:","Errata ID":"ID de Erratas ","Errata Installation":"Instalação de Erratas","Errata successfully added.":"Erratas adicionadas com sucesso.","Errata successfully removed.":"Erratas removidas com sucesso.","Errata Task List":"Lista de Tarefas de Erratas","Errata Tasks":"Tarefas de Erratas","Errata Type":"Tipo de Errata","Errata:":"Erratas:","Erratum - by ID":"Errata - por ID","Erratum - Date and Type":"Errata - data e tipo","Erratum Date Range":"Intervalo de Datas de Errata","Error during upload:":"Erro ao carregar:","Event":"Evento","Exclude":"Remover","Exclude all RPMs with no errata.":"Remover todos os RPMs sem erratas. ","Existing Product":"Produto Existente","Expires":"Expira","Export":"Exportar","Exported content view":"Visualização de conteúdo exportada ","Family":"Família","File Information":"Informações do Arquivo ","File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"A remoção de arquivos foi iniciada em segundo plano. Clique <a href=\"{{ taskUrl() }}\">aqui</a> para monitorar o progresso.","File Repositories":"Repositórios de arquivos","File too large.":"Arquivo é muito grande.","File too large. Please use the CLI instead.":"Arquivo muito grande. Por favor use a CLI.","File:":"Arquivo:","Filename":"Nome de arquivo","Files":"Arquivos","Files in package {{ package.nvrea }}":"Arquivos no pacote {{ package.nvrea }}","Filter":"Filtro","Filter information for:":"Informações do filtro para:","Filter rule successfully removed.":"Regra de filtros removida com êxito.","Filter rule successfully updated.":"Regra de filtros atualizada com êxito.","Filter Saved":"Filtro salvo","Filter:":"Filtro:","Filter...":"Filtro...","Filters":"Filtros","Filters for Content View:":"Filtros para Visualização de Conteúdo","Filters successfully removed.":"Filtros removidos com sucesso.","Finished At":"Finalizado em","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Para sistemas operacionais mais antigos, como o Red Hat Enterprise Linux 5 ou CentOS 5, recomendamos o uso de sha1.","Force Promote?":"Forçar Promoção?","Force Puppet Environment":"Forçar ambiente puppet","GPG Key":"Chave GPG","Greater Than":"Maior que","Greater than version {{ rule.min_version }}":"Superior à versão {{ rule.min_version }}","Group":"Grupo","Group Install":"Instalação de Grupo","Group Remove":"Remoção de Grupo","Helper":"Assistente","here":"aqui","Hide affected Activation Keys":"Ocultar as Chaves de Ativação Afetadas","Hide affected Content Hosts":"Ocultar os Hosts de Conteúdo Afetados","History":"Histórico","History for Content View:":"Histórico para Visualização de Conteúdo:","Host %s has been deleted.":"O host %s foi excluído.","Host %s has been unregistered.":"O registro do host %s foi desfeito.","Host Collection Management":"Gerenciamento de Coleção de Host","Host Collection Membership":"Associação de Coleção do Host","Host Collection removed.":"Coleção de host removida.","Host Collection updated":"Coleção de host atualizada","Host Collection:":"Coleção de Host:","Host Collections":"Coleções de Host","Host Collections for:":"Coleções de Host para:","Host Count":"Contagem de Host","Host Group":"Grupo de Host","Host Limit":"Limite de Hosts ","Hostname":"Nome do host","Hosts":"Hosts","hourly":"por hora","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"A cada hora em {{ product.sync_plan.sync_date | date:'m' }} minutos e {{ product.sync_plan.sync_date | date:'s' }} segundos","HTTP Proxy":"Proxy HTTP","Id":"Id","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Caso você prefira mover partes destas Chaves de Ativação para visualizações de conteúdo diferentes ou Ambientes de Ciclo de Vida clique","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Caso você prefira mover partes destas Chaves de Ativação para visualizações de conteúdo diferentes ou Ambientes de Ciclo de Vida clique <a href=\"{{ activationKeyLink() }}\">aqui</a> para gerenciá-las individualmente. ","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Caso você prefira mover partes destes Hosts de Conteúdo para visualizações de conteúdo diferentes ou ambientes clique <a href=\"{{ contentHostsLink() }}\">aqui</a> para gerenciar esses Hosts de Conteúdo em massa.","Image":"Imagem","Immediate":"Imediato","Important":"Importante","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Para adicionar uma visualização de conteúdo a uma coleção de visualização você deve primeiro publicar uma versão inicial de visualização de conteúdo.","In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n or ask your admin for a certificate.":"Para navegar neste repositório, você deve <a ng-href=\"/organizations/{{ organization }}/edit\">fazer download do certificado</a>\n ou pedir um certificado ao administrador.","Include":"Incluir ","Include all RPMs with no errata.":"Incluir todos os RPMs sem errata.","Inclusion Type":"Tipo de Inclusão","Incremental update":"Atualização incremental","Incremental Update":"Atualização Incremental","Install":"Instalar","Install Selected":"Instalar Selecionados","Install the pre-built bootstrap RPM:":"Instalar RPM de bootstrap pré-compilado:","Installable":"Instaláveis","Installable Errata":"Errata Instalável","Installable Updates":"Atualizações incrementais","Installed":"Instalado","Installed On":"Instalado em","Installed Package":"Pacote instalado","Installed Packages":"Pacotes Instalados","Installed Products":"Produtos Instalados","Interfaces":"Interfaces","Interval":"Intervalo","IPv4 Address":"Endereço IPv4","IPv6 Address":"Endereço IPv6","Issued":"Emitido","Issued On":"Emitido em","Katello Agent":"Katello Agent","Label":"Rótulo","Last Checkin":"Último Checkin","Last Published":"Último Publicado","Last Puppet Report":"Último Relatório do Puppet","Last Sync":"Última Sinc","Last Updated On":"Atualizado pela última vez em","Latest (Currently %s)":"Mais recente (Atualmente %s)","Latest (Currently no version)":"Mais recente (atualmente sem versões)","Latest Only":"Somente mais recente","Less Than":"Menos que","Less than version {{ rule.max_version }}":"Inferior à versão {{ rule.max_version }}","Library":"Biblioteca","Library Repositories":"Repositórios da Biblioteca","Library Repositories that contain this Deb.":"Repositórios de biblioteca que contêm esta depuração.","Library Repositories that contain this File.":"Repositórios de biblioteca que contêm este arquivo.","Library Repositories that contain this Puppet Module.":"Repositórios de biblioteca que contêm este módulo Puppet.","Library Synced Content":"Conteúdo de Biblioteca Sincronizado ","License":"Licença","Lifecycle Environment":"Ambiente de Ciclo de Vida","Lifecycle Environment Paths":"Caminhos de Ambiente de Ciclo de Vida","Lifecycle Environments":"Ambientes de Ciclo de Vida","Limit":"Limite","Limit Repository Sets to only those available in this Activation Key's Lifecycle Environment":"Limitar os conjuntos de repositórios para apenas aqueles disponíveis neste ambiente de ciclo de vida da chave de ativação","Limit Repository Sets to only those available in this Host's Lifecycle Environment":"Limitar os conjuntos de repositórios para apenas aqueles disponíveis neste ambiente de ciclo de vida do host","Limit to environment":"Limitar para ambiente","Limit to Environment":"Limitar para ambiente","Limit:":"Limite:","List":"Lista","List/Remove":"Listar/Remover","Loading Environment Paths...":"Carregando Caminhos de Ambiente...","Loading...":"Carregando...","Loading...\"":"Carregando...\"","Manage deb Packages for Repository:":"Gerenciar pacotes de depuração para o repositório:","Manage Errata":"Administrar Erratas","Manage Files for Repository:":"Gerenciar arquivos do repositório:","Manage OSTree Branches for Repository:":"Gerenciar Ramificações OSTree para o Repositório:","Manage Packages":"Gerenciar Pacotes","Manage Packages for Repository:":"Gerenciar Pacotes para Repositório:","Manage Puppet Modules for {{ repository.name }}":"Gerenciar módulos Puppet do {{ repository.name }}","Manage Puppet Modules for Repository:":"Gerenciar Módulos Puppet para Repositório:","Manage Repository Sets":"Gerenciar conjuntos de repositórios","Manage Subscriptions":"Gerenciar assinaturas","Manage Sync Plan":"Gerenciar plano de sincronização","Manifest Lists":"Listas de manifestos","Manifest Type":"Tipo de manifesto","Many Content View actions are disabled while a version task is in progress.":"Muitas ações de visualização de conteúdo são desabilitadas quando uma tarefa de versão está em andamento.","Maximum Version":"Versão máxima","Minimum Version":"Versão mínima","Mirror on Sync":"Espelho em Sincronização","Model":"Modelo","Moderate":"Moderada","Module %s removed from Content View.":"Módulo %s removido da Visualização de Conteúdo.","Module Stream":"Fluxo do módulo","Module Streams":"Fluxos do módulo","More Details":"Mais detalhes","N/A":"Não está disponível","Name":"Nome","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"Nome do repositório upstream que você deseja sincronizar. Exemplo: 'busybox' ou 'fedora / ssh '. ","Networking":"Sistema de Rede","Never":"Nunca","Never synced":"Nunca sincronizado","New Activation Key":"Nova Chave de Ativação","New Environment":"Novo Ambiente","New Filter":"Novo Filtro","New Filter for Content View:":"Novo Filtro para Visualização de Conteúdo","New Name:":"Novo Nome:","New Product":"Novo Produto","New Repository":"Novo Repositório","New Sync Plan":"Novo Plano de Sincronização","New sync plan successfully created.":"Novo Plano de sinc criado com sucesso.","Next":"Próximo","Next Sync":"Próxima Sinc","No":"Não","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"Não há permissões para 'Editar' em algumas Chaves de Ativação naquele Ambiente de Ciclo de Vida.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"Não há permissões para 'Editar' em alguns Hosts de Conteúdo naquele Ambiente de Ciclo de Vida.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"Não há permissões para 'Promover/Remover' no Ambiente de Ciclo de Vida.","No activation keys are affected.":"Nenhuma chave de ativação foi afetada.","No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".":"Não há escolhas alternativas disponíveis da versão de lançamento. Os lançamentos são baseados no que está disponível na \"{{ host.content_facet_attributes.content_view.name }}\", <a href=\"/content_views\">visualização de conteúdo</a> selecionada em que este host de conteúdo está anexado para o <a href=\"/lifecycle_environments\">ambiente de ciclo de vida</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\" fornecido. ","No Content Hosts are affected.":"Nenhum Host de Conteúdo foi afetado.","No Content Hosts match this Erratum.":"Nenhum Host de Conteúdo corresponde a esta Errata.","No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first.":"Sem visualizações de conteúdo disponíveis para adicionar a {{ contentView.name }}. Primeiro, crie visualizações de conteúdo não compostas.","No Content Views available, please select another environment.":"Nenhuma Visualização de Conteúdo disponível, por favor selecione outro ambiente.","No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views.":"Nenhuma visualização de conteúdo pertence a {{ contentView.name }}. Use a guia de adição para adicionar visualizações de conteúdo.","No Content Views contain this Deb":"Nenhuma exibição de conteúdo contém esta depuração","No Content Views contain this File":"Nenhuma visualização de conteúdo contém este arquivo","No Content Views contain this Puppet Module":"Nenhuma visualização de conteúdo contém este módulo Puppet","No content views exist for {{selected.environment.name}}":"Nenhuma visualização de conteúdo existe para {{selected.environment.name}}","No Content Views match the search.":"Nenhuma visualização de conteúdo corresponde à pesquisa.","No discovered repositories.":"Nenhum repositório descoberto.","No Errata to display":"Nenhuma errata para exibir.","No Host Collections match your search.":"Nenhuma coleção de hosts corresponde à pesquisa.","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Nenhuma Coleção de Host para exibir, você pode adicionar Coleções de Host depois de selecionar 'Coleções de Host' sob 'Hosts' no menu principal.","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"Nenhuma Coleção de Host para exibir, você pode adicionar Coleções de Hosts depois de selecionar a aba 'Adicionar'.","No matching results.":"Nenhum sistema correspondente. ","No products are available to add to this Sync Plan.":"Nenhuma produto está está disponível para ser adicionado a este plano de sincronização.","No products are have been added to this Sync Plan.":"Nenhum produto foi adicionado a este plano de sincronização.","No puppet modules found":"Nenhum módulo Puppet encontrado","No releases exist in the Library.":"Não existe nenhuma versão na biblioteca.","No Repositories contain this Branch.":"Nenhum repositório contém esta ramificação.","No Repositories contain this Deb":"Nenhum repositório contém esta depuração","No Repositories contain this Erratum.":"Nenhum Repositório contém esta Errata.","No Repositories contain this File":"Nenhum repositório contém este arquivo","No Repositories contain this Package.":"Nenhum Repositório contém este Pacote.","No Repositories contain this Puppet Module":"Nenhum repositório contém este módulo Puppet","No repository sets provided through subscriptions.":"Nenhum grupo de repositórios fornecido pelas assinaturas.","No sync information available.":"Nenhuma informação de sincronização disponível.","No tasks exist for this resource.":"Nenhuma saída de tarefa para este recurso.","No versions found for {{ $stateParams.moduleName }}":"Nenhuma versão encontrada para {{ $stateParams.moduleName }}","None":"Nenhum","Not installed":"Não instalado","Not started":"Não iniciado","Not Synced":"Não foi Sincronizado","Not yet published":"Não publicado ainda","Number of CPUs":"Número de CPUs","Number of Repositories":"Número de Repositórios","On Demand":"Por Demanda","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"Algumas das erratas selecionadas não são instaláveis através das suas versões publicadas de Visualização de Conteúdo em execução nos hosts selecionados. As novas versões de Visualização de Cconteúdo (especificadas abaixo)\n serão criadas, o que tornará esta errata instalável no ambiente do host. Esta nova versão substituirá a versão atual no ambiente do ciclo de vida do seu \n host. Para instalar imediatamente estas erratas nos hosts, após a publicação, selecione a caixa abaixo.","One or more RPMs are not showing up in the local repository even though they exist in the upstream repository.":"Um ou mais RPMs não estão sendo exibidos no repositório local, apesar de eles saírem no repositório upstream.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"Exibir somente os hosts de conteúdo onde as erratas são atualmente instaláveis no ambiente do ciclo de vida do host.","Only show Errata that are Applicable to one or more Content Hosts":"Exibir apenas erratas que sejam aplicáveis a um ou mais hosts de conteúdo","Only show Errata that are Installable on one or more Content Hosts":"Exibir apenas erratas que sejam instaláveis em um ou mais hosts de conteúdo","Only show Packages that are Applicable to one or more Content Hosts":"Exibir apenas pacotes que sejam aplicáveis a um ou mais hosts de conteúdo","Only show Packages that are Upgradable on one or more Content Hosts":"Exibir apenas pacotes que podem ter upgrade em um ou mais hosts de conteúdo","Only show Subscriptions for products not already covered by a Subscription":"Exibir apenas assinaturas para produtos que ainda não sejam cobertos por uma assinatura","Only show Subscriptions which can be applied to products installed on this Host":"Exibir apenas assinaturas que possam ser aplicadas a produtos instalados neste host","Only show Subscriptions which can be attached to this Host":"Exibir apenas assinaturas que possam ser anexadas a este host","Only the Applications with a Helper can be restarted.":"Apenas os aplicativos com um assistente instalado podem ser reiniciados.","Operating System":"Sistema Operacional","Optimized Sync":"Sincronização otimizada","Organization":"Organização","Original Sync Date":"Data de Sinc original","OS":"SO","OSTree Branch metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"A geração de metadados da Ramificação OSTree foi iniciada em segundo plano. \nClique\n <a ng-href=\"{{ taskUrl() }}\">Aqui</a> para monitorar o progresso.","OSTree Branch:":"Ramificação OSTree:","OSTree Branches":"Ramificações OSTree","OSTree Content":"Conteúdo OSTree","OSTree Repositories":"Repositórios OSTree","OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>":"Repositórios do OSTree <div>{{ library.counts.ostree_repositories || 0 }}</div>","Override to Disabled":"Substituir para desabilitado","Override to Enabled":"Substituir para habilitado","Package":"Pacote","Package Actions":"Ações de Pacote","Package Filter:":"Filtro de Pacote:","Package Group":"Grupo de Pacote","Package Group Filter:":"Filtro de Grupo de Pacote:","Package Group successfully added.":"Grupo de Pacote adicionado com sucesso.","Package Group successfully removed.":"Grupo de Pacote removido com sucesso.","Package Groups":"Grupos de Pacote","Package Groups for Repository:":"Grupos de Pacotes para o Repositório:","Package Information":"Informações do pacote","Package Install":"Instalação de Pacote","Package Installation, Removal, and Update":"Instalação, Remoção e Atualização de Pacote","Package Remove":"Remoção de Pacote","Package successfully added.":"Pacote adicionado com sucesso","Package successfully removed.":"Pacote removido com sucesso.","Package successfully updated.":"Pacote atualizado com sucesso.","Package Update":"Atualização de Pacote","Package Updates":"Atualizações do pacote","Package:":"Pacote:","Package/Group Name":"Nome de Grupo/ Pacote","Packages":"Pacotes","Packages <div>{{ library.counts.packages || 0 }}</div>":"Pacotes <div>{{ library.counts.packages || 0 }}</div> ","Packages are automatically Applicable if they are Upgradable":"Os pacotes são automaticamente aplicáveis se puderem ter upgrade","Packages for:":"Pacotes para:","Parameters":"Parâmetros","Part of a manifest list":"Parte de uma lista de manifestos","Password":"Senha","Password of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"A senha do usuário do repositório upstream para autenticação. Deixe vazio se o repositório não exigir autenticação.","Paste contents of Content Credential":"Colar conteúdos da credencial de conteúdo","Path":"Caminho","Perform":"Desempenhar","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"Por favor selecione um Ambiente de Ciclo de Vida e Visualização de Conteúdo para mover as Chaves de Ativação afetadas para:","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"Por favor selecione um Ambiente de Ciclo de Vida e Visualização de Conteúdo para mover estes Host de Conteúdo para:","Please select a Lifecycle Environment.":"Por favor selecione um Ambiente de Ciclo de Vida.","Please select an environment.":"Por favor selecione um Ambiente.","Please select one from the list below and you will be redirected.":"Por favor, selecione uma organização da lista abaixo e você será redirecionado.","Plus %y more errors":"Mais %y outros erros ","Plus 1 more error":"Mais outro erro","Product":"Produto","Product Count":"Contagem de Produtos","Product Enhancement Advisory":"Aviso de Aprimoramentos de Produtos","Product information for:":"Informações de Produto para:","Product Management for Sync Plan:":"Gerenciamento de Produto para Plano de Sinc:","Product Name":"Nome do Produto","Product Options":"Opções do produto","Product Saved":"Produto Salvo","Product syncs has been initiated in the background. Click %s to monitor the progress.":"As sincronizações do produto foram iniciadas em segundo plano. Clique em %s para monitorar o progresso.","Products":"Produtos","Products <div>{{ library.counts.products || 0 }}</div>":"<div>{{ library.counts.products || 0 }}</div> Produtos ","Products for":"Produtos para","Products not covered":"Produtos não cobertos","Project Page":"Página do Projeto","Promote":"Promover","Promote Content View:":"Promover Visualização de Conteúdo:","Promote Version":"Promover Versão","Promote Version {{ version.version }}":"Promover Versão {{ version.version }}","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"Promover versão para {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"Promovido para %s","Promoting to %count environments.":"Promovendo para %count ambientes.","Promoting to 1 environment.":"Promovendo para 1 ambiente.","Promotion History":"Histórico de Promoção","Provides":"Fornece","Provisioning Details":"Provisionando Detalhes","Provisioning Host Details":"Provisionando Detalhes do Host","Publish Content View:":"Publicar Visualização de Conteúdo:","Publish New Version":"Publicar Nova Versão","Publish via HTTP":"Publicar via HTTP","Publish via HTTPS":"Publicar via HTTPS","Published":"Publicado","Published At":"Publicado em","Published new version":"Nova versão publicada","Published Repository Information":"Informação de Repositório Publicada","Publishing and promoting to %count environments.":"Publicando e promovendo para %count ambientes.","Publishing and promoting to 1 environment.":"Publicando e promovendo para 1 ambiente.","Puppet Environment":"Ambiente Puppet","Puppet module added to Content View":"Módulo Puppet adicionado à Visualização de Conteúdo","Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.","Puppet Module:":"Módulo Puppet:","Puppet Modules":"Módulos Puppet","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Módulos Puppet <div>{{ library.counts.puppet_modules || 0 }}</div> ","Puppet Modules for Content View:":"Módulos Puppet para a Visualização de Conteúdo:","Quantity":"Quantidade","RAM (GB)":"RAM (GB)","Range":"Classe","Reboot Suggested":"Reinicialização sugerida","Reboot Suggested?":"Reinicialização sugerida?","Recalculate\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>":"Recalcular\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>","Red Hat Repositories page":"Página de Repositórios da Red Hat","Red Hat Repositories page.":"Página de Repositórios da Red Hat.","Refresh Table":"Atualizar Tabela","Regenerate Repository Metadata":"Regenerar metadados de repositórios","Register a Content Host":"Registrar um Host de Conteúdo","Register Content Host":"Registrar Host de Conteúdo","Registered":"Registrado","Registered By":"Registrado por","Registered Through":"Registrado por meio de","Registry to Discover":"Registrar para descobrir","Registry URL":"URL de Registro","Release":"Lançamento","Release Version":"Versão de Lançamento","Release Version:":"Versão de lançamento:","Releases":"Versões","Remote execution plugin is required to be able to run any helpers.":"O plug-in de execução remota é necessário para executar assistentes.","Removal of selected repositories initiated successfully.":"Remoção dos repositórios selecionados iniciada com êxito. ","Remove":"Remover","Remove {{ contentView.name }}":"Remover {{ contentView.name }}","Remove Activation Key \"{{ activationKey.name }}\"?":"Remover a Chave de Ativação \"{{ activationKey.name }}\"?","Remove Content Credential":"Remover credencial de conteúdo","Remove Content Credential {{ contentCredential.name }}":"Remover credencial de conteúdo {{ contentCredential.name }}","Remove Content View":"Remover Visualização de Conteúdo","Remove Content Views":"Remover Visualizações de Conteúdo","Remove Environment":"Remover ambiente","Remove Errata":"Remover Erratas","Remove Files":"Remover arquivos","Remove From":"Remover de","Remove Host Collection \"{{ hostCollection.name }}\"?":"Remover Coleção de Host \"{{ hostCollection.name }}\"?","Remove Module":"Remover Módulo","Remove Package Group":"Remover Grupo de Pacote","Remove Packages":"Remover Pacotes","Remove Product":"Remover Produto","Remove Product \"{{ product.name }}\"?":"Remover o Produto \"{{ product.name }}\"?","Remove Puppet Modules":"Remover Módulos Puppet","Remove Repositories":"Remover Repositórios","Remove Repository":"Remover Repositório","Remove Repository \"{{ repository.name }}\"?":"Remover Repositório \"{{ repository.name }}\"?","Remove Rule":"Remover Regra","Remove Selected":"Remover Selecionado","Remove Successful.":"Remoção bem sucedida.","Remove Sync Plan":"Remover Plano de Sincronização","Remove Sync Plan \"{{ syncPlan.name }}\"?":"Remover Plano de Sincronização \"{{ syncPlan.name }}\"?","Remove Tags":"Remover tags","Remove Version":"Remover Versão","Remove Version Confirmation":"Remover Confirmação de Versão","Removed %x host collections from activation key \"%y\".":"%x coleções de host removidas da chave de ativação \"%y\".","Removed %x host collections from content host \"%y\".":" %x coleções de host removidas do host de conteúdo \"%y\".","Removed %x products from sync plan \"%y\".":"%x produtos removidos do plano de sincronização \"%y\".","Removing Repositories":"Removendo Repositórios","Repo Discovery":"Descoberta de Repositório","Repositories":"Repositórios","Repositories containing branch {{ branch.name }}":"Repositórios que contêm a ramificação {{ branch.name }}","Repositories containing Errata {{ errata.errata_id }}":"Repositórios contendo Errata {{ errata.errata_id }}","Repositories containing package {{ package.nvrea }}":"Repositórios contendo o pacote {{ package.nvrea }}","Repositories for":"Repositórios para","Repositories for Content View:":"Repositório para Visualização de Conteúdo:","Repositories for Deb:":"Repositórios para a deputação:","Repositories for Errata:":"Repositórios para Errata:","Repositories for File:":"Repositórios para o arquivo:","Repositories for Filter:":"Repositórios para Filtrar:","Repositories for Package:":"Repositórios para Pacote:","Repositories for Product:":"Repositórios para Produto:","Repositories for Puppet Module:":"Repositórios para Módulo Puppet:","Repositories to Create":"Repositórios para criar","Repository":"Repositório","Repository \"%s\" successfully deleted":"Repositório \"%s\" removido com êxito","Repository %s successfully created.":"Repositório %s criado com êxito.","Repository Count":"Contagem do Repositório","Repository created":"Repositório criado","Repository Discovery":"Descoberta de Repositório","Repository Label":"Nome do Repositório","Repository Name":"Nome de Repositório","Repository Options":"Opções de repositórios","Repository Path":"Caminho de repositórios","Repository Saved.":"Repositório Salvo.","Repository Selection":"Seleção de Repositório","Repository Sets":"Grupos de repositórios","Repository Sets settings saved successfully.":"Configurações de grupos de repositórios salvas com êxito.","Repository Type":"Tipo de repositório","Repository URL":"URL do Repositório","Repository:":"Repositório:","Republish Repository Metadata":"Republicar metadados de repositórios","Requires":"Requer","Reset to Default":"Redefinir para o padrão","Restart":"Reiniciar","Restart Selected":"Reiniciar selecionados","Restart Services on Content Host \"{{host.name}}\"?":"Reiniciar serviços no host de conteúdo \"{{host.name}}\"?","Restrict to architecture":"Restringir à arquitetura","Restrict to Architecture":"Restringir à arquitetura","Result":"Resultado","Role":"Função","RPM":"RPM","RPM Name":"Nome do RPM","rpm Package Groups":"Grupos de pacotes de RPM","rpm Packages":"Pacotes de RPM","RPMs":"RPMs","Run Auto-Attach":"Executar Anexação Automática","Run Repository Creation\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>":"Executar criação de repositórios\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>","Run Sync Plan":"Executar Plano de Sincronização","Save":"Salvar","Save Successful.":"Foi salvo com sucesso","Schema Version":"Versão do esquema","Schema Version 1":"Versão 1 do esquema","Schema Version 2":"Versão 2 do esquema","Security":"Segurança","Security Advisory":"Aviso de Segurança","Select":"Selecione","Select a Content Source:":"Selecionar uma Fonte de Conteúdo:","Select A New Puppet Module To Add":"Selecionar um Novo Módulo Puppet para Adicionar","Select a Version":"Selecionar uma Versão","Select Action":"Selecionar Ação","Select an Available Version of {{ $stateParams.moduleName }}":"Selecionar uma Versão Disponível de {{ $stateParams.moduleName }}","Select an Organization":"Selecione uma Organização.","Select Content View":"Selecionar Visualização de Conteúdo","Select Environment":"Selecionar ambiente","Select new version":"Selecionar nova versão","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"Selecionar os Ambientes de Ciclo de Vida de onde você deseja remover a Versão {{ version.version }}:","Select Version":"Selecionar Versão","Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\" or \"Background\" download policies will be synced.":"Selecionar \"Concluir sincronização\" fará com que apenas repositórios Yum do produto selecionado sejam sincronizados. Selecionar \"Validar conteúdo\" fará com que apenas repositórios Yum usando as políticas de download \"Imediato\" ou \"Segundo plano\" sejam sincronizados.","Selecting this option will result in contents that are no longer part of the upstream repository being removed during synchronization.":"A seleção desta opção resultará em conteúdos que não fazem mais parte do repositório upstream sendo removido durante a sincronização. ","Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification.":"Selecionar essa opção fará com que o Katello verifique se os certificados SSL da URL upstream estão assinados por um CA confiável. Desmarque se você não quiser essa verificação.","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"A seleção desta opção resultará na versão sendo completamente removida e não disponível para promoção. Para selecionar essa opção, a versão deve ser removida de todos os ambientes de ciclo de vida.","Serve via HTTP":"Veicular por HTTP","Service Level":"Nível de Serviço","Set Release Version":"Definir versão","Severity":"Gravidade","Show affected Activation Keys":"Exibir as Chaves de Ativação Afetadas","Show affected Content Hosts":"Exibir Hosts de Conteúdo Afetados","Show All":"Exibir Todos","Show all Repository Sets in Organization":"Exibir todos os grupos de repositórios na organização","Size":"Tamanho","Smart proxy currently syncing to your locations...":"Proxy inteligente atualmente sincronizando para seus locais...","Smart proxy is synchronized":"Proxy inteligente está sincronizado","Sockets":"Soquetes","Solution":"Solução","Some of the Errata shown below may not be installable as they are not in this Content Host's\n Content View and Lifecycle Environment. In order to apply such Errata an Incremental Update is required.":"Algumas das erratas exibidas abaixo podem não ser instaláveis pois, não estão neste Ambiente de Ciclo de Vida e Visualização de\n Conteúdo do Host de Conteúdo. Para aplicar tal errata, é necessário uma Atualização Incremental.","Something went wrong when retrieving the resource.":"Algo saiu errado durante a restauração do recurso. ","Something went wrong when saving the resource.":"Ocorreu um erro ao salvar o recurso.","Source":"Fonte","Source RPM":"RPM de origem","Source RPMs":"RPMs de origem","SSL CA Cert":"Certificado SSL CA","SSL Certificate":"Certificado SSL","SSL Client Cert":"Certificado de cliente SSL","SSL Client Key":"Chave do cliente SSL","Standard sync, optimized for speed by bypassing any unneeded steps.":"Sincronização padrão, otimizada para velocidade, ignorando velocidades desnecessárias.","Start Date":"Data de Início","Start Time":"Hora inicial","Started At":"Iniciou em","Starting":"Iniciando","Starts":"Começa","State":"Estado","Status":"Status","Stream":"Fluxo","Subscription Details":"Detalhes de Subscrição","Subscription Management":"Gerenciamento de subscrições","Subscription Status":"Status de Subscrição","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"registro do subscription-manager --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Subscrições","Subscriptions for Activation Key:":"Subscrições para Chave de Ativação:","Subscriptions for Content Host:":"Subscrições para o Host de Conteúdo:","Subscriptions for:":"Subscrições para:","Success!":"Sucesso!","Successfully added %s subscriptions.":"%s subscrições adicionadas com sucessso. ","Successfully deleted %cv version %ver.":"%c versão %ver removida com sucesso.","Successfully initiated deletion of %cv version %ver.":"Remoção da %cv versão %ver iniciada com sucesso.","Successfully initiated promotion of %cv version %ver to %env.":"Promoção da %cv versão %ver para %env iniciada com sucesso.","Successfully initiated removal of %cv version %ver.":"Remoção da %cv versão %ver iniciada com sucesso.","Successfully promoted %cv version %ver to %env":"Promoção da %cv versão %ver para %env realizada com sucesso","Successfully published %cv version %ver and promoted to Library":"Publicação da %cv versão %ver e promoção para a Biblioteca realizada com sucesso","Successfully removed %cv version %ver from environments: %env":"Remoção da %cv versão %ver de ambientes %env realizada com sucesso","Successfully removed %s items.":"%s itens removidos com sucesso.","Successfully removed %s subscriptions.":"%s subscrições removidas com sucesso.","Successfully removed 1 item.":"1 Item removido com sucesso.","Successfully scheduled an update of all packages":"Uma atualização para todos os pacotes foi agendada com êxito","Successfully scheduled package installation":"Instalação de pacote agendada com êxito","Successfully scheduled package removal":"Remoção de pacote agendada com êxito","Successfully scheduled package update":"Atualização de pacote agendada com êxito","Successfully updated subscriptions.":"Subscrições atualizadas com sucesso.","Successfully uploaded content:":"Conteúdo carregado com êxito:","Summary":"Sumário","Support Level":"Nível de Suporte","Sync":"Sinc","Sync Enabled":"Sincronização Habilitada","Sync even if the upstream metadata appears to have no change. This option is only relevant for yum repositories and will take longer than an optimized sync. Choose this option if:":"Sincronizar mesmo que os metadados de upstream pareçam não ter alterações. Essa opção é relevante somente para repositórios Yum e levará mais tempo que uma sincronização otimizada. Escolha essa opção se:","Sync Interval":"Intervalo de Sincronização","Sync Now":"Sinc Agora","Sync Plan":"Plano de Sinc","Sync Plan %s has been deleted.":"Plano de Sinc %s removido.","Sync Plan created and assigned to product.":"Plano de sincronização criado e atribuído ao produto.","Sync Plan Saved":"Plano de Sinc Salvo","Sync Plan:":"Plano de Sinc:","Sync Plans":"Planos de Sincronização","Sync Selected":"Sincronização selecionada","Sync Settings":"Configurações de sincronização","Sync State":"Estado de Sinc","Sync Status":"Status de Sincronização","Synced manually, no interval set.":"Sincronizado manualmente, nenhum intervalo foi definido.","Synchronization is about to start...":"A sincronização está prestes a começar...","Synchronization is being cancelled...":"A sincronização está sendo cancelada...","System Purpose":"Objetivo do sistema","Tags":"Tags","Task Details":"Detalhes de Tarefa","Tasks":"Tarefas","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"As Chaves de Ativação listadas abaixo estão usando atualmente esta Versão de Visualização de Conteúdo. Antes de remover a versão, você deve mover essas Chaves de Ativação para um Ambiente de Ciclo de Vida onde essa versão não está sendo utilizada.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"O arquivo desta versão será removido. Esta versão não estará disponível depois que a remoção for concluída.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"O arquivo desta versão não será removido. Esta versão ainda estará disponível para promoção para um Ambiente de Ciclo de vida.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Os hosts de conteúdo listados abaixo estão utilizando atualmente esta Versão de Visualização de Conteúdo. Antes de remover a versão, você deve mover esses hosts de conteúdo para um ambiente onde essa versão não está sendo utilizada.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"A Visualização de Conteúdo ou o Ambiente de Ciclo de Vida precisa ser atualizado para disponibilizar erratas a estes hosts.","The following actions can be performed on content hosts in this host collection:":"As seguintes ações podem ser realizadas nos hosts de conteúdo nesta coleção de host:","The host has not reported any applicable packages for upgrade.":"O host não relatou pacotes aplicáveis para upgrade.","The host has not reported any installed packages, registering with subscription-manager should cause these to be reported.":"O host não informou nenhum pacote instalado, o registro com o subscription-manager deve gerar a notificação deles. ","The page you are attempting to access requires selecting a specific organization.":"A página que você está tentando acessar requer a seleção de uma organização específica.","The selected environment contains no Content Views, please select a different environment.":"O ambiente selecionado não contém visualizações de conteúdo, por favor selecione um outro ambiente.","The time the sync should happen in your current time zone.":"A hora de sincronização deve estar no seu fuso horário atual.","There are {{ errataCount }} total Errata in this organization but none match the above filters.":"Exitem {{ errataCount }} erratas no total nesta organização, mas nenhuma corresponde aos filtros acima. ","There are {{ packageCount }} total Packages in this organization but none match the above filters.":"Há {{ packageCount }} pacotes nesta organização, mas nenhum corresponde aos filtros acima.","There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"No momento, não há repositórios do Docker associados a essa visualização de conteúdo. Você pode adicionar alguns clicando na guia \"Adicionar\" acima.","There are currently no Docker Repositories to add to this Content View,":"No momento, não há repositórios do Docker para adicionar a essa visualização de conteúdo.","There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"No momento, não há repositórios de arquivos associados a essa visualização de conteúdo, você pode adicionar","There are currently no File Repositories to add to this Content View,":"No momento, não há repositórios de arquivos para adicionar a esta visualização de conteúdo.","There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"No momento, não há repositórios do OSTree associados a esta visualização de conteúdo. Você pode adicionar alguns clicando na guia \"Adicionar\" acima.","There are currently no OSTree Repositories to add to this Content View,":"No momento, não há repositórios do OSTree associados a esta visualização de conteúdo.","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Não há repositórios no momento associados à Visualização de Conteúdo, você pode adicionar alguns clicando em \"Adicionar\" na aba acima.","There are currently no repositories to add to this Content View,":"Não existem repositórios no momento para serem adicionados a esta Visualização de Conteúdo,","There are no Content Views in this Environment.":"Não existem Visualizações de Conteúdo neste Ambiente.","There are no Content Views that match the criteria.":"Não existem Visualizações de Conteúdo que correspondem aos critérios.","There are no Errata associated with this Content Host to display.":"Não existem Erratas associadas ao Host de Conteúdo para serem exibidas.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"Não existem Erratas nesta organização. Crie um ou mais Produtos com Erratas para visualizar as Erratas nesta página.","There are no Errata to display.":"Não existem Erratas para serem exibidas.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Nao existe uma Coleção de Host disponível. Você pode adicionar novas Coleções de Host após selecionar 'Coleções de Host' sob 'Hosts' no menu principal.","There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page.":"Não existem pacotes nesta organização. Crie um ou mais produtos com pacotes para visualizá-los nesta página.","There are no Sync Plans available. You can create new Sync Plans after selecting 'Sync Plans' under 'Hosts' in main menu.":"Não há planos de sincronização disponíveis. Você pode criar novos planos de sincronização selecionando \"Planos de sincronização\" em \"Hosts\" no menu principal.","There are no Traces to display.":"Não há rastreamentos para exibir.","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"Existe atualmente uma tarefa de Atualização Adicional em andamento. Esta atualização deve ser concluída antes das atualizações existentes serem aplicadas.","There is currently no history associated with this Content View.":"No momento, não há histórico associado a esta visualização de conteúdo.","This action will affect only those Content Hosts that require a change.\n If the Content Host does not have the selected Subscription no action will take place.":"Esta ação afetará somente os hosts de conteúdo que exigem a alteração.\n Se o host de conteúdo não tiver a assinatura selecionada, nenhuma ação será realizada.","This activation key is not associated with any content hosts.":"Esta chave de ativação não está associada a nenhum host de conteúdo.","This activation key may be used during system registration. For example:":"Esta chave de ativação pode ser utilizada durante o registro do sistema. Por exemplo:","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Esta Visualização de Conteúdo não possui nenhuma versão, crie sua primeira Versão de Visualização de Conteúdo utilizando o botão \"Publicar Nova Versão\" à direita.","This filter applies only to a subset of repositories in the content view.":"Este filtro se aplica somente a um subconjunto de repositórios na visualização de conteúdo.","This filter applies to all repositories in the content view (current and future).":"Este filtro se aplica a todos os repositórios na visualização de conteúdo (atuais e futuros)","This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n Change the setting \"Delete Host upon Unregister\" to false on the <a href=\"/settings\">settings page</a> to prevent this.":"Esta operação também poderá remover os recursos vinculados ao host, como as máquinas virtuais e registros DNS.\n Altere a configuração \"Excluir host ao cancelar registro\" para falso na <a href=\"/settings\">página de configurações</a> para impedir isso.","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Esta Versão não pode ser removida de alguns Ambientes de Ciclo de Vida devido a uma das razões abaixo:","This Version is not associated with any Lifecycle Environments.":"Esta Versão não está associada a nenhum Ambiente de Ciclo de Vida.","This version will be removed from:":"Esta versão será removida de:","Title":"Título","to manage them individually.":"para gerencia-las individualmente","To register a content host to this server, follow these steps.":"Para registrar um host de conteúdo neeste servidor, siga os passos abaixo.","Toggle Dropdown":"Ativar menu suspenso","Topic":"Tópico","Traces":"Rastreamentos","Traces for:":"Rastreamentos para:","Type":"Tipo","Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}":"Tipo: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}","Unable to determine version":"Não é possível determinar a versão","Unauthenticated Pull":"Transferência não autenticada","Unknown":"Desconhecido ","Unlimited Content Hosts:":"Hosts de Conteúdo Ilimitados:","Unlimited Hosts":"Hosts ilimitados","Unregister Host":"Cancelar registro de Host","Unregister Host \"{{host.name}}\"?":"Desfazer o registro do host \"{{host.name}}\"?","Unregister Options:":"Opções para desfazer o registro:","Unregister the host as a subscription consumer. Provisioning and configuration information is preserved.":"Cancelar registro do host como um consumidor de subscrição. As informações de provisionamento e configuração foram preservadas.","Unsupported Type!":"Tipo não suportado!","Update":"Atualizar","Update All Packages":"Atualizar todos os pacotes","Update Packages":"Atualizar Pacotes","Update Repositories":"Atualizar Repositórios","Update Sync Plan":"Atualizar Plano de Sinc","Updated":"Atualizado","Updated errata filter -":"Filtro de errata atualizado - ","Updated On":"Atualizado(a) em","Upgradable":"Pode ter upgrade","Upgradable For":"Pode ter upgrade para","Upgradable Package":"Pacote que pode ter upgrade","Upgrade Selected":"Upgrade selecionado","Upload":"Carregar","Upload Content Credential file":"Fazer upload do arquivo de credencial de conteúdo","Upload File":"Carregar Arquivo","Upload Package":"Carregar Pacote","Upload Puppet Module":"Carregar Módulo Puppet","Uploading...":"Carregando...","Upstream Image Name":"Nome da imagem de upstream","Upstream Password":"Senha de upstream","Upstream Repository Name":"Nome de Repositório Upstream","Upstream Sync Policy":"Política de sincronização de upstream","Upstream URL":"URL upstream","Upstream Username":"Nome de usuário de upstream","Url":"Url","URL of the registry you want to sync. Example: https://registry-1.docker.io/":"URL do registro que você deseja sincronizar. Exemplo: https://registry-1.docker.io/","URL to Discover":"URL para descobrir","Used as":"Usado como","User":"Usuário","Username":"Nome de usuário","Username of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Nome de usuário do usuário do repositório de upstream para autenticação. Deixe vazio se o repositório não exigir autenticação.","Validate Content Sync":"Validar sincronização de conteúdo","Variant":"Variante ","Verify SSL":"Verificar o SSL","Version":"Versão","Version {{ rule.version }}":"Versão {{ rule.version }}","Version Deletion":"Remoção de Versão","Version Details":"Detalhes da Versão","Version:":"Versão:","Versions":"Versões","Versions for Content View:":"Versões para Visualização de Conteúdo:","Versions for Puppet Module:":"Versões para Módulo Puppet:","via Katello agent":"via Katello agent","via Katello Agent":"via Katello Agent","via remote execution":"via execução remota","via remote execution - customize first":"via execução remota - personalizar primeiro","Virtual Guest":"Sistema Virtual","Virtual Guests":"Convidados Virtuais","Virtual Host":"Host Virtual","weekly":"por semana","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Semanalmente em {{ product.sync_plan.sync_date | date:'EEEE' }} à(s) {{ product.sync_plan.sync_date | date:'mediumTime' }} (Hora do Servidor)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Quando a anexação automática está desabilitada, o registro de sistemas é anexado a todas as subscrições associadas.","When validating content, repositories using the \"On Demand\" download policy will download all packages within the repository.":"Ao validar conteúdo, os repositórios que usam a política de download \"Sob demanda\" farão o download de todos os pacotes no repositório.","Working":"Funcionando","Yes":"Sim","You cannot remove these repositories because they belong to a Red Hat product.":"Você não pode remover estes repositórios porque eles pertencem a um produto da Red Hat.","You cannot remove these repositories because you do not have permission.":"Você não pode remover estes repositórios porque você não tem permissão.","You cannot remove this product because it is a Red Hat product.":"Você não pode remover este produto porque é um produto da Red Hat.","You cannot remove this product because it was published to a content view.":"Você não pode remover este produto porque ele foi publicado para uma visualização de conteúdo.","You cannot remove this product because you do not have permission.":"Você não pode remover este produto porque você não possui permissão.","You cannot remove this repository because it is a Red Hat repository.":"Você não pode remover este repositório porque é um repositório da Red Hat.","You cannot remove this repository because it was published to a content view.":"Você não pode remover este repositório porque ele foi publicado para uma visualização de conteúdo.","You cannot remove this repository because you do not have permission.":"Você não pode remover este repositório porque você não possui permissão.","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":" No momento você não tem nenhuma Chave de Ativação, você pode adicionar Chaves de Ativação utilizando o botão à direita.","You currently don't have any Content Credential, you can add Content Credentials using the button on the right.":" No momento, você não tem credenciais de conteúdo. Você pode adicionar credenciais de conteúdo usando o botão do lado direito.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"No momento você não tem nenhum Host de Conteúdo, você pode criar novos Hosts de Conteúdo selecionando Host de Conteúdo através do menu principal e, depois, clicando no botão à direita.","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"No momento você não tem nenhum Host de Conteúdo, você pode registrar um utilizando o botão à direita e seguindo as instruções.","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"No momento você não tem nenhuma Visualização de Conteúdo. Pode-se adicionar uma Visualização de Conteúdo utilizando o botão à direita.","You currently don't have any Debs.":"No momento, você não tem dupurações.","You currently don't have any Files.":"No momento, você não tem arquivos.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"Você não possui atualmente nenhum Filtro incluso nesta Visualização de Conteúdo, você pode adicionar um novo Filtro utilizando o botão à direita.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"No momento você não tem nenhuma Coleção de Host, você pode adicionar Coleções de Host utilizando o botão à direita.","You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.":"No momento, você não tem nenhum host neste grupo de hosts, você pode adicionar Hosts de Conteúdo depois de selecionar a aba 'Adicionar'.","You currently don't have any OSTree Branches.":"No momento, você não tem ramificações OSTree.","You currently don't have any Products associated with this Content Credential.":"No momento, você não tem produtos associados a essa credencial de conteúdo.","You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu":"No momento, você não tem nenhum produto para subscrição, você pode adicionar Produtos depois de selecionar 'Produtos' sob 'Conteúdo' no menu principal.","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"No momento você não possui nenhum produto <span bst-feature-flag=\"custom_products\">, você pode adicionar produtos usando o botão à direita</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"No momento você não possui nenhum Módulo Puppet incluído nesta Visualização de Conteúdo, você pode adicionar Módulos Puppet utilizando o botão à direita.","You currently don't have any Puppet Modules.":"Você não possui nenhum Módulo Puppet atualmente.","You currently don't have any Repositories associated with this Content Credential.":"No momento, você não tem repositórios associados a essa credencial de conteúdo.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"No momento você não tem nenhum Repositório incluído neste produto, você pode adicionar Repositórios usando o botão à direita.","You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab.":"No momento, você não tem nenhuma subscrição associada a esta Chave de Ativação, você pode adicionar subscrições depois de selecionar a aba 'Adicionar'.","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":" No momento você não tem nenhum plano de sincronização. Pode-se criar um Plano de Sincronização usando o botão do lado direito.","You do not have any Installed Products":"Você não possui nenhum Produto Instalado","You must select a content view in order to save your environment.":"Você precisa selecionar uma visualização de conteúdo para salvar seu ambiente.","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"Você precisa selecionar uma nova visualização de conteúdo antes que sua mudança de ambiente seja salva. Use o botão cancelar na seleção de visualização de conteúdo para reverter sua seleção de ambiente.","You must select at least one Content Host in order to apply Errata.":"Você precisa selecionar ao menos um Host de Conteúdo para aplicar a Errata.","You must select at least one Errata to apply.":"Você deve selecionar ao menos uma errata para aplicação. ","You must select at least one repository.":"Você precisa selecionar ao menos um repositório.","Your search returned zero Activation Keys.":"Sua pesquisa retornou zero chaves de ativação.","Your search returned zero Content Credential.":"Sua pesquisa retornou zero credenciais de conteúdo.","Your search returned zero Content Hosts.":"Sua pesquisa retornou zero hosts de conteúdo.","Your search returned zero Content View.":"Sua pesquisa retornou zero visualizações de conteúdo.","Your search returned zero Content Views":"Sua pesquisa retornou zero visualizações de conteúdo","Your search returned zero Content Views.":"Sua pesquisa retornou zero visualizações de conteúdo.","Your search returned zero Debs.":"Sua pesquisa retornou zero depurações.","Your search returned zero Errata.":"Sua pesquisa retornou zero erratas.","Your search returned zero Erratum.":"Sua pesquisa retornou zero erratas.","Your search returned zero Files.":"Sua pesquisa retornou zero arquivos.","Your search returned zero Filters.":"Sua pesquisa retornou zero filtros.","Your search returned zero Host Collections.":"Sua pesquisa retornou zero coleções de host.","Your search returned zero Hosts.":"Sua pesquisa retornou zero hosts.","Your search returned zero Lifecycle Environments.":"Sua pesquisa retornou zero ambientes de ciclo de vida.","Your search returned zero Packages.":"Sua pesquisa retornou zero pacotes.","Your search returned zero Products.":"Sua pesquisa retornou zero produtos.","Your search returned zero Puppet Modules.":"Sua pesquisa retornou zero módulos Puppet.","Your search returned zero Repositories":"Sua pesquisa retornou zero repositórios","Your search returned zero Repositories.":"Sua pesquisa retornou zero repositórios.","Your search returned zero repository sets.":"Sua pesquisa retornou zero conjuntos de repositórios.","Your search returned zero Repository Sets.":"Sua pesquisa retornou zero conjuntos de repositórios.","Your search returned zero results.":"Sua pesquisa retornou zero resultados.","Your search returned zero Subscriptions.":"Sua pesquisa retornou zero assinaturas.","Your search returned zero Sync Plans.":"Sua pesquisa retornou zero planos de sincronização.","Your search returned zero Traces.":"Sua pesquisa retornou zero rastreamentos.","Your search returned zero versions for {{ $stateParams.moduleName }}":"Sua pesquisa retornou zero versões do {{ $stateParams.moduleName }}","Yum Content":"Conteúdo do Yum","Yum Metadata Checksum":"Soma de Verificação de Metadados do Yum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Geração de metadados do Yum foi iniciada em segundo plano. Clique <a href=\"{{ taskUrl() }}\">Aqui</a> para monitorar o progresso.","Yum Repositories":"Repositórios do Yum","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Repositórios do Yum <div>{{ library.counts.yum_repositories || 0 }}</div>"});
9
+ gettextCatalog.setStrings('pt_BR', {"- Date and Type":"- Data e tipo","-- select an interval --":"-- selecione um intervalo --","(Not all Activation Keys editable )":"(Nem todas as Chaves de ativação são editáveis)","(Not all Content Hosts editable )":"(Nem todos os Hosts de conteúdo são editáveis)","{{ 'Add Selected' | translate }}":"{{ 'Add Selected' | translate }}","{{ componentContentView.puppet_modules.length || 0 }} Puppet Modules":"{{ componentContentView.puppet_modules.length || 0 }} módulos puppet","{{ componentContentView.repositories.length || 0 }} Repositories":"{{ componentContentView.repositories.length || 0 }} repositórios","{{ contentCredential.name }}":"{{ contentCredential.name }}","{{ contentView.name }}":"{{ contentView.name }}","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} não pode ser removido, pois uma ou mais Versões de visualização de conteúdo ainda estão sendo promovidas para um Ambiente de ciclo de vida.\n Cada Versão de visualização de conteúdo deve ser removida de seus Ambientes de ciclo de vida antes que a Visualização de conteúdo possa ser removida.","{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet Modules":"{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} módulos puppet ","{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories":"{{ contentViewComponent.content_view_version.repositories.length || 0 }} repositórios","{{ deb.name }}":"{{ deb.name }}","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} aplicável,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} instalável","{{ errata.title }}":"{{ errata.title }}","{{ file.name }}":"{{ file.name }}","{{ filter.inclusion | filterType }} Tag":"Tag {{ filter.inclusion | filterType }}","{{ host.name }}":"{{ host.name }}","{{ host.subscription_facet_attributes.user.login }}":"{{ host.subscription_facet_attributes.user.login }}","{{ installedPackageCount }} Host(s)":"{{ installedPackageCount }} host(s)","{{ package.hosts_applicable_count }} Host(s)":"{{ package.hosts_applicable_count }} host(s)","{{ package.hosts_applicable_count || 0 }} Applicable,":"{{ package.hosts_applicable_count || 0 }} aplicáveis,","{{ package.hosts_available_count }} Host(s)":"{{ package.hosts_available_count }} hosts","{{ package.hosts_available_count || 0 }} Upgradable":"{{ package.hosts_available_count || 0 }} podem ter updgrade ","{{ package.human_readable_size }} ({{ package.size }} Bytes)":"{{ package.human_readable_size }} ({{ package.size }} bytes)","{{ product.active_task_count }}":"{{ product.active_task_count }}","{{ product.name }}":"{{ product.name }}","{{ puppetModule.name }}":"{{ puppetModule.name }}","{{ repository.content_counts.deb }} deb Packages":"Pacotes de depuração {{ repository.content_counts.deb }}","{{ repository.content_counts.deb || 0 }} deb Packages":"Pacotes de depuração {{ repository.content_counts.deb || 0 }}","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} errata(s)","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} errata","{{ repository.content_counts.file || 0 }} Files":"{{ repository.content_counts.file || 0 }} arquivos","{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches":"{{ repository.content_counts.ostree_branch || 0 }} ramificações OSTree ","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} módulos puppet","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} pacotes","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} pacotes","{{ repository.content_counts.srpm }} Source RPMs":"RPMs de origem {{ repository.content_counts.srpm }}","{{ repository.last_sync_words }} ago":"{{ repository.last_sync_words }} atrás","{{ repository.name }}":"{{ repository.name }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} Chaves de ativação serão movidas para {{ deleteOptions.activationKeys.contentView.name }} em {{ deleteOptions.activationKeys.environment.name }}","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} Hosts de conteúdo serão movidos para {{ deleteOptions.contentHosts.contentView.name }} em {{ deleteOptions.contentHosts.environment.name }}","{{ type.display }}":"{{ type.display }}","{{ version.deb_count }} deb Packages":"Pacotes de depuração {{ version.deb_count }}","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} errata(s)","{{ version.file_count }} Files":"{{ version.file_count }} arquivos","{{ version.ostree_branch_count }} OSTree Branches":"{{ version.ostree_branch_count }} ramificações OSTree","{{ version.package_count }} Packages":"{{ version.package_count }} pacotes","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} módulos puppet","{{ version.srpm_count }} Source RPMs":"RPMs de origem {{ version.srpm_count }}","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"*Essas Versões de visualização de conteúdo marcadas são da Coleção de visualizações de conteúdo. Os seus componentes que precisam ser atualizados estão listados abaixo.","%(consumed)s out of %(quantity)s":"%(consumed)s em %(quantity)s","%count environment(s) can be synchronized: %envs":"%count ambiente(s) pode(m) ser sincronizado(s): %envs","<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>":"<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>","<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>":"<a ui-sref=\"content-view.version.details({versionId: version.id})\"> versão {{ version.version }}</a>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n Ambientes com asterisco são sugeridos para promoção.","<i class=\"fa fa-warning inline-icon\"></i>\n This Host is not currently registered with subscription-manager. Click <a ui-sref=\"content-hosts.register\">here</a> for registration information.":"<i class=\"fa fa-warning inline-icon\"></i>\n Este host não está atualmente registrado no gerente de assinaturas. Clique em <a ui-sref=\"content-hosts.register\">here</a> para obter informações de registro.","<span translate=\"\">\n If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">to manage them individually.</span>":"<span translate=\"\">\n Se você preferir mover porções dessas chaves de ativação para diferentes visualizações de conteúdo ou ambientes de ciclo de vida, clique em\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">para gerenciá-los individualmente.</span>","1 repository sync in progress.":["1 sincronização de repositório está em andamento.","{{ product.sync_summary.pending}} sincronizações de repositório em andamento."],"1 successfully synced repository.":["1 repositório sincronizado com sucesso.","{{ product.sync_summary.success}} repositórios sincronizados com sucesso."],"A composite view contains other content views.":"Uma coleção de visualização contém outras visualizações de conteúdo.","A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n It can be promoted to other environments from the Versions tab of this Content View.":"Uma nova versão de {{ contentView.name }} será criada e promovida para o ambiente da biblioteca.\n Ela pode ser promovida para outros ambientes a partir da guia Versões desta exibição de conteúdo.","A newer version is available: {{ contentViewComponent.content_view.latest_version }}":"Uma nova versão está disponível: {{ contentViewComponent.content_view.latest_version }}","A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>":"Uma sincronização foi iniciada em segundo plano, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">clique aqui para obter mais detalhes</a>","Account":"Conta","Action":"Ação","Action Type":"Tipo de ação","Actions":"Ações","Activation Key":["Chave de ativação","Chaves de ativação"],"Activation Key Content":"Conteúdo de Chave de ativação","Activation Key removed.":"Chave de ativação removida.","Activation Key updated":"Chave de ativação atualizada","Activation Key:":"Chave de ativação:","Activation Keys":"Chaves de ativação","Activation Keys using Version {{ version.version }}":"Chaves de ativação usando a versão {{ version.version }}","Active Tasks":"Tarefas ativas","Add":"Adicionar","Add Content Hosts to:":"Adicionar hosts de conteúdo ao:","Add Content Views":"Adicionar visualizações de conteúdo","Add Content Views to {{ contentView.name }}":"Adicionar visualizações de conteúdo a {{ contentView.name }}","Add Errata":"Adicionar errata","Add New Environment":"Adicionar novo ambiente","Add New Module":"Adicionar novo módulo","Add New Yum Filter":"Adicionar novo filtro Yum","Add ons":"Complementos","Add Package Group":"Adicionar grupo de pacotes","Add Repositories":"Adicionar repositórios","Add Rule":"Adicionar regra","Add Selected":"Adicionar selecionados","add some repositories.":"adicionar alguns repositórios.","Add Subscriptions for Activation Key:":"Adicionar subscrições para chave de ativação:","Add Subscriptions for Content Host:":"Adicionar subscrições para host de conteúdo:","Add To":"Adicionar a","Added %x host collections to activation key \"%y\".":" %x coleções de host adicionadas à chave de ativação \"%y\".","Added %x host collections to content host \"%y\".":"%x coleções de host adicionadas ao host de conteúdo \"%y\".","Added %x products to sync plan \"%y\".":"%x produtos adicionados ao plano de sincronização \"%y\".","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Adicionando Ambiente de Ciclo de Vida ao final de \"{{ priorEnvironment.name }}\"","Advanced Sync":"Sincronização avançada","Advisory":"Aviso","Affected Activation Keys":"Chaves de ativação afetadas","Affected Content Hosts":"Hosts de conteúdo afetados","Affected Hosts":"Hosts afetados","Affected Repositories":"Repositórios afetados","Affected repositories have been updated.":"Os repositórios afetados foram atualizados.","All Content Views":"Todas as visualizações de conteúdo","All History":"Todo o histórico","All Products":"Todos os produtos","All Repositories":"Todos os repositórios","All Versions":"Todas as versões","Always Use Latest (Currently %s)":"Usar sempre o mais recente (atualmente %s)","Always Use Latest (Currently no versions)":"Usar sempre o mais recente (atualmente sem versões)","An error occured: %s":"Ocoreu um erro: %s","An error occurred initiating the sync:":"Ocorreu um erro ao iniciar a sincronização:","An error occurred removing the Activation Key:":"Ocorreu um erro ao remover a Chave de Ativação:","An error occurred removing the content hosts.":"Ocorreu um erro durante a remoção de hosts de conteúdo.","An error occurred removing the environment:":"Ocorreu um erro ao remover o ambiente:","An error occurred removing the Host Collection:":"Ocorreu um erro ao remover a Coleção de Host:","An error occurred removing the subscriptions.":"Ocorreu um erro ao remover as subscrições.","An error occurred saving the Activation Key:":"Ocorreu um erro ao salvar a Chave de Ativação:","An error occurred saving the Content Host:":"Ocorreu um erro ao salvar o Host de Conteúdo:","An error occurred saving the Environment:":"Ocorreu um erro ao salvar o Ambiente:","An error occurred saving the Filter:":"Ocorreu um erro ao salvar o Filtro:","An error occurred saving the Host Collection:":"Ocorreu um erro ao salvar a Coleção de Host:","An error occurred saving the Product:":"Ocorreu um erro ao salvar o Produto:","An error occurred saving the Repository:":"Ocorreu um erro ao salvar o Repositório:","An error occurred saving the Sync Plan:":"Ocorreu um erro ao salvar o Plano de Sinc:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Ocorreu um erro ao tentar anexar automaticamente as subscrições. Por favor, verifique seu log para mais informações.","An error occurred updating the Content View:":"Ocorreu um erro ao atualizar a Visualização de Conteúdo:","An error occurred updating the sync plan:":"Ocorreu um erro ao atualizar o plano de sincronização:","An error occurred while creating the Content Credential:":"Ocorreu um erro ao criar as credenciais de conteúdo:","An error occurred while creating the Product: %s":"Ocorreu um erro ao criar o produto: %s","An error occurred:":"Ocorreu um erro:","Ansible Collections":"Coleções do Ansible","Applicable":"Aplicável","Applicable Content Hosts":"Hosts aplicáveis de conteúdo","Applicable Errata":"Errata Aplicável","Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\".":"Aplicável somente para exibições de composição. Publicar automaticamente a exibição de composição quando uma nova versão de uma exibição de conteúdo de componente é criada. Observe também que a publicação automática só acontecerá quando o componente estiver marcado como \"mais recente\".","Applicable Packages":"Pacotes aplicáveis","Applicable To":"Aplicável a","Applicable to Host":"Aplicável ao host","Application":"Aplicativo","Apply":"Aplicar","Apply {{ errata.errata_id }}":"Aplicar {{ errata.errata_id }}","Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?":"Aplicar {{ errata.errata_id }} aos hosts de conteúdo {{ contentHostIds.length }}?","Apply {{ errata.errata_id }} to all Content Host(s)?":"Aplicar {{ errata.errata_id }} a todos os hosts de conteúdo?","Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content Host(s)?":"Aplicar errata {{ errataIds.length }} aos hosts de conteúdo {{ contentHostIds.length }}?","Apply {{ errataIds.length }} Errata to all Content Host(s)?":"Aplicar a errata {{ errataIds.length }} a todos os hosts de conteúdo?","Apply Errata":"Aplicar Errata","Apply Errata to Content Host \"{{host.name}}\"?":"Aplicar Erratas ao Host de Conteúdo \"{{host.name}}\"?","Apply Errata to Content Hosts":"Aplicar Errata aos Hosts de Conteúdo","Apply Errata to Content Hosts immediately after publishing.":"Aplicar Errata aos Hosts de Conteúdo imediatamente após publicação.","Apply Selected":"Aplicar Selecionados","Apply to Content Hosts":"Aplicar aos Hosts de Conteúdo","Apply to Hosts":"Aplicar aos Hosts","Applying":"Aplicando","Apt Repositories":"Repositórios aptos","Arch":"Arq","Architecture":"Arquitetura","Architectures":"Arquiteturas","Archived Copy":"Cópia Arquivada","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"Tem certeza que deseja adicionar o(s) {{ table.numSelected }} host(s) de conteúdo selecionado(s) à(s) coleção(ões) de host escolhida(s)?","Are you sure you want to add the sync plan to the selected products(s)?":"Tem certeza de que deseja adicionar o plano de sincronização aos produtos selecionados?","Are you sure you want to apply Errata to content host \"{{ host.name }}\"?":"Tem certeza que deseja aplicar Erratas ao host de conteúdo \"{{ host.name }}\"?","Are you sure you want to apply the {{ table.numSelected }} selected errata to the content hosts chosen?":"Tem certeza de que deseja aplicar as {{ table.numSelected }} erratas selecionadas aos hosts de conteúdo escolhidos?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"Tem certeza que deseja atribuir o(s) {{ table.numSelected }} host(s) de conteúdo selecionado(s) ao(s) {{ selected.contentView.name }} em {{ selected.environment.name }}?","Are you sure you want to disable the {{ table.numSelected }} repository set(s) chosen?":"Tem certeza de que deseja desabilitar os {{ table.numSelected }} grupos de repositórios escolhidos?","Are you sure you want to enable the {{ table.numSelected }} repository set(s) chosen?":"Tem certeza de que deseja habilitar os {{ table.numSelected }} grupos de repositórios escolhidos?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Tem certeza que deseja instalar {{ content.content }} no(s) sistema(s) {{ getSelectedSystemIds().length }} selecionado(s)?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"Tem certeza que deseja remover {{ content.content }} do(s) {{ getSelectedSystemIds().length }} sistema(s) selecionado(s)?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"Tem certeza que deseja remover a Chave de Ativação \"{{ activationKey.name }}\"?","Are you sure you want to remove Content Credential {{ contentCredential.name }}?":"Tem certeza de que deseja remover a credencial de conteúdo {{ contentCredential.name }}?","Are you sure you want to remove Content View \"{{ contentView.name }}\"?":"Tem certeza de que deseja remover a visualização de conteúdo \"{{ contentView.name }}\"?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"Tem certeza que deseja remover a Coleção de Host \"{{ hostCollection.name }}\"?","Are you sure you want to remove product \"{{ product.name }}\"?":"Tem certeza que deseja remover o produto \"{{ product.name }}\"?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"Tem certeza que deseja remover o repositório \"{{ repository.name }}\"?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"Tem certeza que deseja remover o Plano de Sinc \"{{ syncPlan.name }}\"?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"Tem certeza que deseja remover o(s) {{ table.numSelected }} host(s) de conteúdo selecionado(s) da(s) coleção(ões) de host escolhida(s)?","Are you sure you want to remove the sync plan from the selected product(s)?":"Tem certeza de que deseja remover o plano de sincronização dos produtos selecionados?","Are you sure you want to reset to default the {{ table.numSelected }} repository set(s) chosen?":"Tem certeza de que deseja redefinir o padrão dos {{ table.numSelected }} grupos de repositórios selecionados?","Are you sure you want to restart services on content host \"{{ host.name }}\"?":"Tem certeza de que deseja reiniciar os serviços no host de conteúdo \"{{ host.name }}\"?","Are you sure you want to set the Release Version the {{ table.numSelected }} content host(s) selected to {{ selected.release }}?. This action will affect only those Content Hosts that belong to the appropriate Content View and Lifecycle Environment containining that release version.":"Tem certeza de que deseja definir a versão dos {{ table.numSelected }} hosts selecionados como {{ selected.release }}? Essa ação afetará somente os hosts de conteúdo que pertencem à visualização de conteúdo e ao ciclo de vida adequados que contenham a versão.","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Tem certeza que deseja atualizar{{ content.content }} no(s) {{ getSelectedSystemIds().length }} sistema(s) selecionado(s)?","Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?":"Tem certeza de que deseja atualizar todos os pacotes nos {{ getSelectedSystemIds().length }} sistemas selecionados?","As part of this deletion, 1 Content View Version will be deleted.":["Como parte desta remoção, 1 Versão de Visualização de Conteúdo será removida.","Como parte desta remoção, {{ versions.length }} Versões de Visualização de Conteúdo serão removidas."],"Assign":"Atribuir","Assign Release Version":"Atribuir versão","Associations":"Associações","At least one Errata needs to be selected to Apply.":"Ao menos uma Errata precisa ser selecionada para Aplicar.","Attached":"Anexado(a)","Author":"Autor","Auto Publish":"Publicar automaticamente","Auto-Attach":"Anexar Automaticamente","Automatic":"Automático(a)","Available Content Views for Composite Content View:":"Visualizações de Conteúdo Disponíveis para a Coleção de Visualização de Conteúdo:","Available Puppet Modules for Content View:":"Módulos Puppet Disponíveis para a Visualização de Conteúdo:","Available Schema Versions":"Versões disponíveis de esquema","Back":"Retornar","Back To Errata List":"Retornar à Lista de Erratas","Backend Identifier":"Identificador de back-end","Basic Information":"Informações Básicas","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Abaixo seguem os conjuntos de conteúdo do repositório atualmente disponíveis para este host de conteúdo através de sua subscrição. Para as subscrições Red Hat, os conteúdos adicionais podem estar disponíveis através da","Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Abaixo estão os grupos de repositórios disponíveis para essa chave de ativação por meio de suas assinaturas. Para assinaturas da Red Hat, conteúdo adicional pode ser disponibilizado por meio do","Between versions {{ rule.min_version }} and {{ rule.max_version }}":"Entre as versões {{ rule.min_version }} e {{ rule.max_version }}","Bootable":"Inicializável","Branch Info":"Informações de ramificação","Branch Name":"Nome da Ramificação","Bug Fix":"Correção de Erro","Bug Fix Advisory":"Aviso de Correção de Erros","Bugfix":"Bugfix","Build Host":"Compilar Host","Build Information":"Informações da build","Build Time":"Tempo de Compilação","Cancel":"Cancelar","Cannot Remove":"Não é possível remover","Cannot republish Repository without the proper permissions.":"Não é possível republicar o repositório sem as permissões necessárias.","Cannot republish Repository, a sync is already in progress.":"Não é possível republicar repositório, um sincronização já está em progresso.","Cannot sync Repository without a URL.":"Não é possível sincronizar repositório sem uma URL.","Cannot sync Repository without the proper permissions.":"Não é possível sincronizar repositório sem as permissões necessárias.","Cannot sync Repository, a sync is already in progress.":"Não é possível sincronizar repositório, uma sincronização já está em progresso.","Capacity":"Capacidade","Certificate":"Certificado","Change assigned Lifecycle Environment or Content View":"Mudar Visualização de Conteúdo ou Ambiente de Ciclo de Vida atribuído","Change Host Collections":"Alterar coleções de hosts","Change Lifecycle Environment":"Alterar ambiente de ciclo de vida de ambientes","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"A alteração das configurações padrão para os hosts de conteúdo que possuem registro com esta chave de ativação exige que a versão 1.10, ou mais recente, do subscription-manager seja instalada neste host.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"A alteração das configurações padrão exige que a versão 1.10, ou mais recente, do subscription-manager seja instalada neste host.","Checksum":"Soma de verificação","Checksum Type":"Tipo de soma de verificação","Choose <b>Default</b> to enable the repository for all architectures":"Selecione <b>Padrão</b> para ativar o repositório para todas as arquiteturas","Choose a lifecycle environment from the available promotion paths.":"Escolha um ambiente de ciclo de vida a partir dos caminhos de promoção disponíveis.","Choose one of the policy selections for downloading ostree content from upstream url during synchronization. Choose \"Latest\" for downloading the latest version of the upstream branch. Choose \"All History\" to download all available versions of the upstream repository (this may take a large amount of space). Choose \"Custom Depth\" and provide an number to indicate the number of prior versions of the upstream branch to download.":"Escolha uma seleção de políticas para fazer download de conteúdo OSTree da URL upstream durante a sincronização. Escolha \"Mais recente\" para fazer download da versão mais recente da ramificação upstream. Escolha \"Todo o histórico\" para fazer download de todas as versões disponíveis do repositório upstream (isso pode ocupar uma grande quantidade de espaço. Escolha \"Profundidade personalizada\" para fornecer um número que indique quantas versões anteriores da ramificação upstream serão transferidas.","Click here to check the status of the task.":"Clique aqui para verificar o status da tarefa.","Click here to select Errata for an Incremental Update.":"Clique aqui para selecionar as Erratas para uma Atualização Incremental.","Close":"Fechar","Comma separated list of components to sync from (leave clear to sync all). Example: main":"Lista separada por vírgulas dos componentes a partir da qual sincronizar (deixar em branco para sincronizar tudo). Exemplo: principal","Comma separated list of processor architectures to filter the sync by. Example: amd64":"Lista separada por vírgulas das arquiteturas do processador a partir da qual filtrar a sincronização. Exemplo:","Comma separated list of releases (suite or codename) to sync from. Default: stable":"Lista separada por vírgulas das versões (conjunto ou nome de código) a partir da qual sincronizar. Padrão: estável.","Commit":"Confirmar","Complete Sync":"Concluir sincronização","Completely remove version?":"Remover completamente a versão?","Components":"Componentes","Components:":"Componentes:","Composite":"Composição","Composite View":"Coleção de Visualização ","Composite View?":"Coleção de Visualização?","Confirm":"Confirmar","Confirm Remove":"Confirmar a Remoção","Confirm Version Removal: Version {{ version.version }}":"Confirmar a Remoção da Versão: Versão {{ version.version }}","Container Image Manifest":"Manifesto de imagem de contêiner","Container Image Tag":"Tag de imagem de contêiner","Container Image Tags":"Tags de imagem de contêiner","Container Images":"Imagens do contêiner","Content":"Conteúdo","Content Counts":"Contagem de Conteúdo","Content Credential %s has been created.":"A credencial de conteúdo %s foi criada.","Content Credential Contents":"Conteúdos da credencial de conteúdo","Content Credential successfully uploaded":"Credencial de conteúdo carregada com êxito","Content credential updated":"Credencial de conteúdo atualizada","Content Credentials":"Credenciais de conteúdo","Content Host":"Host de Conteúdo","Content Host Bulk Content":"Conteúdo em Massa de Host de Conteúdo","Content Host Bulk Subscriptions":"Subscrições em Massa de Host de Conteúdo","Content Host Content":"Conteúdo de Host de Conteúdo","Content Host Counts":"Contagem de Host de Conteúdo","Content Host Limit":"Limite de Host de Conteúdo","Content Host Properties":"Propriedades de Host de Conteúdo","Content Host Registration":"Registro de Host de Conteúdo","Content Host Status":"Status de Host de Conteúdo","Content Host:":"Host de Conteúdo:","Content Hosts":"Hosts de Conteúdo","Content Hosts for Activation Key:":"Hosts de Conteúdo para Chave de Ativação:","Content Hosts for:":"Hosts de Conteúdo para:","Content Hosts using Version {{ version.version }}":"Hosts de Conteúdo usando a Versão {{ version.version }}","Content Type":"Tipo de Conteúdo","Content View":"Visualização de Conteúdo","Content View Name":"Nome de visualização de conteúdo","Content View updated.":"Visualização de Conteúdo atualizada","Content View Version":"Versão de Visualização de Conteúdo","Content View:":"Visualização de Conteúdo:","Content Views":"Visualizações de Conteúdo","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Visualizações de Conteúdo <div>{{ library.counts.content_views || 0 }}</div>","Content Views for {{ contentView.name }}":"Visualizações de conteúdo para {{ contentView.name }}","Content Views for Composite Content View:":"Visualizações de Conteúdo para a Coleção de Visualização de Conteúdo:","Content Views for Deb:":"Exibições de conteúdo para depuração:","Content Views for File:":"Visualizações de conteúdo para arquivo:","Content Views for Puppet Module:":"Visualizações de Conteúdo para o Módulo Puppet:","Content Views that contain this Deb":"Exibições de conteúdo que contêm esta depuração","Content Views that contain this File":"Visualizações de conteúdo que contêm este arquivo","Content Views that contain this Puppet Module":"Visualizações de conteúdo que contêm este módulo Puppet","Context":"Conteúdo","Contract":"Contrato","Copy Activation Key":"Copiar Chave de Ativação","Copy Content View":"Copiar visualização de conteúdo","Copy Content View:":"Copiar visualização de conteúdo:","Copy Host Collection":"Copiar coleção de hosts","Cores per Socket":"Núcleos por Soquete","Create":"Criar","Create a copy of {{ activationKey.name }}":"Criar uma cópia de {{ activationKey.name }}","Create a copy of {{ contentView.name }}":"Criar uma cópia de {{ contentView.name }}","Create a copy of {{ hostCollection.name }}":"Criar uma cópia de {{ hostCollection.name }}","Create a rule using the add button above.":"Criar uma regra usando o botão de adição acima.","Create Activation Key":"Criar Chaves de Ativação","Create Content Credential":"Criar credencial de conteúdo","Create Content View":"Criar visualização de conteúdo ","Create Discovered Repositories":"Criar repositórios descobertos","Create Environment Path":"Criar caminho de ambiente","Create Host Collection":"Criar coleção de hosts","Create new view":"Criar nova visualização","Create New View":"Criar Nova Visualização","Create Product":"Criar produto","Create Selected":" Criar Selecionado","Create Status":"Criar status","Create Sync Plan":"Criar Plano de Sinc","Create view from existing views":"Criar visualizações a partir de visualizações existentes","Creating repository...":"Criando repositório...","Critical":"Crítico","Current Subscriptions for Activation Key:":"Subscrições atuais para Chave de Ativação:","Currently Selected Puppet Modules":"Módulos Puppet Selecionados Atualmente","Custom Depth":"Profundidade personalizada","Custom Depth (Currently %s)":"Profundidade personalizada (atualmente %s)","CVEs":"CVEs","daily":"por dia","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Diariamente em {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)","Date":"Data","Date Type":"Tipo de Data","deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"A geração de metadados de depuração foi iniciada em segundo plano. Clique <a href=\"{{ taskUrl() }}\">aqui</a> para monitorar o progresso.","deb Packages":"Pacotes de depuração","Deb Packages":"Pacotes de depuração","Deb:":"Depuração:","Debs":"Depurações","Default":"Padrão","Delete Hosts":"Apagar hosts","Delete Version {{ version.version }}":"Remover Versão {{ version.version }}","Deleted from %s":"Remover de %s","Deleting from %count environments.":"Removendo de %count ambientes.","Deleting from 1 environment.":"Removendo de 1 ambiente","Deletion from %s":"Remoção de %s","Dependencies":"Dependências","Description":"Descrição","Details":"Detalhes","Details for {{ contentView.name }}":"Detalhes de {{ contentView.name }}","Details for Activation Key:":"Detalhes para a Chave de Ativação:","Details for Content View:":"Detalhes para Visualização de Contéudo:","Details for Product:":"Detalhes para Produto:","Details for Repository:":"Detalhes do repositório:","Digest":"Digerir","Disable":"Desativar ","Disabled":"Desabilitado","Disabled (overridden)":"Desabilitado (substituído)","Discover":"Descobrir","Discovered Repository":"Repositório descoberto","Discovery failed. Error: %s":"Falha do Discovery. Erro: %s","Distribution":"Distribuição","Distribution Information":"Informações de Distribuição","Docker Repositories":"Repositórios do Docker","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Repositórios do Docker <div>{{ library.counts.docker_repositories || 0 }}</div>","Docker Repository Selection":"Seleção de repositórios do Docker","Done":"Concluído","Download Policy":"Política de Download","Edit":"Editar","Enable":"Habilitar","Enabled":"Habilitado","Enabled (overridden)":"Habilitado (substituído)","End Date":"Data Final","Enhancement":"Melhoria","Enter Package Group Name(s)...":"Insira Nome(s) de Grupo de Pacote...","Enter Package Name(s)...":"Insira Nome(s) de Pacote","Environment":"Ambiente","Environment saved":"Ambiente Salvo","Environments":"Ambientes","Environments List":"Lista de Ambientes","Equal To":"Igual a","Errata":"Erratas","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Erratas <div>{{ library.counts.errata.total || 0 }}</div>","Errata are automatically Applicable if they are Installable":"As erratas serão automaticamente aplicáveis se forem instaláveis","Errata Details":"Detalhes das Erratas","Errata Filter:":"Filtro das Erratas:","Errata for:":"Erratas para:","Errata ID":"ID de Erratas ","Errata Installation":"Instalação de Erratas","Errata successfully added.":"Erratas adicionadas com sucesso.","Errata successfully removed.":"Erratas removidas com sucesso.","Errata Task List":"Lista de Tarefas de Erratas","Errata Tasks":"Tarefas de Erratas","Errata Type":"Tipo de Errata","Errata:":"Erratas:","Erratum - by ID":"Errata - por ID","Erratum - Date and Type":"Errata - data e tipo","Erratum Date Range":"Intervalo de Datas de Errata","Error during upload:":"Erro ao carregar:","Event":"Evento","Exclude":"Remover","Exclude all RPMs with no errata.":"Remover todos os RPMs sem erratas. ","Existing Product":"Produto Existente","Expires":"Expira","Export":"Exportar","Exported content view":"Visualização de conteúdo exportada ","Family":"Família","File Information":"Informações do Arquivo ","File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"A remoção de arquivos foi iniciada em segundo plano. Clique <a href=\"{{ taskUrl() }}\">aqui</a> para monitorar o progresso.","File Repositories":"Repositórios de arquivos","File too large.":"Arquivo é muito grande.","File too large. Please use the CLI instead.":"Arquivo muito grande. Por favor use a CLI.","File:":"Arquivo:","Filename":"Nome de arquivo","Files":"Arquivos","Files in package {{ package.nvrea }}":"Arquivos no pacote {{ package.nvrea }}","Filter":"Filtro","Filter information for:":"Informações do filtro para:","Filter rule successfully removed.":"Regra de filtros removida com êxito.","Filter rule successfully updated.":"Regra de filtros atualizada com êxito.","Filter Saved":"Filtro salvo","Filter:":"Filtro:","Filter...":"Filtro...","Filters":"Filtros","Filters for Content View:":"Filtros para Visualização de Conteúdo","Filters successfully removed.":"Filtros removidos com sucesso.","Finished At":"Finalizado em","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Para sistemas operacionais mais antigos, como o Red Hat Enterprise Linux 5 ou CentOS 5, recomendamos o uso de sha1.","Force Promote?":"Forçar Promoção?","Force Puppet Environment":"Forçar ambiente puppet","GPG Key":"Chave GPG","Greater Than":"Maior que","Greater than version {{ rule.min_version }}":"Superior à versão {{ rule.min_version }}","Group":"Grupo","Group Install":"Instalação de Grupo","Group Remove":"Remoção de Grupo","Helper":"Assistente","here":"aqui","Hide affected Activation Keys":"Ocultar as Chaves de Ativação Afetadas","Hide affected Content Hosts":"Ocultar os Hosts de Conteúdo Afetados","History":"Histórico","History for Content View:":"Histórico para Visualização de Conteúdo:","Host %s has been deleted.":"O host %s foi excluído.","Host %s has been unregistered.":"O registro do host %s foi desfeito.","Host Collection Management":"Gerenciamento de Coleção de Host","Host Collection Membership":"Associação de Coleção do Host","Host Collection removed.":"Coleção de host removida.","Host Collection updated":"Coleção de host atualizada","Host Collection:":"Coleção de Host:","Host Collections":"Coleções de Host","Host Collections for:":"Coleções de Host para:","Host Count":"Contagem de Host","Host Group":"Grupo de Host","Host Limit":"Limite de Hosts ","Hostname":"Nome do host","Hosts":"Hosts","hourly":"por hora","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"A cada hora em {{ product.sync_plan.sync_date | date:'m' }} minutos e {{ product.sync_plan.sync_date | date:'s' }} segundos","HTTP Proxy":"Proxy HTTP","Id":"Id","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Caso você prefira mover partes destas Chaves de Ativação para visualizações de conteúdo diferentes ou Ambientes de Ciclo de Vida clique","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Caso você prefira mover partes destas Chaves de Ativação para visualizações de conteúdo diferentes ou Ambientes de Ciclo de Vida clique <a href=\"{{ activationKeyLink() }}\">aqui</a> para gerenciá-las individualmente. ","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Caso você prefira mover partes destes Hosts de Conteúdo para visualizações de conteúdo diferentes ou ambientes clique <a href=\"{{ contentHostsLink() }}\">aqui</a> para gerenciar esses Hosts de Conteúdo em massa.","Image":"Imagem","Immediate":"Imediato","Important":"Importante","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Para adicionar uma visualização de conteúdo a uma coleção de visualização você deve primeiro publicar uma versão inicial de visualização de conteúdo.","In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n or ask your admin for a certificate.":"Para navegar neste repositório, você deve <a ng-href=\"/organizations/{{ organization }}/edit\">fazer download do certificado</a>\n ou pedir um certificado ao administrador.","Include":"Incluir ","Include all RPMs with no errata.":"Incluir todos os RPMs sem errata.","Inclusion Type":"Tipo de Inclusão","Incremental update":"Atualização incremental","Incremental Update":"Atualização Incremental","Install":"Instalar","Install Selected":"Instalar Selecionados","Install the pre-built bootstrap RPM:":"Instalar RPM de bootstrap pré-compilado:","Installable":"Instaláveis","Installable Errata":"Errata Instalável","Installable Updates":"Atualizações incrementais","Installed":"Instalado","Installed On":"Instalado em","Installed Package":"Pacote instalado","Installed Packages":"Pacotes Instalados","Installed Products":"Produtos Instalados","Interfaces":"Interfaces","Interval":"Intervalo","IPv4 Address":"Endereço IPv4","IPv6 Address":"Endereço IPv6","Issued":"Emitido","Issued On":"Emitido em","Katello Agent":"Katello Agent","Label":"Rótulo","Last Checkin":"Último Checkin","Last Published":"Último Publicado","Last Puppet Report":"Último Relatório do Puppet","Last Sync":"Última Sinc","Last Updated On":"Atualizado pela última vez em","Latest (Currently %s)":"Mais recente (Atualmente %s)","Latest (Currently no version)":"Mais recente (atualmente sem versões)","Latest Only":"Somente mais recente","Less Than":"Menos que","Less than version {{ rule.max_version }}":"Inferior à versão {{ rule.max_version }}","Library":"Biblioteca","Library Repositories":"Repositórios da Biblioteca","Library Repositories that contain this Deb.":"Repositórios de biblioteca que contêm esta depuração.","Library Repositories that contain this File.":"Repositórios de biblioteca que contêm este arquivo.","Library Repositories that contain this Puppet Module.":"Repositórios de biblioteca que contêm este módulo Puppet.","Library Synced Content":"Conteúdo de Biblioteca Sincronizado ","License":"Licença","Lifecycle Environment":"Ambiente de Ciclo de Vida","Lifecycle Environment Paths":"Caminhos de Ambiente de Ciclo de Vida","Lifecycle Environments":"Ambientes de Ciclo de Vida","Limit":"Limite","Limit Repository Sets to only those available in this Activation Key's Lifecycle Environment":"Limitar os conjuntos de repositórios para apenas aqueles disponíveis neste ambiente de ciclo de vida da chave de ativação","Limit Repository Sets to only those available in this Host's Lifecycle Environment":"Limitar os conjuntos de repositórios para apenas aqueles disponíveis neste ambiente de ciclo de vida do host","Limit to environment":"Limitar para ambiente","Limit to Environment":"Limitar para ambiente","Limit:":"Limite:","List":"Lista","List/Remove":"Listar/Remover","Loading Environment Paths...":"Carregando Caminhos de Ambiente...","Loading...":"Carregando...","Loading...\"":"Carregando...\"","Manage deb Packages for Repository:":"Gerenciar pacotes de depuração para o repositório:","Manage Errata":"Administrar Erratas","Manage Files for Repository:":"Gerenciar arquivos do repositório:","Manage OSTree Branches for Repository:":"Gerenciar Ramificações OSTree para o Repositório:","Manage Packages":"Gerenciar Pacotes","Manage Packages for Repository:":"Gerenciar Pacotes para Repositório:","Manage Puppet Modules for {{ repository.name }}":"Gerenciar módulos Puppet do {{ repository.name }}","Manage Puppet Modules for Repository:":"Gerenciar Módulos Puppet para Repositório:","Manage Repository Sets":"Gerenciar conjuntos de repositórios","Manage Subscriptions":"Gerenciar assinaturas","Manage Sync Plan":"Gerenciar plano de sincronização","Manifest Lists":"Listas de manifestos","Manifest Type":"Tipo de manifesto","Many Content View actions are disabled while a version task is in progress.":"Muitas ações de visualização de conteúdo são desabilitadas quando uma tarefa de versão está em andamento.","Maximum Version":"Versão máxima","Minimum Version":"Versão mínima","Mirror on Sync":"Espelho em Sincronização","Model":"Modelo","Moderate":"Moderada","Module %s removed from Content View.":"Módulo %s removido da Visualização de Conteúdo.","Module Stream":"Fluxo do módulo","Module Streams":"Fluxos do módulo","More Details":"Mais detalhes","N/A":"Não está disponível","Name":"Nome","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"Nome do repositório upstream que você deseja sincronizar. Exemplo: 'busybox' ou 'fedora / ssh '. ","Networking":"Sistema de Rede","Never":"Nunca","Never synced":"Nunca sincronizado","New Activation Key":"Nova Chave de Ativação","New Environment":"Novo Ambiente","New Filter":"Novo Filtro","New Filter for Content View:":"Novo Filtro para Visualização de Conteúdo","New Name:":"Novo Nome:","New Product":"Novo Produto","New Repository":"Novo Repositório","New Sync Plan":"Novo Plano de Sincronização","New sync plan successfully created.":"Novo Plano de sinc criado com sucesso.","Next":"Próximo","Next Sync":"Próxima Sinc","No":"Não","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"Não há permissões para 'Editar' em algumas Chaves de Ativação naquele Ambiente de Ciclo de Vida.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"Não há permissões para 'Editar' em alguns Hosts de Conteúdo naquele Ambiente de Ciclo de Vida.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"Não há permissões para 'Promover/Remover' no Ambiente de Ciclo de Vida.","No activation keys are affected.":"Nenhuma chave de ativação foi afetada.","No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".":"Não há escolhas alternativas disponíveis da versão de lançamento. Os lançamentos são baseados no que está disponível na \"{{ host.content_facet_attributes.content_view.name }}\", <a href=\"/content_views\">visualização de conteúdo</a> selecionada em que este host de conteúdo está anexado para o <a href=\"/lifecycle_environments\">ambiente de ciclo de vida</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\" fornecido. ","No Content Hosts are affected.":"Nenhum Host de Conteúdo foi afetado.","No Content Hosts match this Erratum.":"Nenhum Host de Conteúdo corresponde a esta Errata.","No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first.":"Sem visualizações de conteúdo disponíveis para adicionar a {{ contentView.name }}. Primeiro, crie visualizações de conteúdo não compostas.","No Content Views available, please select another environment.":"Nenhuma Visualização de Conteúdo disponível, por favor selecione outro ambiente.","No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views.":"Nenhuma visualização de conteúdo pertence a {{ contentView.name }}. Use a guia de adição para adicionar visualizações de conteúdo.","No Content Views contain this Deb":"Nenhuma exibição de conteúdo contém esta depuração","No Content Views contain this File":"Nenhuma visualização de conteúdo contém este arquivo","No Content Views contain this Puppet Module":"Nenhuma visualização de conteúdo contém este módulo Puppet","No content views exist for {{selected.environment.name}}":"Nenhuma visualização de conteúdo existe para {{selected.environment.name}}","No Content Views match the search.":"Nenhuma visualização de conteúdo corresponde à pesquisa.","No discovered repositories.":"Nenhum repositório descoberto.","No Errata to display":"Nenhuma errata para exibir.","No Host Collections match your search.":"Nenhuma coleção de hosts corresponde à pesquisa.","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Nenhuma Coleção de Host para exibir, você pode adicionar Coleções de Host depois de selecionar 'Coleções de Host' sob 'Hosts' no menu principal.","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"Nenhuma Coleção de Host para exibir, você pode adicionar Coleções de Hosts depois de selecionar a aba 'Adicionar'.","No matching results.":"Nenhum sistema correspondente. ","No products are available to add to this Sync Plan.":"Nenhuma produto está está disponível para ser adicionado a este plano de sincronização.","No products are have been added to this Sync Plan.":"Nenhum produto foi adicionado a este plano de sincronização.","No puppet modules found":"Nenhum módulo Puppet encontrado","No releases exist in the Library.":"Não existe nenhuma versão na biblioteca.","No Repositories contain this Branch.":"Nenhum repositório contém esta ramificação.","No Repositories contain this Deb":"Nenhum repositório contém esta depuração","No Repositories contain this Erratum.":"Nenhum Repositório contém esta Errata.","No Repositories contain this File":"Nenhum repositório contém este arquivo","No Repositories contain this Package.":"Nenhum Repositório contém este Pacote.","No Repositories contain this Puppet Module":"Nenhum repositório contém este módulo Puppet","No repository sets provided through subscriptions.":"Nenhum grupo de repositórios fornecido pelas assinaturas.","No sync information available.":"Nenhuma informação de sincronização disponível.","No tasks exist for this resource.":"Nenhuma saída de tarefa para este recurso.","No versions found for {{ $stateParams.moduleName }}":"Nenhuma versão encontrada para {{ $stateParams.moduleName }}","None":"Nenhum","Not installed":"Não instalado","Not started":"Não iniciado","Not Synced":"Não foi Sincronizado","Not yet published":"Não publicado ainda","Number of CPUs":"Número de CPUs","Number of Repositories":"Número de Repositórios","On Demand":"Por Demanda","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"Algumas das erratas selecionadas não são instaláveis através das suas versões publicadas de Visualização de Conteúdo em execução nos hosts selecionados. As novas versões de Visualização de Cconteúdo (especificadas abaixo)\n serão criadas, o que tornará esta errata instalável no ambiente do host. Esta nova versão substituirá a versão atual no ambiente do ciclo de vida do seu \n host. Para instalar imediatamente estas erratas nos hosts, após a publicação, selecione a caixa abaixo.","One or more RPMs are not showing up in the local repository even though they exist in the upstream repository.":"Um ou mais RPMs não estão sendo exibidos no repositório local, apesar de eles saírem no repositório upstream.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"Exibir somente os hosts de conteúdo onde as erratas são atualmente instaláveis no ambiente do ciclo de vida do host.","Only show Errata that are Applicable to one or more Content Hosts":"Exibir apenas erratas que sejam aplicáveis a um ou mais hosts de conteúdo","Only show Errata that are Installable on one or more Content Hosts":"Exibir apenas erratas que sejam instaláveis em um ou mais hosts de conteúdo","Only show Packages that are Applicable to one or more Content Hosts":"Exibir apenas pacotes que sejam aplicáveis a um ou mais hosts de conteúdo","Only show Packages that are Upgradable on one or more Content Hosts":"Exibir apenas pacotes que podem ter upgrade em um ou mais hosts de conteúdo","Only show Subscriptions for products not already covered by a Subscription":"Exibir apenas assinaturas para produtos que ainda não sejam cobertos por uma assinatura","Only show Subscriptions which can be applied to products installed on this Host":"Exibir apenas assinaturas que possam ser aplicadas a produtos instalados neste host","Only show Subscriptions which can be attached to this Host":"Exibir apenas assinaturas que possam ser anexadas a este host","Only the Applications with a Helper can be restarted.":"Apenas os aplicativos com um assistente instalado podem ser reiniciados.","Operating System":"Sistema Operacional","Optimized Sync":"Sincronização otimizada","Organization":"Organização","Original Sync Date":"Data de Sinc original","OS":"SO","OSTree Branch metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"A geração de metadados da Ramificação OSTree foi iniciada em segundo plano. \nClique\n <a ng-href=\"{{ taskUrl() }}\">Aqui</a> para monitorar o progresso.","OSTree Branch:":"Ramificação OSTree:","OSTree Branches":"Ramificações OSTree","OSTree Content":"Conteúdo OSTree","OSTree Repositories":"Repositórios OSTree","OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>":"Repositórios do OSTree <div>{{ library.counts.ostree_repositories || 0 }}</div>","Override to Disabled":"Substituir para desabilitado","Override to Enabled":"Substituir para habilitado","Package":"Pacote","Package Actions":"Ações de Pacote","Package Filter:":"Filtro de Pacote:","Package Group":"Grupo de Pacote","Package Group Filter:":"Filtro de Grupo de Pacote:","Package Group successfully added.":"Grupo de Pacote adicionado com sucesso.","Package Group successfully removed.":"Grupo de Pacote removido com sucesso.","Package Groups":"Grupos de Pacote","Package Groups for Repository:":"Grupos de Pacotes para o Repositório:","Package Information":"Informações do pacote","Package Install":"Instalação de Pacote","Package Installation, Removal, and Update":"Instalação, Remoção e Atualização de Pacote","Package Remove":"Remoção de Pacote","Package successfully added.":"Pacote adicionado com sucesso","Package successfully removed.":"Pacote removido com sucesso.","Package successfully updated.":"Pacote atualizado com sucesso.","Package Update":"Atualização de Pacote","Package Updates":"Atualizações do pacote","Package:":"Pacote:","Package/Group Name":"Nome de Grupo/ Pacote","Packages":"Pacotes","Packages <div>{{ library.counts.packages || 0 }}</div>":"Pacotes <div>{{ library.counts.packages || 0 }}</div> ","Packages are automatically Applicable if they are Upgradable":"Os pacotes são automaticamente aplicáveis se puderem ter upgrade","Packages for:":"Pacotes para:","Parameters":"Parâmetros","Part of a manifest list":"Parte de uma lista de manifestos","Password":"Senha","Password of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"A senha do usuário do repositório upstream para autenticação. Deixe vazio se o repositório não exigir autenticação.","Paste contents of Content Credential":"Colar conteúdos da credencial de conteúdo","Path":"Caminho","Perform":"Desempenhar","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"Por favor selecione um Ambiente de Ciclo de Vida e Visualização de Conteúdo para mover as Chaves de Ativação afetadas para:","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"Por favor selecione um Ambiente de Ciclo de Vida e Visualização de Conteúdo para mover estes Host de Conteúdo para:","Please select a Lifecycle Environment.":"Por favor selecione um Ambiente de Ciclo de Vida.","Please select an environment.":"Por favor selecione um Ambiente.","Please select one from the list below and you will be redirected.":"Por favor, selecione uma organização da lista abaixo e você será redirecionado.","Plus %y more errors":"Mais %y outros erros ","Plus 1 more error":"Mais outro erro","Product":"Produto","Product Count":"Contagem de Produtos","Product Enhancement Advisory":"Aviso de Aprimoramentos de Produtos","Product information for:":"Informações de Produto para:","Product Management for Sync Plan:":"Gerenciamento de Produto para Plano de Sinc:","Product Name":"Nome do Produto","Product Options":"Opções do produto","Product Saved":"Produto Salvo","Product syncs has been initiated in the background. Click %s to monitor the progress.":"As sincronizações do produto foram iniciadas em segundo plano. Clique em %s para monitorar o progresso.","Products":"Produtos","Products <div>{{ library.counts.products || 0 }}</div>":"<div>{{ library.counts.products || 0 }}</div> Produtos ","Products for":"Produtos para","Products not covered":"Produtos não cobertos","Project Page":"Página do Projeto","Promote":"Promover","Promote Content View:":"Promover Visualização de Conteúdo:","Promote Version":"Promover Versão","Promote Version {{ version.version }}":"Promover Versão {{ version.version }}","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"Promover versão para {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"Promovido para %s","Promoting to %count environments.":"Promovendo para %count ambientes.","Promoting to 1 environment.":"Promovendo para 1 ambiente.","Promotion History":"Histórico de Promoção","Provides":"Fornece","Provisioning Details":"Provisionando Detalhes","Provisioning Host Details":"Provisionando Detalhes do Host","Publish Content View:":"Publicar Visualização de Conteúdo:","Publish New Version":"Publicar Nova Versão","Publish via HTTP":"Publicar via HTTP","Publish via HTTPS":"Publicar via HTTPS","Published":"Publicado","Published At":"Publicado em","Published new version":"Nova versão publicada","Published Repository Information":"Informação de Repositório Publicada","Publishing and promoting to %count environments.":"Publicando e promovendo para %count ambientes.","Publishing and promoting to 1 environment.":"Publicando e promovendo para 1 ambiente.","Puppet Environment":"Ambiente Puppet","Puppet module added to Content View":"Módulo Puppet adicionado à Visualização de Conteúdo","Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.","Puppet Module:":"Módulo Puppet:","Puppet Modules":"Módulos Puppet","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Módulos Puppet <div>{{ library.counts.puppet_modules || 0 }}</div> ","Puppet Modules for Content View:":"Módulos Puppet para a Visualização de Conteúdo:","Quantity":"Quantidade","RAM (GB)":"RAM (GB)","Range":"Classe","Reboot Suggested":"Reinicialização sugerida","Reboot Suggested?":"Reinicialização sugerida?","Recalculate\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>":"Recalcular\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>","Red Hat Repositories page":"Página de Repositórios da Red Hat","Red Hat Repositories page.":"Página de Repositórios da Red Hat.","Refresh Table":"Atualizar Tabela","Regenerate Repository Metadata":"Regenerar metadados de repositórios","Register a Content Host":"Registrar um Host de Conteúdo","Register Content Host":"Registrar Host de Conteúdo","Registered":"Registrado","Registered By":"Registrado por","Registered Through":"Registrado por meio de","Registry to Discover":"Registrar para descobrir","Registry URL":"URL de Registro","Release":"Lançamento","Release Version":"Versão de Lançamento","Release Version:":"Versão de lançamento:","Releases":"Versões","Remote execution plugin is required to be able to run any helpers.":"O plug-in de execução remota é necessário para executar assistentes.","Removal of selected repositories initiated successfully.":"Remoção dos repositórios selecionados iniciada com êxito. ","Remove":"Remover","Remove {{ contentView.name }}":"Remover {{ contentView.name }}","Remove Activation Key \"{{ activationKey.name }}\"?":"Remover a Chave de Ativação \"{{ activationKey.name }}\"?","Remove Content Credential":"Remover credencial de conteúdo","Remove Content Credential {{ contentCredential.name }}":"Remover credencial de conteúdo {{ contentCredential.name }}","Remove Content View":"Remover Visualização de Conteúdo","Remove Content Views":"Remover Visualizações de Conteúdo","Remove Environment":"Remover ambiente","Remove Errata":"Remover Erratas","Remove Files":"Remover arquivos","Remove From":"Remover de","Remove Host Collection \"{{ hostCollection.name }}\"?":"Remover Coleção de Host \"{{ hostCollection.name }}\"?","Remove Module":"Remover Módulo","Remove Package Group":"Remover Grupo de Pacote","Remove Packages":"Remover Pacotes","Remove Product":"Remover Produto","Remove Product \"{{ product.name }}\"?":"Remover o Produto \"{{ product.name }}\"?","Remove Puppet Modules":"Remover Módulos Puppet","Remove Repositories":"Remover Repositórios","Remove Repository":"Remover Repositório","Remove Repository \"{{ repository.name }}\"?":"Remover Repositório \"{{ repository.name }}\"?","Remove Rule":"Remover Regra","Remove Selected":"Remover Selecionado","Remove Successful.":"Remoção bem sucedida.","Remove Sync Plan":"Remover Plano de Sincronização","Remove Sync Plan \"{{ syncPlan.name }}\"?":"Remover Plano de Sincronização \"{{ syncPlan.name }}\"?","Remove Tags":"Remover tags","Remove Version":"Remover Versão","Remove Version Confirmation":"Remover Confirmação de Versão","Removed %x host collections from activation key \"%y\".":"%x coleções de host removidas da chave de ativação \"%y\".","Removed %x host collections from content host \"%y\".":" %x coleções de host removidas do host de conteúdo \"%y\".","Removed %x products from sync plan \"%y\".":"%x produtos removidos do plano de sincronização \"%y\".","Removing Repositories":"Removendo Repositórios","Repo Discovery":"Descoberta de Repositório","Repositories":"Repositórios","Repositories containing branch {{ branch.name }}":"Repositórios que contêm a ramificação {{ branch.name }}","Repositories containing Errata {{ errata.errata_id }}":"Repositórios contendo Errata {{ errata.errata_id }}","Repositories containing package {{ package.nvrea }}":"Repositórios contendo o pacote {{ package.nvrea }}","Repositories for":"Repositórios para","Repositories for Content View:":"Repositório para Visualização de Conteúdo:","Repositories for Deb:":"Repositórios para a deputação:","Repositories for Errata:":"Repositórios para Errata:","Repositories for File:":"Repositórios para o arquivo:","Repositories for Filter:":"Repositórios para Filtrar:","Repositories for Package:":"Repositórios para Pacote:","Repositories for Product:":"Repositórios para Produto:","Repositories for Puppet Module:":"Repositórios para Módulo Puppet:","Repositories to Create":"Repositórios para criar","Repository":"Repositório","Repository \"%s\" successfully deleted":"Repositório \"%s\" removido com êxito","Repository %s successfully created.":"Repositório %s criado com êxito.","Repository Count":"Contagem do Repositório","Repository created":"Repositório criado","Repository Discovery":"Descoberta de Repositório","Repository Label":"Nome do Repositório","Repository Name":"Nome de Repositório","Repository Options":"Opções de repositórios","Repository Path":"Caminho de repositórios","Repository Saved.":"Repositório Salvo.","Repository Selection":"Seleção de Repositório","Repository Sets":"Grupos de repositórios","Repository Sets settings saved successfully.":"Configurações de grupos de repositórios salvas com êxito.","Repository Type":"Tipo de repositório","Repository URL":"URL do Repositório","Repository:":"Repositório:","Republish Repository Metadata":"Republicar metadados de repositórios","Requires":"Requer","Reset to Default":"Redefinir para o padrão","Restart":"Reiniciar","Restart Selected":"Reiniciar selecionados","Restart Services on Content Host \"{{host.name}}\"?":"Reiniciar serviços no host de conteúdo \"{{host.name}}\"?","Restrict to architecture":"Restringir à arquitetura","Restrict to Architecture":"Restringir à arquitetura","Result":"Resultado","Role":"Função","RPM":"RPM","RPM Name":"Nome do RPM","rpm Package Groups":"Grupos de pacotes de RPM","rpm Packages":"Pacotes de RPM","RPMs":"RPMs","Run Auto-Attach":"Executar Anexação Automática","Run Repository Creation\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>":"Executar criação de repositórios\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>","Run Sync Plan":"Executar Plano de Sincronização","Save":"Salvar","Save Successful.":"Foi salvo com sucesso","Schema Version":"Versão do esquema","Schema Version 1":"Versão 1 do esquema","Schema Version 2":"Versão 2 do esquema","Security":"Segurança","Security Advisory":"Aviso de Segurança","Select":"Selecione","Select a Content Source:":"Selecionar uma Fonte de Conteúdo:","Select A New Puppet Module To Add":"Selecionar um Novo Módulo Puppet para Adicionar","Select a Version":"Selecionar uma Versão","Select Action":"Selecionar Ação","Select an Available Version of {{ $stateParams.moduleName }}":"Selecionar uma Versão Disponível de {{ $stateParams.moduleName }}","Select an Organization":"Selecione uma Organização.","Select Content View":"Selecionar Visualização de Conteúdo","Select Environment":"Selecionar ambiente","Select new version":"Selecionar nova versão","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"Selecionar os Ambientes de Ciclo de Vida de onde você deseja remover a Versão {{ version.version }}:","Select Version":"Selecionar Versão","Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\" or \"Background\" download policies will be synced.":"Selecionar \"Concluir sincronização\" fará com que apenas repositórios Yum do produto selecionado sejam sincronizados. Selecionar \"Validar conteúdo\" fará com que apenas repositórios Yum usando as políticas de download \"Imediato\" ou \"Segundo plano\" sejam sincronizados.","Selecting this option will result in contents that are no longer part of the upstream repository being removed during synchronization.":"A seleção desta opção resultará em conteúdos que não fazem mais parte do repositório upstream sendo removido durante a sincronização. ","Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification.":"Selecionar essa opção fará com que o Katello verifique se os certificados SSL da URL upstream estão assinados por um CA confiável. Desmarque se você não quiser essa verificação.","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"A seleção desta opção resultará na versão sendo completamente removida e não disponível para promoção. Para selecionar essa opção, a versão deve ser removida de todos os ambientes de ciclo de vida.","Serve via HTTP":"Veicular por HTTP","Service Level":"Nível de Serviço","Service Level (SLA)":"Nível de serviço (SLA)","Set Release Version":"Definir versão","Severity":"Gravidade","Show affected Activation Keys":"Exibir as Chaves de Ativação Afetadas","Show affected Content Hosts":"Exibir Hosts de Conteúdo Afetados","Show All":"Exibir Todos","Show all Repository Sets in Organization":"Exibir todos os grupos de repositórios na organização","Size":"Tamanho","Smart proxy currently syncing to your locations...":"Proxy inteligente atualmente sincronizando para seus locais...","Smart proxy is synchronized":"Proxy inteligente está sincronizado","Sockets":"Soquetes","Solution":"Solução","Some of the Errata shown below may not be installable as they are not in this Content Host's\n Content View and Lifecycle Environment. In order to apply such Errata an Incremental Update is required.":"Algumas das erratas exibidas abaixo podem não ser instaláveis pois, não estão neste Ambiente de Ciclo de Vida e Visualização de\n Conteúdo do Host de Conteúdo. Para aplicar tal errata, é necessário uma Atualização Incremental.","Something went wrong when retrieving the resource.":"Algo saiu errado durante a restauração do recurso. ","Something went wrong when saving the resource.":"Ocorreu um erro ao salvar o recurso.","Source":"Fonte","Source RPM":"RPM de origem","Source RPMs":"RPMs de origem","SSL CA Cert":"Certificado SSL CA","SSL Certificate":"Certificado SSL","SSL Client Cert":"Certificado de cliente SSL","SSL Client Key":"Chave do cliente SSL","Standard sync, optimized for speed by bypassing any unneeded steps.":"Sincronização padrão, otimizada para velocidade, ignorando velocidades desnecessárias.","Start Date":"Data de Início","Start Time":"Hora inicial","Started At":"Iniciou em","Starting":"Iniciando","Starts":"Começa","State":"Estado","Status":"Status","Stream":"Fluxo","Subscription Details":"Detalhes de Subscrição","Subscription Management":"Gerenciamento de subscrições","Subscription Status":"Status de Subscrição","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"registro do subscription-manager --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Subscrições","Subscriptions for Activation Key:":"Subscrições para Chave de Ativação:","Subscriptions for Content Host:":"Subscrições para o Host de Conteúdo:","Subscriptions for:":"Subscrições para:","Success!":"Sucesso!","Successfully added %s subscriptions.":"%s subscrições adicionadas com sucessso. ","Successfully deleted %cv version %ver.":"%c versão %ver removida com sucesso.","Successfully initiated deletion of %cv version %ver.":"Remoção da %cv versão %ver iniciada com sucesso.","Successfully initiated promotion of %cv version %ver to %env.":"Promoção da %cv versão %ver para %env iniciada com sucesso.","Successfully initiated removal of %cv version %ver.":"Remoção da %cv versão %ver iniciada com sucesso.","Successfully promoted %cv version %ver to %env":"Promoção da %cv versão %ver para %env realizada com sucesso","Successfully published %cv version %ver and promoted to Library":"Publicação da %cv versão %ver e promoção para a Biblioteca realizada com sucesso","Successfully removed %cv version %ver from environments: %env":"Remoção da %cv versão %ver de ambientes %env realizada com sucesso","Successfully removed %s items.":"%s itens removidos com sucesso.","Successfully removed %s subscriptions.":"%s subscrições removidas com sucesso.","Successfully removed 1 item.":"1 Item removido com sucesso.","Successfully scheduled an update of all packages":"Uma atualização para todos os pacotes foi agendada com êxito","Successfully scheduled package installation":"Instalação de pacote agendada com êxito","Successfully scheduled package removal":"Remoção de pacote agendada com êxito","Successfully scheduled package update":"Atualização de pacote agendada com êxito","Successfully updated subscriptions.":"Subscrições atualizadas com sucesso.","Successfully uploaded content:":"Conteúdo carregado com êxito:","Summary":"Sumário","Support Level":"Nível de Suporte","Sync":"Sinc","Sync Enabled":"Sincronização Habilitada","Sync even if the upstream metadata appears to have no change. This option is only relevant for yum repositories and will take longer than an optimized sync. Choose this option if:":"Sincronizar mesmo que os metadados de upstream pareçam não ter alterações. Essa opção é relevante somente para repositórios Yum e levará mais tempo que uma sincronização otimizada. Escolha essa opção se:","Sync Interval":"Intervalo de Sincronização","Sync Now":"Sinc Agora","Sync Plan":"Plano de Sinc","Sync Plan %s has been deleted.":"Plano de Sinc %s removido.","Sync Plan created and assigned to product.":"Plano de sincronização criado e atribuído ao produto.","Sync Plan Saved":"Plano de Sinc Salvo","Sync Plan:":"Plano de Sinc:","Sync Plans":"Planos de Sincronização","Sync Selected":"Sincronização selecionada","Sync Settings":"Configurações de sincronização","Sync State":"Estado de Sinc","Sync Status":"Status de Sincronização","Synced manually, no interval set.":"Sincronizado manualmente, nenhum intervalo foi definido.","Synchronization is about to start...":"A sincronização está prestes a começar...","Synchronization is being cancelled...":"A sincronização está sendo cancelada...","System Purpose":"Objetivo do sistema","Tags":"Tags","Task Details":"Detalhes de Tarefa","Tasks":"Tarefas","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"As Chaves de Ativação listadas abaixo estão usando atualmente esta Versão de Visualização de Conteúdo. Antes de remover a versão, você deve mover essas Chaves de Ativação para um Ambiente de Ciclo de Vida onde essa versão não está sendo utilizada.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"O arquivo desta versão será removido. Esta versão não estará disponível depois que a remoção for concluída.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"O arquivo desta versão não será removido. Esta versão ainda estará disponível para promoção para um Ambiente de Ciclo de vida.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Os hosts de conteúdo listados abaixo estão utilizando atualmente esta Versão de Visualização de Conteúdo. Antes de remover a versão, você deve mover esses hosts de conteúdo para um ambiente onde essa versão não está sendo utilizada.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"A Visualização de Conteúdo ou o Ambiente de Ciclo de Vida precisa ser atualizado para disponibilizar erratas a estes hosts.","The following actions can be performed on content hosts in this host collection:":"As seguintes ações podem ser realizadas nos hosts de conteúdo nesta coleção de host:","The host has not reported any applicable packages for upgrade.":"O host não relatou pacotes aplicáveis para upgrade.","The host has not reported any installed packages, registering with subscription-manager should cause these to be reported.":"O host não informou nenhum pacote instalado, o registro com o subscription-manager deve gerar a notificação deles. ","The page you are attempting to access requires selecting a specific organization.":"A página que você está tentando acessar requer a seleção de uma organização específica.","The selected environment contains no Content Views, please select a different environment.":"O ambiente selecionado não contém visualizações de conteúdo, por favor selecione um outro ambiente.","The time the sync should happen in your current time zone.":"A hora de sincronização deve estar no seu fuso horário atual.","There are {{ errataCount }} total Errata in this organization but none match the above filters.":"Exitem {{ errataCount }} erratas no total nesta organização, mas nenhuma corresponde aos filtros acima. ","There are {{ packageCount }} total Packages in this organization but none match the above filters.":"Há {{ packageCount }} pacotes nesta organização, mas nenhum corresponde aos filtros acima.","There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"No momento, não há repositórios do Docker associados a essa visualização de conteúdo. Você pode adicionar alguns clicando na guia \"Adicionar\" acima.","There are currently no Docker Repositories to add to this Content View,":"No momento, não há repositórios do Docker para adicionar a essa visualização de conteúdo.","There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"No momento, não há repositórios de arquivos associados a essa visualização de conteúdo, você pode adicionar","There are currently no File Repositories to add to this Content View,":"No momento, não há repositórios de arquivos para adicionar a esta visualização de conteúdo.","There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"No momento, não há repositórios do OSTree associados a esta visualização de conteúdo. Você pode adicionar alguns clicando na guia \"Adicionar\" acima.","There are currently no OSTree Repositories to add to this Content View,":"No momento, não há repositórios do OSTree associados a esta visualização de conteúdo.","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Não há repositórios no momento associados à Visualização de Conteúdo, você pode adicionar alguns clicando em \"Adicionar\" na aba acima.","There are currently no repositories to add to this Content View,":"Não existem repositórios no momento para serem adicionados a esta Visualização de Conteúdo,","There are no Content Views in this Environment.":"Não existem Visualizações de Conteúdo neste Ambiente.","There are no Content Views that match the criteria.":"Não existem Visualizações de Conteúdo que correspondem aos critérios.","There are no Errata associated with this Content Host to display.":"Não existem Erratas associadas ao Host de Conteúdo para serem exibidas.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"Não existem Erratas nesta organização. Crie um ou mais Produtos com Erratas para visualizar as Erratas nesta página.","There are no Errata to display.":"Não existem Erratas para serem exibidas.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Nao existe uma Coleção de Host disponível. Você pode adicionar novas Coleções de Host após selecionar 'Coleções de Host' sob 'Hosts' no menu principal.","There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page.":"Não existem pacotes nesta organização. Crie um ou mais produtos com pacotes para visualizá-los nesta página.","There are no Sync Plans available. You can create new Sync Plans after selecting 'Sync Plans' under 'Hosts' in main menu.":"Não há planos de sincronização disponíveis. Você pode criar novos planos de sincronização selecionando \"Planos de sincronização\" em \"Hosts\" no menu principal.","There are no Traces to display.":"Não há rastreamentos para exibir.","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"Existe atualmente uma tarefa de Atualização Adicional em andamento. Esta atualização deve ser concluída antes das atualizações existentes serem aplicadas.","There is currently no history associated with this Content View.":"No momento, não há histórico associado a esta visualização de conteúdo.","This action will affect only those Content Hosts that require a change.\n If the Content Host does not have the selected Subscription no action will take place.":"Esta ação afetará somente os hosts de conteúdo que exigem a alteração.\n Se o host de conteúdo não tiver a assinatura selecionada, nenhuma ação será realizada.","This activation key is not associated with any content hosts.":"Esta chave de ativação não está associada a nenhum host de conteúdo.","This activation key may be used during system registration. For example:":"Esta chave de ativação pode ser utilizada durante o registro do sistema. Por exemplo:","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Esta Visualização de Conteúdo não possui nenhuma versão, crie sua primeira Versão de Visualização de Conteúdo utilizando o botão \"Publicar Nova Versão\" à direita.","This filter applies only to a subset of repositories in the content view.":"Este filtro se aplica somente a um subconjunto de repositórios na visualização de conteúdo.","This filter applies to all repositories in the content view (current and future).":"Este filtro se aplica a todos os repositórios na visualização de conteúdo (atuais e futuros)","This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n Change the setting \"Delete Host upon Unregister\" to false on the <a href=\"/settings\">settings page</a> to prevent this.":"Esta operação também poderá remover os recursos vinculados ao host, como as máquinas virtuais e registros DNS.\n Altere a configuração \"Excluir host ao cancelar registro\" para falso na <a href=\"/settings\">página de configurações</a> para impedir isso.","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Esta Versão não pode ser removida de alguns Ambientes de Ciclo de Vida devido a uma das razões abaixo:","This Version is not associated with any Lifecycle Environments.":"Esta Versão não está associada a nenhum Ambiente de Ciclo de Vida.","This version will be removed from:":"Esta versão será removida de:","Title":"Título","to manage them individually.":"para gerencia-las individualmente","To register a content host to this server, follow these steps.":"Para registrar um host de conteúdo neeste servidor, siga os passos abaixo.","Toggle Dropdown":"Ativar menu suspenso","Topic":"Tópico","Traces":"Rastreamentos","Traces for:":"Rastreamentos para:","Type":"Tipo","Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}":"Tipo: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}","Unable to determine version":"Não é possível determinar a versão","Unauthenticated Pull":"Transferência não autenticada","Unknown":"Desconhecido ","Unlimited Content Hosts:":"Hosts de Conteúdo Ilimitados:","Unlimited Hosts":"Hosts ilimitados","Unregister Host":"Cancelar registro de Host","Unregister Host \"{{host.name}}\"?":"Desfazer o registro do host \"{{host.name}}\"?","Unregister Options:":"Opções para desfazer o registro:","Unregister the host as a subscription consumer. Provisioning and configuration information is preserved.":"Cancelar registro do host como um consumidor de subscrição. As informações de provisionamento e configuração foram preservadas.","Unsupported Type!":"Tipo não suportado!","Update":"Atualizar","Update All Packages":"Atualizar todos os pacotes","Update Packages":"Atualizar Pacotes","Update Repositories":"Atualizar Repositórios","Update Sync Plan":"Atualizar Plano de Sinc","Updated":"Atualizado","Updated errata filter -":"Filtro de errata atualizado - ","Updated On":"Atualizado(a) em","Upgradable":"Pode ter upgrade","Upgradable For":"Pode ter upgrade para","Upgradable Package":"Pacote que pode ter upgrade","Upgrade Selected":"Upgrade selecionado","Upload":"Carregar","Upload Content Credential file":"Fazer upload do arquivo de credencial de conteúdo","Upload File":"Carregar Arquivo","Upload Package":"Carregar Pacote","Upload Puppet Module":"Carregar Módulo Puppet","Uploading...":"Carregando...","Upstream Image Name":"Nome da imagem de upstream","Upstream Password":"Senha de upstream","Upstream Repository Name":"Nome de Repositório Upstream","Upstream Sync Policy":"Política de sincronização de upstream","Upstream URL":"URL upstream","Upstream Username":"Nome de usuário de upstream","Url":"Url","URL of the registry you want to sync. Example: https://registry-1.docker.io/":"URL do registro que você deseja sincronizar. Exemplo: https://registry-1.docker.io/","URL to Discover":"URL para descobrir","Usage Type":"Tipo de uso","Used as":"Usado como","User":"Usuário","Username":"Nome de usuário","Username of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"Nome de usuário do usuário do repositório de upstream para autenticação. Deixe vazio se o repositório não exigir autenticação.","Validate Content Sync":"Validar sincronização de conteúdo","Variant":"Variante ","Verify SSL":"Verificar o SSL","Version":"Versão","Version {{ rule.version }}":"Versão {{ rule.version }}","Version Deletion":"Remoção de Versão","Version Details":"Detalhes da Versão","Version:":"Versão:","Versions":"Versões","Versions for Content View:":"Versões para Visualização de Conteúdo:","Versions for Puppet Module:":"Versões para Módulo Puppet:","via Katello agent":"via Katello agent","via Katello Agent":"via Katello Agent","via remote execution":"via execução remota","via remote execution - customize first":"via execução remota - personalizar primeiro","Virtual Guest":"Sistema Virtual","Virtual Guests":"Convidados Virtuais","Virtual Host":"Host Virtual","weekly":"por semana","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"Semanalmente em {{ product.sync_plan.sync_date | date:'EEEE' }} à(s) {{ product.sync_plan.sync_date | date:'mediumTime' }} (Hora do Servidor)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Quando a anexação automática está desabilitada, o registro de sistemas é anexado a todas as subscrições associadas.","When validating content, repositories using the \"On Demand\" download policy will download all packages within the repository.":"Ao validar conteúdo, os repositórios que usam a política de download \"Sob demanda\" farão o download de todos os pacotes no repositório.","Working":"Funcionando","Yes":"Sim","You cannot remove these repositories because they belong to a Red Hat product.":"Você não pode remover estes repositórios porque eles pertencem a um produto da Red Hat.","You cannot remove these repositories because you do not have permission.":"Você não pode remover estes repositórios porque você não tem permissão.","You cannot remove this product because it is a Red Hat product.":"Você não pode remover este produto porque é um produto da Red Hat.","You cannot remove this product because it was published to a content view.":"Você não pode remover este produto porque ele foi publicado para uma visualização de conteúdo.","You cannot remove this product because you do not have permission.":"Você não pode remover este produto porque você não possui permissão.","You cannot remove this repository because it is a Red Hat repository.":"Você não pode remover este repositório porque é um repositório da Red Hat.","You cannot remove this repository because it was published to a content view.":"Você não pode remover este repositório porque ele foi publicado para uma visualização de conteúdo.","You cannot remove this repository because you do not have permission.":"Você não pode remover este repositório porque você não possui permissão.","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":" No momento você não tem nenhuma Chave de Ativação, você pode adicionar Chaves de Ativação utilizando o botão à direita.","You currently don't have any Content Credential, you can add Content Credentials using the button on the right.":" No momento, você não tem credenciais de conteúdo. Você pode adicionar credenciais de conteúdo usando o botão do lado direito.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"No momento você não tem nenhum Host de Conteúdo, você pode criar novos Hosts de Conteúdo selecionando Host de Conteúdo através do menu principal e, depois, clicando no botão à direita.","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"No momento você não tem nenhum Host de Conteúdo, você pode registrar um utilizando o botão à direita e seguindo as instruções.","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"No momento você não tem nenhuma Visualização de Conteúdo. Pode-se adicionar uma Visualização de Conteúdo utilizando o botão à direita.","You currently don't have any Debs.":"No momento, você não tem dupurações.","You currently don't have any Files.":"No momento, você não tem arquivos.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"Você não possui atualmente nenhum Filtro incluso nesta Visualização de Conteúdo, você pode adicionar um novo Filtro utilizando o botão à direita.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"No momento você não tem nenhuma Coleção de Host, você pode adicionar Coleções de Host utilizando o botão à direita.","You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.":"No momento, você não tem nenhum host neste grupo de hosts, você pode adicionar Hosts de Conteúdo depois de selecionar a aba 'Adicionar'.","You currently don't have any OSTree Branches.":"No momento, você não tem ramificações OSTree.","You currently don't have any Products associated with this Content Credential.":"No momento, você não tem produtos associados a essa credencial de conteúdo.","You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu":"No momento, você não tem nenhum produto para subscrição, você pode adicionar Produtos depois de selecionar 'Produtos' sob 'Conteúdo' no menu principal.","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"No momento você não possui nenhum produto <span bst-feature-flag=\"custom_products\">, você pode adicionar produtos usando o botão à direita</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"No momento você não possui nenhum Módulo Puppet incluído nesta Visualização de Conteúdo, você pode adicionar Módulos Puppet utilizando o botão à direita.","You currently don't have any Puppet Modules.":"Você não possui nenhum Módulo Puppet atualmente.","You currently don't have any Repositories associated with this Content Credential.":"No momento, você não tem repositórios associados a essa credencial de conteúdo.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"No momento você não tem nenhum Repositório incluído neste produto, você pode adicionar Repositórios usando o botão à direita.","You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab.":"No momento, você não tem nenhuma subscrição associada a esta Chave de Ativação, você pode adicionar subscrições depois de selecionar a aba 'Adicionar'.","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":" No momento você não tem nenhum plano de sincronização. Pode-se criar um Plano de Sincronização usando o botão do lado direito.","You do not have any Installed Products":"Você não possui nenhum Produto Instalado","You must select a content view in order to save your environment.":"Você precisa selecionar uma visualização de conteúdo para salvar seu ambiente.","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"Você precisa selecionar uma nova visualização de conteúdo antes que sua mudança de ambiente seja salva. Use o botão cancelar na seleção de visualização de conteúdo para reverter sua seleção de ambiente.","You must select at least one Content Host in order to apply Errata.":"Você precisa selecionar ao menos um Host de Conteúdo para aplicar a Errata.","You must select at least one Errata to apply.":"Você deve selecionar ao menos uma errata para aplicação. ","You must select at least one repository.":"Você precisa selecionar ao menos um repositório.","Your search returned zero Activation Keys.":"Sua pesquisa retornou zero chaves de ativação.","Your search returned zero Content Credential.":"Sua pesquisa retornou zero credenciais de conteúdo.","Your search returned zero Content Hosts.":"Sua pesquisa retornou zero hosts de conteúdo.","Your search returned zero Content View.":"Sua pesquisa retornou zero visualizações de conteúdo.","Your search returned zero Content Views":"Sua pesquisa retornou zero visualizações de conteúdo","Your search returned zero Content Views.":"Sua pesquisa retornou zero visualizações de conteúdo.","Your search returned zero Debs.":"Sua pesquisa retornou zero depurações.","Your search returned zero Errata.":"Sua pesquisa retornou zero erratas.","Your search returned zero Erratum.":"Sua pesquisa retornou zero erratas.","Your search returned zero Files.":"Sua pesquisa retornou zero arquivos.","Your search returned zero Filters.":"Sua pesquisa retornou zero filtros.","Your search returned zero Host Collections.":"Sua pesquisa retornou zero coleções de host.","Your search returned zero Hosts.":"Sua pesquisa retornou zero hosts.","Your search returned zero Lifecycle Environments.":"Sua pesquisa retornou zero ambientes de ciclo de vida.","Your search returned zero Packages.":"Sua pesquisa retornou zero pacotes.","Your search returned zero Products.":"Sua pesquisa retornou zero produtos.","Your search returned zero Puppet Modules.":"Sua pesquisa retornou zero módulos Puppet.","Your search returned zero Repositories":"Sua pesquisa retornou zero repositórios","Your search returned zero Repositories.":"Sua pesquisa retornou zero repositórios.","Your search returned zero repository sets.":"Sua pesquisa retornou zero conjuntos de repositórios.","Your search returned zero Repository Sets.":"Sua pesquisa retornou zero conjuntos de repositórios.","Your search returned zero results.":"Sua pesquisa retornou zero resultados.","Your search returned zero Subscriptions.":"Sua pesquisa retornou zero assinaturas.","Your search returned zero Sync Plans.":"Sua pesquisa retornou zero planos de sincronização.","Your search returned zero Traces.":"Sua pesquisa retornou zero rastreamentos.","Your search returned zero versions for {{ $stateParams.moduleName }}":"Sua pesquisa retornou zero versões do {{ $stateParams.moduleName }}","Yum Content":"Conteúdo do Yum","Yum Metadata Checksum":"Soma de Verificação de Metadados do Yum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Geração de metadados do Yum foi iniciada em segundo plano. Clique <a href=\"{{ taskUrl() }}\">Aqui</a> para monitorar o progresso.","Yum Repositories":"Repositórios do Yum","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Repositórios do Yum <div>{{ library.counts.yum_repositories || 0 }}</div>"});
10
10
  gettextCatalog.setStrings('ru', {"- Date and Type":"- Дата и тип","-- select an interval --":"-- выберите интервал --","(Not all Activation Keys editable )":"(не все ключи активации могут быть изменены)","(Not all Content Hosts editable )":"(не все узлы могут быть изменены)","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} не может быть удалено, так как его версии опубликованы в окружениях жизненного цикла.\nПрежде чем удалить представление, необходимо удалить все его версии из окружений. ","{{ errata.hosts_applicable_count || 0 }} Applicable,":"применимо {{ errata.hosts_applicable_count || 0 }},","{{ errata.hosts_available_count || 0 }} Installable":"можно установить — {{ errata.hosts_available_count || 0 }}","{{ repository.content_counts.erratum }} Errata":"Исправления: {{ repository.content_counts.erratum }}","{{ repository.content_counts.erratum || 0 }} Errata":"Исправления: {{ repository.content_counts.erratum || 0 }}","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"Модули Puppet: {{ repository.content_counts.puppet_module || 0 }}","{{ repository.content_counts.rpm }} Packages":"Пакеты: {{ repository.content_counts.rpm }}","{{ repository.content_counts.rpm || 0 }} Packages":"Пакеты: {{ repository.content_counts.rpm || 0 }}","{{ repository.last_sync_words }} ago":"{{ repository.last_sync_words }} назад","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"Ключи (всего {{ totalActivationKeyCount() }}) будут перемещены в {{ deleteOptions.activationKeys.contentView.name }} в {{ deleteOptions.activationKeys.environment.name }}","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"Узлы (всего {{ totalHostCount() }}) будут перемещены в {{ deleteOptions.contentHosts.contentView.name }} в {{ deleteOptions.contentHosts.environment.name }}","{{ type.display }}":"{{ type.display }}","{{ version.errata_counts.total }} Errata":"исправления: {{ version.errata_counts.total }}","{{ version.package_count }} Packages":"пакеты: {{ version.package_count }}","{{ version.puppet_module_count }} Puppet Modules":"модули Puppet: {{ version.puppet_module_count }}","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* Отмеченные версии представлений получены из составных представлений. Ниже перечислены их компоненты, нуждающиеся в обновлении.","%(consumed)s out of %(quantity)s":"%(consumed)s из %(quantity)s","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n Отмеченные окружения рекомендованы к использованию.","A composite view contains other content views.":"Составное представление включает в себя другие представления.","Account":"Учетная запись","Action":"Команда","Action Type":"Тип действия","Actions":"Действия","Activation Key Content":"Содержимое","Activation Key removed.":"Ключ активации был удален.","Activation Key updated":"Ключ активации обновлен","Activation Keys":"Ключи активации","Activation Keys using Version {{ version.version }}":"Ключи активации с версией {{ version.version }}","Add":"Добавить","Add Content Views":"Добавить","Add Errata":"Добавить исправления","Add New Environment":"Добавить окружение","Add New Module":"Добавить модуль","Add Package Group":"Добавить","Add Repositories":"Добавить","Add Selected":"Добавить выбранные","add some repositories.":"Добавьте репозитории","Add To":"Добавить в","Added %x host collections to activation key \"%y\".":"Коллекции добавлены в ключ «%y» (всего: %x)","Added %x host collections to content host \"%y\".":"Добавлены коллекции для узла «%y» (всего: %x) ","Added %x products to sync plan \"%y\".":"Выбранные продукты были добавлены в план синхронизации «%y» (всего: %x)","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"Окружение будет добавлено после «{{ priorEnvironment.name }}»","Advisory":"Рекомендация","Affected Activation Keys":"Затронутые ключи активации","Affected Content Hosts":"Узлы содержимого","Affected repositories have been updated.":"Репозитории были обновлены.","All Content Views":"Все представления","All Products":"Все продукты","All Repositories":"Все репозитории","All Versions":"все версии","An error occurred removing the content hosts.":"Ошибка при удалении узлов:","An error occurred removing the subscriptions.":"Ошибка при удалении подписок.","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"Произошла ошибка при попытке автоматического выбора подписок. Подробную информацию можно найти в журнале.","Applicable":"Применимо","Applicable Errata":"Применимые исправления","Apply":"Применить","Apply {{ errata.errata_id }}":"Установить {{ errata.errata_id }}","Apply Errata":"Применить исправления","Apply Errata to Content Hosts":"Применить исправления к узлам содержимого","Apply Errata to Content Hosts immediately after publishing.":"Применить исправления сразу после публикации.","Apply Selected":"Применить выбранные","Apply to Content Hosts":"Применить к узлам содержимого","Apply to Hosts":"Применить к узлам","Applying":"Установка...","Arch":"Архитектура","Archived Copy":"Архивная копия","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"Вы действительно хотите добавить выбранное число узлов ({{ table.numSelected }}) в коллекцию?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"Связать выбранные узлы (всего {{ table.numSelected }}) с представлением {{ selected.contentView.name }} в окружении {{ selected.environment.name }}?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Установить {{ content.content }} в выбранном числе систем ({{ getSelectedSystemIds().length }})?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"Вы действительно хотите удалить {{ content.content }} из {{ getSelectedSystemIds().length }} систем(ы)?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"Вы действительно хотите удалить ключ «{{ activationKey.name }}»?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"Удалить коллекцию «{{ hostCollection.name }}»?","Are you sure you want to remove product \"{{ product.name }}\"?":"Удалить продукт «{{ product.name }}}»?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"Удалить репозиторий «{{ repository.name }}»?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"Удалить план синхронизации «{{ syncPlan.name }}»?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"Удалить выбранные узлы (всего {{ table.numSelected }}) из коллекций?","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"Вы действительно хотите обновить {{ content.content }} в {{ getSelectedSystemIds().length }} систем(е)(ах)?","Assign":"Выбрать","Associations":"Связи","At least one Errata needs to be selected to Apply.":"Необходимо выбрать хотя бы одно исправление.","Attached":"Добавлено","Author":"Автор","Auto-Attach":"Автоматический выбор","Automatic":"Автоматически","Back":"Назад","Back To Errata List":"Назад к списку исправлений","Basic Information":"Общая информация","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"Ниже перечислены наборы репозиториев, предлагаемые подписками этого узла. Чтобы включить дополнительное содержимое, см.","Bug Fix":"Исправление","Bug Fix Advisory":"Исправление ошибки","Bugfix":"Исправление ошибок","Cancel":"Отмена","Capacity":"Вместимость","Change assigned Lifecycle Environment or Content View":"Изменение окружений жизненного цикла и представлений","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"Для того чтобы изменить исходные настройки узлов, зарегистрированных с помощью этого ключа активации, необходимо, чтобы на этих узлах был установлен subscription-manager версии 1.10 или новее.","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"Для изменения исходных параметров необходимо, чтобы на узле был установлен subscription-manager версии 1.10 или новее.","Checksum":"Контрольная сумма","Choose a lifecycle environment from the available promotion paths.":"Выберите окружение.","Click here to check the status of the task.":"Нажмите здесь, чтобы проверить статус задачи.","Click here to select Errata for an Incremental Update.":"Нажмите здесь, чтобы выбрать исправление для инкрементного обновления.","Close":"Закрыть","Completely remove version?":"Удалить версию безвозвратно","Components":"Компоненты","Composite":"Составное","Composite View":"Составное представление","Composite View?":"Составное представление","Confirm":"Подтвердить","Confirm Remove":"Подтвердить удаление","Content":"Содержимое","Content Counts":"Содержимое","Content Host":"Узел","Content Host Bulk Content":"Массовое управление содержимым узлов","Content Host Bulk Subscriptions":"Массовое управление подписками узлов","Content Host Content":"Содержимое","Content Host Counts":"Узлы","Content Host Limit":"Максимальное число узлов","Content Host Properties":"Свойства узла","Content Host Registration":"Регистрация узла","Content Host Status":"Состояние узла","Content Hosts":"Узлы содержимого","Content Hosts using Version {{ version.version }}":"Узлы с версией {{ version.version }}","Content Type":"Тип содержимого","Content View":"Представление","Content View Name":"Имя представления","Content View updated.":"Представление обновлено.","Content View Version":"Версия представления","Content Views":"Представления","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"Представления <div>{{ library.counts.content_views || 0 }}</div>","Contract":"Контракт","Copy Activation Key":"Копировать ключ","Cores per Socket":"Ядер на сокет","Create":"Создать","Create new view":"Создать представление","Create New View":"Создать представление","Create Selected":"Создать выбранные","Create Sync Plan":"Создать план","Create view from existing views":"Создать представление на основе существующего","Critical":"Критично","Currently Selected Puppet Modules":"Выбранные модули Puppet","CVEs":"CVE","daily":"каждый день","Date":"Дата","Default":"По умолчанию","Delete Hosts":"Удалить узлы","Delete Version {{ version.version }}":"Удалить версию {{ version.version }}","Deleted from %s":"Удалено из %s","Deleting from %count environments.":"Удаление из %count окружений(я)","Deleting from 1 environment.":"Удаление из одного окружения...","Deletion from %s":"Удаление из %s","Description":"Описание","Details":"Свойства","Disable":"Отключить","Discover":"Поиск","Docker Repositories":"Репозитории Docker","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Репозитории Docker <div>{{ library.counts.docker_repositories || 0 }}</div>","Edit":"Изменить","Enable":"Включить","End Date":"Срок действия","Enhancement":"Расширенные функции","Enter Package Group Name(s)...":"Введите названия групп пакетов...","Enter Package Name(s)...":"Введите названия пакетов...","Environment":"Окружение","Environment saved":"Окружение сохранено","Environments":"Окружения","Environments List":"Список окружений","Equal To":"равно","Errata":"Исправления","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"Исправления <div>{{ library.counts.errata.total || 0 }}</div>","Errata Details":"Свойства исправления","Errata ID":"Идентификатор","Errata Installation":"Установка исправлений","Errata successfully added.":"Исправления успешно добавлены.","Errata successfully removed.":"Исправления успешно удалены.","Errata Task List":"Список задач исправлений","Errata Tasks":"Задачи исправлений","Errata Type":"Тип","Erratum - by ID":"Исправление (идентификатор)","Erratum Date Range":"Диапазон","Event":"Событие","Exclude":"Исключить","Exclude all RPMs with no errata.":"Исключить RPM без исправлений","Existing Product":"Существующий продукт","Expires":"Истекает","File too large. Please use the CLI instead.":"Слишком большой файл. Используйте инструменты командной строки.","Filter":"Фильтр","Filter Saved":"Фильтр сохранен","Filter...":"Фильтр...","Filters":"Фильтры","Filters successfully removed.":"Фильтры удалены.","Finished At":"Завершилось","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"Для более ранних операционных систем (таких как Red Hat Enterprise Linux 5 и CentOS 5) рекомендуется использовать SHA1. ","Force Promote?":"Перенести принудительно","GPG Key":"Ключ GPG","Greater Than":"больше чем","Group Install":"Установка группы","Group Remove":"Удаление группы","here":"здесь","Hide affected Activation Keys":"Скрыть затронутые ключи активации","Hide affected Content Hosts":"Скрыть затронутые узлы","History":"Журнал","Host Collection Management":"Управление коллекциями","Host Collection Membership":"Изменение состава коллекции","Host Collection removed.":"Коллекция удалена.","Host Collection updated":"Коллекция обновлена.","Host Collections":"Коллекции узлов","Host Count":"Число узлов","Host Group":"Группа узлов","Hostname":"Имя узла","hourly":"каждый час","Id":"Идентификатор","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"Чтобы по отдельности переместить несколько ключей активации в другое окружение или представление, нажмите","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"Чтобы по отдельности переместить ключи активации в другое окружение или представление, нажмите <a href=\"{{ activationKeyLink() }}\">здесь</a>","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"Чтобы по отдельности переместить узлы в разные окружения или представления, нажмите <a href=\"{{ contentHostsLink() }}\">здесь</a>","Image":"Образ","Important":"Важно","In order to add a content view to a composite view you must first publish an initial version of the content view.":"Чтобы добавить представления, сначала надо опубликовать исходную версию представления.","Include":"Включить","Include all RPMs with no errata.":"Включить пакеты без исправлений","Inclusion Type":"Вид включения","Incremental Update":"Инкрементное обновление","Install":"Установить","Install Selected":"Установить выбранные","Installable":"Доступно для установки","Installable Errata":"Исправления для установки","Installed":"Установлено","Installed Package":"Установлено","Installed Packages":"Установленные пакеты","Installed Products":"Установленные","Interfaces":"Интерфейсы","Interval":"Интервал","IPv4 Address":"Адрес IPv4","IPv6 Address":"Адрес IPv6","Issued":"Опубликовано","Katello Agent":"Агент Katello","Label":"Метка","Last Checkin":"Последний контакт","Last Published":"Опубликовано","Last Puppet Report":"Последний отчет Puppet","Last Sync":"Последняя синхронизация","Last Updated On":"Обновлено","Latest (Currently %s)":"Последняя версия (%s)","Less Than":"меньше чем","Library":"Library","Library Synced Content":"Синхронизировано с Library","Lifecycle Environment Paths":"Схемы окружений жизненного цикла","Lifecycle Environments":"Окружения жизненного цикла","Limit":"Ограничение","List/Remove":"Список","Loading Environment Paths...":"Загрузка схемы окружения...","Loading...":"Загрузка...","Manage Packages":"Управление пакетами","Model":"Модель","Moderate":"Средний","Module %s removed from Content View.":"%s удален из представления.","More Details":"Подробнее","N/A":"нет","Name":"Название","Networking":"Сеть","Never synced":"Не синхронизировалось","New Activation Key":"Новый ключ активации","New Environment":"Новое окружение","New Filter":"Новый фильтр","New Product":"Новый продукт","New Repository":"Новый репозиторий","New Sync Plan":"Новый план","New sync plan successfully created.":"План синхронизации успешно создан.","Next":"Далее","Next Sync":"Следующая синхронизация","No":"Нет","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"Для некоторых ключей в этом окружении не настроены разрешения редактирования.","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"Для некоторых узлов в этом окружении не настроены полномочия редактирования.","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"Нет полномочий для переноса и удаления объектов из этого окружения.","No activation keys are affected.":"Нет изменений ключей.","No Content Hosts are affected.":"Нет изменений узлов.","No Content Hosts match this Erratum.":"Нет узлов, соответствующих этому исправлению.","No Content Views available, please select another environment.":"Нет представлений. Выберите другое окружение.","No content views exist for {{selected.environment.name}}":"Нет представлений для {{selected.environment.name}}","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Нет коллекций. Чтобы добавить коллекцию узлов, в главном меню выберите «Узлы» - «Коллекции».","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"Нет коллекций. Чтобы добавить коллекцию узлов, перейдите на вкладку «Добавить».","No Repositories contain this Erratum.":"Нет репозиториев с этим исправлением.","None":"Нет","Not installed":"Не установлено","Not Synced":"Не синхронизирован","Not yet published":"Нет","Number of CPUs":"Процессоры","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"Некоторые исправления не могут быть установлены в рамках уже опубликованных версий представления на выбранных узлах. \n Для этого будут созданы новые версии (см. ниже), которые заменят существующие версии в окружении жизненного цикла. \n Чтобы установить исправления сразу после публикации версии, установите флажок ниже.","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"Показать только те узлы, в окружении жизненного цикла которых есть готовые к установке исправления","Operating System":"Операционная система","Organization":"Организация","Original Sync Date":"Первая синхронизация","OS":"ОС","Package":"Пакет","Package Actions":"Операции над пакетами","Package Group":"Группа пакетов","Package Group successfully added.":"Группа добавлена.","Package Group successfully removed.":"Группа удалена.","Package Groups":"Группы пакетов","Package Install":"Установка пакета","Package Installation, Removal, and Update":"Установка, обновление и удаление пакетов","Package Remove":"Удаление пакета","Package successfully added.":"Пакет добавлен.","Package successfully removed.":"Пакет удален.","Package successfully updated.":"Пакет обновлен.","Package Update":"Обновление пакетов","Package/Group Name":"Пакет/группа","Packages":"Пакеты","Packages <div>{{ library.counts.packages || 0 }}</div>":"Пакеты <div>{{ library.counts.packages || 0 }}</div>","Parameters":"Параметры","Password":"Пароль","Perform":"Выполнить","Please select a Lifecycle Environment.":"Выберите окружение жизненного цикла","Please select an environment.":"Выберите окружение","Please select one from the list below and you will be redirected.":"Чтобы перейти на страницу, выберите организацию из списка.","Product":"Продукт","Product Count":"Число продуктов","Product Enhancement Advisory":"Дополнение","Product Name":"Имя продукта","Product Saved":"Продукт сохранен","Products":"Продукты","Products <div>{{ library.counts.products || 0 }}</div>":"Продукты <div>{{ library.counts.products || 0 }}</div>","Promote":"Продвижение","Promote Version":"Перенести","Promote Version {{ version.version }}":"Перенос версии {{ version.version }}","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"Перенести версию в {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"Перенесено в %s","Promoting to %count environments.":"Перенос в несколько окружений (всего %count)...","Promoting to 1 environment.":"Перенос в одно окружение...","Promotion History":"Журнал переносов","Provisioning Details":"Подготовка","Provisioning Host Details":"Свойства подготовки узла","Publish New Version":"Опубликовать версию","Publish via HTTP":"Доступ HTTP","Publish via HTTPS":"Доступ HTTPS","Published":"Опубликовано","Published At":"Опубликовано","Published new version":"Опубликована новая версия","Published Repository Information":"Публикация репозитория","Publishing and promoting to %count environments.":"Публикация и перенос в %count окружения(й).","Publishing and promoting to 1 environment.":"Публикация и добавление в одно окружение.","Puppet Environment":"Окружение Puppet","Puppet module added to Content View":"Модуль Puppet добавлен в представление","Puppet Modules":"Модули Puppet","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Модули Puppet <div>{{ library.counts.puppet_modules || 0 }}</div>","Quantity":"Количество","RAM (GB)":"ОЗУ (ГБ)","Range":"диапазон","Reboot Suggested":"Рекомендуется перезагрузить","Reboot Suggested?":"Рекомендуется перезагрузить","Red Hat Repositories page":"репозитории Red Hat","Red Hat Repositories page.":"репозитории Red Hat.","Refresh Table":"Обновить таблицу","Register a Content Host":"Регистрация узла","Register Content Host":"Зарегистрировать узел","Registered":"Зарегистрирован","Registered By":"Регистрация:","Registry URL":"Адрес реестра","Release":"Релиз","Release Version":"Версия релиза","Removal of selected repositories initiated successfully.":"Операция удаления выбранных репозиториев успешно инициирована.","Remove":"Удалить","Remove Activation Key \"{{ activationKey.name }}\"?":"Удалить ключ «{{ activationKey.name }}»?","Remove Content View":"Удалить представление","Remove Content Views":"Удалить представления","Remove Errata":"Удалить","Remove From":"Удалить из","Remove Host Collection \"{{ hostCollection.name }}\"?":"Удалить коллекцию «{{ hostCollection.name }}»?","Remove Module":"Удалить модуль","Remove Package Group":"Удалить","Remove Packages":"Удалить пакеты","Remove Product":"Удалить продукт","Remove Product \"{{ product.name }}\"?":"Удалить продукт «{{ product.name }}}»?","Remove Puppet Modules":"Удалить модули Puppet","Remove Repositories":"Удалить репозитории","Remove Repository":"Удалить","Remove Repository \"{{ repository.name }}\"?":"Удалить репозиторий «{{ repository.name }}»?","Remove Selected":"Удалить выбранные","Remove Successful.":"Удаление успешно.","Remove Sync Plan":"Удалить план","Remove Sync Plan \"{{ syncPlan.name }}\"?":"Удалить план синхронизации «{{ syncPlan.name }}»?","Remove Version":"Удалить версию","Remove Version Confirmation":"Подтверждение удаления версии","Removed %x host collections from activation key \"%y\".":"Коллекции удалены из ключа активации «%y» (всего %x)","Removed %x host collections from content host \"%y\".":"Выбранные коллекции узла «%y» удалены (всего %x)","Removed %x products from sync plan \"%y\".":"Продукты удалены из плана синхронизации «%y» (всего %x)","Removing Repositories":"Удаление репозиториев...","Repo Discovery":"Поиск репозиториев","Repositories":"Репозитории","Repositories containing Errata {{ errata.errata_id }}":"Репозитории с {{ errata.errata_id }}","Repository":"Репозиторий","Repository \"%s\" successfully deleted":"Репозиторий «%s» был удален.","Repository %s successfully created.":"Репозиторий %s создан.","Repository Count":"Число репозиториев","Repository Discovery":"Поиск репозиториев","Repository Name":"Имя репозитория","Repository Saved.":"Репозиторий сохранен.","Repository Selection":"Выбор репозиториев","Result":"Результат","Role":"Роль","RPM":"RPM","RPM Name":"Название RPM","RPMs":"RPM","Run Auto-Attach":"Назначить автоматически","Save Successful.":" Сохранено.","Security":"Безопасность","Security Advisory":"Рекомендация безопасности","Select A New Puppet Module To Add":"Выберите модуль Puppet","Select a Version":"Выберите версию","Select an Available Version of {{ $stateParams.moduleName }}":"Выберите версию {{ $stateParams.moduleName }}","Select an Organization":"Выберите организацию","Select new version":"Выбрать другую версию","Select Version":"Выбрать версию","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"Установите флажок, чтобы полностью удалить версию. Прежде чем это сделать, удалите версию из всех окружений.","Service Level":"Уровень обслуживания","Severity":"Степень","Show affected Activation Keys":"Показать затронутые ключи активации","Show affected Content Hosts":"Показать затронутые узлы","Sockets":"Сокеты","Solution":"Решение","Start Date":"Дата начала","Start Time":"Время начала","Started At":"Началось","Starting":"Начало","Starts":"Начало","State":"Состояние","Status":"Статус","Subscription Details":"Подписка","Subscription Status":"Состояние","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"Подписки","Successfully added %s subscriptions.":"Добавлено подписок: %s","Successfully deleted %cv version %ver.":"Версия %cv %ver была удалена.","Successfully initiated deletion of %cv version %ver.":"Удаление версии %cv %ver успешно инициировано.","Successfully initiated promotion of %cv version %ver to %env.":"Перенос версии %cv %ver в окружение %env успешно инициирован.","Successfully initiated removal of %cv version %ver.":"Удаление версии %cv %ver успешно инициировано.","Successfully promoted %cv version %ver to %env":"Версия %cv %ver перенесена в %env.","Successfully published %cv version %ver and promoted to Library":"Версия %cv %ver опубликована в Library.","Successfully removed %s items.":"Удалено элементов: %s","Successfully removed %s subscriptions.":"Удалено подписок: %s","Successfully removed 1 item.":"Удален один элемент.","Successfully updated subscriptions.":"Подписки обновлены.","Summary":"Краткая информация","Support Level":"Уровень поддержки","Sync Enabled":"Синхронизация включена","Sync Interval":"Интервал","Sync Now":"Синхронизировать","Sync Plan":"План синхронизации","Sync Plan %s has been deleted.":"План %s удален.","Sync Plan Saved":"План синхронизации сохранен.","Sync Plans":"План синхронизации","Sync State":"Состояние синхронизации","Sync Status":"Статус синхронизации","Synced manually, no interval set.":"Вручную. Интервал не задан.","Tags":"Метки","Task Details":"Описание задачи","Tasks":"Задачи","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"Ниже перечислены ключи активации, использующие эту версию представления. Прежде чем удалить версию, перенесите ключи в окружение с другой версией.","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"После удаления архива версия будет недоступна.","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"Архив не будет удален. Версия все так же будет доступна для продвижения в другие окружения.","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"Ниже перечислены узлы, использующие эту версию представления. Прежде чем удалить версию, следует их перенести в окружение с другой версией.","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"Чтобы эти узлы могли получать исправления, необходимо обновить представление или окружение.","The page you are attempting to access requires selecting a specific organization.":"Для доступа к этой странице надо выбрать организацию.","The selected environment contains no Content Views, please select a different environment.":"Выбранное окружение не содержит представлений. Выберите другое окружение.","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"Чтобы добавить репозиторий, перейдите на вкладку «Добавить».","There are currently no repositories to add to this Content View,":"Нет репозиториев для этого представления.","There are no Content Views in this Environment.":"В окружении нет представлений.","There are no Content Views that match the criteria.":"Нет представлений, отвечающих условиям поиска.","There are no Errata associated with this Content Host to display.":"Нет исправлений для этого узла.","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"Нет исправлений. Вы можете создать продукт с исправлениями для того, чтобы они появились на этой странице.","There are no Errata to display.":"Нет исправлений.","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"Нет коллекций узлов. Чтобы создать коллекцию, в главном меню выберите «Узлы» - «Коллекции».","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"В настоящий момент выполняется инкрементное обновление. Дождитесь его завершения.","This activation key is not associated with any content hosts.":"Этот ключ активации не связан ни с одним узлом.","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"Это представление еще не публиковалось. Нажмите «Опубликовать версию».","This filter applies only to a subset of repositories in the content view.":"Применить фильтр к избранным репозиториям","This filter applies to all repositories in the content view (current and future).":"Применить фильтр ко всем репозиториям в представлении (настоящим и будущим)","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"Версия не может быть удалена из некоторых окружений. Причины перечислены ниже.","This Version is not associated with any Lifecycle Environments.":"Эта версия не сопоставлена окружениям.","Title":"Название","to manage them individually.":".","To register a content host to this server, follow these steps.":"Чтобы зарегистрировать узел содержимого на этом сервере, выполните следующие действия.","Topic":"Аннотация","Type":"Тип","Unknown":"Неизвестно","Update":"Обновить","Update Repositories":"Обновить репозитории","Update Sync Plan":"Обновить план синхронизации","Updated":"Обновлено","Updated errata filter -":"Фильтр обновлен:","Upload":"Добавить","Upload Package":"Добавить пакет","Upload Puppet Module":"Добавить модуль Puppet","Uploading...":"Отправляется...","Upstream Repository Name":"Имя основного репозитория","User":"Пользователь","Username":"Имя","Version":"Версия","Version Deletion":"Удаление версии","Version Details":"Сведения о версии","Versions":"Версия","Virtual Guests":"Виртуальные гости","Virtual Host":"Виртуальный узел","weekly":"каждую неделю","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"Если автоматический выбор отключен, при регистрации системы будут выбраны все настроенные подписки","Working":"Обработка","Yes":"Да","You cannot remove these repositories because they belong to a Red Hat product.":"Репозитории принадлежат Red Hat и не могут быть удалены.","You cannot remove these repositories because you do not have permission.":"Недостаточно полномочий для удаления этих репозиториев","You cannot remove this product because it is a Red Hat product.":"Продукт Red Hat не может быть удален.","You cannot remove this product because it was published to a content view.":"Продукт опубликован в представлении и не может быть удален.","You cannot remove this product because you do not have permission.":"Недостаточно полномочий для удаления этого продукта.","You cannot remove this repository because it is a Red Hat repository.":"Репозиторий Red Hat не может быть удален.","You cannot remove this repository because it was published to a content view.":"Репозиторий опубликован в представлении и не может быть удален.","You cannot remove this repository because you do not have permission.":"Недостаточно полномочий для удаления этого репозитория.","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"Нет ключей активации. Чтобы добавить ключ, нажмите кнопку в правой части окна.","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"Нет узлов содержимого. Чтобы добавить узел, перейдите на страницу «Узлы» - «Узлы содержимого».","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"Нет узлов. Чтобы зарегистрировать узел, нажмите кнопку в правой части окна.","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"Нет представлений. Чтобы создать представление, нажмите кнопку в правой части окна.","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"Нет фильтров. Чтобы добавить фильтр, нажмите кнопку в правой части окна.","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"Нет коллекций узлов. Чтобы добавить коллекцию, нажмите кнопку в правой части окна.","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"Нет продуктов<span bst-feature-flag=\"custom_products\">. Чтобы их добавить, нажмите кнопку в правой части окна</span>.","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"В этом представлении нет модулей Puppet. Чтобы их добавить, нажмите кнопку в правой части окна.","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"Нет репозиториев. Чтобы их добавить, нажмите кнопку в правой части окна.","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"Нет плана синхронизации. Чтобы его настроить, нажмите кнопку в правой части окна.","You do not have any Installed Products":"Нет установленных продуктов","You must select a content view in order to save your environment.":"Чтобы сохранить окружение, выберите представление.","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"Прежде чем изменить окружение, выберите новое представление. Чтобы отменить выбор окружения, нажмите кнопку отмены.","You must select at least one Content Host in order to apply Errata.":"Выберите узел, чтобы применить исправления.","You must select at least one Errata to apply.":"Выберите исправления для установки.","You must select at least one repository.":"Необходимо выбрать репозиторий.","Yum Content":"Содержимое Yum","Yum Metadata Checksum":"Контрольная сумма метаданных Yum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"Метаданные yum будут созданы в фоновом режиме. Нажмите <a href=\"{{ taskUrl() }}\">здесь</a> для наблюдением за ходом выполнения.","Yum Repositories":"Репозитории Yum","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Репозитории Yum <div>{{ library.counts.yum_repositories || 0 }}</div>"});
11
11
  gettextCatalog.setStrings('zh_CN', {"- Date and Type":"- 日期和类型","-- select an interval --":"-- 选择间隔 --","(Not all Activation Keys editable )":"(不是所有激活码都可以编辑)","(Not all Content Hosts editable )":"(不是所有内容主机都可以编辑)","{{ 'Add Selected' | translate }}":"{{ 'Add Selected' | translate }}","{{ componentContentView.puppet_modules.length || 0 }} Puppet Modules":"{{ componentContentView.puppet_modules.length || 0 }} Puppet 模块","{{ componentContentView.repositories.length || 0 }} Repositories":"{{ componentContentView.repositories.length || 0 }} 存储库","{{ contentCredential.name }}":"{{ contentCredential.name }}","{{ contentView.name }}":"{{ contentView.name }}","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"无法删除 {{ contentView.name }},因为在生命周期环境中仍有一个或多个内容视图版本。\n 删除内容视图前,必须将所有内容视图版本从其生命周期中删除。","{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet Modules":"{{ contentViewComponent.content_view_version.puppet_module_count || 0 }} Puppet 模块","{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories":"{{ contentViewComponent.content_view_version.repositories.length || 0 }} 存储库","{{ deb.name }}":"{{ deb.name }}","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} 可应用,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} 可安装","{{ errata.title }}":"{{ errata.title }}","{{ file.name }}":"{{ file.name }}","{{ filter.inclusion | filterType }} Tag":"{{ filter.inclusion | filterType }} 标签","{{ host.name }}":"{{ host.name }}","{{ host.subscription_facet_attributes.user.login }}":"{{ host.subscription_facet_attributes.user.login }}","{{ installedPackageCount }} Host(s)":"{{ installedPackageCount }} 主机","{{ package.hosts_applicable_count }} Host(s)":"{{ package.hosts_applicable_count }} 主机","{{ package.hosts_applicable_count || 0 }} Applicable,":"{{ package.hosts_applicable_count || 0 }} 可应用,","{{ package.hosts_available_count }} Host(s)":"{{ package.hosts_available_count }} 主机","{{ package.hosts_available_count || 0 }} Upgradable":"{{ package.hosts_available_count || 0 }} 可升级","{{ package.human_readable_size }} ({{ package.size }} Bytes)":"{{ package.human_readable_size }} ({{ package.size }} 字节)","{{ product.active_task_count }}":"{{ product.active_task_count }}","{{ product.name }}":"{{ product.name }}","{{ puppetModule.name }}":"{{ puppetModule.name }}","{{ repository.content_counts.deb }} deb Packages":"{{ repository.content_counts.deb }} deb 软件包","{{ repository.content_counts.deb || 0 }} deb Packages":"{{ repository.content_counts.deb || 0 }} deb 软件包","{{ repository.content_counts.docker_manifest }} Container Image Manifests":"{{ repository.content_counts.docker_manifest }} 容器镜像清单","{{ repository.content_counts.docker_manifest || 0 }} Container Image Manifests":"{{ repository.content_counts.docker_manifest || 0 }} 容器镜像清单","{{ repository.content_counts.docker_manifest_list }} Container Image Manifest Lists":"{{ repository.content_counts.docker_manifest_list }} 容器镜像清单列表","{{ repository.content_counts.docker_manifest_list || 0 }} Container Image Manifest Lists":"{{ repository.content_counts.docker_manifest_list || 0 }} 容器镜像清单列表","{{ repository.content_counts.docker_tag }} Container Image Tags":"{{ repository.content_counts.docker_tag }} 容器镜像标签","{{ repository.content_counts.docker_tag || 0 }} Container Image Tags":"{{ repository.content_counts.docker_tag || 0 }} 容器镜像标签","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} 勘误","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} 勘误","{{ repository.content_counts.file || 0 }} Files":"{{ repository.content_counts.file || 0 }} 文件","{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches":"{{ repository.content_counts.ostree_branch || 0 }} OSTree 分支","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} Puppet 模块","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} 软件包","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} 软件包","{{ repository.content_counts.srpm }} Source RPMs":"{{ repository.content_counts.srpm }} 源 RPM","{{ repository.last_sync_words }} ago":"{{ repository.last_sync_words }} 前","{{ repository.name }}":"{{ repository.name }}","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"会将 {{ totalActivationKeyCount() }} 激活码移动到 {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"会将 {{ totalHostCount() }} 主机内容移动到 {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}","{{ type.display }}":"{{ type.display }}","{{ version.deb_count }} deb Packages":"{{ version.deb_count }} deb 软件包","{{ version.docker_manifest_count }} Container Image Manifests":"{{ version.docker_manifest_count }} 容器镜像清单","{{ version.docker_manifest_list_count }} Container Image Manifest Lists":"{{ version.docker_manifest_list_count }} 容器镜像清单列表","{{ version.docker_tag_count }} Container Image Tags":"{{ version.docker_tag_count }} 容器镜像标签","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} 勘误","{{ version.file_count }} Files":"{{ version.file_count }} 文件","{{ version.ostree_branch_count }} OSTree Branches":"{{ version.ostree_branch_count }} OSTree 分支","{{ version.package_count }} Packages":"{{ version.package_count }} 软件包","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} Puppet 模块","{{ version.srpm_count }} Source RPMs":"{{ version.srpm_count }} 源 RPM","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"*这些标记的内容视图版本来自综合内容视图。下面列出了这些版本需要更新的组件。","%(consumed)s out of %(quantity)s":"%(quantity)s 中的 %(consumed)s","%count environment(s) can be synchronized: %envs":"可同步 %count 环境:%envs","<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>":"<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>","<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>":"<a ui-sref=\"content-view.version.details({versionId: version.id})\">版本 {{ version.version }}</a>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n 建议推广加星的环境。","<i class=\"fa fa-warning inline-icon\"></i>\n This Host is not currently registered with subscription-manager. Click <a ui-sref=\"content-hosts.register\">here</a> for registration information.":"<i class=\"fa fa-warning inline-icon\"></i>\n 这台主机目前尚未使用 subscription-manager 注册。点击 <a ui-sref=\"content-hosts.register\">这里</a> 查看注册信息。","<span translate=\"\">\n If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n <span translate=\"\">to manage them individually.</span>":"<span translate=\"\">\n 如果要将这些激活码的部分移动到内容视图或生命周期环境中,请点击\n </span>\n <a ui-sref=\"activation-keys\" translate=\"\">这里</a>\n <span translate=\"\">对其进行单独管理。</span>","1 repository sync in progress.":"1 储存库同步正在进行。","1 successfully synced repository.":"1 成功同步的储存库。","A composite view contains other content views.":"包含其他内容视图的综合视图","A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n It can be promoted to other environments from the Versions tab of this Content View.":"将创建 {{ contentView.name }} 的新版本,并推广至 Library 环境。\n 可在这个内容视图的版本标签中将其推广至其他环境。","A newer version is available: {{ contentViewComponent.content_view.latest_version }}":"有更新版本可用:{{ contentViewComponent.content_view.latest_version }}","A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>":"已在后台启用同步,<a href=\"/foreman_tasks/tasks/{{ task.id }}\">点击查看详情</a>","Account":"帐户","Action":"操作","Action Type":"操作类型","Actions":"操作","Activation Key":"激活码","Activation Key Content":"激活码内容","Activation Key removed.":"已删除激活码。","Activation Key updated":"已更新激活码","Activation Key:":"激活码:","Activation Keys":"激活码","Activation Keys using Version {{ version.version }}":"使用版本 {{ version.version }} 的激活码","Active Tasks":"活动任务","Add":"添加","Add Content Hosts to:":"将内容主机添加到:","Add Content Views":"添加内容视图","Add Content Views to {{ contentView.name }}":"添加内容视图至 {{ contentView.name }}","Add Errata":"添加勘误","Add New Container Image Tag Filter":"添加新的容器镜像标签过滤器","Add New Environment":"添加新环境","Add New Module":"添加新模块","Add New Yum Filter":"添加新的 Yum 过滤器","Add ons":"附加组件","Add Package Group":"添加软件包组","Add Repositories":"添加库","Add Rule":"添加规则","Add Selected":"添加选定内容","add some repositories.":"添加一些库。","Add Subscriptions for Activation Key:":"为激活码添加订阅: ","Add Subscriptions for Content Host:":"为内容主机添加订阅:","Add To":"添加至","Added %x host collections to activation key \"%y\".":"在激活码 \"%y\" 中添加 %x 主机集合。","Added %x host collections to content host \"%y\".":"在内容主机 \"%y\" 中添加 %x 主机集合。","Added %x products to sync plan \"%y\".":"在同步计划 \"%y\" 中添加 %x 产品。","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"在 \"{{ priorEnvironment.name }}\" 结尾添加生命周期环境","Advanced Sync":"高级同步","Advisory":"公告","Affected Activation Keys":"受影响的激活码","Affected Content Hosts":"受影响的内容主机","Affected Hosts":"受影响的主机","Affected Repositories":"受影响的库","Affected repositories have been updated.":"已更新受影响的库","All Content Views":"所有内容视图","All History":"全部历史记录","All Products":"全部产品","All Repositories":"所有库","All Versions":"所有版本","Always Use Latest (Currently %s)":"始终使用最新版本(当前为 %s)","Always Use Latest (Currently no versions)":"始终使用最新版本(当前无版本)","An error occured: %s":"出错:%s","An error occurred initiating the sync:":"开始同步时出错:","An error occurred removing the Activation Key:":"删除激活码时出错:","An error occurred removing the content hosts.":"删除内容主机时出错:","An error occurred removing the environment:":"删除环境时出错:","An error occurred removing the Host Collection:":"删除主机集合时出错:","An error occurred removing the subscriptions.":"删除订阅时出错:","An error occurred saving the Activation Key:":"保存激活码时出错:","An error occurred saving the Content Host:":"保存内容主机时出错:","An error occurred saving the Environment:":"保存环境时出错:","An error occurred saving the Filter:":"保存过滤器时出错:","An error occurred saving the Host Collection:":"保存主机集合时出错:","An error occurred saving the Product:":"保存产品时出错:","An error occurred saving the Repository:":"保存库时出错:","An error occurred saving the Sync Plan:":"保存产同步计划时出错:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"尝试自动附加订阅时出错。请查看日志了解具体情况。","An error occurred updating the Content View:":"更新内容视图时出错:","An error occurred updating the sync plan:":"更新同步计划时出错:","An error occurred while creating the Content Credential:":"创建内容凭证时出错:","An error occurred while creating the Product: %s":"创建产品时出错:%s","An error occurred:":"出错:","Ansible Collections":"Ansible 系列","Applicable":"可用","Applicable Content Hosts":"适用的内容主机","Applicable Errata":"可用勘误","Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\".":"只适用于综合视图。创建组件内容视图的新版本时自动发布综合视图。另请注意,只有当组件标记为“最近”时才会发生自动发布。","Applicable Packages":"适用的软件包","Applicable To":"适用于","Applicable to Host":"适用于主机","Application":"应用程序","Apply":"应用","Apply {{ errata.errata_id }}":"应用 {{ errata.errata_id }}","Apply {{ errata.errata_id }} to {{ contentHostIds.length }} Content Host(s)?":"是否在 {{ contentHostIds.length }} 内容主机中应用 {{ errata.errata_id }}?","Apply {{ errata.errata_id }} to all Content Host(s)?":"是否对所有内容主机应用 {{ errata.errata_id }}?","Apply {{ errataIds.length }} Errata to {{ contentHostIds.length }} Content Host(s)?":"是否在 {{ contentHostIds.length }} 内容主机中应用 {{ errataIds.length }}?","Apply {{ errataIds.length }} Errata to all Content Host(s)?":"是否对所有内容主机应用 {{ errataIds.length }} 勘误?","Apply Errata":"应用勘误","Apply Errata to Content Host \"{{host.name}}\"?":"是否在内容主机 \"{{host.name}}\" 中应用勘误?","Apply Errata to Content Hosts":"在内容主机中应用勘误","Apply Errata to Content Hosts immediately after publishing.":"发布后立即在内容主机中应用勘误","Apply Selected":"应用所选内容","Apply to Content Hosts":"在内容主机中应用","Apply to Hosts":"在主机中应用","Applying":"正在应用","Apt Repositories":"Apt 存储库","Arch":"归档","Architecture":"架构","Architectures":"架构","Archived Copy":"归档的副本","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"您确定要在所选主机集合中添加选择的 {{ table.numSelected }} 内容主机吗?","Are you sure you want to add the sync plan to the selected products(s)?":"您确定要在所选产品中添加同步计划吗?","Are you sure you want to apply Errata to content host \"{{ host.name }}\"?":"您确定要在内容主机 \"{{ host.name }}\" 中应用勘误吗?","Are you sure you want to apply the {{ table.numSelected }} selected errata to the content hosts chosen?":"您确定要在所选内容主机中应用选择的 {{ table.numSelected }} 勘误吗?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"您确定要为在 {{ selected.environment.name }} 中选择的 {{ selected.contentView.name }} 分配选择的 {{ table.numSelected }} 内容主机吗?","Are you sure you want to disable the {{ table.numSelected }} repository set(s) chosen?":"您确定要禁用所选的 {{ table.numSelected }} 库集合吗?","Are you sure you want to enable the {{ table.numSelected }} repository set(s) chosen?":"您确定要启用所选的 {{ table.numSelected }} 库集合吗?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"您确定要在所选 {{ getSelectedSystemIds().length }} 系统中安装 {{ content.content }} 吗?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"您确定要从所选 {{ getSelectedSystemIds().length }} 系统中删除 {{ content.content }} 吗?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"您确定要删除激活码 \"{{ activationKey.name }}\" 吗?","Are you sure you want to remove Content Credential {{ contentCredential.name }}?":"您确定要删除内容凭证 {{ contentCredential.name }} 吗?","Are you sure you want to remove Content View \"{{ contentView.name }}\"?":"您确定要删除内容视图 \"{{ contentView.name }}\" 吗?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"您确定要删除主机集合 \"{{ hostCollection.name }}\" 吗?","Are you sure you want to remove product \"{{ product.name }}\"?":"您确定要删除产品 {{ product.name }} 吗?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"您确定您想要删除储存库 \"{{ repository.name }}\" 吗?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"您确定要删除同步计划 {{ syncPlan.name }} 吗?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"您确定要从所选主机集合中删除选择的 {{ table.numSelected }} 内容主机吗?","Are you sure you want to remove the sync plan from the selected product(s)?":"您确定要从所选产品中删除同步计划吗?","Are you sure you want to reset to default the {{ table.numSelected }} repository set(s) chosen?":"您确定要重置所选的 {{ table.numSelected }} 库集合为默认值吗?","Are you sure you want to restart services on content host \"{{ host.name }}\"?":"您确定要重启内容主机 \"{{ host.name }}\" 上的服务吗?","Are you sure you want to set the Release Version the {{ table.numSelected }} content host(s) selected to {{ selected.release }}?. This action will affect only those Content Hosts that belong to the appropriate Content View and Lifecycle Environment containining that release version.":"您确定要将所选的发行版 {{ table.numSelected }} 内容主机设置为 {{ selected.release }} 吗?此操作只会影响包含本发行版本的相应内容视图和生命周期环境下属的内容主机。","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"您确定要在所选 {{ getSelectedSystemIds().length }} 系统中更新 {{ content.content }} 吗?","Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?":"您确定要在所选的 {{ getSelectedSystemIds().length }} 系统中更新所有软件包吗?","As part of this deletion, 1 Content View Version will be deleted.":"作为删除操作的一部分,已删除 1 内容视图版本。","Assign":"分配","Assign Lifecycle Environment and Content View":"分配生命周期环境和内容视图","Assign Release Version":"分配发行版本","Associations":"关联","At least one Errata needs to be selected to Apply.":"至少要选择一个要应用的勘误。","Attached":"已添加","Author":"作者","Auto Publish":"自动发布","Auto-Attach":"自动附加","Automatic":"自动","Available Content Views for Composite Content View:":"可用于综合内容视图的内容视图:","Available Puppet Modules for Content View:":"内容视图的可用 Puppet 模块:","Available Schema Versions":"可用的 Schema 版本","Back":"返回","Back To Errata List":"返回勘误列表","Backend Identifier":"后端标识符","Basic Information":"基本信息","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"以下是可通过其订阅在内容主机中使用的库内容集合。在 Red Hat 订阅中使用的附加内容可通过","Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"以下是可通过其订阅在激活码中使用的库内容集合。在 Red Hat 订阅中使用的附加内容可通过","Between versions {{ rule.min_version }} and {{ rule.max_version }}":" {{ rule.min_version }} 版本和 {{ rule.max_version }} 版本之间","Bootable":"可引导","Branch Info":"分支信息","Branch Name":"分支名称","Bug Fix":"Bug 修复","Bug Fix Advisory":"Bug 修复通知","Bugfix":"Bugfix","Build Host":"构建主机","Build Information":"构建信息","Build Time":"构建时间","Cancel":"取消","Cannot Remove":"无法删除","Cannot republish Repository without the proper permissions.":"没有适当的权限无法重新发布库。","Cannot republish Repository, a sync is already in progress.":"无法重新发布库,同步已在进行中。","Cannot sync Repository without a URL.":"没有 URL 无法同步库。","Cannot sync Repository without the proper permissions.":"没有适当的权限无法同步库。","Cannot sync Repository, a sync is already in progress.":"无法同步库,同步已在进行中。","Capacity":"容量","Certificate":"证书","Change assigned Lifecycle Environment or Content View":"更改分配的生命周期环境或者内容视图","Change Host Collections":"更改主机集合","Change Lifecycle Environment":"更改生命周期环境","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"要更改使用这个激活码所注册内容主机的默认设置,需要在该主机中安装 subscription-manager 版本 1.0 或者更新的版本。","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"更改默认设置需要在该主机中安装 subscription-manager 版本 1.0 或者更新的版本。","Checksum":"Checksum","Checksum Type":"Checksum 类型","Choose <b>Default</b> to enable the repository for all architectures":"选择<b>默认</b>来启用适用于所有架构的存储库","Choose a lifecycle environment from the available promotion paths.":"中可用推广路径中选择生命周期环境。","Choose one of the policy selections for downloading ostree content from upstream url during synchronization. Choose \"Latest\" for downloading the latest version of the upstream branch. Choose \"All History\" to download all available versions of the upstream repository (this may take a large amount of space). Choose \"Custom Depth\" and provide an number to indicate the number of prior versions of the upstream branch to download.":"从策略选项中选择一项,用于在同步期间,从 upstream url 下载 ostree 内容。选择“最新”,下载最新的 upstream 分支版本。选择“全部历史记录”,下载 upstream 库的全部可用版本(这可能占用大量空间)。选择“自定义深度”并提供一个编号,指明要下载的 upstream 分支之前的版本号。","Click here to check the status of the task.":"点这里查看任务状态。","Click here to select Errata for an Incremental Update.":"点这里为增量更新选择勘误。","Close":"关闭","Comma separated list of components to sync from (leave clear to sync all). Example: main":"要同步的组件的列表,用逗号隔开(留空以同步全部)。示例:main","Comma separated list of processor architectures to filter the sync by. Example: amd64":"用作同步过滤依据的处理器架构的列表,用逗号隔开。示例:amd64","Comma separated list of releases (suite or codename) to sync from. Default: stable":"要同步的版本列表(套件或代码名称),用逗号隔开。默认:stable","Commit":"提交","Complete Sync":"完成同步","Completely remove version?":"完全删除版本?","Components":"组件","Components:":"组件:","Composite":"组成","Composite View":"综合视图","Composite View?":"综合视图?","Confirm":"确认","Confirm Remove":"确认删除","Confirm Version Removal: Version {{ version.version }}":"确认版本删除:版本 {{ version.version }}","Container Image Manifest":"容器镜像清单","Container Image Manifest Lists":"容器镜像清单列表","Container Image Manifests":"容器镜像清单","Container Image metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"生成容器镜像元数据的过程已在后台开始。点\n <a ng-href=\"{{ taskUrl() }}\">这里</a>查看它的进度。","Container Image Tag":"容器镜像标记","Container Image Tag Filter:":"容器镜像标签过滤器:","Container Image Tags":"容器镜像标签","Container Images":"容器镜像","Content":"内容","Content Counts":"内容计数","Content Credential %s has been created.":"已创建内容凭证 %s。","Content Credential Contents":"内容凭证内容","Content Credential successfully uploaded":"已成功上传内容凭证","Content credential updated":"已更新内容凭证","Content Credentials":"内容凭证","Content Host":"内容主机","Content Host Bulk Content":"内容主机批量内容","Content Host Bulk Subscriptions":"内容主机批量订阅","Content Host Content":"内容主机内容","Content Host Counts":"内容主机计数","Content Host Limit":"内容主机限制","Content Host Properties":"内容主机属性","Content Host Registration":"内容主机注册","Content Host Status":"内容主机状态","Content Host:":"内容主机:","Content Hosts":"内容主机","Content Hosts for Activation Key:":"用于激活码的内容主机:","Content Hosts for:":"内容主机:","Content Hosts using Version {{ version.version }}":"使用版本 {{ version.version }} 的内容主机","Content Type":"内容类型","Content View":"内容视图","Content View Name":"内容查看名称","Content View updated.":"已更新内容视图","Content View Version":"内容视图版本","Content View:":"内容视图:","Content Views":"内容视图","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"内容视图 <div>{{ library.counts.content_views || 0 }}</div>","Content Views for {{ contentView.name }}":"{{ contentView.name }} 的内容视图","Content Views for Composite Content View:":"用于综合内容视图的内容视图:","Content Views for Deb:":"Deb 的内容视图:","Content Views for File:":"文件的内容视图:","Content Views for Puppet Module:":"用于 Puppet 模块的内容视图:","Content Views that contain this Deb":"包含此 Deb 的内容视图","Content Views that contain this File":"包含此文件的内容视图","Content Views that contain this Puppet Module":"包含此 Puppet 模块的内容视图","Context":"上下文","Contract":"合同","Copy Activation Key":"复制激活码","Copy Content View":"复制内容视图","Copy Content View:":"复制内容视图:","Copy Host Collection":"复制主机集合","Cores per Socket":"每个插槽的 core","Create":"创建","Create a copy of {{ activationKey.name }}":"创建 {{ activationKey.name }} 副本","Create a copy of {{ contentView.name }}":"创建 {{ contentView.name }} 副本","Create a copy of {{ hostCollection.name }}":"创建 {{ hostCollection.name }} 副本","Create a rule using the add button above.":"使用上方的“添加”按钮,创建一条规则。","Create Activation Key":"生成激活码","Create Content Credential":"创建内容凭证","Create Content View":"创建内容视图","Create Discovered Repositories":"创建发现库","Create Environment Path":"创建环境路径","Create Host Collection":"创建主机集合","Create new view":"创建新视图","Create New View":"创建新视图","Create Product":"创建产品","Create Selected":"创建所选","Create Status":"创建状态","Create Sync Plan":"创建同步计划","Create view from existing views":"从现有视图创建视图","Creating repository...":"正在创建库...","Critical":"关键","Current Lifecycle Environment (%e/%cv)":"当前的生命周期环境 (%e/%cv)","Current Subscriptions for Activation Key:":"用于激活码的当前订阅:","Currently %s":"当前的 %s","Currently Selected Puppet Modules":"当前所选 Puppet 模块","Custom Depth":"自定义深度","Custom Depth (Currently %s)":"自定义深度(当前 %s)","CVEs":"CVE","daily":"每日","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"每日于 {{ product.sync_plan.sync_date | date:'mediumTime' }} (服务器时间)","Date":"日期","Date Type":"日期类型","deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"已在后台启动 deb元数据生成。点击<a href=\"{{ taskUrl() }}\">这里</a>监控进度。","deb Packages":"deb 软件包","Deb Packages":"Deb 软件包","Deb:":"Deb:","Debs":"Deb","Default":"默认","Delete Hosts":"删除主机","Delete Version {{ version.version }}":"删除版本 {{ version.version }}","Deleted from %s":"从 %s 中删除","Deleting from %count environments.":"正在从 %count 环境中删除。","Deleting from 1 environment.":"正在从 1 环境中删除。","Deletion from %s":"从 %s 中删除","Delta RPM":"Delta RPM","Dependencies":"相依性","Description":"描述","Details":"详情","Details for {{ contentView.name }}":"{{ contentView.name }} 详情","Details for Activation Key:":"激活码详情:","Details for Container Image Tag:":"容器镜像标签详情:","Details for Content View:":"内容视图详情:","Details for Product:":"产品详情:","Details for Repository:":"库详情:","Digest":"摘要","Disable":"禁用","Disabled":"禁用","Disabled (overridden)":"已禁用(被覆盖)","Discover":"发现","Discovered Repository":"已发现库","Discovery failed. Error: %s":"发现失败。错误:%s","Distribution":"发布","Distribution Information":"分配信息","Docker metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"生成 Docker 元数据的操作已在后台开始。点\n <a ng-href=\"{{ taskUrl() }}\">这里</a>查看它的进度。","Docker Repositories":"Docker 储存库","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Docker 储存库 <div>{{ library.counts.docker_repositories || 0 }}</div>","Docker Repository Selection":"Docker 库选择","Done":"完成","Download Policy":"下载策略","Edit":"编辑","Enable":"启用","Enabled":"启用","Enabled (overridden)":"已启用(被覆盖)","End Date":"终止日期","Enhancement":"加强型","Enter Package Group Name(s)...":"输入软件包组名称......","Enter Package Name(s)...":"输入软件包名称......","Environment":"环境","Environment saved":"已保存环境","Environments":"环境","Environments List":"环境列表","Equal To":"等于","Errata":"勘误","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"勘误 <div>{{ library.counts.errata.total || 0 }}</div>","Errata are automatically Applicable if they are Installable":"勘误如果可以安装,则可自动应用。","Errata Details":"勘误详情","Errata Filter:":"勘误过滤器:","Errata for:":"勘误使用:","Errata ID":"勘误 ID","Errata Installation":"勘误安装","Errata successfully added.":"成功添加勘误。","Errata successfully removed.":"成功删除勘误。","Errata Task List":"勘误任务列表","Errata Tasks":"勘误任务","Errata Type":"勘误类型","Errata:":"勘误:","Erratum - by ID":"勘误 - 根据 ID 排列","Erratum - Date and Type":"勘误 - 日期和类型","Erratum Date Range":"勘误日期范围","Error during upload:":"上传时出错:","Event":"事件","Exclude":"排除","Exclude all RPMs with no errata.":"排除所有不包含勘误的 RPM。","Existing Product":"现有产品","Expires":"过期","Export":"导出","Exported content view":"导出的内容视图","Family":"产品线","File Information":"文件信息","File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"已在后台启动文件删除。点击 <a href=\"{{ taskUrl() }}\">这里</a> 监控该进程。","File Repositories":"文件库","File too large.":"文件过大。","File too large. Please use the CLI instead.":"文件太大。请使用 CLI。","File:":"文件:","Filename":"文件名","Files":"文件","Files in package {{ package.nvrea }}":"软件包 {{ package.nvrea }} 中的文件","Filter":"过滤器","Filter information for:":"过滤器信息:","Filter rule successfully removed.":"已成功删除过滤器规则。","Filter rule successfully updated.":"已成功更新过滤器规则。","Filter Saved":"已保存过滤器","Filter:":"过滤器:","Filter...":"过滤器......","Filters":"过滤器","Filters for Content View:":"内容视图的过滤器:","Filters successfully removed.":"成功删除过滤器。","Finished At":"完成于","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"在老的操作系统,比如 Red Hat Enterprise Linux 5 或 CentOS 5 中,建议使用 sha1。","Force Promote?":"强制推广?","Force Puppet Environment":"强制实施 Puppet 环境","GPG Key":"GPG 密钥","Greater Than":"大于","Greater than version {{ rule.min_version }}":"大于版本 {{ rule.min_version }}","Group":"组","Group Install":"组安装","Group Remove":"组删除","Helper":"Helper","here":"这里","Hide affected Activation Keys":"隐藏受影响的激活码","Hide affected Content Hosts":"隐藏受影响的内容主机","History":"历史记录","History for Content View:":"内容视图的历史记录:","Host %s has been deleted.":"已删除主机 %s。","Host %s has been unregistered.":"已取消注册主机 %s。","Host Collection Management":"主机集合管理 ","Host Collection Membership":"主机集合成员","Host Collection removed.":"已删除主机集合。","Host Collection updated":"已更新主机集合。","Host Collection:":"主机集合:","Host Collections":"主机集合","Host Collections for:":"主机集合:","Host Count":"主机计数","Host Group":"主机组","Host Limit":"主机限制","Hostname":"主机名","Hosts":"主机","hourly":"每小时","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"每小时于{{ product.sync_plan.sync_date | date:'m' }} 分 {{ product.sync_plan.sync_date | date:'s' }} 秒","HTTP Proxy":"HTTP 代理","Id":"Id","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"如果要将这些激活码的部分内容移动到其他内容视图或者生命周期环境中,请点击","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"如果要将这些激活码的部分内容移动到其他内容视图或者生命周期环境中,请点击 <a href=\"{{ activationKeyLink() }}\">这里</a> 对其进行单独管理。","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"如果要将这些内容主机的部分内容移动到其他内容视图或者生命周期环境中,请点击 <a href=\"{{ contentHostsLink() }}\">这里</a> 对这些内容主机进行批量管理。","Ignorable Content":"可忽略的内容","Image":"镜像","Immediate":"立即","Important":"重要","In order to add a content view to a composite view you must first publish an initial version of the content view.":"要在综合视图中添加内容视图,必须首先发布该内容视图的初始版本。","In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n or ask your admin for a certificate.":"要浏览此库,必须 <a ng-href=\"/organizations/{{ organization }}/edit\">下载证书</a>,\n 或向管理员索要证书。","Include":"包括","Include all RPMs with no errata.":"包括所有不含勘误的 RPM。","Inclusion Type":"包含类型","Incremental update":"增量更新","Incremental Update":"增量更新","Install":"安装","Install client package:":"安装客户端软件包:","Install Selected":"安装所选","Install the pre-built bootstrap RPM:":"安装预建 bootstrap RPM:","Installable":"可安装","Installable Errata":"可安装勘误","Installable Updates":"可安装更新","Installed":"已安装","Installed On":"安装日期","Installed Package":"已安装软件包","Installed Packages":"已安装软件包","Installed Products":"安装的产品","Interfaces":"接口","Interval":"间隔","IPv4 Address":"IPv4 地址","IPv6 Address":"IPv6 地址 ","Issued":"发出的","Issued On":"发行日期","Katello Agent":"Katello Agent","Label":"标签","Last Checkin":"上一次登录","Last Published":"上一次发布","Last Puppet Report":"上一个 Puppet 报告","Last Sync":"上一次同步","Last Updated On":"上一次更新于","Latest (Currently %s)":"最新(当前 %s)","Latest (Currently no version)":"最新(当前无版本)","Latest Only":"仅最新","Learn more about these packages in the <a href=\"https://theforeman.org/plugins/katello/\">Documentation</a>":"更多与这些软件包相关的信息包括在<a href=\"https://theforeman.org/plugins/katello/\">文档</a>中","Less Than":"小于","Less than version {{ rule.max_version }}":"小于版本 {{ rule.max_version }}","Library":"库程序","Library Repositories":"库程序储存库","Library Repositories that contain this Deb.":"包含此 Deb 的库存储库。","Library Repositories that contain this File.":"包含这个文件的库程序储存库。","Library Repositories that contain this Puppet Module.":"包含这个 Puppet 模块的库程序储存库。","Library Synced Content":"与库程序同步的内容","License":"许可","Lifecycle Environment":"生命周期环境","Lifecycle Environment Paths":"生命周期环境路径","Lifecycle Environment:":"生命周期环境:","Lifecycle Environments":"生命周期环境","Limit":"限制","Limit Repository Sets to only those available in this Activation Key's Lifecycle Environment":"将库集合限制为仅在这个激活码生命周期环境中可用的集合","Limit Repository Sets to only those available in this Host's Lifecycle Environment":"将库集合限制为仅在这个主机生命周期环境中可用的集合","Limit to environment":"限于环境","Limit to Environment":"限于环境","Limit to Lifecycle Environment":"限于生命周期环境","Limit:":"限制:","List":"列表","List/Remove":"列表 / 删除","Loading Environment Paths...":"正在载入环境路径......","Loading...":"载入中......","Loading...\"":"正在加载...”","Manage Container Image Manifests for Repository:":"为仓库管理容器镜像清单:","Manage deb Packages for Repository:":"为存储库管理 deb 软件包:","Manage Errata":"管理勘误","Manage Files for Repository:":"为库管理文件:","Manage OSTree Branches for Repository:":"为储存库管理 OSTree 分支:","Manage Packages":"管理软件包","Manage Packages for Repository:":"为库管理软件包:","Manage Puppet Modules for {{ repository.name }}":"为库 {{ repository.name }} 管理 Puppet 模块","Manage Puppet Modules for Repository:":"管理库的 Puppet 模块","Manage Repository Sets":"管理库集合","Manage Subscriptions":"管理订阅","Manage Sync Plan":"管理同步计划","Manifest Lists":"清单列表","Manifest Type":"清单类型","Many Content View actions are disabled while a version task is in progress.":"在版本任务进行期间,许多内容视图操作都被禁用。","Maximum Version":"最大版本","Minimum Version":"最小版本","Mirror on Sync":"同步的镜像","Model":"型号","Moderate":"中等","Module %s removed from Content View.":"已从内容视图中删除模块 %s。","Module Stream":"模块流","Module Streams":"模块流","More Details":"详情","N/A":"无","Name":"名称","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"要同步的 upstream 库名称。例如:'busybox' 或者 'fedora/ssh'。","Networking":"联网","Never":"从不","Never synced":"从不同步 ","New Activation Key":"新建激活码","New Environment":"新建环境","New Filter":"新建过滤器","New Filter for Content View:":"新建内容视图过滤器:","New Name:":"新建名称:","New Product":"新建产品","New Repository":"新建库","New Sync Plan":"新建同步计划","New sync plan successfully created.":"成功创建新同步计划。","Next":"下一步","Next Sync":"下一次同步","No":"否","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"在那个生命周期环境中的一些激活码没有“Edit”权限。","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"在那个生命周期环境中的一些内容主机没有“Edit”权限。","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"在该生命周期环境中没有“Promote/Remove”权限。","No activation keys are affected.":"没有激活码受到影响。","No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\".":"没有其他发行版本可选。可用的发行版本基于 \"{{ host.content_facet_attributes.content_view.name }}\" 中的可用内容,即针对给定 <a href=\"/lifecycle_environments\">生命周期环境</a> \"{{ host.content_facet_attributes.lifecycle_environment.name }}\" 此内容主机附加到的所选 <a href=\"/content_views\">内容视图</a>。","No Content Hosts are affected.":"没有内容主机受到影响。","No Content Hosts match this Erratum.":"没有与此勘误匹配的内容主机。","No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first.":"没有可以添加至 {{ contentView.name }} 的内容视图。请先创建一些非综合内容视图。","No Content Views available, please select another environment.":"没有内容主机可用,请选择其他环境。","No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views.":"没有内容视图属于 {{ contentView.name }}。请使用添加选项卡来添加内容视图。","No Content Views contain this Deb":"没有内容视图包含此 Deb","No Content Views contain this File":"没有内容视图包含此文件","No Content Views contain this Puppet Module":"没有内容视图包含此 Puppet 模块","No content views exist for {{selected.environment.name}}":"{{selected.environment.name}} 不存在内容视图","No Content Views match the search.":"没有内容视图与搜索匹配。","No discovered repositories.":"没有发现库。","No enabled Repository Sets provided through subscriptions.":"没有通过订阅提供的已启用的仓库。","No Errata to display":"没有要显示的勘误","No Host Collections match your search.":"没有主机集合与您的搜索匹配。","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"无主机集合可显示,您可以在 ‘主机’ 主菜单中选择 ‘主机集合’ 后添加主机集合。","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"无主机集合可显示,您可以选择 ‘添加’ 标签后添加主机集合。","No matching results.":"没有匹配的结果。","No products are available to add to this Sync Plan.":"没有可以添加到此同步计划的产品。","No products are have been added to this Sync Plan.":"没有添加任何产品到此同步计划。","No puppet modules found":"未找到 puppet 模块","No releases exist in the Library.":"库中不存在发行本。","No Repositories contain this Branch.":"没有库包含此分支。","No Repositories contain this Deb":"没有存储库包含此 Deb","No Repositories contain this Erratum.":"没有包含此勘误的库。","No Repositories contain this File":"没有库包含此文件","No Repositories contain this Package.":"没有任何储存库中包含这个软件包。","No Repositories contain this Puppet Module":"没有库包含此 Puppet 模块","No repository sets provided through subscriptions.":"没有通过订阅提供的库集合。","No sync information available.":"没有可用的同步信息。","No tasks exist for this resource.":"此资源不存在任何任务。","No versions found for {{ $stateParams.moduleName }}":"未找到可用于 {{ $stateParams.moduleName }} 的版本","None":"无","Not installed":"未安装","Not started":"未启动","Not Synced":"未同步","Not yet published":"尚未发布","Number of CPUs":"CPU 数","Number of Repositories":"库的数量","On Demand":"按需","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"在所选主机中运行的已发布内容视图版本中无法安装一个或多个选择的勘误。使用新内容视图版本(指定如下)\n 可在该主机环境中安装这个勘误。这个新版本会替换您主机生命周期环境中的当前版本。\n 请选择下面这个复选框以便在发布后立即安装这些勘误。","One or more RPMs are not showing up in the local repository even though they exist in the upstream repository.":"有一个或多个 RPM 未显示在本地库中,虽然它们存在于 upstream 库中。","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"只显示目前可以在主机生命周期环境中安装该勘误的内容主机。","Only show Errata that are Applicable to one or more Content Hosts":"只显示可用于一个或多个内容主机的勘误","Only show Errata that are Installable on one or more Content Hosts":"只显示可在一个或多个内容主机上安装的勘误","Only show Packages that are Applicable to one or more Content Hosts":"只显示可用于一个或多个内容主机的软件包","Only show Packages that are Upgradable on one or more Content Hosts":"只显示可在一个或多个内容主机上升级的软件包","Only show Subscriptions for products not already covered by a Subscription":"只显示某个订阅尚未覆盖的产品订阅","Only show Subscriptions which can be applied to products installed on this Host":"只显示可用于安装在这台主机上的产品的订阅","Only show Subscriptions which can be attached to this Host":"只显示可附加到这台主机的订阅","Only the Applications with a Helper can be restarted.":"只能重启具有 Helper 的应用。","Operating System":"操作系统","Optimized Sync":"优化同步","Organization":"机构","Original Sync Date":"最初同步日期","OS":"操作系统","OSTree Branch metadata generation has been initiated in the background. Click\n <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"已在后台初始化 OSTree 分支元数据创建。点击\n <a ng-href=\"{{ taskUrl() }}\">这里</a> 即可监控该进程。","OSTree Branch:":"OSTree 分支:","OSTree Branches":"OSTree 分支","OSTree Content":"OSTree 内容","OSTree Repositories":"OSTree 存储库","OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>":"OSTree 储存库 <div>{{ library.counts.ostree_repositories || 0 }}</div>","Override to Disabled":"覆盖至已禁用","Override to Enabled":"覆盖至已启用","Package":"软件包","Package Actions":"软件包操作","Package Filter:":"软件包过滤器:","Package Group":"软件包组","Package Group Filter:":"软件包组过滤器:","Package Group successfully added.":"成功添加软件包组。","Package Group successfully removed.":"成功删除软件包组。","Package Groups":"软件包组","Package Groups for Repository:":"用于储存库的软件包组:","Package Information":"软件包信息","Package Install":"软件包安装","Package Installation, Removal, and Update":"软件包安装、删除及更新","Package Remove":"软件包删除","Package successfully added.":"成功添加软件包。","Package successfully removed.":"成功删除软件包。","Package successfully updated.":"成功更新软件包","Package Update":"软件包更新","Package Updates":"软件包更新","Package:":"软件包:","Package/Group Name":"软件包/组名称","Packages":"软件包","Packages <div>{{ library.counts.packages || 0 }}</div>":"软件包 <div>{{ library.counts.packages || 0 }}</div>","Packages are automatically Applicable if they are Upgradable":"如果软件包可以升级,则也可以自动应用","Packages for:":"软件包:","Parameters":"参数","Part of a manifest list":"清单列表的一部分","Password":"密码","Password of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"用于身份验证的 upstream 库用户的密码。如果库不需要身份验证,则留空。","Paste contents of Content Credential":"粘贴内容凭证的内容","Path":"路径","Perform":"执行","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"请选择生命周期环境以及内容视图以便将受影响的激活码转移过去:","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"请选择生命周期环境以及内容视图以便将这些内容主机转移过去:","Please select a Lifecycle Environment.":"请选择生命周期环境。","Please select an environment.":"请选择环境。","Please select one from the list below and you will be redirected.":"请从下面的列表中选择一个环境,然后会将您重新指向该环境。","Plus %y more errors":"外加 %y 个错误","Plus 1 more error":"外加 1 个错误","Previous Lifecycle Environment (%e/%cv)":"前一个生命周期环境 (%e/%cv)","Prior Environment":"以前的环境","Product":"产品","Product Count":"产品计数","Product Enhancement Advisory":"产品强化通知","Product information for:":"产品信息:","Product Management for Sync Plan:":"同步计划的产品管理:","Product Name":"产品名称","Product Options":"产品选项","Product Saved":"已保存产品","Product syncs has been initiated in the background. Click %s to monitor the progress.":"已在后台启动产品同步。点击 %s 监控该进程。","Products":"产品","Products <div>{{ library.counts.products || 0 }}</div>":"产品 <div>{{ library.counts.products || 0 }}</div>","Products for":"产品适合","Products not covered":"未涵盖的产品","Project Page":"项目页面","Promote":"推广","Promote Content View:":"推广内容视图:","Promote Version":"推广版本","Promote Version {{ version.version }}":"推广版本 {{ version.version }}","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"将版本推广至 {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"已推广至 %s","Promoting to %count environments.":"正在推广至 %count 环境。","Promoting to 1 environment.":"推广至 1 环境。","Promotion History":"推广历史记录","Provides":"提供","Provisioning Details":"置备详情","Provisioning Host Details":"置备主机详情","Publish Content View:":"发布内容视图:","Publish New Version":"发布新版本","Publish via HTTP":"使用 HTTP 发布","Publish via HTTPS":"使用 HTTPS 发布","Published":"已发布","Published At":"发布于","Published new version":"已发布新版本","Published Repository Information":"已发布库信息","Publishing and promoting to %count environments.":"正在发布并推广至 %count 环境。","Publishing and promoting to 1 environment.":"正在发布并推广至 1 环境。","Puppet Environment":"Puppet 环境","Puppet module added to Content View":"添加到内容视图中的 Puppet 模块","Puppet module metadata generation has been initiated in the background.\n Click <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"已知后台启动 Puppet 模块元数据生成。\n 请点 <a ng-href=\"{{ taskUrl() }}\">这里</a> 监控此进程。","Puppet Module:":"Puppet 模块:","Puppet Modules":"Puppet 模块","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Puppet 模块 <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"内容视图的 Puppet 模块:","Quantity":"数量","RAM (GB)":"RAM (GB)","Range":"范围","Reboot Suggested":"建议重启","Reboot Suggested?":"是否建议重启?","Recalculate\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>":"重新计算\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"calculatingApplicability\"></i>","Red Hat Repositories page":"Red Hat Repositories 页面启用。","Red Hat Repositories page.":"Red Hat Repositories 页面。","Refresh Table":"数显 表格","Regenerate Repository Metadata":"重新生成库元数据","Register a Content Host":"注册内容主机","Register Content Host":"注册内容主机","Register using subscription-manager:":"使用 subscription-manager 注册:","Registered":"已注册","Registered By":"注册人","Registered Through":"注册方式","Registry Name Pattern":"Registry 名称特征","Registry to Discover":"要发现的 Registry","Registry URL":"注册 URL","Release":"发行本","Release Version":"发行本版本","Release Version:":"发行版本:","Releases":"发行版本","Remote execution plugin is required to be able to run any helpers.":"需要远程执行插件才能运行任意 helper。","Removal of selected repositories initiated successfully.":"成功开始移除所选储存库。","Remove":"删除","Remove {{ contentView.name }}":"删除 {{ contentView.name }}","Remove Activation Key \"{{ activationKey.name }}\"?":"是否要删除激活码 \"{{ activationKey.name }}\"?","Remove Container Image Manifests":"删除容器镜像清单","Remove Content Credential":"删除内容凭证","Remove Content Credential {{ contentCredential.name }}":"删除内容凭证 {{ contentCredential.name }}","Remove Content View":"删除内容视图","Remove Content Views":"删除内容视图","Remove Environment":"删除环境","Remove Errata":"删除勘误","Remove Files":"删除文件","Remove From":"删除","Remove Host Collection \"{{ hostCollection.name }}\"?":"是否要删除主机集合 \"{{ hostCollection.name }}\"?","Remove Module":"删除模块","Remove Package Group":"删除软件包组","Remove Packages":"删除软件包","Remove Product":"删除产品","Remove Product \"{{ product.name }}\"?":"是否要删除产品 \"{{ product.name }}\"?","Remove Puppet Modules":"删除 Puppet 模块","Remove Repositories":"删除库","Remove Repository":"删除库","Remove Repository \"{{ repository.name }}\"?":"是否要删除储存库 \"{{ repository.name }}\"?","Remove Rule":"移除规则","Remove Selected":"删除所选","Remove Successful.":"成功删除。","Remove Sync Plan":"删除同步计划","Remove Sync Plan \"{{ syncPlan.name }}\"?":"是否要删除同步计划 \"{{ syncPlan.name }}\"?","Remove Tags":"删除标签","Remove Version":"删除版本","Remove Version Confirmation":"删除版本确认","Removed %x host collections from activation key \"%y\".":"从激活码 \"%y\" 中删除 %x 主机集合。","Removed %x host collections from content host \"%y\".":"从内容主机 \"%y\" 中删除 %x 主机集合。","Removed %x products from sync plan \"%y\".":"从同步计划 \"%y\" 中删除 %x 产品。","Removing Repositories":"正在删除库","Repo Discovery":"库查找","Repositories":"库","Repositories containing branch {{ branch.name }}":"包含分支 {{ branch.name }} 的库","Repositories containing Errata {{ errata.errata_id }}":"包含勘误 {{ errata.errata_id }} 的库","Repositories containing package {{ package.nvrea }}":"包含软件包 {{ package.nvrea }} 的储存库","Repositories for":"库适合","Repositories for Content View:":"内容视图使用的储存库:","Repositories for Deb:":"Deb 的存储库:","Repositories for Errata:":"勘误储存库:","Repositories for File:":"文件库:","Repositories for Filter:":"过滤器使用的储存库:","Repositories for Package:":"软件包储存库:","Repositories for Product:":"产品使用的储存库:","Repositories for Puppet Module:":"用于 Puppet 模块的储存库:","Repositories to Create":"要创建的库","Repository":"库","Repository \"%s\" successfully deleted":"已成功删除储存库 \"%s\"。","Repository %s successfully created.":"已成功创建 %s 库。","Repository Count":"储存库计数","Repository created":"已创建库","Repository Discovery":"查找储存库","Repository Label":"仓库标签","Repository Name":"储存库名称","Repository Options":"库选项","Repository Path":"库路径","Repository Saved.":"已保存库。","Repository Selection":"储存库选择","Repository Sets":"库集合","Repository Sets settings saved successfully.":"库集合设置保存成功。","Repository Type":"仓库类型","Repository URL":"仓库网址","Repository:":"储存库:","Republish Repository Metadata":"重新发布库元数据","Requires":"要求","Reset to Default":"重置为默认值","Restart":"重启","Restart Selected":"已选择重启","Restart Services on Content Host \"{{host.name}}\"?":"是否在内容主机 \"{{host.name}}\" 上重启服务?","Restrict to architecture":"限制到架构","Restrict to Architecture":"限制到架构","Result":"结果","Role":"角色","RPM":"RPM","RPM Name":"RPM 名称","rpm Package Groups":"rpm 软件包组","rpm Packages":"rpm 软件包","RPMs":"RPMs","Run Auto-Attach":"运行 Auto-Attach","Run Repository Creation\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>":"运行库创建\n <i class=\"fa fa-spinner fa-spin\" ng-show=\"creating()\"></i>","Run Sync Plan":"运行同步计划","Save":"保存","Save Successful.":"成功保存。","Schema Version":"Schema 版本","Schema Version 1":"Schema 版本 1","Schema Version 2":"Schema 版本 2","Security":"安全性","Security Advisory":"安全通知","Select":"选择","Select a Content Source:":"选择一个内容源:","Select A New Puppet Module To Add":"新选择一个 Puppet 模块添加","Select a Version":"选择一个版本","Select Action":"选择动作","Select an Available Version of {{ $stateParams.moduleName }}":"选择一个 {{ $stateParams.moduleName }} 可用版本","Select an Organization":"选择机构","Select content units to ignore while synchronizing this repository.":"选择同步这个仓库时需要忽略的内容单元。","Select Content View":"选择内容视图","Select Environment":"选择环境","Select new version":"选择新版本","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"选择您要从其中删除版本 {{ version.version }} 的生命周期环境:","Select Version":"选择版本","Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced. Selecting \"Validate Content\" will cause only Yum repositories using the \"Immediate\" or \"Background\" download policies will be synced.":"选择“完成同步”将导致仅同步所选产品的 Yum 库。选择“验证内容”将导致仅同步使用“中间”或“后台”下载策略的 Yum 库。","Selecting this option will result in contents that are no longer part of the upstream repository being removed during synchronization.":"选择这个选项将导致在同步过程中删除已不属于 upstream 储存库的内容。","Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification.":"选择这个选项将导致 Katello 验证 upstream url 的 SSL 证书是否由受信 CA 签名。如果不想要此验证,请取消选择该项。","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"选择这个选项会完全删除该版本,使其不再能够推广。必须先从所有生命周期环境中删除该版本方可选择这个选项。","Serve via HTTP":"通过 HTTP 提供","Service Level":"服务等级","Service Level (SLA)":"服务等级 (SLA)","Set Release Version":"设定发行版本","Severity":"严重性","Show affected Activation Keys":"显示受影响的激活码","Show affected Content Hosts":"显示受影响的内容主机","Show All":"显示全部","Show all Repository Sets in Organization":"显示组织中的所有库集合","Size":"大小","Smart proxy currently syncing to your locations...":"目前正与您的位置同步的智能代理服务器...","Smart proxy is synchronized":"已同步智能代理服务器","Sockets":"插槽","Solution":"解决方案","Some of the Errata shown below may not be installable as they are not in this Content Host's\n Content View and Lifecycle Environment. In order to apply such Errata an Incremental Update is required.":"下面显示的一些勘误可能无法安装,因为它们不在这个内容主机的\n 内容视图及生命周期环境中。需要增量更新才能应用此类勘误。","Something went wrong when retrieving the resource.":"检索该资源时出现问题。","Something went wrong when saving the resource.":"保存该资源时出现问题。","Source":"源","Source RPM":"源 RPM","Source RPMs":"源 RPM","SSL CA Cert":"SSL CA 证书","SSL Certificate":"SSL 证书","SSL Client Cert":"SSL 客户端证书","SSL Client Key":"SSL 客户端密钥","Standard sync, optimized for speed by bypassing any unneeded steps.":"标准同步,免去任何不必要的步骤,针对速度进行了优化。","Start Date":"起始日期","Start Time":"起始时间","Started At":"开始于:","Starting":"正在开始","Starts":"起始","State":"状态","Status":"状态","Stream":"流","Subscription Details":"订阅详情","Subscription Management":"订阅管理","Subscription Status":"订阅状态","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"订阅","Subscriptions for Activation Key:":"用于激活码的订阅:","Subscriptions for Content Host:":"内容主机的订阅:","Subscriptions for:":"订阅:","Success!":"成功!","Successfully added %s subscriptions.":"成功添加 %s 订阅。","Successfully deleted %cv version %ver.":"成功删除 %cv 版本 %ver。","Successfully initiated deletion of %cv version %ver.":"成功启动 %cv 版本 %ver。","Successfully initiated promotion of %cv version %ver to %env.":"成功将 %cv 版本从 %ver 推广为 %env。","Successfully initiated removal of %cv version %ver.":"成功删除 %cv 版本 %ver。","Successfully promoted %cv version %ver to %env":"成功将 %cv 版本从 %ver 推广为 %env。","Successfully published %cv version %ver and promoted to Library":"成功发布 %cv 版本 %ver 并将其推广至库中。","Successfully removed %cv version %ver from environments: %env":"成功从环境删除 %cv 版本 %ver: %env","Successfully removed %s items.":"成功删除 %s 个项目。","Successfully removed %s subscriptions.":"成功删除 %s 订阅。","Successfully removed 1 item.":"成功删除 1 个项目。","Successfully scheduled an update of all packages":"成功计划所有软件包的更新","Successfully scheduled package installation":"成功计划软件包安装","Successfully scheduled package removal":"成功计划软件包删除","Successfully scheduled package update":"成功计划软件包更新 ","Successfully updated subscriptions.":"成功更新订阅。","Successfully uploaded content:":"成功上传内容:","Summary":"小结","Support Level":"支持等级","Sync":"同步","Sync Enabled":"启动同步","Sync even if the upstream metadata appears to have no change. This option is only relevant for yum repositories and will take longer than an optimized sync. Choose this option if:":"即使 upstream 元数据看似没有任何变化,也进行同步。此选项只与 yum 库相关,比优化同步需要的时间更长。在以下情况下,请选择此选项:","Sync Interval":"同步间隔","Sync Now":"现在同步","Sync Plan":"同步计划","Sync Plan %s has been deleted.":"已删除 %s 同步计划。","Sync Plan created and assigned to product.":"已创建同步计划并将其分配至产品。","Sync Plan Saved":"已保存同步计划","Sync Plan:":"同步计划:","Sync Plans":"同步计划","Sync Selected":"已选择同步","Sync Settings":"同步设置","Sync State":"同步状态","Sync Status":"同步状态","Synced manually, no interval set.":"手动同步,未设置间隔。","Synchronization is about to start...":"即将开始同步......","Synchronization is being cancelled...":"正在取消同步......","System Purpose":"系统目的","Tags":"标签","Task Details":"任务详情","Tasks":"任务","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"以下激活码目前正在使用这个内容视图版本。删除该版本前必须将这些激活码移动到不使用这个版本的生命周期环境中。","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"将删除这个版本的归档。删除后将完全不能使用这个版本。","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"不会删除这个版本的归档。仍可将这个版本推广到生命周期环境中。","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"以下内容主机目前正在使用这个内容视图版本。删除该版本前必须将这些内容主机移动到不使用这个版本的生命周期环境中。","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"要更新内容视图或生命周期环境以便在这些主机中可以使用勘误。","The following actions can be performed on content hosts in this host collection:":"可在中国主机集合的内容主机中执行以下操作:","The host has not reported any applicable packages for upgrade.":"该主机尚未报告任何可升级的软件包。","The host has not reported any installed packages, registering with subscription-manager should cause these to be reported.":"该主机尚未报告任何已安装的软件包,使用 subscription-manager 注册后会报告这些软件包。","The host requires being attached to a content view and the lifecycle environment you have chosen has no content views promoted to it.\n See the <a href=\"/content_views\">content views page</a> to manage and promote a content view.":"要求被附加到您选择的内容视图和生命周期环境的主机没有向其推广的内容。\n 有关管理和推广内容视图的详情,请查看 <a href=\"/content_views\">内容视图页</a> 。","The page you are attempting to access requires selecting a specific organization.":"需要选择具体机构方可访问您尝试访问的页面。","The selected environment contains no Content Views, please select a different environment.":"所选环境不包含任何内容视图,请选择另一个环境。","The time the sync should happen in your current time zone.":"在您当前所处的时区内,更新应发生的时间。","There are {{ errataCount }} total Errata in this organization but none match the above filters.":"这个机构中共有 {{ errataCount }} 个勘误,但没有任何一个与上述过滤器匹配。","There are {{ packageCount }} total Packages in this organization but none match the above filters.":"这个机构中共有 {{ packageCount }} 个软件包,但没有任何一个与上述过滤器匹配。","There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"目前没有 Docker 库与这个内容视图关联,您可以点击上面的“添加”标签添加一些库。","There are currently no Docker Repositories to add to this Content View,":"目前没有 Docker 库可添加到这个内容视图,","There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"目前没有文件库与这个内容视图关联,您可以点击上面的“添加”标签添加一些库。","There are currently no File Repositories to add to this Content View,":"目前没有文件库可添加到这个内容视图,","There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"目前没有 OSTree 库与这个内容视图关联,您可以点击上面的“添加”标签添加一些库。","There are currently no OSTree Repositories to add to this Content View,":"目前没有 OSTree 库可添加到这个内容视图,","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"目前没有任何库与这个内容视图关联,您可以点击上面的“添加”标签添加一些库。","There are currently no repositories to add to this Content View,":"目前没有在这个内容视图中添加任何库。","There are no Content Views in this Environment.":"这个环境中没有任何内容视图。","There are no Content Views that match the criteria.":"没有符合该标准的内容视图。","There are no Errata associated with this Content Host to display.":"没有与这个内容主机关联的勘误。","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"这个机构中没有勘误。创建一个或多有包含勘误的产品在这个页面中查看勘误。","There are no Errata to display.":"没有勘误可显示。","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"无主机集合可用,您可以在 ‘主机’ 主菜单中选择 ‘主机集合’ 后添加主机集合。","There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page.":"这个机构中没有软件包。创建一个或多有包含软件包的产品,以便在这个页面中查看勘误。","There are no Sync Plans available. You can create new Sync Plans after selecting 'Sync Plans' under 'Hosts' in main menu.":"无同步计划可用,您可以在主菜单中 ‘主机’ 下选择 ‘同步计划’ 后创建新的同步计划。","There are no Traces to display.":"没有跟踪信息可显示。","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"目前没有进行任何增量更新任务。必须在应用现有更新前完成此更新。","There is currently no history associated with this Content View.":"目前没有与这个内容视图关联的历史记录。","This action will affect only those Content Hosts that require a change.\n If the Content Host does not have the selected Subscription no action will take place.":"此操作只会影响需要更改的内容主机。如果该内容主机没有所选的订阅,则不会采取任何操作。","This activation key is not associated with any content hosts.":"这个激活码没有与任何内容主机关联。","This activation key may be used during system registration. For example:":"可在系统注册时使用了这个激活码。例如:","This Container Image Tag is not present in any Lifecycle Environments.":"这个容器镜像标签没有在生命周期环境中。","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"这个内容视图没有任何版本,请使用右侧的 \"发布新版本\" 按钮创建您的第一个内容视图版本。","This filter applies only to a subset of repositories in the content view.":"这个过滤器只是用于内容主机中的库子网。","This filter applies to all repositories in the content view (current and future).":"这个过滤器适用于该内容视图中的所有库(现在和将来)。","This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n Change the setting \"Delete Host upon Unregister\" to false on the <a href=\"/settings\">settings page</a> to prevent this.":"此操作也可能删除与主机链接的托管资源,例如虚拟机和 DNS 记录。\n 在<a href=\"/settings\">设置页面</a>上,将“取消注册时删除主机”设置更改为 false,以防止出现这种问题。","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"有以下原因之一即可将这个版本从一些生命周期环境中删除。","This Version is not associated with any Lifecycle Environments.":"这个版本没有与任何生命周期环境关联。","This version will be removed from:":"将删除这个版本:","Title":"标题","to manage them individually.":"对其进行单独管理。","To register a content host to this server, follow these steps.":"请按照以下步骤在这台服务器中注册内容主机。","To report package & errata information:":"报告软件包和勘误信息:","Toggle Dropdown":"切换下拉菜单","Topic":"标题","Traces":"跟踪信息","Traces for:":"以下项的跟踪信息:","Type":"类型","Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}":"类型:{{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}","Unable to determine version":"无法确定版本","Unauthenticated Pull":"未认证的拉取操作","Unknown":"未知的","Unlimited Content Hosts:":"无限内容主机:","Unlimited Hosts":"无限制主机","Unregister Host":"取消注册主机","Unregister Host \"{{host.name}}\"?":"取消注册主机 \"{{host.name}}\"?","Unregister Options:":"取消注册选项:","Unregister the host as a subscription consumer. Provisioning and configuration information is preserved.":"取消注册该主机的订阅用户身份。置备和配置信息将保留。","Unsupported Type!":"不支持的类型!","Update":"更新","Update All Packages":"更新所有软件包","Update Packages":"更新软件包","Update Repositories":"更新库","Update Sync Plan":"更新同步计划","Updated":"已更新","Updated errata filter -":"已更新","Updated On":"更新于","Upgradable":"可升级的","Upgradable For":"可针对以下项升级","Upgradable Package":"可升级的软件包","Upgrade Selected":"升级所选","Upload":"上传","Upload Content Credential file":"上传内容凭证文件","Upload File":"上传文件","Upload Package":"上传软件包","Upload Puppet Module":"上传 puppet 模块","Uploading...":"正在上传......","Upstream Authorization":"上游认证","Upstream Image Name":"Upstream 镜像名称","Upstream Password":"Upstream 密码","Upstream Repository Name":"Upstream 库名称","Upstream Sync Policy":"Upstream 同步策略","Upstream URL":"Upstream URL","Upstream Username":"Upstream 用户名","Url":"Url","URL of the registry you want to sync. Example: https://registry-1.docker.io/":"要同步的注册 URL。例如:https://registry-1.docker.io/","URL to Discover":"要查找的 URL","Usage Type":"使用类型","Use the cancel button on content view selection to revert your lifecycle environment selection.":"点内容视图选择中的取消按钮来还原您的生命周期选择。","Used as":"用作","User":"用户","Username":"用户名","Username of the upstream repository user for authentication. Leave empty if repository does not require authentication.":"用于身份验证的 upstream 库用户的用户名。如果库不需要身份验证,则留空。","Using a username and password:":"使用用户名和密码:","Using an Activation Key:":"使用认证码:","Validate Content Sync":"验证内容同步","Variant":"变体","Verify SSL":"确认 SSL","Version":"版本","Version {{ rule.version }}":"版本 {{ rule.version }}","Version Deletion":"版本删除","Version Details":"版本详情","Version:":"版本:","Versions":"版本","Versions for Content View:":"内容视图版本:","Versions for Puppet Module:":"Puppet 模块版本:","via Katello agent":"通过 Katello agent","via Katello Agent":"通过 Katello Agent","via remote execution":"通过远程执行","via remote execution - customize first":"通过远程执行 - 首先定制","View Container Image Manifest Lists for Repository:":"查看仓库的容器镜像列表:","View Docker Tags for Repository:":"查看仓库的 Docker 标签:","Virtual Guest":"虚拟机","Virtual Guests":"虚拟客户机","Virtual Host":"虚拟主机","weekly":"每周","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"每周于 {{ product.sync_plan.sync_date | date:'mediumTime' }} (服务器时间) 在 {{ product.sync_plan.sync_date | date:'EEEE' }}","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"禁用自动附加后,会在所有关联订阅中附加正在注册的系统。","When validating content, repositories using the \"On Demand\" download policy will download all packages within the repository.":"验证内容时,使用“按需”下载策略的库将在库内下载所有软件包。","Working":"工作中","Yes":"是","You cannot remove these repositories because they belong to a Red Hat product.":"您无法删除这些库因为它们属于 Red Hat 产品。","You cannot remove these repositories because you do not have permission.":"您无法删除这些库因为您没有授权。","You cannot remove this product because it is a Red Hat product.":"您无法删除这个产品因为它是 Red Hat 产品。","You cannot remove this product because it was published to a content view.":"您无法删除这个产品因为是将其发布到内容视图中。","You cannot remove this product because you do not have permission.":"您无法删除这个产品因为您没有授权。","You cannot remove this repository because it is a Red Hat repository.":"您无法删除这个库因为它是 Red Hat 库。","You cannot remove this repository because it was published to a content view.":"您无法删除这个库因为是将其发布到内容视图中。","You cannot remove this repository because you do not have permission.":"您无法删除这个库因为您没有授权。","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"您目前没有激活码,可使用右边的按钮添加激活码。","You currently don't have any Container Image Tags.":"当前您不能有任何容器镜像标签。","You currently don't have any Content Credential, you can add Content Credentials using the button on the right.":"您目前没有任何内容凭证,可使用右侧的按钮添加内容凭证。","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"您目前没有任何内容主机,可从主菜单中选择内容主机,并点击右侧的按钮生成新的内容主机。","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"您目前没有任何内容主机,只要点击右侧的按钮并安装说明操作即可注册。","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"您目前没有任何内容视图,可使用右侧的按钮添加内容视图。","You currently don't have any Debs.":"您目前没有任何 Deb。","You currently don't have any Files.":"您目前没有任何文件。","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"目前您没有包含在这个内容视图中的过滤器,您可以使用右边的按钮创建新过滤器。","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"您目前没有任何主机集合,可使用右边的按钮添加主机集合。","You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.":"目前在这个主机组中没有您的主机,可选择 ‘添加’ 标签后添加内容主机。","You currently don't have any OSTree Branches.":"您目前没有任何 OSTree 分支。","You currently don't have any Products associated with this Content Credential.":"您目前没有任何与此内容凭证关联的产品。","You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu":"您目前没有任何要订阅的产品,在主菜单的 ‘内容’ 项下选择 ‘产品’ 后即可添加产品。","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"您目前没有任何产品 <span bst-feature-flag=\"custom_products\">,可使用右侧的按钮添加产品</span>。","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"目前您没有任何包含在这个内容视图中的 Puppet 模块,您可以使用右边的按钮创添加 Puppet 模块。","You currently don't have any Puppet Modules.":"您目前没有任何 Puppet 模块。","You currently don't have any Repositories associated with this Content Credential.":"您目前没有任何与此内容凭证关联的存储库。","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"目前您没有任何包含在这个产品中的过库,您可以使用右边的按钮添加库。","You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab.":"您目前没有任何与这个激活码关联的订阅,选择‘添加’标签后即可添加订阅。","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"您目前没有任何同步计划,可使用右侧的按钮创建同步计划。","You do not have any Installed Products":"您没有任何安装的产品","You must select a content view in order to save your environment.":"必须选择一个内容视图方可保存环境。","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"更改可以保存的环境前必须选择新内容视图。在内容试图选择中使用取消按钮恢复环境选择。","You must select a new content view before your change of lifecycle environment can be saved.":"在生命周期环境的改变被保存前,您需要选择一个新的内容视图。","You must select at least one Content Host in order to apply Errata.":"您必须至少选择一个内容主机方可应用更新。","You must select at least one Errata to apply.":"必须至少选择一个勘误方可应用。","You must select at least one repository.":"您必须至少选择一个库。","Your search returned zero Activation Keys.":"您的搜索返回 0 个激活码。","Your search returned zero Container Image Tags.":"您的搜索返回 0 个容器镜像标签。","Your search returned zero Content Credential.":"您的搜索返回 0 个内容凭证。","Your search returned zero Content Hosts.":"您的搜索返回 0 个内容主机。","Your search returned zero Content View.":"您的搜索返回 0 个内容视图。","Your search returned zero Content Views":"您的搜索返回 0 个内容视图","Your search returned zero Content Views.":"您的搜索返回 0 个内容视图。","Your search returned zero Debs.":"您的搜索返回 0 个 Deb。","Your search returned zero Errata.":"您的搜索返回 0 个勘误。","Your search returned zero Erratum.":"您的搜索返回 0 个勘误。","Your search returned zero Files.":"您的搜索返回 0 个文件。","Your search returned zero Filters.":"您的搜索返回 0 个过滤器。","Your search returned zero Host Collections.":"您的搜索返回 0 个主机集合。","Your search returned zero Hosts.":"您的搜索返回 0 个主机。","Your search returned zero Lifecycle Environments.":"您的搜索返回 0 个生命周期环境。","Your search returned zero Packages.":"您的搜索返回 0 个软件包。","Your search returned zero Products.":"您的搜索返回 0 个产品。","Your search returned zero Puppet Modules.":"您的搜索返回 0 个 Puppet 模块。","Your search returned zero Repositories":"您的搜索返回 0 个库","Your search returned zero Repositories.":"您的搜索返回 0 个库。","Your search returned zero repository sets.":"您的搜索返回 0 个库集合。","Your search returned zero Repository Sets.":"您的搜索返回 0 个库集合。","Your search returned zero results.":"您的搜索返回 0 个结果。","Your search returned zero Subscriptions.":"您的搜索返回 0 个订阅。","Your search returned zero Sync Plans.":"您的搜索返回 0 个同步计划。","Your search returned zero Traces.":"您的搜索返回 0 个跟踪信息。","Your search returned zero versions for {{ $stateParams.moduleName }}":"您的搜索返回 0 个 {{ $stateParams.moduleName }} 版本","Yum Content":"Yum 内容","Yum Metadata Checksum":"Yum 元数据 Checksum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"已在后台启动 Yum 元数据生成进程。点击 <a href=\"{{ taskUrl() }}\">这里</a> 监控该进程。","Yum Repositories":"Yum 库","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Yum 库 <div>{{ library.counts.yum_repositories || 0 }}</div>"});
12
12
  gettextCatalog.setStrings('zh_TW', {"- Date and Type":"- 日期與類型","-- select an interval --":"-- 選擇一個間隔 --","(Not all Activation Keys editable )":"(並非所有的啟動金鑰都可以編輯)","(Not all Content Hosts editable )":"(並非所有的內容主機都可以編輯)","{{ 'Add Selected' | translate }}":"{{ 'Add Selected' | 新增選擇 }}","{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted.":"{{ contentView.name }} 無法刪除,因為一或更多個內容視域版本依然正在推送至某個生命週期環境中。\n 每個內容視域版本皆必須由其生命週期環境中移除,之後內容視域才能被刪除。","{{ errata.hosts_applicable_count || 0 }} Applicable,":"{{ errata.hosts_applicable_count || 0 }} 可套用,","{{ errata.hosts_available_count || 0 }} Installable":"{{ errata.hosts_available_count || 0 }} 可安裝","{{ repository.content_counts.erratum }} Errata":"{{ repository.content_counts.erratum }} 個勘誤","{{ repository.content_counts.erratum || 0 }} Errata":"{{ repository.content_counts.erratum || 0 }} 個勘誤","{{ repository.content_counts.ostree_branch || 0 }} OSTree Branches":"{{ repository.content_counts.ostree_branch || 0 }} OSTree 分支","{{ repository.content_counts.puppet_module || 0 }} Puppet Modules":"{{ repository.content_counts.puppet_module || 0 }} 個 Puppet 模組","{{ repository.content_counts.rpm }} Packages":"{{ repository.content_counts.rpm }} 個套件","{{ repository.content_counts.rpm || 0 }} Packages":"{{ repository.content_counts.rpm || 0 }} 個套件","{{ repository.last_sync_words }} ago":"{{ repository.last_sync_words }} 前","{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}":"{{ totalActivationKeyCount() }} 組啟動金鑰將會被移至 {{ deleteOptions.activationKeys.contentView.name }} 於 {{ deleteOptions.activationKeys.environment.name }} 中","{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}":"{{ totalHostCount() }} 個內容主機將會被移至 {{ deleteOptions.contentHosts.contentView.name }} 於 {{ deleteOptions.contentHosts.environment.name }} 中","{{ type.display }}":"{{ type.display }}","{{ version.errata_counts.total }} Errata":"{{ version.errata_counts.total }} 個勘誤","{{ version.ostree_branch_count }} OSTree Branches":"{{ version.ostree_branch_count }} OSTree 分支","{{ version.package_count }} Packages":"{{ version.package_count }} 個套件","{{ version.puppet_module_count }} Puppet Modules":"{{ version.puppet_module_count }} 個 Puppet 模組","* These marked Content View Versions are from Composite Content Views. Their components needing updating are listed underneath.":"* 這些被標記的內容視域來自於複合式內容視域。它們需要更新的元件列在下方。","%(consumed)s out of %(quantity)s":"%(consumed)s,總數為 %(quantity)s","%count environment(s) can be synchronized: %envs":"%count 個環境可以被同步:%envs","<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>":"<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>","<i class=\"fa fa-star\"></i>\n Starred environments are suggested for promotion.":"<i class=\"fa fa-star\"></i>\n 建議推送打星號的環境。","1 repository sync in progress.":"1 個軟體庫同步正在進行中。","1 successfully synced repository.":"1 個軟體庫已成功同步。","A composite view contains other content views.":"複合視域包含了其它內容視域。","Account":"帳號","Action":"動作","Action Type":"動作類型","Actions":"動作","Activation Key":"啟動金鑰","Activation Key Content":"啟動金鑰的內容","Activation Key removed.":"啟動金鑰已移除。","Activation Key updated":"啟動金鑰已更新","Activation Key:":"啟動金鑰:","Activation Keys":"啟動金鑰","Activation Keys using Version {{ version.version }}":"啟動金鑰使用版本 {{ version.version }}","Add":"新增","Add Content Hosts to:":"新增內容主機至:","Add Content Views":"新增內容視域","Add Errata":"新增勘誤","Add New Environment":"新增環境","Add New Module":"新增模組","Add Package Group":"新增套件群組","Add Repositories":"新增軟體庫","Add Rule":"加入規則","Add Selected":"加入選擇的項目","add some repositories.":"新增一些軟體庫。","Add Subscriptions for Activation Key:":"為啟動金鑰新增訂閱:","Add Subscriptions for Content Host:":"為內容主機新增訂閱:","Add To":"加至","Added %x host collections to activation key \"%y\".":"已新增 %x 主機集項目至啟動金鑰「%y」。","Added %x host collections to content host \"%y\".":"已新增 %x 主機集項目至內容主機「%y」。","Added %x products to sync plan \"%y\".":"已新增 %x 產品至同步計畫「%y」。","Adding Lifecycle Environment to the end of \"{{ priorEnvironment.name }}\"":"新增生命週期環境至 \"{{ priorEnvironment.name }}\" 之後","Advisory":"諮詢","Affected Activation Keys":"受影響的啟動金鑰","Affected Content Hosts":"受影響的內容主機","Affected Hosts":"受影響的主機","Affected repositories have been updated.":"受影響的軟體庫已更新。","All Content Views":"所有內容視域","All Products":"所有產品","All Repositories":"所有軟體庫","All Versions":"所有版本","An error occurred removing the Activation Key:":"移除啟動金鑰時發生錯誤:","An error occurred removing the content hosts.":"移除內容主機時發生錯誤:","An error occurred removing the environment:":"移除環境時發生錯誤:","An error occurred removing the Host Collection:":"移除主機集項目時發生錯誤:","An error occurred removing the subscriptions.":"移除訂閱時發生錯誤:","An error occurred saving the Activation Key:":"儲存啟動金鑰時發生錯誤:","An error occurred saving the Content Host:":"儲存內容主機時發生錯誤:","An error occurred saving the Environment:":"儲存環境時發生了錯誤:","An error occurred saving the Filter:":"儲存篩選條件時發生錯誤:","An error occurred saving the Host Collection:":"儲存主機集項目時發生錯誤:","An error occurred saving the Product:":"儲存產品時發生錯誤:","An error occurred saving the Repository:":"儲存軟體庫時發生錯誤:","An error occurred saving the Sync Plan:":"儲存同步計畫時發生錯誤:","An error occurred trying to auto-attach subscriptions. Please check your log for further information.":"試圖自動連接訂閱服務時發生錯誤。請檢查日誌檔,以取得進一步訊息。","An error occurred updating the Content View:":"更新內容視域時發生錯誤:","Applicable":"可套用","Applicable Errata":"可套用勘誤","Application":"應用程式","Apply":"套用","Apply {{ errata.errata_id }}":"套用 {{ errata.errata_id }}","Apply Errata":"套用勘誤","Apply Errata to Content Host \"{{host.name}}\"?":"是否要套用勘誤至內容主機 \"{{host.name}}\"?","Apply Errata to Content Hosts":"套用勘誤至內容主機","Apply Errata to Content Hosts immediately after publishing.":"發佈後即刻套用勘誤至內容主機。","Apply Selected":"套用所選項目","Apply to Content Hosts":"套用內容主機","Apply to Hosts":"套用至主機","Applying":"正在套用","Arch":"架構","Architecture":"架構","Architectures":"架構","Archived Copy":"已備份的複本","Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?":"確定要新增所選的 {{ table.numSelected }} 部內容主機至選擇的主機集項目中?","Are you sure you want to apply Errata to content host \"{{ host.name }}\"?":"確定要套用勘誤至內容主機 \"{{ host.name }}\"?","Are you sure you want to assign the {{ table.numSelected }} content host(s) selected to {{ selected.contentView.name }} in {{ selected.environment.name }}?":"確定要指定所選的 {{ table.numSelected }} 部內容主機至 {{ selected.environment.name }} 的 {{ selected.contentView.name }}?","Are you sure you want to install {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"確定要在所選的 {{ getSelectedSystemIds().length }} 部系統上安裝 {{ content.content }}?","Are you sure you want to remove {{ content.content }} from the {{ getSelectedSystemIds().length }} system(s) selected?":"確定要從所選擇的 {{ getSelectedSystemIds().length }} 部系統中移除 {{ content.content }}?","Are you sure you want to remove Activation Key \"{{ activationKey.name }}\"?":"確定要移除啟動金鑰 \"{{ activationKey.name }}\"?","Are you sure you want to remove Host Collection \"{{ hostCollection.name }}\"?":"確定要移除主機集項目 \"{{ hostCollection.name }}\"?","Are you sure you want to remove product \"{{ product.name }}\"?":"確定要移除產品 \"{{ product.name }}\"?","Are you sure you want to remove repository \"{{ repository.name }}\"?":"確定要移除軟體庫 \"{{ repository.name }}\"?","Are you sure you want to remove Sync Plan \"{{ syncPlan.name }}\"?":"確定要移除同步計畫 \"{{ syncPlan.name }}\"?","Are you sure you want to remove the {{ table.numSelected }} content host(s) selected from the host collection(s) chosen?":"確定要從所選擇的主機集項目中移除所選擇的 {{ table.numSelected }} 部內容主機?","Are you sure you want to update {{ content.content }} on the {{ getSelectedSystemIds().length }} system(s) selected?":"確定要在所選的 {{ getSelectedSystemIds().length }} 部系統上更新 {{ content.content }}?","As part of this deletion, 1 Content View Version will be deleted.":"本次刪除中包含 {{ versions.length }} 內容視域版本將被移除。","Assign":"指定","Associations":"相聯性","At least one Errata needs to be selected to Apply.":"需要選擇至少一項勘誤來套用。","Attached":"已連接","Author":"作者","Auto-Attach":"自動連接","Automatic":"自動","Available Content Views for Composite Content View:":"可供複合內容視域使用的內容視域:","Available Puppet Modules for Content View:":"可供內容視域使用的 Puppet 模組:","Back":"上一步","Back To Errata List":"回到勘誤清單","Basic Information":"基本資訊","Below are the repository content sets currently available for this content host through its subscriptions. For Red Hat subscriptions, additional content can be made available through the":"以下是目前可以讓此內容透過其訂閱來使用的軟體庫內容。Red Hat 訂閱的額外內容可透過這裡取得:","Bootable":"可開機","Branch Name":"分支名稱","Bug Fix":"錯誤修正","Bug Fix Advisory":"錯誤修正諮詢","Bugfix":"錯誤修正","Build Host":"組建主機","Build Time":"組建時間","Cancel":"取消","Capacity":"容量","Certificate":"憑證","Change assigned Lifecycle Environment or Content View":"變更已指定的生命週期環境或內容視域","Changing default settings for content hosts that register with this activation key requires subscription-manager version 1.10 or newer to be installed on that host.":"為向此註冊金鑰註冊的內容主機改變預設設定,需要在那台主機上安裝 1.10 以上版本的 subscription-manager。","Changing default settings requires subscription-manager version 1.10 or newer to be installed on this host.":"改變預設設定需要在此主機上安裝 1.10 以上版本的 subscription-manager。","Checksum":"Checksum","Checksum Type":"Checksum 類型","Choose a lifecycle environment from the available promotion paths.":"從可用的推送路徑選擇一個生命週期環境。","Click here to check the status of the task.":"點選此處以檢查任務的狀態。","Click here to select Errata for an Incremental Update.":"點選此處以選擇勘誤進行遞增更新。","Close":"關閉","Commit":"交付","Completely remove version?":"完全移除版本?","Components":"元件","Components:":"元件:","Composite":"複合式","Composite View":"複合視域","Composite View?":"複合視域?","Confirm":"確認","Confirm Remove":"確認移除","Confirm Version Removal: Version {{ version.version }}":"確認移除版本:版本 {{ version.version }}","Content":"內容","Content Counts":"內容的數量","Content Host":"內容主機","Content Host Bulk Content":"內容主機的大批內容","Content Host Bulk Subscriptions":"內容主機的大批訂閱","Content Host Content":"內容主機的內容","Content Host Counts":"內容主機計數","Content Host Limit":"內容主機的限制","Content Host Properties":"內容主機的屬性","Content Host Registration":"內容主機的註冊","Content Host Status":"內容主機的狀態","Content Host:":"{{ contentHost.name }","Content Hosts":"內容主機","Content Hosts for Activation Key:":"給啟動金鑰的內容主機:","Content Hosts for:":"給以下使用的內容主機:","Content Hosts using Version {{ version.version }}":"內容主機使用版本 {{ version.version }}","Content Type":"內容類型","Content View":"內容視域","Content View Name":"內容視域名稱","Content View updated.":"內容視域已更新。","Content View Version":"內容視域版本","Content View:":"內容視域:","Content Views":"內容視域","Content Views <div>{{ library.counts.content_views || 0 }}</div>":"內容視域 <div>{{ library.counts.content_views || 0 }}</div>","Content Views for Composite Content View:":"供複合內容視域使用的內容視域:","Content Views for Puppet Module:":"Puppet 模組的內容視域:","Context":"內容","Contract":"合約","Copy Activation Key":"複製啟動金鑰","Cores per Socket":"每個插槽的核心數","Create":"建立","Create Activation Key":"建立啟動金鑰","Create new view":"建立新的檢視項目","Create New View":"建立新的檢視","Create Selected":"建立所選項目","Create Sync Plan":"建立同步計畫","Create view from existing views":"從現有檢視建立檢視項目","Critical":"重要","Current Subscriptions for Activation Key:":"供啟動金鑰使用的現有訂閱:","Currently Selected Puppet Modules":"目前所選的 Puppet 模組","CVEs":"CVE","daily":"每日","Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"每日的 {{ product.sync_plan.sync_date | date:'mediumTime' }}(伺服器時間)","Date":"日期","Date Type":"日期類型","Default":"預設值","Delete Hosts":"刪除主機","Delete Version {{ version.version }}":"刪除版本 {{ version.version }}","Deleted from %s":"從 %s 刪除","Deleting from %count environments.":"從 %count 個環境中刪除。","Deleting from 1 environment.":"從一個環境中刪除。","Deletion from %s":"由 %s 進行刪除程序","Dependencies":"相依性","Description":"描述","Details":"詳細資料","Details for Activation Key:":"啟動金鑰的詳細資料:","Details for Content View:":"內容視域的詳細資料:","Details for Product:":"產品的詳細資料:","Digest":"消化","Disable":"停用","Disabled":"已停用","Discover":"尋找","Distribution":"發行套件","Distribution Information":"散佈資訊","Docker Repositories":"Docker 軟體庫","Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>":"Docker 軟體庫 <div>{{ library.counts.docker_repositories || 0 }}</div>","Done":"完成","Download Policy":"下載政策","Edit":"編輯","Enable":"啟用","Enabled":"已啟用","End Date":"結束日期","Enhancement":"增強","Enter Package Group Name(s)...":"輸入套件群組名稱……","Enter Package Name(s)...":"輸入套件名稱……","Environment":"環境","Environment saved":"環境已儲存","Environments":"環境","Environments List":"環境清單","Equal To":"相當於","Errata":"勘誤","Errata <div>{{ library.counts.errata.total || 0 }}</div>":"勘誤 <div>{{ library.counts.errata.total || 0 }}</div>","Errata Details":"勘誤的詳細資料","Errata Filter:":"勘誤篩選器:","Errata for:":"給以下使用的勘誤:","Errata ID":"勘誤 ID","Errata Installation":"安裝勘誤","Errata successfully added.":"已成功新增勘誤。","Errata successfully removed.":"已成功移除勘誤。","Errata Task List":"勘誤任務清單","Errata Tasks":"勘誤任務","Errata Type":"勘誤類型","Errata:":"勘誤:","Erratum - by ID":"勘誤—透過 ID","Erratum Date Range":"勘誤的日期範圍","Error during upload:":"上傳時發生錯誤。","Event":"事件","Exclude":"排除","Exclude all RPMs with no errata.":"排除所有不含勘誤的 RPM。","Existing Product":"既有的產品","Expires":"有效期限","Export":"匯出","Exported content view":"匯出內容視域","Family":"家族","File Information":"檔案資訊","File too large. Please use the CLI instead.":"檔案太大。請使用 CLI 來代替。","Filename":"檔案名稱","Files":"檔案","Filter":"篩選器","Filter information for:":"給下列使用的篩選器資訊:","Filter Saved":"已儲存篩選器","Filter:":"篩選器:","Filter...":"篩選器……","Filters":"篩選器","Filters for Content View:":"給內容視域用的篩選器:","Filters successfully removed.":"已成功移除篩選器。","Finished At":"完成於","For older operating systems such as Red Hat Enterprise Linux 5 or CentOS 5 it is recommended to use sha1.":"建議在較舊的作業系統上(例如 Red Hat Enterprise Linux 5 或是 CentOS 5)使用 sha1。","Force Promote?":"強制推送?","GPG Key":"GPG 金鑰","Greater Than":"大於","Group":"群組","Group Install":"安裝群組","Group Remove":"移除群組","here":"這裡","Hide affected Activation Keys":"隱藏受影響的啟動金鑰","Hide affected Content Hosts":"隱藏受影響的內容主機","History":"紀錄","History for Content View:":"內容視域的歷史:","Host Collection Management":"管理主機集","Host Collection Membership":"主機集的成員","Host Collection removed.":"已移除主機集。","Host Collection updated":"已更新主機集","Host Collection:":"主機集:","Host Collections":"主機集","Host Collections for:":"給以下使用的主機集:","Host Count":"主機計數","Host Group":"主機群組","Host Limit":"主機限制","Hostname":"主機名稱","Hosts":"主機","hourly":"每小時","Hourly at {{ product.sync_plan.sync_date | date:'m' }} minutes and {{ product.sync_plan.sync_date | date:'s' }} seconds":"每小時於 {{ product.sync_plan.sync_date | date:'m' }} 分 {{ product.sync_plan.sync_date | date:'s' }} 秒","HTTP Proxy":"HTTP 代理","Id":"Id","If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click":"如果您想要移動部分啟動金鑰至不同的內容視域或生命週期檢視環境,請點選","If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually.":"如果您想要移動部分啟動金鑰至不同的內容視域或生命週期檢視環境,請點選<a href=\"{{ activationKeyLink() }}\">此處</a>以進行個別管理。","If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk.":"如果您想要移動部分內容主機至不同的內容視域或環境,請點選<a href=\"{{ contentHostsLink() }}\">此處</a>來大批管理這些內容主機。","Image":"影像","Immediate":"立即","Important":"重要","In order to add a content view to a composite view you must first publish an initial version of the content view.":"要新增內容視域至複合視域,您首先必須出版內容視域的初始版本。","Include":"包含","Include all RPMs with no errata.":"包括所有不含勘誤的 RPM。","Inclusion Type":"包含類型","Incremental Update":"遞增的更新","Install":"安裝","Install Selected":"安裝所選項目","Install the pre-built bootstrap RPM:":"安裝預建立的 bootstrap RPM:","Installable":"可安裝","Installable Errata":"可安裝的勘誤","Installed":"已安裝","Installed Package":"已安裝的套件","Installed Packages":"已安裝的套件","Installed Products":"已安裝的產品","Interfaces":"介面","Interval":"間隔","IPv4 Address":"IPv4 位址","IPv6 Address":"IPv6 位址","Issued":"已簽發","Issued On":"發照日期","Katello Agent":"Katello 代理程式","Label":"標籤","Last Checkin":"前一次簽入","Last Published":"前一次出版","Last Puppet Report":"前一次 Puppet 報告","Last Sync":"前一次同步","Last Updated On":"最後更新於","Latest (Currently %s)":"最新的(目前 %s)","Less Than":"小於","Library":"函示庫","Library Repositories":"函式庫軟體庫","Library Synced Content":"函式庫已同步內容","License":"授權條款","Lifecycle Environment":"生命週期環境","Lifecycle Environment Paths":"生命週期環境的路徑","Lifecycle Environments":"生命週期環境","Limit":"限制","Limit:":"限制:","List":"清單","List/Remove":"列出/移除","Loading Environment Paths...":"正在載入環境路徑...","Loading...":"載入中……","Manage Errata":"管理勘誤","Manage OSTree Branches for Repository:":"管理軟體庫的 OSTree 分支:","Manage Packages":"管理套件","Manage Packages for Repository:":"管理軟體庫的套件:","Manage Puppet Modules for Repository:":"管理軟體庫的 Puppet 模組:","Maximum Version":"最大版本","Minimum Version":"最小版本","Mirror on Sync":"同步上的鏡射","Model":"型號","Moderate":"控管","Module %s removed from Content View.":"模組 %s 已從內容視域中移除。","More Details":"更多詳細資訊","N/A":"N/A","Name":"名稱","Name of the upstream repository you want to sync. Example: 'busybox' or 'fedora/ssh'.":"您希望同步的上游軟體庫的名稱。例如:'busybox' 或是 'fedora/ssh'。","Networking":"網路","Never":"永不","Never synced":"從未同步","New Activation Key":"新增啟動金鑰","New Environment":"新增環境","New Filter":"新的篩選器","New Filter for Content View:":"內容視域的新篩選器:","New Name:":"新名稱:","New Product":"新產品","New Repository":"新軟體庫","New Sync Plan":"新增同步計劃","New sync plan successfully created.":"已建立新的同步計劃。","Next":"下一步","Next Sync":"下個同步","No":"否","No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment.":"在該生命週期環境中的部分啟動金鑰上沒有「編輯(edit)」權限。","No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment.":"在該生命週期環境中的部分內容主機上沒有「編輯」權限。","No \"Promote/Remove\" permissions on the Lifecycle Environment.":"在生命週期環境上沒有「升階(promote)/移除(Remove)」權限。","No activation keys are affected.":"沒有會受到影響的啟動金鑰。","No Content Hosts are affected.":"沒有內容主機會受影響。","No Content Hosts match this Erratum.":"沒有符合此勘誤的內容主機。","No Content Views available, please select another environment.":"沒有可用的內容視域,請選擇另一個環境。","No content views exist for {{selected.environment.name}}":"{{selected.environment.name}} 沒有存在的內容視域","No Host Collections to show, you can add Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"沒有可顯示的主機集,您可在選擇了主選單中,「主機」下的「主機集」之後新增主機集。","No Host Collections to show, you can add Host Collections after selecting the 'Add' tab.":"沒有可顯示的主機集,您可在選擇了「新增」分頁後新增主機集。","No Repositories contain this Erratum.":"沒有包含了此勘誤的軟體庫。","No Repositories contain this Package.":"沒有包含此套件的軟體庫。","None":"無","Not installed":"未安裝","Not Synced":"未同步","Not yet published":"尚未發佈","Number of CPUs":"CPU 數量","On Demand":"視需求","One or more of the selected Errata are not Installable via your published Content View versions running on the selected hosts. The new Content View Versions (specified below)\n will be created which will make this Errata Installable in the host's Environment. This new version will replace the current version in your host's Lifecycle\n Environment. To install these errata immediately on hosts after publishing check the box below.":"一或多個勘誤無法透過您在所選主機上執行的已發佈內容視域版本來進行安裝。新的內容視域版本(指定在下列部分中)\n 將會被建立,以讓此勘誤能安裝在主機的環境中。這個新版本將會取代您主機的生命週期\n 環境中的目前版本。若要在發佈之後即刻在主機上安裝這些勘誤,請選取下方的方塊。","Only show content hosts where the errata is currently installable in the host's Lifecycle Environment.":"僅顯示主機生命週期環境中目前能安裝勘誤的內容主機。","Operating System":"作業系統","Organization":"組織","Original Sync Date":"原始同步日期","OS":"作業系統","OSTree Branches":"OSTree 分支","OSTree Content":"OSTree 內容","OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>":"OSTree 軟體庫 <div>{{ library.counts.ostree_repositories || 0 }}</div>","Package":"套件","Package Actions":"套件動作","Package Filter:":"套件篩選器:","Package Group":"套件群組","Package Group Filter:":"套件群組篩選器:","Package Group successfully added.":"已成功新增套件群組。","Package Group successfully removed.":"已成功移除套件群組。","Package Groups":"套件群組","Package Groups for Repository:":"軟體庫的套件群組:","Package Install":"套件安裝","Package Installation, Removal, and Update":"套件安裝、移除與更新","Package Remove":"套件移除","Package successfully added.":"套件新增成功。","Package successfully removed.":"套件已成功移除。","Package successfully updated.":"套件已成功更新。","Package Update":"套件更新","Package:":"套件:","Package/Group Name":"套件/群組名稱","Packages":"套件","Packages <div>{{ library.counts.packages || 0 }}</div>":"套件 <div>{{ library.counts.packages || 0 }}</div>","Packages for:":"套件屬於:","Parameters":"參數","Password":"密碼","Path":"路徑","Perform":"執行","Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:":"請選擇一個生命週期環境和內容視域以將受影響的啟動金鑰移至:","Please select a Lifecycle Environment and Content View to move these Content Hosts to:":"請選擇一個生命週期環境和內容視域以將這些內容主機移至:","Please select a Lifecycle Environment.":"請選擇生命週期環境。","Please select an environment.":"請選擇一個環境。","Please select one from the list below and you will be redirected.":"請從下方清單中選擇一項,而您將會被重新導向。","Plus %y more errors":"加上 %y 個錯誤","Plus 1 more error":"加上 1 個錯誤","Product":"產品","Product Count":"產品計數","Product Enhancement Advisory":"產品功能增強諮詢","Product information for:":"產品資訊:","Product Management for Sync Plan:":"產品管理以進行同步計劃:","Product Name":"產品名稱","Product Saved":"產品已儲存","Products":"產品","Products <div>{{ library.counts.products || 0 }}</div>":"產品 <div>{{ library.counts.products || 0 }}</div>","Project Page":"專案頁面","Promote":"推送","Promote Content View:":"推送內容視域:","Promote Version":"推送版本","Promote Version {{ version.version }}":"推送版本 {{ version.version }}","Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}":"推送版本至 {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}","Promoted to %s":"已推送至 %s","Promoting to %count environments.":"正在推送至 %count 個環境。","Promoting to 1 environment.":"正在推送至 1 個環境。","Promotion History":"正在推送歷史","Provides":"供應方","Provisioning Details":"佈建詳細資訊","Provisioning Host Details":"佈建主機詳細資訊","Publish Content View:":"發佈內容視域:","Publish New Version":"發佈新版本","Publish via HTTP":"透過 HTTP 發佈","Publish via HTTPS":"透過 HTTPS 發佈","Published":"已發佈","Published At":"已發佈於","Published new version":"發佈新版本","Published Repository Information":"已發佈的軟體庫資訊","Publishing and promoting to %count environments.":"正在發佈並推送至 %count 個環境。","Publishing and promoting to 1 environment.":"正在發佈並推送至 1 個環境。","Puppet Environment":"Puppet 環境","Puppet module added to Content View":"Puppet 模組已新增至內容視域","Puppet Module:":"Puppet 模組:","Puppet Modules":"Puppet 模組","Puppet Modules <div>{{ library.counts.puppet_modules || 0 }}</div>":"Puppet 模組 <div>{{ library.counts.puppet_modules || 0 }}</div>","Puppet Modules for Content View:":"供內容視域使用的 Puppet 模組:","Quantity":"數量","RAM (GB)":"記憶體 (GB)","Range":"範圍","Reboot Suggested":"建議重新啟動","Reboot Suggested?":"建議重新啟動?","Red Hat Repositories page":"Red Hat 軟體庫頁面","Red Hat Repositories page.":"Red Hat 軟體庫頁面。","Refresh Table":"更新表格","Register a Content Host":"註冊內容主機","Register Content Host":"註冊內容主機","Registered":"已註冊","Registered By":"由...註冊","Registry URL":"登錄檔網址","Release":"發行版","Release Version":"發行版本","Release Version:":"發行版本:","Removal of selected repositories initiated successfully.":"移除所選軟體庫初始成功。","Remove":"移除","Remove Activation Key \"{{ activationKey.name }}\"?":"確定要移除啟動金鑰 \"{{ activationKey.name }}\"?","Remove Content View":"移除內容視域","Remove Content Views":"移除內容視域","Remove Errata":"移除勘誤","Remove From":"從...移除","Remove Host Collection \"{{ hostCollection.name }}\"?":"確定要移除主機集 \"{{ hostCollection.name }}\"?","Remove Module":"移除模組","Remove Package Group":"移除套件群組","Remove Packages":"移除套件","Remove Product":"移除產品","Remove Product \"{{ product.name }}\"?":"確定要移除產品 \"{{ product.name }}\"?","Remove Puppet Modules":"移除 Puppet 模組","Remove Repositories":"移除軟體庫","Remove Repository":"移除軟體庫","Remove Repository \"{{ repository.name }}\"?":"確定要移除軟體庫 \"{{ repository.name }}\"?","Remove Rule":"移除規則","Remove Selected":"移除已選擇的項目","Remove Successful.":"移除成功。","Remove Sync Plan":"移除同步計劃","Remove Sync Plan \"{{ syncPlan.name }}\"?":"確定要移除同步計畫 \"{{ syncPlan.name }}\"?","Remove Tags":"移除標籤","Remove Version":"移除版本","Remove Version Confirmation":"確認移除版本","Removed %x host collections from activation key \"%y\".":"已從啟動金鑰 \"%y\" 移除了 %x 個主機集。","Removed %x host collections from content host \"%y\".":"已從內容主機 \"%y\" 移除了 %x 個主機集。","Removed %x products from sync plan \"%y\".":"已從同步計劃 \"%y\" 移除了 %x 個產品。","Removing Repositories":"移除軟體庫","Repo Discovery":"搜尋軟體庫","Repositories":"軟體庫","Repositories containing Errata {{ errata.errata_id }}":"包含勘誤 {{ errata.errata_id }} 的軟體庫","Repositories containing package {{ package.nvrea }}":"軟體庫包含套件 {{ package.nvrea }}","Repositories for Content View:":"內容視域的軟體庫:","Repositories for Errata:":"勘誤的軟體庫:","Repositories for Filter:":"篩選器的軟體庫:","Repositories for Package:":"套件的軟體庫:","Repositories for Product:":"產品的軟體庫:","Repositories for Puppet Module:":"Puppet 模組的軟體庫:","Repository":"軟體庫","Repository \"%s\" successfully deleted":"已成功刪除軟體庫 \"%s\"","Repository %s successfully created.":"已成功建立軟體庫 %s。","Repository Count":"軟體庫計數","Repository created":"軟體庫已建立","Repository Discovery":"探索軟體庫","Repository Label":"軟體庫標籤","Repository Name":"軟體庫名稱","Repository Saved.":"已儲存軟體庫。","Repository Selection":"軟體庫選擇","Repository Type":"存放庫類型","Repository URL":"軟體庫 URL","Repository:":"軟體庫:","Requires":"需要","Restart":"重新啟動","Result":"結果","Role":"角色","RPM":"RPM","RPM Name":"RPM 名稱","RPMs":"RPM","Run Auto-Attach":"執行自動連結","Run Sync Plan":"執行同步計劃","Save":"儲存","Save Successful.":"儲存成功。","Security":"安全性","Security Advisory":"安全性諮詢","Select":"選擇","Select a Content Source:":"選擇一項內容來源:","Select A New Puppet Module To Add":"選擇欲新增的 Puppet 模組","Select a Version":"選擇版本","Select Action":"選擇動作","Select an Available Version of {{ $stateParams.moduleName }}":"選擇可用的 {{ $stateParams.moduleName }} 版本","Select an Organization":"選擇組織","Select Content View":"選擇內容視域","Select new version":"選擇新版本","Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:":"選擇您希望由哪個生命週期環境移除版本 {{ version.version }}:","Select Version":"選擇版本","Selecting this option will result in contents that are no longer part of the upstream repository being removed during synchronization.":"選擇此選項會導致不再是上游軟體庫的內容在同步過程中被移除。","Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option.":"選擇此選項將會造成版本被完全刪除,並且不再能推送。您必須由所有生命週期環境中移除該版本,才能選擇此選項。","Service Level":"服務等級","Severity":"嚴重性","Show affected Activation Keys":"顯示受影響的啟動金鑰","Show affected Content Hosts":"顯示受影響的內容主機","Show All":"顯示全部","Size":"大小","Sockets":"插槽","Solution":"解決方案","Something went wrong when retrieving the resource.":"取得資源時發生錯誤:","Source":"來源","Source RPM":"來源 RPM","Source RPMs":"來源 RPM","SSL Client Key":"SSL 客戶端金鑰","Start Date":"起始日期","Start Time":"起始時間","Started At":"起始於","Starting":"正在開始","Starts":"起始","State":"狀態","Status":"狀態","Subscription Details":"訂閱詳細資訊","Subscription Management":"訂閱管理","Subscription Status":"訂閱狀態","subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"":"subscription-manager register --org=\"{{ activationKey.organization.label }}\" --activationkey=\"{{ activationKey.name }}\"","Subscriptions":"訂閱服務","Subscriptions for Activation Key:":"啟動金鑰的訂閱:","Subscriptions for Content Host:":"內容主機的訂閱:","Subscriptions for:":"訂閱屬於:","Success!":"成功!","Successfully added %s subscriptions.":"已成功新增了 %s 個訂閱。","Successfully deleted %cv version %ver.":"已成功刪除了 %cv 版本 %ver。","Successfully initiated deletion of %cv version %ver.":"已成功開始進行 %cv 版本 %ver 的刪除程序。","Successfully initiated promotion of %cv version %ver to %env.":"已成功開始將 %cv 版本 %ver 推送至 %env。","Successfully initiated removal of %cv version %ver.":"已成功開始 %cv 版本 %ver 的移除程序。","Successfully promoted %cv version %ver to %env":"已成功推送 %cv 版本 %ver 至 %env","Successfully published %cv version %ver and promoted to Library":"已成功發佈 %cv 版本 %ver 並推送至函式庫","Successfully removed %cv version %ver from environments: %env":"已成功由環境 %env 移除了 %cv 版本 %ver","Successfully removed %s items.":"成功移除了 %s 個項目。","Successfully removed %s subscriptions.":"已成功移除了 %s 項訂閱。","Successfully removed 1 item.":"已成功移除了 1 個項目。","Successfully updated subscriptions.":"已成功更新了訂閱。","Summary":"概要","Support Level":"支援等級","Sync":"同步","Sync Enabled":"已啟用同步","Sync Interval":"同步間隔","Sync Now":"現在同步","Sync Plan":"同步計劃","Sync Plan %s has been deleted.":"已刪除同步計劃 %s。","Sync Plan Saved":"已儲存同步計劃","Sync Plan:":"同步計劃:","Sync Plans":"同步計劃","Sync State":"同步狀態","Sync Status":"同步狀態","Synced manually, no interval set.":"已手動同步,未設置間隔。","Synchronization is about to start...":"同步即將開始……","Synchronization is being cancelled...":"同步即將取消……","Tags":"標籤","Task Details":"任務的詳細資訊","Tasks":"任務","The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use.":"列在以下的啟動金鑰目前正使用此內容視域版本。在刪除此版本之前,您必須將這些啟動金鑰移至一個未使用此版本的 Lifecycle Environment 中。","The archive of this Version will be deleted. This Version will not be available once deletion is complete.":"此版本的封存檔案將會被刪除。當刪除程序完成後,此版本將無法使用。","The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment.":"此版本的封存檔案將不會被刪除。此版本依然能被推送至生命週期環境中。","The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use.":"列在以下的內容主機目前正使用此內容視域版本。在刪除此版本之前,您必須將這些內容主機移至一個未使用此版本的環境中。","The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts.":"內容視域或生命週期環境需要更新才能讓這些主機使用勘誤。","The following actions can be performed on content hosts in this host collection:":"下列動作能在此主機集中的內容主機上執行:","The host has not reported any installed packages, registering with subscription-manager should cause these to be reported.":"主機未回報任何以安裝套件,使用 subscription-manager 註冊會導致這些被回報。","The page you are attempting to access requires selecting a specific organization.":"您嘗試存取的網頁需要選擇特定組織。","The selected environment contains no Content Views, please select a different environment.":"選擇的環境不包含內容視域,請選擇一個不同的環境。","There are {{ errataCount }} total Errata in this organization but none match the above filters.":"此組織總共有 {{ errataCount }} 個勘誤,但沒有一個與上述篩選相符。","There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above.":"目前沒有與此內容視域相聯的軟體庫,您可藉由點選上方的「新增」分頁來新增軟體庫。","There are currently no repositories to add to this Content View,":"目前沒有可加入此內容視域的軟體庫。","There are no Content Views in this Environment.":"此環境中沒有內容視域。","There are no Content Views that match the criteria.":"沒有符合條件的內容視域。","There are no Errata associated with this Content Host to display.":"沒有與此內容主機相聯的勘誤可顯示。","There are no Errata in this organization. Create one or more Products with Errata to view Errata on this page.":"這個組織中沒有勘誤。請建立一或更多項產品與勘誤以在此網站上檢視勘誤。","There are no Errata to display.":"沒有可顯示的勘誤。","There are no Host Collections available. You can create new Host Collections after selecting 'Host Collections' under 'Hosts' in main menu.":"沒有可用的主機集。您可在選擇了主選單中,「主機」下的「主機集」之後建立新的主機集。","There are no Packages in this organization. Create one or more Products with Packages to view Packages on this page.":"這個組織中沒有套件。請建立一或更多項產品與套件以在此網站上檢視套件。","There is currently an Incremental Update task in progress. This update must finish before applying existing updates.":"目前正有一項遞增更新任務進行中。在套用既有更新之前,這項更新必須先完成。","This activation key is not associated with any content hosts.":"此啟動金鑰不與任何內容主機相聯。","This activation key may be used during system registration. For example:":"此啟動金鑰能在進行系統註冊時使用。例如:","This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right.":"這個內容視域沒有任何版本,請藉由使用右方的「發佈新版本」按鈕來建立您的第一個內容視域版本。","This filter applies only to a subset of repositories in the content view.":"篩選器僅適用於內容視域中的軟體庫子集。","This filter applies to all repositories in the content view (current and future).":"此篩選器適用於內容視域(目前及未來)中的所有軟體庫。","This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below.":"基於以下原因之一,此版本無法由部分生命週期環境中刪除。","This Version is not associated with any Lifecycle Environments.":"此版本未與任何生命週期環境相聯。","This version will be removed from:":"這版本將會由此移除:","Title":"標題","to manage them individually.":"來為它們進行個別的管理。","To register a content host to this server, follow these steps.":"若要向這部伺服器註冊內容主機,請依照下列步驟進行:","Topic":"主題","Type":"類型","Unable to determine version":"無法決定版本","Unknown":"不明","Unlimited Content Hosts:":"無限的內容主機:","Unregister Host":"取消註冊主機","Update":"更新","Update Packages":"升級套件","Update Repositories":"更新軟體庫","Update Sync Plan":"更新同步計劃","Updated":"已更新","Updated errata filter -":"更新勘誤篩選器 -","Updated On":"更新於","Upload":"上傳","Upload File":"上傳檔案","Upload Package":"上傳套件","Upload Puppet Module":"上傳 Puppet 模組","Uploading...":"正在上傳...","Upstream Repository Name":"上游軟體庫名稱","Url":"網址","URL of the registry you want to sync. Example: https://registry-1.docker.io/":"您希望與其進行同步的登錄檔之網址。例如 https://registry-1.docker.io/","User":"使用者","Username":"使用者名稱","Variant":"變體","Verify SSL":"驗證 SSL","Version":"版本","Version Deletion":"版本刪除","Version Details":"版本詳細資訊","Version:":"版本:","Versions":"版本","Versions for Content View:":"內容視域的版本:","Versions for Puppet Module:":"Puppet 模組的版本:","via Katello agent":"透過 Katello 代理程式","via Katello Agent":"透過 Katello 代理程式","via remote execution":"透過遠端執行","via remote execution - customize first":"透過遠端執行 - 先自訂","Virtual Guest":"虛擬客座","Virtual Guests":"虛擬客座端","Virtual Host":"虛擬主機","weekly":"每週","Weekly on {{ product.sync_plan.sync_date | date:'EEEE' }} at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)":"每週在 {{ product.sync_plan.sync_date | date:'EEEE' }} 上於 {{ product.sync_plan.sync_date | date:'mediumTime' }}(伺服器時間)","When Auto Attach is disabled, registering systems will be attached to all associated subscriptions.":"當停用了自動連接時,註冊的系統將會被連至所有相聯的訂閱。","Working":"處理","Yes":"是","You cannot remove these repositories because they belong to a Red Hat product.":"您無法移除這些軟體庫,因為它們屬於某項 Red Hat 產品。","You cannot remove these repositories because you do not have permission.":"您無法移除這些軟體庫,因為您沒有權限。","You cannot remove this product because it is a Red Hat product.":"您無法移除這項產品,因為這是一項 Red Hat 產品。","You cannot remove this product because it was published to a content view.":"您無法移除這項產品,因為它已發佈至某個內容視域。","You cannot remove this product because you do not have permission.":"您無法移除這項產品,因為您沒有權限。","You cannot remove this repository because it is a Red Hat repository.":"您無法移除此軟體庫,因為它是 Red Hat 的軟體庫。","You cannot remove this repository because it was published to a content view.":"您無法移除此軟體庫,因為它已發佈至某個內容視域。","You cannot remove this repository because you do not have permission.":"您無法移除此軟體庫,因為您沒有權限。","You currently don't have any Activation Keys, you can add Activation Keys using the button on the right.":"您目前沒有任何啟動金鑰,您可使用右方的按鈕來新增啟動金鑰。","You currently don't have any Content Hosts, you can create new Content Hosts by selecting Contents Host from main menu and then clicking the button on the right.":"您目前沒有任何內容主機,您可藉由從主選單選擇內容主機然後按下右方的按鈕來建立新的內容主機。","You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions.":"您目前沒有任何內容主機,您可藉由點選右方的按鈕並依照指示進行,以註冊內容主機。","You currently don't have any Content Views. A Content View can be added by using the button on the right.":"您目前沒有任何內容視域。內容視域能藉由使用右方的按鈕來新增。","You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right.":"您目前在此內容視域中沒有任何篩選器,您可藉由使用右方的按鈕來新增篩選器。","You currently don't have any Host Collections, you can add Host Collections using the button on the right.":"您目前沒有任何主機集,您可藉由使用右方的按鈕來新增主機集。","You currently don't have any Hosts in this Host Group, you can add Content Hosts after selecting the 'Add' tab.":"您目前在這個主機群組中沒有任何主機,您可在選擇了「新增」分頁後新增內容主機。","You currently don't have any Products to subscribe to, you can add Products after selecting 'Products' under 'Content' in the main menu":"您目前沒有任何能訂閱的產品,您可在選擇了主選單中「內容」下的「產品」之後來新增產品。","You currently don't have any Products<span bst-feature-flag=\"custom_products\">, you can add Products using the button on the right</span>.":"您目前沒有任何產品<span bst-feature-flag=\"custom_products\">,您可藉由使用右方的的按鈕來新增產品。</span>。","You currently don't have any Puppet Modules included in this Content View, you can add Puppet Modules using the button on the right.":"您目前沒有任何 Puppet 模組包含在此內容視域中,您可藉由使用右方的按鈕來新增 Puppet 模組。","You currently don't have any Puppet Modules.":"您目前沒有任何 Puppet 模組。","You currently don't have any Repositories included in this Product, you can add Repositories using the button on the right.":"您目前沒有任何軟體庫包含在這項產品中,您可藉由使用右方的按鈕來新增軟體庫。","You currently don't have any Subscriptions associated with this Activation Key, you can add Subscriptions after selecting the 'Add' tab.":"您目前沒有任何與此啟動金鑰相聯的訂閱,您可在選擇了「新增」分頁後新增訂閱。","You currently don't have any Sync Plans. A Sync Plan can be created by using the button on the right.":"您目前沒有任何同步計畫。同步計畫能藉由使用右方的按鈕來建立。","You do not have any Installed Products":"您尚未安裝任何產品","You must select a content view in order to save your environment.":"您必須選擇一項內容視域以儲存您的環境。","You must select a new content view before your change of environment can be saved. Use the cancel button on content view selection to revert your environment selection.":"若要儲存您的環境變更,您必須先選擇新的內容視域。請使用內容視域上的取消按鈕來復原您的環境選擇。","You must select at least one Content Host in order to apply Errata.":"您必須選擇至少一個內容主機才能套用勘誤。","You must select at least one Errata to apply.":"您至少必須選擇一個勘誤。","You must select at least one repository.":"您至少必須選擇一個軟體庫。","Yum Content":"Yum 內容","Yum Metadata Checksum":"Yum Metadata Checksum","Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress.":"已在背景開始了 Yum metadata 的產生。請按<a href=\"{{ taskUrl() }}\">此</a>來監控進度。","Yum Repositories":"Yum 軟體庫","Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>":"Yum 軟體庫 <div>{{ library.counts.yum_repositories || 0 }}</div>"});
@@ -21,7 +21,10 @@ angular.module('Bastion.organizations').service('FencedPages', ['$state',
21
21
  'products',
22
22
  'puppet-modules',
23
23
  'subscriptions',
24
- 'sync-plans'
24
+ 'sync-plans',
25
+ 'files',
26
+ 'debs',
27
+ 'ostree-branches'
25
28
  ];
26
29
 
27
30
  function getRootPath(path) {
@@ -43,7 +46,13 @@ angular.module('Bastion.organizations').service('FencedPages', ['$state',
43
46
 
44
47
  this.isFenced = function (toState) {
45
48
  var stateUrl = $state.href(toState);
46
- return fencedPages.indexOf(getRootPath(stateUrl)) !== -1;
49
+ var rootPath;
50
+ if (_.isEmpty(stateUrl)) {
51
+ rootPath = toState.templateUrl.replace('_', '-').split('/')[0];
52
+ } else {
53
+ rootPath = getRootPath(stateUrl);
54
+ }
55
+ return fencedPages.indexOf(rootPath) !== -1;
47
56
  };
48
57
  }
49
58
  ]);
@@ -9,8 +9,6 @@
9
9
  * Selecting an organization
10
10
  */
11
11
  function OrganizationSelectorController($scope, Organization, CurrentOrganization, $window) {
12
- var transitionState;
13
-
14
12
  $scope.selectedOrganization = {};
15
13
 
16
14
  // TODO: per_page hack necessary because of http://projects.theforeman.org/issues/21800
@@ -18,21 +16,14 @@
18
16
  $scope.organizations = response.results;
19
17
  });
20
18
 
19
+ $scope.changeOrgAction = function() {
20
+ $window.location.href = $scope.$stateParams.toState;
21
+ };
22
+
21
23
  $scope.selectOrganization = function (organization) {
22
24
  var label = organization.id + '-' + organization.name.replace("'", '').replace(".", '');
23
-
24
- Organization.select({label: label}).$promise.catch(function () {
25
- $window.location.href = transitionState;
26
- });
25
+ Organization.select({label: label}).$promise.then($scope.changeOrgAction, $scope.changeOrgAction);
27
26
  };
28
-
29
- $scope.$on('$stateChangeSuccess', function (event, toState, toParams) {
30
- transitionState = toParams.toState;
31
-
32
- if (CurrentOrganization) {
33
- $window.location.href = transitionState;
34
- }
35
- });
36
27
  }
37
28
 
38
29
  angular
@@ -27,7 +27,7 @@ angular.module('Bastion.ostree-branches').controller('OstreeBranchRepositoriesCo
27
27
  $scope.controllerName = 'katello_repositories';
28
28
  $scope.table = repositoriesNutupane.table;
29
29
  $scope.table.initialLoad = false;
30
- repositoriesNutupane.masterOnly = true;
30
+ repositoriesNutupane.primaryOnly = true;
31
31
  repositoriesNutupane.setSearchKey('repositoriesSearch');
32
32
 
33
33
  environment = Environment.queryUnpaged(function (response) {
@@ -27,7 +27,7 @@ angular.module('Bastion.packages').controller('PackageRepositoriesController',
27
27
  $scope.controllerName = 'katello_repositories';
28
28
  $scope.table = repositoriesNutupane.table;
29
29
  $scope.table.initialLoad = false;
30
- repositoriesNutupane.masterOnly = true;
30
+ repositoriesNutupane.primaryOnly = true;
31
31
  repositoriesNutupane.setSearchKey('repositoriesSearch');
32
32
 
33
33
  environment = Environment.queryUnpaged(function (response) {
@@ -26,7 +26,7 @@ angular.module('Bastion.packages').controller('PackagesController',
26
26
 
27
27
  nutupane = $scope.nutupane = new Nutupane(Package, params);
28
28
  $scope.controllerName = 'katello_erratum_packages';
29
- nutupane.masterOnly = true;
29
+ nutupane.primaryOnly = true;
30
30
  $scope.table = nutupane.table;
31
31
  $scope.removeRow = nutupane.removeRow;
32
32
 
@@ -13,6 +13,7 @@ angular.module('Bastion.products').factory('ProductBulkAction',
13
13
  return BastionResource('katello/api/v2/products/bulk/:action', {}, {
14
14
  removeProducts: {method: 'PUT', params: {action: 'destroy'}},
15
15
  syncProducts: {method: 'PUT', params: {action: 'sync'}},
16
+ verifyChecksumProducts: {method: 'PUT', params: {action: 'verify_checksum'}},
16
17
  updateProductSyncPlan: {method: 'PUT', params: {action: 'sync_plan'}},
17
18
  updateProductHttpProxy: {method: 'PUT', params: {action: 'http_proxy'}}
18
19
  });
@@ -31,7 +31,7 @@ angular.module('Bastion.products').controller('ProductsBulkSyncPlanModalControll
31
31
 
32
32
  nutupane = new Nutupane(SyncPlan, params, 'queryPaged');
33
33
  $scope.controllerName = 'katello_sync_plans';
34
- nutupane.masterOnly = true;
34
+ nutupane.primaryOnly = true;
35
35
 
36
36
  $scope.table = nutupane.table;
37
37
 
@@ -29,7 +29,7 @@ angular.module('Bastion.products').controller('ProductRepositoriesController',
29
29
  'paged': true
30
30
  });
31
31
  $scope.controllerName = 'katello_repositories';
32
- repositoriesNutupane.masterOnly = true;
32
+ repositoriesNutupane.primaryOnly = true;
33
33
 
34
34
  function getParams() {
35
35
  return {
@@ -72,7 +72,7 @@ angular.module('Bastion.repositories').controller('RepositoryManageContentContro
72
72
  'repository_id': $scope.$stateParams.repositoryId
73
73
  });
74
74
  $scope.table = $scope.contentNutupane.table;
75
- $scope.contentNutupane.masterOnly = true;
75
+ $scope.contentNutupane.primaryOnly = true;
76
76
 
77
77
  $scope.controllerName = contentTypes[$scope.currentState].controllerName;
78
78
 
@@ -70,6 +70,12 @@
70
70
  }, errorHandler);
71
71
  };
72
72
 
73
+ $scope.verifyChecksum = function (repository) {
74
+ Repository.verifyChecksum({id: repository.id}, function (task) {
75
+ $state.go('product.repository.tasks.details', {taskId: task.id});
76
+ }, errorHandler);
77
+ };
78
+
73
79
  $scope.republishRepository = function (repository) {
74
80
  Repository.republish({id: repository.id}, function (task) {
75
81
  $state.go('product.repository.tasks.details', {taskId: task.id});
@@ -32,6 +32,12 @@
32
32
  </a>
33
33
  </li>
34
34
 
35
+ <li role="menuitem" ng-hide="hideSyncButton(repository, true)" ng-class="{disabled: disableSyncLink()}">
36
+ <a ng-click="verifyChecksum(repository)" disable-link="disableSyncLink()" translate>
37
+ Verify Content Checksum
38
+ </a>
39
+ </li>
40
+
35
41
  <li role="menuitem" ng-hide="syncInProgress(repository.last_sync) || denied('edit_products', product)">
36
42
  <a ng-click="republishRepository(repository)" translate>
37
43
  Republish Repository Metadata
@@ -90,4 +96,4 @@
90
96
  <div data-block="content">
91
97
  <section ui-view></section>
92
98
  </div>
93
- </div>
99
+ </div>
@@ -150,15 +150,6 @@
150
150
  </dd>
151
151
  </span>
152
152
 
153
- <span ng-show="repository.content_type === 'yum' && !product.redhat">
154
- <dt translate>Enable on Registration</dt>
155
- <dd bst-edit-checkbox="repository.auto_enabled"
156
- formatter="booleanToYesNo"
157
- on-save="save(repository)"
158
- readonly="denied('edit_products', product)">
159
- </dd>
160
- </span>
161
-
162
153
  <span>
163
154
  <dt translate>HTTP Proxy</dt>
164
155
  <dd bst-edit-custom="repository.http_proxy_policy"
@@ -62,7 +62,7 @@ angular.module('Bastion.repositories').controller('NewRepositoryController',
62
62
  };
63
63
 
64
64
  $scope.repository = new Repository({'product_id': $scope.$stateParams.productId, unprotected: true,
65
- 'checksum_type': null, 'mirror_on_sync': true, 'verify_ssl_on_sync': true, 'auto_enabled': true,
65
+ 'checksum_type': null, 'mirror_on_sync': true, 'verify_ssl_on_sync': true,
66
66
  'download_policy': BastionConfig.defaultDownloadPolicy, 'arch': null,
67
67
  'ostree_upstream_sync_policy': 'latest'});
68
68
 
@@ -220,17 +220,6 @@
220
220
  </p>
221
221
  </div>
222
222
 
223
- <div class="checkbox" ng-if="repository.content_type === 'yum'">
224
- <label>
225
- <input id="auto_enabled" name="auto_enabled" ng-model="repository.auto_enabled" type="checkbox"/>
226
- <span translate>Enable on Registration</span>
227
- </label>
228
-
229
- <p class="help-block" translate>
230
- Selecting this option will automatically enable this Repository when a Host registers and consumes this subscription.
231
- </p>
232
- </div>
233
-
234
223
  <div bst-form-group label="{{ 'HTTP Proxy Policy' | translate }}">
235
224
  <select required
236
225
  id="http_proxy_policy"
@@ -17,6 +17,7 @@ angular.module('Bastion.repositories').factory('Repository',
17
17
  {
18
18
  update: { method: 'PUT' },
19
19
  sync: { method: 'POST', params: { action: 'sync' } },
20
+ verifyChecksum: { method: 'POST', params: { action: 'verify_checksum' }},
20
21
  removePackages: { method: 'PUT', params: { action: 'remove_packages'}},
21
22
  removeContent: { method: 'PUT', params: { action: 'remove_content'}},
22
23
  autocomplete: {method: 'GET', isArray: true, params: {id: 'auto_complete_search'}},
@@ -53,7 +53,7 @@ angular.module('Bastion.products').controller('ProductsController',
53
53
  $scope.disableRepoDiscovery = true;
54
54
  nutupane = new Nutupane(Product, params, undefined, nutupaneParams);
55
55
  $scope.controllerName = 'katello_products';
56
- nutupane.masterOnly = true;
56
+ nutupane.primaryOnly = true;
57
57
  nutupane.refresh().then(function () {
58
58
  $scope.disableRepoDiscovery = false;
59
59
  });
@@ -101,6 +101,21 @@ angular.module('Bastion.products').controller('ProductsController',
101
101
  ProductBulkAction.syncProducts(getBulkParams(), success, bulkError);
102
102
  };
103
103
 
104
+ $scope.verifyChecksumProducts = function () {
105
+ var success;
106
+
107
+ success = function (task) {
108
+ var message = translate("Product verify checksum has been initiated in the background.");
109
+ Notification.setSuccessMessage(message, {
110
+ link: {
111
+ children: translate("Click to monitor task progress."),
112
+ href: translate("/foreman_tasks/tasks/%taskId").replace('%taskId', task.id)
113
+ }});
114
+ };
115
+
116
+ ProductBulkAction.verifyChecksumProducts(getBulkParams(), success, bulkError);
117
+ };
118
+
104
119
  $scope.goToDiscoveries = function () {
105
120
  nutupane.table.rows = [];
106
121
  nutupane.table.resource.results = [];
@@ -36,6 +36,12 @@
36
36
  </a>
37
37
  </li>
38
38
 
39
+ <li role="menuitem" ng-show="permitted('edit_products')" ng-class="{disabled: table.numSelected === 0}">
40
+ <a ng-click="verifyChecksumProducts()" disable-link="table.numSelected === 0" translate>
41
+ Verify Content Checksum
42
+ </a>
43
+ </li>
44
+
39
45
  <li role="menuitem" ng-show="permitted('edit_products')" ng-class="{disabled: table.numSelected === 0}">
40
46
  <a ng-click="openSyncPlanModal()" disable-link="table.numSelected === 0" translate>
41
47
  Manage Sync Plan
@@ -16,7 +16,7 @@
16
16
 
17
17
  contentViewsNutupane = new Nutupane(ContentViewVersion, params);
18
18
  $scope.controllerName = 'katello_content_views';
19
- contentViewsNutupane.masterOnly = true;
19
+ contentViewsNutupane.primaryOnly = true;
20
20
  contentViewsNutupane.setSearchKey('contentViewsSearch');
21
21
 
22
22
  $scope.table = contentViewsNutupane.table;