katello 4.6.2.1 → 4.7.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 (333) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/v2/activation_keys_controller.rb +1 -0
  4. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +4 -4
  5. data/app/controllers/katello/api/v2/capsule_content_controller.rb +5 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +1 -0
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +2 -1
  9. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/organizations_controller.rb +1 -0
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +78 -12
  12. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +1 -1
  13. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +7 -1
  14. data/app/controllers/katello/concerns/api/v2/smart_proxies_controller_extensions.rb +1 -0
  15. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +11 -9
  16. data/app/helpers/katello/content_source_helper.rb +9 -0
  17. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +31 -0
  18. data/app/lib/actions/katello/activation_key/destroy.rb +1 -0
  19. data/app/lib/actions/katello/agent_action.rb +1 -0
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +1 -1
  21. data/app/lib/actions/katello/alternate_content_source/update.rb +2 -2
  22. data/app/lib/actions/katello/capsule_content/sync.rb +10 -2
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +1 -1
  24. data/app/lib/actions/katello/content_view/promote.rb +1 -0
  25. data/app/lib/actions/katello/content_view/publish.rb +5 -2
  26. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +7 -3
  27. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +4 -2
  28. data/app/lib/actions/katello/content_view_version/import.rb +22 -10
  29. data/app/lib/actions/katello/product/destroy.rb +1 -1
  30. data/app/lib/actions/katello/repository/destroy.rb +3 -3
  31. data/app/lib/actions/katello/repository/errata_mail.rb +9 -6
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +1 -1
  33. data/app/lib/actions/katello/repository/sync.rb +13 -6
  34. data/app/lib/actions/katello/repository_set/enable_repository.rb +6 -2
  35. data/app/lib/actions/pulp3/alternate_content_source/refresh_remote.rb +16 -0
  36. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh.rb +1 -0
  37. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +1 -1
  38. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +10 -2
  39. data/app/lib/katello/concerns/renderer_extensions.rb +2 -1
  40. data/app/lib/katello/errors.rb +2 -2
  41. data/app/lib/katello/resources/candlepin.rb +7 -1
  42. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -13
  43. data/app/lib/katello/resources/cdn.rb +14 -9
  44. data/app/lib/katello/util/candlepin_repository_checker.rb +73 -0
  45. data/app/models/katello/activation_key.rb +12 -1
  46. data/app/models/katello/alternate_content_source.rb +15 -4
  47. data/app/models/katello/alternate_content_source_product.rb +1 -1
  48. data/app/models/katello/authorization/repository.rb +2 -2
  49. data/app/models/katello/cdn_configuration.rb +12 -3
  50. data/app/models/katello/concerns/host_managed_extensions.rb +15 -2
  51. data/app/models/katello/concerns/http_proxy_extensions.rb +5 -10
  52. data/app/models/katello/concerns/smart_proxy_extensions.rb +30 -15
  53. data/app/models/katello/content.rb +15 -0
  54. data/app/models/katello/content_credential.rb +8 -9
  55. data/app/models/katello/content_view.rb +7 -3
  56. data/app/models/katello/content_view_component.rb +4 -0
  57. data/app/models/katello/content_view_version.rb +1 -1
  58. data/app/models/katello/erratum.rb +6 -2
  59. data/app/models/katello/host/content_facet.rb +13 -3
  60. data/app/models/katello/repository.rb +15 -1
  61. data/app/models/katello/root_repository.rb +0 -2
  62. data/app/overrides/add_smart_proxy_form.rb +5 -0
  63. data/app/presenters/katello/content_view_version_compare_presenter.rb +5 -0
  64. data/app/presenters/katello/host_package_presenter.rb +4 -4
  65. data/app/services/katello/pulp3/alternate_content_source.rb +23 -15
  66. data/app/services/katello/pulp3/ansible_collection.rb +7 -10
  67. data/app/services/katello/pulp3/content_view_version/export.rb +19 -6
  68. data/app/services/katello/pulp3/content_view_version/import.rb +2 -0
  69. data/app/services/katello/pulp3/content_view_version/import_validator.rb +21 -5
  70. data/app/services/katello/pulp3/content_view_version/importable_products.rb +11 -1
  71. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +38 -9
  72. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +12 -5
  73. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +13 -2
  74. data/app/services/katello/pulp3/content_view_version/syncable_format_export.rb +5 -1
  75. data/app/services/katello/pulp3/pulp_content_unit.rb +3 -0
  76. data/app/services/katello/pulp3/repository.rb +18 -6
  77. data/app/services/katello/pulp3/repository_mirror.rb +0 -1
  78. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +2 -2
  79. data/app/services/katello/pulp3/task_group.rb +18 -1
  80. data/app/services/katello/repository_type.rb +5 -2
  81. data/app/services/katello/repository_type_manager.rb +4 -3
  82. data/app/views/dashboard/_content_views_widget.html.erb +1 -1
  83. data/app/views/foreman/job_templates/change_content_source.erb +6 -0
  84. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +7 -1
  85. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +4 -4
  86. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +1 -0
  87. data/app/views/katello/api/v2/alternate_content_sources/permissions.rabl +11 -0
  88. data/app/views/katello/api/v2/content_credentials/show.json.rabl +12 -0
  89. data/app/views/katello/api/v2/content_views/permissions.rabl +1 -0
  90. data/app/views/katello/api/v2/host_packages/base.json.rabl +1 -1
  91. data/app/views/katello/api/v2/module_streams/show.json.rabl +7 -0
  92. data/app/views/katello/api/v2/repositories/compare.json.rabl +10 -0
  93. data/app/views/katello/api/v2/smart_proxies/pulp_info.json.rabl +1 -0
  94. data/app/views/katello/hosts/_errata_counts.html.erb +46 -0
  95. data/app/views/overrides/activation_keys/_host_synced_content_select.html.erb +1 -0
  96. data/app/views/overrides/smart_proxies/_acs_http_proxy.html.erb +6 -0
  97. data/config/initializers/monkeys.rb +1 -0
  98. data/config/routes/api/v2.rb +2 -0
  99. data/config/routes.rb +3 -0
  100. data/db/migrate/20220730033504_update_custom_cdn.rb +13 -0
  101. data/db/migrate/20220920173656_add_http_proxy_to_smart_proxy.rb +7 -0
  102. data/db/migrate/20220920180858_remove_http_proxy_from_katello_alternate_content_sources.rb +6 -0
  103. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  104. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +5 -5
  105. data/engines/bastion/vendor/assets/javascripts/bastion/angular/angular.js +1 -1
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credential.factory.js +17 -0
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.routes.js +10 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-acs.controller.js +36 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details.controller.js +7 -1
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html +38 -0
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html +3 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html +7 -2
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +4 -2
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html +1 -1
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -3
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +14 -1392
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/katello-features.run.js +1 -0
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +7 -0
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  120. data/lib/katello/permission_creator.rb +1 -0
  121. data/lib/katello/plugin.rb +34 -11
  122. data/lib/katello/repository_types/deb.rb +1 -1
  123. data/lib/katello/repository_types/docker.rb +1 -1
  124. data/lib/katello/repository_types/python.rb +3 -3
  125. data/lib/katello/tasks/check_candlepin_content.rake +16 -0
  126. data/lib/katello/tasks/reset.rake +1 -1
  127. data/lib/katello/version.rb +1 -1
  128. data/lib/monkeys/try_pulp_container_path.rb +35 -0
  129. data/locale/action_names.rb +7 -7
  130. data/locale/bn/katello.po +395 -63
  131. data/locale/cs/katello.po +396 -64
  132. data/locale/de/katello.po +399 -67
  133. data/locale/en/katello.po +395 -63
  134. data/locale/es/katello.po +399 -67
  135. data/locale/fr/katello.po +400 -68
  136. data/locale/gu/katello.po +395 -63
  137. data/locale/hi/katello.po +395 -63
  138. data/locale/it/katello.po +396 -64
  139. data/locale/ja/katello.po +400 -68
  140. data/locale/katello.pot +1916 -1213
  141. data/locale/kn/katello.po +395 -63
  142. data/locale/ko/katello.po +396 -64
  143. data/locale/mr/katello.po +395 -63
  144. data/locale/or/katello.po +395 -63
  145. data/locale/pa/katello.po +395 -63
  146. data/locale/pt/katello.po +395 -63
  147. data/locale/pt_BR/katello.po +399 -67
  148. data/locale/ru/katello.po +396 -64
  149. data/locale/ta/katello.po +395 -63
  150. data/locale/te/katello.po +395 -63
  151. data/locale/zh_CN/katello.po +400 -68
  152. data/locale/zh_TW/katello.po +396 -64
  153. data/webpack/components/Bookmark/index.js +5 -1
  154. data/webpack/components/Content/Details/ContentDetails.js +1 -1
  155. data/webpack/components/Content/Details/__tests__/__snapshots__/ContentDetails.test.js.snap +6 -0
  156. data/webpack/components/EditableSwitch.js +1 -0
  157. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -3
  158. data/webpack/components/Errata/errataHelpers.js +33 -0
  159. data/webpack/components/Errata/index.js +45 -12
  160. data/webpack/components/Loading.js +18 -8
  161. data/webpack/components/Packages/index.js +8 -24
  162. data/webpack/components/RoutedTabs/index.js +1 -0
  163. data/webpack/components/Search/Search.js +20 -2
  164. data/webpack/components/Search/__tests__/search.test.js +3 -3
  165. data/webpack/components/Table/EmptyStateMessage.js +1 -1
  166. data/webpack/components/Table/PageControls.js +1 -0
  167. data/webpack/components/Table/TableHooks.js +4 -0
  168. data/webpack/components/Table/TableWrapper.js +7 -7
  169. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +1 -0
  170. data/webpack/components/TypeAhead/pf4Search/TypeAheadItems.js +2 -0
  171. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +1 -1
  172. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +3 -1
  173. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +2 -1
  174. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +124 -68
  175. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +5 -0
  176. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +30 -4
  177. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.scss +23 -0
  178. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +5 -4
  179. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +25 -10
  180. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeCard.js +3 -3
  181. data/webpack/components/extensions/HostDetails/Cards/SystemPurposeCard/SystemPurposeEditModal.js +6 -0
  182. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +145 -32
  183. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +3 -1
  184. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/constants.js +2 -1
  185. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/index.js +1 -0
  186. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +78 -26
  187. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +23 -10
  188. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesConstants.js +1 -0
  189. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +9 -4
  190. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +141 -23
  191. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.scss +6 -1
  192. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +9 -8
  193. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +24 -3
  194. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/EnableTracerModal.js +7 -2
  195. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesEnabler.js +2 -1
  196. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +20 -4
  197. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +56 -38
  198. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +3 -3
  199. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +5 -4
  200. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +3 -3
  201. data/webpack/containers/Application/config.js +2 -2
  202. data/webpack/containers/Application/overrides.scss +12 -0
  203. data/webpack/global_test_setup.js +19 -1
  204. data/webpack/ouia_id_check.js +0 -2
  205. data/webpack/redux/actions/RedHatRepositories/helpers.js +4 -8
  206. data/webpack/scenes/AlternateContentSources/ACSActions.js +37 -6
  207. data/webpack/scenes/AlternateContentSources/ACSConstants.js +2 -0
  208. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +1 -1
  209. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +6 -6
  210. data/webpack/scenes/AlternateContentSources/Acs.scss +3 -0
  211. data/webpack/scenes/AlternateContentSources/Create/ACSCreateWizard.js +24 -3
  212. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCreateFinish.js +10 -8
  213. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSCredentials.js +25 -4
  214. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSReview.js +22 -11
  215. data/webpack/scenes/AlternateContentSources/Create/Steps/ACSSmartProxies.js +27 -2
  216. data/webpack/scenes/AlternateContentSources/Create/Steps/AcsUrlPaths.js +49 -17
  217. data/webpack/scenes/AlternateContentSources/Create/Steps/SelectSource.js +76 -23
  218. data/webpack/scenes/AlternateContentSources/Create/__tests__/acsCreate.test.js +159 -11
  219. data/webpack/scenes/AlternateContentSources/Details/ACSExpandableDetails.js +83 -29
  220. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditCredentials.js +9 -8
  221. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditDetails.js +2 -2
  222. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditProducts.js +2 -2
  223. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditSmartProxies.js +39 -7
  224. data/webpack/scenes/AlternateContentSources/Details/EditModals/ACSEditURLPaths.js +27 -11
  225. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSEdits.test.js +58 -55
  226. data/webpack/scenes/AlternateContentSources/Details/__tests__/ACSExpandableDetails.test.js +35 -32
  227. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +323 -150
  228. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +5 -1
  229. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +10 -11
  230. data/webpack/scenes/AlternateContentSources/helpers.js +26 -0
  231. data/webpack/scenes/ContentViews/ContentViewsConstants.js +1 -0
  232. data/webpack/scenes/ContentViews/ContentViewsPage.js +1 -1
  233. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +1 -0
  234. data/webpack/scenes/ContentViews/Copy/CopyContentViewModal.js +1 -0
  235. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -5
  236. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +30 -7
  237. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +1 -0
  238. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +21 -6
  239. data/webpack/scenes/ContentViews/Delete/Steps/CVDeleteEnvironmentsSelection.js +3 -3
  240. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignActivationKeysForm.js +1 -0
  241. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionReassignHostsForm.js +1 -0
  242. data/webpack/scenes/ContentViews/Delete/__tests__/CvData.fixtures.json +2 -0
  243. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -0
  244. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -1
  245. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +1 -1
  246. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +2 -1
  247. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +14 -0
  248. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +11 -1
  249. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +1 -1
  250. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +2 -0
  251. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +5 -0
  252. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositorySelection.js +1 -0
  253. data/webpack/scenes/ContentViews/Details/Filters/ArtifactsWithNoErrata.js +1 -0
  254. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +8 -2
  255. data/webpack/scenes/ContentViews/Details/Filters/CVDebFilterContent.js +5 -1
  256. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +22 -6
  257. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +19 -9
  258. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +9 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +9 -2
  260. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +8 -2
  261. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +1 -1
  262. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  263. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +3 -2
  264. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +1 -1
  265. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +2 -2
  266. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +1 -1
  267. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +1 -1
  268. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +1 -1
  269. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +2 -2
  270. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +2 -0
  271. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +2 -1
  272. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +3 -3
  273. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompare.js +9 -1
  274. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareConfig.js +83 -0
  275. data/webpack/scenes/ContentViews/Details/Versions/Compare/CVVersionCompareTable.js +32 -8
  276. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/CVVersionCompare.test.js +56 -3
  277. data/webpack/scenes/ContentViews/Details/Versions/Compare/__tests__/cvCompareRepositories.fixtures.json +175 -0
  278. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +6 -2
  279. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVEnvironmentSelectionForm.js +3 -3
  280. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignActivationKeysForm.js +1 -0
  281. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVReassignHostsForm.js +1 -0
  282. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +2 -2
  283. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +2 -2
  284. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +2 -2
  285. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +1 -0
  286. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +4 -1
  287. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +5 -4
  288. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +5 -1
  289. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +3 -3
  290. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +10 -5
  291. data/webpack/scenes/ContentViews/__tests__/basicContentViews.fixtures.js +2 -0
  292. data/webpack/scenes/ContentViews/__tests__/contentViewList.fixtures.json +1 -0
  293. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +81 -19
  294. data/webpack/scenes/ContentViews/components/CVBreadCrumb.js +1 -1
  295. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +1 -0
  296. data/webpack/scenes/ContentViews/components/InactiveText.js +9 -1
  297. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +4 -2
  298. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +3 -2
  299. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +18 -11
  300. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +15 -8
  301. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +3 -4
  302. data/webpack/scenes/Hosts/ChangeContentSource/components/Hosts.js +55 -0
  303. data/webpack/scenes/Hosts/ChangeContentSource/components/HostsModal.js +59 -0
  304. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +1 -0
  305. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +2 -5
  306. data/webpack/scenes/Hosts/ChangeContentSource/index.js +46 -41
  307. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +5 -5
  308. data/webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js +10 -1
  309. data/webpack/scenes/ModuleStreams/Details/ModuleStreamDetails.js +1 -1
  310. data/webpack/scenes/ModuleStreams/Details/__tests__/__snapshots__/ModuleStreamDetails.test.js.snap +97 -2
  311. data/webpack/scenes/Organizations/OrganizationSelectors.js +1 -0
  312. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +2 -1
  313. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +10 -25
  314. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CustomCdnTypeForm.js +154 -0
  315. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/ExportSyncForm.js +4 -4
  316. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/NetworkSyncForm.js +59 -44
  317. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +3 -28
  318. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CustomCdnTypeForm.test.js +97 -0
  319. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/ExportSyncForm.test.js +1 -1
  320. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/NetworkSyncForm.test.js +4 -4
  321. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +23 -10
  322. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +1 -1
  323. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +2 -1
  324. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +5 -5
  325. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js +3 -3
  326. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/__snapshots__/UpstreamSubscriptionsPage.test.js.snap +2 -2
  327. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +3 -3
  328. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +3 -3
  329. data/webpack/scenes/Tasks/helpers.js +14 -7
  330. metadata +54 -35
  331. data/app/lib/actions/pulp3/orchestration/alternate_content_source/refresh_remote.rb +0 -18
  332. data/db/migrate/20221206170122_update_ignore_srpm_to_false_for_mirror_complete.rb +0 -5
  333. data/vendor/assets/javascripts/katello/jquery.trunk8.js +0 -203
data/locale/ko/katello.po CHANGED
@@ -46,6 +46,12 @@ msgstr ""
46
46
  msgid " RPMs"
47
47
  msgstr ""
48
48
 
49
+ msgid " The base path can be a web address or a filesystem location."
50
+ msgstr ""
51
+
52
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
53
+ msgstr ""
54
+
49
55
  msgid " View task details "
50
56
  msgstr ""
51
57
 
@@ -76,12 +82,18 @@ msgstr ""
76
82
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
77
83
  msgstr ""
78
84
 
85
+ msgid " or any step on the left."
86
+ msgstr ""
87
+
79
88
  msgid " to manage and promote content views, or select a different environment."
80
89
  msgstr ""
81
90
 
82
91
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
83
92
  msgstr ""
84
93
 
94
+ msgid "${option}"
95
+ msgstr ""
96
+
85
97
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
86
98
  msgstr ""
87
99
 
@@ -324,6 +336,24 @@ msgstr "%{used}(총: %{total})"
324
336
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
325
337
  msgstr ""
326
338
 
339
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
340
+ msgstr ""
341
+
342
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
343
+ msgstr ""
344
+
345
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
346
+ msgstr ""
347
+
348
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
349
+ msgstr ""
350
+
351
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before publishing again. "
352
+ msgstr ""
353
+
354
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
355
+ msgstr ""
356
+
327
357
  msgid "(Orphaned)"
328
358
  msgstr "(종속된 패키지가 없음)"
329
359
 
@@ -543,10 +573,10 @@ msgstr ""
543
573
  msgid "Add subscriptions to one or more hosts"
544
574
  msgstr ""
545
575
 
546
- msgid "Add to this filter using the 'Add Deb rule' button."
576
+ msgid "Add to a host collection"
547
577
  msgstr ""
548
578
 
549
- msgid "Add to this filter using the 'Add RPM rule' button."
579
+ msgid "Add to this filter using the 'Add Deb rule' button."
550
580
  msgstr ""
551
581
 
552
582
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -606,6 +636,9 @@ msgstr ""
606
636
  msgid "All subpaths must have a slash at the end and none at the front"
607
637
  msgstr ""
608
638
 
639
+ msgid "All up to date"
640
+ msgstr ""
641
+
609
642
  msgid "All versions"
610
643
  msgstr ""
611
644
 
@@ -633,6 +666,9 @@ msgstr ""
633
666
  msgid "Alter a host's host collections"
634
667
  msgstr ""
635
668
 
669
+ msgid "Alternate Content Source HTTP Proxy"
670
+ msgstr ""
671
+
636
672
  msgid "Alternate Content Sources"
637
673
  msgstr ""
638
674
 
@@ -645,7 +681,10 @@ msgstr ""
645
681
  msgid "Alternate content source deleted"
646
682
  msgstr ""
647
683
 
648
- msgid "Alternate content sources"
684
+ msgid "Alternate content source edited"
685
+ msgstr ""
686
+
687
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
649
688
  msgstr ""
650
689
 
651
690
  msgid "Always Use Latest (currently %{version})"
@@ -657,7 +696,7 @@ msgstr ""
657
696
  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."
658
697
  msgstr ""
659
698
 
660
- msgid "An alternate content source can be added by using the \"Add source\" button above."
699
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
661
700
  msgstr ""
662
701
 
663
702
  msgid "An environment is missing a prior"
@@ -696,9 +735,15 @@ msgstr ""
696
735
  msgid "Applicability Batch Size"
697
736
  msgstr ""
698
737
 
738
+ msgid "Applicable"
739
+ msgstr ""
740
+
699
741
  msgid "Applicable Content Hosts"
700
742
  msgstr ""
701
743
 
744
+ msgid "Applicable errata apply to at least one package installed on the host."
745
+ msgstr ""
746
+
702
747
  msgid "Application"
703
748
  msgstr "애플리케이션 "
704
749
 
@@ -874,6 +919,9 @@ msgstr ""
874
919
  msgid "Available Schema Versions"
875
920
  msgstr ""
876
921
 
922
+ msgid "Back"
923
+ msgstr ""
924
+
877
925
  msgid "Backend System Status"
878
926
  msgstr "백엔드 시스템 상태 "
879
927
 
@@ -940,6 +988,12 @@ msgstr "버그 수정 "
940
988
  msgid "Bugs"
941
989
  msgstr ""
942
990
 
991
+ msgid "Bulk alternate content source delete has started."
992
+ msgstr ""
993
+
994
+ msgid "Bulk alternate content source refresh has started."
995
+ msgstr ""
996
+
943
997
  msgid "Bulk generate applicability for host %s"
944
998
  msgstr ""
945
999
 
@@ -949,9 +1003,6 @@ msgstr ""
949
1003
  msgid "Bulk remove versions from a content view and reassign systems and keys"
950
1004
  msgstr ""
951
1005
 
952
- msgid "CA Cert"
953
- msgstr ""
954
-
955
1006
  msgid "CDN Configuration"
956
1007
  msgstr ""
957
1008
 
@@ -1057,6 +1108,9 @@ msgstr "다른 복합적인 컨텐츠 뷰에 복합 버전을 추가할 수 없
1057
1108
  msgid "Cannot add default content view to composite content view"
1058
1109
  msgstr "복합적인 컨텐츠 뷰에 기본 컨텐츠 뷰를 추가할 수 없습니다 "
1059
1110
 
1111
+ msgid "Cannot add generated content view versions to composite content view"
1112
+ msgstr ""
1113
+
1060
1114
  msgid "Cannot add repositories to a composite content view"
1061
1115
  msgstr "복합적인 컨텐츠 뷰에 리포지터리를 추가할 수 없습니다 "
1062
1116
 
@@ -1198,6 +1252,9 @@ msgstr ""
1198
1252
  msgid "Checksum"
1199
1253
  msgstr "체크섬 "
1200
1254
 
1255
+ msgid "Checksum is a required parameter."
1256
+ msgstr ""
1257
+
1201
1258
  msgid "Checksum of file to upload"
1202
1259
  msgstr ""
1203
1260
 
@@ -1207,6 +1264,9 @@ msgstr ""
1207
1264
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1208
1265
  msgstr ""
1209
1266
 
1267
+ msgid "Choose content credentials if required for this RHUI source."
1268
+ msgstr ""
1269
+
1210
1270
  msgid "Clear any previous registration and run subscription-manager with --force."
1211
1271
  msgstr ""
1212
1272
 
@@ -1222,9 +1282,6 @@ msgstr ""
1222
1282
  msgid "Click {update} below to save changes."
1223
1283
  msgstr ""
1224
1284
 
1225
- msgid "Client key"
1226
- msgstr ""
1227
-
1228
1285
  msgid "Clone"
1229
1286
  msgstr "복제(Clone)"
1230
1287
 
@@ -1240,6 +1297,9 @@ msgstr ""
1240
1297
  msgid "Combined Profile Update for %s"
1241
1298
  msgstr ""
1242
1299
 
1300
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1301
+ msgstr ""
1302
+
1243
1303
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1244
1304
  msgstr ""
1245
1305
 
@@ -1249,12 +1309,18 @@ msgstr ""
1249
1309
  msgid "Comma-separated list of tags to sync for a container image repository"
1250
1310
  msgstr ""
1251
1311
 
1312
+ msgid "Compare"
1313
+ msgstr ""
1314
+
1252
1315
  msgid "Component"
1253
1316
  msgstr "구성 요소 "
1254
1317
 
1255
1318
  msgid "Component Content View"
1256
1319
  msgstr ""
1257
1320
 
1321
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1322
+ msgstr ""
1323
+
1258
1324
  msgid "Components"
1259
1325
  msgstr "구성 요소"
1260
1326
 
@@ -1405,6 +1471,9 @@ msgstr ""
1405
1471
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1406
1472
  msgstr ""
1407
1473
 
1474
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1475
+ msgstr ""
1476
+
1408
1477
  msgid "Content View and Environment not set for registration."
1409
1478
  msgstr "등록할 컨텐츠 뷰 및 환경이 설정되지 않았습니다."
1410
1479
 
@@ -1417,6 +1486,9 @@ msgstr ""
1417
1486
  msgid "Content Views"
1418
1487
  msgstr "컨텐츠 보기 "
1419
1488
 
1489
+ msgid "Content cannot be imported into a Composite Content View. "
1490
+ msgstr ""
1491
+
1420
1492
  msgid "Content credential"
1421
1493
  msgstr ""
1422
1494
 
@@ -1441,6 +1513,9 @@ msgstr ""
1441
1513
  msgid "Content override search parameters"
1442
1514
  msgstr ""
1443
1515
 
1516
+ msgid "Content source"
1517
+ msgstr ""
1518
+
1444
1519
  msgid "Content source ID"
1445
1520
  msgstr ""
1446
1521
 
@@ -1507,6 +1582,9 @@ msgstr ""
1507
1582
  msgid "Content views"
1508
1583
  msgstr ""
1509
1584
 
1585
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1586
+ msgstr ""
1587
+
1510
1588
  msgid "Content_Host_Status"
1511
1589
  msgstr ""
1512
1590
 
@@ -1648,6 +1726,9 @@ msgstr "이전 환경 '%s'을 찾을 수 없습니다 "
1648
1726
  msgid "Couldn't find product with id '%s'"
1649
1727
  msgstr "ID '%s'인 제품을 찾을 수 없음 "
1650
1728
 
1729
+ msgid "Couldn't find products with id '%s'"
1730
+ msgstr ""
1731
+
1651
1732
  msgid "Couldn't find repository '%s'"
1652
1733
  msgstr "리포지터리 '%s'를 찾을 수 없음 "
1653
1734
 
@@ -1717,12 +1798,12 @@ msgstr "제품 생성 "
1717
1798
  msgid "Create a sync plan"
1718
1799
  msgstr "동기화 계획 생성 "
1719
1800
 
1720
- msgid "Create an ACS"
1721
- msgstr ""
1722
-
1723
1801
  msgid "Create an activation key"
1724
1802
  msgstr "활성키 생성 "
1725
1803
 
1804
+ msgid "Create an alternate content source to download content from during repository syncing. Note: alternate content sources are global and affect ALL sync actions on their smart proxies regardless of organization."
1805
+ msgstr ""
1806
+
1726
1807
  msgid "Create an environment"
1727
1808
  msgstr "환경 생성 "
1728
1809
 
@@ -1732,6 +1813,9 @@ msgstr "조직에 있는 환경 생성 "
1732
1813
  msgid "Create an upload request"
1733
1814
  msgstr "업로드 요청 생성 "
1734
1815
 
1816
+ msgid "Create content credentials with the generated SSL certificate and key."
1817
+ msgstr ""
1818
+
1735
1819
  msgid "Create content view"
1736
1820
  msgstr ""
1737
1821
 
@@ -1771,6 +1855,9 @@ msgstr ""
1771
1855
  msgid "Custom"
1772
1856
  msgstr ""
1773
1857
 
1858
+ msgid "Custom CDN"
1859
+ msgstr ""
1860
+
1774
1861
  msgid "Custom Content Repositories"
1775
1862
  msgstr "사용자 정의 컨텐츠 리포지터리 "
1776
1863
 
@@ -1786,6 +1873,9 @@ msgstr ""
1786
1873
  msgid "DEB name"
1787
1874
  msgstr ""
1788
1875
 
1876
+ msgid "DEB package updates"
1877
+ msgstr ""
1878
+
1789
1879
  msgid "Database connection"
1790
1880
  msgstr "데이터베이스 연결"
1791
1881
 
@@ -1921,6 +2011,12 @@ msgstr ""
1921
2011
  msgid "Default user data for new Operating Systems created from synced content"
1922
2012
  msgstr ""
1923
2013
 
2014
+ msgid "Define RHUI repository paths with guided steps."
2015
+ msgstr ""
2016
+
2017
+ msgid "Define repositories structured under a common web or filesystem path."
2018
+ msgstr ""
2019
+
1924
2020
  msgid "Delete"
1925
2021
  msgstr "삭제 "
1926
2022
 
@@ -2059,7 +2155,7 @@ msgstr "동기화 계획 삭제 "
2059
2155
  msgid "Destroy an activation key"
2060
2156
  msgstr "활성키 삭제 "
2061
2157
 
2062
- msgid "Destroy an alternate content source"
2158
+ msgid "Destroy an alternate content source."
2063
2159
  msgstr ""
2064
2160
 
2065
2161
  msgid "Destroy an environment"
@@ -2122,6 +2218,9 @@ msgstr "검색"
2122
2218
  msgid "Discover Repositories"
2123
2219
  msgstr "리포지터리 검색 "
2124
2220
 
2221
+ msgid "Distribute archived content view versions"
2222
+ msgstr ""
2223
+
2125
2224
  msgid "Do not include this array of content views"
2126
2225
  msgstr "컨텐츠 뷰의 어레이를 포함하지 않습니다 "
2127
2226
 
@@ -2155,21 +2254,51 @@ msgstr "에라타 권고"
2155
2254
  msgid "Edit"
2156
2255
  msgstr "편집 "
2157
2256
 
2257
+ msgid "Edit ACS"
2258
+ msgstr ""
2259
+
2260
+ msgid "Edit ACS credentials"
2261
+ msgstr ""
2262
+
2263
+ msgid "Edit ACS details"
2264
+ msgstr ""
2265
+
2266
+ msgid "Edit ACS products"
2267
+ msgstr ""
2268
+
2269
+ msgid "Edit ACS smart proxies"
2270
+ msgstr ""
2271
+
2158
2272
  msgid "Edit RPM rule"
2159
2273
  msgstr ""
2160
2274
 
2275
+ msgid "Edit URL and subpaths"
2276
+ msgstr ""
2277
+
2161
2278
  msgid "Edit content view assignment"
2162
2279
  msgstr ""
2163
2280
 
2281
+ msgid "Edit credentials"
2282
+ msgstr ""
2283
+
2284
+ msgid "Edit details"
2285
+ msgstr ""
2286
+
2164
2287
  msgid "Edit filter rule"
2165
2288
  msgstr ""
2166
2289
 
2167
2290
  msgid "Edit package filter rule"
2168
2291
  msgstr ""
2169
2292
 
2293
+ msgid "Edit products"
2294
+ msgstr ""
2295
+
2170
2296
  msgid "Edit rule"
2171
2297
  msgstr ""
2172
2298
 
2299
+ msgid "Edit smart proxies"
2300
+ msgstr ""
2301
+
2173
2302
  msgid "Edit system purpose attributes"
2174
2303
  msgstr ""
2175
2304
 
@@ -2194,6 +2323,9 @@ msgstr ""
2194
2323
  msgid "Either set the latest content view or the content view version. Cannot set both"
2195
2324
  msgstr ""
2196
2325
 
2326
+ msgid "Empty content view versions"
2327
+ msgstr ""
2328
+
2197
2329
  msgid "Enable"
2198
2330
  msgstr "활성화 "
2199
2331
 
@@ -2212,6 +2344,9 @@ msgstr ""
2212
2344
  msgid "Enable a repository from the set"
2213
2345
  msgstr "세트에서 리포지터리 활성화 "
2214
2346
 
2347
+ msgid "Enable repository sets"
2348
+ msgstr ""
2349
+
2215
2350
  msgid "Enable simple content access for a manifest"
2216
2351
  msgstr ""
2217
2352
 
@@ -2254,6 +2389,9 @@ msgstr ""
2254
2389
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2255
2390
  msgstr ""
2256
2391
 
2392
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2393
+ msgstr ""
2394
+
2257
2395
  msgid "Entitlements"
2258
2396
  msgstr ""
2259
2397
 
@@ -2509,6 +2647,9 @@ msgstr "서브스크립션에 따라 제품을 필터링 "
2509
2647
  msgid "Filter products by sync plan id"
2510
2648
  msgstr "동기화 계획 ID를 기준으로 제품 필터링"
2511
2649
 
2650
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2651
+ msgstr ""
2652
+
2512
2653
  msgid "Filter rule added"
2513
2654
  msgstr ""
2514
2655
 
@@ -2545,6 +2686,9 @@ msgstr ""
2545
2686
  msgid "Filters will appear here when the filter is created."
2546
2687
  msgstr ""
2547
2688
 
2689
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2690
+ msgstr ""
2691
+
2548
2692
  msgid "Finish"
2549
2693
  msgstr ""
2550
2694
 
@@ -2604,6 +2748,9 @@ msgstr "모든 권한이 부여됨"
2604
2748
  msgid "GPG Key URL"
2605
2749
  msgstr "GPG 키 URL"
2606
2750
 
2751
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2752
+ msgstr ""
2753
+
2607
2754
  msgid "Generate and Download"
2608
2755
  msgstr "생성 및 다운로드 "
2609
2756
 
@@ -2814,6 +2961,9 @@ msgstr ""
2814
2961
  msgid "Hosts"
2815
2962
  msgstr "호스트"
2816
2963
 
2964
+ msgid "Hosts to update"
2965
+ msgstr ""
2966
+
2817
2967
  msgid "Hosts with Installable Errata"
2818
2968
  msgstr "설치 가능한 에라타를 갖는 호스트 "
2819
2969
 
@@ -2892,6 +3042,9 @@ msgstr "동기화 계획 ID "
2892
3042
  msgid "ID: %s doesn't exist "
2893
3043
  msgstr "ID: %s이 존재하지 않습니다 "
2894
3044
 
3045
+ msgid "IDs of products to copy repository information from into a Simplified Alternate Content Source. Products must include at least one repository of the chosen content type."
3046
+ msgstr ""
3047
+
2895
3048
  msgid "Id of a deb package to find repositories that contain the deb"
2896
3049
  msgstr ""
2897
3050
 
@@ -2907,6 +3060,9 @@ msgstr ""
2907
3060
  msgid "Id of an erratum to find repositories that contain the erratum"
2908
3061
  msgstr "해당 에라타가 포함된 리포지터리를 검색할 에라타의 ID"
2909
3062
 
3063
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3064
+ msgstr ""
3065
+
2910
3066
  msgid "Id of the content host"
2911
3067
  msgstr "컨텐츠 호스트 ID"
2912
3068
 
@@ -2979,6 +3135,9 @@ msgstr ""
2979
3135
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2980
3136
  msgstr "지정할 경우 ID와 수량이 일치하는 서브스크립션의 첫 번째 인스턴스를 삭제합니다."
2981
3137
 
3138
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3139
+ msgstr ""
3140
+
2982
3141
  msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
2983
3142
  msgstr ""
2984
3143
 
@@ -2991,6 +3150,9 @@ msgstr ""
2991
3150
  msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
2992
3151
  msgstr ""
2993
3152
 
3153
+ 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/...'."
3154
+ msgstr ""
3155
+
2994
3156
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2995
3157
  msgstr ""
2996
3158
 
@@ -3024,6 +3186,9 @@ msgstr ""
3024
3186
  msgid "Ignore subscriptions that are unavailable to the specified host"
3025
3187
  msgstr "지정한 호스트에 사용할 수 없는 서브스크립션 무시"
3026
3188
 
3189
+ msgid "Ignored hosts"
3190
+ msgstr ""
3191
+
3027
3192
  msgid "Immediate"
3028
3193
  msgstr "즉시"
3029
3194
 
@@ -3168,9 +3333,6 @@ msgstr ""
3168
3333
  msgid "Index package groups"
3169
3334
  msgstr "패키지 그룹 인덱싱"
3170
3335
 
3171
- msgid "Indicate the source type."
3172
- msgstr ""
3173
-
3174
3336
  msgid "Informable Type must be one of the following [ %{list} ]"
3175
3337
  msgstr "정보 유형은 다음 중 하나이어야 합니다 [ %{list} ]"
3176
3338
 
@@ -3240,12 +3402,15 @@ msgstr ""
3240
3402
  msgid "Installable"
3241
3403
  msgstr "설치 가능 "
3242
3404
 
3243
- msgid "Installable errata"
3405
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3244
3406
  msgstr ""
3245
3407
 
3246
3408
  msgid "Installable errata from content view"
3247
3409
  msgstr ""
3248
3410
 
3411
+ msgid "Installable updates"
3412
+ msgstr ""
3413
+
3249
3414
  msgid "Installation of errata requested: %{errata}"
3250
3415
  msgstr ""
3251
3416
 
@@ -3306,9 +3471,6 @@ msgstr ""
3306
3471
  msgid "Invalid"
3307
3472
  msgstr "유효하지 않음 "
3308
3473
 
3309
- msgid "Invalid SSL CA certificate given for CDN"
3310
- msgstr ""
3311
-
3312
3474
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3313
3475
  msgstr ""
3314
3476
 
@@ -3357,6 +3519,12 @@ msgstr "잘못된 매개 변수를 입력했습니다. - content_type은 %s 중
3357
3519
  msgid "Invalid params provided - date_type must be one of %s"
3358
3520
  msgstr "잘못된 매개 변수를 입력했습니다. - date_type은 %s 중 하나여야 합니다."
3359
3521
 
3522
+ msgid "Invalid params provided - with_content must be one of %s"
3523
+ msgstr ""
3524
+
3525
+ msgid "Invalid path provided. Content can be only imported from file system. "
3526
+ msgstr ""
3527
+
3360
3528
  msgid "Invalid release version: [%s]"
3361
3529
  msgstr ""
3362
3530
 
@@ -3378,6 +3546,9 @@ msgstr "발행됨 "
3378
3546
  msgid "Issued from"
3379
3547
  msgstr ""
3380
3548
 
3549
+ msgid "Items will appear here when a filter rule is added."
3550
+ msgstr ""
3551
+
3381
3552
  msgid "Job '${description}' completed"
3382
3553
  msgstr ""
3383
3554
 
@@ -3453,15 +3624,18 @@ msgstr "컨텐츠 레이블 "
3453
3624
  msgid "Label of the content view"
3454
3625
  msgstr ""
3455
3626
 
3456
- msgid "Last Refresh"
3627
+ msgid "Last check-in:"
3457
3628
  msgstr ""
3458
3629
 
3459
- msgid "Last check-in:"
3630
+ msgid "Last checkin"
3460
3631
  msgstr ""
3461
3632
 
3462
3633
  msgid "Last published"
3463
3634
  msgstr ""
3464
3635
 
3636
+ msgid "Last refresh"
3637
+ msgstr ""
3638
+
3465
3639
  msgid "Last refresh :"
3466
3640
  msgstr ""
3467
3641
 
@@ -3480,6 +3654,9 @@ msgstr ""
3480
3654
  msgid "Learn more about adding Subscription Manifests"
3481
3655
  msgstr ""
3482
3656
 
3657
+ msgid "Legacy content host UI"
3658
+ msgstr ""
3659
+
3483
3660
  msgid "Less than"
3484
3661
  msgstr ""
3485
3662
 
@@ -3546,6 +3723,9 @@ msgstr ""
3546
3723
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3547
3724
  msgstr ""
3548
3725
 
3726
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3727
+ msgstr ""
3728
+
3549
3729
  msgid "Limit to environment"
3550
3730
  msgstr ""
3551
3731
 
@@ -3576,6 +3756,9 @@ msgstr "모두 나열 :resource_id "
3576
3756
  msgid "List all organizations"
3577
3757
  msgstr "전체 조직 나열"
3578
3758
 
3759
+ msgid "List alternate content sources."
3760
+ msgstr ""
3761
+
3579
3762
  msgid "List an activation key's subscriptions"
3580
3763
  msgstr "활성키의 서브스크립션 목록 나열"
3581
3764
 
@@ -3648,9 +3831,6 @@ msgstr "동기화 계획의 제품 나열"
3648
3831
  msgid "List of alternate content source IDs"
3649
3832
  msgstr ""
3650
3833
 
3651
- msgid "List of alternate_content_sources"
3652
- msgstr ""
3653
-
3654
3834
  msgid "List of component content view version ids for composite views"
3655
3835
  msgstr "복합 뷰의 구성 요소 컨텐츠 뷰 버전 ID 목록 "
3656
3836
 
@@ -3741,6 +3921,9 @@ msgstr ""
3741
3921
  msgid "List of repository ids"
3742
3922
  msgstr "리포지터리 ID 목록 "
3743
3923
 
3924
+ msgid "List of resources types that will be automatically associated"
3925
+ msgstr ""
3926
+
3744
3927
  msgid "List of subscription products in a subscription"
3745
3928
  msgstr "서브스크립션에 있는 서브스크립션 제품 목록 "
3746
3929
 
@@ -3945,6 +4128,9 @@ msgstr ""
3945
4128
  msgid "Multi-entitlement"
3946
4129
  msgstr "멀티 인타이틀먼트 "
3947
4130
 
4131
+ msgid "Multiple environments are not supported."
4132
+ msgstr ""
4133
+
3948
4134
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3949
4135
  msgstr ""
3950
4136
 
@@ -3957,11 +4143,19 @@ msgstr "해당 없음 "
3957
4143
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3958
4144
  msgstr ""
3959
4145
 
4146
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4147
+ msgstr ""
4148
+
3960
4149
  msgid ""
3961
4150
  "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"
3962
4151
  " %{repos}"
3963
4152
  msgstr ""
3964
4153
 
4154
+ msgid ""
4155
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4156
+ " %{repos}"
4157
+ msgstr ""
4158
+
3965
4159
  msgid ""
3966
4160
  "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories without the 'immediate' download policy. Update the download policy and sync affected repositories. Once synced republish the content view and export the generated version. \n"
3967
4161
  " %{repos}"
@@ -3973,6 +4167,12 @@ msgstr ""
3973
4167
  msgid "Name"
3974
4168
  msgstr "이름 "
3975
4169
 
4170
+ msgid "Name and label of default content view should not be changed"
4171
+ msgstr ""
4172
+
4173
+ msgid "Name is a required parameter."
4174
+ msgstr ""
4175
+
3976
4176
  msgid "Name of new activation key"
3977
4177
  msgstr "새 활성키 이름 "
3978
4178
 
@@ -4018,6 +4218,12 @@ msgstr ""
4018
4218
  msgid "Never Synced"
4019
4219
  msgstr "동기화하지 않음 "
4020
4220
 
4221
+ msgid "Never checked in"
4222
+ msgstr ""
4223
+
4224
+ msgid "Never registered"
4225
+ msgstr ""
4226
+
4021
4227
  msgid "New Errata"
4022
4228
  msgstr "새 에라타 "
4023
4229
 
@@ -4111,6 +4317,9 @@ msgstr "제공된 컨텐츠가 없습니다. "
4111
4317
  msgid "No content ids provided"
4112
4318
  msgstr "컨텐츠 ID를 지정하지 않았습니다."
4113
4319
 
4320
+ msgid "No content in selected versions."
4321
+ msgstr ""
4322
+
4114
4323
  msgid "No content view history events found."
4115
4324
  msgstr "컨텐츠 뷰 기록 이벤트를 찾을 수 없습니다. "
4116
4325
 
@@ -4162,6 +4371,9 @@ msgstr ""
4162
4371
  msgid "No host collections found."
4163
4372
  msgstr "호스트 컬렉션을 찾을 수 없습니다. "
4164
4373
 
4374
+ msgid "No host collections yet"
4375
+ msgstr ""
4376
+
4165
4377
  msgid "No hosts have been specified."
4166
4378
  msgstr "호스트를 지정하지 않았습니다."
4167
4379
 
@@ -4186,6 +4398,9 @@ msgstr ""
4186
4398
  msgid "No matching "
4187
4399
  msgstr ""
4188
4400
 
4401
+ msgid "No matching ${name} found."
4402
+ msgstr ""
4403
+
4189
4404
  msgid "No matching ${selectedContentType} found"
4190
4405
  msgstr ""
4191
4406
 
@@ -4276,6 +4491,9 @@ msgstr ""
4276
4491
  msgid "No products are enabled."
4277
4492
  msgstr ""
4278
4493
 
4494
+ msgid "No profiles to show"
4495
+ msgstr ""
4496
+
4279
4497
  msgid "No pulp workers running."
4280
4498
  msgstr "실행 중인 pulp worker가 없습니다."
4281
4499
 
@@ -4411,6 +4629,9 @@ msgstr "사용 가능한 서브스크립션을 표시할 객체입니다. 'host'
4411
4629
  msgid "On Demand"
4412
4630
  msgstr "주문형"
4413
4631
 
4632
+ msgid "On the RHUA Instance, check the available repositories."
4633
+ msgstr ""
4634
+
4414
4635
  msgid "On-disk location for exported repositories"
4415
4636
  msgstr "내보낸 리포지터리의 디스크상 위치"
4416
4637
 
@@ -4789,6 +5010,9 @@ msgstr "다음 목록 중 하나를 선택하면 선택한 곳으로 이동합
4789
5010
  msgid "Please wait while the task starts.."
4790
5011
  msgstr ""
4791
5012
 
5013
+ msgid "Please wait..."
5014
+ msgstr ""
5015
+
4792
5016
  msgid "Policy to set for mirroring content. Must be one of %s."
4793
5017
  msgstr ""
4794
5018
 
@@ -4878,9 +5102,18 @@ msgstr ""
4878
5102
  msgid "Product: '%{product}', Repository: '%{repository}'"
4879
5103
  msgstr ""
4880
5104
 
5105
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5106
+ msgstr ""
5107
+
4881
5108
  msgid "Products"
4882
5109
  msgstr "제품 "
4883
5110
 
5111
+ msgid "Products updated."
5112
+ msgstr ""
5113
+
5114
+ msgid "Profiles"
5115
+ msgstr ""
5116
+
4884
5117
  msgid "Promote"
4885
5118
  msgstr "승격 "
4886
5119
 
@@ -5058,6 +5291,9 @@ msgstr "RAM: %sGB"
5058
5291
  msgid "RH Repos"
5059
5292
  msgstr ""
5060
5293
 
5294
+ msgid "RHUI"
5295
+ msgstr ""
5296
+
5061
5297
  msgid "RPM"
5062
5298
  msgstr "RPM"
5063
5299
 
@@ -5070,6 +5306,12 @@ msgstr ""
5070
5306
  msgid "RPM name"
5071
5307
  msgstr ""
5072
5308
 
5309
+ msgid "RPM package groups"
5310
+ msgstr ""
5311
+
5312
+ msgid "RPM package updates"
5313
+ msgstr ""
5314
+
5073
5315
  msgid "RPM packages"
5074
5316
  msgstr ""
5075
5317
 
@@ -5136,6 +5378,9 @@ msgstr ""
5136
5378
  msgid "Red Hat content will be consumed from the {type}."
5137
5379
  msgstr ""
5138
5380
 
5381
+ msgid "Red Hat content will be consumed from {type}."
5382
+ msgstr ""
5383
+
5139
5384
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5140
5385
  msgstr ""
5141
5386
 
@@ -5163,7 +5408,7 @@ msgstr "매니페스트 새로 고침 "
5163
5408
  msgid "Refresh alternate content sources"
5164
5409
  msgstr ""
5165
5410
 
5166
- msgid "Refresh an alternate content source"
5411
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5167
5412
  msgstr ""
5168
5413
 
5169
5414
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5181,6 +5426,9 @@ msgstr ""
5181
5426
  msgid "Register host '%s' before attaching subscriptions"
5182
5427
  msgstr ""
5183
5428
 
5429
+ msgid "Registered"
5430
+ msgstr ""
5431
+
5184
5432
  msgid "Registered by"
5185
5433
  msgstr ""
5186
5434
 
@@ -5307,7 +5555,7 @@ msgstr ""
5307
5555
  msgid "Remove one or more host collections from one or more hosts"
5308
5556
  msgstr "하나 이상의 호스트에서 하나 이상의 호스트 컬렉션 삭제"
5309
5557
 
5310
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5558
+ msgid "Remove one or more subscriptions from an upstream manifest"
5311
5559
  msgstr ""
5312
5560
 
5313
5561
  msgid "Remove package"
@@ -5358,6 +5606,9 @@ msgstr "패키지 그룹 삭제 중..."
5358
5606
  msgid "Removing Package..."
5359
5607
  msgstr "패키지 삭제 중..."
5360
5608
 
5609
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5610
+ msgstr ""
5611
+
5361
5612
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5362
5613
  msgstr ""
5363
5614
 
@@ -5598,9 +5849,6 @@ msgstr ""
5598
5849
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5599
5850
  msgstr ""
5600
5851
 
5601
- msgid "Review Details"
5602
- msgstr ""
5603
-
5604
5852
  msgid "Review affected environment"
5605
5853
  msgstr ""
5606
5854
 
@@ -5610,6 +5858,9 @@ msgstr ""
5610
5858
  msgid "Review details"
5611
5859
  msgstr ""
5612
5860
 
5861
+ msgid "Review the information below and click "
5862
+ msgstr ""
5863
+
5613
5864
  msgid "Review your currently selected changes for "
5614
5865
  msgstr ""
5615
5866
 
@@ -5649,9 +5900,6 @@ msgstr ""
5649
5900
  msgid "SSL CA certificate"
5650
5901
  msgstr ""
5651
5902
 
5652
- msgid "SSL Cert"
5653
- msgstr ""
5654
-
5655
5903
  msgid "SSL client certificate"
5656
5904
  msgstr ""
5657
5905
 
@@ -5781,6 +6029,9 @@ msgstr ""
5781
6029
  msgid "Select an environment above"
5782
6030
  msgstr ""
5783
6031
 
6032
+ msgid "Select an option"
6033
+ msgstr ""
6034
+
5784
6035
  msgid "Select an organization"
5785
6036
  msgstr ""
5786
6037
 
@@ -5820,6 +6071,12 @@ msgstr ""
5820
6071
  msgid "Select page"
5821
6072
  msgstr ""
5822
6073
 
6074
+ msgid "Select products"
6075
+ msgstr ""
6076
+
6077
+ msgid "Select products to associate to this source."
6078
+ msgstr ""
6079
+
5823
6080
  msgid "Select row"
5824
6081
  msgstr ""
5825
6082
 
@@ -5937,7 +6194,7 @@ msgstr ""
5937
6194
  msgid "Show an activation key"
5938
6195
  msgstr "활성 키 표시 "
5939
6196
 
5940
- msgid "Show an alternate content source"
6197
+ msgid "Show an alternate content source."
5941
6198
  msgstr ""
5942
6199
 
5943
6200
  msgid "Show an environment"
@@ -5988,6 +6245,9 @@ msgstr ""
5988
6245
  msgid "Simple Content Access has been enabled for '%{subject}'."
5989
6246
  msgstr ""
5990
6247
 
6248
+ msgid "Simplified"
6249
+ msgstr ""
6250
+
5991
6251
  msgid "Single content view consisting of e.g. repositories"
5992
6252
  msgstr ""
5993
6253
 
@@ -6024,7 +6284,7 @@ msgstr ""
6024
6284
  msgid "Solve dependencies"
6025
6285
  msgstr ""
6026
6286
 
6027
- msgid "Some hosts are ignored!"
6287
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6028
6288
  msgstr ""
6029
6289
 
6030
6290
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6048,13 +6308,13 @@ msgstr ""
6048
6308
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6049
6309
  msgstr ""
6050
6310
 
6051
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6311
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6052
6312
  msgstr ""
6053
6313
 
6054
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6314
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6055
6315
  msgstr ""
6056
6316
 
6057
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6317
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6058
6318
  msgstr ""
6059
6319
 
6060
6320
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6102,10 +6362,13 @@ msgstr ""
6102
6362
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6103
6363
  msgstr ""
6104
6364
 
6365
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6366
+ msgstr ""
6367
+
6105
6368
  msgid "Something went wrong while loading the content views. See the logs for more information"
6106
6369
  msgstr ""
6107
6370
 
6108
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6371
+ msgid "Something went wrong while refreshing alternate content sources: "
6109
6372
  msgstr ""
6110
6373
 
6111
6374
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6120,6 +6383,9 @@ msgstr ""
6120
6383
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6121
6384
  msgstr ""
6122
6385
 
6386
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6387
+ msgstr ""
6388
+
6123
6389
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6124
6390
  msgstr ""
6125
6391
 
@@ -6138,9 +6404,33 @@ msgstr ""
6138
6404
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6139
6405
  msgstr ""
6140
6406
 
6407
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6408
+ msgstr ""
6409
+
6410
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6411
+ msgstr ""
6412
+
6413
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6414
+ msgstr ""
6415
+
6416
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6417
+ msgstr ""
6418
+
6141
6419
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6142
6420
  msgstr ""
6143
6421
 
6422
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6423
+ msgstr ""
6424
+
6425
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6426
+ msgstr ""
6427
+
6428
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6429
+ msgstr ""
6430
+
6431
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6432
+ msgstr ""
6433
+
6144
6434
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6145
6435
  msgstr ""
6146
6436
 
@@ -6225,9 +6515,6 @@ msgstr ""
6225
6515
  msgid "Subscription"
6226
6516
  msgstr "서브스크립션 "
6227
6517
 
6228
- msgid "Subscription Allocation"
6229
- msgstr ""
6230
-
6231
6518
  msgid "Subscription Details"
6232
6519
  msgstr "서브스크립션 정보 "
6233
6520
 
@@ -6285,6 +6572,9 @@ msgstr "서브스크립션 매니페스트 파일 "
6285
6572
  msgid "Subscription not found"
6286
6573
  msgstr ""
6287
6574
 
6575
+ msgid "Subscription status"
6576
+ msgstr ""
6577
+
6288
6578
  msgid "Subscription was not persisted - %{error_message}"
6289
6579
  msgstr ""
6290
6580
 
@@ -6330,6 +6620,9 @@ msgstr "%s개의 호스트를 삭제했습니다."
6330
6620
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6331
6621
  msgstr "호스트 컬렉션 %{host_collection}에서 %{count} 컨텐츠 호스트를 성공적으로 삭제했습니다. "
6332
6622
 
6623
+ msgid "Successfully synced capsule."
6624
+ msgstr ""
6625
+
6333
6626
  msgid "Successfully synchronized."
6334
6627
  msgstr ""
6335
6628
 
@@ -6411,6 +6704,9 @@ msgstr "하나 이상의 제품 동기화 "
6411
6704
  msgid "Sync plan identifier to attach"
6412
6705
  msgstr "첨부할 동기화 계획 ID "
6413
6706
 
6707
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6708
+ msgstr ""
6709
+
6414
6710
  msgid "Sync state"
6415
6711
  msgstr ""
6416
6712
 
@@ -6501,9 +6797,6 @@ msgstr "'%s' 환경에 변경 집합을 포함할 수 없습니다! "
6501
6797
  msgid "The Alternate Content Source type"
6502
6798
  msgstr ""
6503
6799
 
6504
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6505
- msgstr ""
6506
-
6507
6800
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6508
6801
  msgstr ""
6509
6802
 
@@ -6555,9 +6848,6 @@ msgstr ""
6555
6848
  msgid "The field to sort the data by. Defaults to the created date."
6556
6849
  msgstr ""
6557
6850
 
6558
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6559
- msgstr ""
6560
-
6561
6851
  msgid "The following hosts have errata that apply to them: "
6562
6852
  msgstr "다음 호스트에는 이에 적용되는 에라타가 있습니다: "
6563
6853
 
@@ -6584,6 +6874,9 @@ msgstr ""
6584
6874
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6585
6875
  msgstr ""
6586
6876
 
6877
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6878
+ msgstr ""
6879
+
6587
6880
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6588
6881
  msgstr ""
6589
6882
 
@@ -6628,6 +6921,9 @@ msgstr ""
6628
6921
  msgid "The port used by Pulp Crane to provide Docker Registries"
6629
6922
  msgstr ""
6630
6923
 
6924
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6925
+ msgstr ""
6926
+
6631
6927
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6632
6928
  msgstr "%{content_view}의 %{environment}으로의 승격이 완료되었습니다. %{count}개의 에라타를 호스트에서 사용할 수 있습니다. "
6633
6929
 
@@ -6673,13 +6969,19 @@ msgstr "\"%s\"의 동기화가 완료되었습니다. 다음은 새 에라타
6673
6969
  msgid "The token key to use for authentication."
6674
6970
  msgstr ""
6675
6971
 
6972
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6973
+ msgstr ""
6974
+
6975
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6976
+ msgstr ""
6977
+
6676
6978
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6677
6979
  msgstr "컨텐츠 유형입니다. 다음 유형이 지원됩니다: 'package' 및 'package_group."
6678
6980
 
6679
6981
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6680
6982
  msgstr "컨텐츠 유형입니다. 다음 유형이 지원됩니다: 'package', 'package_group', 'errata'."
6681
6983
 
6682
- msgid "There are no Subscription Allocations to display"
6984
+ msgid "There are no Manifests to display"
6683
6985
  msgstr ""
6684
6986
 
6685
6987
  msgid "There are no Subscriptions to display"
@@ -6751,6 +7053,9 @@ msgstr ""
6751
7053
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6752
7054
  msgstr ""
6753
7055
 
7056
+ msgid "This activation key is associated to one or more Hosts/Hostgroups. Search and unassociate Hosts/Hostgroups using params.kt_activation_keys ~ \"%{name}\" before deleting."
7057
+ msgstr ""
7058
+
6754
7059
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6755
7060
  msgstr "이 인증서를 통해 사용자는 브라우저에서 모든 환경에 있는 리포지터리를 볼 수 있습니다."
6756
7061
 
@@ -6790,7 +7095,7 @@ msgstr ""
6790
7095
  msgid "This is disabled because a manifest task is in progress"
6791
7096
  msgstr ""
6792
7097
 
6793
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7098
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6794
7099
  msgstr ""
6795
7100
 
6796
7101
  msgid "This is disabled because no manifest exists"
@@ -6859,6 +7164,9 @@ msgstr ""
6859
7164
  msgid "Title"
6860
7165
  msgstr "제목"
6861
7166
 
7167
+ msgid "To get started, add this host to a host collection."
7168
+ msgstr ""
7169
+
6862
7170
  msgid "Toggling Simple Content Access will refresh your manifest."
6863
7171
  msgstr ""
6864
7172
 
@@ -6901,6 +7209,9 @@ msgstr ""
6901
7209
  msgid "Traces will be shown here to a user with the appropriate permissions."
6902
7210
  msgstr ""
6903
7211
 
7212
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7213
+ msgstr ""
7214
+
6904
7215
  msgid "Trigger an auto-attach of subscriptions"
6905
7216
  msgstr "서브스크립션 자동 첨부 트리거"
6906
7217
 
@@ -6931,12 +7242,18 @@ msgstr ""
6931
7242
  msgid "Type of content: \"cert\", \"gpg_key\""
6932
7243
  msgstr ""
6933
7244
 
7245
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7246
+ msgstr ""
7247
+
6934
7248
  msgid "URL"
6935
7249
  msgstr "URL"
6936
7250
 
6937
7251
  msgid "URL and paths"
6938
7252
  msgstr ""
6939
7253
 
7254
+ msgid "URL and subpaths"
7255
+ msgstr ""
7256
+
6940
7257
  msgid "URL needs to have a trailing /"
6941
7258
  msgstr ""
6942
7259
 
@@ -7138,7 +7455,7 @@ msgstr "동기화 계획 업데이트 "
7138
7455
  msgid "Update an activation key"
7139
7456
  msgstr "활성키 업데이트 "
7140
7457
 
7141
- msgid "Update an alternate content source"
7458
+ msgid "Update an alternate content source."
7142
7459
  msgstr ""
7143
7460
 
7144
7461
  msgid "Update an environment"
@@ -7345,6 +7662,12 @@ msgstr ""
7345
7662
  msgid "Usage type"
7346
7663
  msgstr ""
7347
7664
 
7665
+ msgid "Use HTTP Proxies"
7666
+ msgstr ""
7667
+
7668
+ msgid "Use HTTP proxies"
7669
+ msgstr ""
7670
+
7348
7671
  msgid "Use remote execution by default"
7349
7672
  msgstr ""
7350
7673
 
@@ -7420,6 +7743,12 @@ msgstr ""
7420
7743
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7421
7744
  msgstr ""
7422
7745
 
7746
+ msgid "Version ${versionOne}"
7747
+ msgstr ""
7748
+
7749
+ msgid "Version ${versionTwo}"
7750
+ msgstr ""
7751
+
7423
7752
  msgid "Version details updated."
7424
7753
  msgstr ""
7425
7754
 
@@ -7432,6 +7761,9 @@ msgstr "버전 "
7432
7761
  msgid "Versions "
7433
7762
  msgstr ""
7434
7763
 
7764
+ msgid "Versions to compare"
7765
+ msgstr ""
7766
+
7435
7767
  msgid "Versions to exclusively include in the action"
7436
7768
  msgstr ""
7437
7769
 
@@ -7447,6 +7779,9 @@ msgstr "보기 %{view}가 %{env}에 승격되었습니다"
7447
7779
  msgid "View a report of the affected hosts"
7448
7780
  msgstr ""
7449
7781
 
7782
+ msgid "View by"
7783
+ msgstr ""
7784
+
7450
7785
  msgid "View matching content"
7451
7786
  msgstr ""
7452
7787
 
@@ -7510,6 +7845,9 @@ msgstr ""
7510
7845
  msgid "Whether to include available content attribute in results"
7511
7846
  msgstr "사용 가능한 컨텐츠 속성을 결과에 포함할지 여부"
7512
7847
 
7848
+ msgid "Whether to turn on Simple Content Access for the organization."
7849
+ msgstr ""
7850
+
7513
7851
  msgid "Workers"
7514
7852
  msgstr "Worker"
7515
7853
 
@@ -7606,6 +7944,9 @@ msgstr ""
7606
7944
  msgid "Your search returned no matching "
7607
7945
  msgstr ""
7608
7946
 
7947
+ msgid "Your search returned no matching ${name}."
7948
+ msgstr ""
7949
+
7609
7950
  msgid "Your search returned no matching DEBs."
7610
7951
  msgstr ""
7611
7952
 
@@ -7630,6 +7971,9 @@ msgstr "Yum 메타데이터: %s"
7630
7971
  msgid "a content unit"
7631
7972
  msgstr ""
7632
7973
 
7974
+ msgid "a custom CDN URL"
7975
+ msgstr ""
7976
+
7633
7977
  msgid "a deb package"
7634
7978
  msgstr ""
7635
7979
 
@@ -7801,9 +8145,6 @@ msgstr ""
7801
8145
  msgid "content release version"
7802
8146
  msgstr "컨텐츠 릴리즈 버전 "
7803
8147
 
7804
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7805
- msgstr ""
7806
-
7807
8148
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7808
8149
  msgstr ""
7809
8150
 
@@ -8077,9 +8418,6 @@ msgstr "환경 레이블 "
8077
8418
  msgid "label of the repository"
8078
8419
  msgstr ""
8079
8420
 
8080
- msgid "limit to only repositories of this type"
8081
- msgstr ""
8082
-
8083
8421
  msgid "limit to only repositories with this download policy"
8084
8422
  msgstr ""
8085
8423
 
@@ -8197,9 +8535,6 @@ msgstr "서브스크립션의 매니페스트 기록 취득 "
8197
8535
  msgid "of environment must be unique within one organization"
8198
8536
  msgstr "환경 이름은 하나의 조직 내에서 고유한 것이어야 합니다 "
8199
8537
 
8200
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8201
- msgstr ""
8202
-
8203
8538
  msgid "only show the repositories readable by this user with this username"
8204
8539
  msgstr ""
8205
8540
 
@@ -8383,9 +8718,6 @@ msgstr ""
8383
8718
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8384
8719
  msgstr ""
8385
8720
 
8386
- msgid "type of repo"
8387
- msgstr ""
8388
-
8389
8721
  msgid "types of filters"
8390
8722
  msgstr ""
8391
8723