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/ru/katello.po CHANGED
@@ -54,6 +54,12 @@ msgstr ""
54
54
  msgid " RPMs"
55
55
  msgstr ""
56
56
 
57
+ msgid " The base path can be a web address or a filesystem location."
58
+ msgstr ""
59
+
60
+ msgid " The base path must be a web address pointing to the root RHUI content directory."
61
+ msgstr ""
62
+
57
63
  msgid " View task details "
58
64
  msgstr ""
59
65
 
@@ -84,12 +90,18 @@ msgstr ""
84
90
  msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
85
91
  msgstr ""
86
92
 
93
+ msgid " or any step on the left."
94
+ msgstr ""
95
+
87
96
  msgid " to manage and promote content views, or select a different environment."
88
97
  msgstr ""
89
98
 
90
99
  msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
91
100
  msgstr ""
92
101
 
102
+ msgid "${option}"
103
+ msgstr ""
104
+
93
105
  msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
94
106
  msgstr ""
95
107
 
@@ -332,6 +344,24 @@ msgstr "%{used} из %{total}"
332
344
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
333
345
  msgstr ""
334
346
 
347
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove and re-enable the repository or try refreshing the manifest before synchronizing. "
348
+ msgstr ""
349
+
350
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Either remove the invalid repository or try refreshing the manifest before promoting. "
351
+ msgstr ""
352
+
353
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove and recreate the repository before synchronizing. "
354
+ msgstr ""
355
+
356
+ msgid "'%{item}' does not exist in the backend system [ Candlepin ]. Remove the invalid repository before promoting. "
357
+ msgstr ""
358
+
359
+ 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. "
360
+ msgstr ""
361
+
362
+ msgid "'%{item}' in this content view does not exist in the backend system [ Candlepin ]. Remove the invalid repository before publishing again. "
363
+ msgstr ""
364
+
335
365
  msgid "(Orphaned)"
336
366
  msgstr "(потерян)"
337
367
 
@@ -551,10 +581,10 @@ msgstr ""
551
581
  msgid "Add subscriptions to one or more hosts"
552
582
  msgstr ""
553
583
 
554
- msgid "Add to this filter using the 'Add Deb rule' button."
584
+ msgid "Add to a host collection"
555
585
  msgstr ""
556
586
 
557
- msgid "Add to this filter using the 'Add RPM rule' button."
587
+ msgid "Add to this filter using the 'Add Deb rule' button."
558
588
  msgstr ""
559
589
 
560
590
  msgid "Add to this filter using the 'Add filter rule' button."
@@ -614,6 +644,9 @@ msgstr ""
614
644
  msgid "All subpaths must have a slash at the end and none at the front"
615
645
  msgstr ""
616
646
 
647
+ msgid "All up to date"
648
+ msgstr ""
649
+
617
650
  msgid "All versions"
618
651
  msgstr ""
619
652
 
@@ -641,6 +674,9 @@ msgstr ""
641
674
  msgid "Alter a host's host collections"
642
675
  msgstr ""
643
676
 
677
+ msgid "Alternate Content Source HTTP Proxy"
678
+ msgstr ""
679
+
644
680
  msgid "Alternate Content Sources"
645
681
  msgstr ""
646
682
 
@@ -653,7 +689,10 @@ msgstr ""
653
689
  msgid "Alternate content source deleted"
654
690
  msgstr ""
655
691
 
656
- msgid "Alternate content sources"
692
+ msgid "Alternate content source edited"
693
+ msgstr ""
694
+
695
+ msgid "Alternate content sources define new locations to download content from at repository or smart proxy sync time."
657
696
  msgstr ""
658
697
 
659
698
  msgid "Always Use Latest (currently %{version})"
@@ -665,7 +704,7 @@ msgstr ""
665
704
  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."
666
705
  msgstr ""
667
706
 
668
- msgid "An alternate content source can be added by using the \"Add source\" button above."
707
+ msgid "An alternate content source can be added by using the \"Add source\" button below."
669
708
  msgstr ""
670
709
 
671
710
  msgid "An environment is missing a prior"
@@ -704,9 +743,15 @@ msgstr ""
704
743
  msgid "Applicability Batch Size"
705
744
  msgstr ""
706
745
 
746
+ msgid "Applicable"
747
+ msgstr ""
748
+
707
749
  msgid "Applicable Content Hosts"
708
750
  msgstr ""
709
751
 
752
+ msgid "Applicable errata apply to at least one package installed on the host."
753
+ msgstr ""
754
+
710
755
  msgid "Application"
711
756
  msgstr "Программа"
712
757
 
@@ -883,6 +928,9 @@ msgstr ""
883
928
  msgid "Available Schema Versions"
884
929
  msgstr ""
885
930
 
931
+ msgid "Back"
932
+ msgstr ""
933
+
886
934
  msgid "Backend System Status"
887
935
  msgstr "Состояние базовой системы"
888
936
 
@@ -949,6 +997,12 @@ msgstr "Исправление ошибок"
949
997
  msgid "Bugs"
950
998
  msgstr ""
951
999
 
1000
+ msgid "Bulk alternate content source delete has started."
1001
+ msgstr ""
1002
+
1003
+ msgid "Bulk alternate content source refresh has started."
1004
+ msgstr ""
1005
+
952
1006
  msgid "Bulk generate applicability for host %s"
953
1007
  msgstr ""
954
1008
 
@@ -958,9 +1012,6 @@ msgstr ""
958
1012
  msgid "Bulk remove versions from a content view and reassign systems and keys"
959
1013
  msgstr ""
960
1014
 
961
- msgid "CA Cert"
962
- msgstr ""
963
-
964
1015
  msgid "CDN Configuration"
965
1016
  msgstr ""
966
1017
 
@@ -1066,6 +1117,9 @@ msgstr "Сложные версии не могут добавляться в д
1066
1117
  msgid "Cannot add default content view to composite content view"
1067
1118
  msgstr "Исходное представление не может входить в составное представление"
1068
1119
 
1120
+ msgid "Cannot add generated content view versions to composite content view"
1121
+ msgstr ""
1122
+
1069
1123
  msgid "Cannot add repositories to a composite content view"
1070
1124
  msgstr "Нельзя добавлять репозитории в сложное представление"
1071
1125
 
@@ -1207,6 +1261,9 @@ msgstr ""
1207
1261
  msgid "Checksum"
1208
1262
  msgstr "Контрольная сумма"
1209
1263
 
1264
+ msgid "Checksum is a required parameter."
1265
+ msgstr ""
1266
+
1210
1267
  msgid "Checksum of file to upload"
1211
1268
  msgstr ""
1212
1269
 
@@ -1216,6 +1273,9 @@ msgstr ""
1216
1273
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
1217
1274
  msgstr ""
1218
1275
 
1276
+ msgid "Choose content credentials if required for this RHUI source."
1277
+ msgstr ""
1278
+
1219
1279
  msgid "Clear any previous registration and run subscription-manager with --force."
1220
1280
  msgstr ""
1221
1281
 
@@ -1231,9 +1291,6 @@ msgstr ""
1231
1291
  msgid "Click {update} below to save changes."
1232
1292
  msgstr ""
1233
1293
 
1234
- msgid "Client key"
1235
- msgstr ""
1236
-
1237
1294
  msgid "Clone"
1238
1295
  msgstr "Клонировать"
1239
1296
 
@@ -1249,6 +1306,9 @@ msgstr ""
1249
1306
  msgid "Combined Profile Update for %s"
1250
1307
  msgstr ""
1251
1308
 
1309
+ msgid "Comma-separated list of subpaths. All subpaths must have a slash at the end and none at the front."
1310
+ msgstr ""
1311
+
1252
1312
  msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1253
1313
  msgstr ""
1254
1314
 
@@ -1258,12 +1318,18 @@ msgstr ""
1258
1318
  msgid "Comma-separated list of tags to sync for a container image repository"
1259
1319
  msgstr ""
1260
1320
 
1321
+ msgid "Compare"
1322
+ msgstr ""
1323
+
1261
1324
  msgid "Component"
1262
1325
  msgstr "Компонент"
1263
1326
 
1264
1327
  msgid "Component Content View"
1265
1328
  msgstr ""
1266
1329
 
1330
+ msgid "Component Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1331
+ msgstr ""
1332
+
1267
1333
  msgid "Components"
1268
1334
  msgstr "Компоненты"
1269
1335
 
@@ -1414,6 +1480,9 @@ msgstr ""
1414
1480
  msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1415
1481
  msgstr ""
1416
1482
 
1483
+ msgid "Content View Version: '%{cvv}', Product: '%{product}', Repository: '%{repo}' "
1484
+ msgstr ""
1485
+
1417
1486
  msgid "Content View and Environment not set for registration."
1418
1487
  msgstr "Для регистрации необходимо представить представление и окружение."
1419
1488
 
@@ -1426,6 +1495,9 @@ msgstr ""
1426
1495
  msgid "Content Views"
1427
1496
  msgstr "Представления"
1428
1497
 
1498
+ msgid "Content cannot be imported into a Composite Content View. "
1499
+ msgstr ""
1500
+
1429
1501
  msgid "Content credential"
1430
1502
  msgstr ""
1431
1503
 
@@ -1450,6 +1522,9 @@ msgstr ""
1450
1522
  msgid "Content override search parameters"
1451
1523
  msgstr ""
1452
1524
 
1525
+ msgid "Content source"
1526
+ msgstr ""
1527
+
1453
1528
  msgid "Content source ID"
1454
1529
  msgstr ""
1455
1530
 
@@ -1516,6 +1591,9 @@ msgstr ""
1516
1591
  msgid "Content views"
1517
1592
  msgstr ""
1518
1593
 
1594
+ msgid "Content will be synced from the alternate content source first, then the original source if the ACS is not reachable."
1595
+ msgstr ""
1596
+
1519
1597
  msgid "Content_Host_Status"
1520
1598
  msgstr ""
1521
1599
 
@@ -1657,6 +1735,9 @@ msgstr "Предыдущее окружение «%s» не найдено"
1657
1735
  msgid "Couldn't find product with id '%s'"
1658
1736
  msgstr "Продукт с ID «%s» не найден."
1659
1737
 
1738
+ msgid "Couldn't find products with id '%s'"
1739
+ msgstr ""
1740
+
1660
1741
  msgid "Couldn't find repository '%s'"
1661
1742
  msgstr "Репозиторий «%s» не найден."
1662
1743
 
@@ -1726,12 +1807,12 @@ msgstr "Создать продукт"
1726
1807
  msgid "Create a sync plan"
1727
1808
  msgstr "Создать план синхронизации"
1728
1809
 
1729
- msgid "Create an ACS"
1730
- msgstr ""
1731
-
1732
1810
  msgid "Create an activation key"
1733
1811
  msgstr "Создать ключ активации"
1734
1812
 
1813
+ 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."
1814
+ msgstr ""
1815
+
1735
1816
  msgid "Create an environment"
1736
1817
  msgstr "Создать окружение"
1737
1818
 
@@ -1741,6 +1822,9 @@ msgstr "Создать окружение в организации"
1741
1822
  msgid "Create an upload request"
1742
1823
  msgstr "Создать запрос передачи"
1743
1824
 
1825
+ msgid "Create content credentials with the generated SSL certificate and key."
1826
+ msgstr ""
1827
+
1744
1828
  msgid "Create content view"
1745
1829
  msgstr ""
1746
1830
 
@@ -1780,6 +1864,9 @@ msgstr ""
1780
1864
  msgid "Custom"
1781
1865
  msgstr ""
1782
1866
 
1867
+ msgid "Custom CDN"
1868
+ msgstr ""
1869
+
1783
1870
  msgid "Custom Content Repositories"
1784
1871
  msgstr "Другие репозитории"
1785
1872
 
@@ -1795,6 +1882,9 @@ msgstr ""
1795
1882
  msgid "DEB name"
1796
1883
  msgstr ""
1797
1884
 
1885
+ msgid "DEB package updates"
1886
+ msgstr ""
1887
+
1798
1888
  msgid "Database connection"
1799
1889
  msgstr "Подключение к базе данных"
1800
1890
 
@@ -1930,6 +2020,12 @@ msgstr ""
1930
2020
  msgid "Default user data for new Operating Systems created from synced content"
1931
2021
  msgstr ""
1932
2022
 
2023
+ msgid "Define RHUI repository paths with guided steps."
2024
+ msgstr ""
2025
+
2026
+ msgid "Define repositories structured under a common web or filesystem path."
2027
+ msgstr ""
2028
+
1933
2029
  msgid "Delete"
1934
2030
  msgstr "Удалить"
1935
2031
 
@@ -2068,7 +2164,7 @@ msgstr "Удалить план синхронизации"
2068
2164
  msgid "Destroy an activation key"
2069
2165
  msgstr "Удалить ключ активации"
2070
2166
 
2071
- msgid "Destroy an alternate content source"
2167
+ msgid "Destroy an alternate content source."
2072
2168
  msgstr ""
2073
2169
 
2074
2170
  msgid "Destroy an environment"
@@ -2131,6 +2227,9 @@ msgstr "Поиск"
2131
2227
  msgid "Discover Repositories"
2132
2228
  msgstr "Поиск репозиториев"
2133
2229
 
2230
+ msgid "Distribute archived content view versions"
2231
+ msgstr ""
2232
+
2134
2233
  msgid "Do not include this array of content views"
2135
2234
  msgstr "Исключить указанный массив представлений"
2136
2235
 
@@ -2164,21 +2263,51 @@ msgstr "РЕКОМЕНДАЦИИ ИСПРАВЛЕНИЙ"
2164
2263
  msgid "Edit"
2165
2264
  msgstr "Изменить"
2166
2265
 
2266
+ msgid "Edit ACS"
2267
+ msgstr ""
2268
+
2269
+ msgid "Edit ACS credentials"
2270
+ msgstr ""
2271
+
2272
+ msgid "Edit ACS details"
2273
+ msgstr ""
2274
+
2275
+ msgid "Edit ACS products"
2276
+ msgstr ""
2277
+
2278
+ msgid "Edit ACS smart proxies"
2279
+ msgstr ""
2280
+
2167
2281
  msgid "Edit RPM rule"
2168
2282
  msgstr ""
2169
2283
 
2284
+ msgid "Edit URL and subpaths"
2285
+ msgstr ""
2286
+
2170
2287
  msgid "Edit content view assignment"
2171
2288
  msgstr ""
2172
2289
 
2290
+ msgid "Edit credentials"
2291
+ msgstr ""
2292
+
2293
+ msgid "Edit details"
2294
+ msgstr ""
2295
+
2173
2296
  msgid "Edit filter rule"
2174
2297
  msgstr ""
2175
2298
 
2176
2299
  msgid "Edit package filter rule"
2177
2300
  msgstr ""
2178
2301
 
2302
+ msgid "Edit products"
2303
+ msgstr ""
2304
+
2179
2305
  msgid "Edit rule"
2180
2306
  msgstr ""
2181
2307
 
2308
+ msgid "Edit smart proxies"
2309
+ msgstr ""
2310
+
2182
2311
  msgid "Edit system purpose attributes"
2183
2312
  msgstr ""
2184
2313
 
@@ -2203,6 +2332,9 @@ msgstr ""
2203
2332
  msgid "Either set the latest content view or the content view version. Cannot set both"
2204
2333
  msgstr ""
2205
2334
 
2335
+ msgid "Empty content view versions"
2336
+ msgstr ""
2337
+
2206
2338
  msgid "Enable"
2207
2339
  msgstr "Включить"
2208
2340
 
@@ -2221,6 +2353,9 @@ msgstr ""
2221
2353
  msgid "Enable a repository from the set"
2222
2354
  msgstr "Включить репозиторий из набора"
2223
2355
 
2356
+ msgid "Enable repository sets"
2357
+ msgstr ""
2358
+
2224
2359
  msgid "Enable simple content access for a manifest"
2225
2360
  msgstr ""
2226
2361
 
@@ -2263,6 +2398,9 @@ msgstr ""
2263
2398
  msgid "Enter basic authentication information or choose content credentials if required for this source."
2264
2399
  msgstr ""
2265
2400
 
2401
+ msgid "Enter in the base path and any subpaths that should be searched for alternate content."
2402
+ msgstr ""
2403
+
2266
2404
  msgid "Entitlements"
2267
2405
  msgstr ""
2268
2406
 
@@ -2519,6 +2657,9 @@ msgstr "Список продуктов по подписке"
2519
2657
  msgid "Filter products by sync plan id"
2520
2658
  msgstr "Список продуктов по идентификатору плана синхронизации"
2521
2659
 
2660
+ msgid "Filter repositories by content unit type (erratum, docker_tag, etc.). Check the \"Indexed?\" types here: /katello/api/repositories/repository_types"
2661
+ msgstr ""
2662
+
2522
2663
  msgid "Filter rule added"
2523
2664
  msgstr ""
2524
2665
 
@@ -2555,6 +2696,9 @@ msgstr ""
2555
2696
  msgid "Filters will appear here when the filter is created."
2556
2697
  msgstr ""
2557
2698
 
2699
+ msgid "Find the relative path for each RHUI repository and combine them in a comma-separated list."
2700
+ msgstr ""
2701
+
2558
2702
  msgid "Finish"
2559
2703
  msgstr ""
2560
2704
 
@@ -2614,6 +2758,9 @@ msgstr "Полные полномочия"
2614
2758
  msgid "GPG Key URL"
2615
2759
  msgstr "URL ключа GPG"
2616
2760
 
2761
+ msgid "Generate RHUI certificates for the desired repositories as necessary."
2762
+ msgstr ""
2763
+
2617
2764
  msgid "Generate and Download"
2618
2765
  msgstr "Создать и загрузить"
2619
2766
 
@@ -2824,6 +2971,9 @@ msgstr ""
2824
2971
  msgid "Hosts"
2825
2972
  msgstr "Узлы"
2826
2973
 
2974
+ msgid "Hosts to update"
2975
+ msgstr ""
2976
+
2827
2977
  msgid "Hosts with Installable Errata"
2828
2978
  msgstr "Узлы с доступными для установки исправлениями"
2829
2979
 
@@ -2902,6 +3052,9 @@ msgstr "Идентификатор плана синхронизации"
2902
3052
  msgid "ID: %s doesn't exist "
2903
3053
  msgstr ""
2904
3054
 
3055
+ 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."
3056
+ msgstr ""
3057
+
2905
3058
  msgid "Id of a deb package to find repositories that contain the deb"
2906
3059
  msgstr ""
2907
3060
 
@@ -2917,6 +3070,9 @@ msgstr ""
2917
3070
  msgid "Id of an erratum to find repositories that contain the erratum"
2918
3071
  msgstr "Идентификатор исправления для получения списка репозиториев"
2919
3072
 
3073
+ msgid "Id of the HTTP proxy to use with alternate content sources"
3074
+ msgstr ""
3075
+
2920
3076
  msgid "Id of the content host"
2921
3077
  msgstr "Идентификатор узла содержимого"
2922
3078
 
@@ -2989,6 +3145,9 @@ msgstr ""
2989
3145
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2990
3146
  msgstr "Если задано, удалить указанное число подписок в соответствии с заданным идентификатором"
2991
3147
 
3148
+ msgid "If the smart proxies' assigned HTTP proxies should be used"
3149
+ msgstr ""
3150
+
2992
3151
  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."
2993
3152
  msgstr ""
2994
3153
 
@@ -3001,6 +3160,9 @@ msgstr ""
3001
3160
  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."
3002
3161
  msgstr ""
3003
3162
 
3163
+ 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/...'."
3164
+ msgstr ""
3165
+
3004
3166
  msgid "If true, only return repository sets that are associated with an active subscriptions"
3005
3167
  msgstr ""
3006
3168
 
@@ -3034,6 +3196,9 @@ msgstr ""
3034
3196
  msgid "Ignore subscriptions that are unavailable to the specified host"
3035
3197
  msgstr "Показать доступные подписки для указанного узла"
3036
3198
 
3199
+ msgid "Ignored hosts"
3200
+ msgstr ""
3201
+
3037
3202
  msgid "Immediate"
3038
3203
  msgstr "Немедленный"
3039
3204
 
@@ -3178,9 +3343,6 @@ msgstr ""
3178
3343
  msgid "Index package groups"
3179
3344
  msgstr "Индексировать группы пакетов"
3180
3345
 
3181
- msgid "Indicate the source type."
3182
- msgstr ""
3183
-
3184
3346
  msgid "Informable Type must be one of the following [ %{list} ]"
3185
3347
  msgstr "Тип может принимать значения: [ %{list} ]"
3186
3348
 
@@ -3250,12 +3412,15 @@ msgstr ""
3250
3412
  msgid "Installable"
3251
3413
  msgstr "Доступно для установки"
3252
3414
 
3253
- msgid "Installable errata"
3415
+ msgid "Installable errata are applicable errata that are available in the host\\'s content view and lifecycle environment."
3254
3416
  msgstr ""
3255
3417
 
3256
3418
  msgid "Installable errata from content view"
3257
3419
  msgstr ""
3258
3420
 
3421
+ msgid "Installable updates"
3422
+ msgstr ""
3423
+
3259
3424
  msgid "Installation of errata requested: %{errata}"
3260
3425
  msgstr ""
3261
3426
 
@@ -3316,9 +3481,6 @@ msgstr ""
3316
3481
  msgid "Invalid"
3317
3482
  msgstr "Недействительные"
3318
3483
 
3319
- msgid "Invalid SSL CA certificate given for CDN"
3320
- msgstr ""
3321
-
3322
3484
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
3323
3485
  msgstr ""
3324
3486
 
@@ -3367,6 +3529,12 @@ msgstr "Неверные значения параметров. Параметр
3367
3529
  msgid "Invalid params provided - date_type must be one of %s"
3368
3530
  msgstr "Неверные значения параметров. Параметр date_type может принимать следующие значения: %s"
3369
3531
 
3532
+ msgid "Invalid params provided - with_content must be one of %s"
3533
+ msgstr ""
3534
+
3535
+ msgid "Invalid path provided. Content can be only imported from file system. "
3536
+ msgstr ""
3537
+
3370
3538
  msgid "Invalid release version: [%s]"
3371
3539
  msgstr ""
3372
3540
 
@@ -3388,6 +3556,9 @@ msgstr "Опубликовано"
3388
3556
  msgid "Issued from"
3389
3557
  msgstr ""
3390
3558
 
3559
+ msgid "Items will appear here when a filter rule is added."
3560
+ msgstr ""
3561
+
3391
3562
  msgid "Job '${description}' completed"
3392
3563
  msgstr ""
3393
3564
 
@@ -3463,15 +3634,18 @@ msgstr "Метка содержимого"
3463
3634
  msgid "Label of the content view"
3464
3635
  msgstr ""
3465
3636
 
3466
- msgid "Last Refresh"
3637
+ msgid "Last check-in:"
3467
3638
  msgstr ""
3468
3639
 
3469
- msgid "Last check-in:"
3640
+ msgid "Last checkin"
3470
3641
  msgstr ""
3471
3642
 
3472
3643
  msgid "Last published"
3473
3644
  msgstr ""
3474
3645
 
3646
+ msgid "Last refresh"
3647
+ msgstr ""
3648
+
3475
3649
  msgid "Last refresh :"
3476
3650
  msgstr ""
3477
3651
 
@@ -3490,6 +3664,9 @@ msgstr ""
3490
3664
  msgid "Learn more about adding Subscription Manifests"
3491
3665
  msgstr ""
3492
3666
 
3667
+ msgid "Legacy content host UI"
3668
+ msgstr ""
3669
+
3493
3670
  msgid "Less than"
3494
3671
  msgstr ""
3495
3672
 
@@ -3556,6 +3733,9 @@ msgstr ""
3556
3733
  msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3557
3734
  msgstr ""
3558
3735
 
3736
+ msgid "Limit the repository type. Available types endpoint: /katello/api/repositories/repository_types"
3737
+ msgstr ""
3738
+
3559
3739
  msgid "Limit to environment"
3560
3740
  msgstr ""
3561
3741
 
@@ -3586,6 +3766,9 @@ msgstr "Список всех :resource_id"
3586
3766
  msgid "List all organizations"
3587
3767
  msgstr "Показать все организации"
3588
3768
 
3769
+ msgid "List alternate content sources."
3770
+ msgstr ""
3771
+
3589
3772
  msgid "List an activation key's subscriptions"
3590
3773
  msgstr "Показать подписки ключа активации"
3591
3774
 
@@ -3658,9 +3841,6 @@ msgstr "Список продуктов в плане синхронизации
3658
3841
  msgid "List of alternate content source IDs"
3659
3842
  msgstr ""
3660
3843
 
3661
- msgid "List of alternate_content_sources"
3662
- msgstr ""
3663
-
3664
3844
  msgid "List of component content view version ids for composite views"
3665
3845
  msgstr "Список идентификаторов версий компонентов для сложных представлений"
3666
3846
 
@@ -3751,6 +3931,9 @@ msgstr ""
3751
3931
  msgid "List of repository ids"
3752
3932
  msgstr "Список идентификаторов репозиториев"
3753
3933
 
3934
+ msgid "List of resources types that will be automatically associated"
3935
+ msgstr ""
3936
+
3754
3937
  msgid "List of subscription products in a subscription"
3755
3938
  msgstr "Список продуктов для указанной подписки"
3756
3939
 
@@ -3955,6 +4138,9 @@ msgstr ""
3955
4138
  msgid "Multi-entitlement"
3956
4139
  msgstr "Многократные полномочия"
3957
4140
 
4141
+ msgid "Multiple environments are not supported."
4142
+ msgstr ""
4143
+
3958
4144
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3959
4145
  msgstr ""
3960
4146
 
@@ -3967,11 +4153,19 @@ msgstr "нет"
3967
4153
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3968
4154
  msgstr ""
3969
4155
 
4156
+ msgid "NOTE: Unable to export repository '%{repository}' because it does not have an exportable content type."
4157
+ msgstr ""
4158
+
3970
4159
  msgid ""
3971
4160
  "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"
3972
4161
  " %{repos}"
3973
4162
  msgstr ""
3974
4163
 
4164
+ msgid ""
4165
+ "NOTE: Unable to fully export Content View Version '%{content_view} %{current}' it contains repositories with un-exportable content types. \n"
4166
+ " %{repos}"
4167
+ msgstr ""
4168
+
3975
4169
  msgid ""
3976
4170
  "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"
3977
4171
  " %{repos}"
@@ -3983,6 +4177,12 @@ msgstr ""
3983
4177
  msgid "Name"
3984
4178
  msgstr "Имя"
3985
4179
 
4180
+ msgid "Name and label of default content view should not be changed"
4181
+ msgstr ""
4182
+
4183
+ msgid "Name is a required parameter."
4184
+ msgstr ""
4185
+
3986
4186
  msgid "Name of new activation key"
3987
4187
  msgstr "Имя нового ключа активации"
3988
4188
 
@@ -4028,6 +4228,12 @@ msgstr ""
4028
4228
  msgid "Never Synced"
4029
4229
  msgstr "Никогда"
4030
4230
 
4231
+ msgid "Never checked in"
4232
+ msgstr ""
4233
+
4234
+ msgid "Never registered"
4235
+ msgstr ""
4236
+
4031
4237
  msgid "New Errata"
4032
4238
  msgstr "Новые исправления"
4033
4239
 
@@ -4121,6 +4327,9 @@ msgstr "Не указано содержимое."
4121
4327
  msgid "No content ids provided"
4122
4328
  msgstr "Не заданы идентификаторы содержимого"
4123
4329
 
4330
+ msgid "No content in selected versions."
4331
+ msgstr ""
4332
+
4124
4333
  msgid "No content view history events found."
4125
4334
  msgstr "Нет событий."
4126
4335
 
@@ -4172,6 +4381,9 @@ msgstr ""
4172
4381
  msgid "No host collections found."
4173
4382
  msgstr "Нет коллекций."
4174
4383
 
4384
+ msgid "No host collections yet"
4385
+ msgstr ""
4386
+
4175
4387
  msgid "No hosts have been specified."
4176
4388
  msgstr "Не задан ни один узел."
4177
4389
 
@@ -4196,6 +4408,9 @@ msgstr ""
4196
4408
  msgid "No matching "
4197
4409
  msgstr ""
4198
4410
 
4411
+ msgid "No matching ${name} found."
4412
+ msgstr ""
4413
+
4199
4414
  msgid "No matching ${selectedContentType} found"
4200
4415
  msgstr ""
4201
4416
 
@@ -4286,6 +4501,9 @@ msgstr ""
4286
4501
  msgid "No products are enabled."
4287
4502
  msgstr ""
4288
4503
 
4504
+ msgid "No profiles to show"
4505
+ msgstr ""
4506
+
4289
4507
  msgid "No pulp workers running."
4290
4508
  msgstr "Нет работающих обработчиков Pulp."
4291
4509
 
@@ -4421,6 +4639,9 @@ msgstr "Ограничивает результаты только теми по
4421
4639
  msgid "On Demand"
4422
4640
  msgstr "По требованию"
4423
4641
 
4642
+ msgid "On the RHUA Instance, check the available repositories."
4643
+ msgstr ""
4644
+
4424
4645
  msgid "On-disk location for exported repositories"
4425
4646
  msgstr "Расположение экспортируемых репозиториев на диске"
4426
4647
 
@@ -4799,6 +5020,9 @@ msgstr "Чтобы перейти на страницу, выберите орг
4799
5020
  msgid "Please wait while the task starts.."
4800
5021
  msgstr ""
4801
5022
 
5023
+ msgid "Please wait..."
5024
+ msgstr ""
5025
+
4802
5026
  msgid "Policy to set for mirroring content. Must be one of %s."
4803
5027
  msgstr ""
4804
5028
 
@@ -4888,9 +5112,18 @@ msgstr ""
4888
5112
  msgid "Product: '%{product}', Repository: '%{repository}'"
4889
5113
  msgstr ""
4890
5114
 
5115
+ msgid "Product: '%{product}', Repository: '%{repo}' "
5116
+ msgstr ""
5117
+
4891
5118
  msgid "Products"
4892
5119
  msgstr "Продукты"
4893
5120
 
5121
+ msgid "Products updated."
5122
+ msgstr ""
5123
+
5124
+ msgid "Profiles"
5125
+ msgstr ""
5126
+
4894
5127
  msgid "Promote"
4895
5128
  msgstr "Продвижение"
4896
5129
 
@@ -5068,6 +5301,9 @@ msgstr ""
5068
5301
  msgid "RH Repos"
5069
5302
  msgstr ""
5070
5303
 
5304
+ msgid "RHUI"
5305
+ msgstr ""
5306
+
5071
5307
  msgid "RPM"
5072
5308
  msgstr "RPM"
5073
5309
 
@@ -5080,6 +5316,12 @@ msgstr ""
5080
5316
  msgid "RPM name"
5081
5317
  msgstr ""
5082
5318
 
5319
+ msgid "RPM package groups"
5320
+ msgstr ""
5321
+
5322
+ msgid "RPM package updates"
5323
+ msgstr ""
5324
+
5083
5325
  msgid "RPM packages"
5084
5326
  msgstr ""
5085
5327
 
@@ -5146,6 +5388,9 @@ msgstr ""
5146
5388
  msgid "Red Hat content will be consumed from the {type}."
5147
5389
  msgstr ""
5148
5390
 
5391
+ msgid "Red Hat content will be consumed from {type}."
5392
+ msgstr ""
5393
+
5149
5394
  msgid "Red Hat content will be enabled and consumed via the {type} process."
5150
5395
  msgstr ""
5151
5396
 
@@ -5173,7 +5418,7 @@ msgstr "Обновить манифест"
5173
5418
  msgid "Refresh alternate content sources"
5174
5419
  msgstr ""
5175
5420
 
5176
- msgid "Refresh an alternate content source"
5421
+ msgid "Refresh an alternate content source. Refreshing, like repository syncing, is required before using an alternate content source."
5177
5422
  msgstr ""
5178
5423
 
5179
5424
  msgid "Refresh previously imported manifest for Red Hat provider"
@@ -5191,6 +5436,9 @@ msgstr ""
5191
5436
  msgid "Register host '%s' before attaching subscriptions"
5192
5437
  msgstr ""
5193
5438
 
5439
+ msgid "Registered"
5440
+ msgstr ""
5441
+
5194
5442
  msgid "Registered by"
5195
5443
  msgstr ""
5196
5444
 
@@ -5317,7 +5565,7 @@ msgstr ""
5317
5565
  msgid "Remove one or more host collections from one or more hosts"
5318
5566
  msgstr "Удалить узлы из коллекций"
5319
5567
 
5320
- msgid "Remove one or more subscriptions from an upstream subscription allocation"
5568
+ msgid "Remove one or more subscriptions from an upstream manifest"
5321
5569
  msgstr ""
5322
5570
 
5323
5571
  msgid "Remove package"
@@ -5368,6 +5616,9 @@ msgstr "Удаление группы..."
5368
5616
  msgid "Removing Package..."
5369
5617
  msgstr "Удаление пакета..."
5370
5618
 
5619
+ msgid "Removing product %{prod_name} with ID %{prod_id} from ACS %{acs_name} with ID %{acs_id}"
5620
+ msgstr ""
5621
+
5371
5622
  msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
5372
5623
  msgstr ""
5373
5624
 
@@ -5608,9 +5859,6 @@ msgstr ""
5608
5859
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
5609
5860
  msgstr ""
5610
5861
 
5611
- msgid "Review Details"
5612
- msgstr ""
5613
-
5614
5862
  msgid "Review affected environment"
5615
5863
  msgstr ""
5616
5864
 
@@ -5620,6 +5868,9 @@ msgstr ""
5620
5868
  msgid "Review details"
5621
5869
  msgstr ""
5622
5870
 
5871
+ msgid "Review the information below and click "
5872
+ msgstr ""
5873
+
5623
5874
  msgid "Review your currently selected changes for "
5624
5875
  msgstr ""
5625
5876
 
@@ -5659,9 +5910,6 @@ msgstr ""
5659
5910
  msgid "SSL CA certificate"
5660
5911
  msgstr ""
5661
5912
 
5662
- msgid "SSL Cert"
5663
- msgstr ""
5664
-
5665
5913
  msgid "SSL client certificate"
5666
5914
  msgstr ""
5667
5915
 
@@ -5791,6 +6039,9 @@ msgstr ""
5791
6039
  msgid "Select an environment above"
5792
6040
  msgstr ""
5793
6041
 
6042
+ msgid "Select an option"
6043
+ msgstr ""
6044
+
5794
6045
  msgid "Select an organization"
5795
6046
  msgstr ""
5796
6047
 
@@ -5830,6 +6081,12 @@ msgstr ""
5830
6081
  msgid "Select page"
5831
6082
  msgstr ""
5832
6083
 
6084
+ msgid "Select products"
6085
+ msgstr ""
6086
+
6087
+ msgid "Select products to associate to this source."
6088
+ msgstr ""
6089
+
5833
6090
  msgid "Select row"
5834
6091
  msgstr ""
5835
6092
 
@@ -5947,7 +6204,7 @@ msgstr ""
5947
6204
  msgid "Show an activation key"
5948
6205
  msgstr "Показать ключ активации"
5949
6206
 
5950
- msgid "Show an alternate content source"
6207
+ msgid "Show an alternate content source."
5951
6208
  msgstr ""
5952
6209
 
5953
6210
  msgid "Show an environment"
@@ -5998,6 +6255,9 @@ msgstr ""
5998
6255
  msgid "Simple Content Access has been enabled for '%{subject}'."
5999
6256
  msgstr ""
6000
6257
 
6258
+ msgid "Simplified"
6259
+ msgstr ""
6260
+
6001
6261
  msgid "Single content view consisting of e.g. repositories"
6002
6262
  msgstr ""
6003
6263
 
@@ -6034,7 +6294,7 @@ msgstr ""
6034
6294
  msgid "Solve dependencies"
6035
6295
  msgstr ""
6036
6296
 
6037
- msgid "Some hosts are ignored!"
6297
+ msgid "Some hosts are not registered as content hosts and will be ignored."
6038
6298
  msgstr ""
6039
6299
 
6040
6300
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
@@ -6058,13 +6318,13 @@ msgstr ""
6058
6318
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
6059
6319
  msgstr ""
6060
6320
 
6061
- msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6321
+ msgid "Something went wrong while deleting alternate content sources: ${getResponseErrorMsgs(error.response)}"
6062
6322
  msgstr ""
6063
6323
 
6064
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6324
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
6065
6325
  msgstr ""
6066
6326
 
6067
- msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
6327
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
6068
6328
  msgstr ""
6069
6329
 
6070
6330
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
@@ -6112,10 +6372,13 @@ msgstr ""
6112
6372
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
6113
6373
  msgstr ""
6114
6374
 
6375
+ msgid "Something went wrong while loading the Smart Proxy. See the logs for more information"
6376
+ msgstr ""
6377
+
6115
6378
  msgid "Something went wrong while loading the content views. See the logs for more information"
6116
6379
  msgstr ""
6117
6380
 
6118
- msgid "Something went wrong while refreshing this alternate content source! ${getResponseErrorMsgs(error.response)}"
6381
+ msgid "Something went wrong while refreshing alternate content sources: "
6119
6382
  msgstr ""
6120
6383
 
6121
6384
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
@@ -6130,6 +6393,9 @@ msgstr ""
6130
6393
  msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
6131
6394
  msgstr ""
6132
6395
 
6396
+ msgid "Something went wrong while retrieving the container tags! ${getResponseErrorMsgs(error.response)}"
6397
+ msgstr ""
6398
+
6133
6399
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
6134
6400
  msgstr ""
6135
6401
 
@@ -6148,9 +6414,33 @@ msgstr ""
6148
6414
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
6149
6415
  msgstr ""
6150
6416
 
6417
+ msgid "Something went wrong while retrieving the content! ${getResponseErrorMsgs(error.response)}"
6418
+ msgstr ""
6419
+
6420
+ msgid "Something went wrong while retrieving the deb packages! ${getResponseErrorMsgs(error.response)}"
6421
+ msgstr ""
6422
+
6423
+ msgid "Something went wrong while retrieving the errata! ${getResponseErrorMsgs(error.response)}"
6424
+ msgstr ""
6425
+
6426
+ msgid "Something went wrong while retrieving the files! ${getResponseErrorMsgs(error.response)}"
6427
+ msgstr ""
6428
+
6151
6429
  msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
6152
6430
  msgstr ""
6153
6431
 
6432
+ msgid "Something went wrong while retrieving the module streams! ${getResponseErrorMsgs(error.response)}"
6433
+ msgstr ""
6434
+
6435
+ msgid "Something went wrong while retrieving the package groups! ${getResponseErrorMsgs(error.response)}"
6436
+ msgstr ""
6437
+
6438
+ msgid "Something went wrong while retrieving the packages! ${getResponseErrorMsgs(error.response)}"
6439
+ msgstr ""
6440
+
6441
+ msgid "Something went wrong while retrieving the repositories! ${getResponseErrorMsgs(error.response)}"
6442
+ msgstr ""
6443
+
6154
6444
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
6155
6445
  msgstr ""
6156
6446
 
@@ -6235,9 +6525,6 @@ msgstr ""
6235
6525
  msgid "Subscription"
6236
6526
  msgstr "Подписка"
6237
6527
 
6238
- msgid "Subscription Allocation"
6239
- msgstr ""
6240
-
6241
6528
  msgid "Subscription Details"
6242
6529
  msgstr "Подписка"
6243
6530
 
@@ -6295,6 +6582,9 @@ msgstr "Файл манифеста подписок"
6295
6582
  msgid "Subscription not found"
6296
6583
  msgstr ""
6297
6584
 
6585
+ msgid "Subscription status"
6586
+ msgstr ""
6587
+
6298
6588
  msgid "Subscription was not persisted - %{error_message}"
6299
6589
  msgstr ""
6300
6590
 
@@ -6340,6 +6630,9 @@ msgstr "Удалено узлов: %s"
6340
6630
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
6341
6631
  msgstr "Узлы (всего %{count}) были удалены из коллекции %{host_collection}."
6342
6632
 
6633
+ msgid "Successfully synced capsule."
6634
+ msgstr ""
6635
+
6343
6636
  msgid "Successfully synchronized."
6344
6637
  msgstr ""
6345
6638
 
@@ -6421,6 +6714,9 @@ msgstr "Синхронизировать продукты"
6421
6714
  msgid "Sync plan identifier to attach"
6422
6715
  msgstr "Идентификатор плана синхронизации"
6423
6716
 
6717
+ msgid "Sync smart proxy content directly from upstream repositories by selecting the desired products."
6718
+ msgstr ""
6719
+
6424
6720
  msgid "Sync state"
6425
6721
  msgstr ""
6426
6722
 
@@ -6511,9 +6807,6 @@ msgstr "Окружение «%s» не может содержать набор
6511
6807
  msgid "The Alternate Content Source type"
6512
6808
  msgstr ""
6513
6809
 
6514
- msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
6515
- msgstr ""
6516
-
6517
6810
  msgid "The URL to receive a session token from, e.g. used with Automation Hub."
6518
6811
  msgstr ""
6519
6812
 
@@ -6565,9 +6858,6 @@ msgstr ""
6565
6858
  msgid "The field to sort the data by. Defaults to the created date."
6566
6859
  msgstr ""
6567
6860
 
6568
- msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6569
- msgstr ""
6570
-
6571
6861
  msgid "The following hosts have errata that apply to them: "
6572
6862
  msgstr ""
6573
6863
 
@@ -6594,6 +6884,9 @@ msgstr ""
6594
6884
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
6595
6885
  msgstr ""
6596
6886
 
6887
+ msgid "The manifest doesn't exist on console.redhat.com. Please create and import a new manifest."
6888
+ msgstr ""
6889
+
6597
6890
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
6598
6891
  msgstr ""
6599
6892
 
@@ -6638,6 +6931,9 @@ msgstr ""
6638
6931
  msgid "The port used by Pulp Crane to provide Docker Registries"
6639
6932
  msgstr ""
6640
6933
 
6934
+ msgid "The product %{name} has no %{type} repositories with upstream URLs to add to the alternate content source."
6935
+ msgstr ""
6936
+
6641
6937
  msgid "The promotion of %{content_view} to %{environment} has completed. %{count} errata are available to your hosts."
6642
6938
  msgstr "%{content_view} перенесено в %{environment}. Доступно исправлений: %{count}."
6643
6939
 
@@ -6683,13 +6979,19 @@ msgstr "Синхронизация «%s» завершена. Ниже прив
6683
6979
  msgid "The token key to use for authentication."
6684
6980
  msgstr ""
6685
6981
 
6982
+ msgid "The type of content to remove (srpm, docker_manifest, etc.). Check removable types here: /katello/api/repositories/repository_types"
6983
+ msgstr ""
6984
+
6985
+ msgid "The type of content to upload (srpm, file, etc.). Check uploadable types here: /katello/api/repositories/repository_types"
6986
+ msgstr ""
6987
+
6686
6988
  msgid "The type of content. The following types are supported: 'package' and 'package_group."
6687
6989
  msgstr ""
6688
6990
 
6689
6991
  msgid "The type of content. The following types are supported: 'package', 'package_group' and 'errata'."
6690
6992
  msgstr ""
6691
6993
 
6692
- msgid "There are no Subscription Allocations to display"
6994
+ msgid "There are no Manifests to display"
6693
6995
  msgstr ""
6694
6996
 
6695
6997
  msgid "There are no Subscriptions to display"
@@ -6761,6 +7063,9 @@ msgstr ""
6761
7063
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
6762
7064
  msgstr ""
6763
7065
 
7066
+ 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."
7067
+ msgstr ""
7068
+
6764
7069
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
6765
7070
  msgstr "Сертификат позволяет обращаться к репозиториям в окружении из окна браузера."
6766
7071
 
@@ -6800,7 +7105,7 @@ msgstr ""
6800
7105
  msgid "This is disabled because a manifest task is in progress"
6801
7106
  msgstr ""
6802
7107
 
6803
- msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
7108
+ msgid "This is disabled because no connection could be made to the upstream Manifest."
6804
7109
  msgstr ""
6805
7110
 
6806
7111
  msgid "This is disabled because no manifest exists"
@@ -6869,6 +7174,9 @@ msgstr ""
6869
7174
  msgid "Title"
6870
7175
  msgstr "Заголовок"
6871
7176
 
7177
+ msgid "To get started, add this host to a host collection."
7178
+ msgstr ""
7179
+
6872
7180
  msgid "Toggling Simple Content Access will refresh your manifest."
6873
7181
  msgstr ""
6874
7182
 
@@ -6911,6 +7219,9 @@ msgstr ""
6911
7219
  msgid "Traces will be shown here to a user with the appropriate permissions."
6912
7220
  msgstr ""
6913
7221
 
7222
+ msgid "Traffic for all alternate content sources associated with this smart proxy will go through the chosen HTTP proxy."
7223
+ msgstr ""
7224
+
6914
7225
  msgid "Trigger an auto-attach of subscriptions"
6915
7226
  msgstr "Разрешить автоматическое выделение подписок"
6916
7227
 
@@ -6941,12 +7252,18 @@ msgstr ""
6941
7252
  msgid "Type of content: \"cert\", \"gpg_key\""
6942
7253
  msgstr ""
6943
7254
 
7255
+ msgid "Type of repository. Available types endpoint: /katello/api/repositories/repository_types"
7256
+ msgstr ""
7257
+
6944
7258
  msgid "URL"
6945
7259
  msgstr "URL"
6946
7260
 
6947
7261
  msgid "URL and paths"
6948
7262
  msgstr ""
6949
7263
 
7264
+ msgid "URL and subpaths"
7265
+ msgstr ""
7266
+
6950
7267
  msgid "URL needs to have a trailing /"
6951
7268
  msgstr ""
6952
7269
 
@@ -7148,7 +7465,7 @@ msgstr "Обновить план синхронизации"
7148
7465
  msgid "Update an activation key"
7149
7466
  msgstr "Обновить ключ активации"
7150
7467
 
7151
- msgid "Update an alternate content source"
7468
+ msgid "Update an alternate content source."
7152
7469
  msgstr ""
7153
7470
 
7154
7471
  msgid "Update an environment"
@@ -7355,6 +7672,12 @@ msgstr ""
7355
7672
  msgid "Usage type"
7356
7673
  msgstr ""
7357
7674
 
7675
+ msgid "Use HTTP Proxies"
7676
+ msgstr ""
7677
+
7678
+ msgid "Use HTTP proxies"
7679
+ msgstr ""
7680
+
7358
7681
  msgid "Use remote execution by default"
7359
7682
  msgstr ""
7360
7683
 
@@ -7430,6 +7753,12 @@ msgstr ""
7430
7753
  msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
7431
7754
  msgstr ""
7432
7755
 
7756
+ msgid "Version ${versionOne}"
7757
+ msgstr ""
7758
+
7759
+ msgid "Version ${versionTwo}"
7760
+ msgstr ""
7761
+
7433
7762
  msgid "Version details updated."
7434
7763
  msgstr ""
7435
7764
 
@@ -7442,6 +7771,9 @@ msgstr "Версия"
7442
7771
  msgid "Versions "
7443
7772
  msgstr ""
7444
7773
 
7774
+ msgid "Versions to compare"
7775
+ msgstr ""
7776
+
7445
7777
  msgid "Versions to exclusively include in the action"
7446
7778
  msgstr ""
7447
7779
 
@@ -7457,6 +7789,9 @@ msgstr "Представление %{view} не было перенесено в
7457
7789
  msgid "View a report of the affected hosts"
7458
7790
  msgstr ""
7459
7791
 
7792
+ msgid "View by"
7793
+ msgstr ""
7794
+
7460
7795
  msgid "View matching content"
7461
7796
  msgstr ""
7462
7797
 
@@ -7520,6 +7855,9 @@ msgstr ""
7520
7855
  msgid "Whether to include available content attribute in results"
7521
7856
  msgstr "Включить/отключить атрибут доступного содержимого в результаты"
7522
7857
 
7858
+ msgid "Whether to turn on Simple Content Access for the organization."
7859
+ msgstr ""
7860
+
7523
7861
  msgid "Workers"
7524
7862
  msgstr "Обработчики"
7525
7863
 
@@ -7616,6 +7954,9 @@ msgstr ""
7616
7954
  msgid "Your search returned no matching "
7617
7955
  msgstr ""
7618
7956
 
7957
+ msgid "Your search returned no matching ${name}."
7958
+ msgstr ""
7959
+
7619
7960
  msgid "Your search returned no matching DEBs."
7620
7961
  msgstr ""
7621
7962
 
@@ -7640,6 +7981,9 @@ msgstr ""
7640
7981
  msgid "a content unit"
7641
7982
  msgstr ""
7642
7983
 
7984
+ msgid "a custom CDN URL"
7985
+ msgstr ""
7986
+
7643
7987
  msgid "a deb package"
7644
7988
  msgstr ""
7645
7989
 
@@ -7811,9 +8155,6 @@ msgstr ""
7811
8155
  msgid "content release version"
7812
8156
  msgstr "версия содержимого"
7813
8157
 
7814
- msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
7815
- msgstr ""
7816
-
7817
8158
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
7818
8159
  msgstr ""
7819
8160
 
@@ -8087,9 +8428,6 @@ msgstr "метка окружения"
8087
8428
  msgid "label of the repository"
8088
8429
  msgstr ""
8089
8430
 
8090
- msgid "limit to only repositories of this type"
8091
- msgstr "ограничить репозиториями заданного типа"
8092
-
8093
8431
  msgid "limit to only repositories with this download policy"
8094
8432
  msgstr ""
8095
8433
 
@@ -8207,9 +8545,6 @@ msgstr "получить события манифеста подписок"
8207
8545
  msgid "of environment must be unique within one organization"
8208
8546
  msgstr "должно быть уникальным в пределах организации"
8209
8547
 
8210
- msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
8211
- msgstr ""
8212
-
8213
8548
  msgid "only show the repositories readable by this user with this username"
8214
8549
  msgstr ""
8215
8550
 
@@ -8393,9 +8728,6 @@ msgstr ""
8393
8728
  msgid "type of filter (e.g. deb, rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
8394
8729
  msgstr ""
8395
8730
 
8396
- msgid "type of repo"
8397
- msgstr ""
8398
-
8399
8731
  msgid "types of filters"
8400
8732
  msgstr ""
8401
8733