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
@@ -4,10 +4,6 @@ msgstr ""
4
4
  "Content-Transfer-Encoding: 8bit\n"
5
5
  "Project-Id-Version: \n"
6
6
 
7
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
8
- msgid "- Date and Type"
9
- msgstr ""
10
-
11
7
  #: app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
12
8
  msgid "-- select an interval --"
13
9
  msgstr ""
@@ -16,40 +12,14 @@ msgstr ""
16
12
  msgid "(future)"
17
13
  msgstr ""
18
14
 
19
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
20
- msgid "(Not all Activation Keys editable )"
21
- msgstr ""
22
-
23
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
24
- msgid "(Not all Content Hosts editable )"
25
- msgstr ""
26
-
27
15
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html
28
16
  msgid "{{ 'Add Selected' | translate }}"
29
17
  msgstr ""
30
18
 
31
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
32
- msgid "{{ componentContentView.repositories.length || 0 }} Repositories"
33
- msgstr ""
34
-
35
19
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
36
20
  msgid "{{ contentCredential.name }}"
37
21
  msgstr ""
38
22
 
39
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
40
- msgid "{{ contentView.name }}"
41
- msgstr ""
42
-
43
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
44
- msgid ""
45
- "{{ contentView.name }} cannot be deleted as one or more Content View Versions are still promoted to a Lifecycle Environment.\n"
46
- " Each Content View Version must be removed from their Lifecycle Environments before the Content View can be deleted."
47
- msgstr ""
48
-
49
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
50
- msgid "{{ contentViewComponent.content_view_version.repositories.length || 0 }} Repositories"
51
- msgstr ""
52
-
53
23
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
54
24
  msgid "{{ deb.hosts_applicable_count }} Host(s)"
55
25
  msgstr ""
@@ -82,10 +52,6 @@ msgstr ""
82
52
  msgid "{{ file.name }}"
83
53
  msgstr ""
84
54
 
85
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
86
- msgid "{{ filter.inclusion | filterType }} Tag"
87
- msgstr ""
88
-
89
55
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
90
56
  msgid "{{ host.name }}"
91
57
  msgstr ""
@@ -134,44 +100,22 @@ msgstr ""
134
100
  msgid "{{ repository.content_counts.ansible_collection || 0 }} Ansible Collections"
135
101
  msgstr ""
136
102
 
137
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html
138
- msgid "{{ repository.content_counts.deb }} deb Packages"
139
- msgstr ""
140
-
141
103
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
142
104
  msgid "{{ repository.content_counts.deb || 0 }} deb Packages"
143
105
  msgstr ""
144
106
 
145
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
146
- msgid "{{ repository.content_counts.docker_manifest }} Container Image Manifests"
147
- msgstr ""
148
-
149
107
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
150
108
  msgid "{{ repository.content_counts.docker_manifest || 0 }} Container Image Manifests"
151
109
  msgstr ""
152
110
 
153
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
154
- msgid "{{ repository.content_counts.docker_manifest_list }} Container Image Manifest Lists"
155
- msgstr ""
156
-
157
111
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
158
112
  msgid "{{ repository.content_counts.docker_manifest_list || 0 }} Container Image Manifest Lists"
159
113
  msgstr ""
160
114
 
161
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
162
- msgid "{{ repository.content_counts.docker_tag }} Container Image Tags"
163
- msgstr ""
164
-
165
115
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
166
116
  msgid "{{ repository.content_counts.docker_tag || 0 }} Container Image Tags"
167
117
  msgstr ""
168
118
 
169
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
170
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
171
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
172
- msgid "{{ repository.content_counts.erratum }} Errata"
173
- msgstr ""
174
-
175
119
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
176
120
  msgid "{{ repository.content_counts.erratum || 0 }} Errata"
177
121
  msgstr ""
@@ -180,21 +124,10 @@ msgstr ""
180
124
  msgid "{{ repository.content_counts.file || 0 }} Files"
181
125
  msgstr ""
182
126
 
183
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
184
- msgid "{{ repository.content_counts.module_stream || 0 }} Module Streams"
185
- msgstr ""
186
-
187
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
188
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
189
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
190
- msgid "{{ repository.content_counts.rpm }} Packages"
191
- msgstr ""
192
-
193
127
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
194
128
  msgid "{{ repository.content_counts.rpm || 0 }} Packages"
195
129
  msgstr ""
196
130
 
197
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
198
131
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
199
132
  msgid "{{ repository.content_counts.srpm }} Source RPMs"
200
133
  msgstr ""
@@ -211,58 +144,10 @@ msgstr ""
211
144
  msgid "{{ repository.name }}"
212
145
  msgstr ""
213
146
 
214
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
215
- msgid "{{ totalActivationKeyCount() }} Activation Keys will be moved to {{ deleteOptions.activationKeys.contentView.name }} in {{ deleteOptions.activationKeys.environment.name }}"
216
- msgstr ""
217
-
218
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
219
- msgid "{{ totalHostCount() }} Content Hosts will be moved to {{ deleteOptions.contentHosts.contentView.name }} in {{ deleteOptions.contentHosts.environment.name }}"
220
- msgstr ""
221
-
222
147
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment.html
223
148
  msgid "{{ type.display }}"
224
149
  msgstr ""
225
150
 
226
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
227
- msgid "{{ version.deb_count }} deb Packages"
228
- msgstr ""
229
-
230
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
231
- msgid "{{ version.docker_manifest_count }} Container Image Manifests"
232
- msgstr ""
233
-
234
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
235
- msgid "{{ version.docker_manifest_list_count }} Container Image Manifest Lists"
236
- msgstr ""
237
-
238
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
239
- msgid "{{ version.docker_tag_count }} Container Image Tags"
240
- msgstr ""
241
-
242
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
243
- msgid "{{ version.errata_counts.total }} Errata"
244
- msgstr ""
245
-
246
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
247
- msgid "{{ version.file_count }} Files"
248
- msgstr ""
249
-
250
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
251
- msgid "{{ version.module_stream_count }} Module Streams"
252
- msgstr ""
253
-
254
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
255
- msgid "{{ version.package_count }} Packages"
256
- msgstr ""
257
-
258
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
259
- msgid "{{ version.srpm_count }} Source RPMs"
260
- msgstr ""
261
-
262
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
263
- msgid "{{contentView.errors['messages'][0]}}"
264
- msgstr ""
265
-
266
151
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-generic-content.html
267
152
  msgid "{{header}}"
268
153
  msgstr ""
@@ -301,10 +186,6 @@ msgstr ""
301
186
  msgid "<a href=\"/foreman_tasks/tasks/{{repository.last_sync.id}}\">{{ repository.last_sync.result | capitalize}}</a>"
302
187
  msgstr ""
303
188
 
304
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
305
- msgid "<a ui-sref=\"content-view.version.details({versionId: version.id})\">Version {{ version.version }}</a>"
306
- msgstr ""
307
-
308
189
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
309
190
  msgid "<b>Additive:</b> new content available during sync will be added to the repository, and no content will be removed."
310
191
  msgstr ""
@@ -353,27 +234,12 @@ msgstr ""
353
234
  msgid "<b>Updated</b>"
354
235
  msgstr ""
355
236
 
356
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
357
- msgid ""
358
- "<i class=\"fa fa-star\"></i>\n"
359
- " Starred environments are suggested for promotion."
360
- msgstr ""
361
-
362
237
  #: app/assets/javascripts/bastion_katello/common/views/registration.html
363
238
  msgid ""
364
239
  "<i class=\"fa fa-warning inline-icon\"></i>\n"
365
240
  " This Host is not currently registered with subscription-manager. Use the <a href=\"/hosts/register\">Register Host</a> workflow to complete registration."
366
241
  msgstr ""
367
242
 
368
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
369
- msgid ""
370
- "<span translate=\"\">\n"
371
- " If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click\n"
372
- " </span>\n"
373
- " <a ui-sref=\"activation-keys\" translate=\"\">here</a>\n"
374
- " <span translate=\"\">to manage them individually.</span>"
375
- msgstr ""
376
-
377
243
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
378
244
  msgid "1 Content Host"
379
245
  msgid_plural "{{ host.subscription_facet_attributes.virtual_guests.length }} Content Hosts"
@@ -406,20 +272,6 @@ msgstr ""
406
272
  msgid "A comma-separated list of container image tags to include when syncing."
407
273
  msgstr ""
408
274
 
409
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
410
- msgid "A composite view contains other content views."
411
- msgstr ""
412
-
413
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
414
- msgid ""
415
- "A new version of {{ contentView.name }} will be created and promoted to the Library environment.\n"
416
- " It can be promoted to other environments from the Versions tab of this Content View."
417
- msgstr ""
418
-
419
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
420
- msgid "A newer version is available: {{ contentViewComponent.content_view.latest_version }}"
421
- msgstr ""
422
-
423
275
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
424
276
  msgid "A sync has been initiated in the background, <a href=\"/foreman_tasks/tasks/{{ task.id }}\">click for more details</a>"
425
277
  msgstr ""
@@ -429,10 +281,6 @@ msgstr ""
429
281
  msgid "Account"
430
282
  msgstr ""
431
283
 
432
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
433
- msgid "Action"
434
- msgstr ""
435
-
436
284
  #: app/assets/javascripts/bastion_katello/tasks/views/task-details.html
437
285
  msgid "Action Type"
438
286
  msgstr ""
@@ -440,8 +288,6 @@ msgstr ""
440
288
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
441
289
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html
442
290
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
443
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
444
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
445
291
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
446
292
  msgid "Actions"
447
293
  msgstr ""
@@ -469,14 +315,9 @@ msgid "Activation Key:"
469
315
  msgstr ""
470
316
 
471
317
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
472
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
473
318
  msgid "Activation Keys"
474
319
  msgstr ""
475
320
 
476
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
477
- msgid "Activation Keys using Version {{ version.version }}"
478
- msgstr ""
479
-
480
321
  #: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
481
322
  msgid "Active Tasks"
482
323
  msgstr ""
@@ -485,15 +326,6 @@ msgstr ""
485
326
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
486
327
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections.html
487
328
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
488
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html
489
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
490
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html
491
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
492
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
493
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
494
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
495
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
496
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
497
329
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts.html
498
330
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
499
331
  msgid "Add"
@@ -503,38 +335,14 @@ msgstr ""
503
335
  msgid "Add Content Hosts to:"
504
336
  msgstr ""
505
337
 
506
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
507
- msgid "Add Content Views"
508
- msgstr ""
509
-
510
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
511
- msgid "Add Content Views to {{ contentView.name }}"
512
- msgstr ""
513
-
514
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
515
- msgid "Add Errata"
516
- msgstr ""
517
-
518
338
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
519
339
  msgid "Add hosts to the host collection to see available actions."
520
340
  msgstr ""
521
341
 
522
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
523
- msgid "Add Module Stream"
524
- msgstr ""
525
-
526
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
527
- msgid "Add New Container Image Tag Filter"
528
- msgstr ""
529
-
530
342
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
531
343
  msgid "Add New Environment"
532
344
  msgstr ""
533
345
 
534
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
535
- msgid "Add New Yum Filter"
536
- msgstr ""
537
-
538
346
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
539
347
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
540
348
  msgid "Add ons"
@@ -544,23 +352,6 @@ msgstr ""
544
352
  msgid "Add ons:"
545
353
  msgstr ""
546
354
 
547
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
548
- msgid "Add Package Group"
549
- msgstr ""
550
-
551
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
552
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
553
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
554
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
555
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
556
- msgid "Add Repositories"
557
- msgstr ""
558
-
559
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
560
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
561
- msgid "Add Rule"
562
- msgstr ""
563
-
564
355
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html
565
356
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
566
357
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
@@ -571,14 +362,6 @@ msgstr ""
571
362
  msgid "Add Selected"
572
363
  msgstr ""
573
364
 
574
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
575
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
576
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
577
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
578
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
579
- msgid "add some repositories."
580
- msgstr ""
581
-
582
365
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-add-subscriptions.html
583
366
  msgid "Add Subscriptions for Activation Key:"
584
367
  msgstr ""
@@ -621,28 +404,10 @@ msgstr ""
621
404
  msgid "Advisory"
622
405
  msgstr ""
623
406
 
624
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
625
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
626
- msgid "Affected Activation Keys"
627
- msgstr ""
628
-
629
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
630
- msgid "Affected Content Hosts"
631
- msgstr ""
632
-
633
407
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
634
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
635
408
  msgid "Affected Hosts"
636
409
  msgstr ""
637
410
 
638
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/partials/filter-repositories-count.html
639
- msgid "Affected Repositories"
640
- msgstr ""
641
-
642
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js
643
- msgid "Affected repositories have been updated."
644
- msgstr ""
645
-
646
411
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
647
412
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
648
413
  msgid "All Content Views"
@@ -653,27 +418,19 @@ msgstr ""
653
418
  msgid "All Lifecycle Environments"
654
419
  msgstr ""
655
420
 
656
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-repositories.service.js
657
- msgid "All Products"
658
- msgstr ""
659
-
660
- #: app/assets/javascripts/bastion_katello/content-views/versions/content-view-version-content.controller.js
661
421
  #: app/assets/javascripts/bastion_katello/environments/details/environment-content.controller.js
662
422
  #: app/assets/javascripts/bastion_katello/errata/errata.controller.js
663
423
  #: app/assets/javascripts/bastion_katello/packages/packages.controller.js
664
424
  msgid "All Repositories"
665
425
  msgstr ""
666
426
 
667
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
668
- msgid "All Versions"
669
- msgstr ""
670
-
671
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
672
- msgid "Always Use Latest (Currently %s)"
427
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
428
+ #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
429
+ msgid "Alternate Content Sources"
673
430
  msgstr ""
674
431
 
675
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
676
- msgid "Always Use Latest (Currently no versions)"
432
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
433
+ msgid "Alternate Content Sources for"
677
434
  msgstr ""
678
435
 
679
436
  #: app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js
@@ -717,11 +474,6 @@ msgstr ""
717
474
  msgid "An error occurred saving the Environment:"
718
475
  msgstr ""
719
476
 
720
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
721
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
722
- msgid "An error occurred saving the Filter:"
723
- msgstr ""
724
-
725
477
  #: app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js
726
478
  msgid "An error occurred saving the Host Collection:"
727
479
  msgstr ""
@@ -742,10 +494,6 @@ msgstr ""
742
494
  msgid "An error occurred trying to auto-attach subscriptions. Please check your log for further information."
743
495
  msgstr ""
744
496
 
745
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
746
- msgid "An error occurred updating the Content View:"
747
- msgstr ""
748
-
749
497
  #: app/assets/javascripts/bastion_katello/products/bulk/products-bulk-sync-plan-modal.controller.js
750
498
  msgid "An error occurred updating the sync plan:"
751
499
  msgstr ""
@@ -778,7 +526,6 @@ msgstr ""
778
526
  msgid "Applicable"
779
527
  msgstr ""
780
528
 
781
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
782
529
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
783
530
  msgid "Applicable Content Hosts"
784
531
  msgstr ""
@@ -791,11 +538,6 @@ msgstr ""
791
538
  msgid "Applicable Errata"
792
539
  msgstr ""
793
540
 
794
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
795
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
796
- msgid "Applicable only for composite views. Auto publish composite view when a new version of a component content view is created. Also note auto publish will only happen when the component is marked \"latest\"."
797
- msgstr ""
798
-
799
541
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html
800
542
  msgid "Applicable Packages"
801
543
  msgstr ""
@@ -876,13 +618,6 @@ msgstr ""
876
618
  msgid "Apt Actions"
877
619
  msgstr ""
878
620
 
879
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
880
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
881
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
882
- msgid "Apt Repositories"
883
- msgstr ""
884
-
885
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
886
621
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html
887
622
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
888
623
  #: app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html
@@ -892,8 +627,6 @@ msgstr ""
892
627
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-applicable.html
893
628
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-installed.html
894
629
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
895
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
896
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html
897
630
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
898
631
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
899
632
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html
@@ -907,10 +640,6 @@ msgstr ""
907
640
  msgid "Architectures"
908
641
  msgstr ""
909
642
 
910
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
911
- msgid "Archived Copy"
912
- msgstr ""
913
-
914
643
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
915
644
  msgid "Are you sure you want to add the {{ table.numSelected }} content host(s) selected to the host collection(s) chosen?"
916
645
  msgstr ""
@@ -959,10 +688,6 @@ msgstr ""
959
688
  msgid "Are you sure you want to remove Content Credential {{ contentCredential.name }}?"
960
689
  msgstr ""
961
690
 
962
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
963
- msgid "Are you sure you want to remove Content View \"{{ contentView.name }}\"?"
964
- msgstr ""
965
-
966
691
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment.html
967
692
  msgid "Are you sure you want to remove environment {{ environment.name }}?"
968
693
  msgstr ""
@@ -1056,12 +781,6 @@ msgstr ""
1056
781
  msgid "Are you sure you want to update all packages on the {{ getSelectedSystemIds().length }} system(s) selected?"
1057
782
  msgstr ""
1058
783
 
1059
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
1060
- msgid "As part of this deletion, 1 Content View Version will be deleted."
1061
- msgid_plural " As part of this deletion, {{ versions.length }} Content View Versions will be deleted."
1062
- msgstr[0] ""
1063
- msgstr[1] ""
1064
-
1065
784
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1066
785
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
1067
786
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
@@ -1107,11 +826,6 @@ msgstr ""
1107
826
  msgid "Author"
1108
827
  msgstr ""
1109
828
 
1110
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1111
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1112
- msgid "Auto Publish"
1113
- msgstr ""
1114
-
1115
829
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
1116
830
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
1117
831
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
@@ -1127,10 +841,6 @@ msgstr ""
1127
841
  msgid "Automatic"
1128
842
  msgstr ""
1129
843
 
1130
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
1131
- msgid "Available Content Views for Composite Content View:"
1132
- msgstr ""
1133
-
1134
844
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
1135
845
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html
1136
846
  msgid "Available Module Streams"
@@ -1141,12 +851,6 @@ msgstr ""
1141
851
  msgid "Available Schema Versions"
1142
852
  msgstr ""
1143
853
 
1144
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
1145
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1146
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1147
- msgid "Back"
1148
- msgstr ""
1149
-
1150
854
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
1151
855
  msgid "Back To Errata List"
1152
856
  msgstr ""
@@ -1177,10 +881,6 @@ msgstr ""
1177
881
  msgid "Below are the Repository Sets currently available for this activation key through its subscriptions. For Red Hat subscriptions, additional content can be made available through the"
1178
882
  msgstr ""
1179
883
 
1180
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
1181
- msgid "Between versions {{ rule.min_version }} and {{ rule.max_version }}"
1182
- msgstr ""
1183
-
1184
884
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1185
885
  msgid "BIOS UUID"
1186
886
  msgstr ""
@@ -1191,7 +891,6 @@ msgstr ""
1191
891
 
1192
892
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
1193
893
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1194
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
1195
894
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
1196
895
  #: app/assets/javascripts/bastion_katello/errata/views/errata-counts.html
1197
896
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -1202,10 +901,6 @@ msgstr ""
1202
901
  msgid "Bug Fix Advisory"
1203
902
  msgstr ""
1204
903
 
1205
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
1206
- msgid "Bugfix"
1207
- msgstr ""
1208
-
1209
904
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
1210
905
  msgid "Build Host"
1211
906
  msgstr ""
@@ -1221,12 +916,6 @@ msgstr ""
1221
916
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
1222
917
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html
1223
918
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
1224
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
1225
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
1226
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1227
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1228
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
1229
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
1230
919
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
1231
920
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-select-content-hosts.html
1232
921
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync.html
@@ -1321,10 +1010,6 @@ msgstr ""
1321
1010
  msgid "Checksum Type"
1322
1011
  msgstr ""
1323
1012
 
1324
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
1325
- msgid "Choose a lifecycle environment from the available promotion paths."
1326
- msgstr ""
1327
-
1328
1013
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
1329
1014
  msgid "Choose one of the registry options to discover containers. To examine a private registry choose \"Custom\" and provide the url for the private registry."
1330
1015
  msgstr ""
@@ -1347,7 +1032,6 @@ msgstr ""
1347
1032
  msgid "Click to view task"
1348
1033
  msgstr ""
1349
1034
 
1350
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
1351
1035
  #: app/assets/javascripts/bastion_katello/errata/views/errata-task-details.html
1352
1036
  msgid "Close"
1353
1037
  msgstr ""
@@ -1372,11 +1056,6 @@ msgstr ""
1372
1056
  msgid "Completely deletes the host including VM and disks, and removes all reporting, provisioning, and configuration information."
1373
1057
  msgstr ""
1374
1058
 
1375
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
1376
- msgid "Completely remove version?"
1377
- msgstr ""
1378
-
1379
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
1380
1059
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
1381
1060
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
1382
1061
  msgid "Components"
@@ -1386,35 +1065,18 @@ msgstr ""
1386
1065
  msgid "Components:"
1387
1066
  msgstr ""
1388
1067
 
1389
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1390
- msgid "Composite"
1391
- msgstr ""
1392
-
1393
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1394
1068
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
1395
1069
  msgid "Composite View"
1396
1070
  msgstr ""
1397
1071
 
1398
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
1399
- msgid "Composite View?"
1400
- msgstr ""
1401
-
1402
1072
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html
1403
1073
  msgid "Confirm"
1404
1074
  msgstr ""
1405
1075
 
1406
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1407
- msgid "Confirm Remove"
1408
- msgstr ""
1409
-
1410
1076
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html
1411
1077
  msgid "Confirm services restart"
1412
1078
  msgstr ""
1413
1079
 
1414
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1415
- msgid "Confirm Version Removal: Version {{ version.version }}"
1416
- msgstr ""
1417
-
1418
1080
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
1419
1081
  msgid "Container Image Manifest"
1420
1082
  msgstr ""
@@ -1434,42 +1096,17 @@ msgid ""
1434
1096
  " <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
1435
1097
  msgstr ""
1436
1098
 
1437
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
1438
- msgid "Container Image Name"
1439
- msgstr ""
1440
-
1441
1099
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
1442
1100
  msgid "Container Image Registry"
1443
1101
  msgstr ""
1444
1102
 
1445
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
1446
- msgid "Container Image Tag"
1447
- msgstr ""
1448
-
1449
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html
1450
- msgid "Container Image Tag Filter:"
1451
- msgstr ""
1452
-
1453
1103
  #: app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
1454
1104
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
1455
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
1456
1105
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
1457
1106
  msgid "Container Image Tags"
1458
1107
  msgstr ""
1459
1108
 
1460
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1461
- msgid "Container Images"
1462
- msgstr ""
1463
-
1464
1109
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
1465
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
1466
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
1467
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
1468
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
1469
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
1470
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
1471
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html
1472
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
1473
1110
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
1474
1111
  msgid "Content"
1475
1112
  msgstr ""
@@ -1545,7 +1182,6 @@ msgstr ""
1545
1182
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
1546
1183
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
1547
1184
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
1548
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
1549
1185
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
1550
1186
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum.html
1551
1187
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
@@ -1562,10 +1198,6 @@ msgstr ""
1562
1198
  msgid "Content Hosts for:"
1563
1199
  msgstr ""
1564
1200
 
1565
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1566
- msgid "Content Hosts using Version {{ version.version }}"
1567
- msgstr ""
1568
-
1569
1201
  #: app/assets/javascripts/bastion_katello/products/details/repositories/mirroring-policy.service.js
1570
1202
  msgid "Content Only"
1571
1203
  msgstr ""
@@ -1576,8 +1208,6 @@ msgid ""
1576
1208
  " </a>"
1577
1209
  msgstr ""
1578
1210
 
1579
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
1580
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
1581
1211
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
1582
1212
  msgid "Content Type"
1583
1213
  msgstr ""
@@ -1601,31 +1231,14 @@ msgstr ""
1601
1231
  msgid "Content View"
1602
1232
  msgstr ""
1603
1233
 
1604
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html
1605
- msgid "Content View Name"
1606
- msgstr ""
1607
-
1608
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js
1609
- msgid "Content View updated."
1610
- msgstr ""
1611
-
1612
1234
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
1613
1235
  msgid "Content View Version"
1614
1236
  msgstr ""
1615
1237
 
1616
- #: app/assets/javascripts/bastion_katello/content-views/versions/content-view-version.controller.js
1617
- msgid "Content View version updated"
1618
- msgstr ""
1619
-
1620
1238
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
1621
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
1622
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
1623
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1624
1239
  msgid "Content View:"
1625
1240
  msgstr ""
1626
1241
 
1627
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1628
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
1629
1242
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb.html
1630
1243
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
1631
1244
  #: app/assets/javascripts/bastion_katello/files/details/views/file.html
@@ -1637,14 +1250,6 @@ msgstr ""
1637
1250
  msgid "Content Views <div>{{ library.counts.content_views || 0 }}</div>"
1638
1251
  msgstr ""
1639
1252
 
1640
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
1641
- msgid "Content Views for {{ contentView.name }}"
1642
- msgstr ""
1643
-
1644
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
1645
- msgid "Content Views for Composite Content View:"
1646
- msgstr ""
1647
-
1648
1253
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
1649
1254
  msgid "Content Views for Deb:"
1650
1255
  msgstr ""
@@ -1661,7 +1266,6 @@ msgstr ""
1661
1266
  msgid "Content Views that contain this File"
1662
1267
  msgstr ""
1663
1268
 
1664
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
1665
1269
  #: app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html
1666
1270
  msgid "Context"
1667
1271
  msgstr ""
@@ -1675,14 +1279,6 @@ msgstr ""
1675
1279
  msgid "Copy Activation Key"
1676
1280
  msgstr ""
1677
1281
 
1678
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1679
- msgid "Copy Content View"
1680
- msgstr ""
1681
-
1682
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
1683
- msgid "Copy Content View:"
1684
- msgstr ""
1685
-
1686
1282
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-details.html
1687
1283
  msgid "Copy Host Collection"
1688
1284
  msgstr ""
@@ -1692,7 +1288,6 @@ msgid "Cores per Socket"
1692
1288
  msgstr ""
1693
1289
 
1694
1290
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-copy.html
1695
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
1696
1291
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-copy.html
1697
1292
  msgid "Create"
1698
1293
  msgstr ""
@@ -1701,19 +1296,10 @@ msgstr ""
1701
1296
  msgid "Create a copy of {{ activationKey.name }}"
1702
1297
  msgstr ""
1703
1298
 
1704
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
1705
- msgid "Create a copy of {{ contentView.name }}"
1706
- msgstr ""
1707
-
1708
1299
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-copy.html
1709
1300
  msgid "Create a copy of {{ hostCollection.name }}"
1710
1301
  msgstr ""
1711
1302
 
1712
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
1713
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
1714
- msgid "Create a rule using the add button above."
1715
- msgstr ""
1716
-
1717
1303
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
1718
1304
  msgid "Create Activation Key"
1719
1305
  msgstr ""
@@ -1723,10 +1309,6 @@ msgstr ""
1723
1309
  msgid "Create Content Credential"
1724
1310
  msgstr ""
1725
1311
 
1726
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1727
- msgid "Create Content View"
1728
- msgstr ""
1729
-
1730
1312
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
1731
1313
  msgid "Create Discovered Repositories"
1732
1314
  msgstr ""
@@ -1740,14 +1322,6 @@ msgstr ""
1740
1322
  msgid "Create Host Collection"
1741
1323
  msgstr ""
1742
1324
 
1743
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1744
- msgid "Create new view"
1745
- msgstr ""
1746
-
1747
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
1748
- msgid "Create New View"
1749
- msgstr ""
1750
-
1751
1325
  #: app/assets/javascripts/bastion_katello/products/new/views/product-new.html
1752
1326
  #: app/assets/javascripts/bastion_katello/products/views/products.html
1753
1327
  msgid "Create Product"
@@ -1767,10 +1341,6 @@ msgstr ""
1767
1341
  msgid "Create Sync Plan"
1768
1342
  msgstr ""
1769
1343
 
1770
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1771
- msgid "Create view from existing views"
1772
- msgstr ""
1773
-
1774
1344
  #: app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js
1775
1345
  msgid "Creating repository..."
1776
1346
  msgstr ""
@@ -1826,16 +1396,11 @@ msgstr ""
1826
1396
  msgid "Daily at {{ product.sync_plan.sync_date | date:'mediumTime' }} (Server Time)"
1827
1397
  msgstr ""
1828
1398
 
1829
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
1830
1399
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
1831
1400
  #: app/assets/javascripts/bastion_katello/tasks/views/user-tasks-table.html
1832
1401
  msgid "Date"
1833
1402
  msgstr ""
1834
1403
 
1835
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
1836
- msgid "Date Type"
1837
- msgstr ""
1838
-
1839
1404
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-debs.html
1840
1405
  msgid "deb metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
1841
1406
  msgstr ""
@@ -1849,7 +1414,6 @@ msgid "deb Packages"
1849
1414
  msgstr ""
1850
1415
 
1851
1416
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
1852
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
1853
1417
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
1854
1418
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
1855
1419
  msgid "Deb Packages"
@@ -1892,26 +1456,6 @@ msgstr ""
1892
1456
  msgid "Delete Hosts"
1893
1457
  msgstr ""
1894
1458
 
1895
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
1896
- msgid "Delete Version {{ version.version }}"
1897
- msgstr ""
1898
-
1899
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
1900
- msgid "Deleted from %s"
1901
- msgstr ""
1902
-
1903
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
1904
- msgid "Deleting from %count environments."
1905
- msgstr ""
1906
-
1907
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
1908
- msgid "Deleting from 1 environment."
1909
- msgstr ""
1910
-
1911
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
1912
- msgid "Deletion from %s"
1913
- msgstr ""
1914
-
1915
1459
  #: app/assets/javascripts/bastion_katello/products/details/repositories/yum-content-units.service.js
1916
1460
  msgid "Delta RPM"
1917
1461
  msgstr ""
@@ -1926,19 +1470,6 @@ msgstr ""
1926
1470
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
1927
1471
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections-table.html
1928
1472
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1929
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
1930
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
1931
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html
1932
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
1933
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
1934
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
1935
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
1936
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1937
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
1938
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
1939
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
1940
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1941
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html
1942
1473
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
1943
1474
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
1944
1475
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
@@ -1958,22 +1489,11 @@ msgstr ""
1958
1489
  msgid "Description"
1959
1490
  msgstr ""
1960
1491
 
1961
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
1962
- msgid "Designate whether this Content View is for importing from an upstream server. Import-only Content Views can not be published directly."
1963
- msgstr ""
1964
-
1965
1492
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
1966
1493
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
1967
1494
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
1968
1495
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
1969
1496
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
1970
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html
1971
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
1972
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html
1973
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html
1974
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
1975
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
1976
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
1977
1497
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb.html
1978
1498
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html
1979
1499
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment.html
@@ -1987,10 +1507,6 @@ msgstr ""
1987
1507
  msgid "Details"
1988
1508
  msgstr ""
1989
1509
 
1990
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
1991
- msgid "Details for {{ contentView.name }}"
1992
- msgstr ""
1993
-
1994
1510
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
1995
1511
  msgid "Details for Activation Key:"
1996
1512
  msgstr ""
@@ -1999,10 +1515,6 @@ msgstr ""
1999
1515
  msgid "Details for Container Image Tag:"
2000
1516
  msgstr ""
2001
1517
 
2002
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
2003
- msgid "Details for Content View:"
2004
- msgstr ""
2005
-
2006
1518
  #: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
2007
1519
  msgid "Details for Product:"
2008
1520
  msgstr ""
@@ -2064,18 +1576,10 @@ msgid ""
2064
1576
  " <a ng-href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
2065
1577
  msgstr ""
2066
1578
 
2067
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
2068
- msgid "Docker Repositories"
2069
- msgstr ""
2070
-
2071
1579
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
2072
1580
  msgid "Docker Repositories <div>{{ library.counts.docker_repositories || 0 }}</div>"
2073
1581
  msgstr ""
2074
1582
 
2075
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
2076
- msgid "Docker Repository Selection"
2077
- msgstr ""
2078
-
2079
1583
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
2080
1584
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
2081
1585
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
@@ -2092,15 +1596,6 @@ msgstr ""
2092
1596
  msgid "Download Policy"
2093
1597
  msgstr ""
2094
1598
 
2095
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
2096
- msgid "Duplicate repositories between the selected Content View Versions will merge, resulting in a Composite Content View with all packages that exist among the duplicates."
2097
- msgstr ""
2098
-
2099
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
2100
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2101
- msgid "Edit"
2102
- msgstr ""
2103
-
2104
1599
  #: app/assets/javascripts/bastion_katello/common/module-stream-actions.service.js
2105
1600
  msgid "Enable"
2106
1601
  msgstr ""
@@ -2119,14 +1614,8 @@ msgstr ""
2119
1614
  msgid "Enabled (overridden)"
2120
1615
  msgstr ""
2121
1616
 
2122
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
2123
- msgid "End Date"
2124
- msgstr ""
2125
-
2126
1617
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
2127
1618
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2128
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
2129
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
2130
1619
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
2131
1620
  #: app/assets/javascripts/bastion_katello/errata/views/errata-counts.html
2132
1621
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -2145,8 +1634,6 @@ msgstr ""
2145
1634
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
2146
1635
  #: app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
2147
1636
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
2148
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
2149
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
2150
1637
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
2151
1638
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
2152
1639
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
@@ -2165,26 +1652,13 @@ msgstr ""
2165
1652
  msgid "Environment will also be removed from the following published content views!"
2166
1653
  msgstr ""
2167
1654
 
2168
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
2169
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
2170
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-details.html
2171
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
2172
- msgid "Environments"
2173
- msgstr ""
2174
-
2175
1655
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
2176
1656
  msgid "Environments List"
2177
1657
  msgstr ""
2178
1658
 
2179
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2180
- msgid "Equal To"
2181
- msgstr ""
2182
-
2183
1659
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
2184
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
2185
1660
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
2186
1661
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2187
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
2188
1662
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
2189
1663
  #: app/assets/javascripts/bastion_katello/products/details/repositories/yum-content-units.service.js
2190
1664
  msgid "Errata"
@@ -2203,16 +1677,10 @@ msgstr ""
2203
1677
  msgid "Errata Details"
2204
1678
  msgstr ""
2205
1679
 
2206
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
2207
- msgid "Errata Filter:"
2208
- msgstr ""
2209
-
2210
1680
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
2211
1681
  msgid "Errata for:"
2212
1682
  msgstr ""
2213
1683
 
2214
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
2215
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
2216
1684
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
2217
1685
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
2218
1686
  msgid "Errata ID"
@@ -2222,14 +1690,6 @@ msgstr ""
2222
1690
  msgid "Errata Installation"
2223
1691
  msgstr ""
2224
1692
 
2225
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/available-errata-filter.controller.js
2226
- msgid "Errata successfully added."
2227
- msgstr ""
2228
-
2229
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/errata-filter-list.controller.js
2230
- msgid "Errata successfully removed."
2231
- msgstr ""
2232
-
2233
1693
  #: app/assets/javascripts/bastion_katello/errata/views/errata-tasks-list.html
2234
1694
  msgid "Errata Task List"
2235
1695
  msgstr ""
@@ -2238,28 +1698,11 @@ msgstr ""
2238
1698
  msgid "Errata Tasks"
2239
1699
  msgstr ""
2240
1700
 
2241
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
2242
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
2243
- msgid "Errata Type"
2244
- msgstr ""
2245
-
2246
1701
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
2247
1702
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum.html
2248
1703
  msgid "Errata:"
2249
1704
  msgstr ""
2250
1705
 
2251
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
2252
- msgid "Erratum - by ID"
2253
- msgstr ""
2254
-
2255
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
2256
- msgid "Erratum - Date and Type"
2257
- msgstr ""
2258
-
2259
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
2260
- msgid "Erratum Date Range"
2261
- msgstr ""
2262
-
2263
1706
  #: app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details-info.controller.js
2264
1707
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js
2265
1708
  msgid "Error during upload:"
@@ -2274,19 +1717,6 @@ msgstr ""
2274
1717
  msgid "Event"
2275
1718
  msgstr ""
2276
1719
 
2277
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
2278
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
2279
- msgid "Exclude"
2280
- msgstr ""
2281
-
2282
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2283
- msgid "Exclude all Module Streams with no errata."
2284
- msgstr ""
2285
-
2286
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2287
- msgid "Exclude all RPMs with no errata."
2288
- msgstr ""
2289
-
2290
1720
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2291
1721
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2292
1722
  msgid "Exclude Tags"
@@ -2305,10 +1735,6 @@ msgstr ""
2305
1735
  msgid "Export"
2306
1736
  msgstr ""
2307
1737
 
2308
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
2309
- msgid "Exported content view"
2310
- msgstr ""
2311
-
2312
1738
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2313
1739
  msgid "Family"
2314
1740
  msgstr ""
@@ -2322,12 +1748,6 @@ msgstr ""
2322
1748
  msgid "File removal been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
2323
1749
  msgstr ""
2324
1750
 
2325
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
2326
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
2327
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
2328
- msgid "File Repositories"
2329
- msgstr ""
2330
-
2331
1751
  #: app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-details-info.controller.js
2332
1752
  msgid "File too large."
2333
1753
  msgstr ""
@@ -2357,9 +1777,6 @@ msgid "Files in package {{ package.nvrea }}"
2357
1777
  msgstr ""
2358
1778
 
2359
1779
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
2360
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
2361
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
2362
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2363
1780
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
2364
1781
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
2365
1782
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
@@ -2371,47 +1788,12 @@ msgstr ""
2371
1788
  msgid "Filter by Status:"
2372
1789
  msgstr ""
2373
1790
 
2374
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html
2375
- msgid "Filter information for:"
2376
- msgstr ""
2377
-
2378
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js
2379
- msgid "Filter rule successfully removed."
2380
- msgstr ""
2381
-
2382
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js
2383
- msgid "Filter rule successfully updated."
2384
- msgstr ""
2385
-
2386
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/edit-filter.controller.js
2387
- msgid "Filter Saved"
2388
- msgstr ""
2389
-
2390
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-details.controller.js
2391
- msgid "Filter Updated -"
2392
- msgstr ""
2393
-
2394
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
2395
- msgid "Filter:"
2396
- msgstr ""
2397
-
1791
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
2398
1792
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
2399
1793
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
2400
1794
  msgid "Filter..."
2401
1795
  msgstr ""
2402
1796
 
2403
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
2404
- msgid "Filters"
2405
- msgstr ""
2406
-
2407
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
2408
- msgid "Filters for Content View:"
2409
- msgstr ""
2410
-
2411
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filters.controller.js
2412
- msgid "Filters successfully removed."
2413
- msgstr ""
2414
-
2415
1797
  #: app/assets/javascripts/bastion_katello/tasks/views/task-details.html
2416
1798
  msgid "Finished At"
2417
1799
  msgstr ""
@@ -2427,10 +1809,6 @@ msgid ""
2427
1809
  " The Immediate option will download all metadata and packages immediately during the sync."
2428
1810
  msgstr ""
2429
1811
 
2430
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
2431
- msgid "Force Promote?"
2432
- msgstr ""
2433
-
2434
1812
  #: app/assets/javascripts/bastion_katello/products/details/repositories/http-proxy-service.js
2435
1813
  msgid "Global Default"
2436
1814
  msgstr ""
@@ -2449,14 +1827,6 @@ msgstr ""
2449
1827
  msgid "GPG Key"
2450
1828
  msgstr ""
2451
1829
 
2452
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2453
- msgid "Greater Than"
2454
- msgstr ""
2455
-
2456
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2457
- msgid "Greater than version {{ rule.min_version }}"
2458
- msgstr ""
2459
-
2460
1830
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
2461
1831
  msgid "Group"
2462
1832
  msgstr ""
@@ -2483,26 +1853,6 @@ msgstr ""
2483
1853
  msgid "Helper"
2484
1854
  msgstr ""
2485
1855
 
2486
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2487
- msgid "here"
2488
- msgstr ""
2489
-
2490
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2491
- msgid "Hide affected Activation Keys"
2492
- msgstr ""
2493
-
2494
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
2495
- msgid "Hide affected Content Hosts"
2496
- msgstr ""
2497
-
2498
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
2499
- msgid "History"
2500
- msgstr ""
2501
-
2502
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
2503
- msgid "History for Content View:"
2504
- msgstr ""
2505
-
2506
1856
  #: app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js
2507
1857
  msgid "Host %s has been deleted."
2508
1858
  msgstr ""
@@ -2600,18 +1950,6 @@ msgstr ""
2600
1950
  msgid "Id"
2601
1951
  msgstr ""
2602
1952
 
2603
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2604
- msgid "If you would prefer to move portions of these Activation Keys to different content views or Lifecycle Environments click"
2605
- msgstr ""
2606
-
2607
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2608
- msgid "If you would prefer to move portions of these Activation Keys to different Content Views or Lifecycle Environments click <a href=\"{{ activationKeyLink() }}\">here</a> to manage them individually."
2609
- msgstr ""
2610
-
2611
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
2612
- msgid "If you would prefer to move portions of these Content Hosts to different content views or environments click <a href=\"{{ contentHostsLink() }}\">here</a> to manage these Content Hosts in bulk."
2613
- msgstr ""
2614
-
2615
1953
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2616
1954
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2617
1955
  msgid "Ignore SRPMs"
@@ -2625,60 +1963,21 @@ msgstr ""
2625
1963
  msgid "Immediate"
2626
1964
  msgstr ""
2627
1965
 
2628
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
2629
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
2630
- msgid "Import-only"
2631
- msgstr ""
2632
-
2633
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
2634
- msgid "Import-only?"
2635
- msgstr ""
2636
-
2637
1966
  #: app/assets/javascripts/bastion_katello/errata/errata-severity.filter.js
2638
1967
  msgid "Important"
2639
1968
  msgstr ""
2640
1969
 
2641
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
2642
- msgid "In order to add a content view to a composite view you must first publish an initial version of the content view."
2643
- msgstr ""
2644
-
2645
1970
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2646
1971
  msgid ""
2647
1972
  "In order to browse this repository you must <a ng-href=\"/organizations/{{ organization }}/edit\">download the certificate</a>\n"
2648
1973
  " or ask your admin for a certificate."
2649
1974
  msgstr ""
2650
1975
 
2651
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
2652
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
2653
- msgid "Include"
2654
- msgstr ""
2655
-
2656
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
2657
- msgid "Include all Module Streams with no errata."
2658
- msgstr ""
2659
-
2660
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2661
- msgid "Include all RPMs with no errata."
2662
- msgstr ""
2663
-
2664
1976
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
2665
1977
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
2666
1978
  msgid "Include Tags"
2667
1979
  msgstr ""
2668
1980
 
2669
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
2670
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
2671
- msgid "Inclusion Type"
2672
- msgstr ""
2673
-
2674
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
2675
- msgid "Incremental update"
2676
- msgstr ""
2677
-
2678
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
2679
- msgid "Incremental Update"
2680
- msgstr ""
2681
-
2682
1981
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-packages.html
2683
1982
  msgid "Independent Packages"
2684
1983
  msgstr ""
@@ -2765,15 +2064,10 @@ msgstr ""
2765
2064
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
2766
2065
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
2767
2066
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
2768
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
2769
2067
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
2770
2068
  msgid "Issued"
2771
2069
  msgstr ""
2772
2070
 
2773
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
2774
- msgid "Issued On"
2775
- msgstr ""
2776
-
2777
2071
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2778
2072
  msgid "Katello Agent"
2779
2073
  msgstr ""
@@ -2786,8 +2080,6 @@ msgstr ""
2786
2080
  msgid "Katello-agent is deprecated and will be removed in a future release."
2787
2081
  msgstr ""
2788
2082
 
2789
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
2790
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
2791
2083
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
2792
2084
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
2793
2085
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
@@ -2803,7 +2095,6 @@ msgstr ""
2803
2095
  msgid "Last Checkin"
2804
2096
  msgstr ""
2805
2097
 
2806
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
2807
2098
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
2808
2099
  msgid "Last Published"
2809
2100
  msgstr ""
@@ -2816,11 +2107,6 @@ msgstr ""
2816
2107
  msgid "Last reclaim space failed:"
2817
2108
  msgstr ""
2818
2109
 
2819
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
2820
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
2821
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
2822
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
2823
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
2824
2110
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
2825
2111
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
2826
2112
  #: app/assets/javascripts/bastion_katello/files/details/views/file-repositories.html
@@ -2842,22 +2128,6 @@ msgstr ""
2842
2128
  msgid "Last Updated On"
2843
2129
  msgstr ""
2844
2130
 
2845
- #: app/assets/javascripts/bastion_katello/content-views/details/components/content-view-composite-content-views-list.controller.js
2846
- msgid "Latest (Currently %s)"
2847
- msgstr ""
2848
-
2849
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
2850
- msgid "Latest (Currently no version)"
2851
- msgstr ""
2852
-
2853
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2854
- msgid "Less Than"
2855
- msgstr ""
2856
-
2857
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
2858
- msgid "Less than version {{ rule.max_version }}"
2859
- msgstr ""
2860
-
2861
2131
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
2862
2132
  msgid "Library"
2863
2133
  msgstr ""
@@ -2885,7 +2155,6 @@ msgstr ""
2885
2155
 
2886
2156
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
2887
2157
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
2888
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
2889
2158
  msgid "Lifecycle Environment"
2890
2159
  msgstr ""
2891
2160
 
@@ -2898,8 +2167,6 @@ msgstr ""
2898
2167
  msgid "Lifecycle Environment:"
2899
2168
  msgstr ""
2900
2169
 
2901
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
2902
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
2903
2170
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-details.html
2904
2171
  msgid "Lifecycle Environments"
2905
2172
  msgstr ""
@@ -2945,24 +2212,11 @@ msgstr ""
2945
2212
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions.html
2946
2213
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections.html
2947
2214
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
2948
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite.html
2949
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter.html
2950
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html
2951
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
2952
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
2953
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
2954
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
2955
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
2956
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
2957
2215
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts.html
2958
2216
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
2959
2217
  msgid "List/Remove"
2960
2218
  msgstr ""
2961
2219
 
2962
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
2963
- msgid "Loading Environment Paths..."
2964
- msgstr ""
2965
-
2966
2220
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
2967
2221
  #: app/assets/javascripts/bastion_katello/environments/views/new-environment.html
2968
2222
  #: app/assets/javascripts/bastion_katello/content-hosts/content-host-status.controller.js
@@ -3045,18 +2299,6 @@ msgstr ""
3045
2299
  msgid "Manifest Type"
3046
2300
  msgstr ""
3047
2301
 
3048
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
3049
- msgid "Many Content View actions are disabled while a version task is in progress."
3050
- msgstr ""
3051
-
3052
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
3053
- msgid "Maximum Version"
3054
- msgstr ""
3055
-
3056
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
3057
- msgid "Minimum Version"
3058
- msgstr ""
3059
-
3060
2302
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3061
2303
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
3062
2304
  msgid "Mirroring Policy"
@@ -3070,20 +2312,10 @@ msgstr ""
3070
2312
  msgid "Moderate"
3071
2313
  msgstr ""
3072
2314
 
3073
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
3074
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
3075
2315
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
3076
2316
  msgid "Modular"
3077
2317
  msgstr ""
3078
2318
 
3079
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
3080
- msgid "Module Stream"
3081
- msgstr ""
3082
-
3083
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter.html
3084
- msgid "Module Stream Filter:"
3085
- msgstr ""
3086
-
3087
2319
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html
3088
2320
  msgid "Module Stream Management"
3089
2321
  msgstr ""
@@ -3098,19 +2330,9 @@ msgstr ""
3098
2330
  msgid "Module Stream Packages"
3099
2331
  msgstr ""
3100
2332
 
3101
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/available-module-stream-filter.controller.js
3102
- msgid "Module Stream successfully added."
3103
- msgstr ""
3104
-
3105
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/module-stream-list-filter.controller.js
3106
- msgid "Module Stream successfully removed."
3107
- msgstr ""
3108
-
3109
2333
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
3110
2334
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
3111
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
3112
2335
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3113
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
3114
2336
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
3115
2337
  msgid "Module Streams"
3116
2338
  msgstr ""
@@ -3127,12 +2349,6 @@ msgstr ""
3127
2349
  msgid "More Details"
3128
2350
  msgstr ""
3129
2351
 
3130
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
3131
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
3132
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
3133
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
3134
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3135
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
3136
2352
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
3137
2353
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
3138
2354
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
@@ -3148,6 +2364,7 @@ msgstr ""
3148
2364
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
3149
2365
  #: app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
3150
2366
  #: app/assets/javascripts/bastion_katello/activation-keys/views/activation-keys.html
2367
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
3151
2368
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
3152
2369
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
3153
2370
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
@@ -3160,32 +2377,6 @@ msgstr ""
3160
2377
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3161
2378
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-provisioning-info.html
3162
2379
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
3163
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3164
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3165
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3166
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
3167
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
3168
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/edit-filter.html
3169
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
3170
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
3171
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
3172
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
3173
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
3174
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
3175
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
3176
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
3177
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
3178
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3179
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
3180
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
3181
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html
3182
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html
3183
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
3184
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html
3185
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
3186
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
3187
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
3188
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
3189
2380
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
3190
2381
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
3191
2382
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
@@ -3264,16 +2455,7 @@ msgstr ""
3264
2455
  msgid "New Environment"
3265
2456
  msgstr ""
3266
2457
 
3267
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
3268
- msgid "New Filter"
3269
- msgstr ""
3270
-
3271
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/new-filter.html
3272
- msgid "New Filter for Content View:"
3273
- msgstr ""
3274
-
3275
2458
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-copy.html
3276
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-copy.html
3277
2459
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-copy.html
3278
2460
  msgid "New Name:"
3279
2461
  msgstr ""
@@ -3296,9 +2478,6 @@ msgstr ""
3296
2478
  msgid "New sync plan successfully created."
3297
2479
  msgstr ""
3298
2480
 
3299
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3300
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3301
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3302
2481
  #: app/assets/javascripts/bastion_katello/errata/views/apply-errata-select-content-hosts.html
3303
2482
  msgid "Next"
3304
2483
  msgstr ""
@@ -3317,10 +2496,6 @@ msgstr ""
3317
2496
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
3318
2497
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
3319
2498
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
3320
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
3321
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
3322
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
3323
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
3324
2499
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
3325
2500
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html
3326
2501
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
@@ -3329,47 +2504,14 @@ msgstr ""
3329
2504
  msgid "No"
3330
2505
  msgstr ""
3331
2506
 
3332
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3333
- msgid "No \"Edit\" permissions on some of the Activation Keys in that Lifecycle Environment."
3334
- msgstr ""
3335
-
3336
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3337
- msgid "No \"Edit\" permissions on some of the Content Hosts in that Lifecycle Environment."
3338
- msgstr ""
3339
-
3340
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
3341
- msgid "No \"Promote/Remove\" permissions on the Lifecycle Environment."
3342
- msgstr ""
3343
-
3344
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
3345
- msgid "No activation keys are affected."
3346
- msgstr ""
3347
-
3348
2507
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3349
2508
  msgid "No alternate release version choices are available. The available releases are based upon what is available in \"{{ host.content_facet_attributes.content_view.name }}\", the selected <a href=\"/content_views\">content view</a> this content host is attached to for the given <a href=\"/lifecycle_environments\">lifecycle environment</a>, \"{{ host.content_facet_attributes.lifecycle_environment.name }}\"."
3350
2509
  msgstr ""
3351
2510
 
3352
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
3353
- msgid "No Content Hosts are affected."
3354
- msgstr ""
3355
-
3356
2511
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
3357
2512
  msgid "No Content Hosts match this Erratum."
3358
2513
  msgstr ""
3359
2514
 
3360
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
3361
- msgid "No Content Views available to add to {{ contentView.name }}. Create some non-composite Content Views first."
3362
- msgstr ""
3363
-
3364
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3365
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3366
- msgid "No Content Views available, please select another environment."
3367
- msgstr ""
3368
-
3369
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
3370
- msgid "No Content Views belong to {{ contentView.name }}. Use the add tab to add Content Views."
3371
- msgstr ""
3372
-
3373
2515
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
3374
2516
  msgid "No Content Views contain this Deb"
3375
2517
  msgstr ""
@@ -3382,11 +2524,6 @@ msgstr ""
3382
2524
  msgid "No content views exist for {{selected.environment.name}}"
3383
2525
  msgstr ""
3384
2526
 
3385
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
3386
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
3387
- msgid "No Content Views match the search."
3388
- msgstr ""
3389
-
3390
2527
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery.html
3391
2528
  msgid "No discovered repositories."
3392
2529
  msgstr ""
@@ -3395,10 +2532,6 @@ msgstr ""
3395
2532
  msgid "No enabled Repository Sets provided through subscriptions."
3396
2533
  msgstr ""
3397
2534
 
3398
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
3399
- msgid "No Errata to display"
3400
- msgstr ""
3401
-
3402
2535
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections-table.html
3403
2536
  msgid "No Host Collections match your search."
3404
2537
  msgstr ""
@@ -3464,10 +2597,6 @@ msgstr ""
3464
2597
  msgid "No restriction"
3465
2598
  msgstr ""
3466
2599
 
3467
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
3468
- msgid "No RPMs were matched"
3469
- msgstr ""
3470
-
3471
2600
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3472
2601
  #: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
3473
2602
  msgid "No sync information available."
@@ -3494,12 +2623,6 @@ msgstr ""
3494
2623
  msgid "Not started"
3495
2624
  msgstr ""
3496
2625
 
3497
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
3498
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
3499
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
3500
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
3501
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3502
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
3503
2626
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
3504
2627
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-repositories.html
3505
2628
  #: app/assets/javascripts/bastion_katello/files/details/views/file-repositories.html
@@ -3509,12 +2632,6 @@ msgstr ""
3509
2632
  msgid "Not Synced"
3510
2633
  msgstr ""
3511
2634
 
3512
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
3513
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
3514
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
3515
- msgid "Not yet published"
3516
- msgstr ""
3517
-
3518
2635
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3519
2636
  msgid "Number of CPUs"
3520
2637
  msgstr ""
@@ -3599,14 +2716,6 @@ msgstr ""
3599
2716
  msgid "OS"
3600
2717
  msgstr ""
3601
2718
 
3602
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
3603
- msgid "OSTree Content"
3604
- msgstr ""
3605
-
3606
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3607
- msgid "OSTree Repositories"
3608
- msgstr ""
3609
-
3610
2719
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
3611
2720
  msgid "OSTree Repositories <div>{{ library.counts.ostree_repositories || 0 }}</div>"
3612
2721
  msgstr ""
@@ -3624,7 +2733,6 @@ msgid "Override to Enabled"
3624
2733
  msgstr ""
3625
2734
 
3626
2735
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
3627
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
3628
2736
  msgid "Package"
3629
2737
  msgstr ""
3630
2738
 
@@ -3633,32 +2741,11 @@ msgstr ""
3633
2741
  msgid "Package Actions"
3634
2742
  msgstr ""
3635
2743
 
3636
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html
3637
- msgid "Package Filter:"
3638
- msgstr ""
3639
-
3640
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/new-filter.controller.js
3641
- msgid "Package Group"
3642
- msgstr ""
3643
-
3644
2744
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
3645
2745
  msgid "Package Group (Deprecated)"
3646
2746
  msgstr ""
3647
2747
 
3648
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter.html
3649
- msgid "Package Group Filter:"
3650
- msgstr ""
3651
-
3652
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/available-package-group-filter.controller.js
3653
- msgid "Package Group successfully added."
3654
- msgstr ""
3655
-
3656
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/package-group-list-filter.controller.js
3657
- msgid "Package Group successfully removed."
3658
- msgstr ""
3659
-
3660
2748
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3661
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
3662
2749
  msgid "Package Groups"
3663
2750
  msgstr ""
3664
2751
 
@@ -3684,19 +2771,6 @@ msgstr ""
3684
2771
  msgid "Package Remove"
3685
2772
  msgstr ""
3686
2773
 
3687
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/docker-tag-filter.controller.js
3688
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js
3689
- msgid "Package successfully added."
3690
- msgstr ""
3691
-
3692
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js
3693
- msgid "Package successfully removed."
3694
- msgstr ""
3695
-
3696
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/package-filter.controller.js
3697
- msgid "Package successfully updated."
3698
- msgstr ""
3699
-
3700
2774
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-actions.html
3701
2775
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
3702
2776
  msgid "Package Update"
@@ -3797,21 +2871,8 @@ msgstr ""
3797
2871
  msgid "Please make sure a Content View is selected."
3798
2872
  msgstr ""
3799
2873
 
3800
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3801
- msgid "Please select a Lifecycle Environment and Content View to move the affected Activation Keys to:"
3802
- msgstr ""
3803
-
3804
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3805
- msgid "Please select a Lifecycle Environment and Content View to move these Content Hosts to:"
3806
- msgstr ""
3807
-
3808
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
3809
- msgid "Please select a Lifecycle Environment."
3810
- msgstr ""
3811
-
3812
2874
  #: app/assets/javascripts/bastion_katello/activation-keys/new/views/activation-key-new.html
3813
2875
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-environment-modal.html
3814
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
3815
2876
  msgid "Please select an environment."
3816
2877
  msgstr ""
3817
2878
 
@@ -3837,17 +2898,6 @@ msgstr ""
3837
2898
 
3838
2899
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
3839
2900
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
3840
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
3841
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
3842
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
3843
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
3844
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
3845
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
3846
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
3847
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-apt.html
3848
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
3849
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-file.html
3850
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-yum.html
3851
2901
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
3852
2902
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
3853
2903
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html
@@ -3860,10 +2910,6 @@ msgstr ""
3860
2910
  msgid "Product"
3861
2911
  msgstr ""
3862
2912
 
3863
- #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
3864
- msgid "Product Count"
3865
- msgstr ""
3866
-
3867
2913
  #: app/assets/javascripts/bastion_katello/products/products.controller.js
3868
2914
  msgid "Product delete operation has been initiated in the background."
3869
2915
  msgstr ""
@@ -3910,6 +2956,7 @@ msgstr ""
3910
2956
 
3911
2957
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
3912
2958
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
2959
+ #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
3913
2960
  #: app/assets/javascripts/bastion_katello/products/views/products.html
3914
2961
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
3915
2962
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html
@@ -3928,44 +2975,6 @@ msgstr ""
3928
2975
  msgid "Products not covered"
3929
2976
  msgstr ""
3930
2977
 
3931
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3932
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
3933
- msgid "Promote"
3934
- msgstr ""
3935
-
3936
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3937
- msgid "Promote Content View:"
3938
- msgstr ""
3939
-
3940
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3941
- msgid "Promote Version"
3942
- msgstr ""
3943
-
3944
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3945
- msgid "Promote Version {{ version.version }}"
3946
- msgstr ""
3947
-
3948
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-promotion.html
3949
- msgid "Promote version to {{ selectedEnvironment.name }}?<br><br>{{ suggestedEnvironmentMessage() }}"
3950
- msgstr ""
3951
-
3952
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
3953
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
3954
- msgid "Promoted to %s"
3955
- msgstr ""
3956
-
3957
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
3958
- msgid "Promoting to %count environments."
3959
- msgstr ""
3960
-
3961
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
3962
- msgid "Promoting to 1 environment."
3963
- msgstr ""
3964
-
3965
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
3966
- msgid "Promotion History"
3967
- msgstr ""
3968
-
3969
2978
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-dependencies.html
3970
2979
  msgid "Provides"
3971
2980
  msgstr ""
@@ -3978,40 +2987,15 @@ msgstr ""
3978
2987
  msgid "Provisioning Host Details"
3979
2988
  msgstr ""
3980
2989
 
3981
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
3982
- msgid "Publish Content View:"
3983
- msgstr ""
3984
-
3985
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
3986
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
3987
- msgid "Publish New Version"
3988
- msgstr ""
3989
-
3990
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
3991
- msgid "Published"
3992
- msgstr ""
3993
-
3994
2990
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-environments.html
3995
2991
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
3996
2992
  msgid "Published At"
3997
2993
  msgstr ""
3998
2994
 
3999
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/content-view-history.controller.js
4000
- msgid "Published new version"
4001
- msgstr ""
4002
-
4003
2995
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4004
2996
  msgid "Published Repository Information"
4005
2997
  msgstr ""
4006
2998
 
4007
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4008
- msgid "Publishing and promoting to %count environments."
4009
- msgstr ""
4010
-
4011
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4012
- msgid "Publishing and promoting to 1 environment."
4013
- msgstr ""
4014
-
4015
2999
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
4016
3000
  #: app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html
4017
3001
  msgid "Publishing Settings"
@@ -4033,10 +3017,6 @@ msgstr ""
4033
3017
  msgid "RAM (GB)"
4034
3018
  msgstr ""
4035
3019
 
4036
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
4037
- msgid "Range"
4038
- msgstr ""
4039
-
4040
3020
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
4041
3021
  msgid "Reboot Suggested"
4042
3022
  msgstr ""
@@ -4112,7 +3092,6 @@ msgstr ""
4112
3092
  msgid "Registry URL"
4113
3093
  msgstr ""
4114
3094
 
4115
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
4116
3095
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-module-streams.html
4117
3096
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-packages.html
4118
3097
  msgid "Release"
@@ -4139,8 +3118,6 @@ msgstr ""
4139
3118
 
4140
3119
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
4141
3120
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
4142
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
4143
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
4144
3121
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-details.html
4145
3122
  #: app/assets/javascripts/bastion_katello/products/views/products.html
4146
3123
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html
@@ -4148,10 +3125,6 @@ msgstr ""
4148
3125
  msgid "Remove"
4149
3126
  msgstr ""
4150
3127
 
4151
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
4152
- msgid "Remove {{ contentView.name }}"
4153
- msgstr ""
4154
-
4155
3128
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html
4156
3129
  msgid "Remove {{ table.numSelected }} Container Image manifest?"
4157
3130
  msgid_plural "Remove {{ table.numSelected }} Container Image manifests?"
@@ -4178,15 +3151,6 @@ msgstr ""
4178
3151
  msgid "Remove Content Credential {{ contentCredential.name }}"
4179
3152
  msgstr ""
4180
3153
 
4181
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
4182
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
4183
- msgid "Remove Content View"
4184
- msgstr ""
4185
-
4186
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
4187
- msgid "Remove Content Views"
4188
- msgstr ""
4189
-
4190
3154
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-generic-content.html
4191
3155
  msgid "Remove Content?"
4192
3156
  msgid_plural "Remove {{ table.numSelected }} content units?"
@@ -4201,10 +3165,6 @@ msgstr ""
4201
3165
  msgid "Remove environment {{ environment.name }}?"
4202
3166
  msgstr ""
4203
3167
 
4204
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
4205
- msgid "Remove Errata"
4206
- msgstr ""
4207
-
4208
3168
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-files.html
4209
3169
  msgid "Remove File?"
4210
3170
  msgid_plural "Remove {{ table.numSelected }} files?"
@@ -4223,14 +3183,6 @@ msgstr ""
4223
3183
  msgid "Remove Host Collection \"{{ hostCollection.name }}\"?"
4224
3184
  msgstr ""
4225
3185
 
4226
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
4227
- msgid "Remove Module Stream"
4228
- msgstr ""
4229
-
4230
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
4231
- msgid "Remove Package Group"
4232
- msgstr ""
4233
-
4234
3186
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-debs.html
4235
3187
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-packages.html
4236
3188
  msgid "Remove Package?"
@@ -4257,11 +3209,6 @@ msgid_plural "Remove {{ table.getSelected().length }} products?"
4257
3209
  msgstr[0] ""
4258
3210
  msgstr[1] ""
4259
3211
 
4260
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
4261
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
4262
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
4263
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
4264
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
4265
3212
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
4266
3213
  msgid "Remove Repositories"
4267
3214
  msgstr ""
@@ -4280,10 +3227,6 @@ msgid_plural "Remove {{ table.numSelected }} repositories?"
4280
3227
  msgstr[0] ""
4281
3228
  msgstr[1] ""
4282
3229
 
4283
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
4284
- msgid "Remove Rule"
4285
- msgstr ""
4286
-
4287
3230
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-host-collections-table.html
4288
3231
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions-list.html
4289
3232
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
@@ -4291,7 +3234,6 @@ msgstr ""
4291
3234
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-installed.html
4292
3235
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-host-collections-table.html
4293
3236
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions-list.html
4294
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
4295
3237
  #: app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-hosts-list.html
4296
3238
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-products.html
4297
3239
  msgid "Remove Selected"
@@ -4309,21 +3251,6 @@ msgstr ""
4309
3251
  msgid "Remove Sync Plan \"{{ syncPlan.name }}\"?"
4310
3252
  msgstr ""
4311
3253
 
4312
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-tag-filter-details.html
4313
- msgid "Remove Tags"
4314
- msgstr ""
4315
-
4316
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
4317
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
4318
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
4319
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
4320
- msgid "Remove Version"
4321
- msgstr ""
4322
-
4323
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
4324
- msgid "Remove Version Confirmation"
4325
- msgstr ""
4326
-
4327
3254
  #: app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-host-collections.controller.js
4328
3255
  msgid "Removed %x host collections from activation key \"%y\"."
4329
3256
  msgstr ""
@@ -4347,8 +3274,7 @@ msgstr ""
4347
3274
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-details.html
4348
3275
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-info.html
4349
3276
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
4350
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
4351
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
3277
+ #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
4352
3278
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
4353
3279
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum.html
4354
3280
  #: app/assets/javascripts/bastion_katello/packages/details/views/package.html
@@ -4370,14 +3296,6 @@ msgstr ""
4370
3296
  msgid "Repositories for"
4371
3297
  msgstr ""
4372
3298
 
4373
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
4374
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
4375
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
4376
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
4377
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
4378
- msgid "Repositories for Content View:"
4379
- msgstr ""
4380
-
4381
3299
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-repositories.html
4382
3300
  msgid "Repositories for Deb:"
4383
3301
  msgstr ""
@@ -4390,10 +3308,6 @@ msgstr ""
4390
3308
  msgid "Repositories for File:"
4391
3309
  msgstr ""
4392
3310
 
4393
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
4394
- msgid "Repositories for Filter:"
4395
- msgstr ""
4396
-
4397
3311
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-repositories.html
4398
3312
  msgid "Repositories for Package:"
4399
3313
  msgstr ""
@@ -4406,9 +3320,6 @@ msgstr ""
4406
3320
  msgid "Repositories to Create"
4407
3321
  msgstr ""
4408
3322
 
4409
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-group-filter-details.html
4410
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
4411
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-package-groups.html
4412
3323
  #: app/assets/javascripts/bastion_katello/docker-tags/details/views/docker-tag-info.html
4413
3324
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-docker.html
4414
3325
  msgid "Repository"
@@ -4422,10 +3333,6 @@ msgstr ""
4422
3333
  msgid "Repository %s successfully created."
4423
3334
  msgstr ""
4424
3335
 
4425
- #: app/assets/javascripts/bastion_katello/content-credentials/views/content-credentials.html
4426
- msgid "Repository Count"
4427
- msgstr ""
4428
-
4429
3336
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create-status.html
4430
3337
  #: app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html
4431
3338
  msgid "Repository created"
@@ -4467,10 +3374,6 @@ msgstr ""
4467
3374
  msgid "Repository Saved."
4468
3375
  msgstr ""
4469
3376
 
4470
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
4471
- msgid "Repository Selection"
4472
- msgstr ""
4473
-
4474
3377
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-details.html
4475
3378
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
4476
3379
  msgid "Repository Sets"
@@ -4576,33 +3479,15 @@ msgstr ""
4576
3479
  msgid "Role:"
4577
3480
  msgstr ""
4578
3481
 
4579
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
4580
3482
  #: app/assets/javascripts/bastion_katello/packages/views/packages.html
4581
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-helper.service.js
4582
3483
  #: app/assets/javascripts/bastion_katello/products/details/repositories/yum-content-units.service.js
4583
3484
  msgid "RPM"
4584
3485
  msgstr ""
4585
3486
 
4586
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
4587
- msgid "RPM Name"
4588
- msgstr ""
4589
-
4590
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
4591
- msgid "rpm Package Groups"
4592
- msgstr ""
4593
-
4594
3487
  #: app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html
4595
3488
  msgid "rpm Package Updates"
4596
3489
  msgstr ""
4597
3490
 
4598
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
4599
- msgid "rpm Packages"
4600
- msgstr ""
4601
-
4602
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter.html
4603
- msgid "RPMs"
4604
- msgstr ""
4605
-
4606
3491
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
4607
3492
  msgid "Run Auto-Attach"
4608
3493
  msgstr ""
@@ -4640,8 +3525,6 @@ msgstr ""
4640
3525
 
4641
3526
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
4642
3527
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
4643
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
4644
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
4645
3528
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
4646
3529
  #: app/assets/javascripts/bastion_katello/errata/views/errata-counts.html
4647
3530
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -4672,10 +3555,6 @@ msgstr ""
4672
3555
  msgid "Select Content View"
4673
3556
  msgstr ""
4674
3557
 
4675
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
4676
- msgid "Select the Lifecycle Environments you would like to remove Version {{ version.version }} from:"
4677
- msgstr ""
4678
-
4679
3558
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html
4680
3559
  msgid "Selecting \"Complete Sync\" will cause only Yum repositories of the selected product to be synced."
4681
3560
  msgstr ""
@@ -4688,10 +3567,6 @@ msgstr ""
4688
3567
  msgid "Selecting this option will result in Katello verifying that the upstream url's SSL certificates are signed by a trusted CA. Unselect if you do not want this verification."
4689
3568
  msgstr ""
4690
3569
 
4691
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
4692
- msgid "Selecting this option will result in the Version being completely deleted and no longer being available for promotion. The version must be removed from all Lifecycle Environments in order to select this option."
4693
- msgstr ""
4694
-
4695
3570
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-associations-content-hosts.html
4696
3571
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
4697
3572
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
@@ -4714,14 +3589,6 @@ msgstr ""
4714
3589
  msgid "Severity"
4715
3590
  msgstr ""
4716
3591
 
4717
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
4718
- msgid "Show affected Activation Keys"
4719
- msgstr ""
4720
-
4721
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
4722
- msgid "Show affected Content Hosts"
4723
- msgstr ""
4724
-
4725
3592
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-repository-sets.html
4726
3593
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
4727
3594
  msgid "Show All"
@@ -4732,10 +3599,6 @@ msgstr ""
4732
3599
  msgid "Show all Repository Sets in Organization"
4733
3600
  msgstr ""
4734
3601
 
4735
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
4736
- msgid "Show Matching Content"
4737
- msgstr ""
4738
-
4739
3602
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
4740
3603
  msgid "Size"
4741
3604
  msgstr ""
@@ -4761,11 +3624,6 @@ msgstr ""
4761
3624
  msgid "Solution"
4762
3625
  msgstr ""
4763
3626
 
4764
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
4765
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
4766
- msgid "Solve Dependencies"
4767
- msgstr ""
4768
-
4769
3627
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
4770
3628
  msgid ""
4771
3629
  "Some of the Errata shown below may not be installable as they are not in this Content Host's\n"
@@ -4826,7 +3684,6 @@ msgstr ""
4826
3684
  msgid "Standard sync, optimized for speed by bypassing any unneeded steps."
4827
3685
  msgstr ""
4828
3686
 
4829
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
4830
3687
  #: app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-info.html
4831
3688
  #: app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
4832
3689
  msgid "Start Date"
@@ -4858,8 +3715,6 @@ msgstr ""
4858
3715
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-provisioning-info.html
4859
3716
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-repository-sets.html
4860
3717
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions.html
4861
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
4862
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
4863
3718
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
4864
3719
  #: app/assets/javascripts/bastion_katello/tasks/views/user-tasks-table.html
4865
3720
  msgid "Status"
@@ -4867,7 +3722,6 @@ msgstr ""
4867
3722
 
4868
3723
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-host-bulk-module-streams-modal.html
4869
3724
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-module-streams.html
4870
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
4871
3725
  #: app/assets/javascripts/bastion_katello/module-streams/views/partials/module-streams-table.html
4872
3726
  msgid "Stream"
4873
3727
  msgstr ""
@@ -4922,38 +3776,10 @@ msgstr ""
4922
3776
  msgid "Successfully added %s subscriptions."
4923
3777
  msgstr ""
4924
3778
 
4925
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4926
- msgid "Successfully deleted %cv version %ver."
4927
- msgstr ""
4928
-
4929
- #: app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js
4930
- msgid "Successfully initiated deletion of %cv version %ver."
4931
- msgstr ""
4932
-
4933
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-promotion.controller.js
4934
- msgid "Successfully initiated promotion of %cv version %ver to %env."
4935
- msgstr ""
4936
-
4937
- #: app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-confirm.controller.js
4938
- msgid "Successfully initiated removal of %cv version %ver."
4939
- msgstr ""
4940
-
4941
3779
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-traces-modal.controller.js
4942
3780
  msgid "Successfully initiated restart of services."
4943
3781
  msgstr ""
4944
3782
 
4945
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4946
- msgid "Successfully promoted %cv version %ver to %env"
4947
- msgstr ""
4948
-
4949
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4950
- msgid "Successfully published %cv version %ver and promoted to Library"
4951
- msgstr ""
4952
-
4953
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
4954
- msgid "Successfully removed %cv version %ver from environments: %env"
4955
- msgstr ""
4956
-
4957
3783
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js
4958
3784
  msgid "Successfully removed %s items."
4959
3785
  msgstr ""
@@ -4991,7 +3817,6 @@ msgstr ""
4991
3817
  msgid "Successfully uploaded content:"
4992
3818
  msgstr ""
4993
3819
 
4994
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
4995
3820
  #: app/assets/javascripts/bastion_katello/packages/details/views/package-info.html
4996
3821
  #: app/assets/javascripts/bastion_katello/packages/views/packages.html
4997
3822
  msgid "Summary"
@@ -5067,17 +3892,11 @@ msgstr ""
5067
3892
  msgid "Sync Settings"
5068
3893
  msgstr ""
5069
3894
 
5070
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
5071
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
5072
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
5073
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
5074
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
5075
3895
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
5076
3896
  #: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
5077
3897
  msgid "Sync State"
5078
3898
  msgstr ""
5079
3899
 
5080
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5081
3900
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
5082
3901
  #: app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html
5083
3902
  #: app/assets/javascripts/bastion_katello/products/details/views/product-info.html
@@ -5117,8 +3936,6 @@ msgstr ""
5117
3936
  msgid "System Purpose Status"
5118
3937
  msgstr ""
5119
3938
 
5120
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/docker-filter.html
5121
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-docker.html
5122
3939
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifest-lists.html
5123
3940
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-manage-docker-manifests.html
5124
3941
  msgid "Tags"
@@ -5129,7 +3946,6 @@ msgid "Task Details"
5129
3946
  msgstr ""
5130
3947
 
5131
3948
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
5132
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
5133
3949
  #: app/assets/javascripts/bastion_katello/products/details/views/product-details.html
5134
3950
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks.html
5135
3951
  msgid "Tasks"
@@ -5165,22 +3981,6 @@ msgid ""
5165
3981
  "&lt;%= organization.label %&gt;/&lt;%= repository.docker_upstream_name %&gt;</pre>"
5166
3982
  msgstr ""
5167
3983
 
5168
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
5169
- msgid "The Activation Keys listed below are currently using this Content View Version. Before deleting the Version you must move these Activation Keys to a Lifecycle Environment where this Version is not in use."
5170
- msgstr ""
5171
-
5172
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
5173
- msgid "The archive of this Version will be deleted. This Version will not be available once deletion is complete."
5174
- msgstr ""
5175
-
5176
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
5177
- msgid "The archive of this Version will not be deleted. This Version will still be available to be promoted to a Lifecycle Environment."
5178
- msgstr ""
5179
-
5180
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-content-hosts.html
5181
- msgid "The Content Hosts listed below are currently using this Content View Version. Before removing the version you must move these Content Hosts to an environment where this version is not in use."
5182
- msgstr ""
5183
-
5184
3984
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-content-hosts.html
5185
3985
  msgid "The Content View or Lifecycle Environment needs to be updated in order to make errata available to these hosts."
5186
3986
  msgstr ""
@@ -5257,46 +4057,6 @@ msgstr ""
5257
4057
  msgid "There are {{ packageCount }} total Packages in this organization but none match the above filters."
5258
4058
  msgstr ""
5259
4059
 
5260
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
5261
- msgid "There are currently no Apt Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5262
- msgstr ""
5263
-
5264
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-deb-repositories.html
5265
- msgid "There are currently no Apt Repositories to add to this Content View,"
5266
- msgstr ""
5267
-
5268
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
5269
- msgid "There are currently no Docker Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5270
- msgstr ""
5271
-
5272
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-docker-repositories.html
5273
- msgid "There are currently no Docker Repositories to add to this Content View,"
5274
- msgstr ""
5275
-
5276
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
5277
- msgid "There are currently no File Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5278
- msgstr ""
5279
-
5280
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-file-repositories.html
5281
- msgid "There are currently no File Repositories to add to this Content View,"
5282
- msgstr ""
5283
-
5284
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
5285
- msgid "There are currently no OSTree Repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5286
- msgstr ""
5287
-
5288
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-ostree-repositories.html
5289
- msgid "There are currently no OSTree Repositories to add to this Content View,"
5290
- msgstr ""
5291
-
5292
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
5293
- msgid "There are currently no repositories associated with this Content View, you can add some by clicking on the \"Add\" tab above."
5294
- msgstr ""
5295
-
5296
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-repositories.html
5297
- msgid "There are currently no repositories to add to this Content View,"
5298
- msgstr ""
5299
-
5300
4060
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
5301
4061
  msgid "There are no %(contentType)s that match the criteria."
5302
4062
  msgstr ""
@@ -5349,10 +4109,6 @@ msgstr ""
5349
4109
  msgid "There is currently an Incremental Update task in progress. This update must finish before applying existing updates."
5350
4110
  msgstr ""
5351
4111
 
5352
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
5353
- msgid "There is currently no history associated with this Content View."
5354
- msgstr ""
5355
-
5356
4112
  #: app/assets/javascripts/bastion_katello/content-hosts/views/register.html
5357
4113
  msgid "These instructions will be removed in a future release. NEW: To register a content host without following these manual steps, see <a href=\"https://{{ katelloHostname }}/hosts/register\">Register Host</a>"
5358
4114
  msgstr ""
@@ -5379,18 +4135,6 @@ msgstr ""
5379
4135
  msgid "This Container Image Tag is not present in any Lifecycle Environments."
5380
4136
  msgstr ""
5381
4137
 
5382
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
5383
- msgid "This Content View does not have any versions, create your first Content View Version by using the \"Publish New Version\" button on the right."
5384
- msgstr ""
5385
-
5386
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5387
- msgid "This filter applies only to a subset of repositories in the content view."
5388
- msgstr ""
5389
-
5390
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5391
- msgid "This filter applies to all repositories in the content view (current and future)."
5392
- msgstr ""
5393
-
5394
4138
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-details.html
5395
4139
  msgid ""
5396
4140
  "This operation may also remove managed resources linked to the host such as virtual machines and DNS records.\n"
@@ -5405,45 +4149,14 @@ msgstr ""
5405
4149
  msgid "This organization is not using <a target=\"_blank\" href=\"https://access.redhat.com/articles/simple-content-access\">Simple Content Access.</a> Legacy subscription management is deprecated and will be removed in a future version."
5406
4150
  msgstr ""
5407
4151
 
5408
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
5409
- msgid "This Version cannot be deleted from some of the Lifecycle Environments due to one of the reasons below."
5410
- msgstr ""
5411
-
5412
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-environments.html
5413
- msgid "This Version is not associated with any Lifecycle Environments."
5414
- msgstr ""
5415
-
5416
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-confirm.html
5417
- msgid "This version will be removed from:"
5418
- msgstr ""
5419
-
5420
- #: app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html
5421
- msgid ""
5422
- "This will solve RPM and Module Stream dependencies on every publish of this Content View. Dependency solving significantly increases\n"
5423
- " publish time (publishes can take over three times as long) and filters will be ignored when adding packages to solve\n"
5424
- " dependencies. Also, certain scenarios involving errata may still cause dependency errors."
5425
- msgstr ""
5426
-
5427
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
5428
- msgid ""
5429
- "This will solve RPM and Module Stream dependencies on every publish of this Content View. Dependency solving significantly increases publish time (publishes can take over three times as long) and filters will be ignored when adding packages to solve\n"
5430
- " dependencies. Also, certain scenarios involving errata may still cause dependency errors."
5431
- msgstr ""
5432
-
5433
4152
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
5434
4153
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
5435
4154
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
5436
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
5437
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
5438
4155
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
5439
4156
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
5440
4157
  msgid "Title"
5441
4158
  msgstr ""
5442
4159
 
5443
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/version-deletion-activation-keys.html
5444
- msgid "to manage them individually."
5445
- msgstr ""
5446
-
5447
4160
  #: app/assets/javascripts/bastion_katello/content-hosts/views/register.html
5448
4161
  msgid "To register a content host to this server, follow these steps."
5449
4162
  msgstr ""
@@ -5490,8 +4203,6 @@ msgstr ""
5490
4203
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-traces.html
5491
4204
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
5492
4205
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-info.html
5493
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5494
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
5495
4206
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
5496
4207
  #: app/assets/javascripts/bastion_katello/errata/details/views/erratum-info.html
5497
4208
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
@@ -5501,10 +4212,6 @@ msgstr ""
5501
4212
  msgid "Type"
5502
4213
  msgstr ""
5503
4214
 
5504
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-details.html
5505
- msgid "Type: {{ filter.inclusion | filterType }} {{ filter.type | filterContentType }}"
5506
- msgstr ""
5507
-
5508
4215
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-details.html
5509
4216
  msgid "Unauthenticated Pull"
5510
4217
  msgstr ""
@@ -5570,31 +4277,16 @@ msgstr ""
5570
4277
  msgid "Update Packages"
5571
4278
  msgstr ""
5572
4279
 
5573
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-repositories.html
5574
- msgid "Update Repositories"
5575
- msgstr ""
5576
-
5577
4280
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
5578
4281
  msgid "Update Sync Plan"
5579
4282
  msgstr ""
5580
4283
 
5581
4284
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/errata-details.html
5582
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
5583
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
5584
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
5585
4285
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-errata.html
5586
4286
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
5587
4287
  msgid "Updated"
5588
4288
  msgstr ""
5589
4289
 
5590
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/date-type-errata-filter.controller.js
5591
- msgid "Updated errata filter -"
5592
- msgstr ""
5593
-
5594
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/date-type-errata.html
5595
- msgid "Updated On"
5596
- msgstr ""
5597
-
5598
4290
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
5599
4291
  #: app/assets/javascripts/bastion_katello/packages/views/packages.html
5600
4292
  msgid "Upgradable"
@@ -5719,12 +4411,12 @@ msgstr ""
5719
4411
  msgid "Use the cancel button on content view selection to revert your lifecycle environment selection."
5720
4412
  msgstr ""
5721
4413
 
4414
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
5722
4415
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-products.html
5723
4416
  #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-repositories.html
5724
4417
  msgid "Used as"
5725
4418
  msgstr ""
5726
4419
 
5727
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
5728
4420
  #: app/assets/javascripts/bastion_katello/tasks/views/task-details.html
5729
4421
  #: app/assets/javascripts/bastion_katello/tasks/views/tasks-table.html
5730
4422
  msgid "User"
@@ -5756,17 +4448,6 @@ msgstr ""
5756
4448
 
5757
4449
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-applicable.html
5758
4450
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-debs-installed.html
5759
- #: app/assets/javascripts/bastion_katello/content-views/deletion/views/content-view-deletion.html
5760
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-available-content-views.html
5761
- #: app/assets/javascripts/bastion_katello/content-views/details/components/views/content-view-composite-content-views-list.html
5762
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/module-stream-filter-details.html
5763
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
5764
- #: app/assets/javascripts/bastion_katello/content-views/details/histories/views/content-view-history.html
5765
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
5766
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
5767
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-components.html
5768
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-deb.html
5769
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-packages.html
5770
4451
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
5771
4452
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-info.html
5772
4453
  #: app/assets/javascripts/bastion_katello/debs/views/debs.html
@@ -5786,31 +4467,10 @@ msgstr ""
5786
4467
  msgid "Version {{ cvVersions['version'] }}"
5787
4468
  msgstr ""
5788
4469
 
5789
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/package-filter-details.html
5790
- msgid "Version {{ rule.version }}"
5791
- msgstr ""
5792
-
5793
- #: app/assets/javascripts/bastion_katello/content-views/details/content-view-versions.controller.js
5794
- msgid "Version Deletion"
5795
- msgstr ""
5796
-
5797
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
5798
- msgid "Version Details"
5799
- msgstr ""
5800
-
5801
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
5802
- msgid "Version:"
5803
- msgstr ""
5804
-
5805
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
5806
4470
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html
5807
4471
  msgid "Versions"
5808
4472
  msgstr ""
5809
4473
 
5810
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
5811
- msgid "Versions for Content View:"
5812
- msgstr ""
5813
-
5814
4474
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
5815
4475
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
5816
4476
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html
@@ -5917,10 +4577,6 @@ msgstr ""
5917
4577
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-packages-modal.html
5918
4578
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-release-version-modal.html
5919
4579
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-repository-sets-modal.html
5920
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
5921
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html
5922
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version-errata.html
5923
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
5924
4580
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
5925
4581
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-http-proxy-modal.html
5926
4582
  #: app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-sync-plan-modal.html
@@ -5961,6 +4617,10 @@ msgstr ""
5961
4617
  msgid "You currently don't have any Activation Keys, you can add Activation Keys using the button on the right."
5962
4618
  msgstr ""
5963
4619
 
4620
+ #: app/assets/javascripts/bastion_katello/content-credentials/details/views/content-credential-acs.html
4621
+ msgid "You currently don't have any Alternate Content Sources associated with this Content Credential."
4622
+ msgstr ""
4623
+
5964
4624
  #: app/assets/javascripts/bastion_katello/docker-tags/views/docker-tags.html
5965
4625
  msgid "You currently don't have any Container Image Tags."
5966
4626
  msgstr ""
@@ -5977,18 +4637,10 @@ msgstr ""
5977
4637
  msgid "You currently don't have any Content Hosts, you can register one by clicking the button on the right and following the instructions."
5978
4638
  msgstr ""
5979
4639
 
5980
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
5981
- msgid "You currently don't have any Content Views. A Content View can be added by using the button on the right."
5982
- msgstr ""
5983
-
5984
4640
  #: app/assets/javascripts/bastion_katello/files/views/files.html
5985
4641
  msgid "You currently don't have any Files."
5986
4642
  msgstr ""
5987
4643
 
5988
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
5989
- msgid "You currently don't have any Filters included in this Content View, you can add a new Filter by using the button on the right."
5990
- msgstr ""
5991
-
5992
4644
  #: app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
5993
4645
  msgid "You currently don't have any Host Collections, you can add Host Collections using the button on the right."
5994
4646
  msgstr ""
@@ -6038,10 +4690,6 @@ msgstr ""
6038
4690
  msgid "You do not have any Installed Products"
6039
4691
  msgstr ""
6040
4692
 
6041
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html
6042
- msgid "You have selected more than one component Content View Version with the same repository resulting in slower publishing:"
6043
- msgstr ""
6044
-
6045
4693
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-info.html
6046
4694
  msgid "You must select a content view in order to save your environment."
6047
4695
  msgstr ""
@@ -6062,10 +4710,6 @@ msgstr ""
6062
4710
  msgid "You must select at least one Errata to apply."
6063
4711
  msgstr ""
6064
4712
 
6065
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/filter-repositories.controller.js
6066
- msgid "You must select at least one repository."
6067
- msgstr ""
6068
-
6069
4713
  #: app/assets/javascripts/bastion_katello/environments/content.service.js
6070
4714
  msgid "Your search returned zero %(contentType)s that match the criteria."
6071
4715
  msgstr ""
@@ -6089,16 +4733,11 @@ msgstr ""
6089
4733
  msgid "Your search returned zero Content Hosts."
6090
4734
  msgstr ""
6091
4735
 
6092
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-versions.html
6093
- msgid "Your search returned zero Content View."
6094
- msgstr ""
6095
-
6096
4736
  #: app/assets/javascripts/bastion_katello/debs/details/views/deb-content-views.html
6097
4737
  #: app/assets/javascripts/bastion_katello/files/details/views/file-content-views.html
6098
4738
  msgid "Your search returned zero Content Views"
6099
4739
  msgstr ""
6100
4740
 
6101
- #: app/assets/javascripts/bastion_katello/content-views/views/content-views.html
6102
4741
  #: app/assets/javascripts/bastion_katello/environments/details/views/environment-content-views.html
6103
4742
  msgid "Your search returned zero Content Views."
6104
4743
  msgstr ""
@@ -6113,7 +4752,6 @@ msgstr ""
6113
4752
 
6114
4753
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html
6115
4754
  #: app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-errata.html
6116
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/errata-filter-details.html
6117
4755
  #: app/assets/javascripts/bastion_katello/errata/views/errata.html
6118
4756
  msgid "Your search returned zero Errata."
6119
4757
  msgstr ""
@@ -6126,10 +4764,6 @@ msgstr ""
6126
4764
  msgid "Your search returned zero Files."
6127
4765
  msgstr ""
6128
4766
 
6129
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filters.html
6130
- msgid "Your search returned zero Filters."
6131
- msgstr ""
6132
-
6133
4767
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-host-collections-modal.html
6134
4768
  #: app/assets/javascripts/bastion_katello/host-collections/views/host-collections.html
6135
4769
  msgid "Your search returned zero Host Collections."
@@ -6185,10 +4819,6 @@ msgstr ""
6185
4819
  msgid "Your search returned zero results."
6186
4820
  msgstr ""
6187
4821
 
6188
- #: app/assets/javascripts/bastion_katello/content-views/details/filters/views/filter-rule-matching-package-modal.html
6189
- msgid "Your search returned zero RPMs"
6190
- msgstr ""
6191
-
6192
4822
  #: app/assets/javascripts/bastion_katello/activation-keys/details/views/activation-key-subscriptions-list.html
6193
4823
  #: app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-subscriptions-modal.html
6194
4824
  #: app/assets/javascripts/bastion_katello/content-hosts/details/views/content-host-subscriptions-list.html
@@ -6204,10 +4834,6 @@ msgstr ""
6204
4834
  msgid "Your search returned zero Traces."
6205
4835
  msgstr ""
6206
4836
 
6207
- #: app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html
6208
- msgid "Yum Content"
6209
- msgstr ""
6210
-
6211
4837
  #: app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html
6212
4838
  msgid "Yum Metadata Checksum"
6213
4839
  msgstr ""
@@ -6216,10 +4842,6 @@ msgstr ""
6216
4842
  msgid "Yum metadata generation has been initiated in the background. Click <a href=\"{{ taskUrl() }}\">Here</a> to monitor the progress."
6217
4843
  msgstr ""
6218
4844
 
6219
- #: app/assets/javascripts/bastion_katello/content-views/versions/views/content-view-version.html
6220
- msgid "Yum Repositories"
6221
- msgstr ""
6222
-
6223
4845
  #: app/assets/javascripts/bastion_katello/environments/views/environments.html
6224
4846
  msgid "Yum Repositories <div>{{ library.counts.yum_repositories || 0 }}</div>"
6225
4847
  msgstr ""