katello 4.8.4 → 4.9.0.rc1

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

Potentially problematic release.


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

Files changed (481) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/hosts/host_and_hostgroup_edit.js +40 -4
  3. data/app/assets/javascripts/katello/locale/bn/katello.js +1 -0
  4. data/app/assets/javascripts/katello/locale/cs/katello.js +1 -0
  5. data/app/assets/javascripts/katello/locale/de/katello.js +1 -0
  6. data/app/assets/javascripts/katello/locale/en/katello.js +1 -0
  7. data/app/assets/javascripts/katello/locale/es/katello.js +1 -0
  8. data/app/assets/javascripts/katello/locale/fr/katello.js +1 -0
  9. data/app/assets/javascripts/katello/locale/gu/katello.js +1 -0
  10. data/app/assets/javascripts/katello/locale/hi/katello.js +1 -0
  11. data/app/assets/javascripts/katello/locale/it/katello.js +1 -0
  12. data/app/assets/javascripts/katello/locale/ja/katello.js +1 -0
  13. data/app/assets/javascripts/katello/locale/ka/katello.js +1 -0
  14. data/app/assets/javascripts/katello/locale/kn/katello.js +1 -0
  15. data/app/assets/javascripts/katello/locale/ko/katello.js +1 -0
  16. data/app/assets/javascripts/katello/locale/locale/katello.js +1 -0
  17. data/app/assets/javascripts/katello/locale/mr/katello.js +1 -0
  18. data/app/assets/javascripts/katello/locale/or/katello.js +1 -0
  19. data/app/assets/javascripts/katello/locale/pa/katello.js +1 -0
  20. data/app/assets/javascripts/katello/locale/pt/katello.js +1 -0
  21. data/app/assets/javascripts/katello/locale/pt_BR/katello.js +1 -0
  22. data/app/assets/javascripts/katello/locale/ru/katello.js +1 -0
  23. data/app/assets/javascripts/katello/locale/ta/katello.js +1 -0
  24. data/app/assets/javascripts/katello/locale/te/katello.js +1 -0
  25. data/app/assets/javascripts/katello/locale/zh_CN/katello.js +1 -0
  26. data/app/assets/javascripts/katello/locale/zh_TW/katello.js +1 -0
  27. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +10 -0
  28. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -0
  29. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +2 -0
  30. data/app/controllers/katello/api/v2/content_views_controller.rb +22 -12
  31. data/app/controllers/katello/api/v2/environments_controller.rb +5 -1
  32. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +1 -1
  33. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +1 -2
  34. data/app/controllers/katello/api/v2/organizations_controller.rb +11 -0
  35. data/app/controllers/katello/api/v2/repositories_controller.rb +4 -3
  36. data/app/controllers/katello/api/v2/repository_sets_controller.rb +13 -4
  37. data/app/controllers/katello/api/v2/simple_content_access_controller.rb +1 -3
  38. data/app/controllers/katello/concerns/api/api_controller.rb +2 -2
  39. data/app/controllers/katello/concerns/content_facet_hosts_controller_extensions.rb +1 -1
  40. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +6 -4
  41. data/app/lib/actions/candlepin/product/content_add.rb +13 -1
  42. data/app/lib/actions/candlepin/product/content_update.rb +2 -1
  43. data/app/lib/actions/katello/agent_action.rb +3 -4
  44. data/app/lib/actions/katello/bulk_agent_action.rb +1 -4
  45. data/app/lib/actions/katello/content_view/publish.rb +1 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +1 -0
  47. data/app/lib/actions/katello/host/update_content_view.rb +2 -4
  48. data/app/lib/actions/katello/organization/simple_content_access/enable.rb +0 -10
  49. data/app/lib/actions/katello/organization/simple_content_access/toggle.rb +2 -12
  50. data/app/lib/actions/katello/product/content_create.rb +2 -2
  51. data/app/lib/actions/katello/repository/destroy.rb +15 -7
  52. data/app/lib/actions/katello/repository/update.rb +23 -1
  53. data/app/lib/actions/pulp3/abstract_async_task.rb +2 -0
  54. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +5 -12
  55. data/app/lib/katello/concerns/base_template_scope_extensions.rb +34 -2
  56. data/app/lib/katello/event_daemon/runner.rb +8 -4
  57. data/app/lib/katello/repo_discovery.rb +3 -1
  58. data/app/lib/katello/resources/cdn/katello_cdn.rb +4 -8
  59. data/app/lib/katello/util/default_enablement_migrator.rb +183 -0
  60. data/app/models/katello/activation_key.rb +4 -0
  61. data/app/models/katello/alternate_content_source.rb +13 -8
  62. data/app/models/katello/candlepin/repository_mapper.rb +0 -1
  63. data/app/models/katello/concerns/content_view_filter_rule_common.rb +42 -0
  64. data/app/models/katello/concerns/host_managed_extensions.rb +9 -40
  65. data/app/models/katello/concerns/smart_proxy_extensions.rb +24 -23
  66. data/app/models/katello/content.rb +9 -0
  67. data/app/models/katello/content_view.rb +99 -4
  68. data/app/models/katello/content_view_environment_content_facet.rb +12 -0
  69. data/app/models/katello/content_view_filter.rb +5 -1
  70. data/app/models/katello/content_view_package_filter_rule.rb +0 -1
  71. data/app/models/katello/content_view_repository.rb +0 -1
  72. data/app/models/katello/content_view_version.rb +26 -0
  73. data/app/models/katello/docker_meta_tag.rb +4 -0
  74. data/app/models/katello/host/content_facet.rb +2 -0
  75. data/app/models/katello/kt_environment.rb +13 -3
  76. data/app/models/katello/ping.rb +1 -1
  77. data/app/models/katello/product.rb +1 -1
  78. data/app/models/katello/product_content.rb +13 -15
  79. data/app/models/katello/root_repository.rb +21 -2
  80. data/app/models/katello/sync_plan.rb +2 -6
  81. data/app/presenters/katello/host_package_presenter.rb +5 -3
  82. data/app/services/katello/product_content_finder.rb +6 -1
  83. data/app/services/katello/pulp3/alternate_content_source.rb +5 -0
  84. data/app/services/katello/pulp3/module_stream.rb +2 -12
  85. data/app/services/katello/pulp3/repository/yum.rb +3 -0
  86. data/app/views/foreman/job_templates/install_errata.erb +4 -4
  87. data/app/views/foreman/job_templates/install_errata_-_katello_ansible_default.erb +4 -7
  88. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +5 -6
  89. data/app/views/katello/api/v2/activation_keys/base.json.rabl +6 -0
  90. data/app/views/katello/api/v2/common/destroy.json.rabl +2 -1
  91. data/app/views/katello/api/v2/content_credentials/show.json.rabl +1 -1
  92. data/app/views/katello/api/v2/content_facet/base.json.rabl +10 -9
  93. data/app/views/katello/api/v2/content_view_repositories/show_all.json.rabl +6 -0
  94. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +11 -1
  95. data/app/views/katello/api/v2/content_views/base.json.rabl +3 -0
  96. data/app/views/katello/api/v2/docker_tags/_base.json.rabl +4 -0
  97. data/app/views/katello/api/v2/environments/show.json.rabl +10 -0
  98. data/app/views/katello/api/v2/host_subscriptions/show.json.rabl +1 -0
  99. data/app/views/katello/api/v2/repositories/index.json.rabl +6 -0
  100. data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
  101. data/app/views/katello/api/v2/repository_sets/show.json.rabl +8 -2
  102. data/app/views/overrides/activation_keys/_host_environment_select.html.erb +22 -15
  103. data/app/views/smart_proxies/_disk_usage.html.erb +2 -0
  104. data/ca/redhat-uep.pem +53 -53
  105. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +0 -1
  106. data/db/migrate/20230328180352_add_applied_filters_to_katello_content_view_versions.rb +5 -0
  107. data/db/migrate/20230503190626_add_metadata_expire_to_root.rb +5 -0
  108. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-associations.controller.js +4 -2
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-repository-sets.controller.js +16 -0
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html +4 -3
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html +15 -1
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html +1 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +1 -1
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-errata-modal.controller.js +4 -2
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html +1 -1
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +10 -4
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html +1 -1
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html +2 -2
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html +1 -1
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html +2 -0
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -0
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -0
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html +2 -0
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +2 -4
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +2 -4
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html +0 -1
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +0 -4
  132. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/deb.controller.js +4 -2
  133. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html +12 -3
  134. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/docker-tag-repositories.controller.js +43 -0
  135. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html +7 -0
  136. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html +0 -1
  137. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html +0 -7
  138. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-repositories.html +60 -0
  139. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.controller.js +0 -8
  140. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/docker-tags.routes.js +10 -0
  141. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html +0 -4
  142. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
  143. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/erratum-content-hosts.controller.js +4 -2
  144. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html +5 -4
  145. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html +2 -2
  146. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/details/views/erratum-packages.html +2 -2
  147. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +7 -0
  148. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/errata.html +1 -1
  149. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-add-hosts.controller.js +4 -2
  150. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-hosts.controller.js +4 -2
  151. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-add-hosts.html +4 -3
  152. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html +4 -3
  153. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +590 -175
  154. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn.po +5157 -0
  155. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/bn_IN.po +5157 -0
  156. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ca.po +5157 -0
  157. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/cs_CZ.po +5204 -0
  158. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_AT.po +5153 -0
  159. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de_DE.po +5159 -0
  160. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/el.po +5157 -0
  161. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_GB.po +5158 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/en_US.po +5153 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/et_EE.po +5153 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gl.po +5157 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/gu.po +5157 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/he_IL.po +5191 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/hi.po +5157 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/id.po +5136 -0
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +5303 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ka.po +34 -14
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/kn.po +5157 -0
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ml_IN.po +5153 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/mr.po +5157 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/nl_NL.po +5161 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/or.po +5157 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pa.po +5157 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl.po +5192 -0
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pl_PL.po +5187 -0
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt.po +5174 -0
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro.po +5170 -0
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ro_RO.po +5170 -0
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +5279 -0
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sl.po +5191 -0
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/sv_SE.po +5158 -0
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta.po +5157 -0
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ta_IN.po +5157 -0
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/te.po +5157 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/tr.po +5157 -0
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi.po +5136 -0
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/vi_VN.po +5136 -0
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh.po +5136 -0
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +38 -1
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/organizations/views/organization-selector.html +1 -1
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/package.controller.js +8 -2
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/details/views/package-info.html +12 -3
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html +1 -1
  199. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +13 -4
  200. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +1 -1
  201. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +12 -2
  202. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details-reclaim-space-modal.html +1 -1
  203. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +6 -0
  204. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -0
  205. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html +1 -1
  206. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html +1 -1
  207. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-tags.html +0 -4
  208. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +6 -4
  209. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +20 -1
  210. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository.factory.js +1 -0
  211. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories-reclaim-space-modal.html +1 -1
  212. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/activation_keys.scss +13 -0
  213. data/engines/bastion_katello/app/assets/stylesheets/bastion_katello/bastion_katello.scss +1 -0
  214. data/lib/katello/engine.rb +0 -7
  215. data/lib/katello/plugin.rb +18 -15
  216. data/lib/katello/tasks/upgrades/4.9/update_custom_products_enablement.rake +11 -0
  217. data/lib/katello/version.rb +1 -1
  218. data/locale/action_names.rb +1 -2
  219. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  220. data/locale/bn/katello.po +215 -183
  221. data/locale/bn_IN/LC_MESSAGES/katello.mo +0 -0
  222. data/locale/bn_IN/katello.po +8901 -0
  223. data/locale/ca/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ca/katello.po +8900 -0
  225. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  226. data/locale/cs/katello.po +216 -185
  227. data/locale/cs_CZ/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/cs_CZ/katello.po +8906 -0
  229. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  230. data/locale/de/katello.po +223 -191
  231. data/locale/de_AT/LC_MESSAGES/katello.mo +0 -0
  232. data/locale/de_AT/katello.po +8897 -0
  233. data/locale/de_DE/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/de_DE/katello.po +8906 -0
  235. data/locale/el/LC_MESSAGES/katello.mo +0 -0
  236. data/locale/el/katello.po +8900 -0
  237. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  238. data/locale/en/katello.po +215 -183
  239. data/locale/en_GB/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/en_GB/katello.po +8902 -0
  241. data/locale/en_US/LC_MESSAGES/katello.mo +0 -0
  242. data/locale/en_US/katello.po +8897 -0
  243. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  244. data/locale/es/katello.po +218 -187
  245. data/locale/et_EE/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/et_EE/katello.po +8897 -0
  247. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  248. data/locale/fr/katello.po +233 -204
  249. data/locale/gl/LC_MESSAGES/katello.mo +0 -0
  250. data/locale/gl/katello.po +8900 -0
  251. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/gu/katello.po +215 -183
  253. data/locale/he_IL/LC_MESSAGES/katello.mo +0 -0
  254. data/locale/he_IL/katello.po +8902 -0
  255. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  256. data/locale/hi/katello.po +215 -183
  257. data/locale/id/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/id/katello.po +8896 -0
  259. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  260. data/locale/it/katello.po +216 -185
  261. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  262. data/locale/ja/katello.po +233 -202
  263. data/locale/ka/LC_MESSAGES/katello.mo +0 -0
  264. data/locale/ka/katello.po +223 -191
  265. data/locale/katello.pot +1844 -1796
  266. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  267. data/locale/kn/katello.po +215 -183
  268. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  269. data/locale/ko/katello.po +216 -183
  270. data/locale/ml_IN/LC_MESSAGES/katello.mo +0 -0
  271. data/locale/ml_IN/katello.po +8897 -0
  272. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  273. data/locale/mr/katello.po +215 -183
  274. data/locale/nl_NL/LC_MESSAGES/katello.mo +0 -0
  275. data/locale/nl_NL/katello.po +8907 -0
  276. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  277. data/locale/or/katello.po +215 -183
  278. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  279. data/locale/pa/katello.po +215 -183
  280. data/locale/pl/LC_MESSAGES/katello.mo +0 -0
  281. data/locale/pl/katello.po +8903 -0
  282. data/locale/pl_PL/LC_MESSAGES/katello.mo +0 -0
  283. data/locale/pl_PL/katello.po +8899 -0
  284. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  285. data/locale/pt/katello.po +215 -183
  286. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  287. data/locale/pt_BR/katello.po +218 -187
  288. data/locale/ro/LC_MESSAGES/katello.mo +0 -0
  289. data/locale/ro/katello.po +8897 -0
  290. data/locale/ro_RO/LC_MESSAGES/katello.mo +0 -0
  291. data/locale/ro_RO/katello.po +8898 -0
  292. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  293. data/locale/ru/katello.po +216 -184
  294. data/locale/sl/LC_MESSAGES/katello.mo +0 -0
  295. data/locale/sl/katello.po +8901 -0
  296. data/locale/sv_SE/LC_MESSAGES/katello.mo +0 -0
  297. data/locale/sv_SE/katello.po +8903 -0
  298. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  299. data/locale/ta/katello.po +215 -183
  300. data/locale/ta_IN/LC_MESSAGES/katello.mo +0 -0
  301. data/locale/ta_IN/katello.po +8901 -0
  302. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  303. data/locale/te/katello.po +215 -183
  304. data/locale/tr/LC_MESSAGES/katello.mo +0 -0
  305. data/locale/tr/katello.po +8900 -0
  306. data/locale/vi/LC_MESSAGES/katello.mo +0 -0
  307. data/locale/vi/katello.po +8896 -0
  308. data/locale/vi_VN/LC_MESSAGES/katello.mo +0 -0
  309. data/locale/vi_VN/katello.po +8897 -0
  310. data/locale/zh/LC_MESSAGES/katello.mo +0 -0
  311. data/locale/zh/katello.po +8896 -0
  312. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  313. data/locale/zh_CN/katello.po +233 -202
  314. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  315. data/locale/zh_TW/katello.po +216 -183
  316. data/package.json +1 -0
  317. data/webpack/__mocks__/foremanReact/Root/Context/ForemanContext.js +1 -0
  318. data/webpack/components/Bookmark/AddBookmarkModal.js +8 -2
  319. data/webpack/components/Content/ContentTable.js +1 -0
  320. data/webpack/components/Content/Details/ContentDetailInfo.js +1 -1
  321. data/webpack/components/Content/Details/ContentDetails.js +3 -3
  322. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetailInfo.test.js.snap +1 -0
  323. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +4 -0
  324. data/webpack/components/Content/__tests__/__snapshots__/ContentTable.test.js.snap +1 -0
  325. data/webpack/components/RoutedTabs/index.js +1 -1
  326. data/webpack/components/SelectOrg/SetOrganization.js +7 -1
  327. data/webpack/components/Table/EmptyStateMessage.js +8 -3
  328. data/webpack/components/Table/MainTable.js +8 -2
  329. data/webpack/components/TooltipButton/TooltipButton.js +2 -2
  330. data/webpack/components/TooltipButton/__snapshots__/TooltipButton.test.js.snap +3 -0
  331. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +2 -0
  332. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +81 -24
  333. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.scss +3 -0
  334. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +10 -3
  335. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +8 -0
  336. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +3 -2
  337. data/webpack/components/extensions/HostDetails/DetailsTabCards/HwPropertiesCard.js +3 -1
  338. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +1 -1
  339. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +0 -4
  340. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErratumExpansionDetail.js +2 -2
  341. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +1 -5
  342. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +20 -0
  343. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  344. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +16 -0
  345. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +54 -8
  346. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +1 -0
  347. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +8 -1
  348. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/Force.test.js.snap +1 -0
  349. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/IgnoreSubmanErrors.test.js.snap +1 -0
  350. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/LifeCycleEnvironment.test.js.snap +1 -0
  351. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +2 -1
  352. data/webpack/components/extensions/RegistrationCommands/fields/Force.js +1 -0
  353. data/webpack/components/extensions/RegistrationCommands/fields/IgnoreSubmanErrors.js +1 -0
  354. data/webpack/components/extensions/RegistrationCommands/fields/LifecycleEnvironment.js +1 -0
  355. data/webpack/components/extensions/about/index.js +2 -2
  356. data/webpack/components/pf3Table/components/Table.js +1 -0
  357. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +6 -1
  358. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +15 -2
  359. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +6 -1
  360. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +4 -1
  361. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +9 -0
  362. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +1 -0
  363. data/webpack/scenes/Content/Details/ContentDetails.js +4 -2
  364. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -1
  365. data/webpack/scenes/Content/GenericContentPage.js +1 -1
  366. data/webpack/scenes/Content/Table/ContentTable.js +2 -2
  367. data/webpack/scenes/ContentViews/ContentViewsConstants.js +4 -0
  368. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +26 -13
  369. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +27 -13
  370. data/webpack/scenes/ContentViews/Delete/__tests__/cvVersionsData.fixtures.json +8 -4
  371. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -2
  372. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentEnvironments.js +1 -1
  373. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +25 -24
  374. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +1 -1
  375. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +19 -3
  376. data/webpack/scenes/ContentViews/Details/ContentViewDetailReducer.js +6 -0
  377. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +2 -0
  378. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -2
  379. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +15 -2
  380. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +5 -1
  381. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +13 -9
  382. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +19 -6
  383. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +5 -1
  384. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +50 -51
  385. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +45 -44
  386. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +45 -44
  387. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +13 -8
  388. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +4 -3
  389. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +5 -2
  390. data/webpack/scenes/ContentViews/Details/Filters/FilterRuleConstants.js +6 -0
  391. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVDebMatchContentModal.js +3 -2
  392. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +10 -2
  393. data/webpack/scenes/ContentViews/Details/Filters/Rules/DebPackage/AddEditDebPackageRuleModal.js +5 -1
  394. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +7 -0
  395. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +37 -24
  396. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -3
  397. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +1 -1
  398. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +78 -8
  399. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +27 -8
  400. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailNoReposAdded.fixtures.json +13 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +1 -1
  402. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +16 -16
  403. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +16 -16
  404. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +6 -3
  405. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +10 -5
  406. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +9 -2
  407. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +1 -0
  408. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionOneDetials.fixtures.json +2 -1
  409. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionThreeDetails.fixtures.json +2 -1
  410. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersionTwoDetails.fixtures.json +2 -1
  411. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/contentViewVersions.fixtures.json +12 -6
  412. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionOneDetails.fixtures.json +2 -1
  413. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/emptyStateCVVersionTwoDetails.fixtures.json +2 -1
  414. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +25 -4
  415. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +4 -2
  416. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +26 -13
  417. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +30 -17
  418. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -0
  419. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/versionsResponseData.fixtures.json +6 -3
  420. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -1
  421. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +2 -2
  422. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +8 -1
  423. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -1
  424. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +55 -6
  425. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionComponent.fixtures.json +6 -3
  426. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +2 -1
  427. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.fixtures.json +8 -4
  428. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +1 -1
  429. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +4 -2
  430. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  431. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +4 -2
  432. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +30 -3
  433. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +24 -2
  434. data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +4 -0
  435. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +2 -2
  436. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +1 -3
  437. data/webpack/scenes/ContentViews/__tests__/mockDetails.fixtures.json +2 -1
  438. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelect.js +2 -1
  439. data/webpack/scenes/ContentViews/components/ContentViewSelect/ContentViewSelectOption.js +3 -2
  440. data/webpack/scenes/ContentViews/components/ContentViewSelect/helpers.js +32 -0
  441. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +52 -42
  442. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +1 -0
  443. data/webpack/scenes/ContentViews/components/FiltersAppliedIcon.js +17 -0
  444. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.js +45 -0
  445. data/webpack/scenes/ContentViews/components/NeedsPublishIcon.scss +9 -0
  446. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +1 -1
  447. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +49 -22
  448. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +7 -1
  449. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +1 -0
  450. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +2 -0
  451. data/webpack/scenes/Hosts/ChangeContentSource/index.js +2 -0
  452. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetailInfo.test.js.snap +1 -0
  453. data/webpack/scenes/ModuleStreams/__tests__/__snapshots__/ModuleStreamsTable.test.js.snap +1 -0
  454. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +2 -0
  455. data/webpack/scenes/RedHatRepositories/__tests__/__snapshots__/RedHatRepositoriesPage.test.js.snap +2 -0
  456. data/webpack/scenes/RedHatRepositories/components/RecommendedRepositorySetsToggler.js +6 -1
  457. data/webpack/scenes/RedHatRepositories/components/RepositorySetRepositories.js +1 -1
  458. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RecommendedRepositorySetsToggler.test.js.snap +1 -0
  459. data/webpack/scenes/RedHatRepositories/components/__tests__/__snapshots__/RepositorySetRepositories.test.js.snap +1 -0
  460. data/webpack/scenes/RedHatRepositories/helpers.js +2 -0
  461. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailAssociations.js +1 -1
  462. data/webpack/scenes/Subscriptions/Details/SubscriptionDetailInfo.js +2 -2
  463. data/webpack/scenes/Subscriptions/Details/SubscriptionDetails.js +4 -4
  464. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailAssociations.test.js.snap +1 -0
  465. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetailInfo.test.js.snap +2 -0
  466. data/webpack/scenes/Subscriptions/Details/__tests__/__snapshots__/SubscriptionDetails.test.js.snap +4 -0
  467. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +2 -1
  468. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +5 -4
  469. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +1 -0
  470. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +1 -1
  471. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -1
  472. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +3 -0
  473. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +1 -0
  474. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js +1 -1
  475. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +5 -6
  476. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/__snapshots__/SubscriptionsToolbar.test.js.snap +60 -5
  477. data/webpack/utils/useKatelloDocUrl.js +18 -0
  478. metadata +163 -22
  479. data/app/lib/actions/katello/organization/simple_content_access/prepare_content_overrides.rb +0 -36
  480. data/app/lib/katello/util/content_overrides_migrator.rb +0 -98
  481. data/webpack/components/extensions/HostDetails/common/KatelloAgentDeprecationAlert.js +0 -23
data/locale/ja/katello.po CHANGED
@@ -153,9 +153,6 @@ msgstr "%s は必須です"
153
153
  msgid "%s is unreachable. %s"
154
154
  msgstr "%s に到達できません。%s"
155
155
 
156
- msgid "%s must be an array."
157
- msgstr "%s は配列でなければなりません"
158
-
159
156
  msgid "%{errata} (%{total} other errata)"
160
157
  msgstr "%{errata} (他のエラータ: %{total})"
161
158
 
@@ -390,15 +387,12 @@ msgstr "<b>同期</b> の概要"
390
387
  msgid "A CV version already exists with the same major and minor version (%{major}.%{minor})"
391
388
  msgstr "同じメジャーおよびマイナーバージョンの CV バージョンが存在します (%{major}.%{minor})"
392
389
 
393
- msgid "A Pool and its Subscription cannot belong to different organizations"
394
- msgstr "プールとサブスクリプションは異なる組織に属することができません。"
390
+ msgid "A Pool and its Subscription cannot belong to different organizations."
391
+ msgstr ""
395
392
 
396
393
  msgid "A backend service [ %s ] is unreachable"
397
394
  msgstr "バックエンドサービス [ %s ] に到達できません"
398
395
 
399
- msgid "A content view can be added by using the \"Create content view\" button below."
400
- msgstr "コンテンツビューは下にある「コンテンツビューの作成」ボタンを使用して追加できます。"
401
-
402
396
  msgid "A content_type must be provided."
403
397
  msgstr "content_type を指定する必要があります。"
404
398
 
@@ -465,9 +459,6 @@ msgstr "デフォルトの Smart Proxy で許可されないアクションで
465
459
  msgid "Action unauthorized to be performed in this organization."
466
460
  msgstr "この組織で実行権限がないアクション"
467
461
 
468
- msgid "Action unauthorized to be performed on selected hosts."
469
- msgstr "選択されたホストで実行権限がないアクション"
470
-
471
462
  msgid "Action with sub plans"
472
463
  msgstr "サブプランによるアクション"
473
464
 
@@ -519,6 +510,9 @@ msgstr "RPM ルールの追加"
519
510
  msgid "Add Subscriptions"
520
511
  msgstr "サブスクリプションの追加"
521
512
 
513
+ msgid "Add Subscriptions using the Add Subscriptions button."
514
+ msgstr ""
515
+
522
516
  msgid "Add a subscription to a host"
523
517
  msgstr "ホストにサブスクリプションを追加します"
524
518
 
@@ -528,6 +522,9 @@ msgstr "代替コンテンツソースの追加"
528
522
  msgid "Add components to the content view"
529
523
  msgstr "コンテンツビューにコンポーネントを追加する"
530
524
 
525
+ msgid "Add content"
526
+ msgstr ""
527
+
531
528
  msgid "Add content view"
532
529
  msgstr "コンテンツビューの追加"
533
530
 
@@ -570,12 +567,18 @@ msgstr "製品の同期プランへの追加"
570
567
  msgid "Add repositories"
571
568
  msgstr "リポジトリーの追加"
572
569
 
570
+ msgid "Add repositories with package groups to content view to select them here."
571
+ msgstr ""
572
+
573
573
  msgid "Add rule"
574
574
  msgstr "ルールの追加"
575
575
 
576
576
  msgid "Add source"
577
577
  msgstr "ソースの追加"
578
578
 
579
+ msgid "Add subscriptions"
580
+ msgstr ""
581
+
579
582
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
580
583
  msgstr "Red Hat Subscription Management からマニフェストが使用するサブスクリプションを追加します"
581
584
 
@@ -585,12 +588,6 @@ msgstr "1 つ以上のホストにサブスクリプションを追加します"
585
588
  msgid "Add to a host collection"
586
589
  msgstr "ホストコレクションへの追加"
587
590
 
588
- msgid "Add to this filter using the 'Add Deb rule' button."
589
- msgstr "「Deb ルールの追加」ボタンを使用して、このフィルターに追加します。"
590
-
591
- msgid "Add to this filter using the 'Add filter rule' button."
592
- msgstr "「フィルタールールの追加」ボタンを使用して、このフィルターに追加します。"
593
-
594
591
  msgid "Add-ons"
595
592
  msgstr "アドオン"
596
593
 
@@ -714,15 +711,12 @@ msgstr "常に最新バージョンに更新"
714
711
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
715
712
  msgstr "ホスト関連のタスクの実行を処理するプール内のワーカー数。0 に設定されている場合には、デフォルトのキューが代わりに使用されます。dynflowd/foreman-tasks サービスは再起動する必要があります。"
716
713
 
717
- msgid "An alternate content source can be added by using the \"Add source\" button below."
718
- msgstr "代替コンテンツソースを追加するには、下の「ソースの追加」ボタンを使用します。"
714
+ msgid "An alternate content source can be added by using the \\\"Add source\\\" button below."
715
+ msgstr ""
719
716
 
720
717
  msgid "An environment is missing a prior"
721
718
  msgstr "環境には以前の内容がありません"
722
719
 
723
- msgid "An error occurred during content removal. Could not find repository with id: %s"
724
- msgstr "コンテンツの削除中にエラーが発生しました。 id: %s のリポジトリーが見つかりませんでした"
725
-
726
720
  msgid ""
727
721
  "An error occurred during the sync \n"
728
722
  "%{error_message}"
@@ -921,12 +915,6 @@ msgstr "自動公開"
921
915
  msgid "Autopublish"
922
916
  msgstr "自動公開"
923
917
 
924
- msgid "Autosearch"
925
- msgstr "自動検索"
926
-
927
- msgid "Autosearch delay"
928
- msgstr "自動検索の遅延"
929
-
930
918
  msgid "Available"
931
919
  msgstr "利用可能"
932
920
 
@@ -1062,24 +1050,12 @@ msgstr "特定のコンテンツビューに基づく適用可能なエラータ
1062
1050
  msgid "Calculate Applicable Errata based on a particular Environment"
1063
1051
  msgstr "特定の環境に基づく適用可能なエラータの計算"
1064
1052
 
1065
- msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
1066
- msgstr "ホストのコンテンツビューおよびライフサイクル環境のエラーだだけを基に、エラータホストのステータスを計算します"
1067
-
1068
1053
  msgid "Can communicate with the Red Hat Portal for subscriptions."
1069
1054
  msgstr "サブスクリプションでは、Red Hat ポータルと通信できます。"
1070
1055
 
1071
- msgid "Can not add product %s because it is disabled."
1072
- msgstr "無効になっているため、製品 %s を追加できません。"
1073
-
1074
- msgid "Can only destroy on Yum Repositories."
1075
- msgstr "Yum リポジトリーでのみ破棄できます。"
1076
-
1077
1056
  msgid "Can only remove content from within the Default Content View"
1078
1057
  msgstr "デフォルトコンテンツビューからコンテンツのみを削除できます"
1079
1058
 
1080
- msgid "Can only upload to Yum Repositories."
1081
- msgstr "Yum リポジトリーにのみアップロードできます。"
1082
-
1083
1059
  msgid "Can't update the '%s' environment"
1084
1060
  msgstr "'%s' 環境を更新できません"
1085
1061
 
@@ -1137,9 +1113,15 @@ msgstr "デフォルトのコンテンツビューを複合コンテンツビュ
1137
1113
  msgid "Cannot add generated content view versions to composite content view"
1138
1114
  msgstr "生成されたコンテンツビューを複合コンテンツビューに追加できません"
1139
1115
 
1116
+ msgid "Cannot add product %s because it is disabled."
1117
+ msgstr ""
1118
+
1140
1119
  msgid "Cannot add repositories to a composite content view"
1141
1120
  msgstr "リポジトリーを複合コンテンツビューに追加できません"
1142
1121
 
1122
+ msgid "Cannot associate a Red Hat provider with a custom product"
1123
+ msgstr ""
1124
+
1143
1125
  msgid "Cannot associate a component to a non composite content view"
1144
1126
  msgstr "コンポーネントを複合コンテンツビュー以外に関連付けできません"
1145
1127
 
@@ -1191,8 +1173,11 @@ msgstr "複合コンテンツビューをインポートできません"
1191
1173
  msgid "Cannot import a custom subscription from a redhat product."
1192
1174
  msgstr "Red hat 製品からカスタムサブスクリプションをインポートできません。"
1193
1175
 
1194
- msgid "Cannot pass content units without content unit type"
1195
- msgstr "コンテンツユニットタイプなしでコンテンツユニットを渡せません"
1176
+ msgid "Cannot incrementally export from a filtered and a non-filtered content view version. The exported content view version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}.'. Please do a full export."
1177
+ msgstr ""
1178
+
1179
+ msgid "Cannot incrementally export from a incrementally exported version and a regular version or vice-versa. The exported Content View Version '%{content_view} %{current}' cannot be incrementally exported from version '%{from}.' Please do a full export."
1180
+ msgstr ""
1196
1181
 
1197
1182
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
1198
1183
  msgstr "複合コンテンツビューバージョン (%{name} バージョン、バージョン %{version}) で増分更新を実行できません"
@@ -1263,6 +1248,9 @@ msgstr "コンテンツソースの変更"
1263
1248
  msgid "Change host content source"
1264
1249
  msgstr "ホストコンテンツソースの変更"
1265
1250
 
1251
+ msgid "Check audited changes and proceed only if content or filters have changed since last publish"
1252
+ msgstr ""
1253
+
1266
1254
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1267
1255
  msgstr "Red Hat Subscription Management に接続できるかどうかを確認します。"
1268
1256
 
@@ -1305,6 +1293,9 @@ msgstr "検索のクリア"
1305
1293
  msgid "Click here to go to the tasks page for the task."
1306
1294
  msgstr "タスクのタスクページに移動するには、ここをクリックしてください。"
1307
1295
 
1296
+ msgid "Click to see repositories available to add."
1297
+ msgstr ""
1298
+
1308
1299
  msgid "Click {update} below to save changes."
1309
1300
  msgstr "{update} をクリックして変更を保存します。"
1310
1301
 
@@ -1584,6 +1575,9 @@ msgstr ""
1584
1575
  msgid "Content view details"
1585
1576
  msgstr "コンテンツビューの詳細"
1586
1577
 
1578
+ msgid "Content view does not need a publish since there are no audited changes since the last publish. Pass check_needs_publish parameter as false if you don't want to check if content view needs a publish."
1579
+ msgstr ""
1580
+
1587
1581
  msgid "Content view environments and activation key must all belong to the same organization"
1588
1582
  msgstr ""
1589
1583
 
@@ -1803,9 +1797,6 @@ msgstr "エクスポート履歴の作成"
1803
1797
  msgid "Create Import History"
1804
1798
  msgstr "インポート履歴の作成"
1805
1799
 
1806
- msgid "Create Package Group"
1807
- msgstr "パッケージグループの作成"
1808
-
1809
1800
  msgid "Create Repositories"
1810
1801
  msgstr "リポジトリーの作成"
1811
1802
 
@@ -1830,9 +1821,6 @@ msgstr "フィルタールールの作成。組み込まれるパラメーター
1830
1821
  msgid "Create a host collection"
1831
1822
  msgstr "ホストコレクションの作成"
1832
1823
 
1833
- msgid "Create a package group"
1834
- msgstr "パッケージグループの作成"
1835
-
1836
1824
  msgid "Create a product"
1837
1825
  msgstr "製品の作成"
1838
1826
 
@@ -1866,6 +1854,9 @@ msgstr "フィルターの作成"
1866
1854
  msgid "Create host collection"
1867
1855
  msgstr "ホストコレクションの作成"
1868
1856
 
1857
+ msgid "Create new activation key"
1858
+ msgstr ""
1859
+
1869
1860
  msgid "Create organization"
1870
1861
  msgstr "組織の作成"
1871
1862
 
@@ -1998,6 +1989,12 @@ msgstr "カスタムリポジトリーのデフォルトのダウンロードポ
1998
1989
  msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
1999
1990
  msgstr "有効な Red Hat リポジトリーのデフォルトのダウンロードポリシー ('immediate' または 'on_demand' のいずれか)"
2000
1991
 
1992
+ msgid "Default export format"
1993
+ msgstr ""
1994
+
1995
+ msgid "Default export format for content-exports(either 'syncable' or 'importable')"
1996
+ msgstr ""
1997
+
2001
1998
  msgid "Default finish template for new Operating Systems created from synced content"
2002
1999
  msgstr "同期コンテンツから作成された新規オペレーティングシステムのデフォルト完了テンプレート"
2003
2000
 
@@ -2073,9 +2070,6 @@ msgstr "ライフサイクル環境の削除"
2073
2070
  msgid "Delete Manifest"
2074
2071
  msgstr "マニフェストの削除"
2075
2072
 
2076
- msgid "Delete Package Group"
2077
- msgstr "パッケージグループの削除"
2078
-
2079
2073
  msgid "Delete Product"
2080
2074
  msgstr "製品の削除"
2081
2075
 
@@ -2091,9 +2085,6 @@ msgstr "コンテンツビューの削除"
2091
2085
  msgid "Delete a filter rule"
2092
2086
  msgstr "フィルタールールの削除"
2093
2087
 
2094
- msgid "Delete a package group"
2095
- msgstr "パッケージグループの削除"
2096
-
2097
2088
  msgid "Delete all subscriptions attached to activation keys."
2098
2089
  msgstr "アクティベーションキーにアタッチされている全サブスクリプションを削除します。"
2099
2090
 
@@ -2457,6 +2448,12 @@ msgstr "エラータのインストール"
2457
2448
  msgid "Errata Install scheduled by %s"
2458
2449
  msgstr "%s によりエラータのインストールがスケジュールされました"
2459
2450
 
2451
+ msgid "Errata and package information will be updated at the next host check-in or package action."
2452
+ msgstr ""
2453
+
2454
+ msgid "Errata and package information will be updated immediately."
2455
+ msgstr ""
2456
+
2460
2457
  msgid "Errata id of the erratum (RHSA-2012:108)"
2461
2458
  msgstr "エラータのエラータ ID (RHSA-2012:108)"
2462
2459
 
@@ -2559,12 +2556,8 @@ msgstr "エクスポートタイプ"
2559
2556
  msgid "Export as CSV"
2560
2557
  msgstr "CSVとしてエクスポート"
2561
2558
 
2562
- msgid ""
2563
- "Export formats. Choose syncable if content is to be imported via repository sync. Choose importable if content is to be imported via hammer content-import.\n"
2564
- " Defaults to importable."
2559
+ msgid "Export formats.Choose syncable if the exported content needs to be in a yum format. This option is only available for %{syncable_repos} repositories. Choose importable if the importing server uses the same version and exported content needs to be one of %{importable_repos} repositories."
2565
2560
  msgstr ""
2566
- "エクスポート形式。リポジトリー同期を介してコンテンツをインポートする場合は、同期可能を選択します。hammer content-import を介してコンテンツをインポートする場合はインポート可能を選択します。\n"
2567
- " デフォルトはインポート可能です。"
2568
2561
 
2569
2562
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
2570
2563
  msgstr "増分エクスポートに使用されるエクスポート履歴識別子。指定されていない場合は、最新のエクスポート履歴が使用されます。"
@@ -2587,10 +2580,6 @@ msgstr "%{host} の削除に失敗しました: %{errors}"
2587
2580
  msgid "Failed to delete latest content view version of Content View '%{subject}'."
2588
2581
  msgstr "コンテンツビュー '%{subject}' で最新のコンテンツビューバージョンを削除できませんでした。"
2589
2582
 
2590
- msgid "Failed to download %s package."
2591
- msgid_plural "Failed to download %s packages."
2592
- msgstr[0] "%s パッケージのダウンロードに失敗しました。"
2593
-
2594
2583
  msgid "Failed to find %{content} with id '%{id}'."
2595
2584
  msgstr "ID が「%{id}」の %{content} が見つかりませんでした"
2596
2585
 
@@ -2711,8 +2700,11 @@ msgstr "フィルター"
2711
2700
  msgid "Filters deleted"
2712
2701
  msgstr "フィルターが削除されました"
2713
2702
 
2714
- msgid "Filters will appear here when the filter is created."
2715
- msgstr "フィルターが作成されると、ここにフィルターが表示されます。"
2703
+ msgid "Filters were applied to this version."
2704
+ msgstr ""
2705
+
2706
+ msgid "Filters will be applied to this content view version."
2707
+ msgstr ""
2716
2708
 
2717
2709
  msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2718
2710
  msgstr "各 RHUI リポジトリーの相対パスを見つけ、それらをコンマ区切りリストで組み合わせます。"
@@ -2726,9 +2718,6 @@ msgstr "アクションのタイムアウトを終了"
2726
2718
  msgid "Finished"
2727
2719
  msgstr "終了"
2728
2720
 
2729
- msgid "For pages that support it, automatically perform search while typing in search input."
2730
- msgstr "サポート対象のページでは、検索項目の入力時に自動的に検索が実行されます。"
2731
-
2732
2721
  msgid "Force"
2733
2722
  msgstr "強制"
2734
2723
 
@@ -2742,6 +2731,9 @@ msgstr ""
2742
2731
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2743
2732
  msgstr "強制的に同期し、全コンテンツのチェックサムを検証します。Yum リポジトリーでのみ使用されます。"
2744
2733
 
2734
+ msgid "Force content view promotion and bypass lifecycle environment restriction"
2735
+ msgstr ""
2736
+
2745
2737
  msgid "Force delete the repository by removing it from all content view versions"
2746
2738
  msgstr "すべてのコンテンツビューバージョンからリポジトリーを削除して、リポジトリーを強制的に削除します"
2747
2739
 
@@ -2784,6 +2776,9 @@ msgstr "必要に応じて、必要なリポジトリーの RHUI 証明書を生
2784
2776
  msgid "Generate and Download"
2785
2777
  msgstr "生成してダウンロード"
2786
2778
 
2779
+ msgid "Generate errata status from directly-installable content"
2780
+ msgstr ""
2781
+
2787
2782
  msgid "Generate host applicability"
2788
2783
  msgstr "ホストに適用可能なエラータを生成します"
2789
2784
 
@@ -2847,9 +2842,6 @@ msgstr "タスクページに移動"
2847
2842
  msgid "Greater than"
2848
2843
  msgstr ">"
2849
2844
 
2850
- msgid "Group %{id} already created."
2851
- msgstr "グループ %{id} はすでに作成されています。"
2852
-
2853
2845
  msgid "Guests of"
2854
2846
  msgstr "ゲスト:"
2855
2847
 
@@ -2889,6 +2881,9 @@ msgstr "ホスト"
2889
2881
  msgid "Host %s has not been registered with subscription-manager."
2890
2882
  msgstr "ホスト %s は subscription-manager で登録されていません。"
2891
2883
 
2884
+ msgid "Host %{hostname}: Cannot add content view environment to content facet. The host's content source '%{content_source}' does not sync lifecycle environment '%{lce}'."
2885
+ msgstr ""
2886
+
2892
2887
  msgid "Host %{name} cannot be assigned release version %{release_version}."
2893
2888
  msgstr "ホスト %{name} は、リリースバージョン %{release_version} に割り当てることができません。"
2894
2889
 
@@ -3156,9 +3151,6 @@ msgstr "OS バージョンが一致しないクライアントでリポジトリ
3156
3151
  msgid "Ids of smart proxies to associate"
3157
3152
  msgstr "関連付ける Smart Proxy の ID"
3158
3153
 
3159
- msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
3160
- msgstr "自動検索が有効になっている場合には、入力時にミリ秒単位の遅延後に検索が実行されます。"
3161
-
3162
3154
  msgid "If SSL should be verified for the upstream URL"
3163
3155
  msgstr "アップストリーム URL に対して SSL を検証する必要がある場合"
3164
3156
 
@@ -3186,14 +3178,17 @@ msgstr "有効の場合、公開済みコンテンツビューに属する場合
3186
3178
  msgid "If this is enabled, repositories of content view versions without environments (\"archived\") will be distributed at '/pulp/content/<organization>/content_views/<content view>/X.Y/...'."
3187
3179
  msgstr "これが有効な場合には、環境 (\"archived\") がないコンテンツビューバージョンのリポジトリーが '/pulp/content/<organization>/content_views/<content view>/X.Y/...' で配布されます。"
3188
3180
 
3181
+ msgid "If true, only errata that can be installed without an incremental update will affect the host's errata status."
3182
+ msgstr ""
3183
+
3189
3184
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3190
3185
  msgstr "true の場合には、アクティブなサブスクリプションに関連付けられているリポジトリーセットのみを返します"
3191
3186
 
3192
3187
  msgid "If true, only return repository sets that have been enabled. Defaults to false"
3193
3188
  msgstr "true の場合には、有効なリポジトリーセットのみを返します。デフォルトは false です"
3194
3189
 
3195
- msgid "If true, return custom repository sets along with redhat repos"
3196
- msgstr "true の場合には、redhat のリポジトリーとともにカスタムリポジトリーセットを返します"
3190
+ msgid "If true, return custom repository sets along with redhat repos. Will be ignored if repository_type is supplied."
3191
+ msgstr ""
3197
3192
 
3198
3193
  msgid "If true, when adding the specified errata or packages, any needed dependencies will be copied as well. Defaults to true"
3199
3194
  msgstr "true の場合には、指定されたエラータまたはパッケージを追加すると、必要な依存関係もコピーされます。デフォルトは True です。"
@@ -3225,6 +3220,9 @@ msgstr "指定されたホストに使用できないサブスクリプション
3225
3220
  msgid "Ignored hosts"
3226
3221
  msgstr "無視するホスト"
3227
3222
 
3223
+ msgid "Image"
3224
+ msgstr ""
3225
+
3228
3226
  msgid "Immediate"
3229
3227
  msgstr "即時"
3230
3228
 
@@ -3438,11 +3436,8 @@ msgstr "リモート実行によるインストール"
3438
3436
  msgid "Installable"
3439
3437
  msgstr "インストール可能"
3440
3438
 
3441
- msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3442
- msgstr "インストール可能なエラータは、ホストのコンテンツビューおよびライフサイクル環境で利用でき、適用可能なエラータです。"
3443
-
3444
- msgid "Installable errata from content view"
3445
- msgstr "コンテンツビューからインストール可能なエラータ"
3439
+ msgid "Installable errata are applicable errata that are available in the host's content view and lifecycle environment."
3440
+ msgstr ""
3446
3441
 
3447
3442
  msgid "Installable updates"
3448
3443
  msgstr "インストール可能な更新"
@@ -3582,8 +3577,8 @@ msgstr "発行済み"
3582
3577
  msgid "Issued from"
3583
3578
  msgstr "発行元"
3584
3579
 
3585
- msgid "Items will appear here when a filter rule is added."
3586
- msgstr "フィルタールールが追加されると、ここに項目が表示されます。"
3580
+ msgid "It is only allowed for Non-Redhat Yum repositories."
3581
+ msgstr ""
3587
3582
 
3588
3583
  msgid "Job '${description}' completed"
3589
3584
  msgstr "ジョブ '${description}' が完了しました"
@@ -3750,6 +3745,9 @@ msgstr "ライフサイクル環境: {lce}"
3750
3745
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3751
3746
  msgstr "ライフサイクル環境をデフォルトの Smart Proxy で変更できません。すべてのライフサイクル環境のコンテンツはこの Smart Proxy 上に存在します。"
3752
3747
 
3748
+ msgid "Limit content to Red Hat / custom"
3749
+ msgstr ""
3750
+
3753
3751
  msgid "Limit content to enabled / disabled / overridden"
3754
3752
  msgstr "コンテンツの有効/無効/上書きを制限します。"
3755
3753
 
@@ -4167,21 +4165,24 @@ msgstr "Red Hat リポジトリーを有効にしたり、カスタム製品を
4167
4165
  msgid "Multi-entitlement"
4168
4166
  msgstr "マルチエンタイトルメント"
4169
4167
 
4170
- msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
4171
- msgstr "mandatory_package_names、optional_package_names、conditional_package_names、default_package_names パラメーターから少なくとも 1 つを指定する必要があります"
4172
-
4173
4168
  msgid "N/A"
4174
4169
  msgstr "N/A"
4175
4170
 
4176
4171
  msgid "NA"
4177
4172
  msgstr "NA"
4178
4173
 
4174
+ msgid "NOTE: Content view version '%{content_view} %{current}' does not have any exportable repositories. At least one repository with any of the following types is required to be able to export: '%{exportable_types}'."
4175
+ msgstr ""
4176
+
4179
4177
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
4180
4178
  msgstr "注記: Katello-agent は非推奨となり、%s で削除される予定です。代わりにリモート実行を使用することを検討してください。"
4181
4179
 
4182
4180
  msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4183
4181
  msgstr "注: エクスポート可能なコンテンツタイプがないので '%{repository}' リポジトリーをエクスポートできません。"
4184
4182
 
4183
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an syncably exportable content type."
4184
+ msgstr ""
4185
+
4185
4186
  msgid ""
4186
4187
  "NOTE: Unable to fully export '%{organization}' organization's library because it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories to include them in the export. \n"
4187
4188
  " %{repos}"
@@ -4263,12 +4264,6 @@ msgstr "一度も同期されていません"
4263
4264
  msgid "New Errata"
4264
4265
  msgstr "新規エラータ"
4265
4266
 
4266
- msgid "New Files: %s"
4267
- msgstr "新規ファイル: %s"
4268
-
4269
- msgid "New blobs: %{count}."
4270
- msgstr "新しい blob: %{count} 個"
4271
-
4272
4267
  msgid "New content view name"
4273
4268
  msgstr "新規コンテンツビューの名前"
4274
4269
 
@@ -4281,15 +4276,15 @@ msgstr "新規の名前を空白にすることはできません"
4281
4276
  msgid "New name for the content view"
4282
4277
  msgstr "コンテンツビューの新規の名前"
4283
4278
 
4284
- msgid "New packages: %{count} (%{size})."
4285
- msgstr "新規パッケージ: %{count} (%{size})"
4286
-
4287
4279
  msgid "New version is available: Version ${latestVersion}"
4288
4280
  msgstr "新しいバージョンが利用可能です: バージョン {latestVersion}"
4289
4281
 
4290
4282
  msgid "Newly published"
4291
4283
  msgstr "最新公開日"
4292
4284
 
4285
+ msgid "Newly published version will be the same as the previous version."
4286
+ msgstr ""
4287
+
4293
4288
  msgid "No"
4294
4289
  msgstr "いいえ"
4295
4290
 
@@ -4341,6 +4336,12 @@ msgstr "再起動するアプリケーションはありません"
4341
4336
  msgid "No artifacts to show"
4342
4337
  msgstr "表示するアーティファクトはありません"
4343
4338
 
4339
+ msgid "No available component content view updates"
4340
+ msgstr ""
4341
+
4342
+ msgid "No available repository or filter updates"
4343
+ msgstr ""
4344
+
4344
4345
  msgid "No content"
4345
4346
  msgstr "コンテンツがありません"
4346
4347
 
@@ -4365,8 +4366,11 @@ msgstr "利用できるコンテンツビューがありません"
4365
4366
  msgid "No content views available for the selected environment"
4366
4367
  msgstr "選択した環境に利用可能なコンテンツビューはありません"
4367
4368
 
4368
- msgid "No content views belong to ${label}"
4369
- msgstr "{label} に属するコンテンツビューはありません"
4369
+ msgid "No content views to add yet"
4370
+ msgstr ""
4371
+
4372
+ msgid "No content views yet"
4373
+ msgstr ""
4370
4374
 
4371
4375
  msgid "No content_view_version_ids provided"
4372
4376
  msgstr "content_view_version_ids が指定されていません"
@@ -4386,11 +4390,14 @@ msgstr "環境なし"
4386
4390
  msgid "No environments"
4387
4391
  msgstr "環境なし"
4388
4392
 
4389
- msgid "No errata available for this content view."
4390
- msgstr "コンテンツビューで利用可能なエラータはありません。"
4393
+ msgid "No errata filter rules yet"
4394
+ msgstr ""
4391
4395
 
4392
- msgid "No errata available to add to this filter."
4393
- msgstr "このフィルターに追加できるエラータはありません。"
4396
+ msgid "No errata matching given search query"
4397
+ msgstr ""
4398
+
4399
+ msgid "No errata to add yet"
4400
+ msgstr ""
4394
4401
 
4395
4402
  msgid "No errors"
4396
4403
  msgstr "エラーなし"
@@ -4401,6 +4408,12 @@ msgstr "増分エクスポートを実行する既存のエクスポート履歴
4401
4408
  msgid "No file uploaded"
4402
4409
  msgstr "ファイルがアップロードされていません"
4403
4410
 
4411
+ msgid "No filters yet"
4412
+ msgstr ""
4413
+
4414
+ msgid "No history yet"
4415
+ msgstr ""
4416
+
4404
4417
  msgid "No host collections"
4405
4418
  msgstr "ホストコレクションはありません"
4406
4419
 
@@ -4416,6 +4429,9 @@ msgstr ""
4416
4429
  msgid "No hosts have been specified."
4417
4430
  msgstr "指定されているホストがありません。"
4418
4431
 
4432
+ msgid "No hosts matched search, or action unauthorized for selected hosts."
4433
+ msgstr ""
4434
+
4419
4435
  msgid "No hosts registered with subscription-manager found in selection."
4420
4436
  msgstr "subscription-manager に登録されているホストが選択肢に含まれていません。"
4421
4437
 
@@ -4485,20 +4501,23 @@ msgstr "一致するリポジトリーが見つかりません"
4485
4501
  msgid "No matching repository sets found"
4486
4502
  msgstr "マッチするリポジトリーセットが見つかりませんでした"
4487
4503
 
4488
- msgid "No matching rules found."
4489
- msgstr "一致するルールが見つかりませんでした。"
4490
-
4491
4504
  msgid "No matching traces found"
4492
4505
  msgstr "マッチするトレースが見つかりませんでした"
4493
4506
 
4494
4507
  msgid "No matching version found"
4495
4508
  msgstr "一致するバージョンが見つかりません"
4496
4509
 
4510
+ msgid "No module stream filter rules yet"
4511
+ msgstr ""
4512
+
4513
+ msgid "No module streams to add yet."
4514
+ msgstr ""
4515
+
4497
4516
  msgid "No new packages installed"
4498
4517
  msgstr "インストール済みの新規パッケージはありません"
4499
4518
 
4500
- msgid "No new packages."
4501
- msgstr "新規パッケージがありません。"
4519
+ msgid "No package groups yet"
4520
+ msgstr ""
4502
4521
 
4503
4522
  msgid "No packages"
4504
4523
  msgstr "パッケージがありません"
@@ -4506,8 +4525,8 @@ msgstr "パッケージがありません"
4506
4525
  msgid "No packages available to install"
4507
4526
  msgstr "インストール可能なパッケージはありません"
4508
4527
 
4509
- msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4510
- msgstr "このホストにインストール可能なパッケージはありません。ホストのコンテンツビューとライフサイクル環境を確認してください。"
4528
+ msgid "No packages available to install on this host. Please check the host's content view and lifecycle environment."
4529
+ msgstr ""
4511
4530
 
4512
4531
  msgid "No packages removed"
4513
4532
  msgstr "削除済みのパッケージはありません"
@@ -4548,6 +4567,12 @@ msgstr "最近同期された製品はありません"
4548
4567
  msgid "No recurring logic tied to the sync plan."
4549
4568
  msgstr "同期プランに関連付けられた再帰論理はありません。"
4550
4569
 
4570
+ msgid "No repositories added yet"
4571
+ msgstr ""
4572
+
4573
+ msgid "No repositories available to add"
4574
+ msgstr ""
4575
+
4551
4576
  msgid "No repositories available."
4552
4577
  msgstr "利用可能なリポジトリーがありません。"
4553
4578
 
@@ -4566,8 +4591,8 @@ msgstr "検索条件に一致するリポジトリーセットはありません
4566
4591
  msgid "No repository sets to show."
4567
4592
  msgstr "表示するリポジトリーセットはありません。"
4568
4593
 
4569
- msgid "No rules have been added to this filter."
4570
- msgstr "このフィルターにはルールは追加されていません。"
4594
+ msgid "No rules yet"
4595
+ msgstr ""
4571
4596
 
4572
4597
  msgid "No services defined, is this class extended?"
4573
4598
  msgstr "サービスが定義されていません。このクラスは拡張されましたか?"
@@ -4584,6 +4609,9 @@ msgstr "選択した製品およびオプションに同期可能なリポジト
4584
4609
  msgid "No uploads param specified. An array of uploads to import is required."
4585
4610
  msgstr "アップロードパラメータが指定されていません。インポートするアップロードパラメーターの配列が必要です。"
4586
4611
 
4612
+ msgid "No versions yet"
4613
+ msgstr ""
4614
+
4587
4615
  msgid "Non-security errata applicable"
4588
4616
  msgstr "適用可能なセキュリティー以外のエラータ"
4589
4617
 
@@ -4689,9 +4717,6 @@ msgstr "1 つ以上のホストが見つかりません"
4689
4717
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
4690
4718
  msgstr "%{assoc} の (%{ids}) ID 1 つまたは複数が見つかりませんでした。表示する権限がない可能性があります。"
4691
4719
 
4692
- msgid "One or more packages failed to sync properly."
4693
- msgstr "1 つ以上のパッケージを正しく同期できませんでした。"
4694
-
4695
4720
  msgid "One or more processes require restarting"
4696
4721
  msgstr "1 つ以上のプロセスを再起動する必要があります"
4697
4722
 
@@ -4974,9 +4999,6 @@ msgstr "代替コンテンツを検索するためのパス接尾辞"
4974
4999
  msgid "Paused"
4975
5000
  msgstr "一時停止中"
4976
5001
 
4977
- msgid "Pending"
4978
- msgstr "保留"
4979
-
4980
5002
  msgid "Perform a module stream action via Katello interface"
4981
5003
  msgstr "Katello インターフェイスでのモジュールストリームアクションの実行"
4982
5004
 
@@ -5010,12 +5032,12 @@ msgstr "物理"
5010
5032
  msgid "Plan numeric identifier"
5011
5033
  msgstr "プランの数値 ID"
5012
5034
 
5013
- msgid "Please add some content views."
5014
- msgstr "コンテンツビューをいくつか追加してください。"
5015
-
5016
5035
  msgid "Please add some repositories."
5017
5036
  msgstr "リポジトリーを追加してください。"
5018
5037
 
5038
+ msgid "Please create some content views."
5039
+ msgstr ""
5040
+
5019
5041
  msgid "Please enter a positive number above zero"
5020
5042
  msgstr "0 より大きい正の数を入力してください"
5021
5043
 
@@ -5091,12 +5113,6 @@ msgstr "リポジトリーセットの検索中に問題が発生しました"
5091
5113
  msgid "Problem searching traces"
5092
5114
  msgstr "トレースの検索中に問題が発生しました"
5093
5115
 
5094
- msgid "Processing metadata"
5095
- msgstr "メタデータの処理中"
5096
-
5097
- msgid "Processing metadata."
5098
- msgstr "メタデータの処理中です。"
5099
-
5100
5116
  msgid "Product"
5101
5117
  msgstr "製品"
5102
5118
 
@@ -5109,9 +5125,6 @@ msgstr "製品の作成"
5109
5125
  msgid "Product ID"
5110
5126
  msgstr "製品 ID"
5111
5127
 
5112
- msgid "Product Name"
5113
- msgstr "製品名"
5114
-
5115
5128
  msgid "Product and Repositories"
5116
5129
  msgstr "製品およびリポジトリー"
5117
5130
 
@@ -5401,6 +5414,9 @@ msgstr "オンデマンドリポジトリーからの領域の再利用"
5401
5414
  msgid "Recommended Repositories"
5402
5415
  msgstr "推奨リポジトリー"
5403
5416
 
5417
+ msgid "Red Hat"
5418
+ msgstr ""
5419
+
5404
5420
  msgid "Red Hat CDN"
5405
5421
  msgstr "Red Hat CDN"
5406
5422
 
@@ -5656,6 +5672,9 @@ msgstr "すべての環境からこのバージョンを削除しても、バー
5656
5672
  msgid "Repo Type"
5657
5673
  msgstr "リポジトリータイプ"
5658
5674
 
5675
+ msgid "Report"
5676
+ msgstr ""
5677
+
5659
5678
  msgid "Repositories"
5660
5679
  msgstr "リポジトリー"
5661
5680
 
@@ -5698,9 +5717,6 @@ msgstr "リポジトリー ID"
5698
5717
  msgid "Repository label '%s' is not associated with content view."
5699
5718
  msgstr "コンテンツビューには、リポジトリーラベル '%s' が関連付けられていません。"
5700
5719
 
5701
- msgid "Repository metadata publish"
5702
- msgstr "リポジトリーメタデータの公開"
5703
-
5704
5720
  msgid "Repository not found"
5705
5721
  msgstr "リポジトリーが見つかりません"
5706
5722
 
@@ -5737,6 +5753,12 @@ msgstr "リポジトリーセットがデフォルトにリセットされまし
5737
5753
  msgid "Repository sets will appear here after enabling Red Hat repositories or creating custom products."
5738
5754
  msgstr "リポジトリーセットは、Red Hat リポジトリーを有効にしたり、カスタム製品を作成したりすると、ここに表示されます。"
5739
5755
 
5756
+ msgid "Repository sets will appear here when the host's content view and environment has available content."
5757
+ msgstr ""
5758
+
5759
+ msgid "Repository type"
5760
+ msgstr ""
5761
+
5740
5762
  msgid "Republish Repositories of %{name} %{version}"
5741
5763
  msgstr "%{name}%{version} のリポジトリーの再公開"
5742
5764
 
@@ -6034,6 +6056,9 @@ msgstr "クライアント証明書の選択"
6034
6056
  msgid "Select a client key"
6035
6057
  msgstr "クライアントキーの選択"
6036
6058
 
6059
+ msgid "Select a content source first"
6060
+ msgstr ""
6061
+
6037
6062
  msgid "Select a content view"
6038
6063
  msgstr "コンテンツビューの選択"
6039
6064
 
@@ -6049,6 +6074,9 @@ msgstr "利用可能なプロモーションパスからライフサイクル環
6049
6074
  msgid "Select a provider to install katello-host-tools-tracer"
6050
6075
  msgstr "katello-host-tools-tracer をインストールするプロバイダーの選択"
6051
6076
 
6077
+ msgid "Select a source"
6078
+ msgstr ""
6079
+
6052
6080
  msgid "Select add-ons"
6053
6081
  msgstr "アドオンの選択"
6054
6082
 
@@ -6064,8 +6092,8 @@ msgstr "組織の選択"
6064
6092
  msgid "Select an environment"
6065
6093
  msgstr "環境の選択"
6066
6094
 
6067
- msgid "Select an environment above"
6068
- msgstr "環境を選択してください"
6095
+ msgid "Select an environment first"
6096
+ msgstr ""
6069
6097
 
6070
6098
  msgid "Select an option"
6071
6099
  msgstr "オプションの選択"
@@ -6229,6 +6257,9 @@ msgstr "影響を受けるホストを表示"
6229
6257
  msgid "Show all"
6230
6258
  msgstr "すべて表示"
6231
6259
 
6260
+ msgid "Show all repository sets"
6261
+ msgstr ""
6262
+
6232
6263
  msgid "Show an activation key"
6233
6264
  msgstr "アクティベーションキーの表示"
6234
6265
 
@@ -6250,6 +6281,9 @@ msgstr "フィルタールール情報の表示"
6250
6281
  msgid "Show full description"
6251
6282
  msgstr "説明全文の表示"
6252
6283
 
6284
+ msgid "Show hosts associated to an activation key"
6285
+ msgstr ""
6286
+
6253
6287
  msgid "Show organization"
6254
6288
  msgstr "組織の表示"
6255
6289
 
@@ -6259,12 +6293,18 @@ msgstr "アクティベーションキーに利用可能なリリースバージ
6259
6293
  msgid "Show releases available for the content host"
6260
6294
  msgstr "コンテンツホストで利用可能なリリースを表示します"
6261
6295
 
6296
+ msgid "Show repositories"
6297
+ msgstr ""
6298
+
6262
6299
  msgid "Show repositories enabled on the host that are known to Katello"
6263
6300
  msgstr "Katello に認識されているホストで有効化になっているリポジトリーを表示します。"
6264
6301
 
6265
6302
  msgid "Show the available repository types"
6266
6303
  msgstr "使用可能なリポジトリータイプの表示"
6267
6304
 
6305
+ msgid "Show whether each lifecycle environment is associated with the given Smart Proxy id."
6306
+ msgstr ""
6307
+
6268
6308
  msgid "Shows status of Katello system and it's subcomponents"
6269
6309
  msgstr "Katello システムとそのサブコンポーネントのステータスを表示します"
6270
6310
 
@@ -6322,6 +6362,12 @@ msgstr "コンテンツビューの公開時にデフォルトでは RPM 依存
6322
6362
  msgid "Solve dependencies"
6323
6363
  msgstr "依存関係の解決"
6324
6364
 
6365
+ msgid "Some environments are disabled because they are not associated with the host's content source."
6366
+ msgstr ""
6367
+
6368
+ msgid "Some environments are disabled because they are not associated with the selected content source."
6369
+ msgstr ""
6370
+
6325
6371
  msgid "Some hosts are not registered as content hosts and will be ignored."
6326
6372
  msgstr "ホストによってはコンテンツホストとして登録されていないため、無視されます。"
6327
6373
 
@@ -6766,9 +6812,6 @@ msgstr "同期"
6766
6812
  msgid "Synchronize Now"
6767
6813
  msgstr "今すぐ同期"
6768
6814
 
6769
- msgid "Synchronize capsule content"
6770
- msgstr "Capsule コンテンツを同期"
6771
-
6772
6815
  msgid "Synchronize repository"
6773
6816
  msgstr "リポジトリーの同期"
6774
6817
 
@@ -6802,8 +6845,8 @@ msgstr "システム目的"
6802
6845
  msgid "System purpose attributes updated"
6803
6846
  msgstr "システム目的の属性の更新"
6804
6847
 
6805
- msgid "System purpose enables you to set the system\\'s intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6806
- msgstr "システム目的では、ネットワーク上でシステムの使用目的を設定して、Red Hat Hybrid Cloud Console のサブスクリプションサービスでレポートの精度を向上させることができます。"
6848
+ msgid "System purpose enables you to set the system's intended use on your network and improves reporting accuracy in the Subscriptions service of the Red Hat Hybrid Cloud Console."
6849
+ msgstr ""
6807
6850
 
6808
6851
  msgid "Tag name"
6809
6852
  msgstr "タグ名"
@@ -6880,9 +6923,6 @@ msgstr "エラータフィルタールールの開始日は無効な形式また
6880
6923
  msgid "The erratum type must be an array. Invalid value provided"
6881
6924
  msgstr "エラータタイプは配列でなくてはなりません。無効な値が指定されました"
6882
6925
 
6883
- msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
6884
- msgstr "エクスポートされたコンテンツビューのバージョン '%{content_view} %%{current}' は、バージョン '%%{from}' から増分更新することはできません。完全にエクスポートしてください。"
6885
-
6886
6926
  msgid "The field to sort the data by. Defaults to the created date."
6887
6927
  msgstr "データを並べ替えるフィールド。デフォルトは作成日に設定されています。"
6888
6928
 
@@ -7194,6 +7234,9 @@ msgstr "ホストが katello-agent アクションを終了するまでの待機
7194
7234
  msgid "Time in seconds to wait for a host to pick up a katello-agent action"
7195
7235
  msgstr "ホストが katello-agent アクションを取得するまでの待機時間 (秒単位)"
7196
7236
 
7237
+ msgid "Time to expire yum metadata in seconds. Only relevant for custom yum repositories."
7238
+ msgstr ""
7239
+
7197
7240
  msgid "Timeout when refreshing a manifest (in seconds)"
7198
7241
  msgstr "マニフェストの更新時のタイムアウト (秒単位)"
7199
7242
 
@@ -7203,9 +7246,21 @@ msgstr "タイムスタンプ"
7203
7246
  msgid "Title"
7204
7247
  msgstr "タイトル"
7205
7248
 
7249
+ msgid "To enable them, add the environment to the content source, or select a different content source."
7250
+ msgstr ""
7251
+
7252
+ msgid "To enable them, add the environment to the host's content source, or "
7253
+ msgstr ""
7254
+
7255
+ msgid "To get started, add a filter rule to this filter"
7256
+ msgstr ""
7257
+
7206
7258
  msgid "To get started, add this host to a host collection."
7207
7259
  msgstr "まず、このホストをホストコレクションに追加します。"
7208
7260
 
7261
+ msgid "To include or exclude specific content from the content view, create a filter. Without filters, the content view includes everything from the added repositories."
7262
+ msgstr ""
7263
+
7209
7264
  msgid "To update the selected host configuration, update hosts manually in the next section."
7210
7265
  msgstr ""
7211
7266
 
@@ -7392,9 +7447,6 @@ msgstr "user-repository マッピングを更新できません"
7392
7447
  msgid "Unapplied Errata"
7393
7448
  msgstr "適用されないエラータ"
7394
7449
 
7395
- msgid "Unassociate units in repository"
7396
- msgstr "リポジトリーのユニットの関連付けを解除します"
7397
-
7398
7450
  msgid "Unattach a subscription"
7399
7451
  msgstr "サブスクリプションの割り当て解除"
7400
7452
 
@@ -7581,6 +7633,9 @@ msgstr "1 つ以上の製品のリポジトリーで HTTP Proxy 設定を更新
7581
7633
  msgid "Update the content source for specified hosts and generate the reconfiguration script"
7582
7634
  msgstr "指定されたホストのコンテンツソースを更新し、再設定スクリプトを生成します"
7583
7635
 
7636
+ msgid "Update the host immediately via remote execution"
7637
+ msgstr ""
7638
+
7584
7639
  msgid "Update the information about enabled repositories"
7585
7640
  msgstr "有効なリポジトリーの情報を更新する"
7586
7641
 
@@ -7608,6 +7663,12 @@ msgstr "製品の更新"
7608
7663
  msgid "Updates all packages on the host(s)"
7609
7664
  msgstr "ホスト上の全パッケージを更新します"
7610
7665
 
7666
+ msgid "Updates available: Component content view versions have been updated."
7667
+ msgstr ""
7668
+
7669
+ msgid "Updates available: Repositories and/or filters have changed."
7670
+ msgstr ""
7671
+
7611
7672
  msgid "Updating Package..."
7612
7673
  msgstr "パッケージを更新しています..."
7613
7674
 
@@ -7827,6 +7888,9 @@ msgstr "コンテンツビューが公開されると、バージョンがここ
7827
7888
  msgid "View %{view} has not been promoted to %{env}"
7828
7889
  msgstr "ビュー %{view} は %{env} にプロモートされていません。"
7829
7890
 
7891
+ msgid "View Filters"
7892
+ msgstr ""
7893
+
7830
7894
  msgid "View Subscription Usage"
7831
7895
  msgstr "サブスクリプションの使用状況の表示"
7832
7896
 
@@ -7839,6 +7903,9 @@ msgstr ""
7839
7903
  msgid "View by"
7840
7904
  msgstr "表示"
7841
7905
 
7906
+ msgid "View documentation"
7907
+ msgstr ""
7908
+
7842
7909
  msgid "View matching content"
7843
7910
  msgstr "マッチするコンテンツの表示"
7844
7911
 
@@ -7884,6 +7951,9 @@ msgstr "「True」に設定すると、作成可能なリポジトリータイ
7884
7951
  msgid "When unregistering a host via subscription-manager, also delete the host record. Managed resources linked to host such as virtual machines and DNS records may also be deleted."
7885
7952
  msgstr "subscription-manager でホストの登録を解除すると、ホストの記録も削除されます。仮想マシンや DNS レコードなど、ホストに関連付けられている管理対象のリソースも削除される可能性があります。"
7886
7953
 
7954
+ msgid "Whether Simple Content Access should be enabled for the organization."
7955
+ msgstr ""
7956
+
7887
7957
  msgid "Whether or not the host collection may have unlimited hosts"
7888
7958
  msgstr "ホストコレクションに無制限のホストが設定された可能性があるかどうか"
7889
7959
 
@@ -7896,6 +7966,9 @@ msgstr "一部のアクションを実行する前に pulp や candlepin など
7896
7966
  msgid "Whether or not to regenerate the repository on disk. Default: true"
7897
7967
  msgstr "ディスクにリポジトリーを再生成するかどうか。デフォルト: true"
7898
7968
 
7969
+ msgid "Whether or not to return filters applied to the content view version"
7970
+ msgstr ""
7971
+
7899
7972
  msgid "Whether or not to show all results"
7900
7973
  msgstr "すべての結果を表示するかどうか"
7901
7974
 
@@ -7941,32 +8014,20 @@ msgstr "組織の parent_id を設定できません。この機能は無効に
7941
8014
  msgid "You currently don't have any ${selectedContentType}."
7942
8015
  msgstr "現在、{selectedContentType} はありません。"
7943
8016
 
7944
- msgid "You currently don't have any Content views."
7945
- msgstr "現在、コンテンツビューはありません。"
7946
-
7947
8017
  msgid "You currently don't have any alternate content sources."
7948
8018
  msgstr "現時点で、代替コンテンツソースはありません。"
7949
8019
 
7950
- msgid "You currently don't have any filters for this content view."
7951
- msgstr "現在、このコンテンツビューのフィルターはありません。"
7952
-
7953
- msgid "You currently don't have any history for this content view."
7954
- msgstr "現在、このコンテンツビューの履歴はありません。"
8020
+ msgid "You currently don't have any related content views."
8021
+ msgstr ""
7955
8022
 
7956
8023
  msgid "You currently don't have any repositories associated with this content."
7957
8024
  msgstr "現在、このコンテンツに関連付けられているリポジトリーはありません。"
7958
8025
 
7959
- msgid "You currently don't have any repositories to add to this content view."
7960
- msgstr "現在、このコンテンツビューに追加するリポジトリーはありません。"
7961
-
7962
8026
  msgid "You currently don't have any repositories to add to this filter."
7963
8027
  msgstr "現在、このフィルターに追加するリポジトリーはありません。"
7964
8028
 
7965
- msgid "You currently don't have any versions for this content view."
7966
- msgstr "現在、このコンテンツビューのバージョンはありません。"
7967
-
7968
- msgid "You currently don\\'t have any related content views."
7969
- msgstr "現在、関連するコンテンツビューはありません。"
8029
+ msgid "You currently have no content views to display"
8030
+ msgstr ""
7970
8031
 
7971
8032
  msgid "You do not have permissions to delete %s"
7972
8033
  msgstr "%s を削除する権限がありません。"
@@ -8022,9 +8083,6 @@ msgstr "検索条件にマッチするホストはありませんでした。"
8022
8083
  msgid "Yum"
8023
8084
  msgstr "Yum"
8024
8085
 
8025
- msgid "Yum Metadata: %s"
8026
- msgstr "Yum メタデータ: %s"
8027
-
8028
8086
  msgid "a content unit"
8029
8087
  msgstr "コンテンツユニット"
8030
8088
 
@@ -8187,6 +8245,9 @@ msgstr "リポジトリーがこのコンテンツビューに属さないフィ
8187
8245
  msgid "cannot contain more than %s characters"
8188
8246
  msgstr "%s 文字以下にしてください"
8189
8247
 
8248
+ msgid "change the host's content source."
8249
+ msgstr ""
8250
+
8190
8251
  msgid "checking %s task status"
8191
8252
  msgstr "%s タスクステータスの確認"
8192
8253
 
@@ -8202,9 +8263,6 @@ msgstr "複合コンテンツビュー ID"
8202
8263
  msgid "composite content view numeric identifier"
8203
8264
  msgstr "複合コンテンツビューの数値 ID"
8204
8265
 
8205
- msgid "conditional package names to include in the package group"
8206
- msgstr "パッケージグループに含める条件付きパッケージ名"
8207
-
8208
8266
  msgid "content release version"
8209
8267
  msgstr "コンテンツリリースバージョン"
8210
8268
 
@@ -8259,6 +8317,9 @@ msgstr "削除するコンテンツビューバージョン ID"
8259
8317
  msgid "content view versions to compare"
8260
8318
  msgstr "比較するコンテンツビューバージョン"
8261
8319
 
8320
+ msgid "create a custom product"
8321
+ msgstr ""
8322
+
8262
8323
  msgid "create a filter for a content view"
8263
8324
  msgstr "コンテンツビューのフィルターを作成します"
8264
8325
 
@@ -8268,9 +8329,6 @@ msgstr "deb、パッケージ、パッケージグループ、または Docker
8268
8329
  msgid "deb_ids is not an array"
8269
8330
  msgstr "deb_ids は配列ではありません"
8270
8331
 
8271
- msgid "default package names to include in the package group"
8272
- msgstr "パッケージグループに含めるデフォルトのパッケージ名"
8273
-
8274
8332
  msgid "delete a filter"
8275
8333
  msgstr "フィルターを削除します。"
8276
8334
 
@@ -8502,9 +8560,6 @@ msgstr "リポジトリー ID の一覧"
8502
8560
  msgid "list of rpm filename strings to include in published version"
8503
8561
  msgstr "公開バージョンに含める rmp ファイル名文字列の一覧"
8504
8562
 
8505
- msgid "mandatory package names to include in the package group"
8506
- msgstr "パッケージグループに含める必須のパッケージ名"
8507
-
8508
8563
  msgid "max_hosts must be given a value if this host collection is not unlimited."
8509
8564
  msgstr "このホストコレクションが無制限でない場合は、max_hosts に値を提供する必要があります。"
8510
8565
 
@@ -8532,6 +8587,9 @@ msgstr "以下のいずれかでなければなりません: %s"
8532
8587
  msgid "must be one of: %s"
8533
8588
  msgstr "%s のいずれかでなければなりません"
8534
8589
 
8590
+ msgid "must be true or false"
8591
+ msgstr ""
8592
+
8535
8593
  msgid "must be unique within one organization"
8536
8594
  msgstr "1 つの組織内で一意である必要があります"
8537
8595
 
@@ -8559,9 +8617,6 @@ msgstr "先頭または末尾に空白を含めることはできません。"
8559
8617
  msgid "name"
8560
8618
  msgstr "名前"
8561
8619
 
8562
- msgid "name not defined."
8563
- msgstr "名前が定義されていません。"
8564
-
8565
8620
  msgid "name of organization"
8566
8621
  msgstr "組織の名前"
8567
8622
 
@@ -8607,21 +8662,12 @@ msgstr "環境名は 1 つの組織内で一意である必要があります"
8607
8662
  msgid "only show the repositories readable by this user with this username"
8608
8663
  msgstr "このユーザー名を持つこのユーザーで読み取り可能なリポジトリーのみを表示する"
8609
8664
 
8610
- msgid "optional package names to include in the package group"
8611
- msgstr "パッケージグループに含める任意のパッケージ名"
8612
-
8613
8665
  msgid "organization ID"
8614
8666
  msgstr "組織 ID"
8615
8667
 
8616
8668
  msgid "organization identifier"
8617
8669
  msgstr "組織 ID"
8618
8670
 
8619
- msgid "package group description. Defaults to params[:name]"
8620
- msgstr "パッケージグループの説明。デフォルトは params[:name] です"
8621
-
8622
- msgid "package group name"
8623
- msgstr "パッケージグループ名"
8624
-
8625
8671
  msgid "package group: uuid"
8626
8672
  msgstr "パッケージグループ: uuid"
8627
8673
 
@@ -8700,12 +8746,6 @@ msgstr "リポジトリー ID"
8700
8746
  msgid "repository source url"
8701
8747
  msgstr "リポジトリーソース URL"
8702
8748
 
8703
- msgid "repository_id"
8704
- msgstr "repository_id"
8705
-
8706
- msgid "repository_id not defined."
8707
- msgstr "repository_id が定義されていません。"
8708
-
8709
8749
  msgid "root-node of collection contained in responses (default: 'results')"
8710
8750
  msgstr "応答に含まれるコレクションの root ノード (デフォルト: 'results')"
8711
8751
 
@@ -8727,9 +8767,6 @@ msgstr ""
8727
8767
  msgid "service level"
8728
8768
  msgstr "サービスレベル"
8729
8769
 
8730
- msgid "set \"user_visible\" flag on package group. Defaults to true"
8731
- msgstr "パッケージグループに「user_visible」フラグを設定します。デフォルトは true です"
8732
-
8733
8770
  msgid "set true if you want to see only library environments"
8734
8771
  msgstr "ライブラリー環境のみを表示する場合 true に設定"
8735
8772
 
@@ -8787,9 +8824,6 @@ msgstr "コンポーネントのコンテンツビューの最新版が必要な
8787
8824
  msgid "true if this repository can be published via HTTP"
8788
8825
  msgstr "このリポジトリーが HHTP 経由で公開できる場合は true"
8789
8826
 
8790
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
8791
- msgstr "同期時にこのリポジトリーをソースからミラーリングして古い rpm を削除する必要がある場合は true に指定します (非推奨)"
8792
-
8793
8827
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8794
8828
  msgstr "フィルターのタイプ (例: deb、rpm、package_group、erratum、erratum_id、erratum_date、docker、modulemd)"
8795
8829
 
@@ -8835,15 +8869,9 @@ msgstr "コンテンツビュータブを確認してください。"
8835
8869
  msgid "waiting for %s to finish the task"
8836
8870
  msgstr "%s がタスクを終了するまで待機"
8837
8871
 
8838
- msgid "waiting for Pulp to finish the task"
8839
- msgstr "Pulp がタスクを終了するまで待機"
8840
-
8841
8872
  msgid "waiting for Pulp to finish the task %s"
8842
8873
  msgstr "Pulp がタスク %s を終了するまで待機"
8843
8874
 
8844
- msgid "waiting for Pulp to start the task"
8845
- msgstr "Pulp がタスクを開始するまで待機"
8846
-
8847
8875
  msgid "waiting for Pulp to start the task %s"
8848
8876
  msgstr "Pulp がタスク %s を開始するまで待機"
8849
8877
 
@@ -8865,6 +8893,9 @@ msgstr "yes"
8865
8893
  msgid "{0} items selected"
8866
8894
  msgstr "選択項目 {0} 件"
8867
8895
 
8896
+ msgid "{enableRedHatRepos} or {createACustomProduct}."
8897
+ msgstr ""
8898
+
8868
8899
  msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8869
8900
  msgstr "{numberOfActivationKeys} アクティベーションキーは、以下のコンテンツビュー {cvName} に割り当てられます:"
8870
8901