katello 3.17.0 → 3.18.0

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 (272) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
  5. data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
  8. data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
  9. data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
  10. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  11. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +17 -8
  12. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  13. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -71
  14. data/app/controllers/katello/api/v2/content_views_controller.rb +37 -26
  15. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  16. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  17. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  18. data/app/controllers/katello/api/v2/host_debs_controller.rb +1 -0
  19. data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
  20. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +35 -6
  21. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  22. data/app/controllers/katello/api/v2/products_controller.rb +9 -9
  23. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  24. data/app/controllers/katello/api/v2/repositories_controller.rb +10 -5
  25. data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
  26. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  28. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  29. data/app/controllers/katello/concerns/api/v2/authorization.rb +19 -5
  30. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
  31. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  32. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  33. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  34. data/app/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
  35. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  36. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  37. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  38. data/app/lib/actions/helpers/smart_proxy_sync_history_helper.rb +24 -0
  39. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
  40. data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
  41. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -7
  42. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  43. data/app/lib/actions/katello/content_view/publish.rb +9 -9
  44. data/app/lib/actions/katello/content_view_version/import.rb +8 -13
  45. data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  47. data/app/lib/actions/katello/host/hypervisors_update.rb +18 -0
  48. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  49. data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
  50. data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
  51. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  52. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  53. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  54. data/app/lib/actions/katello/product/content_create.rb +7 -6
  55. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  56. data/app/lib/actions/katello/repository/import_upload.rb +4 -1
  57. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  58. data/app/lib/actions/katello/repository/sync.rb +3 -1
  59. data/app/lib/actions/katello/repository/update.rb +5 -1
  60. data/app/lib/actions/katello/repository/upload_files.rb +1 -0
  61. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +15 -0
  62. data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
  63. data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
  64. data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
  65. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  66. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  67. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  68. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  69. data/app/lib/actions/pulp3/content_view_version/export.rb +7 -1
  70. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  71. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  72. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  73. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +38 -14
  74. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  75. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  76. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
  77. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  78. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  79. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  80. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  81. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  82. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  83. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  84. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  85. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  86. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  87. data/app/lib/katello/resources/registry.rb +3 -3
  88. data/app/models/katello/authorization/activation_key.rb +4 -0
  89. data/app/models/katello/authorization/content_view.rb +13 -0
  90. data/app/models/katello/authorization/content_view_component.rb +15 -0
  91. data/app/models/katello/authorization/content_view_filter.rb +15 -0
  92. data/app/models/katello/authorization/content_view_version.rb +25 -2
  93. data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
  94. data/app/models/katello/authorization/gpg_key.rb +12 -4
  95. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  96. data/app/models/katello/authorization/organization.rb +8 -0
  97. data/app/models/katello/authorization/sync_plan.rb +16 -0
  98. data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
  99. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  100. data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -4
  101. data/app/models/katello/content_migration_progress.rb +4 -0
  102. data/app/models/katello/content_view.rb +30 -4
  103. data/app/models/katello/content_view_component.rb +2 -0
  104. data/app/models/katello/content_view_filter.rb +5 -0
  105. data/app/models/katello/content_view_history.rb +2 -1
  106. data/app/models/katello/content_view_package_filter.rb +1 -1
  107. data/app/models/katello/content_view_puppet_module.rb +8 -0
  108. data/app/models/katello/content_view_repository.rb +13 -1
  109. data/app/models/katello/content_view_version_export_history.rb +8 -1
  110. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  111. data/app/models/katello/glue/pulp/repo.rb +8 -0
  112. data/app/models/katello/gpg_key.rb +1 -1
  113. data/app/models/katello/ping.rb +8 -3
  114. data/app/models/katello/repository.rb +33 -0
  115. data/app/models/katello/root_repository.rb +26 -1
  116. data/app/models/katello/smart_proxy_sync_history.rb +8 -0
  117. data/app/services/katello/candlepin/event_handler.rb +2 -0
  118. data/app/services/katello/candlepin/message_handler.rb +34 -0
  119. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  120. data/app/services/katello/host_status_manager.rb +9 -0
  121. data/app/services/katello/pulp3/api/apt.rb +57 -0
  122. data/app/services/katello/pulp3/api/core.rb +8 -0
  123. data/app/services/katello/pulp3/api/docker.rb +4 -0
  124. data/app/services/katello/pulp3/content_view_version/export.rb +125 -8
  125. data/app/services/katello/pulp3/content_view_version/import.rb +39 -34
  126. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
  127. data/app/services/katello/pulp3/content_view_version/import_validator.rb +114 -0
  128. data/app/services/katello/pulp3/deb.rb +38 -0
  129. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  130. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  131. data/app/services/katello/pulp3/migration.rb +51 -10
  132. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  133. data/app/services/katello/pulp3/repository.rb +10 -4
  134. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  135. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  136. data/app/services/katello/pulp3/repository/docker.rb +9 -0
  137. data/app/services/katello/pulp3/repository/yum.rb +14 -9
  138. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  139. data/app/services/katello/pulp3/task.rb +4 -0
  140. data/app/services/katello/pulp3/task_group.rb +4 -0
  141. data/app/services/katello/repository_type.rb +2 -1
  142. data/app/services/katello/smart_proxy_helper.rb +9 -0
  143. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  144. data/app/views/foreman/hosts/_registration.html.erb +12 -0
  145. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  146. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  147. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  148. data/app/views/katello/layouts/react.html.erb +3 -2
  149. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  150. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  151. data/config/routes/api/v2.rb +24 -2
  152. data/config/routes/overrides.rb +1 -0
  153. data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
  154. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  155. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  156. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  157. data/db/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
  158. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  159. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  160. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  161. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +6 -2
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +92 -19
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +8 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  199. data/lib/katello/engine.rb +2 -0
  200. data/lib/katello/permission_creator.rb +98 -69
  201. data/lib/katello/permissions/host_permissions.rb +1 -0
  202. data/lib/katello/plugin.rb +10 -2
  203. data/lib/katello/repository_types/deb.rb +9 -1
  204. data/lib/katello/tasks/pulp3_migration.rake +17 -3
  205. data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
  206. data/lib/katello/tasks/pulp3_migration_stats.rake +41 -0
  207. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  208. data/lib/katello/tasks/reset.rake +2 -1
  209. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  210. data/lib/katello/version.rb +1 -1
  211. data/locale/action_names.rb +51 -44
  212. data/locale/bn/katello.po +279 -55
  213. data/locale/cs/katello.po +278 -51
  214. data/locale/de/katello.po +279 -52
  215. data/locale/en/katello.po +278 -49
  216. data/locale/es/katello.po +279 -51
  217. data/locale/fr/katello.po +279 -51
  218. data/locale/gu/katello.po +279 -55
  219. data/locale/hi/katello.po +279 -55
  220. data/locale/it/katello.po +279 -51
  221. data/locale/ja/katello.po +279 -52
  222. data/locale/katello.pot +1379 -971
  223. data/locale/kn/katello.po +279 -55
  224. data/locale/ko/katello.po +279 -51
  225. data/locale/mr/katello.po +279 -55
  226. data/locale/or/katello.po +279 -55
  227. data/locale/pa/katello.po +279 -55
  228. data/locale/pt/katello.po +278 -52
  229. data/locale/pt_BR/katello.po +279 -51
  230. data/locale/ru/katello.po +279 -51
  231. data/locale/ta/katello.po +279 -55
  232. data/locale/te/katello.po +279 -55
  233. data/locale/zh_CN/katello.po +279 -51
  234. data/locale/zh_TW/katello.po +279 -52
  235. data/webpack/components/ActionableDetail.js +2 -1
  236. data/webpack/components/Search/Search.js +1 -1
  237. data/webpack/components/Table/MainTable.js +6 -2
  238. data/webpack/components/Table/TableWrapper.js +46 -9
  239. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  240. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  241. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  242. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  243. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  244. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  245. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  246. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  247. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  248. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  249. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  250. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  251. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  252. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  253. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  254. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  255. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  256. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +29 -19
  257. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  258. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  259. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  260. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  261. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  262. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  263. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  264. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  265. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  266. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  267. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  268. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  269. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  270. data/webpack/test-utils/react-testing-lib-wrapper.js +3 -0
  271. metadata +74 -13
  272. data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
@@ -21,6 +21,11 @@ msgstr ""
21
21
  "Plural-Forms: nplurals=1; plural=0;\n"
22
22
  "X-Generator: Zanata 3.6.0\n"
23
23
 
24
+ msgid ""
25
+ "\n"
26
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
27
+ msgstr ""
28
+
24
29
  msgid " %{errata_count} Errata"
25
30
  msgstr ""
26
31
 
@@ -342,12 +347,18 @@ msgstr ""
342
347
  msgid "Action with sub plans"
343
348
  msgstr ""
344
349
 
350
+ msgid "Activation Key(s)"
351
+ msgstr ""
352
+
345
353
  msgid "Activation Keys"
346
354
  msgstr "활성키 "
347
355
 
348
356
  msgid "Activation key ID"
349
357
  msgstr "활성키 ID"
350
358
 
359
+ msgid "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
360
+ msgstr ""
361
+
351
362
  msgid "Activation keys and subscriptions can be managed"
352
363
  msgstr "활성키 및 서브스크립션을 관리할 수 있습니다 "
353
364
 
@@ -399,6 +410,9 @@ msgstr "추가된 컨텐츠: "
399
410
  msgid "Adding content units"
400
411
  msgstr ""
401
412
 
413
+ msgid "Adding multiple versions of the same Puppet Module is not supported by incremental update. The following Puppet Modules have duplicate versions in the incremental update content list: %{dup_list}"
414
+ msgstr ""
415
+
402
416
  msgid "Addons"
403
417
  msgstr ""
404
418
 
@@ -503,6 +517,9 @@ msgstr ""
503
517
  msgid "Artifacts"
504
518
  msgstr ""
505
519
 
520
+ msgid "Assign system purpose attributes on one or more hosts"
521
+ msgstr ""
522
+
506
523
  # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
507
524
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
508
525
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
@@ -548,9 +565,6 @@ msgstr ""
548
565
  msgid "Author"
549
566
  msgstr ""
550
567
 
551
- msgid "Auto Enablement may only be set on custom repositories."
552
- msgstr ""
553
-
554
568
  msgid "Auto Publish - Triggered by '%s'"
555
569
  msgstr ""
556
570
 
@@ -760,6 +774,9 @@ msgstr ""
760
774
  msgid "Cannot delete view while it exists in environments"
761
775
  msgstr "뷰가 환경에서 있어 삭제할 수 없습니다 "
762
776
 
777
+ msgid "Cannot import a composite content view"
778
+ msgstr ""
779
+
763
780
  msgid "Cannot import a custom subscription from a redhat product."
764
781
  msgstr ""
765
782
 
@@ -815,12 +832,18 @@ msgstr ""
815
832
  msgid "Cannot upload Container Image content."
816
833
  msgstr ""
817
834
 
835
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
836
+ msgstr ""
837
+
818
838
  msgid "Cannot validate contents on non-yum/deb repositories."
819
839
  msgstr ""
820
840
 
821
841
  msgid "Check if a connection can be made to Red Hat Subscription Management."
822
842
  msgstr ""
823
843
 
844
+ msgid "Check if the specified organization is eligible for Simple Content Access"
845
+ msgstr ""
846
+
824
847
  msgid "Check services before actions"
825
848
  msgstr ""
826
849
 
@@ -856,7 +879,7 @@ msgstr ""
856
879
  msgid "Combined Profile Update for %s"
857
880
  msgstr ""
858
881
 
859
- msgid "Comma separated list of tags to sync for Container Image repository"
882
+ msgid "Comma-separated list of tags to sync for Container Image repository"
860
883
  msgstr ""
861
884
 
862
885
  # translation auto-copied from project [RHEL] [STORAGE] DM Multipath, version 6.4, document MPIO_Overview
@@ -912,9 +935,15 @@ msgstr ""
912
935
  msgid "Content Download URL"
913
936
  msgstr ""
914
937
 
938
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
939
+ msgstr ""
940
+
915
941
  msgid "Content Hosts"
916
942
  msgstr "컨텐츠 호스트 "
917
943
 
944
+ msgid "Content Migration"
945
+ msgstr ""
946
+
918
947
  msgid "Content Source"
919
948
  msgstr "컨텐츠 소스 "
920
949
 
@@ -966,9 +995,15 @@ msgstr ""
966
995
  msgid "Content View Version not set"
967
996
  msgstr ""
968
997
 
998
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
999
+ msgstr ""
1000
+
969
1001
  msgid "Content View and Environment not set for registration."
970
1002
  msgstr ""
971
1003
 
1004
+ msgid "Content View id"
1005
+ msgstr ""
1006
+
972
1007
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
973
1008
  msgid "Content Views"
974
1009
  msgstr "컨텐츠 보기 "
@@ -1007,6 +1042,9 @@ msgstr "컨텐츠 뷰 레이블 "
1007
1042
  msgid "Content view numeric identifier"
1008
1043
  msgstr "숫자로된 컨텐츠 뷰 ID "
1009
1044
 
1045
+ msgid "Content view version export history identifier"
1046
+ msgstr ""
1047
+
1010
1048
  msgid "Content view version identifier"
1011
1049
  msgstr "컨텐츠 뷰 버전 ID "
1012
1050
 
@@ -1028,12 +1066,12 @@ msgstr ""
1028
1066
  msgid "Copy an activation key"
1029
1067
  msgstr "활성키 복사 "
1030
1068
 
1069
+ msgid "Copy version units to library"
1070
+ msgstr ""
1071
+
1031
1072
  msgid "Cores: %s"
1032
1073
  msgstr "코어: %s"
1033
1074
 
1034
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1035
- msgstr ""
1036
-
1037
1075
  msgid "Could not delete organization '%s'."
1038
1076
  msgstr "조직 '%s'을 삭제할 수 없음. "
1039
1077
 
@@ -1043,6 +1081,12 @@ msgstr "리포지터리에서 id '%{id}'를 갖는 %{content}을(를) 찾을 수
1043
1081
  msgid "Could not find %{count} errata. Only found: %{found}"
1044
1082
  msgstr ""
1045
1083
 
1084
+ msgid "Could not find %{name} resource with id %{id}"
1085
+ msgstr ""
1086
+
1087
+ msgid "Could not find %{name} resources with ids %{ids}"
1088
+ msgstr ""
1089
+
1046
1090
  msgid "Could not find Environment with ids: %s"
1047
1091
  msgstr "다음의 ID를 갖는 환경을 찾을 수 없습니다: %s"
1048
1092
 
@@ -1076,9 +1120,6 @@ msgstr ""
1076
1120
  msgid "Couldn't find %{type} Filter with id %{id}"
1077
1121
  msgstr "ID %{id}인 %{type} 필터를 찾을 수 없습니다 "
1078
1122
 
1079
- msgid "Couldn't find Content Credential '%s'"
1080
- msgstr ""
1081
-
1082
1123
  msgid "Couldn't find ContentViewFilter with id=%s"
1083
1124
  msgstr " id=%s인 컨텐츠 뷰 필터를 찾을 수 없습니다 "
1084
1125
 
@@ -1125,12 +1166,6 @@ msgstr "환경 '%s'을 찾을 수 없음 "
1125
1166
  msgid "Couldn't find errata ids '%s'"
1126
1167
  msgstr "에라타 ID '%s'을/를 찾을 수 없음 "
1127
1168
 
1128
- msgid "Couldn't find gpg key '%s'"
1129
- msgstr "GPG 키 '%s'를 찾을 수 없습니다 "
1130
-
1131
- msgid "Couldn't find host '%s'"
1132
- msgstr ""
1133
-
1134
1169
  msgid "Couldn't find host collection '%s'"
1135
1170
  msgstr "호스트 컬렉션 '%s'을 찾을 수 없습니다 "
1136
1171
 
@@ -1143,36 +1178,18 @@ msgstr "조직 '%s'을 찾을 수 없음 "
1143
1178
  msgid "Couldn't find prior-environment '%s'"
1144
1179
  msgstr "이전 환경 '%s'을 찾을 수 없습니다 "
1145
1180
 
1146
- msgid "Couldn't find product '%s'"
1147
- msgstr "'%s'인 제품을 찾을 수 없음 "
1148
-
1149
1181
  msgid "Couldn't find product with id '%s'"
1150
1182
  msgstr "ID '%s'인 제품을 찾을 수 없음 "
1151
1183
 
1152
1184
  msgid "Couldn't find repository '%s'"
1153
1185
  msgstr "리포지터리 '%s'를 찾을 수 없음 "
1154
1186
 
1155
- msgid "Couldn't find repository set with id '%s'."
1156
- msgstr "id '%s'인 리포지터리 세트를 찾을 수 없습니다 "
1157
-
1158
1187
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1159
1188
  msgstr ""
1160
1189
 
1161
- msgid "Couldn't find ssl ca cert '%s'"
1162
- msgstr ""
1163
-
1164
- msgid "Couldn't find ssl client cert '%s'"
1165
- msgstr ""
1166
-
1167
- msgid "Couldn't find ssl client key '%s'"
1168
- msgstr ""
1169
-
1170
1190
  msgid "Couldn't find subject of synchronization"
1171
1191
  msgstr "동기화 제목을 찾을 수 없음 "
1172
1192
 
1173
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1174
- msgstr "조직 '%{org}'에서 동기화 계획 '%{plan}'을 찾을 수 없음 "
1175
-
1176
1193
  msgid "Count"
1177
1194
  msgstr ""
1178
1195
 
@@ -1243,6 +1260,9 @@ msgstr ""
1243
1260
  msgid "Current organization not set."
1244
1261
  msgstr ""
1245
1262
 
1263
+ msgid "Custom"
1264
+ msgstr ""
1265
+
1246
1266
  msgid "Custom Content Repositories"
1247
1267
  msgstr "사용자 정의 컨텐츠 리포지터리 "
1248
1268
 
@@ -1451,9 +1471,15 @@ msgstr "새로 공개된 컨텐츠 뷰 버전 설명 "
1451
1471
  msgid "Description of the repository"
1452
1472
  msgstr ""
1453
1473
 
1474
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1475
+ msgstr ""
1476
+
1454
1477
  msgid "Desired quantity of the pool"
1455
1478
  msgstr ""
1456
1479
 
1480
+ msgid "Destination Server name"
1481
+ msgstr ""
1482
+
1457
1483
  # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1458
1484
  msgid "Destroy"
1459
1485
  msgstr "삭제 "
@@ -1506,6 +1532,9 @@ msgstr "상세 정보 "
1506
1532
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1507
1533
  msgstr ""
1508
1534
 
1535
+ msgid "Directory containing the exported Content View Version"
1536
+ msgstr ""
1537
+
1509
1538
  # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author eukim
1510
1539
  msgid "Disable"
1511
1540
  msgstr "비활성화 "
@@ -1522,6 +1551,9 @@ msgstr ""
1522
1551
  msgid "Disable simple content access for a manifest"
1523
1552
  msgstr ""
1524
1553
 
1554
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1555
+ msgstr ""
1556
+
1525
1557
  msgid "Disconnected mode"
1526
1558
  msgstr ""
1527
1559
 
@@ -1606,6 +1638,9 @@ msgstr ""
1606
1638
  msgid "Enabled Repositories"
1607
1639
  msgstr ""
1608
1640
 
1641
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1642
+ msgstr ""
1643
+
1609
1644
  msgid "End Date"
1610
1645
  msgstr ""
1611
1646
 
@@ -1715,7 +1750,10 @@ msgstr ""
1715
1750
  msgid "Export CSV"
1716
1751
  msgstr ""
1717
1752
 
1718
- msgid "Export a content view version"
1753
+ msgid "Export Library"
1754
+ msgstr ""
1755
+
1756
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1719
1757
  msgstr ""
1720
1758
 
1721
1759
  msgid "Export a repository"
@@ -1724,9 +1762,15 @@ msgstr ""
1724
1762
  msgid "Export as CSV"
1725
1763
  msgstr ""
1726
1764
 
1765
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1766
+ msgstr ""
1767
+
1727
1768
  msgid "Export to ISO format"
1728
1769
  msgstr ""
1729
1770
 
1771
+ msgid "Export to ISO format."
1772
+ msgstr ""
1773
+
1730
1774
  msgid "Exported version"
1731
1775
  msgstr ""
1732
1776
 
@@ -1866,10 +1910,6 @@ msgstr ""
1866
1910
  msgid "GPG Key URL"
1867
1911
  msgstr ""
1868
1912
 
1869
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
1870
- msgid "GPG Keys"
1871
- msgstr "GPG 키 "
1872
-
1873
1913
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1874
1914
  msgid "Generate and Download"
1875
1915
  msgstr "생성 및 다운로드 "
@@ -1976,6 +2016,9 @@ msgstr "호스트 컬렉션이 비어 있습니다. "
1976
2016
  msgid "Host content and subscription details"
1977
2017
  msgstr "호스트 컨텐츠 및 서브스크립션 정보 "
1978
2018
 
2019
+ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
2020
+ msgstr ""
2021
+
1979
2022
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
1980
2023
  msgstr ""
1981
2024
 
@@ -2000,6 +2043,9 @@ msgstr ""
2000
2043
  msgid "Host id to list applicable packages for"
2001
2044
  msgstr ""
2002
2045
 
2046
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2047
+ msgstr ""
2048
+
2003
2049
  msgid "Host with ID %s already exists in the host collection."
2004
2050
  msgstr ""
2005
2051
 
@@ -2153,6 +2199,9 @@ msgstr ""
2153
2199
  msgid "Identifiers for Lifecycle Environment"
2154
2200
  msgstr ""
2155
2201
 
2202
+ msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
2203
+ msgstr ""
2204
+
2156
2205
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2157
2206
  msgstr ""
2158
2207
 
@@ -2195,6 +2244,15 @@ msgstr ""
2195
2244
  msgid "Immediate"
2196
2245
  msgstr ""
2197
2246
 
2247
+ msgid "Import"
2248
+ msgstr ""
2249
+
2250
+ msgid "Import Content View Version"
2251
+ msgstr ""
2252
+
2253
+ msgid "Import Default Content View"
2254
+ msgstr ""
2255
+
2198
2256
  msgid "Import Manifest"
2199
2257
  msgstr "매니페스트 가져오기 "
2200
2258
 
@@ -2216,12 +2274,27 @@ msgstr ""
2216
2274
  msgid "Import a Manifest using the manifest tab above."
2217
2275
  msgstr ""
2218
2276
 
2277
+ msgid "Import a content view version"
2278
+ msgstr ""
2279
+
2280
+ msgid "Import a content view version to the library"
2281
+ msgstr ""
2282
+
2219
2283
  msgid "Import facts"
2220
2284
  msgstr "팩트 불러오기"
2221
2285
 
2222
2286
  msgid "Import uploads into a repository"
2223
2287
  msgstr "리포지터리에 업로드 가져오기 "
2224
2288
 
2289
+ msgid "Import-only can not be changed after creation"
2290
+ msgstr ""
2291
+
2292
+ msgid "Import-only content views can not be published directly"
2293
+ msgstr ""
2294
+
2295
+ msgid "Import-only content views will be available in a future version."
2296
+ msgstr ""
2297
+
2225
2298
  msgid "Importing manifest into '%{subject}' failed."
2226
2299
  msgstr ""
2227
2300
 
@@ -2395,6 +2468,9 @@ msgstr ""
2395
2468
  msgid "Invalid params provided - date_type must be one of %s"
2396
2469
  msgstr ""
2397
2470
 
2471
+ msgid "Invalid path specified."
2472
+ msgstr ""
2473
+
2398
2474
  msgid ""
2399
2475
  "Invalid puppet module parameters specified. \\\n"
2400
2476
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2403,6 +2479,12 @@ msgstr ""
2403
2479
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2404
2480
  msgstr "잘못된 puppet 모듈입니다. puppet 모듈에는 metadata.json 파일이 들어 있고 올바르게 압축되어 있는지 확인합니다. "
2405
2481
 
2482
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2483
+ msgstr ""
2484
+
2485
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2486
+ msgstr ""
2487
+
2406
2488
  msgid "Invalid value specified for Container Image repositories."
2407
2489
  msgstr ""
2408
2490
 
@@ -2412,6 +2494,9 @@ msgstr ""
2412
2494
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2413
2495
  msgstr ""
2414
2496
 
2497
+ msgid "Katello"
2498
+ msgstr ""
2499
+
2415
2500
  msgid "Katello ID of local pool to update"
2416
2501
  msgstr ""
2417
2502
 
@@ -2472,9 +2557,6 @@ msgstr ""
2472
2557
  msgid "Learn more about adding Subscription Manifests"
2473
2558
  msgstr ""
2474
2559
 
2475
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2476
- msgstr ""
2477
-
2478
2560
  msgid "Library lifecycle environments may not be deleted."
2479
2561
  msgstr "라이브러라 라이프사이클 환경은 삭제할 수 없습니다. "
2480
2562
 
@@ -2574,6 +2656,9 @@ msgstr "에라타 나열 "
2574
2656
  msgid "List errata available for the content host"
2575
2657
  msgstr "컨텐츠 호스트에서 사용 가능한 에라타 나열 "
2576
2658
 
2659
+ msgid "List export histories"
2660
+ msgstr ""
2661
+
2577
2662
  msgid "List filter rules"
2578
2663
  msgstr "필터 규칙 목록 나열 "
2579
2664
 
@@ -2727,6 +2812,9 @@ msgstr ""
2727
2812
  msgid "List srpms"
2728
2813
  msgstr ""
2729
2814
 
2815
+ msgid "List subscriptions"
2816
+ msgstr ""
2817
+
2730
2818
  msgid "List sync plans"
2731
2819
  msgstr "동기화 계획 나열 "
2732
2820
 
@@ -2815,6 +2903,9 @@ msgstr "메세지 "
2815
2903
  msgid "Messaging connection"
2816
2904
  msgstr ""
2817
2905
 
2906
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2907
+ msgstr ""
2908
+
2818
2909
  msgid "Mismatched"
2819
2910
  msgstr ""
2820
2911
 
@@ -2947,6 +3038,9 @@ msgstr ""
2947
3038
  msgid "No errors"
2948
3039
  msgstr "오류 없음 "
2949
3040
 
3041
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3042
+ msgstr ""
3043
+
2950
3044
  msgid "No file uploaded"
2951
3045
  msgstr "업로드된 파일이 없음 "
2952
3046
 
@@ -2959,12 +3053,18 @@ msgstr ""
2959
3053
  msgid "No hosts registered with subscription-manager found in selection."
2960
3054
  msgstr ""
2961
3055
 
3056
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3057
+ msgstr ""
3058
+
2962
3059
  msgid "No manifest file uploaded"
2963
3060
  msgstr "업로드된 매니페스트 파일이 없음 "
2964
3061
 
2965
3062
  msgid "No matching content views found"
2966
3063
  msgstr ""
2967
3064
 
3065
+ msgid "No matching repositories found"
3066
+ msgstr ""
3067
+
2968
3068
  msgid "No new packages installed"
2969
3069
  msgstr "설치된 새 패키지가 없음 "
2970
3070
 
@@ -3100,6 +3200,9 @@ msgstr ""
3100
3200
  msgid "On-disk location for exported repositories"
3101
3201
  msgstr ""
3102
3202
 
3203
+ msgid "On-disk location for pulp 3 exported repositories"
3204
+ msgstr ""
3205
+
3103
3206
  msgid "One of parameters [ %s ] required but not specified."
3104
3207
  msgstr "매개 변수 [ %s ] 중 하나가 필요하지만 지정되어 있지 않습니다."
3105
3208
 
@@ -3131,6 +3234,9 @@ msgstr "운영자 "
3131
3234
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3132
3235
  msgstr ""
3133
3236
 
3237
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3238
+ msgstr ""
3239
+
3134
3240
  msgid "Organization"
3135
3241
  msgstr "조직 "
3136
3242
 
@@ -3368,6 +3474,18 @@ msgstr ""
3368
3474
  msgid "Perform an Incremental Update on one or more Content View Versions"
3369
3475
  msgstr "하나 이상의 컨텐츠 뷰 버전에서 증분 업데이트를 수행 "
3370
3476
 
3477
+ msgid "Performs a full-export of a content view version."
3478
+ msgstr ""
3479
+
3480
+ msgid "Performs a full-export of the repositories in library."
3481
+ msgstr ""
3482
+
3483
+ msgid "Performs an incremental-export of a content view version."
3484
+ msgstr ""
3485
+
3486
+ msgid "Performs an incremental-export of the repositories in library."
3487
+ msgstr ""
3488
+
3371
3489
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3372
3490
  msgstr "권한이 거부되었습니다. 사용자 '%{user}'은(는) 조직 '%{org}'에 액세스할 수 있는 권한이 없습니다. "
3373
3491
 
@@ -3378,6 +3496,9 @@ msgstr "물리 "
3378
3496
  msgid "Plan numeric identifier"
3379
3497
  msgstr "숫자로된 ID 계획 "
3380
3498
 
3499
+ msgid "Please add some repositories."
3500
+ msgstr ""
3501
+
3381
3502
  msgid "Please enter a positive number above zero"
3382
3503
  msgstr ""
3383
3504
 
@@ -3405,6 +3526,9 @@ msgstr ""
3405
3526
  msgid "Please select one from the list below and you will be redirected."
3406
3527
  msgstr ""
3407
3528
 
3529
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3530
+ msgstr ""
3531
+
3408
3532
  msgid "Processing metadata"
3409
3533
  msgstr "메타데이터 처리 중 "
3410
3534
 
@@ -3511,6 +3635,9 @@ msgstr ""
3511
3635
  msgid "Pulp"
3512
3636
  msgstr ""
3513
3637
 
3638
+ msgid "Pulp 3 export destination filepath"
3639
+ msgstr ""
3640
+
3514
3641
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3515
3642
  msgstr ""
3516
3643
 
@@ -3565,6 +3692,12 @@ msgstr ""
3565
3692
  msgid "Pulp task error"
3566
3693
  msgstr "Pulp 작업 오류 "
3567
3694
 
3695
+ msgid "Pulp user or group unable to read '%s'."
3696
+ msgstr ""
3697
+
3698
+ msgid "Pulp user or group unable to read content in '%s'."
3699
+ msgstr ""
3700
+
3568
3701
  msgid "Pulpcore"
3569
3702
  msgstr ""
3570
3703
 
@@ -3643,6 +3776,9 @@ msgstr ""
3643
3776
  msgid "Recommended Repositories"
3644
3777
  msgstr ""
3645
3778
 
3779
+ msgid "Red Hat"
3780
+ msgstr ""
3781
+
3646
3782
  msgid "Red Hat CDN URL"
3647
3783
  msgstr "Red Hat CDN URL"
3648
3784
 
@@ -3863,6 +3999,9 @@ msgstr ""
3863
3999
  msgid "Resolve Traces"
3864
4000
  msgstr ""
3865
4001
 
4002
+ msgid "Resolve traces for one or more hosts"
4003
+ msgstr ""
4004
+
3866
4005
  msgid "Resource"
3867
4006
  msgstr ""
3868
4007
 
@@ -3942,6 +4081,9 @@ msgstr "yum에 직접 사용되는 리포지터리 gpg 키의 컨텐츠를 반
3942
4081
  msgid "Role"
3943
4082
  msgstr ""
3944
4083
 
4084
+ msgid "Role of host"
4085
+ msgstr ""
4086
+
3945
4087
  msgid "Run Sync Plan:"
3946
4088
  msgstr ""
3947
4089
 
@@ -4044,6 +4186,9 @@ msgstr "서비스 레벨 %s"
4044
4186
  msgid "Service Level (SLA)"
4045
4187
  msgstr ""
4046
4188
 
4189
+ msgid "Service level of host"
4190
+ msgstr ""
4191
+
4047
4192
  msgid "Service level to be used for autoheal"
4048
4193
  msgstr ""
4049
4194
 
@@ -4147,6 +4292,15 @@ msgstr "버전 정보 표시"
4147
4292
  msgid "Simple Content Access"
4148
4293
  msgstr ""
4149
4294
 
4295
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4296
+ msgstr ""
4297
+
4298
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4299
+ msgstr ""
4300
+
4301
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4302
+ msgstr ""
4303
+
4150
4304
  msgid "Size of file to upload"
4151
4305
  msgstr ""
4152
4306
 
@@ -4181,6 +4335,9 @@ msgstr ""
4181
4335
  msgid "Specify the list of units in each repo"
4182
4336
  msgstr ""
4183
4337
 
4338
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4339
+ msgstr ""
4340
+
4184
4341
  msgid "Stacking ID"
4185
4342
  msgstr ""
4186
4343
 
@@ -4389,6 +4546,9 @@ msgstr "하나 이상의 제품 동기화 "
4389
4546
  msgid "Sync plan identifier to attach"
4390
4547
  msgstr "첨부할 동기화 계획 ID "
4391
4548
 
4549
+ msgid "Sync state"
4550
+ msgstr ""
4551
+
4392
4552
  msgid "Synced Content"
4393
4553
  msgstr ""
4394
4554
 
@@ -4451,6 +4611,9 @@ msgstr "'%s' 환경에 변경 집합을 포함할 수 없습니다! "
4451
4611
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4452
4612
  msgstr ""
4453
4613
 
4614
+ msgid "The TOC file specified in the metadata does not exist. %s "
4615
+ msgstr ""
4616
+
4454
4617
  msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
4455
4618
  msgstr ""
4456
4619
 
@@ -4490,15 +4653,26 @@ msgstr "에라타 필터 규칙 시작 날짜가 잘못된 형식 또는 유형
4490
4653
  msgid "The erratum type must be an array. Invalid value provided"
4491
4654
  msgstr "에라타 유형은 어레이여야 합니다. 잘못된 값이 지정되었습니다 "
4492
4655
 
4656
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4657
+ msgstr ""
4658
+
4493
4659
  msgid "The field to sort the data by. Defaults to the created date."
4494
4660
  msgstr ""
4495
4661
 
4496
4662
  msgid "The following hosts have errata that apply to them: "
4497
4663
  msgstr "다음 호스트에는 이에 적용되는 에라타가 있습니다: "
4498
4664
 
4665
+ msgid ""
4666
+ "The following repositories provided in the import metadata are either not available in the Library or are of incorrect Respository Type. Please add or enable the repositories before importing\n"
4667
+ " %{repos}"
4668
+ msgstr ""
4669
+
4499
4670
  msgid "The id of the host to alter"
4500
4671
  msgstr ""
4501
4672
 
4673
+ msgid "The import path must be in a subdirectory under '%s'."
4674
+ msgstr ""
4675
+
4502
4676
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4503
4677
  msgstr ""
4504
4678
 
@@ -4547,6 +4721,9 @@ msgstr ""
4547
4721
  msgid "The requested resource does not belong to the specified organization"
4548
4722
  msgstr ""
4549
4723
 
4724
+ msgid "The requested traces were not found for this host"
4725
+ msgstr ""
4726
+
4550
4727
  msgid "The selected content source and lifecycle environment do not match"
4551
4728
  msgstr ""
4552
4729
 
@@ -4610,6 +4787,9 @@ msgstr ""
4610
4787
  msgid "There's no running synchronization for this smart proxy."
4611
4788
  msgstr ""
4612
4789
 
4790
+ msgid "This Content View must be set to Import-only before performing an import"
4791
+ msgstr ""
4792
+
4613
4793
  msgid "This Host is not currently registered with subscription-manager."
4614
4794
  msgstr ""
4615
4795
 
@@ -4619,6 +4799,9 @@ msgstr ""
4619
4799
  msgid "This action doesn't support package groups"
4620
4800
  msgstr ""
4621
4801
 
4802
+ msgid "This action will become available after the Pulp 3 content migration"
4803
+ msgstr ""
4804
+
4622
4805
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4623
4806
  msgstr "이 인증서를 통해 사용자는 브라우저에서 모든 환경에 있는 리포지터리를 볼 수 있습니다."
4624
4807
 
@@ -4749,10 +4932,16 @@ msgstr ""
4749
4932
  msgid "Unable to detect puppet path"
4750
4933
  msgstr ""
4751
4934
 
4752
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4935
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4753
4936
  msgstr ""
4754
4937
 
4755
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4938
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4939
+ msgstr ""
4940
+
4941
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4942
+ msgstr ""
4943
+
4944
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4756
4945
  msgstr ""
4757
4946
 
4758
4947
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -4967,6 +5156,12 @@ msgstr ""
4967
5156
  msgid "Updating Package..."
4968
5157
  msgstr "패키지 업데이트 중..."
4969
5158
 
5159
+ msgid "Updating System Purpose for host"
5160
+ msgstr ""
5161
+
5162
+ msgid "Updating System Purpose for host %s"
5163
+ msgstr ""
5164
+
4970
5165
  msgid "Updating package group..."
4971
5166
  msgstr "패키지 그룹 업데이트 중..."
4972
5167
 
@@ -5021,9 +5216,15 @@ msgstr ""
5021
5216
  msgid "Usage Type"
5022
5217
  msgstr ""
5023
5218
 
5219
+ msgid "Usage of host"
5220
+ msgstr ""
5221
+
5024
5222
  msgid "Use remote execution by default"
5025
5223
  msgstr ""
5026
5224
 
5225
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5226
+ msgstr ""
5227
+
5027
5228
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5028
5229
  msgstr "사용자 '%s'는 조직 ID를 지정하지 않았기 때문에 기본 조직이 없습니다. "
5029
5230
 
@@ -5048,6 +5249,15 @@ msgstr ""
5048
5249
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5049
5250
  msgstr ""
5050
5251
 
5252
+ msgid "Verify checksum"
5253
+ msgstr ""
5254
+
5255
+ msgid "Verify checksum for one or more products"
5256
+ msgstr ""
5257
+
5258
+ msgid "Verify checksum of repository contents"
5259
+ msgstr ""
5260
+
5051
5261
  msgid "Version"
5052
5262
  msgstr ""
5053
5263
 
@@ -5065,7 +5275,7 @@ msgstr ""
5065
5275
  msgid "Virtual"
5066
5276
  msgstr "가상 "
5067
5277
 
5068
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5278
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5069
5279
  msgstr ""
5070
5280
 
5071
5281
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5134,6 +5344,9 @@ msgstr "조직의 parent_id를 설정할 수 없습니다. 이 기능은 비활
5134
5344
  msgid "You currently don't have any Content Views."
5135
5345
  msgstr ""
5136
5346
 
5347
+ msgid "You currently don't have any repositories to add to this content view."
5348
+ msgstr ""
5349
+
5137
5350
  msgid "You do not have permissions to delete %s"
5138
5351
  msgstr "%s을(를) 삭제할 권한이 없습니다 "
5139
5352
 
@@ -5239,6 +5452,9 @@ msgstr "조직 "
5239
5452
  msgid "an ostree branch"
5240
5453
  msgstr ""
5241
5454
 
5455
+ msgid "are only allowed for Yum repositories."
5456
+ msgstr ""
5457
+
5242
5458
  msgid "attempted to sync without a feed URL"
5243
5459
  msgstr ""
5244
5460
 
@@ -5257,6 +5473,9 @@ msgstr ""
5257
5473
  msgid "can't be blank"
5258
5474
  msgstr "빈 칸으로 두지 마십시오. "
5259
5475
 
5476
+ msgid "cannot add filter to import-only view"
5477
+ msgstr ""
5478
+
5260
5479
  msgid "cannot be a binary file."
5261
5480
  msgstr "바이너리 파일을 지정할 수 없습니다. "
5262
5481
 
@@ -5313,13 +5532,13 @@ msgstr ""
5313
5532
  msgid "checking Pulp task status"
5314
5533
  msgstr ""
5315
5534
 
5316
- msgid "comma separated list of architectures to be synched from deb-archive"
5535
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5317
5536
  msgstr ""
5318
5537
 
5319
- msgid "comma separated list of releases to be synched from deb-archive"
5538
+ msgid "comma-separated list of releases to be synced from deb-archive"
5320
5539
  msgstr ""
5321
5540
 
5322
- msgid "comma separated list of repo components to be synched from deb-archive"
5541
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5323
5542
  msgstr ""
5324
5543
 
5325
5544
  msgid "composite content view identifier"
@@ -5549,9 +5768,6 @@ msgstr ""
5549
5768
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5550
5769
  msgstr ""
5551
5770
 
5552
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5553
- msgstr ""
5554
-
5555
5771
  msgid "if true, will ignore the globally configured proxy when syncing"
5556
5772
  msgstr ""
5557
5773
 
@@ -5585,6 +5801,9 @@ msgstr ""
5585
5801
  msgid "invalid container image name"
5586
5802
  msgstr ""
5587
5803
 
5804
+ msgid "invalid: Repositories can only require one OS version."
5805
+ msgstr ""
5806
+
5588
5807
  msgid "is already attached to the capsule"
5589
5808
  msgstr "capsule에 이미 할당되어 있습니다 "
5590
5809
 
@@ -5624,6 +5843,9 @@ msgstr "등록된 최대 컨텐츠 호스트 수 "
5624
5843
  msgid "maximum size of each ISO in MB"
5625
5844
  msgstr ""
5626
5845
 
5846
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5847
+ msgstr ""
5848
+
5627
5849
  msgid "may not be less than the number of hosts associated with the host collection."
5628
5850
  msgstr ""
5629
5851
 
@@ -5645,6 +5867,9 @@ msgstr "양의 정수 값이어야 합니다."
5645
5867
  msgid "must be one of the following: %s"
5646
5868
  msgstr "다음 중 하나이어야 합니다: %s"
5647
5869
 
5870
+ msgid "must be one of: %s"
5871
+ msgstr ""
5872
+
5648
5873
  msgid "must be unique within one organization"
5649
5874
  msgstr "하나의 조직 내에서 고유한 것이어야 함 "
5650
5875
 
@@ -5899,6 +6124,9 @@ msgstr ""
5899
6124
  msgid "the uuid of the puppet module to associate"
5900
6125
  msgstr "연결할 puppet 모듈의 uuid "
5901
6126
 
6127
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6128
+ msgstr ""
6129
+
5902
6130
  msgid "true if the latest version of the component's content view is desired"
5903
6131
  msgstr ""
5904
6132