katello 4.4.2.2 → 4.5.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 (444) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +5 -1
  3. data/app/controllers/katello/api/v2/alternate_content_sources_controller.rb +98 -0
  4. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +39 -3
  5. data/app/controllers/katello/api/v2/content_exports_controller.rb +19 -0
  6. data/app/controllers/katello/api/v2/content_imports_controller.rb +13 -16
  7. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +0 -12
  8. data/app/controllers/katello/api/v2/content_views_controller.rb +13 -0
  9. data/app/controllers/katello/api/v2/environments_controller.rb +1 -1
  10. data/app/controllers/katello/api/v2/host_module_streams_controller.rb +8 -2
  11. data/app/controllers/katello/api/v2/host_subscriptions_controller.rb +25 -3
  12. data/app/controllers/katello/api/v2/organizations_controller.rb +4 -2
  13. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  14. data/app/controllers/katello/api/v2/repositories_controller.rb +9 -3
  15. data/app/controllers/katello/api/v2/repository_sets_controller.rb +40 -7
  16. data/app/controllers/katello/api/v2/subscriptions_controller.rb +2 -2
  17. data/app/controllers/katello/concerns/api/v2/hosts_controller_extensions.rb +1 -1
  18. data/app/helpers/katello/concerns/smart_proxy_helper_extensions.rb +4 -0
  19. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +21 -3
  20. data/app/lib/actions/katello/alternate_content_source/create.rb +24 -0
  21. data/app/lib/actions/katello/alternate_content_source/destroy.rb +27 -0
  22. data/app/lib/actions/katello/alternate_content_source/update.rb +41 -0
  23. data/app/lib/actions/katello/cdn_configuration/update.rb +2 -2
  24. data/app/lib/actions/katello/content_view/destroy.rb +2 -1
  25. data/app/lib/actions/katello/content_view/incremental_updates.rb +7 -3
  26. data/app/lib/actions/katello/content_view/publish.rb +7 -9
  27. data/app/lib/actions/katello/content_view_version/auto_create_products.rb +4 -4
  28. data/app/lib/actions/katello/content_view_version/auto_create_redhat_repositories.rb +6 -4
  29. data/app/lib/actions/katello/content_view_version/auto_create_repositories.rb +6 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +25 -22
  31. data/app/lib/actions/katello/content_view_version/import_library.rb +0 -1
  32. data/app/lib/actions/katello/content_view_version/import_repository.rb +21 -0
  33. data/app/lib/actions/katello/content_view_version/incremental_update.rb +85 -93
  34. data/app/lib/actions/katello/content_view_version/reset_content_view_repositories_from_metadata.rb +2 -2
  35. data/app/lib/actions/katello/product/content_create.rb +10 -8
  36. data/app/lib/actions/katello/repository/destroy.rb +36 -12
  37. data/app/lib/actions/katello/repository_set/disable_repository.rb +8 -3
  38. data/app/lib/actions/pulp3/alternate_content_source/create.rb +20 -0
  39. data/app/lib/actions/pulp3/alternate_content_source/create_remote.rb +20 -0
  40. data/app/lib/actions/pulp3/alternate_content_source/delete.rb +16 -0
  41. data/app/lib/actions/pulp3/alternate_content_source/delete_remote.rb +16 -0
  42. data/app/lib/actions/pulp3/alternate_content_source/update.rb +16 -0
  43. data/app/lib/actions/pulp3/alternate_content_source/update_remote.rb +17 -0
  44. data/app/lib/actions/pulp3/content_view_version/{import.rb → create_import.rb} +5 -5
  45. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +4 -3
  46. data/app/lib/actions/pulp3/content_view_version/destroy_importer.rb +12 -1
  47. data/app/lib/actions/pulp3/orchestration/alternate_content_source/create.rb +18 -0
  48. data/app/lib/actions/pulp3/orchestration/alternate_content_source/delete.rb +23 -0
  49. data/app/lib/actions/pulp3/orchestration/alternate_content_source/update.rb +18 -0
  50. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +1 -1
  51. data/app/lib/actions/pulp3/orchestration/content_view_version/export_repository.rb +51 -0
  52. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +5 -2
  53. data/app/lib/actions/pulp3/repository/refresh_distribution.rb +4 -1
  54. data/app/lib/actions/pulp3/repository/save_distribution_references.rb +2 -0
  55. data/app/lib/katello/api/v2/error_handling.rb +1 -0
  56. data/app/lib/katello/resources/cdn/katello_cdn.rb +3 -1
  57. data/app/lib/katello/util/errata.rb +2 -3
  58. data/app/lib/katello/validators/alternate_content_source_path_validator.rb +29 -0
  59. data/app/lib/katello/validators/content_default_http_proxy_setting_validator.rb +12 -0
  60. data/app/lib/katello/validators/content_view_environment_validator.rb +10 -5
  61. data/app/models/katello/alternate_content_source.rb +66 -0
  62. data/app/models/katello/authorization/alternate_content_source.rb +33 -0
  63. data/app/models/katello/authorization/repository.rb +3 -3
  64. data/app/models/katello/candlepin/repository_mapper.rb +13 -6
  65. data/app/models/katello/cdn_configuration.rb +15 -15
  66. data/app/models/katello/concerns/content_facet_host_extensions.rb +25 -0
  67. data/app/models/katello/concerns/host_managed_extensions.rb +7 -5
  68. data/app/models/katello/concerns/http_proxy_extensions.rb +14 -0
  69. data/app/models/katello/concerns/organization_extensions.rb +4 -2
  70. data/app/models/katello/concerns/setting_extensions.rb +14 -0
  71. data/app/models/katello/concerns/smart_proxy_extensions.rb +2 -1
  72. data/app/models/katello/content.rb +1 -0
  73. data/app/models/katello/content_credential.rb +6 -0
  74. data/app/models/katello/content_override.rb +7 -3
  75. data/app/models/katello/content_view.rb +33 -2
  76. data/app/models/katello/content_view_erratum_filter.rb +26 -12
  77. data/app/models/katello/content_view_filter.rb +4 -0
  78. data/app/models/katello/content_view_version.rb +12 -0
  79. data/app/models/katello/content_view_version_export_history.rb +3 -1
  80. data/app/models/katello/erratum.rb +9 -5
  81. data/app/models/katello/events/delete_latest_content_view_version.rb +40 -0
  82. data/app/models/katello/host/content_facet.rb +14 -0
  83. data/app/models/katello/host_available_module_stream.rb +12 -0
  84. data/app/models/katello/product_content.rb +1 -0
  85. data/app/models/katello/purpose_sla_status.rb +1 -1
  86. data/app/models/katello/purpose_status.rb +2 -2
  87. data/app/models/katello/repository.rb +7 -4
  88. data/app/models/katello/root_repository.rb +1 -1
  89. data/app/models/katello/smart_proxy_alternate_content_source.rb +8 -0
  90. data/app/models/katello/sync_plan.rb +1 -1
  91. data/app/presenters/katello/product_content_presenter.rb +15 -0
  92. data/app/services/katello/applicable_host_queue.rb +1 -1
  93. data/app/services/katello/content_unit_indexer.rb +2 -1
  94. data/app/services/katello/product_content_finder.rb +12 -2
  95. data/app/services/katello/pulp3/alternate_content_source.rb +117 -0
  96. data/app/services/katello/pulp3/api/file.rb +8 -0
  97. data/app/services/katello/pulp3/api/yum.rb +8 -0
  98. data/app/services/katello/pulp3/content_view_version/export.rb +27 -5
  99. data/app/services/katello/pulp3/content_view_version/import.rb +97 -71
  100. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +4 -4
  101. data/app/services/katello/pulp3/content_view_version/import_gpg_keys.rb +13 -11
  102. data/app/services/katello/pulp3/content_view_version/import_validator.rb +67 -72
  103. data/app/services/katello/pulp3/content_view_version/importable_products.rb +40 -24
  104. data/app/services/katello/pulp3/content_view_version/importable_repositories.rb +88 -39
  105. data/app/services/katello/pulp3/content_view_version/metadata_generator.rb +2 -2
  106. data/app/services/katello/pulp3/content_view_version/metadata_map.rb +117 -0
  107. data/app/services/katello/pulp3/pulp_content_unit.rb +6 -1
  108. data/app/services/katello/pulp3/repository/yum.rb +70 -12
  109. data/app/services/katello/pulp3/repository.rb +7 -91
  110. data/app/services/katello/pulp3/service_common.rb +66 -0
  111. data/app/services/katello/pulp3/smart_proxy_mirror_repository.rb +4 -1
  112. data/app/services/katello/ui_notifications/content_view/delete_latest_version_failure.rb +22 -0
  113. data/app/views/foreman/job_templates/change_content_source.erb +1 -1
  114. data/app/views/foreman/job_templates/install_errata.erb +5 -5
  115. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +7 -6
  116. data/app/views/foreman/job_templates/install_group.erb +4 -4
  117. data/app/views/foreman/job_templates/install_package.erb +4 -4
  118. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +3 -3
  119. data/app/views/foreman/job_templates/remove_group.erb +4 -4
  120. data/app/views/foreman/job_templates/remove_package.erb +4 -4
  121. data/app/views/foreman/job_templates/remove_packages_by_search_query.erb +3 -3
  122. data/app/views/foreman/job_templates/resolve_traces.erb +2 -2
  123. data/app/views/foreman/job_templates/restart_services.erb +3 -3
  124. data/app/views/foreman/job_templates/update_group.erb +4 -4
  125. data/app/views/foreman/job_templates/update_package.erb +4 -4
  126. data/app/views/foreman/job_templates/update_packages_by_search_query.erb +3 -3
  127. data/app/views/katello/api/v2/alternate_content_sources/base.json.rabl +15 -0
  128. data/app/views/katello/api/v2/alternate_content_sources/index.json.rabl +7 -0
  129. data/app/views/katello/api/v2/alternate_content_sources/show.json.rabl +3 -0
  130. data/app/views/katello/api/v2/capsule_content/sync_status.json.rabl +1 -1
  131. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +2 -3
  132. data/app/views/katello/api/v2/content_view_versions/base.json.rabl +1 -1
  133. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  134. data/app/views/katello/api/v2/environments/show.json.rabl +2 -0
  135. data/app/views/katello/api/v2/errata/_counts.json.rabl +2 -2
  136. data/app/views/katello/api/v2/host_module_streams/base.json.rabl +2 -2
  137. data/app/views/katello/api/v2/hosts/host_collections.json.rabl +1 -1
  138. data/app/views/katello/api/v2/organizations/show.json.rabl +7 -1
  139. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -1
  140. data/app/views/katello/sync_management/_repo.html.erb +8 -29
  141. data/config/routes/api/v2.rb +7 -0
  142. data/db/migrate/20150930183738_migrate_content_hosts.rb +0 -399
  143. data/db/migrate/20171025163149_remove_use_pulp_oauth_setting.rb +1 -1
  144. data/db/migrate/20171114150937_cleanup_installed_packages.rb +1 -1
  145. data/db/migrate/20180402160223_clean_up_force_post_sync_action_setting.rb +1 -1
  146. data/db/migrate/20211129200124_remove_dependency_solving_algorithm_setting.rb +1 -1
  147. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +10 -12
  148. data/db/migrate/20220110223754_update_disconnected_settings.rb +5 -5
  149. data/db/migrate/20220117151612_add_alternate_content_sources.rb +48 -0
  150. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +9 -4
  151. data/db/migrate/20220209203251_add_generated_for_to_content_views.rb +13 -0
  152. data/db/migrate/20220209205137_expand_sync_timeout_settings.rb +7 -7
  153. data/db/migrate/20220228173251_remove_drpm_from_ignorable_content.rb +12 -0
  154. data/db/migrate/20220404190836_delete_old_setting_data.rb +9 -0
  155. data/db/migrate/20220405220616_update_cdn_configuration_type.rb +11 -0
  156. data/db/migrate/20220419193414_content_settings_to_dsl_category.rb +5 -0
  157. data/db/seeds.d/110-content-view-autopublish.rb +13 -0
  158. data/db/seeds.d/150-module_job_templates.rb +1 -1
  159. data/engines/bastion/README.md +1 -0
  160. data/engines/bastion/app/assets/javascripts/bastion/components/bst-modal.directive.js +1 -0
  161. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -0
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/activation-keys/details/activation-key-details.controller.js +4 -2
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +10 -5
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-module-streams.controller.js +1 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-packages-installed.controller.js +1 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-traces.controller.js +1 -0
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-actions.html +1 -1
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/views/content-host-packages-applicable.html +1 -1
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +8 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/details/content-host-details.controller.js +4 -2
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +2 -2
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/content.service.js +10 -0
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-deb-repositories.html +26 -0
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment-debs.html +27 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.controller.js +1 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/environments.routes.js +22 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/views/environments.html +13 -7
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +63 -17
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +7 -8
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +10 -1
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +21 -3
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +8 -9
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +7 -5
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +2 -1
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery-create.controller.js +1 -1
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/views/discovery-create.html +1 -1
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +1 -0
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +6 -1
  189. data/lib/katello/engine.rb +1 -5
  190. data/lib/katello/permission_creator.rb +32 -4
  191. data/lib/katello/plugin.rb +378 -4
  192. data/lib/katello/tasks/reset.rake.bak +67 -0
  193. data/lib/katello/tasks/update_content_default_http_proxy.rake +2 -3
  194. data/lib/katello/version.rb +1 -1
  195. data/locale/action_names.rb +47 -41
  196. data/locale/bn/LC_MESSAGES/katello.mo +0 -0
  197. data/locale/bn/katello.po +820 -106
  198. data/locale/bn/katello.po.time_stamp +0 -0
  199. data/locale/cs/LC_MESSAGES/katello.mo +0 -0
  200. data/locale/cs/katello.po +818 -104
  201. data/locale/cs/katello.po.time_stamp +0 -0
  202. data/locale/de/LC_MESSAGES/katello.mo +0 -0
  203. data/locale/de/katello.po +893 -179
  204. data/locale/de/katello.po.time_stamp +0 -0
  205. data/locale/en/LC_MESSAGES/katello.mo +0 -0
  206. data/locale/en/katello.po +817 -103
  207. data/locale/en/katello.po.time_stamp +0 -0
  208. data/locale/es/LC_MESSAGES/katello.mo +0 -0
  209. data/locale/es/katello.po +882 -168
  210. data/locale/es/katello.po.time_stamp +0 -0
  211. data/locale/fr/LC_MESSAGES/katello.mo +0 -0
  212. data/locale/fr/katello.po +1219 -505
  213. data/locale/fr/katello.po.time_stamp +0 -0
  214. data/locale/gu/LC_MESSAGES/katello.mo +0 -0
  215. data/locale/gu/katello.po +826 -112
  216. data/locale/gu/katello.po.time_stamp +0 -0
  217. data/locale/hi/LC_MESSAGES/katello.mo +0 -0
  218. data/locale/hi/katello.po +826 -112
  219. data/locale/hi/katello.po.time_stamp +0 -0
  220. data/locale/it/LC_MESSAGES/katello.mo +0 -0
  221. data/locale/it/katello.po +863 -148
  222. data/locale/it/katello.po.time_stamp +0 -0
  223. data/locale/ja/LC_MESSAGES/katello.mo +0 -0
  224. data/locale/ja/katello.po +1216 -499
  225. data/locale/ja/katello.po.time_stamp +0 -0
  226. data/locale/katello.pot +3847 -2507
  227. data/locale/kn/LC_MESSAGES/katello.mo +0 -0
  228. data/locale/kn/katello.po +826 -112
  229. data/locale/kn/katello.po.time_stamp +0 -0
  230. data/locale/ko/LC_MESSAGES/katello.mo +0 -0
  231. data/locale/ko/katello.po +912 -198
  232. data/locale/ko/katello.po.time_stamp +0 -0
  233. data/locale/mr/LC_MESSAGES/katello.mo +0 -0
  234. data/locale/mr/katello.po +826 -112
  235. data/locale/mr/katello.po.time_stamp +0 -0
  236. data/locale/or/LC_MESSAGES/katello.mo +0 -0
  237. data/locale/or/katello.po +826 -112
  238. data/locale/or/katello.po.time_stamp +0 -0
  239. data/locale/pa/LC_MESSAGES/katello.mo +0 -0
  240. data/locale/pa/katello.po +826 -112
  241. data/locale/pa/katello.po.time_stamp +0 -0
  242. data/locale/pt/LC_MESSAGES/katello.mo +0 -0
  243. data/locale/pt/katello.po +817 -103
  244. data/locale/pt/katello.po.time_stamp +0 -0
  245. data/locale/pt_BR/LC_MESSAGES/katello.mo +0 -0
  246. data/locale/pt_BR/katello.po +879 -165
  247. data/locale/pt_BR/katello.po.time_stamp +0 -0
  248. data/locale/ru/LC_MESSAGES/katello.mo +0 -0
  249. data/locale/ru/katello.po +927 -213
  250. data/locale/ru/katello.po.time_stamp +0 -0
  251. data/locale/ta/LC_MESSAGES/katello.mo +0 -0
  252. data/locale/ta/katello.po +820 -106
  253. data/locale/ta/katello.po.time_stamp +0 -0
  254. data/locale/te/LC_MESSAGES/katello.mo +0 -0
  255. data/locale/te/katello.po +826 -112
  256. data/locale/te/katello.po.time_stamp +0 -0
  257. data/locale/zh_CN/LC_MESSAGES/katello.mo +0 -0
  258. data/locale/zh_CN/katello.po +1202 -486
  259. data/locale/zh_CN/katello.po.time_stamp +0 -0
  260. data/locale/zh_TW/LC_MESSAGES/katello.mo +0 -0
  261. data/locale/zh_TW/katello.po +856 -142
  262. data/locale/zh_TW/katello.po.time_stamp +0 -0
  263. data/webpack/components/EditableTextInput/EditableTextInput.js +20 -5
  264. data/webpack/components/Errata/index.js +38 -8
  265. data/webpack/components/Packages/index.js +1 -4
  266. data/webpack/components/Search/Search.js +18 -3
  267. data/webpack/components/SelectAllCheckbox/index.js +1 -0
  268. data/webpack/components/SelectableDropdown/SelectableDropdown.js +4 -2
  269. data/webpack/components/Table/EmptyStateMessage.js +21 -7
  270. data/webpack/components/Table/MainTable.js +29 -4
  271. data/webpack/components/Table/TableHooks.js +63 -19
  272. data/webpack/components/Table/TableWrapper.js +4 -2
  273. data/webpack/components/Table/components/SortableColumnHeaders.js +19 -0
  274. data/webpack/components/Table/components/TranslatedPlural.js +57 -0
  275. data/webpack/components/TypeAhead/TypeAhead.js +8 -0
  276. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +13 -11
  277. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +5 -2
  278. data/webpack/components/extensions/HostDetails/ActionsBar/index.js +27 -0
  279. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ChangeHostCVModal.js +256 -0
  280. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/ContentViewDetailsCard.js +202 -0
  281. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewActions.js +19 -0
  282. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/HostContentViewConstants.js +2 -0
  283. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/changeHostCVModal.test.js +131 -0
  284. data/webpack/components/extensions/HostDetails/Cards/{__tests__ → ContentViewDetailsCard/__tests__}/contentViewDetailsCard.test.js +22 -0
  285. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/contentViews.fixtures.json +443 -0
  286. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard/__tests__/envPaths.fixtures.json +320 -0
  287. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +57 -33
  288. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.scss +3 -0
  289. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsActions.js +30 -0
  290. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsCard.js +187 -0
  291. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsConstants.js +7 -0
  292. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsModal.js +227 -0
  293. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/HostCollectionsSelectors.js +18 -0
  294. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/availableHostCollections.fixtures.json +106 -0
  295. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsCard.test.js +110 -0
  296. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/hostCollectionsModal.test.js +235 -0
  297. data/webpack/components/extensions/HostDetails/Cards/HostCollectionsCard/__tests__/removableHostCollections.fixtures.json +45 -0
  298. data/webpack/components/extensions/HostDetails/Cards/__tests__/errataOverviewCard.test.js +33 -8
  299. data/webpack/components/extensions/HostDetails/DetailsTabCards/InstalledProductsCard.js +44 -0
  300. data/webpack/components/extensions/HostDetails/DetailsTabCards/RegistrationCard.js +107 -0
  301. data/webpack/components/extensions/HostDetails/DetailsTabCards/SystemPropertiesCardExtensions.js +38 -0
  302. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/ErrataTab.js +62 -39
  303. data/webpack/components/extensions/HostDetails/Tabs/ErrataTab/HostErrataActions.js +1 -7
  304. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsActions.js +1 -3
  305. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsConstants.js +28 -0
  306. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/ModuleStreamsTab.js +486 -116
  307. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/moduleStreamsTab.test.js +147 -1
  308. data/webpack/components/extensions/HostDetails/Tabs/ModuleStreamsTab/__tests__/modules.fixtures.json +6 -3
  309. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/HostPackagesActions.js +1 -7
  310. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackageInstallModal.js +2 -1
  311. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab/PackagesTab.js +48 -19
  312. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +35 -47
  313. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +1 -0
  314. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsActions.js +33 -54
  315. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsConstants.js +20 -0
  316. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +269 -132
  317. data/webpack/components/extensions/HostDetails/Tabs/TracesTab/TracesTab.js +47 -11
  318. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +30 -42
  319. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +36 -1
  320. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +94 -46
  321. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +18 -2
  322. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +6 -0
  323. data/webpack/containers/Application/config.js +5 -0
  324. data/webpack/global_index.js +30 -7
  325. data/webpack/global_test_setup.js +13 -0
  326. data/webpack/redux/actions/RedHatRepositories/enabled.js +2 -1
  327. data/webpack/redux/actions/RedHatRepositories/helpers.js +9 -8
  328. data/webpack/scenes/AlternateContentSources/ACSActions.js +53 -0
  329. data/webpack/scenes/AlternateContentSources/ACSConstants.js +4 -0
  330. data/webpack/scenes/AlternateContentSources/ACSIndexPage.js +23 -0
  331. data/webpack/scenes/AlternateContentSources/ACSSelectors.js +15 -0
  332. data/webpack/scenes/AlternateContentSources/MainTable/ACSTable.js +152 -0
  333. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsIndex.fixtures.json +91 -0
  334. data/webpack/scenes/AlternateContentSources/MainTable/__tests__/acsTable.test.js +67 -0
  335. data/webpack/scenes/AlternateContentSources/index.js +4 -0
  336. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -0
  337. data/webpack/scenes/Content/Table/ContentTable.js +1 -0
  338. data/webpack/scenes/ContentViews/ContentViewsActions.js +6 -2
  339. data/webpack/scenes/ContentViews/ContentViewsConstants.js +11 -3
  340. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +2 -1
  341. data/webpack/scenes/ContentViews/Create/ContentViewFormComponents.js +10 -1
  342. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +4 -3
  343. data/webpack/scenes/ContentViews/Create/__tests__/createContentView.test.js +1 -1
  344. data/webpack/scenes/ContentViews/Delete/ContentViewDeleteWizard.js +7 -5
  345. data/webpack/scenes/ContentViews/Delete/Steps/CVDeletionFinish.js +29 -21
  346. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +15 -8
  347. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +3 -3
  348. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewBulkAddModal.js +4 -4
  349. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +3 -1
  350. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +4 -4
  351. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +34 -8
  352. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +33 -29
  353. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +130 -79
  354. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +17 -3
  355. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +2 -1
  356. data/webpack/scenes/ContentViews/Details/Filters/AffectedRepositories/AffectedRepositoryTable.js +2 -1
  357. data/webpack/scenes/ContentViews/Details/Filters/CVContainerImageFilterContent.js +6 -1
  358. data/webpack/scenes/ContentViews/Details/Filters/CVErrataDateFilterContent.js +41 -21
  359. data/webpack/scenes/ContentViews/Details/Filters/CVErrataIDFilterContent.js +38 -20
  360. data/webpack/scenes/ContentViews/Details/Filters/CVModuleStreamFilterContent.js +2 -0
  361. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -1
  362. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +9 -1
  363. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +2 -1
  364. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/CVRpmMatchContentModal.js +1 -0
  365. data/webpack/scenes/ContentViews/Details/Filters/Rules/ContainerTag/AddEditContainerTagRuleModal.js +27 -12
  366. data/webpack/scenes/ContentViews/Details/Filters/Rules/Package/AddEditPackageRuleModal.js +39 -17
  367. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +27 -10
  368. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +46 -23
  369. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +3 -2
  370. data/webpack/scenes/ContentViews/Details/Promote/ContentViewVersionPromote.js +5 -2
  371. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +161 -108
  372. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +7 -7
  373. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewRepoAdd.fixture.json +1 -0
  374. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/ActionSummary.js +58 -0
  375. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteContextWrapper.js +45 -0
  376. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteHelpers.js +30 -0
  377. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/BulkDeleteModal.js +56 -0
  378. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ConfirmBulkDelete.js +126 -0
  379. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/FinishBulkDelete.js +61 -0
  380. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignActivationKeys.js +196 -0
  381. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReassignHosts.js +220 -0
  382. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/Steps/ReviewEnvironments.js +104 -0
  383. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteModal.test.js +122 -0
  384. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/BulkDeleteVersions.fixtures.json +600 -0
  385. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentView.fixtures.json +1504 -0
  386. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/contentViewVersion.fixtures.json +936 -0
  387. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/environmentPaths.fixtures.json +261 -0
  388. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/__tests__/hosts.fixtures.json +163 -0
  389. data/webpack/scenes/ContentViews/Details/Versions/BulkDelete/bulkDeleteSteps.js +79 -0
  390. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +192 -167
  391. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveCVVersionWizard.js +2 -5
  392. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionDeleteFinish.js +38 -53
  393. data/webpack/scenes/ContentViews/Details/Versions/Delete/RemoveSteps/CVVersionRemoveReview.js +1 -1
  394. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -12
  395. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedActivationKeys.js +1 -0
  396. data/webpack/scenes/ContentViews/Details/Versions/Delete/affectedHosts.js +1 -0
  397. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +1 -0
  398. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +8 -20
  399. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +23 -13
  400. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsTable.js +3 -0
  401. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.fixtures.json +4 -4
  402. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +0 -3
  403. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetailsEmpty.test.js +4 -4
  404. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +12 -14
  405. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetails.fixtures.json +1 -0
  406. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +96 -117
  407. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +13 -19
  408. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +9 -20
  409. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +165 -148
  410. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +2 -0
  411. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +4 -4
  412. data/webpack/scenes/ContentViews/components/ContentViewIcon.js +14 -3
  413. data/webpack/scenes/ContentViews/components/ContentViewsCounter.js +1 -1
  414. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +4 -3
  415. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +9 -5
  416. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +6 -1
  417. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +40 -35
  418. data/webpack/scenes/ContentViews/expansions/DetailsExpansion.js +2 -2
  419. data/webpack/scenes/ContentViews/expansions/RelatedCompositeContentViewsModal.js +1 -1
  420. data/webpack/scenes/ContentViews/expansions/RelatedContentViewComponentsModal.js +4 -4
  421. data/webpack/scenes/ContentViews/expansions/__tests__/contentViewComponentsModal.test.js +1 -1
  422. data/webpack/scenes/ContentViews/helpers.js +3 -0
  423. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +5 -0
  424. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +3 -3
  425. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepository.js +2 -1
  426. data/webpack/scenes/RedHatRepositories/components/EnabledRepository/__tests__/EnabledRepository.test.js +2 -0
  427. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +3 -3
  428. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +2 -0
  429. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{AirGappedTypeForm.js → ExportSyncForm.js} +7 -6
  430. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/{UpstreamServerTypeForm.js → NetworkSyncForm.js} +15 -7
  431. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{AirGappedTypeForm.test.js → ExportSyncForm.test.js} +4 -4
  432. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/{UpstreamServerTypeForm.test.js → NetworkSyncForm.test.js} +8 -8
  433. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +11 -11
  434. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -0
  435. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -7
  436. data/webpack/scenes/Tasks/TaskActions.js +6 -0
  437. data/webpack/scenes/Tasks/TaskSelectors.js +11 -0
  438. data/webpack/scenes/Tasks/helpers.js +33 -5
  439. data/webpack/utils/helpers.js +2 -0
  440. metadata +158 -40
  441. data/app/models/setting/content.rb +0 -201
  442. data/webpack/components/Table/__test__/useBulkSelect.test.js +0 -99
  443. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +0 -96
  444. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +0 -36
data/locale/pa/katello.po CHANGED
@@ -4,14 +4,14 @@
4
4
  # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
  #
6
6
  # Translators:
7
- # 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2022
8
8
  #
9
9
  msgid ""
10
10
  msgstr ""
11
11
  "Project-Id-Version: katello 2.5.0\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
13
  "PO-Revision-Date: 2017-12-19 20:14+0000\n"
14
- "Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2021\n"
14
+ "Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2022\n"
15
15
  "Language-Team: Panjabi (Punjabi) (https://www.transifex.com/foreman/teams/114/"
16
16
  "pa/)\n"
17
17
  "MIME-Version: 1.0\n"
@@ -52,6 +52,9 @@ msgstr ""
52
52
  msgid " ago."
53
53
  msgstr ""
54
54
 
55
+ msgid " and"
56
+ msgstr ""
57
+
55
58
  msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
56
59
  msgstr ""
57
60
 
@@ -114,6 +117,9 @@ msgstr ""
114
117
  msgid "%s is not a valid package name"
115
118
  msgstr ""
116
119
 
120
+ msgid "%s is not a valid path"
121
+ msgstr ""
122
+
117
123
  msgid "%s is required"
118
124
  msgstr ""
119
125
 
@@ -363,9 +369,6 @@ msgstr ""
363
369
  msgid "A post-promotion summary of hosts with installable errata"
364
370
  msgstr ""
365
371
 
366
- msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
367
- msgstr ""
368
-
369
372
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
370
373
  msgstr ""
371
374
 
@@ -384,12 +387,18 @@ msgstr ""
384
387
  msgid "About page"
385
388
  msgstr ""
386
389
 
390
+ msgid "Abstract"
391
+ msgstr ""
392
+
387
393
  msgid "Abstract async task"
388
394
  msgstr ""
389
395
 
390
396
  msgid "Accept action timeout"
391
397
  msgstr ""
392
398
 
399
+ msgid "Access to Red Hat Subscription Management is prohibited. If you would like to change this, please update the content setting 'Subscription connection enabled'."
400
+ msgstr ""
401
+
393
402
  msgid "Account Number"
394
403
  msgstr ""
395
404
 
@@ -408,10 +417,10 @@ msgstr ""
408
417
  msgid "Action with sub plans"
409
418
  msgstr ""
410
419
 
411
- msgid "Actions"
420
+ msgid "Activation Keys"
412
421
  msgstr ""
413
422
 
414
- msgid "Activation Keys"
423
+ msgid "Activation key"
415
424
  msgstr ""
416
425
 
417
426
  msgid "Activation key ID"
@@ -480,6 +489,12 @@ msgstr ""
480
489
  msgid "Add filters using the 'Add filter' button above."
481
490
  msgstr ""
482
491
 
492
+ msgid "Add host to collections"
493
+ msgstr ""
494
+
495
+ msgid "Add host to host collections"
496
+ msgstr ""
497
+
483
498
  msgid "Add host to the host collection"
484
499
  msgstr ""
485
500
 
@@ -504,6 +519,9 @@ msgstr ""
504
519
  msgid "Add rule"
505
520
  msgstr ""
506
521
 
522
+ msgid "Add source"
523
+ msgstr ""
524
+
507
525
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
508
526
  msgstr ""
509
527
 
@@ -516,9 +534,6 @@ msgstr ""
516
534
  msgid "Add to this filter using the 'Add filter rule' button."
517
535
  msgstr ""
518
536
 
519
- msgid "Add traces by applying updates on this host."
520
- msgstr ""
521
-
522
537
  msgid "Added"
523
538
  msgstr ""
524
539
 
@@ -561,28 +576,52 @@ msgstr ""
561
576
  msgid "All errata applied"
562
577
  msgstr ""
563
578
 
579
+ msgid "All errata up-to-date"
580
+ msgstr ""
581
+
582
+ msgid "All subpaths must have a slash at the end and none at the front"
583
+ msgstr ""
584
+
564
585
  msgid "All versions"
565
586
  msgstr ""
566
587
 
567
588
  msgid "All versions will be removed from these environments"
568
589
  msgstr ""
569
590
 
570
- msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
591
+ msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
571
592
  msgstr ""
572
593
 
573
- msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
594
+ msgid "Allow deleting repositories in published content views"
595
+ msgstr ""
596
+
597
+ msgid "Allow host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
574
598
  msgstr ""
575
599
 
576
600
  msgid "Allow hosts to re-register themselves only when they are in build mode"
577
601
  msgstr ""
578
602
 
579
- msgid "Allow new Host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
603
+ msgid "Allow new host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
580
604
  msgstr ""
581
605
 
582
606
  msgid "Also include the latest upgradable package version for each host package"
583
607
  msgstr ""
584
608
 
585
- msgid "Alter a hosts host collections"
609
+ msgid "Alter a host's host collections"
610
+ msgstr ""
611
+
612
+ msgid "Alternate Content Sources"
613
+ msgstr ""
614
+
615
+ msgid "Alternate content source ${name} created"
616
+ msgstr ""
617
+
618
+ msgid "Alternate content source ID"
619
+ msgstr ""
620
+
621
+ msgid "Alternate content source deleted"
622
+ msgstr ""
623
+
624
+ msgid "Alternate content sources"
586
625
  msgstr ""
587
626
 
588
627
  msgid "Always Use Latest (currently %{version})"
@@ -594,6 +633,9 @@ msgstr ""
594
633
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
595
634
  msgstr ""
596
635
 
636
+ msgid "An alternate content source can be added by using the \"Add source\" button above."
637
+ msgstr ""
638
+
597
639
  msgid "An environment is missing a prior"
598
640
  msgstr ""
599
641
 
@@ -735,6 +777,9 @@ msgstr ""
735
777
  msgid "Associated location IDs"
736
778
  msgstr ""
737
779
 
780
+ msgid "Associated version"
781
+ msgstr ""
782
+
738
783
  msgid "Associations"
739
784
  msgstr ""
740
785
 
@@ -801,6 +846,9 @@ msgstr ""
801
846
  msgid "Backend System Status"
802
847
  msgstr ""
803
848
 
849
+ msgid "Base URL for finding alternate content"
850
+ msgstr ""
851
+
804
852
  msgid "Base URL to perform repo discovery on"
805
853
  msgstr ""
806
854
 
@@ -810,9 +858,21 @@ msgstr ""
810
858
  msgid "Basearch to enable"
811
859
  msgstr ""
812
860
 
861
+ msgid "Basic authentication password"
862
+ msgstr ""
863
+
864
+ msgid "Basic authentication username"
865
+ msgstr ""
866
+
813
867
  msgid "Batch size to sync repositories in."
814
868
  msgstr ""
815
869
 
870
+ msgid "Before removing versions you must move activation keys to an environment where the associated version is not in use."
871
+ msgstr ""
872
+
873
+ msgid "Before removing versions you must move hosts to an environment where the associated version is not in use. "
874
+ msgstr ""
875
+
816
876
  msgid "Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host."
817
877
  msgstr ""
818
878
 
@@ -849,6 +909,9 @@ msgstr ""
849
909
  msgid "Bulk generate applicability for hosts"
850
910
  msgstr ""
851
911
 
912
+ msgid "Bulk remove versions from a content view and reassign systems and keys"
913
+ msgstr ""
914
+
852
915
  msgid "CDN Configuration"
853
916
  msgstr ""
854
917
 
@@ -861,6 +924,12 @@ msgstr ""
861
924
  msgid "CDN SSL version"
862
925
  msgstr ""
863
926
 
927
+ msgid "CDN configuration is set to Export Sync (disconnected). Repository enablement/disablement is not permitted on this page."
928
+ msgstr ""
929
+
930
+ msgid "CDN configuration type. One of %s."
931
+ msgstr ""
932
+
864
933
  msgid "CDN loading error: %s not found"
865
934
  msgstr ""
866
935
 
@@ -882,7 +951,10 @@ msgstr ""
882
951
  msgid "Calculate Applicable Errata based on a particular Environment"
883
952
  msgstr ""
884
953
 
885
- msgid "Calculate errata host status based only on errata in a Host's Content View and Lifecycle Environment"
954
+ msgid "Calculate errata host status based only on errata in a host's content view and lifecycle environment"
955
+ msgstr ""
956
+
957
+ msgid "Can communicate with the Red Hat Portal for subscriptions."
886
958
  msgstr ""
887
959
 
888
960
  msgid "Can not add product %s because it is disabled."
@@ -1005,6 +1077,9 @@ msgstr ""
1005
1077
  msgid "Cannot perform an incremental update on a Composite Content View Version (%{name} version version %{version}"
1006
1078
  msgstr ""
1007
1079
 
1080
+ msgid "Cannot perform an incremental update on a Generated Content View Version (%{name} version version %{version}"
1081
+ msgstr ""
1082
+
1008
1083
  msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
1009
1084
  msgstr ""
1010
1085
 
@@ -1056,6 +1131,18 @@ msgstr ""
1056
1131
  msgid "Cannot validate contents on non-yum/deb repositories."
1057
1132
  msgstr ""
1058
1133
 
1134
+ msgid "Capacity"
1135
+ msgstr ""
1136
+
1137
+ msgid "Change Content Source"
1138
+ msgstr ""
1139
+
1140
+ msgid "Change content source"
1141
+ msgstr ""
1142
+
1143
+ msgid "Change host content source"
1144
+ msgstr ""
1145
+
1059
1146
  msgid "Check if a connection can be made to Red Hat Subscription Management."
1060
1147
  msgstr ""
1061
1148
 
@@ -1068,6 +1155,9 @@ msgstr ""
1068
1155
  msgid "Checksum"
1069
1156
  msgstr ""
1070
1157
 
1158
+ msgid "Checksum is a required parameter."
1159
+ msgstr ""
1160
+
1071
1161
  msgid "Checksum of file to upload"
1072
1162
  msgstr ""
1073
1163
 
@@ -1083,6 +1173,9 @@ msgstr ""
1083
1173
  msgid "Click here to go to the tasks page for the task."
1084
1174
  msgstr ""
1085
1175
 
1176
+ msgid "Click {update} below to save changes."
1177
+ msgstr ""
1178
+
1086
1179
  msgid "Clone"
1087
1180
  msgstr "ਕਲੋਨ"
1088
1181
 
@@ -1098,7 +1191,13 @@ msgstr ""
1098
1191
  msgid "Combined Profile Update for %s"
1099
1192
  msgstr ""
1100
1193
 
1101
- msgid "Comma-separated list of tags to sync for Container Image repository"
1194
+ msgid "Comma-separated list of tags to exclude when syncing a container image repository. Default: any tag ending in \"-source\""
1195
+ msgstr ""
1196
+
1197
+ msgid "Comma-separated list of tags to sync for Container Image repository (Deprecated)"
1198
+ msgstr ""
1199
+
1200
+ msgid "Comma-separated list of tags to sync for a container image repository"
1102
1201
  msgstr ""
1103
1202
 
1104
1203
  msgid "Component"
@@ -1185,6 +1284,9 @@ msgstr ""
1185
1284
  msgid "Container manifests"
1186
1285
  msgstr ""
1187
1286
 
1287
+ msgid "Container tags"
1288
+ msgstr ""
1289
+
1188
1290
  msgid "Content"
1189
1291
  msgstr ""
1190
1292
 
@@ -1197,7 +1299,7 @@ msgstr ""
1197
1299
  msgid "Content Credential numeric identifier"
1198
1300
  msgstr ""
1199
1301
 
1200
- msgid "Content Credential to use for SSL CA"
1302
+ msgid "Content Credential to use for SSL CA. Relevant only for 'upstream_server' type."
1201
1303
  msgstr ""
1202
1304
 
1203
1305
  msgid "Content Credentials"
@@ -1230,9 +1332,6 @@ msgstr ""
1230
1332
  msgid "Content View %{view}: Versions: %{versions}"
1231
1333
  msgstr ""
1232
1334
 
1233
- msgid "Content View Dependency Solving Default"
1234
- msgstr ""
1235
-
1236
1335
  msgid "Content View Details"
1237
1336
  msgstr ""
1238
1337
 
@@ -1245,9 +1344,6 @@ msgstr ""
1245
1344
  msgid "Content View ID"
1246
1345
  msgstr ""
1247
1346
 
1248
- msgid "Content View Label"
1249
- msgstr ""
1250
-
1251
1347
  msgid "Content View Name"
1252
1348
  msgstr ""
1253
1349
 
@@ -1272,6 +1368,9 @@ msgstr ""
1272
1368
  msgid "Content View id"
1273
1369
  msgstr ""
1274
1370
 
1371
+ msgid "Content View label not provided."
1372
+ msgstr ""
1373
+
1275
1374
  msgid "Content Views"
1276
1375
  msgstr ""
1277
1376
 
@@ -1284,15 +1383,21 @@ msgstr ""
1284
1383
  msgid "Content hosts"
1285
1384
  msgstr ""
1286
1385
 
1287
- msgid "Content imported from %{path} into content view '%{name}' by %{user}"
1386
+ msgid "Content imported by %{user} into content view '%{name}'"
1288
1387
  msgstr ""
1289
1388
 
1290
1389
  msgid "Content not uploaded to pulp"
1291
1390
  msgstr ""
1292
1391
 
1392
+ msgid "Content override search parameters"
1393
+ msgstr ""
1394
+
1293
1395
  msgid "Content source ID"
1294
1396
  msgstr ""
1295
1397
 
1398
+ msgid "Content source successfully updated."
1399
+ msgstr ""
1400
+
1296
1401
  msgid "Content source was not set for host '%{host}'"
1297
1402
  msgstr ""
1298
1403
 
@@ -1368,6 +1473,9 @@ msgstr ""
1368
1473
  msgid "Contract Number"
1369
1474
  msgstr ""
1370
1475
 
1476
+ msgid "Copied to clipboard"
1477
+ msgstr ""
1478
+
1371
1479
  msgid "Copy"
1372
1480
  msgstr ""
1373
1481
 
@@ -1377,6 +1485,9 @@ msgstr ""
1377
1485
  msgid "Copy content view"
1378
1486
  msgstr ""
1379
1487
 
1488
+ msgid "Copy to clipboard"
1489
+ msgstr ""
1490
+
1380
1491
  msgid "Copy version units to library"
1381
1492
  msgstr ""
1382
1493
 
@@ -1488,6 +1599,9 @@ msgstr ""
1488
1599
  msgid "Couldn't find repository '%s'"
1489
1600
  msgstr ""
1490
1601
 
1602
+ msgid "Couldn't find smart proxies with id '%s'"
1603
+ msgstr ""
1604
+
1491
1605
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1492
1606
  msgstr ""
1493
1607
 
@@ -1500,6 +1614,9 @@ msgstr ""
1500
1614
  msgid "Create"
1501
1615
  msgstr ""
1502
1616
 
1617
+ msgid "Create Alternate Content Source"
1618
+ msgstr ""
1619
+
1503
1620
  msgid "Create Export History"
1504
1621
  msgstr ""
1505
1622
 
@@ -1536,6 +1653,9 @@ msgstr ""
1536
1653
  msgid "Create a sync plan"
1537
1654
  msgstr ""
1538
1655
 
1656
+ msgid "Create an ACS"
1657
+ msgstr ""
1658
+
1539
1659
  msgid "Create an activation key"
1540
1660
  msgstr ""
1541
1661
 
@@ -1581,6 +1701,9 @@ msgstr ""
1581
1701
  msgid "Custom repositories cannot be disabled."
1582
1702
  msgstr ""
1583
1703
 
1704
+ msgid "Customize with Rex"
1705
+ msgstr ""
1706
+
1584
1707
  msgid "Database connection"
1585
1708
  msgstr ""
1586
1709
 
@@ -1617,13 +1740,10 @@ msgstr ""
1617
1740
  msgid "Default Custom Repository download policy"
1618
1741
  msgstr ""
1619
1742
 
1620
- msgid "Default HTTP Proxy for syncing content"
1621
- msgstr ""
1622
-
1623
- msgid "Default HTTP proxy"
1743
+ msgid "Default HTTP Proxy"
1624
1744
  msgstr ""
1625
1745
 
1626
- msgid "Default Location subscribed hosts"
1746
+ msgid "Default HTTP proxy for syncing content"
1627
1747
  msgstr ""
1628
1748
 
1629
1749
  msgid "Default Location where new subscribed hosts will put upon registration"
@@ -1668,6 +1788,9 @@ msgstr ""
1668
1788
  msgid "Default kexec template for new Operating Systems created from synced content"
1669
1789
  msgstr ""
1670
1790
 
1791
+ msgid "Default location for subscribed hosts"
1792
+ msgstr ""
1793
+
1671
1794
  msgid "Default partitioning table for new Operating Systems created from synced content"
1672
1795
  msgstr ""
1673
1796
 
@@ -1770,6 +1893,9 @@ msgstr ""
1770
1893
  msgid "Delete version"
1771
1894
  msgstr ""
1772
1895
 
1896
+ msgid "Delete versions"
1897
+ msgstr ""
1898
+
1773
1899
  msgid "Deleted consumer '%s'"
1774
1900
  msgstr ""
1775
1901
 
@@ -1785,9 +1911,18 @@ msgstr ""
1785
1911
  msgid "Deleting manifest in '%{subject}' failed."
1786
1912
  msgstr ""
1787
1913
 
1914
+ msgid "Deleting version {versionList}"
1915
+ msgstr ""
1916
+
1917
+ msgid "Deleting versions: {versionList}"
1918
+ msgstr ""
1919
+
1788
1920
  msgid "Description"
1789
1921
  msgstr "ਵਰਣਨ"
1790
1922
 
1923
+ msgid "Description for the alternate content source"
1924
+ msgstr ""
1925
+
1791
1926
  msgid "Description for the content view"
1792
1927
  msgstr ""
1793
1928
 
@@ -1809,6 +1944,9 @@ msgstr ""
1809
1944
  msgid "Destroy"
1810
1945
  msgstr "ਨਸ਼ਟ"
1811
1946
 
1947
+ msgid "Destroy Alternate Content Source"
1948
+ msgstr ""
1949
+
1812
1950
  msgid "Destroy Content Host"
1813
1951
  msgstr ""
1814
1952
 
@@ -1833,6 +1971,9 @@ msgstr ""
1833
1971
  msgid "Destroy an activation key"
1834
1972
  msgstr ""
1835
1973
 
1974
+ msgid "Destroy an alternate content source"
1975
+ msgstr ""
1976
+
1836
1977
  msgid "Destroy an environment"
1837
1978
  msgstr ""
1838
1979
 
@@ -1872,18 +2013,18 @@ msgstr ""
1872
2013
  msgid "Disable a repository from the set"
1873
2014
  msgstr ""
1874
2015
 
2016
+ msgid "Disable module stream"
2017
+ msgstr ""
2018
+
1875
2019
  msgid "Disable simple content access for a manifest"
1876
2020
  msgstr ""
1877
2021
 
1878
2022
  msgid "Disabled"
1879
- msgstr ""
2023
+ msgstr "ਅਯੋਗ ਕੀਤਾ ਗਿਆ"
1880
2024
 
1881
2025
  msgid "Disabling Simple Content Access failed for '%{subject}'."
1882
2026
  msgstr ""
1883
2027
 
1884
- msgid "Disconnected mode"
1885
- msgstr ""
1886
-
1887
2028
  msgid "Discover"
1888
2029
  msgstr ""
1889
2030
 
@@ -1899,9 +2040,6 @@ msgstr ""
1899
2040
  msgid "Do not wait for the update action to finish. Default: true"
1900
2041
  msgstr ""
1901
2042
 
1902
- msgid "Docker Tags"
1903
- msgstr ""
1904
-
1905
2043
  msgid "Domain IDs"
1906
2044
  msgstr ""
1907
2045
 
@@ -1911,6 +2049,9 @@ msgstr ""
1911
2049
  msgid "Download a debug certificate"
1912
2050
  msgstr ""
1913
2051
 
2052
+ msgid "Download rate limit"
2053
+ msgstr ""
2054
+
1914
2055
  msgid "Duplicate artifact detected"
1915
2056
  msgstr ""
1916
2057
 
@@ -1926,6 +2067,9 @@ msgstr "ਸੋਧ"
1926
2067
  msgid "Edit RPM rule"
1927
2068
  msgstr ""
1928
2069
 
2070
+ msgid "Edit content view assignment"
2071
+ msgstr ""
2072
+
1929
2073
  msgid "Edit filter rule"
1930
2074
  msgstr ""
1931
2075
 
@@ -1989,6 +2133,9 @@ msgstr ""
1989
2133
  msgid "End Date"
1990
2134
  msgstr ""
1991
2135
 
2136
+ msgid "End date"
2137
+ msgstr ""
2138
+
1992
2139
  msgid "Ends"
1993
2140
  msgstr ""
1994
2141
 
@@ -1998,6 +2145,9 @@ msgstr ""
1998
2145
  msgid "Enter a name"
1999
2146
  msgstr ""
2000
2147
 
2148
+ msgid "Enter a valid date: MM/DD/YYYY"
2149
+ msgstr ""
2150
+
2001
2151
  msgid "Entitlements"
2002
2152
  msgstr ""
2003
2153
 
@@ -2016,6 +2166,9 @@ msgstr ""
2016
2166
  msgid "Environments"
2017
2167
  msgstr "ਇਨਵਾਇਰਮੈਂਟ"
2018
2168
 
2169
+ msgid "Epoch"
2170
+ msgstr ""
2171
+
2019
2172
  msgid "Equal to"
2020
2173
  msgstr ""
2021
2174
 
@@ -2073,6 +2226,9 @@ msgstr ""
2073
2226
  msgid "Error connecting. Got: %s"
2074
2227
  msgstr ""
2075
2228
 
2229
+ msgid "Error loading content views"
2230
+ msgstr ""
2231
+
2076
2232
  msgid "Error refreshing status for %s: "
2077
2233
  msgstr ""
2078
2234
 
@@ -2121,6 +2277,12 @@ msgstr ""
2121
2277
  msgid "Export Library"
2122
2278
  msgstr ""
2123
2279
 
2280
+ msgid "Export Repository"
2281
+ msgstr ""
2282
+
2283
+ msgid "Export Sync"
2284
+ msgstr ""
2285
+
2124
2286
  msgid "Export Types"
2125
2287
  msgstr ""
2126
2288
 
@@ -2145,6 +2307,9 @@ msgstr "ਫੇਲ ਹੋਇਆ ਹੈ"
2145
2307
  msgid "Failed to delete %{host}: %{errors}"
2146
2308
  msgstr ""
2147
2309
 
2310
+ msgid "Failed to delete latest content view version of Content View '%{subject}'."
2311
+ msgstr ""
2312
+
2148
2313
  msgid "Failed to download %s package."
2149
2314
  msgid_plural "Failed to download %s packages."
2150
2315
  msgstr[0] ""
@@ -2332,6 +2497,15 @@ msgstr ""
2332
2497
  msgid "Generate repository applicability"
2333
2498
  msgstr ""
2334
2499
 
2500
+ msgid "Generated"
2501
+ msgstr ""
2502
+
2503
+ msgid "Generated Content views cannot be assigned to Host/Activation Keys"
2504
+ msgstr ""
2505
+
2506
+ msgid "Generated content views cannot be directly published. They can updated only via export."
2507
+ msgstr ""
2508
+
2335
2509
  msgid "Get all content available, not just that provided by subscriptions"
2336
2510
  msgstr ""
2337
2511
 
@@ -2368,6 +2542,9 @@ msgstr ""
2368
2542
  msgid "Given criteria doesn't match any hosts. Try changing your rule."
2369
2543
  msgstr ""
2370
2544
 
2545
+ msgid "Go to job details"
2546
+ msgstr ""
2547
+
2371
2548
  msgid "Go to task page"
2372
2549
  msgstr ""
2373
2550
 
@@ -2392,6 +2569,12 @@ msgstr ""
2392
2569
  msgid "Helper"
2393
2570
  msgstr ""
2394
2571
 
2572
+ msgid "Hide affected activation keys"
2573
+ msgstr ""
2574
+
2575
+ msgid "Hide affected hosts"
2576
+ msgstr ""
2577
+
2395
2578
  msgid "Hide description"
2396
2579
  msgstr ""
2397
2580
 
@@ -2443,15 +2626,27 @@ msgstr ""
2443
2626
  msgid "Host Tasks Workers Pool Size"
2444
2627
  msgstr ""
2445
2628
 
2629
+ msgid "Host collection"
2630
+ msgstr ""
2631
+
2446
2632
  msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
2447
2633
  msgstr ""
2448
2634
 
2449
2635
  msgid "Host collection is empty."
2450
2636
  msgstr ""
2451
2637
 
2638
+ msgid "Host collections"
2639
+ msgstr ""
2640
+
2641
+ msgid "Host collections updated"
2642
+ msgstr ""
2643
+
2452
2644
  msgid "Host content and subscription details"
2453
2645
  msgstr ""
2454
2646
 
2647
+ msgid "Host content view and environment updated"
2648
+ msgstr ""
2649
+
2455
2650
  msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
2456
2651
  msgstr ""
2457
2652
 
@@ -2503,7 +2698,7 @@ msgstr ""
2503
2698
  msgid "Hosts: "
2504
2699
  msgstr ""
2505
2700
 
2506
- msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2701
+ msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2507
2702
  msgstr ""
2508
2703
 
2509
2704
  msgid "How to order the sorted results (e.g. ASC for ascending)"
@@ -2566,12 +2761,18 @@ msgstr ""
2566
2761
  msgid "ID of the repository set to enable"
2567
2762
  msgstr ""
2568
2763
 
2764
+ msgid "ID of the repository within the set to disable"
2765
+ msgstr ""
2766
+
2569
2767
  msgid "ID of the sync plan"
2570
2768
  msgstr ""
2571
2769
 
2572
2770
  msgid "ID: %s doesn't exist "
2573
2771
  msgstr ""
2574
2772
 
2773
+ msgid "Id"
2774
+ msgstr ""
2775
+
2575
2776
  msgid "Id of a deb package to find repositories that contain the deb"
2576
2777
  msgstr ""
2577
2778
 
@@ -2644,16 +2845,22 @@ msgstr ""
2644
2845
  msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
2645
2846
  msgstr ""
2646
2847
 
2848
+ msgid "Ids of smart proxies to associate"
2849
+ msgstr ""
2850
+
2647
2851
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2648
2852
  msgstr ""
2649
2853
 
2650
- msgid "If hosts fail to register because of duplicate DMI UUIDs add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2854
+ msgid "If SSL should be verified for the upstream URL"
2855
+ msgstr ""
2856
+
2857
+ msgid "If hosts fail to register because of duplicate DMI UUIDs, add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2651
2858
  msgstr ""
2652
2859
 
2653
2860
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2654
2861
  msgstr ""
2655
2862
 
2656
- msgid "If this is enabled, a composite content view may not be published or promoted, unless the component content view versions that it includes exist in the target environment."
2863
+ msgid "If this is enabled, a composite content view may not be published or promoted unless the component content view versions that it includes exist in the target environment."
2657
2864
  msgstr ""
2658
2865
 
2659
2866
  msgid "If this is enabled, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
@@ -2662,6 +2869,9 @@ msgstr ""
2662
2869
  msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
2663
2870
  msgstr ""
2664
2871
 
2872
+ msgid "If this is enabled, repositories can be deleted even when they belong to published content views. The deleted repository will be removed from all content view versions."
2873
+ msgstr ""
2874
+
2665
2875
  msgid "If true, only return repository sets that are associated with an active subscriptions"
2666
2876
  msgstr ""
2667
2877
 
@@ -2677,6 +2887,9 @@ msgstr ""
2677
2887
  msgid "If true, will publish a new composite version using any specified content_view_version_id that has been promoted to a lifecycle environment"
2678
2888
  msgstr ""
2679
2889
 
2890
+ msgid "If you would prefer to move some of these hosts to different content views or environments then {clickHere} to manage these hosts individually."
2891
+ msgstr ""
2892
+
2680
2893
  msgid "Ignorable content can be only set for Yum repositories."
2681
2894
  msgstr ""
2682
2895
 
@@ -2713,6 +2926,9 @@ msgstr ""
2713
2926
  msgid "Import Puppet classes"
2714
2927
  msgstr ""
2715
2928
 
2929
+ msgid "Import Repository"
2930
+ msgstr ""
2931
+
2716
2932
  msgid "Import Types"
2717
2933
  msgstr ""
2718
2934
 
@@ -2734,12 +2950,18 @@ msgstr ""
2734
2950
  msgid "Import a content view version to the library"
2735
2951
  msgstr ""
2736
2952
 
2953
+ msgid "Import a repository"
2954
+ msgstr ""
2955
+
2737
2956
  msgid "Import facts"
2738
2957
  msgstr ""
2739
2958
 
2740
2959
  msgid "Import only"
2741
2960
  msgstr ""
2742
2961
 
2962
+ msgid "Import only Content Views cannot be directly publsihed. Content can only be updated by importing into the view."
2963
+ msgstr ""
2964
+
2743
2965
  msgid "Import uploads into a repository"
2744
2966
  msgstr ""
2745
2967
 
@@ -2749,9 +2971,12 @@ msgstr ""
2749
2971
  msgid "Import-only content views can not be published directly"
2750
2972
  msgstr ""
2751
2973
 
2752
- msgid "Important"
2974
+ msgid "Import/Export"
2753
2975
  msgstr ""
2754
2976
 
2977
+ msgid "Important"
2978
+ msgstr "ਖਾਸ"
2979
+
2755
2980
  msgid "Importing manifest into '%{subject}' failed."
2756
2981
  msgstr ""
2757
2982
 
@@ -2770,6 +2995,9 @@ msgstr ""
2770
2995
  msgid "Include all RPMs with no errata."
2771
2996
  msgstr ""
2772
2997
 
2998
+ msgid "Include content views generated by imports/exports. Defaults to false"
2999
+ msgstr ""
3000
+
2773
3001
  msgid "Include filter"
2774
3002
  msgstr ""
2775
3003
 
@@ -2830,6 +3058,9 @@ msgstr ""
2830
3058
  msgid "Initiate a sync of the products attached to the sync plan"
2831
3059
  msgstr ""
2832
3060
 
3061
+ msgid "Install"
3062
+ msgstr ""
3063
+
2833
3064
  msgid "Install Applicable Errata"
2834
3065
  msgstr ""
2835
3066
 
@@ -2839,6 +3070,9 @@ msgstr ""
2839
3070
  msgid "Install content on one or more hosts using katello-agent. %s"
2840
3071
  msgstr ""
2841
3072
 
3073
+ msgid "Install errata using scoped search query"
3074
+ msgstr ""
3075
+
2842
3076
  msgid "Install errata via Katello interface"
2843
3077
  msgstr ""
2844
3078
 
@@ -2863,19 +3097,31 @@ msgstr ""
2863
3097
  msgid "Install package via Katello interface"
2864
3098
  msgstr ""
2865
3099
 
3100
+ msgid "Install packages"
3101
+ msgstr ""
3102
+
2866
3103
  msgid "Install packages remotely using katello-agent. %s"
2867
3104
  msgstr ""
2868
3105
 
2869
- msgid "Installable"
3106
+ msgid "Install packages via Katello interface"
3107
+ msgstr ""
3108
+
3109
+ msgid "Install via customized remote execution"
3110
+ msgstr ""
3111
+
3112
+ msgid "Install via katello-agent"
3113
+ msgstr ""
3114
+
3115
+ msgid "Install via remote execution"
2870
3116
  msgstr ""
2871
3117
 
2872
- msgid "Installable Errata"
3118
+ msgid "Installable"
2873
3119
  msgstr ""
2874
3120
 
2875
- msgid "Installable errata from Content View"
3121
+ msgid "Installable errata"
2876
3122
  msgstr ""
2877
3123
 
2878
- msgid "Installable errata will appear here when available."
3124
+ msgid "Installable errata from content view"
2879
3125
  msgstr ""
2880
3126
 
2881
3127
  msgid "Installation of errata requested: %{errata}"
@@ -2887,10 +3133,22 @@ msgstr ""
2887
3133
  msgid "Installation of package(s) requested: %{packages}"
2888
3134
  msgstr ""
2889
3135
 
3136
+ msgid "Installation status"
3137
+ msgstr ""
3138
+
2890
3139
  msgid "Installed Packages"
2891
3140
  msgstr ""
2892
3141
 
2893
- msgid "Installed Version"
3142
+ msgid "Installed module profiles will be removed. Additionally, all packages whose names are provided by specific modules will be removed. Packages required by other installed modules profiles and packages whose names are also provided by other modules are not removed."
3143
+ msgstr ""
3144
+
3145
+ msgid "Installed products"
3146
+ msgstr ""
3147
+
3148
+ msgid "Installed profile"
3149
+ msgstr ""
3150
+
3151
+ msgid "Installed version"
2894
3152
  msgstr ""
2895
3153
 
2896
3154
  msgid "Installing Erratum..."
@@ -2971,6 +3229,9 @@ msgstr ""
2971
3229
  msgid "Invalid params provided - date_type must be one of %s"
2972
3230
  msgstr ""
2973
3231
 
3232
+ msgid "Invalid repository in the metadata %{repo} error=%{error}"
3233
+ msgstr ""
3234
+
2974
3235
  msgid "Invalid value specified for Container Image repositories."
2975
3236
  msgstr ""
2976
3237
 
@@ -2983,6 +3244,12 @@ msgstr ""
2983
3244
  msgid "Issued"
2984
3245
  msgstr ""
2985
3246
 
3247
+ msgid "Issued from"
3248
+ msgstr ""
3249
+
3250
+ msgid "Job ${description} has started."
3251
+ msgstr ""
3252
+
2986
3253
  msgid "Katello ID of local pool to update"
2987
3254
  msgstr ""
2988
3255
 
@@ -2995,6 +3262,12 @@ msgstr ""
2995
3262
  msgid "Katello: Install Package Group"
2996
3263
  msgstr ""
2997
3264
 
3265
+ msgid "Katello: Install errata by search query"
3266
+ msgstr ""
3267
+
3268
+ msgid "Katello: Install packages by search query"
3269
+ msgstr ""
3270
+
2998
3271
  msgid "Katello: Module Stream Actions"
2999
3272
  msgstr ""
3000
3273
 
@@ -3004,6 +3277,9 @@ msgstr ""
3004
3277
  msgid "Katello: Remove Package Group"
3005
3278
  msgstr ""
3006
3279
 
3280
+ msgid "Katello: Remove Packages by search query"
3281
+ msgstr ""
3282
+
3007
3283
  msgid "Katello: Resolve Traces"
3008
3284
  msgstr ""
3009
3285
 
@@ -3016,6 +3292,9 @@ msgstr ""
3016
3292
  msgid "Katello: Update Package Group"
3017
3293
  msgstr ""
3018
3294
 
3295
+ msgid "Katello: Update Packages by search query"
3296
+ msgstr ""
3297
+
3019
3298
  msgid "Key-value hash of subscription-manager facts, nesting uses a period delimiter (.)"
3020
3299
  msgstr ""
3021
3300
 
@@ -3037,6 +3316,9 @@ msgstr ""
3037
3316
  msgid "Label of the content"
3038
3317
  msgstr ""
3039
3318
 
3319
+ msgid "Label of the content view"
3320
+ msgstr ""
3321
+
3040
3322
  msgid "Last published"
3041
3323
  msgstr ""
3042
3324
 
@@ -3055,13 +3337,10 @@ msgstr ""
3055
3337
  msgid "Learn more about adding Subscription Manifests"
3056
3338
  msgstr ""
3057
3339
 
3058
- msgid "Leave blank if consuming Red Hat Content from the Default Content View or CDN "
3059
- msgstr ""
3060
-
3061
- msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
3340
+ msgid "Less than"
3062
3341
  msgstr ""
3063
3342
 
3064
- msgid "Less than"
3343
+ msgid "Library"
3065
3344
  msgstr ""
3066
3345
 
3067
3346
  msgid "Library lifecycle environments may not be deleted."
@@ -3106,9 +3385,15 @@ msgstr ""
3106
3385
  msgid "Lifecycle environment was not attached to the smart proxy; therefore, no changes were made."
3107
3386
  msgstr ""
3108
3387
 
3388
+ msgid "Lifecycle environment: {lce}"
3389
+ msgstr ""
3390
+
3109
3391
  msgid "Lifecycle environments cannot be modifed on the default Smart proxy. The content from all Lifecycle Environments will exist on this Smart proxy."
3110
3392
  msgstr ""
3111
3393
 
3394
+ msgid "Limit content to enabled / disabled / overridden"
3395
+ msgstr ""
3396
+
3112
3397
  msgid "Limit content to just that available in the activation key's content view version"
3113
3398
  msgstr ""
3114
3399
 
@@ -3217,6 +3502,9 @@ msgstr ""
3217
3502
  msgid "List of Products for sync plan"
3218
3503
  msgstr ""
3219
3504
 
3505
+ msgid "List of alternate_content_sources"
3506
+ msgstr ""
3507
+
3220
3508
  msgid "List of component content view version ids for composite views"
3221
3509
  msgstr ""
3222
3510
 
@@ -3313,6 +3601,12 @@ msgstr ""
3313
3601
  msgid "List of subscription products in an activation key"
3314
3602
  msgstr ""
3315
3603
 
3604
+ msgid "List of versions to exclude and not run an action on"
3605
+ msgstr ""
3606
+
3607
+ msgid "List of versions to perform an action on"
3608
+ msgstr ""
3609
+
3316
3610
  msgid "List organization subscriptions"
3317
3611
  msgstr ""
3318
3612
 
@@ -3358,6 +3652,12 @@ msgstr "ਲੋਡ ਹੋ ਰਿਹਾ ਹੈ"
3358
3652
  msgid "Loading versions"
3359
3653
  msgstr ""
3360
3654
 
3655
+ msgid "Loading..."
3656
+ msgstr ""
3657
+
3658
+ msgid "Low"
3659
+ msgstr ""
3660
+
3361
3661
  msgid "Make copy of a content view"
3362
3662
  msgstr ""
3363
3663
 
@@ -3415,6 +3715,9 @@ msgstr ""
3415
3715
  msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
3416
3716
  msgstr ""
3417
3717
 
3718
+ msgid "Maximum download rate when syncing a repository (requests per second). Use 0 for no limit."
3719
+ msgstr ""
3720
+
3418
3721
  msgid "Maximum number of content hosts exceeded for host collection(s): %s"
3419
3722
  msgstr ""
3420
3723
 
@@ -3481,6 +3784,9 @@ msgstr ""
3481
3784
  msgid "Module streams"
3482
3785
  msgstr ""
3483
3786
 
3787
+ msgid "Module streams will appear here when available."
3788
+ msgstr ""
3789
+
3484
3790
  msgid "Multi-entitlement"
3485
3791
  msgstr ""
3486
3792
 
@@ -3506,7 +3812,13 @@ msgid ""
3506
3812
  " %{repos}"
3507
3813
  msgstr ""
3508
3814
 
3815
+ msgid "NOTE: Unable to fully export repository '%{repository}' because it does not have the 'immediate' download policy. Update the download policy and sync the affected repository to include them in the export."
3816
+ msgstr ""
3817
+
3509
3818
  msgid "Name"
3819
+ msgstr "ਨਾਂ"
3820
+
3821
+ msgid "Name is a required parameter."
3510
3822
  msgstr ""
3511
3823
 
3512
3824
  msgid "Name of new activation key"
@@ -3515,6 +3827,9 @@ msgstr ""
3515
3827
  msgid "Name of the Content Credential"
3516
3828
  msgstr ""
3517
3829
 
3830
+ msgid "Name of the alternate content source"
3831
+ msgstr ""
3832
+
3518
3833
  msgid "Name of the content view"
3519
3834
  msgstr ""
3520
3835
 
@@ -3536,6 +3851,9 @@ msgstr ""
3536
3851
  msgid "Nest"
3537
3852
  msgstr ""
3538
3853
 
3854
+ msgid "Network Sync"
3855
+ msgstr ""
3856
+
3539
3857
  msgid "Never Synced"
3540
3858
  msgstr ""
3541
3859
 
@@ -3602,13 +3920,22 @@ msgstr ""
3602
3920
  msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
3603
3921
  msgstr ""
3604
3922
 
3605
- msgid "No applicable errata"
3923
+ msgid "No action is needed because there are no applicable errata for this host."
3606
3924
  msgstr ""
3607
3925
 
3608
- msgid "No applicable errata for %s, skipping"
3926
+ msgid "No action required"
3609
3927
  msgstr ""
3610
3928
 
3611
- msgid "No artifacts to show"
3929
+ msgid "No applicable errata"
3930
+ msgstr ""
3931
+
3932
+ msgid "No applicable errata for %s, skipping"
3933
+ msgstr ""
3934
+
3935
+ msgid "No applications to restart"
3936
+ msgstr ""
3937
+
3938
+ msgid "No artifacts to show"
3612
3939
  msgstr ""
3613
3940
 
3614
3941
  msgid "No content"
@@ -3629,6 +3956,9 @@ msgstr ""
3629
3956
  msgid "No content views available"
3630
3957
  msgstr ""
3631
3958
 
3959
+ msgid "No content views available for the selected environment"
3960
+ msgstr ""
3961
+
3632
3962
  msgid "No content views belong to ${label}"
3633
3963
  msgstr ""
3634
3964
 
@@ -3638,6 +3968,9 @@ msgstr ""
3638
3968
  msgid "No description"
3639
3969
  msgstr ""
3640
3970
 
3971
+ msgid "No description provided"
3972
+ msgstr ""
3973
+
3641
3974
  msgid "No enabled repositories match your search criteria."
3642
3975
  msgstr ""
3643
3976
 
@@ -3662,6 +3995,9 @@ msgstr ""
3662
3995
  msgid "No file uploaded"
3663
3996
  msgstr ""
3664
3997
 
3998
+ msgid "No host collections"
3999
+ msgstr ""
4000
+
3665
4001
  msgid "No host collections found."
3666
4002
  msgstr ""
3667
4003
 
@@ -3671,6 +4007,9 @@ msgstr ""
3671
4007
  msgid "No hosts registered with subscription-manager found in selection."
3672
4008
  msgstr ""
3673
4009
 
4010
+ msgid "No hosts with content source found!"
4011
+ msgstr ""
4012
+
3674
4013
  msgid "No installed packages and/or enabled repositories have been reported by %s."
3675
4014
  msgstr ""
3676
4015
 
@@ -3695,6 +4034,9 @@ msgstr ""
3695
4034
  msgid "No matching activation keys found."
3696
4035
  msgstr ""
3697
4036
 
4037
+ msgid "No matching alternate content sources found"
4038
+ msgstr ""
4039
+
3698
4040
  msgid "No matching content views found"
3699
4041
  msgstr ""
3700
4042
 
@@ -3710,6 +4052,9 @@ msgstr ""
3710
4052
  msgid "No matching history record found"
3711
4053
  msgstr ""
3712
4054
 
4055
+ msgid "No matching host collections found"
4056
+ msgstr ""
4057
+
3713
4058
  msgid "No matching hosts found."
3714
4059
  msgstr ""
3715
4060
 
@@ -3740,6 +4085,12 @@ msgstr ""
3740
4085
  msgid "No packages"
3741
4086
  msgstr ""
3742
4087
 
4088
+ msgid "No packages available to install"
4089
+ msgstr ""
4090
+
4091
+ msgid "No packages available to install on this host. Please check the host\\'s content view and lifecycle environment."
4092
+ msgstr ""
4093
+
3743
4094
  msgid "No packages removed"
3744
4095
  msgstr ""
3745
4096
 
@@ -3761,9 +4112,6 @@ msgstr ""
3761
4112
  msgid "No products are enabled."
3762
4113
  msgstr ""
3763
4114
 
3764
- msgid "No profiles to show"
3765
- msgstr ""
3766
-
3767
4115
  msgid "No pulp workers running."
3768
4116
  msgstr ""
3769
4117
 
@@ -3830,9 +4178,6 @@ msgstr "ਕੋਈ ਨਹੀਂ"
3830
4178
  msgid "None provided"
3831
4179
  msgstr ""
3832
4180
 
3833
- msgid "Not Specified"
3834
- msgstr ""
3835
-
3836
4181
  msgid "Not a number"
3837
4182
  msgstr ""
3838
4183
 
@@ -3845,6 +4190,9 @@ msgstr ""
3845
4190
  msgid "Not running"
3846
4191
  msgstr ""
3847
4192
 
4193
+ msgid "Not specified"
4194
+ msgstr ""
4195
+
3848
4196
  msgid "Not yet published"
3849
4197
  msgstr ""
3850
4198
 
@@ -3944,9 +4292,6 @@ msgstr ""
3944
4292
  msgid "Organization Information not provided."
3945
4293
  msgstr ""
3946
4294
 
3947
- msgid "Organization Label"
3948
- msgstr ""
3949
-
3950
4295
  msgid "Organization cannot be blank."
3951
4296
  msgstr ""
3952
4297
 
@@ -4151,9 +4496,6 @@ msgstr ""
4151
4496
  msgid "Packages"
4152
4497
  msgstr ""
4153
4498
 
4154
- msgid "Packages management functionality on this page is incomplete"
4155
- msgstr ""
4156
-
4157
4499
  msgid "Packages must be provided"
4158
4500
  msgstr ""
4159
4501
 
@@ -4173,9 +4515,9 @@ msgid "Partition template IDs"
4173
4515
  msgstr ""
4174
4516
 
4175
4517
  msgid "Password"
4176
- msgstr ""
4518
+ msgstr "ਪਾਸਵਰਡ"
4177
4519
 
4178
- msgid "Password for authentication"
4520
+ msgid "Password for authentication. Relevant only for 'upstream_server' type."
4179
4521
  msgstr ""
4180
4522
 
4181
4523
  msgid "Password of the upstream authentication token."
@@ -4188,7 +4530,7 @@ msgid "Password to access URL"
4188
4530
  msgstr ""
4189
4531
 
4190
4532
  msgid "Path"
4191
- msgstr ""
4533
+ msgstr "ਰਾਹ"
4192
4534
 
4193
4535
  msgid "Path for ssl cert used for pulp server auth"
4194
4536
  msgstr ""
@@ -4196,6 +4538,9 @@ msgstr ""
4196
4538
  msgid "Path for ssl key used for pulp server auth"
4197
4539
  msgstr ""
4198
4540
 
4541
+ msgid "Path suffixes for finding alternate content"
4542
+ msgstr ""
4543
+
4199
4544
  msgid "Paused"
4200
4545
  msgstr ""
4201
4546
 
@@ -4214,6 +4559,12 @@ msgstr ""
4214
4559
  msgid "Performs a full-export of the repositories in library."
4215
4560
  msgstr ""
4216
4561
 
4562
+ msgid "Performs a full-export of the repository in library."
4563
+ msgstr ""
4564
+
4565
+ msgid "Performs a incremental-export of the repository in library."
4566
+ msgstr ""
4567
+
4217
4568
  msgid "Performs an incremental-export of a content view version."
4218
4569
  msgstr ""
4219
4570
 
@@ -4247,6 +4598,12 @@ msgstr ""
4247
4598
  msgid "Please select a content source before assigning a kickstart repository"
4248
4599
  msgstr ""
4249
4600
 
4601
+ msgid "Please select a lifecycle environment and a content view to move these activation keys."
4602
+ msgstr ""
4603
+
4604
+ msgid "Please select a lifecycle environment and a content view to move this activation key."
4605
+ msgstr ""
4606
+
4250
4607
  msgid "Please select an architecture before assigning a kickstart repository"
4251
4608
  msgstr ""
4252
4609
 
@@ -4268,9 +4625,39 @@ msgstr ""
4268
4625
  msgid "Policy to set for mirroring content. Must be one of %s."
4269
4626
  msgstr ""
4270
4627
 
4628
+ msgid "Prefer registered through proxy for remote execution"
4629
+ msgstr ""
4630
+
4631
+ msgid "Prefer using a proxy to which a host is registered when using remote execution"
4632
+ msgstr ""
4633
+
4634
+ msgid "Prevent from further updates"
4635
+ msgstr ""
4636
+
4271
4637
  msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
4272
4638
  msgstr ""
4273
4639
 
4640
+ msgid "Problem searching"
4641
+ msgstr ""
4642
+
4643
+ msgid "Problem searching errata"
4644
+ msgstr ""
4645
+
4646
+ msgid "Problem searching host collections"
4647
+ msgstr ""
4648
+
4649
+ msgid "Problem searching module streams"
4650
+ msgstr ""
4651
+
4652
+ msgid "Problem searching packages"
4653
+ msgstr ""
4654
+
4655
+ msgid "Problem searching repository sets"
4656
+ msgstr ""
4657
+
4658
+ msgid "Problem searching traces"
4659
+ msgstr ""
4660
+
4274
4661
  msgid "Processing metadata"
4275
4662
  msgstr ""
4276
4663
 
@@ -4327,9 +4714,6 @@ msgstr ""
4327
4714
  msgid "Products"
4328
4715
  msgstr ""
4329
4716
 
4330
- msgid "Profiles"
4331
- msgstr ""
4332
-
4333
4717
  msgid "Promote"
4334
4718
  msgstr ""
4335
4719
 
@@ -4357,6 +4741,9 @@ msgstr ""
4357
4741
  msgid "Promotion to Environment"
4358
4742
  msgstr ""
4359
4743
 
4744
+ msgid "Provide the required information and click {update} below to save changes."
4745
+ msgstr ""
4746
+
4360
4747
  msgid "Provided Products"
4361
4748
  msgstr ""
4362
4749
 
@@ -4519,6 +4906,9 @@ msgstr ""
4519
4906
  msgid "RPM name"
4520
4907
  msgstr ""
4521
4908
 
4909
+ msgid "RPM packages"
4910
+ msgstr ""
4911
+
4522
4912
  msgid "RPMs"
4523
4913
  msgstr ""
4524
4914
 
@@ -4528,9 +4918,15 @@ msgstr ""
4528
4918
  msgid "Realm IDs"
4529
4919
  msgstr ""
4530
4920
 
4921
+ msgid "Reassign affected activation key"
4922
+ msgstr ""
4923
+
4531
4924
  msgid "Reassign affected activation keys"
4532
4925
  msgstr ""
4533
4926
 
4927
+ msgid "Reassign affected host"
4928
+ msgstr ""
4929
+
4534
4930
  msgid "Reassign affected hosts"
4535
4931
  msgstr ""
4536
4932
 
@@ -4558,6 +4954,9 @@ msgstr ""
4558
4954
  msgid "Recommended Repositories"
4559
4955
  msgstr ""
4560
4956
 
4957
+ msgid "Red Hat CDN"
4958
+ msgstr ""
4959
+
4561
4960
  msgid "Red Hat CDN URL"
4562
4961
  msgstr ""
4563
4962
 
@@ -4567,6 +4966,15 @@ msgstr ""
4567
4966
  msgid "Red Hat Repositories page"
4568
4967
  msgstr ""
4569
4968
 
4969
+ msgid "Red Hat content will be consumed from an {type}."
4970
+ msgstr ""
4971
+
4972
+ msgid "Red Hat content will be consumed from the {type}."
4973
+ msgstr ""
4974
+
4975
+ msgid "Red Hat content will be enabled and consumed via the {type} process."
4976
+ msgstr ""
4977
+
4570
4978
  msgid "Red Hat products cannot be manipulated."
4571
4979
  msgstr ""
4572
4980
 
@@ -4597,6 +5005,18 @@ msgstr ""
4597
5005
  msgid "Register host '%s' before attaching subscriptions"
4598
5006
  msgstr ""
4599
5007
 
5008
+ msgid "Registered by"
5009
+ msgstr ""
5010
+
5011
+ msgid "Registered on"
5012
+ msgstr ""
5013
+
5014
+ msgid "Registered through"
5015
+ msgstr ""
5016
+
5017
+ msgid "Registration details"
5018
+ msgstr ""
5019
+
4600
5020
  msgid "Registry name pattern results in duplicate container image names for these repositories: %s."
4601
5021
  msgstr ""
4602
5022
 
@@ -4687,12 +5107,21 @@ msgstr ""
4687
5107
  msgid "Remove from environments"
4688
5108
  msgstr ""
4689
5109
 
5110
+ msgid "Remove host from collections"
5111
+ msgstr ""
5112
+
5113
+ msgid "Remove host from host collections"
5114
+ msgstr ""
5115
+
4690
5116
  msgid "Remove hosts from the host collection"
4691
5117
  msgstr ""
4692
5118
 
4693
5119
  msgid "Remove lifecycle environments from the smart proxy"
4694
5120
  msgstr ""
4695
5121
 
5122
+ msgid "Remove module stream"
5123
+ msgstr ""
5124
+
4696
5125
  msgid "Remove one or more host collections from one or more hosts"
4697
5126
  msgstr ""
4698
5127
 
@@ -4714,6 +5143,9 @@ msgstr ""
4714
5143
  msgid "Remove package via Katello interface"
4715
5144
  msgstr ""
4716
5145
 
5146
+ msgid "Remove packages via Katello interface"
5147
+ msgstr ""
5148
+
4717
5149
  msgid "Remove products from sync plan"
4718
5150
  msgstr ""
4719
5151
 
@@ -4753,6 +5185,9 @@ msgstr ""
4753
5185
  msgid "Repositories"
4754
5186
  msgstr ""
4755
5187
 
5188
+ msgid "Repositories are not available for enablement while CDN configuration is set to Air-gapped (disconnected)."
5189
+ msgstr ""
5190
+
4756
5191
  msgid "Repositories from published Content Views are not allowed."
4757
5192
  msgstr ""
4758
5193
 
@@ -4828,9 +5263,6 @@ msgstr ""
4828
5263
  msgid "Repository sets will appear here when available."
4829
5264
  msgstr ""
4830
5265
 
4831
- msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
4832
- msgstr ""
4833
-
4834
5266
  msgid "Republish Repositories of %{name} %{version}"
4835
5267
  msgstr ""
4836
5268
 
@@ -4852,12 +5284,21 @@ msgstr ""
4852
5284
  msgid "Requires Virt-Who"
4853
5285
  msgstr ""
4854
5286
 
5287
+ msgid "Reset"
5288
+ msgstr ""
5289
+
4855
5290
  msgid "Reset filters"
4856
5291
  msgstr ""
4857
5292
 
5293
+ msgid "Reset module stream"
5294
+ msgstr ""
5295
+
4858
5296
  msgid "Reset to default"
4859
5297
  msgstr ""
4860
5298
 
5299
+ msgid "Reset to the default state"
5300
+ msgstr ""
5301
+
4861
5302
  msgid "Resolve traces"
4862
5303
  msgstr ""
4863
5304
 
@@ -4882,7 +5323,7 @@ msgstr ""
4882
5323
  msgid "Restart via remote execution"
4883
5324
  msgstr ""
4884
5325
 
4885
- msgid "Restrict Composite Content View promotion"
5326
+ msgid "Restrict composite content view promotion"
4886
5327
  msgstr ""
4887
5328
 
4888
5329
  msgid "Result"
@@ -4972,7 +5413,10 @@ msgstr ""
4972
5413
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
4973
5414
  msgstr ""
4974
5415
 
4975
- msgid "Review Details"
5416
+ msgid "Review affected environment"
5417
+ msgstr ""
5418
+
5419
+ msgid "Review affected environments"
4976
5420
  msgstr ""
4977
5421
 
4978
5422
  msgid "Review details"
@@ -4990,15 +5434,15 @@ msgstr ""
4990
5434
  msgid "Roles"
4991
5435
  msgstr "ਰੋਲ"
4992
5436
 
4993
- msgid "Rpm packages"
4994
- msgstr ""
4995
-
4996
5437
  msgid "Rules to be added"
4997
5438
  msgstr ""
4998
5439
 
4999
5440
  msgid "Run Sync Plan:"
5000
5441
  msgstr ""
5001
5442
 
5443
+ msgid "Run job invocation"
5444
+ msgstr ""
5445
+
5002
5446
  msgid "Running"
5003
5447
  msgstr ""
5004
5448
 
@@ -5035,6 +5479,12 @@ msgstr "ਖੋਜ"
5035
5479
  msgid "Search Query"
5036
5480
  msgstr ""
5037
5481
 
5482
+ msgid "Search available packages"
5483
+ msgstr ""
5484
+
5485
+ msgid "Search host collections"
5486
+ msgstr ""
5487
+
5038
5488
  msgid "Search pattern (defaults to '*')"
5039
5489
  msgstr ""
5040
5490
 
@@ -5050,6 +5500,9 @@ msgstr ""
5050
5500
  msgid "Search string for hosts to perform an action on"
5051
5501
  msgstr ""
5052
5502
 
5503
+ msgid "Search string for versions to perform an action on"
5504
+ msgstr ""
5505
+
5053
5506
  msgid "Security"
5054
5507
  msgstr ""
5055
5508
 
@@ -5062,6 +5515,9 @@ msgstr ""
5062
5515
  msgid "Select"
5063
5516
  msgstr ""
5064
5517
 
5518
+ msgid "Select ..."
5519
+ msgstr ""
5520
+
5065
5521
  msgid "Select All"
5066
5522
  msgstr "ਸਭ ਚੁਣੋ"
5067
5523
 
@@ -5080,6 +5536,12 @@ msgstr ""
5080
5536
  msgid "Select a content view"
5081
5537
  msgstr ""
5082
5538
 
5539
+ msgid "Select a lifecycle environment and a content view to move these hosts."
5540
+ msgstr ""
5541
+
5542
+ msgid "Select a lifecycle environment and a content view to move this host."
5543
+ msgstr ""
5544
+
5083
5545
  msgid "Select a lifecycle environment from the available promotion paths to promote new version."
5084
5546
  msgstr ""
5085
5547
 
@@ -5095,6 +5557,12 @@ msgstr ""
5095
5557
  msgid "Select an Organization"
5096
5558
  msgstr ""
5097
5559
 
5560
+ msgid "Select an environment"
5561
+ msgstr ""
5562
+
5563
+ msgid "Select an environment above"
5564
+ msgstr ""
5565
+
5098
5566
  msgid "Select an organization"
5099
5567
  msgstr ""
5100
5568
 
@@ -5107,6 +5575,15 @@ msgstr ""
5107
5575
  msgid "Select content view"
5108
5576
  msgstr ""
5109
5577
 
5578
+ msgid "Select environment"
5579
+ msgstr ""
5580
+
5581
+ msgid "Select host collection(s) to associate with host {hostName}."
5582
+ msgstr ""
5583
+
5584
+ msgid "Select host collection(s) to remove from host {hostName}."
5585
+ msgstr ""
5586
+
5110
5587
  msgid "Select hosts to assign to %s"
5111
5588
  msgstr ""
5112
5589
 
@@ -5119,6 +5596,9 @@ msgstr ""
5119
5596
  msgid "Select one"
5120
5597
  msgstr ""
5121
5598
 
5599
+ msgid "Select packages to install to the host {hostName}."
5600
+ msgstr ""
5601
+
5122
5602
  msgid "Select page"
5123
5603
  msgstr ""
5124
5604
 
@@ -5137,15 +5617,15 @@ msgstr ""
5137
5617
  msgid "Sending a list of included IDs is not allowed when all items are being selected."
5138
5618
  msgstr ""
5139
5619
 
5140
- msgid "Service Level"
5141
- msgstr ""
5142
-
5143
5620
  msgid "Service Level %s"
5144
5621
  msgstr ""
5145
5622
 
5146
5623
  msgid "Service Level (SLA)"
5147
5624
  msgstr ""
5148
5625
 
5626
+ msgid "Service level"
5627
+ msgstr ""
5628
+
5149
5629
  msgid "Service level of host"
5150
5630
  msgstr ""
5151
5631
 
@@ -5158,6 +5638,9 @@ msgstr ""
5158
5638
  msgid "Set content overrides to one or more hosts"
5159
5639
  msgstr ""
5160
5640
 
5641
+ msgid "Set true to override to enabled; Set false to override to disabled.'"
5642
+ msgstr ""
5643
+
5161
5644
  msgid "Set true to remove an override and reset it to 'default'"
5162
5645
  msgstr ""
5163
5646
 
@@ -5212,12 +5695,21 @@ msgstr ""
5212
5695
  msgid "Show a sync plan"
5213
5696
  msgstr ""
5214
5697
 
5698
+ msgid "Show affected activation keys"
5699
+ msgstr ""
5700
+
5701
+ msgid "Show affected hosts"
5702
+ msgstr ""
5703
+
5215
5704
  msgid "Show all"
5216
5705
  msgstr ""
5217
5706
 
5218
5707
  msgid "Show an activation key"
5219
5708
  msgstr ""
5220
5709
 
5710
+ msgid "Show an alternate content source"
5711
+ msgstr ""
5712
+
5221
5713
  msgid "Show an environment"
5222
5714
  msgstr ""
5223
5715
 
@@ -5293,6 +5785,9 @@ msgstr ""
5293
5785
  msgid "Solve dependencies"
5294
5786
  msgstr ""
5295
5787
 
5788
+ msgid "Some hosts are ignored!"
5789
+ msgstr ""
5790
+
5296
5791
  msgid "Some of your inputs contain errors. Please update them and save your changes again."
5297
5792
  msgstr ""
5298
5793
 
@@ -5320,9 +5815,15 @@ msgstr ""
5320
5815
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5321
5816
  msgstr ""
5322
5817
 
5818
+ msgid "Something went wrong while deleting this alternate content source! ${getResponseErrorMsgs(error.response)}"
5819
+ msgstr ""
5820
+
5323
5821
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
5324
5822
  msgstr ""
5325
5823
 
5824
+ msgid "Something went wrong while deleting versions ${getResponseErrorMsgs(error.response)}"
5825
+ msgstr ""
5826
+
5326
5827
  msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
5327
5828
  msgstr ""
5328
5829
 
@@ -5341,10 +5842,10 @@ msgstr ""
5341
5842
  msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
5342
5843
  msgstr ""
5343
5844
 
5344
- msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5845
+ msgid "Something went wrong while getting container tags! ${getResponseErrorMsgs(error.response)}"
5345
5846
  msgstr ""
5346
5847
 
5347
- msgid "Something went wrong while getting docker tags! ${getResponseErrorMsgs(error.response)}"
5848
+ msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5348
5849
  msgstr ""
5349
5850
 
5350
5851
  msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
@@ -5356,9 +5857,15 @@ msgstr ""
5356
5857
  msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
5357
5858
  msgstr ""
5358
5859
 
5860
+ msgid "Something went wrong while getting the data. See the logs for more information"
5861
+ msgstr ""
5862
+
5359
5863
  msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5360
5864
  msgstr ""
5361
5865
 
5866
+ msgid "Something went wrong while loading the content views. See the logs for more information"
5867
+ msgstr ""
5868
+
5362
5869
  msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5363
5870
  msgstr ""
5364
5871
 
@@ -5395,6 +5902,9 @@ msgstr ""
5395
5902
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
5396
5903
  msgstr ""
5397
5904
 
5905
+ msgid "Something went wrong while updating the content source. See the logs for more information"
5906
+ msgstr ""
5907
+
5398
5908
  msgid "Something went wrong! Please check server logs!"
5399
5909
  msgstr ""
5400
5910
 
@@ -5428,9 +5938,15 @@ msgstr ""
5428
5938
  msgid "Start Time"
5429
5939
  msgstr ""
5430
5940
 
5941
+ msgid "Start date"
5942
+ msgstr ""
5943
+
5431
5944
  msgid "Starts"
5432
5945
  msgstr ""
5433
5946
 
5947
+ msgid "State"
5948
+ msgstr ""
5949
+
5434
5950
  msgid "Status"
5435
5951
  msgstr "ਹਾਲਤ"
5436
5952
 
@@ -5443,6 +5959,12 @@ msgstr "ਸਟੋਰੇਜ਼"
5443
5959
  msgid "Stream"
5444
5960
  msgstr ""
5445
5961
 
5962
+ msgid "Streamed"
5963
+ msgstr ""
5964
+
5965
+ msgid "Streams based on the host based on the installation status"
5966
+ msgstr ""
5967
+
5446
5968
  msgid "Streams based on the host based on their status"
5447
5969
  msgstr ""
5448
5970
 
@@ -5485,9 +6007,15 @@ msgstr ""
5485
6007
  msgid "Subscription Status"
5486
6008
  msgstr ""
5487
6009
 
6010
+ msgid "Subscription UUID"
6011
+ msgstr ""
6012
+
5488
6013
  msgid "Subscription Watch"
5489
6014
  msgstr ""
5490
6015
 
6016
+ msgid "Subscription connection enabled"
6017
+ msgstr ""
6018
+
5491
6019
  msgid "Subscription expiration notification"
5492
6020
  msgstr ""
5493
6021
 
@@ -5566,7 +6094,7 @@ msgstr ""
5566
6094
  msgid "Sync Canceled"
5567
6095
  msgstr ""
5568
6096
 
5569
- msgid "Sync Connection Timeout"
6097
+ msgid "Sync Connect Timeout"
5570
6098
  msgstr ""
5571
6099
 
5572
6100
  msgid "Sync Content View on Smart Proxy(ies)"
@@ -5590,7 +6118,13 @@ msgstr ""
5590
6118
  msgid "Sync Repository on Smart Proxy(ies)"
5591
6119
  msgstr ""
5592
6120
 
5593
- msgid "Sync Smart Proxies after Content View promotion"
6121
+ msgid "Sync Smart Proxies after content view promotion"
6122
+ msgstr ""
6123
+
6124
+ msgid "Sync Sock Connect Timeout"
6125
+ msgstr ""
6126
+
6127
+ msgid "Sync Sock Read Timeout"
5594
6128
  msgstr ""
5595
6129
 
5596
6130
  msgid "Sync Status"
@@ -5602,6 +6136,9 @@ msgstr ""
5602
6136
  msgid "Sync Summary for %s"
5603
6137
  msgstr ""
5604
6138
 
6139
+ msgid "Sync Total Timeout"
6140
+ msgstr ""
6141
+
5605
6142
  msgid "Sync a repository"
5606
6143
  msgstr ""
5607
6144
 
@@ -5671,6 +6208,9 @@ msgstr ""
5671
6208
  msgid "System Status"
5672
6209
  msgstr "ਸਿਸਟਮ ਸਥਿਤੀ"
5673
6210
 
6211
+ msgid "System purpose"
6212
+ msgstr ""
6213
+
5674
6214
  msgid "Tag name"
5675
6215
  msgstr ""
5676
6216
 
@@ -5698,6 +6238,9 @@ msgstr ""
5698
6238
  msgid "The '%s' environment cannot contain a changeset!"
5699
6239
  msgstr ""
5700
6240
 
6241
+ msgid "The Alternate Content Source type"
6242
+ msgstr ""
6243
+
5701
6244
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
5702
6245
  msgstr ""
5703
6246
 
@@ -5710,6 +6253,9 @@ msgstr ""
5710
6253
  msgid "The actual file contents"
5711
6254
  msgstr ""
5712
6255
 
6256
+ msgid "The content type for the Alternate Content Source"
6257
+ msgstr ""
6258
+
5713
6259
  msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
5714
6260
  msgstr ""
5715
6261
 
@@ -5719,7 +6265,7 @@ msgstr ""
5719
6265
  msgid "The default content view cannot be promoted"
5720
6266
  msgstr ""
5721
6267
 
5722
- msgid "The default dependency solving value for new Content Views."
6268
+ msgid "The default dependency solving value for new content views."
5723
6269
  msgstr ""
5724
6270
 
5725
6271
  msgid "The description for the content view version"
@@ -5749,6 +6295,9 @@ msgstr ""
5749
6295
  msgid "The field to sort the data by. Defaults to the created date."
5750
6296
  msgstr ""
5751
6297
 
6298
+ msgid "The following hosts are not registered as Content Hosts, so they will be ignored:"
6299
+ msgstr ""
6300
+
5752
6301
  msgid "The following hosts have errata that apply to them: "
5753
6302
  msgstr ""
5754
6303
 
@@ -5757,15 +6306,39 @@ msgid ""
5757
6306
  " %{repos}"
5758
6307
  msgstr ""
5759
6308
 
6309
+ msgid "The id of the content source"
6310
+ msgstr ""
6311
+
6312
+ msgid "The id of the content view"
6313
+ msgstr ""
6314
+
5760
6315
  msgid "The id of the host to alter"
5761
6316
  msgstr ""
5762
6317
 
6318
+ msgid "The id of the lifecycle environment"
6319
+ msgstr ""
6320
+
6321
+ msgid "The ids of the hosts to alter. Hosts not managed by Katello are ignored"
6322
+ msgstr ""
6323
+
5763
6324
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
5764
6325
  msgstr ""
5765
6326
 
5766
6327
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
5767
6328
  msgstr ""
5768
6329
 
6330
+ msgid "The maximum number of second that Pulp can take to do a single sync operation, e.g., download a single metadata file."
6331
+ msgstr ""
6332
+
6333
+ msgid "The maximum number of seconds for Pulp to connect to a peer for a new connection not given from a pool."
6334
+ msgstr ""
6335
+
6336
+ msgid "The maximum number of seconds for Pulp to establish a new connection or for waiting for a free connection from a pool if pool connection limits are exceeded."
6337
+ msgstr ""
6338
+
6339
+ msgid "The maximum number of seconds that Pulp can take to download a file, not counting connection time."
6340
+ msgstr ""
6341
+
5769
6342
  msgid "The maximum number of versions of each package to keep."
5770
6343
  msgstr ""
5771
6344
 
@@ -5852,9 +6425,18 @@ msgstr ""
5852
6425
  msgid "There are no errata that need to be applied to registered content hosts."
5853
6426
  msgstr ""
5854
6427
 
6428
+ msgid "There are no host collections available to add."
6429
+ msgstr ""
6430
+
5855
6431
  msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
5856
6432
  msgstr ""
5857
6433
 
6434
+ msgid "There are {numberOfActivationKeys} activation keys that need to be reassigned."
6435
+ msgstr ""
6436
+
6437
+ msgid "There are {numberOfHosts} hosts that need to be reassigned."
6438
+ msgstr ""
6439
+
5858
6440
  msgid "There either were no environments nor versions specified or there were invalid environments/versions specified. Please check environment_ids and content_view_version_ids parameters."
5859
6441
  msgstr ""
5860
6442
 
@@ -5867,6 +6449,12 @@ msgstr ""
5867
6449
  msgid "There is nothing to see here"
5868
6450
  msgstr ""
5869
6451
 
6452
+ msgid "There is {numberOfActivationKeys} activation key that needs to be reassigned."
6453
+ msgstr ""
6454
+
6455
+ msgid "There is {numberOfHosts} host that needs to be reassigned."
6456
+ msgstr ""
6457
+
5870
6458
  msgid "There was a problem retrieving Activation Key data from the server."
5871
6459
  msgstr ""
5872
6460
 
@@ -5915,13 +6503,13 @@ msgstr ""
5915
6503
  msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
5916
6504
  msgstr ""
5917
6505
 
5918
- msgid "This host currently does not have traces."
6506
+ msgid "This host does not have any Module streams."
5919
6507
  msgstr ""
5920
6508
 
5921
- msgid "This host does not have any installable errata."
6509
+ msgid "This host does not have any packages."
5922
6510
  msgstr ""
5923
6511
 
5924
- msgid "This host does not have any packages."
6512
+ msgid "This host has errata that are applicable, but not installable."
5925
6513
  msgstr ""
5926
6514
 
5927
6515
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
@@ -5954,6 +6542,9 @@ msgstr ""
5954
6542
  msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage at {subscriptionWatch}."
5955
6543
  msgstr ""
5956
6544
 
6545
+ msgid "This organization is not using {scaLink}. Legacy subscription management is deprecated and will be removed in a future version."
6546
+ msgstr ""
6547
+
5957
6548
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
5958
6549
  msgstr ""
5959
6550
 
@@ -5987,10 +6578,10 @@ msgstr ""
5987
6578
  msgid "Time in minutes to consider orphan content as orphaned."
5988
6579
  msgstr ""
5989
6580
 
5990
- msgid "Time in seconds to wait for a Host to finish a remote action"
6581
+ msgid "Time in seconds to wait for a host to finish a katello-agent action"
5991
6582
  msgstr ""
5992
6583
 
5993
- msgid "Time in seconds to wait for a Host to pickup a remote action"
6584
+ msgid "Time in seconds to wait for a host to pick up a katello-agent action"
5994
6585
  msgstr ""
5995
6586
 
5996
6587
  msgid "Timeout when refreshing a manifest (in seconds)"
@@ -6008,9 +6599,6 @@ msgstr ""
6008
6599
  msgid "Total steps: "
6009
6600
  msgstr ""
6010
6601
 
6011
- msgid "Total timeout in seconds for connections when syncing"
6012
- msgstr ""
6013
-
6014
6602
  msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6015
6603
  msgstr ""
6016
6604
 
@@ -6026,6 +6614,9 @@ msgstr ""
6026
6614
  msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6027
6615
  msgstr ""
6028
6616
 
6617
+ msgid "Traces may be listed here after {pkgLink}."
6618
+ msgstr ""
6619
+
6029
6620
  msgid "Traces that require logout cannot be restarted remotely"
6030
6621
  msgstr ""
6031
6622
 
@@ -6048,7 +6639,7 @@ msgid "Trying to cancel the synchronization..."
6048
6639
  msgstr ""
6049
6640
 
6050
6641
  msgid "Type"
6051
- msgstr ""
6642
+ msgstr "ਕਿਸਮ"
6052
6643
 
6053
6644
  msgid "Type must be one of: %s"
6054
6645
  msgstr ""
@@ -6060,7 +6651,7 @@ msgid "Type of content: \"cert\", \"gpg_key\""
6060
6651
  msgstr ""
6061
6652
 
6062
6653
  msgid "URL"
6063
- msgstr ""
6654
+ msgstr "URL"
6064
6655
 
6065
6656
  msgid "URL needs to have a trailing /"
6066
6657
  msgstr ""
@@ -6107,9 +6698,15 @@ msgstr ""
6107
6698
  msgid "Unable to get users"
6108
6699
  msgstr ""
6109
6700
 
6701
+ msgid "Unable to import in to Content View specified in the metadata - '%{name}'. The 'import_only' attribute for the content view is set to false. To mark this Content View as importable, have your system administrator run the following command on the server. "
6702
+ msgstr ""
6703
+
6110
6704
  msgid "Unable to incrementally export. Do a Full Export on the library content before updating from the latest increment."
6111
6705
  msgstr ""
6112
6706
 
6707
+ msgid "Unable to incrementally export. Do a Full Export on the repository content."
6708
+ msgstr ""
6709
+
6113
6710
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
6114
6711
  msgstr ""
6115
6712
 
@@ -6152,6 +6749,9 @@ msgstr ""
6152
6749
  msgid "Unfiltered params array: %s."
6153
6750
  msgstr ""
6154
6751
 
6752
+ msgid "Uninstall and reset"
6753
+ msgstr ""
6754
+
6155
6755
  msgid "Uninstall packages remotely using katello-agent. %s"
6156
6756
  msgstr ""
6157
6757
 
@@ -6206,6 +6806,9 @@ msgstr ""
6206
6806
  msgid "Update"
6207
6807
  msgstr "ਅੱਪਡੇਟ"
6208
6808
 
6809
+ msgid "Update Alternate Content Source"
6810
+ msgstr ""
6811
+
6209
6812
  msgid "Update CDN Configuration"
6210
6813
  msgstr ""
6211
6814
 
@@ -6245,6 +6848,9 @@ msgstr ""
6245
6848
  msgid "Update an activation key"
6246
6849
  msgstr ""
6247
6850
 
6851
+ msgid "Update an alternate content source"
6852
+ msgstr ""
6853
+
6248
6854
  msgid "Update an environment"
6249
6855
  msgstr ""
6250
6856
 
@@ -6296,6 +6902,9 @@ msgstr ""
6296
6902
  msgid "Update packages remotely using katello-agent. %s"
6297
6903
  msgstr ""
6298
6904
 
6905
+ msgid "Update packages via Katello interface"
6906
+ msgstr ""
6907
+
6299
6908
  msgid "Update redhat repository"
6300
6909
  msgstr ""
6301
6910
 
@@ -6314,6 +6923,9 @@ msgstr ""
6314
6923
  msgid "Update the HTTP proxy configuration on the repositories of one or more products."
6315
6924
  msgstr ""
6316
6925
 
6926
+ msgid "Update the content source for specified hosts and generate the reconfiguration script"
6927
+ msgstr ""
6928
+
6317
6929
  msgid "Update the information about enabled repositories"
6318
6930
  msgstr ""
6319
6931
 
@@ -6329,6 +6941,9 @@ msgstr "ਅੱਪਡੇਟ ਹੋ ਗਏ"
6329
6941
  msgid "Updated component details"
6330
6942
  msgstr ""
6331
6943
 
6944
+ msgid "Updated from"
6945
+ msgstr ""
6946
+
6332
6947
  msgid "Updates"
6333
6948
  msgstr ""
6334
6949
 
@@ -6356,7 +6971,7 @@ msgstr ""
6356
6971
  msgid "Upgradable"
6357
6972
  msgstr ""
6358
6973
 
6359
- msgid "Upgradable To"
6974
+ msgid "Upgradable to"
6360
6975
  msgstr ""
6361
6976
 
6362
6977
  msgid "Upgrade"
@@ -6389,9 +7004,18 @@ msgstr ""
6389
7004
  msgid "Upload request id"
6390
7005
  msgstr ""
6391
7006
 
7007
+ msgid "Upstream Content View Label, default: Default_Organization_View. Relevant only for 'upstream_server' type."
7008
+ msgstr ""
7009
+
7010
+ msgid "Upstream Lifecycle Environment, default: Library. Relevant only for 'upstream_server' type."
7011
+ msgstr ""
7012
+
6392
7013
  msgid "Upstream Name cannot be blank when Repository URL is provided."
6393
7014
  msgstr ""
6394
7015
 
7016
+ msgid "Upstream foreman server to sync CDN content from. Relevant only for 'upstream_server' type."
7017
+ msgstr ""
7018
+
6395
7019
  msgid "Upstream identity certificate not available"
6396
7020
  msgstr ""
6397
7021
 
@@ -6404,15 +7028,12 @@ msgstr ""
6404
7028
  msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
6405
7029
  msgstr ""
6406
7030
 
6407
- msgid "Upstream organization to sync CDN content from"
7031
+ msgid "Upstream organization to sync CDN content from. Relevant only for 'upstream_server' type."
6408
7032
  msgstr ""
6409
7033
 
6410
7034
  msgid "Upstream password requires upstream username be set."
6411
7035
  msgstr ""
6412
7036
 
6413
- msgid "Upstream server to sync CDN content from"
6414
- msgstr ""
6415
-
6416
7037
  msgid "Upstream username and password may only be set on custom repositories."
6417
7038
  msgstr ""
6418
7039
 
@@ -6453,9 +7074,9 @@ msgid "User must be logged in."
6453
7074
  msgstr ""
6454
7075
 
6455
7076
  msgid "Username"
6456
- msgstr ""
7077
+ msgstr "ਯੂਜ਼ਰ-ਨਾਂ"
6457
7078
 
6458
- msgid "Username for authentication"
7079
+ msgid "Username for authentication. Relevant only for 'upstream_server' type."
6459
7080
  msgstr ""
6460
7081
 
6461
7082
  msgid "Username of the upstream repository user used for authentication"
@@ -6467,7 +7088,7 @@ msgstr ""
6467
7088
  msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
6468
7089
  msgstr ""
6469
7090
 
6470
- msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using a non-Red Hat CDN."
7091
+ msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using an upstream Foreman server."
6471
7092
  msgstr ""
6472
7093
 
6473
7094
  msgid "Valid"
@@ -6512,6 +7133,15 @@ msgstr ""
6512
7133
  msgid "Versions"
6513
7134
  msgstr ""
6514
7135
 
7136
+ msgid "Versions "
7137
+ msgstr ""
7138
+
7139
+ msgid "Versions to exclusively include in the action"
7140
+ msgstr ""
7141
+
7142
+ msgid "Versions to explicitly exclude in the action. All other versions will be included in the action, unless an included parameter is passed as well."
7143
+ msgstr ""
7144
+
6515
7145
  msgid "Versions will appear here when the content view is published."
6516
7146
  msgstr ""
6517
7147
 
@@ -6524,16 +7154,22 @@ msgstr ""
6524
7154
  msgid "View matching content"
6525
7155
  msgstr ""
6526
7156
 
6527
- msgid "Virtual"
7157
+ msgid "View tasks "
6528
7158
  msgstr ""
6529
7159
 
6530
- msgid "Visit the previous Packages page"
7160
+ msgid "View the Content Views page to manage and promote content views, or select a different environment."
7161
+ msgstr ""
7162
+
7163
+ msgid "Virtual"
6531
7164
  msgstr ""
6532
7165
 
6533
7166
  msgid "Waiting to start."
6534
7167
  msgstr ""
6535
7168
 
6536
7169
  msgid "Warning"
7170
+ msgstr "ਚੇਤਾਵਨੀ"
7171
+
7172
+ msgid "What's next?"
6537
7173
  msgstr ""
6538
7174
 
6539
7175
  msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
@@ -6557,7 +7193,7 @@ msgstr ""
6557
7193
  msgid "Whether or not the host collection may have unlimited hosts"
6558
7194
  msgstr ""
6559
7195
 
6560
- msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
7196
+ msgid "Whether or not to auto sync the Smart Proxies after a content view promotion."
6561
7197
  msgstr ""
6562
7198
 
6563
7199
  msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
@@ -6587,9 +7223,6 @@ msgstr ""
6587
7223
  msgid "Yes"
6588
7224
  msgstr ""
6589
7225
 
6590
- msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
6591
- msgstr ""
6592
-
6593
7226
  msgid "You are not allowed to promote to Environments %s"
6594
7227
  msgstr ""
6595
7228
 
@@ -6614,6 +7247,9 @@ msgstr ""
6614
7247
  msgid "You currently don't have any Content views."
6615
7248
  msgstr ""
6616
7249
 
7250
+ msgid "You currently don't have any alternate content sources."
7251
+ msgstr ""
7252
+
6617
7253
  msgid "You currently don't have any filters for this content view."
6618
7254
  msgstr ""
6619
7255
 
@@ -6647,6 +7283,9 @@ msgstr ""
6647
7283
  msgid "You have unsaved changes. Do you want to exit without saving your changes?"
6648
7284
  msgstr ""
6649
7285
 
7286
+ msgid "You may want to check the host's content view and lifecycle environment."
7287
+ msgstr ""
7288
+
6650
7289
  msgid "You were not allowed to add %s"
6651
7290
  msgstr ""
6652
7291
 
@@ -6668,6 +7307,9 @@ msgstr ""
6668
7307
  msgid "Your search returned no matching "
6669
7308
  msgstr ""
6670
7309
 
7310
+ msgid "Your search returned no matching Module streams."
7311
+ msgstr ""
7312
+
6671
7313
  msgid "Your search returned no matching RPMs."
6672
7314
  msgstr ""
6673
7315
 
@@ -6782,6 +7424,9 @@ msgstr ""
6782
7424
  msgid "can't be blank"
6783
7425
  msgstr ""
6784
7426
 
7427
+ msgid "cannot add filter to generated content views"
7428
+ msgstr ""
7429
+
6785
7430
  msgid "cannot add filter to import-only view"
6786
7431
  msgstr ""
6787
7432
 
@@ -6836,6 +7481,9 @@ msgstr ""
6836
7481
  msgid "checking Pulp task status"
6837
7482
  msgstr ""
6838
7483
 
7484
+ msgid "click here"
7485
+ msgstr ""
7486
+
6839
7487
  msgid "composite content view identifier"
6840
7488
  msgstr ""
6841
7489
 
@@ -6854,6 +7502,9 @@ msgstr ""
6854
7502
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
6855
7503
  msgstr ""
6856
7504
 
7505
+ msgid "content view Dependency Solving Default"
7506
+ msgstr ""
7507
+
6857
7508
  msgid "content view component ID. Identifier of the component association"
6858
7509
  msgstr ""
6859
7510
 
@@ -6929,7 +7580,7 @@ msgstr ""
6929
7580
  msgid "description of the repository"
6930
7581
  msgstr ""
6931
7582
 
6932
- msgid "download policy for yum repos (either 'immediate' or 'on_demand')"
7583
+ msgid "download policy for yum, deb, and docker repos (either 'immediate' or 'on_demand')"
6933
7584
  msgstr ""
6934
7585
 
6935
7586
  msgid "enables or disables synchronization"
@@ -7004,6 +7655,9 @@ msgstr ""
7004
7655
  msgid "filter identifiers"
7005
7656
  msgstr ""
7006
7657
 
7658
+ msgid "filter only environments containing this label"
7659
+ msgstr ""
7660
+
7007
7661
  msgid "filter only environments containing this name"
7008
7662
  msgstr ""
7009
7663
 
@@ -7067,6 +7721,9 @@ msgstr ""
7067
7721
  msgid "installing erratum..."
7068
7722
  msgstr ""
7069
7723
 
7724
+ msgid "installing or updating packages"
7725
+ msgstr ""
7726
+
7070
7727
  msgid "installing package group..."
7071
7728
  msgstr ""
7072
7729
 
@@ -7094,9 +7751,18 @@ msgstr ""
7094
7751
  msgid "is invalid"
7095
7752
  msgstr "ਯੋਗ ਹੈ"
7096
7753
 
7754
+ msgid "is not a valid type. Must be one of the following: %s"
7755
+ msgstr ""
7756
+
7757
+ msgid "is not allowed for ACS. Must be one of the following: %s"
7758
+ msgstr ""
7759
+
7097
7760
  msgid "is not enabled. must be one of the following: %s"
7098
7761
  msgstr ""
7099
7762
 
7763
+ msgid "is only allowed for Yum repositories."
7764
+ msgstr ""
7765
+
7100
7766
  msgid "label of the environment"
7101
7767
  msgstr ""
7102
7768
 
@@ -7169,6 +7835,9 @@ msgstr ""
7169
7835
  msgid "must contain valid Public GPG Key"
7170
7836
  msgstr ""
7171
7837
 
7838
+ msgid "must not be a negative value."
7839
+ msgstr ""
7840
+
7172
7841
  msgid "must not contain leading or trailing white spaces."
7173
7842
  msgstr ""
7174
7843
 
@@ -7265,6 +7934,9 @@ msgstr ""
7265
7934
  msgid "package_ids is not an array"
7266
7935
  msgstr ""
7267
7936
 
7937
+ msgid "package_names_for_job_template: Action must be one of %s"
7938
+ msgstr ""
7939
+
7268
7940
  msgid "params 'show_all_for' and 'available_for' must be used independently"
7269
7941
  msgstr ""
7270
7942
 
@@ -7382,6 +8054,12 @@ msgstr ""
7382
8054
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
7383
8055
  msgstr ""
7384
8056
 
8057
+ msgid "to"
8058
+ msgstr ""
8059
+
8060
+ msgid "to update configuration on all hosts, or"
8061
+ msgstr ""
8062
+
7385
8063
  msgid "true if the latest version of the component's content view is desired"
7386
8064
  msgstr ""
7387
8065
 
@@ -7406,9 +8084,15 @@ msgstr ""
7406
8084
  msgid "unknown permission for %s"
7407
8085
  msgstr ""
7408
8086
 
8087
+ msgid "unlimited"
8088
+ msgstr ""
8089
+
7409
8090
  msgid "update a filter"
7410
8091
  msgstr ""
7411
8092
 
8093
+ msgid "update configuration on the hosts manually:"
8094
+ msgstr ""
8095
+
7412
8096
  msgid "updating package group..."
7413
8097
  msgstr ""
7414
8098
 
@@ -7421,6 +8105,9 @@ msgstr ""
7421
8105
  msgid "updating packages..."
7422
8106
  msgstr ""
7423
8107
 
8108
+ msgid "upstream Foreman server"
8109
+ msgstr ""
8110
+
7424
8111
  msgid "url not defined."
7425
8112
  msgstr ""
7426
8113
 
@@ -7465,3 +8152,30 @@ msgstr ""
7465
8152
 
7466
8153
  msgid "{0} items selected"
7467
8154
  msgstr ""
8155
+
8156
+ msgid "{numberOfActivationKeys} activation key will be assigned to content view {cvName} in"
8157
+ msgstr ""
8158
+
8159
+ msgid "{numberOfActivationKeys} activation keys will be assigned to content view {cvName} in"
8160
+ msgstr ""
8161
+
8162
+ msgid "{numberOfHosts} host will be assigned to content view {cvName} in"
8163
+ msgstr ""
8164
+
8165
+ msgid "{numberOfHosts} hosts will be assigned to content view {cvName} in"
8166
+ msgstr ""
8167
+
8168
+ msgid "{versionOrVersions} {versionList} will be deleted and will no longer be available for promotion."
8169
+ msgstr ""
8170
+
8171
+ msgid "{versionOrVersions} {versionList} will be removed from the following environments:"
8172
+ msgstr ""
8173
+
8174
+ msgid "{versionOrVersions} {versionList} will be removed from the listed environment and will no longer be available for promotion."
8175
+ msgstr ""
8176
+
8177
+ msgid "{versionOrVersions} {versionList} will be removed from the listed environments and will no longer be available for promotion."
8178
+ msgstr ""
8179
+
8180
+ msgid "{versionOrVersions} {versionList} will be removed from the {envLabel} environment."
8181
+ msgstr ""