katello 4.3.0 → 4.4.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 (337) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/v2/api_controller.rb +13 -4
  4. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +3 -0
  5. data/app/controllers/katello/api/v2/content_views_controller.rb +46 -0
  6. data/app/controllers/katello/api/v2/host_packages_controller.rb +21 -1
  7. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +30 -1
  8. data/app/controllers/katello/api/v2/organizations_controller.rb +10 -6
  9. data/app/controllers/katello/api/v2/packages_controller.rb +4 -0
  10. data/app/controllers/katello/api/v2/repositories_controller.rb +17 -7
  11. data/app/controllers/katello/api/v2/repository_sets_controller.rb +7 -0
  12. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +3 -0
  13. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +32 -0
  14. data/app/controllers/katello/remote_execution_controller.rb +5 -4
  15. data/app/helpers/katello/content_source_helper.rb +43 -0
  16. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +4 -0
  17. data/app/lib/actions/katello/cdn_configuration/update.rb +5 -7
  18. data/app/lib/actions/katello/content_view/publish.rb +5 -0
  19. data/app/lib/actions/katello/content_view_version/incremental_update.rb +17 -3
  20. data/app/lib/actions/katello/repository/discover.rb +1 -14
  21. data/app/lib/actions/katello/repository/filtered_index_content.rb +1 -1
  22. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -0
  23. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +7 -5
  24. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  25. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -0
  26. data/app/lib/katello/concerns/base_template_scope_extensions.rb +11 -0
  27. data/app/lib/katello/errors.rb +3 -3
  28. data/app/lib/katello/logging.rb +6 -1
  29. data/app/lib/katello/repo_discovery.rb +27 -19
  30. data/app/lib/katello/resources/cdn/katello_cdn.rb +41 -3
  31. data/app/lib/katello/resources/cdn.rb +4 -2
  32. data/app/lib/katello/util/deduplication_migrator.rb +105 -0
  33. data/app/models/katello/candlepin/repository_mapper.rb +1 -1
  34. data/app/models/katello/cdn_configuration.rb +38 -6
  35. data/app/models/katello/concerns/host_managed_extensions.rb +23 -1
  36. data/app/models/katello/concerns/organization_extensions.rb +5 -1
  37. data/app/models/katello/concerns/pulp_database_unit.rb +59 -173
  38. data/app/models/katello/concerns/remote_execution_proxy_selector_extensions.rb +11 -0
  39. data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -1
  40. data/app/models/katello/content_view.rb +4 -4
  41. data/app/models/katello/content_view_filter.rb +1 -1
  42. data/app/models/katello/content_view_history.rb +1 -1
  43. data/app/models/katello/content_view_version.rb +6 -2
  44. data/app/models/katello/content_view_version_export_history.rb +1 -1
  45. data/app/models/katello/deb.rb +1 -3
  46. data/app/models/katello/docker_meta_tag.rb +1 -1
  47. data/app/models/katello/erratum.rb +0 -15
  48. data/app/models/katello/glue/pulp/repos.rb +1 -1
  49. data/app/models/katello/host/content_facet.rb +2 -27
  50. data/app/models/katello/host/info_provider.rb +9 -0
  51. data/app/models/katello/host/subscription_facet.rb +2 -2
  52. data/app/models/katello/hostgroup/content_facet.rb +2 -2
  53. data/app/models/katello/product.rb +1 -1
  54. data/app/models/katello/product_content.rb +2 -2
  55. data/app/models/katello/repository.rb +10 -9
  56. data/app/models/katello/root_repository.rb +24 -13
  57. data/app/models/katello/rpm.rb +8 -2
  58. data/app/models/setting/content.rb +6 -3
  59. data/app/services/cert/rhsm_client.rb +1 -5
  60. data/app/services/katello/content_unit_indexer.rb +166 -0
  61. data/app/services/katello/organization_creator.rb +12 -4
  62. data/app/services/katello/pulp/repository/docker.rb +1 -1
  63. data/app/services/katello/pulp/repository/yum.rb +0 -54
  64. data/app/services/katello/pulp/repository.rb +0 -6
  65. data/app/services/katello/pulp3/ansible_collection.rb +26 -10
  66. data/app/services/katello/pulp3/api/apt.rb +7 -0
  67. data/app/services/katello/pulp3/content_view_version/import.rb +11 -2
  68. data/app/services/katello/pulp3/deb.rb +10 -9
  69. data/app/services/katello/pulp3/docker_manifest.rb +6 -5
  70. data/app/services/katello/pulp3/docker_manifest_list.rb +23 -6
  71. data/app/services/katello/pulp3/docker_tag.rb +16 -7
  72. data/app/services/katello/pulp3/erratum.rb +51 -56
  73. data/app/services/katello/pulp3/file_unit.rb +9 -6
  74. data/app/services/katello/pulp3/generic_content_unit.rb +11 -12
  75. data/app/services/katello/pulp3/module_stream.rb +76 -30
  76. data/app/services/katello/pulp3/package_group.rb +5 -5
  77. data/app/services/katello/pulp3/pulp_content_unit.rb +19 -11
  78. data/app/services/katello/pulp3/repository/apt.rb +5 -3
  79. data/app/services/katello/pulp3/repository/docker.rb +14 -7
  80. data/app/services/katello/pulp3/repository/generic.rb +1 -1
  81. data/app/services/katello/pulp3/repository/yum.rb +10 -12
  82. data/app/services/katello/pulp3/repository.rb +26 -7
  83. data/app/services/katello/pulp3/repository_mirror.rb +18 -5
  84. data/app/services/katello/pulp3/rpm.rb +13 -13
  85. data/app/services/katello/pulp3/srpm.rb +10 -9
  86. data/app/services/katello/repository_type.rb +15 -4
  87. data/app/services/katello/repository_type_manager.rb +1 -1
  88. data/app/services/katello/ui_notifications/subscriptions/manifest_expired_warning.rb +1 -1
  89. data/app/services/katello/upstream_connection_checker.rb +2 -2
  90. data/app/views/foreman/job_templates/change_content_source.erb +1 -31
  91. data/app/views/foreman/job_templates/install_errata.erb +6 -9
  92. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +26 -0
  93. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +19 -0
  94. data/app/views/katello/api/v2/cdn_configurations/show.json.rabl +1 -1
  95. data/app/views/katello/api/v2/environments/show.json.rabl +9 -0
  96. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -0
  97. data/app/views/katello/layouts/react.html.erb +0 -1
  98. data/app/views/katello/sync_management/_repo.html.erb +36 -25
  99. data/config/initializers/monkeys.rb +0 -1
  100. data/config/routes/api/v2.rb +1 -0
  101. data/config/routes/overrides.rb +3 -0
  102. data/config/routes.rb +2 -0
  103. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  104. data/db/migrate/20180612164926_add_content_org_id.rb +2 -2
  105. data/db/migrate/20211201154845_add_unique_indexes.rb +20 -0
  106. data/db/migrate/20211208034230_add_content_view_and_lifecycle_environment.rb +6 -0
  107. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +144 -0
  108. data/db/migrate/20220110223754_update_disconnected_settings.rb +20 -0
  109. data/db/migrate/20220120163252_fix_docker_download_policy.rb +11 -0
  110. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +22 -0
  111. data/db/migrate/20220127120843_fix_debian_download_policy.rb +11 -0
  112. data/db/migrate/20220204171908_rename_docker_tags_whitelist_and_add_exclude_tags.rb +8 -0
  113. data/db/migrate/20220207140355_change_deb_attributes_size_limit.rb +7 -0
  114. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  115. data/engines/bastion/app/views/bastion/layouts/application.html.erb +0 -1
  116. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +0 -1
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.controller.js +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-products.controller.js +1 -1
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-repositories.controller.js +1 -1
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html +1 -1
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html +26 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +212 -152
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.controller.js +1 -0
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +20 -8
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +2 -3
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +8 -3
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +34 -30
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +16 -2
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +35 -15
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js +5 -4
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +4 -3
  132. data/lib/katello/engine.rb +4 -0
  133. data/lib/katello/permission_creator.rb +1 -1
  134. data/lib/katello/permissions/host_permissions.rb +3 -1
  135. data/lib/katello/plugin.rb +4 -1
  136. data/lib/katello/repository_types/deb.rb +0 -1
  137. data/lib/katello/repository_types/docker.rb +4 -4
  138. data/lib/katello/repository_types/file.rb +0 -1
  139. data/lib/katello/repository_types/ostree.rb +4 -0
  140. data/lib/katello/repository_types/python.rb +5 -1
  141. data/lib/katello/repository_types/yum.rb +2 -9
  142. data/lib/katello/tasks/content_view_import_only.rake +34 -0
  143. data/lib/katello/tasks/import_applicability.rake +1 -1
  144. data/lib/katello/tasks/jenkins.rake +0 -2
  145. data/lib/katello/tasks/repository.rake +4 -1
  146. data/lib/katello/tasks/upgrades/4.4/publish_import_cvvs.rake +17 -0
  147. data/lib/katello/version.rb +1 -1
  148. data/locale/action_names.rb +8 -7
  149. data/locale/bn/katello.po +1402 -650
  150. data/locale/cs/katello.po +1217 -96
  151. data/locale/de/katello.po +2359 -1347
  152. data/locale/en/katello.po +1216 -94
  153. data/locale/es/katello.po +2201 -1172
  154. data/locale/fr/katello.po +2601 -1615
  155. data/locale/gu/katello.po +1564 -814
  156. data/locale/hi/katello.po +1563 -810
  157. data/locale/it/katello.po +1311 -282
  158. data/locale/ja/katello.po +2534 -1518
  159. data/locale/katello.pot +3430 -1326
  160. data/locale/kn/katello.po +1564 -812
  161. data/locale/ko/katello.po +1441 -409
  162. data/locale/mr/katello.po +1564 -776
  163. data/locale/or/katello.po +1565 -813
  164. data/locale/pa/katello.po +1559 -792
  165. data/locale/pt/katello.po +1314 -277
  166. data/locale/pt_BR/katello.po +2226 -1181
  167. data/locale/ru/katello.po +1587 -563
  168. data/locale/ta/katello.po +1373 -619
  169. data/locale/te/katello.po +1564 -810
  170. data/locale/zh_CN/katello.po +2936 -1890
  171. data/locale/zh_TW/katello.po +1508 -606
  172. data/webpack/__mocks__/foremanReact/{redux/actions/toasts.js → components/ToastsList/index.js} +3 -2
  173. data/webpack/components/ActionableDetail.js +35 -21
  174. data/webpack/components/Content/Details/__tests__/ContentDetailInfo.test.js +0 -2
  175. data/webpack/components/Content/Details/__tests__/ContentDetailRepositories.test.js +0 -2
  176. data/webpack/components/Content/Details/__tests__/ContentDetails.test.js +0 -2
  177. data/webpack/components/Content/__tests__/ContentPage.test.js +0 -2
  178. data/webpack/components/Content/__tests__/ContentTable.test.js +0 -2
  179. data/webpack/components/EditableSwitch.js +8 -2
  180. data/webpack/components/EditableTextInput/EditableTextInput.js +44 -86
  181. data/webpack/components/EditableTextInput/__tests__/editableTextInput.test.js +3 -3
  182. data/webpack/components/Errata/index.js +19 -11
  183. data/webpack/components/Packages/index.js +1 -1
  184. data/webpack/components/Search/Search.js +5 -2
  185. data/webpack/components/Search/__tests__/search.test.js +2 -3
  186. data/webpack/components/SelectOrg/SetOrganization.js +1 -1
  187. data/webpack/components/Table/PageControls.js +3 -6
  188. data/webpack/components/Table/TableHooks.js +46 -7
  189. data/webpack/components/Table/TableWrapper.js +14 -3
  190. data/webpack/components/TypeAhead/TypeAhead.js +5 -1
  191. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +4 -1
  192. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +2 -1
  193. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +1 -1
  194. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +3 -4
  195. data/webpack/components/extensions/HostDetails/HostDetailsActions.js +2 -0
  196. data/webpack/components/extensions/HostDetails/HostPackages/HostPackagesActions.js +18 -2
  197. data/webpack/components/extensions/HostDetails/HostPackages/HostPackagesConstants.js +12 -0
  198. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +1 -1
  199. data/webpack/components/extensions/HostDetails/Tabs/{ErrataTab.js → ErrataTab/ErrataTab.js} +30 -21
  200. data/webpack/components/extensions/HostDetails/Tabs/{ErrataTab.scss → ErrataTab/ErrataTab.scss} +0 -0
  201. data/webpack/components/extensions/HostDetails/Tabs/{ErratumExpansionContents.js → ErrataTab/ErratumExpansionContents.js} +0 -0
  202. data/webpack/components/extensions/HostDetails/Tabs/{ErratumExpansionDetail.js → ErrataTab/ErratumExpansionDetail.js} +0 -0
  203. data/webpack/components/extensions/HostDetails/{HostErrata → Tabs/ErrataTab}/HostErrataActions.js +3 -3
  204. data/webpack/components/extensions/HostDetails/{HostErrata → Tabs/ErrataTab}/HostErrataConstants.js +11 -0
  205. data/webpack/components/extensions/HostDetails/{HostErrata → Tabs/ErrataTab}/HostErrataSelectors.js +0 -0
  206. data/webpack/components/extensions/HostDetails/Tabs/PackageInstallModal.js +279 -0
  207. data/webpack/components/extensions/HostDetails/Tabs/PackageInstallModal.scss +3 -0
  208. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab.js +125 -8
  209. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +27 -4
  210. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +2 -1
  211. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +6 -3
  212. data/webpack/components/extensions/HostDetails/Tabs/{EnableTracerEmptyState.js → TracesTab/EnableTracerEmptyState.js} +0 -0
  213. data/webpack/components/extensions/HostDetails/Tabs/{EnableTracerModal.js → TracesTab/EnableTracerModal.js} +3 -2
  214. data/webpack/components/extensions/HostDetails/Tabs/{HostTracesActions.js → TracesTab/HostTracesActions.js} +2 -2
  215. data/webpack/components/extensions/HostDetails/Tabs/{HostTracesConstants.js → TracesTab/HostTracesConstants.js} +0 -0
  216. data/webpack/components/extensions/HostDetails/Tabs/{HostTracesSelectors.js → TracesTab/HostTracesSelectors.js} +0 -0
  217. data/webpack/components/extensions/HostDetails/Tabs/{TracesTab.js → TracesTab/TracesTab.js} +8 -5
  218. data/webpack/components/extensions/HostDetails/Tabs/{TracesTab.scss → TracesTab/TracesTab.scss} +0 -0
  219. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +17 -18
  220. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +385 -0
  221. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +1 -1
  222. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +58 -7
  223. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +2 -2
  224. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +4 -4
  225. data/webpack/components/extensions/HostDetails/Tabs/__tests__/yumInstallablePackages.fixtures.json +72 -0
  226. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +12 -5
  227. data/webpack/components/extensions/HostDetails/YumInstallablePackages/YumInstallablePackagesActions.js +18 -0
  228. data/webpack/components/extensions/HostDetails/YumInstallablePackages/YumInstallablePackagesConstants.js +3 -0
  229. data/webpack/components/extensions/HostDetails/YumInstallablePackages/YumInstallablePackagesSelectors.js +16 -0
  230. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +19 -0
  231. data/webpack/components/pf3Table/components/Table.js +2 -3
  232. data/webpack/components/pf3Table/components/Table.test.js +0 -3
  233. data/webpack/components/pf3Table/components/__snapshots__/Table.test.js.snap +9 -8
  234. data/webpack/containers/Application/config.js +5 -0
  235. data/webpack/global_index.js +1 -1
  236. data/webpack/global_test_setup.js +1 -1
  237. data/webpack/index.js +7 -0
  238. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -2
  239. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -2
  240. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -2
  241. data/webpack/scenes/Content/ContentConfig.js +55 -5
  242. data/webpack/scenes/Content/ContentPage.js +1 -1
  243. data/webpack/scenes/Content/Details/ContentDetails.js +1 -1
  244. data/webpack/scenes/Content/Details/ContentInfo.js +1 -1
  245. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -1
  246. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +4 -4
  247. data/webpack/scenes/Content/Table/ContentTable.js +1 -1
  248. data/webpack/scenes/Content/__tests__/contentTable.test.js +3 -3
  249. data/webpack/scenes/ContentViews/ContentViewsConstants.js +2 -1
  250. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +6 -6
  251. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +2 -2
  252. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +21 -27
  253. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +5 -5
  254. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +8 -3
  255. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +11 -16
  256. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +2 -2
  257. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +14 -8
  258. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +2 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +2 -3
  260. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +2 -9
  261. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +3 -5
  262. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +2 -10
  263. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +2 -3
  264. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +2 -3
  265. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +2 -2
  266. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +1 -1
  267. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +23 -2
  268. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +11 -5
  269. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +16 -17
  270. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +1 -1
  271. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -6
  272. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +30 -34
  273. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +9 -8
  274. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +13 -15
  275. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionRepositoryCell.js +1 -1
  276. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +4 -4
  277. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +3 -3
  278. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +5 -3
  279. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  280. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +43 -0
  281. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +87 -0
  282. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +90 -0
  283. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +43 -0
  284. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +3 -0
  285. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +27 -0
  286. data/webpack/scenes/Hosts/ChangeContentSource/index.js +126 -0
  287. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +42 -0
  288. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +11 -0
  289. data/webpack/scenes/ModuleStreams/Details/Profiles/__tests__/ModuleStreamDetailProfiles.test.js +0 -1
  290. data/webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetails.test.js +0 -2
  291. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamPage.test.js +0 -2
  292. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamsTable.test.js +0 -2
  293. data/webpack/scenes/Organizations/OrganizationActions.js +5 -1
  294. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +31 -1
  295. data/webpack/scenes/RedHatRepositories/__tests__/RedHatRepositoriesPage.test.js +16 -0
  296. data/webpack/scenes/RedHatRepositories/__tests__/__snapshots__/RedHatRepositoriesPage.test.js.snap +11 -2
  297. data/webpack/scenes/RedHatRepositories/helpers.js +5 -5
  298. data/webpack/scenes/RedHatRepositories/index.js +11 -3
  299. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/AirGappedTypeForm.js +81 -0
  300. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +13 -0
  301. data/webpack/scenes/Subscriptions/Manifest/{CdnConfigurationForm.scss → CdnConfigurationTab/CdnConfigurationForm.scss} +0 -0
  302. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +106 -0
  303. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/UpstreamServerTypeForm.js +259 -0
  304. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/AirGappedTypeForm.test.js +44 -0
  305. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +67 -0
  306. data/webpack/scenes/Subscriptions/Manifest/{__tests__/CdnConfigurationForm.test.js → CdnConfigurationTab/__tests__/UpstreamServerTypeForm.test.js} +46 -17
  307. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +97 -0
  308. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +6 -1
  309. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +0 -1
  310. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -1
  311. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsActions.test.js.snap +3 -2
  312. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +4 -0
  313. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +9 -0
  314. data/webpack/scenes/Tasks/TaskActions.js +1 -1
  315. data/webpack/scenes/Tasks/__tests__/__snapshots__/TaskActions.test.js.snap +3 -2
  316. data/webpack/services/api/testHelpers.js +5 -3
  317. data/webpack/utils/helpers.js +6 -3
  318. metadata +81 -58
  319. data/app/services/katello/pulp/deb.rb +0 -55
  320. data/app/services/katello/pulp/distribution.rb +0 -7
  321. data/app/services/katello/pulp/docker_blob.rb +0 -7
  322. data/app/services/katello/pulp/docker_manifest.rb +0 -13
  323. data/app/services/katello/pulp/docker_manifest_list.rb +0 -14
  324. data/app/services/katello/pulp/docker_tag.rb +0 -14
  325. data/app/services/katello/pulp/erratum.rb +0 -129
  326. data/app/services/katello/pulp/file_unit.rb +0 -21
  327. data/app/services/katello/pulp/module_stream.rb +0 -39
  328. data/app/services/katello/pulp/package_category.rb +0 -7
  329. data/app/services/katello/pulp/package_group.rb +0 -20
  330. data/app/services/katello/pulp/pulp_content_unit.rb +0 -156
  331. data/app/services/katello/pulp/rpm.rb +0 -57
  332. data/app/services/katello/pulp/srpm.rb +0 -29
  333. data/app/services/katello/pulp/yum_metadata_file.rb +0 -30
  334. data/lib/monkeys/pulp3_13_checksumfix.rb +0 -17
  335. data/webpack/__mocks__/foremanReact/components/Pagination/PaginationHooks.js +0 -2
  336. data/webpack/__mocks__/foremanReact/components/Pagination/PaginationWrapper.js +0 -2
  337. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationForm.js +0 -185
data/locale/pt/katello.po CHANGED
@@ -1,19 +1,22 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the PACKAGE package.
3
+ # This file is distributed under the same license as the katello package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4
5
  #
5
6
  # Translators:
7
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2017
8
+ #
6
9
  msgid ""
7
10
  msgstr ""
8
- "Project-Id-Version: version 0.0.1\n"
11
+ "Project-Id-Version: katello 2.5.0\n"
9
12
  "Report-Msgid-Bugs-To: \n"
10
- "PO-Revision-Date: 2012-09-10 13:11+0000\n"
11
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12
- "Language-Team: LANGUAGE <LL@li.org>\n"
13
- "Language: pt\n"
13
+ "PO-Revision-Date: 2017-12-19 20:14+0000\n"
14
+ "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2017\n"
15
+ "Language-Team: Portuguese (https://www.transifex.com/foreman/teams/114/pt/)\n"
14
16
  "MIME-Version: 1.0\n"
15
17
  "Content-Type: text/plain; charset=UTF-8\n"
16
18
  "Content-Transfer-Encoding: 8bit\n"
19
+ "Language: pt\n"
17
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
21
 
19
22
  msgid ""
@@ -42,9 +45,48 @@ msgstr ""
42
45
  msgid " View task details "
43
46
  msgstr ""
44
47
 
48
+ msgid " ago"
49
+ msgstr ""
50
+
51
+ msgid " ago."
52
+ msgstr ""
53
+
54
+ msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
55
+ msgstr ""
56
+
57
+ msgid " content view is used in listed component content views. For more information, "
58
+ msgstr ""
59
+
60
+ msgid " content view is used in listed composite content views."
61
+ msgstr ""
62
+
45
63
  msgid " environment cannot be set to an environment already on its path"
46
64
  msgstr ""
47
65
 
66
+ msgid " found."
67
+ msgstr ""
68
+
69
+ msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
70
+ msgstr ""
71
+
72
+ msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
73
+ msgstr ""
74
+
75
+ msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
76
+ msgstr ""
77
+
78
+ msgid "${pluralize(hostResponse.length, 'host')} will be moved to content view ${selectedCVNameForHosts} in "
79
+ msgstr ""
80
+
81
+ msgid "${pluralize(versionCount, 'content view version')} in the environments below will be removed when content view is deleted"
82
+ msgstr ""
83
+
84
+ msgid "${selectedContentType}"
85
+ msgstr ""
86
+
87
+ msgid "${selectedContentType} will appear here when created."
88
+ msgstr ""
89
+
48
90
  msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
49
91
  msgstr ""
50
92
 
@@ -71,6 +113,9 @@ msgstr ""
71
113
  msgid "%s is not a valid package name"
72
114
  msgstr ""
73
115
 
116
+ msgid "%s is required"
117
+ msgstr ""
118
+
74
119
  msgid "%s is unreachable. %s"
75
120
  msgstr ""
76
121
 
@@ -332,6 +377,9 @@ msgstr ""
332
377
  msgid "A summary of new errata after a repository is synchronized"
333
378
  msgstr ""
334
379
 
380
+ msgid "ANY"
381
+ msgstr ""
382
+
335
383
  msgid "About page"
336
384
  msgstr ""
337
385
 
@@ -359,6 +407,9 @@ msgstr ""
359
407
  msgid "Action with sub plans"
360
408
  msgstr ""
361
409
 
410
+ msgid "Actions"
411
+ msgstr ""
412
+
362
413
  msgid "Activation Keys"
363
414
  msgstr ""
364
415
 
@@ -371,6 +422,9 @@ msgstr ""
371
422
  msgid "Activation key(s) for Subscription Manager."
372
423
  msgstr ""
373
424
 
425
+ msgid "Activation keys"
426
+ msgstr ""
427
+
374
428
  msgid "Activation keys and subscriptions can be managed"
375
429
  msgstr ""
376
430
 
@@ -389,6 +443,12 @@ msgstr ""
389
443
  msgid "Add"
390
444
  msgstr ""
391
445
 
446
+ msgid "Add Bookmark"
447
+ msgstr ""
448
+
449
+ msgid "Add RPM rule"
450
+ msgstr ""
451
+
392
452
  msgid "Add Subscriptions"
393
453
  msgstr ""
394
454
 
@@ -398,12 +458,24 @@ msgstr ""
398
458
  msgid "Add component"
399
459
  msgstr ""
400
460
 
461
+ msgid "Add component content views"
462
+ msgstr ""
463
+
401
464
  msgid "Add components to the content view"
402
465
  msgstr ""
403
466
 
467
+ msgid "Add content views"
468
+ msgstr ""
469
+
404
470
  msgid "Add custom cron logic for sync plan"
405
471
  msgstr ""
406
472
 
473
+ msgid "Add errata"
474
+ msgstr ""
475
+
476
+ msgid "Add filter rule"
477
+ msgstr ""
478
+
407
479
  msgid "Add filters using the 'Add filter' button above."
408
480
  msgstr ""
409
481
 
@@ -413,6 +485,9 @@ msgstr ""
413
485
  msgid "Add lifecycle environments to the smart proxy"
414
486
  msgstr ""
415
487
 
488
+ msgid "Add new bookmark"
489
+ msgstr ""
490
+
416
491
  msgid "Add one or more host collections to one or more hosts"
417
492
  msgstr ""
418
493
 
@@ -422,28 +497,37 @@ msgstr ""
422
497
  msgid "Add products to sync plan"
423
498
  msgstr ""
424
499
 
500
+ msgid "Add repositories"
501
+ msgstr ""
502
+
503
+ msgid "Add rule"
504
+ msgstr ""
505
+
425
506
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
426
507
  msgstr ""
427
508
 
428
509
  msgid "Add subscriptions to one or more hosts"
429
510
  msgstr ""
430
511
 
431
- msgid "Add to this filter using the 'Add RPM' button."
512
+ msgid "Add to this filter using the 'Add RPM rule' button."
513
+ msgstr ""
514
+
515
+ msgid "Add to this filter using the 'Add filter rule' button."
432
516
  msgstr ""
433
517
 
434
- msgid "Add to this filter using the 'Add package group' button."
518
+ msgid "Add traces by applying updates on this host."
435
519
  msgstr ""
436
520
 
437
521
  msgid "Added"
438
522
  msgstr ""
439
523
 
440
- msgid "Added Content:"
524
+ msgid "Added %s"
441
525
  msgstr ""
442
526
 
443
- msgid "Added component to content view"
527
+ msgid "Added Content:"
444
528
  msgstr ""
445
529
 
446
- msgid "Adding content units"
530
+ msgid "Added component to content view"
447
531
  msgstr ""
448
532
 
449
533
  msgid "Additional content"
@@ -452,30 +536,51 @@ msgstr ""
452
536
  msgid "Addons"
453
537
  msgstr ""
454
538
 
539
+ msgid "Affected repositories"
540
+ msgstr ""
541
+
455
542
  msgid "After generating the incremental update, apply the changes to the specified hosts. Only Errata are supported currently."
456
543
  msgstr ""
457
544
 
458
545
  msgid "Agent action"
459
546
  msgstr ""
460
547
 
548
+ msgid "All"
549
+ msgstr ""
550
+
461
551
  msgid "All Media"
462
552
  msgstr ""
463
553
 
554
+ msgid "All Repositories"
555
+ msgstr ""
556
+
464
557
  msgid "All available architectures for this repo are enabled."
465
558
  msgstr ""
466
559
 
467
560
  msgid "All errata applied"
468
561
  msgstr ""
469
562
 
563
+ msgid "All versions"
564
+ msgstr ""
565
+
566
+ msgid "All versions will be removed from these environments"
567
+ msgstr ""
568
+
470
569
  msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
471
570
  msgstr ""
472
571
 
572
+ 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)"
573
+ msgstr ""
574
+
473
575
  msgid "Allow hosts to re-register themselves only when they are in build mode"
474
576
  msgstr ""
475
577
 
476
578
  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."
477
579
  msgstr ""
478
580
 
581
+ msgid "Also include the latest upgradable package version for each host package"
582
+ msgstr ""
583
+
479
584
  msgid "Alter a hosts host collections"
480
585
  msgstr ""
481
586
 
@@ -499,6 +604,11 @@ msgid ""
499
604
  "%{error_message}"
500
605
  msgstr ""
501
606
 
607
+ msgid ""
608
+ "An error occurred during upload \n"
609
+ "%{error_message}"
610
+ msgstr ""
611
+
502
612
  msgid "Another component already includes content view with ID %s"
503
613
  msgstr ""
504
614
 
@@ -511,9 +621,42 @@ msgstr ""
511
621
  msgid "Ansible Collections"
512
622
  msgstr ""
513
623
 
624
+ msgid "Ansible collection"
625
+ msgstr ""
626
+
627
+ msgid "Ansible collections"
628
+ msgstr ""
629
+
514
630
  msgid "Applicability Batch Size"
515
631
  msgstr ""
516
632
 
633
+ msgid "Applicable Content Hosts"
634
+ msgstr ""
635
+
636
+ msgid "Application"
637
+ msgstr ""
638
+
639
+ msgid "Apply"
640
+ msgstr ""
641
+
642
+ msgid "Apply Erratum"
643
+ msgstr ""
644
+
645
+ msgid "Apply to all repositories in the CV"
646
+ msgstr ""
647
+
648
+ msgid "Apply to subset of repositories"
649
+ msgstr ""
650
+
651
+ msgid "Apply via Katello agent"
652
+ msgstr ""
653
+
654
+ msgid "Apply via customized remote execution"
655
+ msgstr ""
656
+
657
+ msgid "Apply via remote execution"
658
+ msgstr ""
659
+
517
660
  msgid "Arch"
518
661
  msgstr ""
519
662
 
@@ -526,6 +669,9 @@ msgstr ""
526
669
  msgid "Architecture(s)"
527
670
  msgstr ""
528
671
 
672
+ msgid "Are you sure you want to delete %(entitlementCount)s subscription(s)? This action will remove the subscription(s) and refresh your manifest. All systems using these subscription(s) will lose them and also may lose access to updates and Errata."
673
+ msgstr ""
674
+
529
675
  msgid "Are you sure you want to delete the manifest?"
530
676
  msgstr ""
531
677
 
@@ -603,9 +749,11 @@ msgstr ""
603
749
  msgid "At least one organization must exist."
604
750
  msgstr ""
605
751
 
606
- #, fuzzy
752
+ msgid "Atleast one errata type needs to be selected."
753
+ msgstr ""
754
+
607
755
  msgid "Attach a subscription"
608
- msgstr "Repositórios"
756
+ msgstr ""
609
757
 
610
758
  msgid "Attach subscriptions"
611
759
  msgstr ""
@@ -619,21 +767,17 @@ msgstr ""
619
767
  msgid "Auth URL requires Auth token be set."
620
768
  msgstr ""
621
769
 
622
- msgid "Auth token requires Auth URL be set."
623
- msgstr ""
624
-
625
770
  msgid "Author"
626
771
  msgstr ""
627
772
 
628
- msgid "Auto Publish"
629
- msgstr ""
630
-
631
773
  msgid "Auto Publish - Triggered by '%s'"
632
774
  msgstr ""
633
775
 
634
- #, fuzzy
635
776
  msgid "Auto attach subscriptions"
636
- msgstr "Repositórios"
777
+ msgstr ""
778
+
779
+ msgid "Auto publish"
780
+ msgstr ""
637
781
 
638
782
  msgid "Autopublish"
639
783
  msgstr ""
@@ -650,11 +794,10 @@ msgstr ""
650
794
  msgid "Available Repositories"
651
795
  msgstr ""
652
796
 
653
- #, fuzzy
654
- msgid "Backend System Status"
655
- msgstr "Sistema"
797
+ msgid "Available Schema Versions"
798
+ msgstr ""
656
799
 
657
- msgid "Background"
800
+ msgid "Backend System Status"
658
801
  msgstr ""
659
802
 
660
803
  msgid "Base URL to perform repo discovery on"
@@ -669,6 +812,9 @@ msgstr ""
669
812
  msgid "Batch size to sync repositories in."
670
813
  msgstr ""
671
814
 
815
+ 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."
816
+ msgstr ""
817
+
672
818
  msgid "Beta"
673
819
  msgstr ""
674
820
 
@@ -678,10 +824,13 @@ msgstr ""
678
824
  msgid "Bind entitlements to an allocation"
679
825
  msgstr ""
680
826
 
681
- msgid "Both major and minor parameters have to be used to override a CV version"
827
+ msgid "Bookmark this search"
828
+ msgstr ""
829
+
830
+ msgid "Bookmarks marked as public are available to all users"
682
831
  msgstr ""
683
832
 
684
- msgid "Branches updated"
833
+ msgid "Both major and minor parameters have to be used to override a CV version"
685
834
  msgstr ""
686
835
 
687
836
  msgid "Bug Fix"
@@ -690,9 +839,24 @@ msgstr ""
690
839
  msgid "Bugfix"
691
840
  msgstr ""
692
841
 
842
+ msgid "Bugs"
843
+ msgstr ""
844
+
845
+ msgid "Bulk generate applicability for host %s"
846
+ msgstr ""
847
+
693
848
  msgid "Bulk generate applicability for hosts"
694
849
  msgstr ""
695
850
 
851
+ msgid "CDN Configuration"
852
+ msgstr ""
853
+
854
+ msgid "CDN Configuration for Red Hat Content"
855
+ msgstr ""
856
+
857
+ msgid "CDN Configuration updated."
858
+ msgstr ""
859
+
696
860
  msgid "CDN SSL version"
697
861
  msgstr ""
698
862
 
@@ -708,6 +872,9 @@ msgstr ""
708
872
  msgid "CVE identifier"
709
873
  msgstr ""
710
874
 
875
+ msgid "CVEs"
876
+ msgstr ""
877
+
711
878
  msgid "Calculate Applicable Errata based on a particular Content View"
712
879
  msgstr ""
713
880
 
@@ -735,9 +902,8 @@ msgstr ""
735
902
  msgid "Cancel"
736
903
  msgstr ""
737
904
 
738
- #, fuzzy
739
905
  msgid "Cancel repository discovery"
740
- msgstr "Repositórios"
906
+ msgstr ""
741
907
 
742
908
  msgid "Cancel running smart proxy synchronization"
743
909
  msgstr ""
@@ -745,9 +911,6 @@ msgstr ""
745
911
  msgid "Canceled"
746
912
  msgstr ""
747
913
 
748
- msgid "Cancelled"
749
- msgstr ""
750
-
751
914
  msgid "Cancelled."
752
915
  msgstr ""
753
916
 
@@ -883,6 +1046,9 @@ msgstr ""
883
1046
  msgid "Cannot sync file:// repositories with the On Demand Download Policy"
884
1047
  msgstr ""
885
1048
 
1049
+ msgid "Cannot upload Ansible collections."
1050
+ msgstr ""
1051
+
886
1052
  msgid "Cannot upload Container Image content."
887
1053
  msgstr ""
888
1054
 
@@ -916,9 +1082,8 @@ msgstr ""
916
1082
  msgid "Click here to go to the tasks page for the task."
917
1083
  msgstr ""
918
1084
 
919
- #, fuzzy
920
1085
  msgid "Clone"
921
- msgstr "Nenhum"
1086
+ msgstr ""
922
1087
 
923
1088
  msgid "Close"
924
1089
  msgstr ""
@@ -944,15 +1109,26 @@ msgstr ""
944
1109
  msgid "Component content view"
945
1110
  msgstr ""
946
1111
 
1112
+ msgid "Component content views"
1113
+ msgstr ""
1114
+
1115
+ msgid "Components"
1116
+ msgstr ""
1117
+
1118
+ msgid "Composite"
1119
+ msgstr ""
1120
+
947
1121
  msgid "Composite Content View"
948
1122
  msgstr ""
949
1123
 
950
1124
  msgid "Composite Content View '%{subject}' failed auto-publish"
951
1125
  msgstr ""
952
1126
 
953
- #, fuzzy
954
1127
  msgid "Composite content view"
955
- msgstr "Repositórios"
1128
+ msgstr ""
1129
+
1130
+ msgid "Composite content views"
1131
+ msgstr ""
956
1132
 
957
1133
  msgid "Compute resource IDs"
958
1134
  msgstr ""
@@ -969,6 +1145,12 @@ msgstr ""
969
1145
  msgid "Consisting of multiple component content views"
970
1146
  msgstr ""
971
1147
 
1148
+ msgid "Consists of content views"
1149
+ msgstr ""
1150
+
1151
+ msgid "Consists of repositories"
1152
+ msgstr ""
1153
+
972
1154
  msgid "Consumed"
973
1155
  msgstr ""
974
1156
 
@@ -993,31 +1175,47 @@ msgstr ""
993
1175
  msgid "Container image tag"
994
1176
  msgstr ""
995
1177
 
1178
+ msgid "Container image tags"
1179
+ msgstr ""
1180
+
1181
+ msgid "Container manifest lists"
1182
+ msgstr ""
1183
+
1184
+ msgid "Container manifests"
1185
+ msgstr ""
1186
+
996
1187
  msgid "Content"
997
1188
  msgstr ""
998
1189
 
1190
+ msgid "Content Count"
1191
+ msgstr ""
1192
+
999
1193
  msgid "Content Credential ID"
1000
1194
  msgstr ""
1001
1195
 
1002
1196
  msgid "Content Credential numeric identifier"
1003
1197
  msgstr ""
1004
1198
 
1199
+ msgid "Content Credential to use for SSL CA"
1200
+ msgstr ""
1201
+
1005
1202
  msgid "Content Credentials"
1006
1203
  msgstr ""
1007
1204
 
1205
+ msgid "Content Details"
1206
+ msgstr ""
1207
+
1008
1208
  msgid "Content Download URL"
1009
1209
  msgstr ""
1010
1210
 
1011
1211
  msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
1012
1212
  msgstr ""
1013
1213
 
1014
- #, fuzzy
1015
1214
  msgid "Content Hosts"
1016
- msgstr "Repositórios"
1215
+ msgstr ""
1017
1216
 
1018
- #, fuzzy
1019
1217
  msgid "Content Source"
1020
- msgstr "Repositórios"
1218
+ msgstr ""
1021
1219
 
1022
1220
  msgid "Content Sync"
1023
1221
  msgstr ""
@@ -1031,9 +1229,6 @@ msgstr ""
1031
1229
  msgid "Content View %{view}: Versions: %{versions}"
1032
1230
  msgstr ""
1033
1231
 
1034
- msgid "Content View Dependency Solving Algorithm"
1035
- msgstr ""
1036
-
1037
1232
  msgid "Content View Dependency Solving Default"
1038
1233
  msgstr ""
1039
1234
 
@@ -1049,6 +1244,12 @@ msgstr ""
1049
1244
  msgid "Content View ID"
1050
1245
  msgstr ""
1051
1246
 
1247
+ msgid "Content View Label"
1248
+ msgstr ""
1249
+
1250
+ msgid "Content View Name"
1251
+ msgstr ""
1252
+
1052
1253
  msgid "Content View Version %{id} not in all specified environments %{envs}"
1053
1254
  msgstr ""
1054
1255
 
@@ -1079,9 +1280,15 @@ msgstr ""
1079
1280
  msgid "Content host must be unregistered before performing this action."
1080
1281
  msgstr ""
1081
1282
 
1283
+ msgid "Content hosts"
1284
+ msgstr ""
1285
+
1082
1286
  msgid "Content imported from %{path} into content view '%{name}' by %{user}"
1083
1287
  msgstr ""
1084
1288
 
1289
+ msgid "Content not uploaded to pulp"
1290
+ msgstr ""
1291
+
1085
1292
  msgid "Content source ID"
1086
1293
  msgstr ""
1087
1294
 
@@ -1112,6 +1319,9 @@ msgstr ""
1112
1319
  msgid "Content view ID"
1113
1320
  msgstr ""
1114
1321
 
1322
+ msgid "Content view details"
1323
+ msgstr ""
1324
+
1115
1325
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1116
1326
  msgstr ""
1117
1327
 
@@ -1121,6 +1331,9 @@ msgstr ""
1121
1331
  msgid "Content view label"
1122
1332
  msgstr ""
1123
1333
 
1334
+ msgid "Content view name"
1335
+ msgstr ""
1336
+
1124
1337
  msgid "Content view not provided in the metadata"
1125
1338
  msgstr ""
1126
1339
 
@@ -1136,6 +1349,9 @@ msgstr ""
1136
1349
  msgid "Content view version import history identifier"
1137
1350
  msgstr ""
1138
1351
 
1352
+ msgid "Content views"
1353
+ msgstr ""
1354
+
1139
1355
  msgid "Content_Host_Status"
1140
1356
  msgstr ""
1141
1357
 
@@ -1157,6 +1373,9 @@ msgstr ""
1157
1373
  msgid "Copy an activation key"
1158
1374
  msgstr ""
1159
1375
 
1376
+ msgid "Copy content view"
1377
+ msgstr ""
1378
+
1160
1379
  msgid "Copy version units to library"
1161
1380
  msgstr ""
1162
1381
 
@@ -1199,23 +1418,23 @@ msgstr ""
1199
1418
  msgid "Could not remove the lifecycle environment from the smart proxy"
1200
1419
  msgstr ""
1201
1420
 
1421
+ msgid "Couldn't establish a connection to %s"
1422
+ msgstr ""
1423
+
1202
1424
  msgid "Couldn't find %{content_type} with id '%{id}'"
1203
1425
  msgstr ""
1204
1426
 
1205
1427
  msgid "Couldn't find %{type} Filter with id %{id}"
1206
1428
  msgstr ""
1207
1429
 
1208
- #, fuzzy
1209
1430
  msgid "Couldn't find ContentViewFilter with id=%s"
1210
- msgstr "Não foi possível encontrar modelo '%s'"
1431
+ msgstr ""
1211
1432
 
1212
- #, fuzzy
1213
1433
  msgid "Couldn't find Organization '%s'."
1214
- msgstr "Não foi possível encontrar modelo '%s'"
1434
+ msgstr ""
1215
1435
 
1216
- #, fuzzy
1217
1436
  msgid "Couldn't find activation key '%s'"
1218
- msgstr "Não foi possível encontrar modelo '%s'"
1437
+ msgstr ""
1219
1438
 
1220
1439
  msgid "Couldn't find activation key content view id '%s'"
1221
1440
  msgstr ""
@@ -1223,9 +1442,8 @@ msgstr ""
1223
1442
  msgid "Couldn't find activation key environment '%s'"
1224
1443
  msgstr ""
1225
1444
 
1226
- #, fuzzy
1227
1445
  msgid "Couldn't find consumer '%s'"
1228
- msgstr "Não foi possível encontrar modelo '%s'"
1446
+ msgstr ""
1229
1447
 
1230
1448
  msgid "Couldn't find content host content view id '%s'"
1231
1449
  msgstr ""
@@ -1233,48 +1451,41 @@ msgstr ""
1233
1451
  msgid "Couldn't find content host environment '%s'"
1234
1452
  msgstr ""
1235
1453
 
1236
- #, fuzzy
1237
1454
  msgid "Couldn't find content view '%s'"
1238
- msgstr "Não foi possível encontrar modelo '%s'"
1455
+ msgstr ""
1239
1456
 
1240
- #, fuzzy
1241
1457
  msgid "Couldn't find content view version '%s'"
1242
- msgstr "Não foi possível encontrar modelo '%s'"
1458
+ msgstr ""
1243
1459
 
1244
- #, fuzzy
1245
1460
  msgid "Couldn't find content view versions '%s'"
1246
- msgstr "Não foi possível encontrar modelo '%s'"
1461
+ msgstr ""
1462
+
1463
+ msgid "Couldn't find content view with id: '%s'"
1464
+ msgstr ""
1247
1465
 
1248
- #, fuzzy
1249
1466
  msgid "Couldn't find environment '%s'"
1250
- msgstr "Não foi possível encontrar modelo '%s'"
1467
+ msgstr ""
1251
1468
 
1252
- #, fuzzy
1253
1469
  msgid "Couldn't find errata ids '%s'"
1254
- msgstr "Não foi possível encontrar modelo '%s'"
1470
+ msgstr ""
1255
1471
 
1256
- #, fuzzy
1257
1472
  msgid "Couldn't find host collection '%s'"
1258
- msgstr "Não foi possível encontrar modelo '%s'"
1473
+ msgstr ""
1259
1474
 
1260
1475
  msgid "Couldn't find host with host id '%s'"
1261
1476
  msgstr ""
1262
1477
 
1263
- #, fuzzy
1264
1478
  msgid "Couldn't find organization '%s'"
1265
- msgstr "Não foi possível encontrar modelo '%s'"
1479
+ msgstr ""
1266
1480
 
1267
- #, fuzzy
1268
1481
  msgid "Couldn't find prior-environment '%s'"
1269
- msgstr "Não foi possível encontrar modelo '%s'"
1482
+ msgstr ""
1270
1483
 
1271
- #, fuzzy
1272
1484
  msgid "Couldn't find product with id '%s'"
1273
- msgstr "Não foi possível encontrar modelo '%s'"
1485
+ msgstr ""
1274
1486
 
1275
- #, fuzzy
1276
1487
  msgid "Couldn't find repository '%s'"
1277
- msgstr "Não foi possível encontrar modelo '%s'"
1488
+ msgstr ""
1278
1489
 
1279
1490
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1280
1491
  msgstr ""
@@ -1303,9 +1514,8 @@ msgstr ""
1303
1514
  msgid "Create a Content Credential"
1304
1515
  msgstr ""
1305
1516
 
1306
- #, fuzzy
1307
1517
  msgid "Create a content view"
1308
- msgstr "Repositórios"
1518
+ msgstr ""
1309
1519
 
1310
1520
  msgid "Create a custom repository"
1311
1521
  msgstr ""
@@ -1319,9 +1529,8 @@ msgstr ""
1319
1529
  msgid "Create a package group"
1320
1530
  msgstr ""
1321
1531
 
1322
- #, fuzzy
1323
1532
  msgid "Create a product"
1324
- msgstr "Arquitetura"
1533
+ msgstr ""
1325
1534
 
1326
1535
  msgid "Create a sync plan"
1327
1536
  msgstr ""
@@ -1329,9 +1538,8 @@ msgstr ""
1329
1538
  msgid "Create an activation key"
1330
1539
  msgstr ""
1331
1540
 
1332
- #, fuzzy
1333
1541
  msgid "Create an environment"
1334
- msgstr "Repositórios"
1542
+ msgstr ""
1335
1543
 
1336
1544
  msgid "Create an environment in an organization"
1337
1545
  msgstr ""
@@ -1348,7 +1556,7 @@ msgstr ""
1348
1556
  msgid "Create organization"
1349
1557
  msgstr ""
1350
1558
 
1351
- msgid "Creating local repository"
1559
+ msgid "Critical"
1352
1560
  msgstr ""
1353
1561
 
1354
1562
  msgid "Cron expression is not valid!"
@@ -1363,9 +1571,8 @@ msgstr ""
1363
1571
  msgid "Current organization not set."
1364
1572
  msgstr ""
1365
1573
 
1366
- #, fuzzy
1367
1574
  msgid "Custom Content Repositories"
1368
- msgstr "Repositórios"
1575
+ msgstr ""
1369
1576
 
1370
1577
  msgid "Custom cron expression only needs to be set for interval value of custom cron"
1371
1578
  msgstr ""
@@ -1394,6 +1601,12 @@ msgstr ""
1394
1601
  msgid "Deb Packages"
1395
1602
  msgstr ""
1396
1603
 
1604
+ msgid "Deb package identifiers to filter content by"
1605
+ msgstr ""
1606
+
1607
+ msgid "Deb packages"
1608
+ msgstr ""
1609
+
1397
1610
  msgid "Debug Certificate"
1398
1611
  msgstr ""
1399
1612
 
@@ -1436,13 +1649,13 @@ msgstr ""
1436
1649
  msgid "Default content view versions cannot be promoted"
1437
1650
  msgstr ""
1438
1651
 
1439
- msgid "Default download policy for Smart Proxy syncs (either 'inherit', immediate', 'on_demand', or 'background')"
1652
+ msgid "Default download policy for Smart Proxy syncs (either 'inherit', immediate', or 'on_demand')"
1440
1653
  msgstr ""
1441
1654
 
1442
- msgid "Default download policy for custom repositories (either 'immediate', 'on_demand', or 'background')"
1655
+ msgid "Default download policy for custom repositories (either 'immediate' or 'on_demand')"
1443
1656
  msgstr ""
1444
1657
 
1445
- msgid "Default download policy for enabled Red Hat repositories (either 'immediate', 'on_demand', or 'background')"
1658
+ msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
1446
1659
  msgstr ""
1447
1660
 
1448
1661
  msgid "Default finish template for new Operating Systems created from synced content"
@@ -1505,31 +1718,29 @@ msgstr ""
1505
1718
  msgid "Delete Host upon unregister"
1506
1719
  msgstr ""
1507
1720
 
1508
- #, fuzzy
1509
1721
  msgid "Delete Lifecycle Environment"
1510
- msgstr "Repositórios"
1722
+ msgstr ""
1511
1723
 
1512
- #, fuzzy
1513
1724
  msgid "Delete Manifest"
1514
- msgstr "Arquitetura"
1725
+ msgstr ""
1515
1726
 
1516
1727
  msgid "Delete Package Group"
1517
1728
  msgstr ""
1518
1729
 
1519
- #, fuzzy
1520
1730
  msgid "Delete Product"
1521
- msgstr "Arquitetura"
1731
+ msgstr ""
1522
1732
 
1523
1733
  msgid "Delete Upstream Subscription"
1524
1734
  msgstr ""
1525
1735
 
1526
- #, fuzzy
1736
+ msgid "Delete Version"
1737
+ msgstr ""
1738
+
1527
1739
  msgid "Delete a content view"
1528
- msgstr "Repositórios"
1740
+ msgstr ""
1529
1741
 
1530
- #, fuzzy
1531
1742
  msgid "Delete a filter rule"
1532
- msgstr "Arquitetura"
1743
+ msgstr ""
1533
1744
 
1534
1745
  msgid "Delete a package group"
1535
1746
  msgstr ""
@@ -1546,18 +1757,29 @@ msgstr ""
1546
1757
  msgid "Delete an upload request"
1547
1758
  msgstr ""
1548
1759
 
1760
+ msgid "Delete content view"
1761
+ msgstr ""
1762
+
1549
1763
  msgid "Delete manifest from Red Hat provider"
1550
1764
  msgstr ""
1551
1765
 
1552
1766
  msgid "Delete multiple filters from a content view"
1553
1767
  msgstr ""
1554
1768
 
1769
+ msgid "Delete version"
1770
+ msgstr ""
1771
+
1555
1772
  msgid "Deleted consumer '%s'"
1556
1773
  msgstr ""
1557
1774
 
1558
- #, fuzzy
1775
+ msgid "Deleted from "
1776
+ msgstr ""
1777
+
1559
1778
  msgid "Deleted from %{environment}"
1560
- msgstr "Repositórios"
1779
+ msgstr ""
1780
+
1781
+ msgid "Deleting content view : "
1782
+ msgstr ""
1561
1783
 
1562
1784
  msgid "Deleting manifest in '%{subject}' failed."
1563
1785
  msgstr ""
@@ -1586,9 +1808,8 @@ msgstr ""
1586
1808
  msgid "Destroy"
1587
1809
  msgstr ""
1588
1810
 
1589
- #, fuzzy
1590
1811
  msgid "Destroy Content Host"
1591
- msgstr "Sistema"
1812
+ msgstr ""
1592
1813
 
1593
1814
  msgid "Destroy Content Host %s"
1594
1815
  msgstr ""
@@ -1611,9 +1832,8 @@ msgstr ""
1611
1832
  msgid "Destroy an activation key"
1612
1833
  msgstr ""
1613
1834
 
1614
- #, fuzzy
1615
1835
  msgid "Destroy an environment"
1616
- msgstr "Repositórios"
1836
+ msgstr ""
1617
1837
 
1618
1838
  msgid "Destroy an environment in an organization"
1619
1839
  msgstr ""
@@ -1654,6 +1874,9 @@ msgstr ""
1654
1874
  msgid "Disable simple content access for a manifest"
1655
1875
  msgstr ""
1656
1876
 
1877
+ msgid "Disabled"
1878
+ msgstr ""
1879
+
1657
1880
  msgid "Disabling Simple Content Access failed for '%{subject}'."
1658
1881
  msgstr ""
1659
1882
 
@@ -1663,9 +1886,8 @@ msgstr ""
1663
1886
  msgid "Discover"
1664
1887
  msgstr ""
1665
1888
 
1666
- #, fuzzy
1667
1889
  msgid "Discover Repositories"
1668
- msgstr "Repositórios"
1890
+ msgstr ""
1669
1891
 
1670
1892
  msgid "Do not include this array of content views"
1671
1893
  msgstr ""
@@ -1676,6 +1898,9 @@ msgstr ""
1676
1898
  msgid "Do not wait for the update action to finish. Default: true"
1677
1899
  msgstr ""
1678
1900
 
1901
+ msgid "Docker Tags"
1902
+ msgstr ""
1903
+
1679
1904
  msgid "Domain IDs"
1680
1905
  msgstr ""
1681
1906
 
@@ -1685,7 +1910,7 @@ msgstr ""
1685
1910
  msgid "Download a debug certificate"
1686
1911
  msgstr ""
1687
1912
 
1688
- msgid "Duplicate branches specified - %{branches}"
1913
+ msgid "Duplicate artifact detected"
1689
1914
  msgstr ""
1690
1915
 
1691
1916
  msgid "Duration"
@@ -1697,6 +1922,15 @@ msgstr ""
1697
1922
  msgid "Edit"
1698
1923
  msgstr ""
1699
1924
 
1925
+ msgid "Edit RPM rule"
1926
+ msgstr ""
1927
+
1928
+ msgid "Edit filter rule"
1929
+ msgstr ""
1930
+
1931
+ msgid "Edit rule"
1932
+ msgstr ""
1933
+
1700
1934
  msgid "Editing Entitlements"
1701
1935
  msgstr ""
1702
1936
 
@@ -1724,6 +1958,12 @@ msgstr ""
1724
1958
  msgid "Enable Simple Content Access"
1725
1959
  msgstr ""
1726
1960
 
1961
+ msgid "Enable Tracer"
1962
+ msgstr ""
1963
+
1964
+ msgid "Enable Traces"
1965
+ msgstr ""
1966
+
1727
1967
  msgid "Enable a repository from the set"
1728
1968
  msgstr ""
1729
1969
 
@@ -1742,6 +1982,9 @@ msgstr ""
1742
1982
  msgid "Enabling Simple Content Access failed for '%{subject}'."
1743
1983
  msgstr ""
1744
1984
 
1985
+ msgid "Enabling will install the katello-host-tools-tracer package on the host."
1986
+ msgstr ""
1987
+
1745
1988
  msgid "End Date"
1746
1989
  msgstr ""
1747
1990
 
@@ -1751,6 +1994,9 @@ msgstr ""
1751
1994
  msgid "Enhancement"
1752
1995
  msgstr ""
1753
1996
 
1997
+ msgid "Enter a name"
1998
+ msgstr ""
1999
+
1754
2000
  msgid "Entitlements"
1755
2001
  msgstr ""
1756
2002
 
@@ -1769,9 +2015,15 @@ msgstr ""
1769
2015
  msgid "Environments"
1770
2016
  msgstr ""
1771
2017
 
2018
+ msgid "Equal to"
2019
+ msgstr ""
2020
+
1772
2021
  msgid "Errata"
1773
2022
  msgstr ""
1774
2023
 
2024
+ msgid "Errata - by date range"
2025
+ msgstr ""
2026
+
1775
2027
  msgid "Errata ID"
1776
2028
  msgstr ""
1777
2029
 
@@ -1793,6 +2045,9 @@ msgstr ""
1793
2045
  msgid "Errata to explicitly exclude in the action. All other applicable errata will be included in the action, unless an included parameter is passed as well."
1794
2046
  msgstr ""
1795
2047
 
2048
+ msgid "Errata type"
2049
+ msgstr ""
2050
+
1796
2051
  msgid "Erratum"
1797
2052
  msgstr ""
1798
2053
 
@@ -1829,7 +2084,22 @@ msgstr ""
1829
2084
  msgid "Exclude"
1830
2085
  msgstr ""
1831
2086
 
1832
- msgid "Excluded"
2087
+ msgid "Exclude all Module Streams with no errata."
2088
+ msgstr ""
2089
+
2090
+ msgid "Exclude all RPMs with no errata."
2091
+ msgstr ""
2092
+
2093
+ msgid "Exclude filter"
2094
+ msgstr ""
2095
+
2096
+ msgid "Excluded"
2097
+ msgstr ""
2098
+
2099
+ msgid "Excluded errata"
2100
+ msgstr ""
2101
+
2102
+ msgid "Excludes"
1833
2103
  msgstr ""
1834
2104
 
1835
2105
  msgid "Exit"
@@ -1859,6 +2129,9 @@ msgstr ""
1859
2129
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1860
2130
  msgstr ""
1861
2131
 
2132
+ msgid "Exported content view"
2133
+ msgstr ""
2134
+
1862
2135
  msgid "Exported version"
1863
2136
  msgstr ""
1864
2137
 
@@ -1868,9 +2141,6 @@ msgstr ""
1868
2141
  msgid "Failed"
1869
2142
  msgstr ""
1870
2143
 
1871
- msgid "Failed indexing errata, maximum retries encountered"
1872
- msgstr ""
1873
-
1874
2144
  msgid "Failed to delete %{host}: %{errors}"
1875
2145
  msgstr ""
1876
2146
 
@@ -1912,6 +2182,9 @@ msgstr ""
1912
2182
  msgid "File contents"
1913
2183
  msgstr ""
1914
2184
 
2185
+ msgid "Filename"
2186
+ msgstr ""
2187
+
1915
2188
  msgid "Files"
1916
2189
  msgstr ""
1917
2190
 
@@ -1927,6 +2200,12 @@ msgstr ""
1927
2200
  msgid "Filter created"
1928
2201
  msgstr ""
1929
2202
 
2203
+ msgid "Filter deleted"
2204
+ msgstr ""
2205
+
2206
+ msgid "Filter edited"
2207
+ msgstr ""
2208
+
1930
2209
  msgid "Filter only composite content views"
1931
2210
  msgstr ""
1932
2211
 
@@ -1951,7 +2230,19 @@ msgstr ""
1951
2230
  msgid "Filter products by sync plan id"
1952
2231
  msgstr ""
1953
2232
 
1954
- msgid "Filter successfully deleted"
2233
+ msgid "Filter rule added"
2234
+ msgstr ""
2235
+
2236
+ msgid "Filter rule edited"
2237
+ msgstr ""
2238
+
2239
+ msgid "Filter rule removed"
2240
+ msgstr ""
2241
+
2242
+ msgid "Filter rules added"
2243
+ msgstr ""
2244
+
2245
+ msgid "Filter rules deleted"
1955
2246
  msgstr ""
1956
2247
 
1957
2248
  msgid "Filter versions by environment"
@@ -1969,7 +2260,10 @@ msgstr ""
1969
2260
  msgid "Filters"
1970
2261
  msgstr ""
1971
2262
 
1972
- msgid "Filters successfully deleted"
2263
+ msgid "Filters deleted"
2264
+ msgstr ""
2265
+
2266
+ msgid "Finish"
1973
2267
  msgstr ""
1974
2268
 
1975
2269
  msgid "Finish action timeout"
@@ -1992,6 +2286,18 @@ msgstr ""
1992
2286
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
1993
2287
  msgstr ""
1994
2288
 
2289
+ msgid "Force delete the repository by removing it from all content view versions"
2290
+ msgstr ""
2291
+
2292
+ msgid "Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy"
2293
+ msgstr ""
2294
+
2295
+ msgid "Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy."
2296
+ msgstr ""
2297
+
2298
+ msgid "Force promotion"
2299
+ msgstr ""
2300
+
1995
2301
  msgid "Force regenerate applicability."
1996
2302
  msgstr ""
1997
2303
 
@@ -2007,6 +2313,9 @@ msgstr ""
2007
2313
  msgid "Forces a republish of the version's repositories' metadata"
2008
2314
  msgstr ""
2009
2315
 
2316
+ msgid "Full description"
2317
+ msgstr ""
2318
+
2010
2319
  msgid "Fully entitled"
2011
2320
  msgstr ""
2012
2321
 
@@ -2025,7 +2334,7 @@ msgstr ""
2025
2334
  msgid "Get all content available, not just that provided by subscriptions"
2026
2335
  msgstr ""
2027
2336
 
2028
- msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
2337
+ msgid "Get all content available, not just that provided by subscriptions."
2029
2338
  msgstr ""
2030
2339
 
2031
2340
  msgid "Get content and overrides for the host"
@@ -2049,9 +2358,21 @@ msgstr ""
2049
2358
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2050
2359
  msgstr ""
2051
2360
 
2361
+ msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2362
+ msgstr ""
2363
+
2364
+ msgid "Given criteria doesn't match any activation keys. Try changing your rule."
2365
+ msgstr ""
2366
+
2367
+ msgid "Given criteria doesn't match any hosts. Try changing your rule."
2368
+ msgstr ""
2369
+
2052
2370
  msgid "Go to task page"
2053
2371
  msgstr ""
2054
2372
 
2373
+ msgid "Greater than"
2374
+ msgstr ""
2375
+
2055
2376
  msgid "Group %{id} already created."
2056
2377
  msgstr ""
2057
2378
 
@@ -2067,6 +2388,12 @@ msgstr ""
2067
2388
  msgid "Has to be > 0"
2068
2389
  msgstr ""
2069
2390
 
2391
+ msgid "Helper"
2392
+ msgstr ""
2393
+
2394
+ msgid "Hide description"
2395
+ msgstr ""
2396
+
2070
2397
  msgid "History"
2071
2398
  msgstr ""
2072
2399
 
@@ -2145,6 +2472,9 @@ msgstr ""
2145
2472
  msgid "Host has not been registered with subscription-manager."
2146
2473
  msgstr ""
2147
2474
 
2475
+ msgid "Host id to list applicable deb packages for"
2476
+ msgstr ""
2477
+
2148
2478
  msgid "Host id to list applicable errata for"
2149
2479
  msgstr ""
2150
2480
 
@@ -2163,6 +2493,9 @@ msgstr ""
2163
2493
  msgid "Host with ID %s not found."
2164
2494
  msgstr ""
2165
2495
 
2496
+ msgid "Hosts"
2497
+ msgstr ""
2498
+
2166
2499
  msgid "Hosts with Installable Errata"
2167
2500
  msgstr ""
2168
2501
 
@@ -2172,9 +2505,6 @@ msgstr ""
2172
2505
  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."
2173
2506
  msgstr ""
2174
2507
 
2175
- msgid "How the logic of solving dependencies in a Content View is managed. Conservative will only add packages to solve the dependencies if the package needed doesn't exist. Greedy will pull in the latest package to solve a dependency even if it already does exist in the repository."
2176
- msgstr ""
2177
-
2178
2508
  msgid "How to order the sorted results (e.g. ASC for ascending)"
2179
2509
  msgstr ""
2180
2510
 
@@ -2211,9 +2541,8 @@ msgstr ""
2211
2541
  msgid "ID of the activation key"
2212
2542
  msgstr ""
2213
2543
 
2214
- #, fuzzy
2215
2544
  msgid "ID of the environment"
2216
- msgstr "Repositórios"
2545
+ msgstr ""
2217
2546
 
2218
2547
  msgid "ID of the host"
2219
2548
  msgstr ""
@@ -2257,10 +2586,10 @@ msgstr ""
2257
2586
  msgid "Id of an erratum to find repositories that contain the erratum"
2258
2587
  msgstr ""
2259
2588
 
2260
- msgid "Id of an ostree branch to find repositories that contain that branch"
2589
+ msgid "Id of the content host"
2261
2590
  msgstr ""
2262
2591
 
2263
- msgid "Id of the content host"
2592
+ msgid "Id of the content view to limit the synchronization on"
2264
2593
  msgstr ""
2265
2594
 
2266
2595
  msgid "Id of the environment to limit the synchronization on"
@@ -2281,6 +2610,9 @@ msgstr ""
2281
2610
  msgid "Id of the organization to limit environments on"
2282
2611
  msgstr ""
2283
2612
 
2613
+ msgid "Id of the repository to limit the synchronization on"
2614
+ msgstr ""
2615
+
2284
2616
  msgid "Id of the smart proxy"
2285
2617
  msgstr ""
2286
2618
 
@@ -2317,16 +2649,16 @@ msgstr ""
2317
2649
  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."
2318
2650
  msgstr ""
2319
2651
 
2320
- msgid "If set to true, a composite content view may not be published or promoted, unless the component content view versions that it includes exist in the target environment."
2652
+ msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2321
2653
  msgstr ""
2322
2654
 
2323
- msgid "If set to true, use remote execution instead of katello-agent for remote actions"
2655
+ 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."
2324
2656
  msgstr ""
2325
2657
 
2326
- msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2658
+ 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"
2327
2659
  msgstr ""
2328
2660
 
2329
- msgid "If true, 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"
2661
+ msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
2330
2662
  msgstr ""
2331
2663
 
2332
2664
  msgid "If true, only return repository sets that are associated with an active subscriptions"
@@ -2377,9 +2709,6 @@ msgstr ""
2377
2709
  msgid "Import New Manifest"
2378
2710
  msgstr ""
2379
2711
 
2380
- msgid "Import Only"
2381
- msgstr ""
2382
-
2383
2712
  msgid "Import Puppet classes"
2384
2713
  msgstr ""
2385
2714
 
@@ -2407,6 +2736,9 @@ msgstr ""
2407
2736
  msgid "Import facts"
2408
2737
  msgstr ""
2409
2738
 
2739
+ msgid "Import only"
2740
+ msgstr ""
2741
+
2410
2742
  msgid "Import uploads into a repository"
2411
2743
  msgstr ""
2412
2744
 
@@ -2416,6 +2748,9 @@ msgstr ""
2416
2748
  msgid "Import-only content views can not be published directly"
2417
2749
  msgstr ""
2418
2750
 
2751
+ msgid "Important"
2752
+ msgstr ""
2753
+
2419
2754
  msgid "Importing manifest into '%{subject}' failed."
2420
2755
  msgstr ""
2421
2756
 
@@ -2428,9 +2763,24 @@ msgstr ""
2428
2763
  msgid "Include"
2429
2764
  msgstr ""
2430
2765
 
2766
+ msgid "Include all Module Streams with no errata."
2767
+ msgstr ""
2768
+
2769
+ msgid "Include all RPMs with no errata."
2770
+ msgstr ""
2771
+
2772
+ msgid "Include filter"
2773
+ msgstr ""
2774
+
2431
2775
  msgid "Included"
2432
2776
  msgstr ""
2433
2777
 
2778
+ msgid "Included errata"
2779
+ msgstr ""
2780
+
2781
+ msgid "Includes"
2782
+ msgstr ""
2783
+
2434
2784
  msgid "Includes associated content view filter ids in response"
2435
2785
  msgstr ""
2436
2786
 
@@ -2449,6 +2799,9 @@ msgstr ""
2449
2799
  msgid "Incremental Update of %{content_view_count} Content View Version(s) "
2450
2800
  msgstr ""
2451
2801
 
2802
+ msgid "Incremental update"
2803
+ msgstr ""
2804
+
2452
2805
  msgid "Incremental update requires at least one content unit"
2453
2806
  msgstr ""
2454
2807
 
@@ -2512,9 +2865,18 @@ msgstr ""
2512
2865
  msgid "Install packages remotely using katello-agent. %s"
2513
2866
  msgstr ""
2514
2867
 
2868
+ msgid "Installable"
2869
+ msgstr ""
2870
+
2871
+ msgid "Installable Errata"
2872
+ msgstr ""
2873
+
2515
2874
  msgid "Installable errata from Content View"
2516
2875
  msgstr ""
2517
2876
 
2877
+ msgid "Installable errata will appear here when available."
2878
+ msgstr ""
2879
+
2518
2880
  msgid "Installation of errata requested: %{errata}"
2519
2881
  msgstr ""
2520
2882
 
@@ -2527,6 +2889,9 @@ msgstr ""
2527
2889
  msgid "Installed Packages"
2528
2890
  msgstr ""
2529
2891
 
2892
+ msgid "Installed Version"
2893
+ msgstr ""
2894
+
2530
2895
  msgid "Installing Erratum..."
2531
2896
  msgstr ""
2532
2897
 
@@ -2557,6 +2922,9 @@ msgstr ""
2557
2922
  msgid "Invalid"
2558
2923
  msgstr ""
2559
2924
 
2925
+ msgid "Invalid SSL CA certificate given for CDN"
2926
+ msgstr ""
2927
+
2560
2928
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
2561
2929
  msgstr ""
2562
2930
 
@@ -2587,6 +2955,9 @@ msgstr ""
2587
2955
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2588
2956
  msgstr ""
2589
2957
 
2958
+ msgid "Invalid mirroring policy for repository type %{type}, only %{policies} are valid."
2959
+ msgstr ""
2960
+
2590
2961
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2591
2962
  msgstr ""
2592
2963
 
@@ -2608,6 +2979,9 @@ msgstr ""
2608
2979
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2609
2980
  msgstr ""
2610
2981
 
2982
+ msgid "Issued"
2983
+ msgstr ""
2984
+
2611
2985
  msgid "Katello ID of local pool to update"
2612
2986
  msgstr ""
2613
2987
 
@@ -2629,6 +3003,9 @@ msgstr ""
2629
3003
  msgid "Katello: Remove Package Group"
2630
3004
  msgstr ""
2631
3005
 
3006
+ msgid "Katello: Resolve Traces"
3007
+ msgstr ""
3008
+
2632
3009
  msgid "Katello: Service Restart"
2633
3010
  msgstr ""
2634
3011
 
@@ -2677,6 +3054,15 @@ msgstr ""
2677
3054
  msgid "Learn more about adding Subscription Manifests"
2678
3055
  msgstr ""
2679
3056
 
3057
+ msgid "Leave blank if consuming Red Hat Content from the Default Content View or CDN "
3058
+ msgstr ""
3059
+
3060
+ msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
3061
+ msgstr ""
3062
+
3063
+ msgid "Less than"
3064
+ msgstr ""
3065
+
2680
3066
  msgid "Library lifecycle environments may not be deleted."
2681
3067
  msgstr ""
2682
3068
 
@@ -2686,9 +3072,8 @@ msgstr ""
2686
3072
  msgid "Lifecycle"
2687
3073
  msgstr ""
2688
3074
 
2689
- #, fuzzy
2690
3075
  msgid "Lifecycle Environment"
2691
- msgstr "Repositórios"
3076
+ msgstr ""
2692
3077
 
2693
3078
  msgid "Lifecycle Environment %s has associated Activation Keys. Please change or remove the associated Activation Keys before trying to delete this lifecycle environment."
2694
3079
  msgstr ""
@@ -2699,9 +3084,11 @@ msgstr ""
2699
3084
  msgid "Lifecycle Environment ID"
2700
3085
  msgstr ""
2701
3086
 
2702
- #, fuzzy
3087
+ msgid "Lifecycle Environment Label"
3088
+ msgstr ""
3089
+
2703
3090
  msgid "Lifecycle Environments"
2704
- msgstr "Repositórios"
3091
+ msgstr ""
2705
3092
 
2706
3093
  msgid "Lifecycle environment"
2707
3094
  msgstr ""
@@ -2724,15 +3111,24 @@ msgstr ""
2724
3111
  msgid "Limit content to just that available in the activation key's content view version"
2725
3112
  msgstr ""
2726
3113
 
2727
- msgid "Limit content to just that available in the activation key's content view version. Relevant for Activation Keys only"
3114
+ msgid "Limit content to just that available in the host's content view version"
2728
3115
  msgstr ""
2729
3116
 
2730
- msgid "Limit content to just that available in the host's content view version"
3117
+ msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3118
+ msgstr ""
3119
+
3120
+ msgid "Limit to environment"
2731
3121
  msgstr ""
2732
3122
 
2733
3123
  msgid "Limits"
2734
3124
  msgstr ""
2735
3125
 
3126
+ msgid "List %s"
3127
+ msgstr ""
3128
+
3129
+ msgid "List :resource"
3130
+ msgstr ""
3131
+
2736
3132
  msgid "List :resource_id"
2737
3133
  msgstr ""
2738
3134
 
@@ -2766,16 +3162,17 @@ msgstr ""
2766
3162
  msgid "List content view versions"
2767
3163
  msgstr ""
2768
3164
 
2769
- #, fuzzy
2770
3165
  msgid "List content views"
2771
- msgstr "Repositórios"
3166
+ msgstr ""
3167
+
3168
+ msgid "List deb packages"
3169
+ msgstr ""
2772
3170
 
2773
3171
  msgid "List deb packages installed on the host"
2774
3172
  msgstr ""
2775
3173
 
2776
- #, fuzzy
2777
3174
  msgid "List environment paths"
2778
- msgstr "Repositórios"
3175
+ msgstr ""
2779
3176
 
2780
3177
  msgid "List environments in an organization"
2781
3178
  msgstr ""
@@ -2792,9 +3189,8 @@ msgstr ""
2792
3189
  msgid "List filter rules"
2793
3190
  msgstr ""
2794
3191
 
2795
- #, fuzzy
2796
3192
  msgid "List host collections"
2797
- msgstr "Repositórios"
3193
+ msgstr ""
2798
3194
 
2799
3195
  msgid "List host collections in an activation key"
2800
3196
  msgstr ""
@@ -2850,9 +3246,8 @@ msgstr ""
2850
3246
  msgid "List of host collection IDs to disassociate from the activation key"
2851
3247
  msgstr ""
2852
3248
 
2853
- #, fuzzy
2854
3249
  msgid "List of host collection ids"
2855
- msgstr "Repositórios"
3250
+ msgstr ""
2856
3251
 
2857
3252
  msgid "List of host collection ids to update"
2858
3253
  msgstr ""
@@ -2908,9 +3303,8 @@ msgstr ""
2908
3303
  msgid "List of repositories in an organization"
2909
3304
  msgstr ""
2910
3305
 
2911
- #, fuzzy
2912
3306
  msgid "List of repository ids"
2913
- msgstr "Repositórios"
3307
+ msgstr ""
2914
3308
 
2915
3309
  msgid "List of subscription products in a subscription"
2916
3310
  msgstr ""
@@ -2927,9 +3321,8 @@ msgstr ""
2927
3321
  msgid "List packages installed on the host"
2928
3322
  msgstr ""
2929
3323
 
2930
- #, fuzzy
2931
3324
  msgid "List products"
2932
- msgstr "Repositórios"
3325
+ msgstr ""
2933
3326
 
2934
3327
  msgid "List repositories in the environment"
2935
3328
  msgstr ""
@@ -2961,6 +3354,9 @@ msgstr ""
2961
3354
  msgid "Loading"
2962
3355
  msgstr ""
2963
3356
 
3357
+ msgid "Loading versions"
3358
+ msgstr ""
3359
+
2964
3360
  msgid "Make copy of a content view"
2965
3361
  msgstr ""
2966
3362
 
@@ -3009,6 +3405,9 @@ msgstr ""
3009
3405
  msgid "Matched"
3010
3406
  msgstr ""
3011
3407
 
3408
+ msgid "Matching content"
3409
+ msgstr ""
3410
+
3012
3411
  msgid "Max %(maxQuantity)s"
3013
3412
  msgstr ""
3014
3413
 
@@ -3021,6 +3420,9 @@ msgstr ""
3021
3420
  msgid "Maximum number of hosts in the host collection"
3022
3421
  msgstr ""
3023
3422
 
3423
+ msgid "Maximum version"
3424
+ msgstr ""
3425
+
3024
3426
  msgid "May not add a type or date range rule to a filter that has existing rules."
3025
3427
  msgstr ""
3026
3428
 
@@ -3039,9 +3441,15 @@ msgstr ""
3039
3441
  msgid "Messaging connection"
3040
3442
  msgstr ""
3041
3443
 
3444
+ msgid "Metadata republishing must be forced because it is a dangerous operation."
3445
+ msgstr ""
3446
+
3042
3447
  msgid "Metadata taken from the upstream export history for this Content View Version"
3043
3448
  msgstr ""
3044
3449
 
3450
+ msgid "Minimum version"
3451
+ msgstr ""
3452
+
3045
3453
  msgid "Mismatched"
3046
3454
  msgstr ""
3047
3455
 
@@ -3051,6 +3459,12 @@ msgstr ""
3051
3459
  msgid "Missing arguments %{substitutions} for %{content_url}"
3052
3460
  msgstr ""
3053
3461
 
3462
+ msgid "Moderate"
3463
+ msgstr ""
3464
+
3465
+ msgid "Modular"
3466
+ msgstr ""
3467
+
3054
3468
  msgid "Module Stream"
3055
3469
  msgstr ""
3056
3470
 
@@ -3063,6 +3477,9 @@ msgstr ""
3063
3477
  msgid "Module stream"
3064
3478
  msgstr ""
3065
3479
 
3480
+ msgid "Module streams"
3481
+ msgstr ""
3482
+
3066
3483
  msgid "Multi-entitlement"
3067
3484
  msgstr ""
3068
3485
 
@@ -3130,13 +3547,11 @@ msgstr ""
3130
3547
  msgid "New blobs: %{count}."
3131
3548
  msgstr ""
3132
3549
 
3133
- #, fuzzy
3134
3550
  msgid "New content view name"
3135
- msgstr "Repositórios"
3551
+ msgstr ""
3136
3552
 
3137
- #, fuzzy
3138
3553
  msgid "New host collection name"
3139
- msgstr "Repositórios"
3554
+ msgstr ""
3140
3555
 
3141
3556
  msgid "New name cannot be blank"
3142
3557
  msgstr ""
@@ -3186,12 +3601,21 @@ msgstr ""
3186
3601
  msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
3187
3602
  msgstr ""
3188
3603
 
3604
+ msgid "No applicable errata"
3605
+ msgstr ""
3606
+
3189
3607
  msgid "No applicable errata for %s, skipping"
3190
3608
  msgstr ""
3191
3609
 
3192
3610
  msgid "No artifacts to show"
3193
3611
  msgstr ""
3194
3612
 
3613
+ msgid "No content"
3614
+ msgstr ""
3615
+
3616
+ msgid "No content added."
3617
+ msgstr ""
3618
+
3195
3619
  msgid "No content has been provided."
3196
3620
  msgstr ""
3197
3621
 
@@ -3201,6 +3625,9 @@ msgstr ""
3201
3625
  msgid "No content view history events found."
3202
3626
  msgstr ""
3203
3627
 
3628
+ msgid "No content views available"
3629
+ msgstr ""
3630
+
3204
3631
  msgid "No content views belong to ${label}"
3205
3632
  msgstr ""
3206
3633
 
@@ -3219,7 +3646,10 @@ msgstr ""
3219
3646
  msgid "No environments"
3220
3647
  msgstr ""
3221
3648
 
3222
- msgid "No errata has been specified."
3649
+ msgid "No errata available for this content view."
3650
+ msgstr ""
3651
+
3652
+ msgid "No errata available to add to this filter."
3223
3653
  msgstr ""
3224
3654
 
3225
3655
  msgid "No errors"
@@ -3243,30 +3673,60 @@ msgstr ""
3243
3673
  msgid "No installed packages and/or enabled repositories have been reported by %s."
3244
3674
  msgstr ""
3245
3675
 
3676
+ msgid "No items have been specified."
3677
+ msgstr ""
3678
+
3246
3679
  msgid "No manifest file uploaded"
3247
3680
  msgstr ""
3248
3681
 
3249
3682
  msgid "No manifest found. Import a manifest with the appropriate subscriptions before importing content."
3250
3683
  msgstr ""
3251
3684
 
3685
+ msgid "No matching "
3686
+ msgstr ""
3687
+
3688
+ msgid "No matching ${selectedContentType} found"
3689
+ msgstr ""
3690
+
3691
+ msgid "No matching RPM found."
3692
+ msgstr ""
3693
+
3694
+ msgid "No matching activation keys found."
3695
+ msgstr ""
3696
+
3252
3697
  msgid "No matching content views found"
3253
3698
  msgstr ""
3254
3699
 
3700
+ msgid "No matching errata found"
3701
+ msgstr ""
3702
+
3703
+ msgid "No matching filter rules found."
3704
+ msgstr ""
3705
+
3255
3706
  msgid "No matching filters found"
3256
3707
  msgstr ""
3257
3708
 
3258
3709
  msgid "No matching history record found"
3259
3710
  msgstr ""
3260
3711
 
3261
- msgid "No matching package groups found."
3712
+ msgid "No matching hosts found."
3713
+ msgstr ""
3714
+
3715
+ msgid "No matching packages found"
3262
3716
  msgstr ""
3263
3717
 
3264
3718
  msgid "No matching repositories found"
3265
3719
  msgstr ""
3266
3720
 
3721
+ msgid "No matching repository sets found"
3722
+ msgstr ""
3723
+
3267
3724
  msgid "No matching rules found."
3268
3725
  msgstr ""
3269
3726
 
3727
+ msgid "No matching traces found"
3728
+ msgstr ""
3729
+
3270
3730
  msgid "No matching version found"
3271
3731
  msgstr ""
3272
3732
 
@@ -3276,7 +3736,7 @@ msgstr ""
3276
3736
  msgid "No new packages."
3277
3737
  msgstr ""
3278
3738
 
3279
- msgid "No package groups have been added to this filter."
3739
+ msgid "No packages"
3280
3740
  msgstr ""
3281
3741
 
3282
3742
  msgid "No packages removed"
@@ -3306,6 +3766,12 @@ msgstr ""
3306
3766
  msgid "No pulp workers running."
3307
3767
  msgstr ""
3308
3768
 
3769
+ msgid "No pulpcore content apps are running at %s."
3770
+ msgstr ""
3771
+
3772
+ msgid "No pulpcore workers are running at %s."
3773
+ msgstr ""
3774
+
3309
3775
  msgid "No recently synced products"
3310
3776
  msgstr ""
3311
3777
 
@@ -3318,12 +3784,18 @@ msgstr ""
3318
3784
  msgid "No repositories enabled."
3319
3785
  msgstr ""
3320
3786
 
3787
+ msgid "No repositories selected."
3788
+ msgstr ""
3789
+
3321
3790
  msgid "No repositories to show"
3322
3791
  msgstr ""
3323
3792
 
3324
3793
  msgid "No repository sets match your search criteria."
3325
3794
  msgstr ""
3326
3795
 
3796
+ msgid "No repository sets to show."
3797
+ msgstr ""
3798
+
3327
3799
  msgid "No rules have been added to this filter."
3328
3800
  msgstr ""
3329
3801
 
@@ -3375,6 +3847,9 @@ msgstr ""
3375
3847
  msgid "Not yet published"
3376
3848
  msgstr ""
3377
3849
 
3850
+ msgid "Note: Deleting a subscription manifest is STRONGLY discouraged. Deleting a manifest will:"
3851
+ msgstr ""
3852
+
3378
3853
  msgid "Note: The number in parentheses reflects all applicable errata from the Library environment that are unavailable to the host. You will need to promote this content to the relevant content view in order to make it available."
3379
3854
  msgstr ""
3380
3855
 
@@ -3393,16 +3868,19 @@ msgstr ""
3393
3868
  msgid "Number to Allocate"
3394
3869
  msgstr ""
3395
3870
 
3396
- msgid "OSTree"
3871
+ msgid "OSTree Branch"
3397
3872
  msgstr ""
3398
3873
 
3399
- msgid "OSTree Branch"
3874
+ msgid "OSTree Ref"
3400
3875
  msgstr ""
3401
3876
 
3402
- msgid "OSTree Branches"
3877
+ msgid "OSTree Refs"
3403
3878
  msgstr ""
3404
3879
 
3405
- msgid "OSTree Repositories cannot be unprotected."
3880
+ msgid "OSTree ref"
3881
+ msgstr ""
3882
+
3883
+ msgid "OSTree refs"
3406
3884
  msgstr ""
3407
3885
 
3408
3886
  msgid "Object to show subscriptions available for, either 'host' or 'activation_key'"
@@ -3435,6 +3913,12 @@ msgstr ""
3435
3913
  msgid "One or more processes require restarting"
3436
3914
  msgstr ""
3437
3915
 
3916
+ msgid "Only On Demand repositories may have space reclaimed."
3917
+ msgstr ""
3918
+
3919
+ msgid "Only On Demand smart proxies may have space reclaimed."
3920
+ msgstr ""
3921
+
3438
3922
  msgid "Only one Red Hat provider permitted for an Organization"
3439
3923
  msgstr ""
3440
3924
 
@@ -3459,6 +3943,9 @@ msgstr ""
3459
3943
  msgid "Organization Information not provided."
3460
3944
  msgstr ""
3461
3945
 
3946
+ msgid "Organization Label"
3947
+ msgstr ""
3948
+
3462
3949
  msgid "Organization cannot be blank."
3463
3950
  msgstr ""
3464
3951
 
@@ -3477,9 +3964,18 @@ msgstr ""
3477
3964
  msgid "Organization required"
3478
3965
  msgstr ""
3479
3966
 
3967
+ msgid "Orphaned Content Protection Time"
3968
+ msgstr ""
3969
+
3480
3970
  msgid "Other"
3481
3971
  msgstr ""
3482
3972
 
3973
+ msgid "Other Content Types"
3974
+ msgstr ""
3975
+
3976
+ msgid "Overridden"
3977
+ msgstr ""
3978
+
3483
3979
  msgid "Override content for activation_key"
3484
3980
  msgstr ""
3485
3981
 
@@ -3498,15 +3994,20 @@ msgstr ""
3498
3994
  msgid "Override to a boolean value or 'default'"
3499
3995
  msgstr ""
3500
3996
 
3997
+ msgid "Override to disabled"
3998
+ msgstr ""
3999
+
4000
+ msgid "Override to enabled"
4001
+ msgstr ""
4002
+
3501
4003
  msgid "Override value. Provide a boolean value if name is 'enabled'"
3502
4004
  msgstr ""
3503
4005
 
3504
4006
  msgid "Package"
3505
4007
  msgstr ""
3506
4008
 
3507
- #, fuzzy
3508
4009
  msgid "Package Group"
3509
- msgstr "Domínio"
4010
+ msgstr ""
3510
4011
 
3511
4012
  msgid "Package Group Install"
3512
4013
  msgstr ""
@@ -3577,9 +4078,8 @@ msgstr ""
3577
4078
  msgid "Package Profile Update for %s"
3578
4079
  msgstr ""
3579
4080
 
3580
- #, fuzzy
3581
4081
  msgid "Package Remove"
3582
- msgstr "Domínio"
4082
+ msgstr ""
3583
4083
 
3584
4084
  msgid "Package Remove Canceled"
3585
4085
  msgstr ""
@@ -3596,6 +4096,12 @@ msgstr ""
3596
4096
  msgid "Package Remove scheduled by %s"
3597
4097
  msgstr ""
3598
4098
 
4099
+ msgid "Package Type"
4100
+ msgstr ""
4101
+
4102
+ msgid "Package Types"
4103
+ msgstr ""
4104
+
3599
4105
  msgid "Package Update"
3600
4106
  msgstr ""
3601
4107
 
@@ -3638,12 +4144,21 @@ msgstr ""
3638
4144
  msgid "Package installation: \"%{package}\" "
3639
4145
  msgstr ""
3640
4146
 
4147
+ msgid "Package types to sync for Python content, separated by comma. Leave empty to get every package type. Package types are: bdist_dmg, bdist_dumb, bdist_egg, bdist_msi, bdist_rpm, bdist_wheel, bdist_wininst, sdist."
4148
+ msgstr ""
4149
+
3641
4150
  msgid "Packages"
3642
4151
  msgstr ""
3643
4152
 
4153
+ msgid "Packages management functionality on this page is incomplete"
4154
+ msgstr ""
4155
+
3644
4156
  msgid "Packages must be provided"
3645
4157
  msgstr ""
3646
4158
 
4159
+ msgid "Packages will appear here when available."
4160
+ msgstr ""
4161
+
3647
4162
  msgid "Page number, starting at 1"
3648
4163
  msgstr ""
3649
4164
 
@@ -3656,12 +4171,24 @@ msgstr ""
3656
4171
  msgid "Partition template IDs"
3657
4172
  msgstr ""
3658
4173
 
4174
+ msgid "Password"
4175
+ msgstr ""
4176
+
4177
+ msgid "Password for authentication"
4178
+ msgstr ""
4179
+
4180
+ msgid "Password of the upstream authentication token."
4181
+ msgstr ""
4182
+
3659
4183
  msgid "Password of the upstream repository user used for authentication"
3660
4184
  msgstr ""
3661
4185
 
3662
4186
  msgid "Password to access URL"
3663
4187
  msgstr ""
3664
4188
 
4189
+ msgid "Path"
4190
+ msgstr ""
4191
+
3665
4192
  msgid "Path for ssl cert used for pulp server auth"
3666
4193
  msgstr ""
3667
4194
 
@@ -3734,6 +4261,12 @@ msgstr ""
3734
4261
  msgid "Please select one from the list below and you will be redirected."
3735
4262
  msgstr ""
3736
4263
 
4264
+ msgid "Please wait while the task starts.."
4265
+ msgstr ""
4266
+
4267
+ msgid "Policy to set for mirroring content. Must be one of %s."
4268
+ msgstr ""
4269
+
3737
4270
  msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3738
4271
  msgstr ""
3739
4272
 
@@ -3755,25 +4288,25 @@ msgstr ""
3755
4288
  msgid "Product ID"
3756
4289
  msgstr ""
3757
4290
 
3758
- #, fuzzy
4291
+ msgid "Product Name"
4292
+ msgstr ""
4293
+
3759
4294
  msgid "Product and Repositories"
3760
- msgstr "Repositórios"
4295
+ msgstr ""
3761
4296
 
3762
4297
  msgid "Product architecture"
3763
4298
  msgstr ""
3764
4299
 
3765
- #, fuzzy
3766
4300
  msgid "Product description"
3767
- msgstr "Repositórios"
4301
+ msgstr ""
3768
4302
 
3769
4303
  msgid ""
3770
4304
  "Product id as listed from a host's installed products, \\\n"
3771
4305
  " this is not the same product id as the products api returns"
3772
4306
  msgstr ""
3773
4307
 
3774
- #, fuzzy
3775
4308
  msgid "Product name"
3776
- msgstr "Nome"
4309
+ msgstr ""
3777
4310
 
3778
4311
  msgid "Product name as listed from a host's installed products"
3779
4312
  msgstr ""
@@ -3805,6 +4338,12 @@ msgstr ""
3805
4338
  msgid "Promote errata"
3806
4339
  msgstr ""
3807
4340
 
4341
+ msgid "Promote version ${versionNameToPromote}"
4342
+ msgstr ""
4343
+
4344
+ msgid "Promoted to "
4345
+ msgstr ""
4346
+
3808
4347
  msgid "Promoted to %{environment}"
3809
4348
  msgstr ""
3810
4349
 
@@ -3829,6 +4368,9 @@ msgstr ""
3829
4368
  msgid "Proxies"
3830
4369
  msgstr ""
3831
4370
 
4371
+ msgid "Public"
4372
+ msgstr ""
4373
+
3832
4374
  msgid "Public key block in DER encoding or certificate content"
3833
4375
  msgstr ""
3834
4376
 
@@ -3838,13 +4380,18 @@ msgstr ""
3838
4380
  msgid "Publish Lifecycle Environment Repositories"
3839
4381
  msgstr ""
3840
4382
 
3841
- #, fuzzy
3842
4383
  msgid "Publish a content view"
3843
- msgstr "Repositórios"
4384
+ msgstr ""
4385
+
4386
+ msgid "Publish new version"
4387
+ msgstr ""
3844
4388
 
3845
4389
  msgid "Publish new version - "
3846
4390
  msgstr ""
3847
4391
 
4392
+ msgid "Published date"
4393
+ msgstr ""
4394
+
3848
4395
  msgid "Published new version"
3849
4396
  msgstr ""
3850
4397
 
@@ -3854,9 +4401,6 @@ msgstr ""
3854
4401
  msgid "Publishing content view"
3855
4402
  msgstr ""
3856
4403
 
3857
- msgid "Pulling remote branches. Downloaded %s units."
3858
- msgstr ""
3859
-
3860
4404
  msgid "Pulp"
3861
4405
  msgstr ""
3862
4406
 
@@ -3917,7 +4461,22 @@ msgstr ""
3917
4461
  msgid "Pulp task error"
3918
4462
  msgstr ""
3919
4463
 
3920
- msgid "Pulpcore"
4464
+ msgid "Python Package"
4465
+ msgstr ""
4466
+
4467
+ msgid "Python Packages"
4468
+ msgstr ""
4469
+
4470
+ msgid "Python package"
4471
+ msgstr ""
4472
+
4473
+ msgid "Python packages"
4474
+ msgstr ""
4475
+
4476
+ msgid "Python packages to exclude from the upstream URL, names separated by newline. You may also specify versions, for example: django~=2.0."
4477
+ msgstr ""
4478
+
4479
+ msgid "Python packages to include from the upstream URL, names separated by newline. You may also specify versions, for example: django~=2.0. Leave empty to include every package."
3921
4480
  msgstr ""
3922
4481
 
3923
4482
  msgid "Quantity"
@@ -3950,33 +4509,62 @@ msgstr ""
3950
4509
  msgid "RPM"
3951
4510
  msgstr ""
3952
4511
 
4512
+ msgid "RPM Package Groups"
4513
+ msgstr ""
4514
+
4515
+ msgid "RPM Packages"
4516
+ msgstr ""
4517
+
3953
4518
  msgid "RPM name"
3954
4519
  msgstr ""
3955
4520
 
3956
4521
  msgid "RPMs"
3957
4522
  msgstr ""
3958
4523
 
4524
+ msgid "Range"
4525
+ msgstr ""
4526
+
3959
4527
  msgid "Realm IDs"
3960
4528
  msgstr ""
3961
4529
 
4530
+ msgid "Reassign affected activation keys"
4531
+ msgstr ""
4532
+
4533
+ msgid "Reassign affected hosts"
4534
+ msgstr ""
4535
+
3962
4536
  msgid "Reboot required"
3963
4537
  msgstr ""
3964
4538
 
4539
+ msgid "Recalculate"
4540
+ msgstr ""
4541
+
3965
4542
  msgid "Recently Expired Subscriptions"
3966
4543
  msgstr ""
3967
4544
 
4545
+ msgid "Reclaim Space"
4546
+ msgstr ""
4547
+
4548
+ msgid "Reclaim space from On Demand repositories"
4549
+ msgstr ""
4550
+
4551
+ msgid "Reclaim space from all On Demand repositories on a smart proxy"
4552
+ msgstr ""
4553
+
4554
+ msgid "Reclaim space from an On Demand repository"
4555
+ msgstr ""
4556
+
3968
4557
  msgid "Recommended Repositories"
3969
4558
  msgstr ""
3970
4559
 
3971
4560
  msgid "Red Hat CDN URL"
3972
4561
  msgstr ""
3973
4562
 
3974
- msgid "Red Hat Provider Details"
4563
+ msgid "Red Hat Repositories"
3975
4564
  msgstr ""
3976
4565
 
3977
- #, fuzzy
3978
- msgid "Red Hat Repositories"
3979
- msgstr "Repositórios"
4566
+ msgid "Red Hat Repositories page"
4567
+ msgstr ""
3980
4568
 
3981
4569
  msgid "Red Hat products cannot be manipulated."
3982
4570
  msgstr ""
@@ -3990,13 +4578,18 @@ msgstr ""
3990
4578
  msgid "Refresh"
3991
4579
  msgstr ""
3992
4580
 
3993
- #, fuzzy
4581
+ msgid "Refresh Content Host Statuses for %s"
4582
+ msgstr ""
4583
+
3994
4584
  msgid "Refresh Manifest"
3995
- msgstr "Repositórios"
4585
+ msgstr ""
3996
4586
 
3997
4587
  msgid "Refresh previously imported manifest for Red Hat provider"
3998
4588
  msgstr ""
3999
4589
 
4590
+ msgid "Refresh_Content_Host_Status"
4591
+ msgstr ""
4592
+
4000
4593
  msgid "Register a host with subscription and information"
4001
4594
  msgstr ""
4002
4595
 
@@ -4015,6 +4608,24 @@ msgstr ""
4015
4608
  msgid "Reindex subscriptions"
4016
4609
  msgstr ""
4017
4610
 
4611
+ msgid "Related component content views"
4612
+ msgstr ""
4613
+
4614
+ msgid "Related component cvs: "
4615
+ msgstr ""
4616
+
4617
+ msgid "Related composite content views"
4618
+ msgstr ""
4619
+
4620
+ msgid "Related composite cvs: "
4621
+ msgstr ""
4622
+
4623
+ msgid "Related content views will appear here when created."
4624
+ msgstr ""
4625
+
4626
+ msgid "Release"
4627
+ msgstr ""
4628
+
4018
4629
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
4019
4630
  msgstr ""
4020
4631
 
@@ -4042,13 +4653,11 @@ msgstr ""
4042
4653
  msgid "Remove"
4043
4654
  msgstr ""
4044
4655
 
4045
- #, fuzzy
4046
4656
  msgid "Remove Content"
4047
- msgstr "Domínio"
4657
+ msgstr ""
4048
4658
 
4049
- #, fuzzy
4050
4659
  msgid "Remove Version"
4051
- msgstr "Repositórios"
4660
+ msgstr ""
4052
4661
 
4053
4662
  msgid "Remove Versions and Associations"
4054
4663
  msgstr ""
@@ -4068,12 +4677,14 @@ msgstr ""
4068
4677
  msgid "Remove content view version"
4069
4678
  msgstr ""
4070
4679
 
4071
- msgid "Remove content views"
4680
+ msgid "Remove from Environment"
4681
+ msgstr ""
4682
+
4683
+ msgid "Remove from environment"
4072
4684
  msgstr ""
4073
4685
 
4074
- #, fuzzy
4075
- msgid "Remove from Environment"
4076
- msgstr "Repositórios"
4686
+ msgid "Remove from environments"
4687
+ msgstr ""
4077
4688
 
4078
4689
  msgid "Remove hosts from the host collection"
4079
4690
  msgstr ""
@@ -4093,9 +4704,8 @@ msgstr ""
4093
4704
  msgid "Remove package for %s"
4094
4705
  msgstr ""
4095
4706
 
4096
- #, fuzzy
4097
4707
  msgid "Remove package group"
4098
- msgstr "Arquitetura"
4708
+ msgstr ""
4099
4709
 
4100
4710
  msgid "Remove package group via Katello interface"
4101
4711
  msgstr ""
@@ -4118,6 +4728,9 @@ msgstr ""
4118
4728
  msgid "Remove versions and/or environments from a content view and reassign systems and keys"
4119
4729
  msgstr ""
4120
4730
 
4731
+ msgid "Remove versions from environments"
4732
+ msgstr ""
4733
+
4121
4734
  msgid "Removed component from content view"
4122
4735
  msgstr ""
4123
4736
 
@@ -4130,19 +4743,20 @@ msgstr ""
4130
4743
  msgid "Removing Package..."
4131
4744
  msgstr ""
4132
4745
 
4746
+ msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
4747
+ msgstr ""
4748
+
4133
4749
  msgid "Repo Type"
4134
4750
  msgstr ""
4135
4751
 
4136
- #, fuzzy
4137
4752
  msgid "Repositories"
4138
- msgstr "Repositórios"
4753
+ msgstr ""
4139
4754
 
4140
4755
  msgid "Repositories from published Content Views are not allowed."
4141
4756
  msgstr ""
4142
4757
 
4143
- #, fuzzy
4144
4758
  msgid "Repository"
4145
- msgstr "Repositórios"
4759
+ msgstr ""
4146
4760
 
4147
4761
  msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
4148
4762
  msgstr ""
@@ -4165,9 +4779,8 @@ msgstr ""
4165
4779
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
4166
4780
  msgstr ""
4167
4781
 
4168
- #, fuzzy
4169
4782
  msgid "Repository id"
4170
- msgstr "Repositórios"
4783
+ msgstr ""
4171
4784
 
4172
4785
  msgid "Repository identifier"
4173
4786
  msgstr ""
@@ -4178,40 +4791,96 @@ msgstr ""
4178
4791
  msgid "Repository metadata publish"
4179
4792
  msgstr ""
4180
4793
 
4181
- #, fuzzy
4182
4794
  msgid "Repository not found"
4183
- msgstr "Repositórios"
4795
+ msgstr ""
4796
+
4797
+ msgid "Repository path"
4798
+ msgstr ""
4799
+
4800
+ msgid "Repository set disabled"
4801
+ msgstr ""
4802
+
4803
+ msgid "Repository set enabled"
4804
+ msgstr ""
4184
4805
 
4185
4806
  msgid "Repository set name to search on"
4186
4807
  msgstr ""
4187
4808
 
4809
+ msgid "Repository set reset to default"
4810
+ msgstr ""
4811
+
4812
+ msgid "Repository sets"
4813
+ msgstr ""
4814
+
4188
4815
  msgid "Repository sets are not available for custom products."
4189
4816
  msgstr ""
4190
4817
 
4818
+ msgid "Repository sets disabled"
4819
+ msgstr ""
4820
+
4821
+ msgid "Repository sets enabled"
4822
+ msgstr ""
4823
+
4824
+ msgid "Repository sets reset to default"
4825
+ msgstr ""
4826
+
4827
+ msgid "Repository sets will appear here when available."
4828
+ msgstr ""
4829
+
4830
+ msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
4831
+ msgstr ""
4832
+
4191
4833
  msgid "Republish Repositories of %{name} %{version}"
4192
4834
  msgstr ""
4193
4835
 
4194
4836
  msgid "Republish Version Repositories"
4195
4837
  msgstr ""
4196
4838
 
4197
- msgid "Requirements yaml is invalid!"
4839
+ msgid "Require you to upload the subscription-manifest and re-attach subscriptions to hosts and activation keys."
4840
+ msgstr ""
4841
+
4842
+ msgid "Requirements is not valid yaml."
4843
+ msgstr ""
4844
+
4845
+ msgid "Requirements yaml should be a key-value pair structure."
4846
+ msgstr ""
4847
+
4848
+ msgid "Requirements yaml should have a 'collections' key"
4198
4849
  msgstr ""
4199
4850
 
4200
4851
  msgid "Requires Virt-Who"
4201
4852
  msgstr ""
4202
4853
 
4203
- msgid "Resolve Traces"
4854
+ msgid "Reset filters"
4855
+ msgstr ""
4856
+
4857
+ msgid "Reset to default"
4858
+ msgstr ""
4859
+
4860
+ msgid "Resolve traces"
4204
4861
  msgstr ""
4205
4862
 
4206
4863
  msgid "Resolve traces for one or more hosts"
4207
4864
  msgstr ""
4208
4865
 
4866
+ msgid "Resolve traces via Katello interface"
4867
+ msgstr ""
4868
+
4209
4869
  msgid "Resource"
4210
4870
  msgstr ""
4211
4871
 
4212
4872
  msgid "Restart Services via Katello interface"
4213
4873
  msgstr ""
4214
4874
 
4875
+ msgid "Restart app"
4876
+ msgstr ""
4877
+
4878
+ msgid "Restart via customized remote execution"
4879
+ msgstr ""
4880
+
4881
+ msgid "Restart via remote execution"
4882
+ msgstr ""
4883
+
4215
4884
  msgid "Restrict Composite Content View promotion"
4216
4885
  msgstr ""
4217
4886
 
@@ -4230,12 +4899,24 @@ msgstr ""
4230
4899
  msgid "Return custom products only"
4231
4900
  msgstr ""
4232
4901
 
4902
+ msgid "Return deb packages that are applicable to one or more hosts (defaults to true if host_id is specified)"
4903
+ msgstr ""
4904
+
4905
+ msgid "Return deb packages that are upgradable on one or more hosts"
4906
+ msgstr ""
4907
+
4908
+ msgid "Return deb packages that can be added to the specified object. Only the value 'content_view_version' is supported."
4909
+ msgstr ""
4910
+
4233
4911
  msgid "Return enabled products only"
4234
4912
  msgstr ""
4235
4913
 
4236
4914
  msgid "Return errata that are applicable to one or more hosts (defaults to true if host_id is specified)"
4237
4915
  msgstr ""
4238
4916
 
4917
+ msgid "Return errata that are applicable to this host. Defaults to false)"
4918
+ msgstr ""
4919
+
4239
4920
  msgid "Return errata that are upgradable on one or more hosts"
4240
4921
  msgstr ""
4241
4922
 
@@ -4245,6 +4926,15 @@ msgstr ""
4245
4926
  msgid "Return name and stream information only)"
4246
4927
  msgstr ""
4247
4928
 
4929
+ msgid "Return only errata of a particular severity (None, Low, Moderate, Important, Critical)"
4930
+ msgstr ""
4931
+
4932
+ msgid "Return only errata of a particular type (security, bugfix, enhancement)"
4933
+ msgstr ""
4934
+
4935
+ msgid "Return only packages of a particular status (upgradable or up-to-date)"
4936
+ msgstr ""
4937
+
4248
4938
  msgid "Return only subscriptions which can be attached to the upstream allocation"
4249
4939
  msgstr ""
4250
4940
 
@@ -4275,9 +4965,21 @@ msgstr ""
4275
4965
  msgid "Return the content of a repo gpg key, used directly by yum"
4276
4966
  msgstr ""
4277
4967
 
4968
+ msgid "Return the enabled content types"
4969
+ msgstr ""
4970
+
4278
4971
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
4279
4972
  msgstr ""
4280
4973
 
4974
+ msgid "Review Details"
4975
+ msgstr ""
4976
+
4977
+ msgid "Review details"
4978
+ msgstr ""
4979
+
4980
+ msgid "Review your currently selected changes for "
4981
+ msgstr ""
4982
+
4281
4983
  msgid "Role"
4282
4984
  msgstr ""
4283
4985
 
@@ -4287,6 +4989,12 @@ msgstr ""
4287
4989
  msgid "Roles"
4288
4990
  msgstr ""
4289
4991
 
4992
+ msgid "Rpm packages"
4993
+ msgstr ""
4994
+
4995
+ msgid "Rules to be added"
4996
+ msgstr ""
4997
+
4290
4998
  msgid "Run Sync Plan:"
4291
4999
  msgstr ""
4292
5000
 
@@ -4299,6 +5007,9 @@ msgstr ""
4299
5007
  msgid "SRPM details"
4300
5008
  msgstr ""
4301
5009
 
5010
+ msgid "SSL CA Content Credential"
5011
+ msgstr ""
5012
+
4302
5013
  msgid "SSL version used to communicate with the CDN"
4303
5014
  msgstr ""
4304
5015
 
@@ -4311,15 +5022,23 @@ msgstr ""
4311
5022
  msgid "Schedule errata for installation using katello-agent. %s"
4312
5023
  msgstr ""
4313
5024
 
5025
+ msgid "Schema Version 1"
5026
+ msgstr ""
5027
+
5028
+ msgid "Schema Version 2"
5029
+ msgstr ""
5030
+
4314
5031
  msgid "Search"
4315
5032
  msgstr ""
4316
5033
 
5034
+ msgid "Search Query"
5035
+ msgstr ""
5036
+
4317
5037
  msgid "Search pattern (defaults to '*')"
4318
5038
  msgstr ""
4319
5039
 
4320
- #, fuzzy
4321
5040
  msgid "Search string"
4322
- msgstr "Repositórios"
5041
+ msgstr ""
4323
5042
 
4324
5043
  msgid "Search string for erratum to perform an action on"
4325
5044
  msgstr ""
@@ -4345,13 +5064,11 @@ msgstr ""
4345
5064
  msgid "Select All"
4346
5065
  msgstr ""
4347
5066
 
4348
- #, fuzzy
4349
5067
  msgid "Select Content View"
4350
- msgstr "Repositórios"
5068
+ msgstr ""
4351
5069
 
4352
- #, fuzzy
4353
5070
  msgid "Select None"
4354
- msgstr "Domínio"
5071
+ msgstr ""
4355
5072
 
4356
5073
  msgid "Select Organization"
4357
5074
  msgstr ""
@@ -4359,28 +5076,64 @@ msgstr ""
4359
5076
  msgid "Select Value"
4360
5077
  msgstr ""
4361
5078
 
5079
+ msgid "Select a content view"
5080
+ msgstr ""
5081
+
4362
5082
  msgid "Select a lifecycle environment from the available promotion paths to promote new version."
4363
5083
  msgstr ""
4364
5084
 
5085
+ msgid "Select a provider to install katello-host-tools-tracer"
5086
+ msgstr ""
5087
+
5088
+ msgid "Select all"
5089
+ msgstr ""
5090
+
4365
5091
  msgid "Select all rows"
4366
5092
  msgstr ""
4367
5093
 
4368
- msgid "Select an Organization"
5094
+ msgid "Select an Organization"
5095
+ msgstr ""
5096
+
5097
+ msgid "Select an organization"
5098
+ msgstr ""
5099
+
5100
+ msgid "Select available version of ${cvName} to use"
5101
+ msgstr ""
5102
+
5103
+ msgid "Select available version of components to use"
5104
+ msgstr ""
5105
+
5106
+ msgid "Select content view"
5107
+ msgstr ""
5108
+
5109
+ msgid "Select hosts to assign to %s"
5110
+ msgstr ""
5111
+
5112
+ msgid "Select lifecycle environment"
5113
+ msgstr ""
5114
+
5115
+ msgid "Select none"
5116
+ msgstr ""
5117
+
5118
+ msgid "Select one"
5119
+ msgstr ""
5120
+
5121
+ msgid "Select page"
4369
5122
  msgstr ""
4370
5123
 
4371
- msgid "Select an organization"
5124
+ msgid "Select row"
4372
5125
  msgstr ""
4373
5126
 
4374
- msgid "Select available version of ${cvName} to use"
5127
+ msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
4375
5128
  msgstr ""
4376
5129
 
4377
- msgid "Select hosts to assign to %s"
5130
+ msgid "Selected environment "
4378
5131
  msgstr ""
4379
5132
 
4380
- msgid "Select row"
5133
+ msgid "Selected environments "
4381
5134
  msgstr ""
4382
5135
 
4383
- msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
5136
+ msgid "Sending a list of included IDs is not allowed when all items are being selected."
4384
5137
  msgstr ""
4385
5138
 
4386
5139
  msgid "Service Level"
@@ -4422,15 +5175,20 @@ msgstr ""
4422
5175
  msgid "Severity"
4423
5176
  msgstr ""
4424
5177
 
5178
+ msgid "Severity must be one of: %s"
5179
+ msgstr ""
5180
+
5181
+ msgid "Show %s"
5182
+ msgstr ""
5183
+
4425
5184
  msgid "Show :a_resource"
4426
5185
  msgstr ""
4427
5186
 
4428
5187
  msgid "Show a Content Credential"
4429
5188
  msgstr ""
4430
5189
 
4431
- #, fuzzy
4432
5190
  msgid "Show a content view"
4433
- msgstr "Repositórios"
5191
+ msgstr ""
4434
5192
 
4435
5193
  msgid "Show a content view component"
4436
5194
  msgstr ""
@@ -4447,19 +5205,20 @@ msgstr ""
4447
5205
  msgid "Show a repository"
4448
5206
  msgstr ""
4449
5207
 
4450
- #, fuzzy
4451
5208
  msgid "Show a subscription"
4452
- msgstr "Repositórios"
5209
+ msgstr ""
4453
5210
 
4454
5211
  msgid "Show a sync plan"
4455
5212
  msgstr ""
4456
5213
 
5214
+ msgid "Show all"
5215
+ msgstr ""
5216
+
4457
5217
  msgid "Show an activation key"
4458
5218
  msgstr ""
4459
5219
 
4460
- #, fuzzy
4461
5220
  msgid "Show an environment"
4462
- msgstr "Repositórios"
5221
+ msgstr ""
4463
5222
 
4464
5223
  msgid "Show content available for an activation key"
4465
5224
  msgstr ""
@@ -4470,6 +5229,9 @@ msgstr ""
4470
5229
  msgid "Show filter rule info"
4471
5230
  msgstr ""
4472
5231
 
5232
+ msgid "Show full description"
5233
+ msgstr ""
5234
+
4473
5235
  msgid "Show organization"
4474
5236
  msgstr ""
4475
5237
 
@@ -4500,7 +5262,7 @@ msgstr ""
4500
5262
  msgid "Simple Content Access has been enabled for '%{subject}'."
4501
5263
  msgstr ""
4502
5264
 
4503
- msgid "Single content view consisting of repositories"
5265
+ msgid "Single content view consisting of e.g. repositories"
4504
5266
  msgstr ""
4505
5267
 
4506
5268
  msgid "Size of file to upload"
@@ -4521,7 +5283,7 @@ msgstr ""
4521
5283
  msgid "Sockets: %s"
4522
5284
  msgstr ""
4523
5285
 
4524
- msgid "Solve Dependencies"
5286
+ msgid "Solution"
4525
5287
  msgstr ""
4526
5288
 
4527
5289
  msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
@@ -4536,21 +5298,78 @@ msgstr ""
4536
5298
  msgid "Some services are not properly started. See the About page for more information."
4537
5299
  msgstr ""
4538
5300
 
5301
+ msgid "Something went wrong while adding a bookmark: ${getBookmarkErrorMsgs(error.response)}"
5302
+ msgstr ""
5303
+
5304
+ msgid "Something went wrong while adding a filter rule! ${getResponseErrorMsgs(error.response)}"
5305
+ msgstr ""
5306
+
4539
5307
  msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
4540
5308
  msgstr ""
4541
5309
 
5310
+ msgid "Something went wrong while adding filter rules! ${getResponseErrorMsgs(error.response)}"
5311
+ msgstr ""
5312
+
4542
5313
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
4543
5314
  msgstr ""
4544
5315
 
5316
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5317
+ msgstr ""
5318
+
4545
5319
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
4546
5320
  msgstr ""
4547
5321
 
4548
5322
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
4549
5323
  msgstr ""
4550
5324
 
5325
+ msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
5326
+ msgstr ""
5327
+
5328
+ msgid "Something went wrong while editing the filter! ${getResponseErrorMsgs(error.response)}"
5329
+ msgstr ""
5330
+
5331
+ msgid "Something went wrong while editing version details. ${getResponseErrorMsgs(error.response)}"
5332
+ msgstr ""
5333
+
5334
+ msgid "Something went wrong while fetching ${lowerCase(pluralLabel)}! ${getResponseErrorMsgs(error.response)}"
5335
+ msgstr ""
5336
+
5337
+ msgid "Something went wrong while fetching files! ${getResponseErrorMsgs(error.response)}"
5338
+ msgstr ""
5339
+
5340
+ msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
5341
+ msgstr ""
5342
+
5343
+ msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5344
+ msgstr ""
5345
+
5346
+ msgid "Something went wrong while getting docker tags! ${getResponseErrorMsgs(error.response)}"
5347
+ msgstr ""
5348
+
5349
+ msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
5350
+ msgstr ""
5351
+
5352
+ msgid "Something went wrong while getting module streams! ${getResponseErrorMsgs(error.response)}"
5353
+ msgstr ""
5354
+
5355
+ msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
5356
+ msgstr ""
5357
+
5358
+ msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5359
+ msgstr ""
5360
+
5361
+ msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5362
+ msgstr ""
5363
+
4551
5364
  msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
4552
5365
  msgstr ""
4553
5366
 
5367
+ msgid "Something went wrong while retrieving package groups! ${getResponseErrorMsgs(error.response)}"
5368
+ msgstr ""
5369
+
5370
+ msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5371
+ msgstr ""
5372
+
4554
5373
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
4555
5374
  msgstr ""
4556
5375
 
@@ -4569,15 +5388,24 @@ msgstr ""
4569
5388
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
4570
5389
  msgstr ""
4571
5390
 
5391
+ msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5392
+ msgstr ""
5393
+
4572
5394
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
4573
5395
  msgstr ""
4574
5396
 
5397
+ msgid "Something went wrong! Please check server logs!"
5398
+ msgstr ""
5399
+
4575
5400
  msgid "Sort field and order, eg. 'id DESC'"
4576
5401
  msgstr ""
4577
5402
 
4578
5403
  msgid "Source RPM"
4579
5404
  msgstr ""
4580
5405
 
5406
+ msgid "Source RPMs"
5407
+ msgstr ""
5408
+
4581
5409
  msgid "Specify an export chunk size less than 1_000_000 GB"
4582
5410
  msgstr ""
4583
5411
 
@@ -4605,6 +5433,9 @@ msgstr ""
4605
5433
  msgid "Status"
4606
5434
  msgstr ""
4607
5435
 
5436
+ msgid "Status must be one of: %s"
5437
+ msgstr ""
5438
+
4608
5439
  msgid "Storage"
4609
5440
  msgstr ""
4610
5441
 
@@ -4761,9 +5592,8 @@ msgstr ""
4761
5592
  msgid "Sync Smart Proxies after Content View promotion"
4762
5593
  msgstr ""
4763
5594
 
4764
- #, fuzzy
4765
5595
  msgid "Sync Status"
4766
- msgstr "Sistema"
5596
+ msgstr ""
4767
5597
 
4768
5598
  msgid "Sync Summary"
4769
5599
  msgstr ""
@@ -4771,9 +5601,8 @@ msgstr ""
4771
5601
  msgid "Sync Summary for %s"
4772
5602
  msgstr ""
4773
5603
 
4774
- #, fuzzy
4775
5604
  msgid "Sync a repository"
4776
- msgstr "Repositórios"
5605
+ msgstr ""
4777
5606
 
4778
5607
  msgid "Sync all repositories for a product"
4779
5608
  msgstr ""
@@ -4796,6 +5625,9 @@ msgstr ""
4796
5625
  msgid "Sync state"
4797
5626
  msgstr ""
4798
5627
 
5628
+ msgid "Synced "
5629
+ msgstr ""
5630
+
4799
5631
  msgid "Synced Content"
4800
5632
  msgstr ""
4801
5633
 
@@ -4811,9 +5643,8 @@ msgstr ""
4811
5643
  msgid "Synchronize capsule content"
4812
5644
  msgstr ""
4813
5645
 
4814
- #, fuzzy
4815
5646
  msgid "Synchronize repository"
4816
- msgstr "Repositórios"
5647
+ msgstr ""
4817
5648
 
4818
5649
  msgid "Synchronize smart proxy"
4819
5650
  msgstr ""
@@ -4830,18 +5661,27 @@ msgstr ""
4830
5661
  msgid "Syncing Complete."
4831
5662
  msgstr ""
4832
5663
 
5664
+ msgid "Synopsis"
5665
+ msgstr ""
5666
+
4833
5667
  msgid "System Purpose"
4834
5668
  msgstr ""
4835
5669
 
4836
5670
  msgid "System Status"
4837
5671
  msgstr ""
4838
5672
 
5673
+ msgid "Tag name"
5674
+ msgstr ""
5675
+
4839
5676
  msgid "Tags"
4840
5677
  msgstr ""
4841
5678
 
4842
5679
  msgid "Task"
4843
5680
  msgstr ""
4844
5681
 
5682
+ msgid "Task ${task.humanized.action} completed with a result of ${task.result}. ${task.errors ? getErrors(task) : ''}"
5683
+ msgstr ""
5684
+
4845
5685
  msgid "Task ${task.humanized.action} has started."
4846
5686
  msgstr ""
4847
5687
 
@@ -4975,9 +5815,10 @@ msgstr ""
4975
5815
  msgid "The requested traces were not found for this host"
4976
5816
  msgstr ""
4977
5817
 
4978
- msgid ""
4979
- "The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
4980
- " content source, operating system, and architecture"
5818
+ msgid "The selected kickstart repository is not part of the assigned content view, lifecycle environment, content source, operating system, and architecture"
5819
+ msgstr ""
5820
+
5821
+ msgid "The selected/Inherited Content View is not available for this Lifecycle Environment"
4981
5822
  msgstr ""
4982
5823
 
4983
5824
  msgid "The specified organization is in Simple Content Access mode. Attaching subscriptions is disabled"
@@ -5028,6 +5869,9 @@ msgstr ""
5028
5869
  msgid "There was a problem retrieving Activation Key data from the server."
5029
5870
  msgstr ""
5030
5871
 
5872
+ msgid "There was an error retrieving data from the server. Check your connection and try again."
5873
+ msgstr ""
5874
+
5031
5875
  msgid "There was an issue with the backend service %s: "
5032
5876
  msgstr ""
5033
5877
 
@@ -5046,15 +5890,39 @@ msgstr ""
5046
5890
  msgid "This action doesn't support package groups"
5047
5891
  msgstr ""
5048
5892
 
5893
+ msgid "This action should only be taken in extreme circumstances or for debugging purposes."
5894
+ msgstr ""
5895
+
5049
5896
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
5050
5897
  msgstr ""
5051
5898
 
5052
5899
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
5053
5900
  msgstr ""
5054
5901
 
5902
+ msgid "This content view does not have any versions associated."
5903
+ msgstr ""
5904
+
5055
5905
  msgid "This content view version doesn't have a history."
5056
5906
  msgstr ""
5057
5907
 
5908
+ msgid "This content view will be automatically updated to the latest version."
5909
+ msgstr ""
5910
+
5911
+ msgid "This content view will be deleted. Changes will be effective after clicking Delete."
5912
+ msgstr ""
5913
+
5914
+ msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
5915
+ msgstr ""
5916
+
5917
+ msgid "This host currently does not have traces."
5918
+ msgstr ""
5919
+
5920
+ msgid "This host does not have any installable errata."
5921
+ msgstr ""
5922
+
5923
+ msgid "This host does not have any packages."
5924
+ msgstr ""
5925
+
5058
5926
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
5059
5927
  msgstr ""
5060
5928
 
@@ -5082,10 +5950,13 @@ msgstr ""
5082
5950
  msgid "This is not a linked repository"
5083
5951
  msgstr ""
5084
5952
 
5953
+ 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}."
5954
+ msgstr ""
5955
+
5085
5956
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
5086
5957
  msgstr ""
5087
5958
 
5088
- msgid "This request may only be performed on a Smart proxy that has the Pulp Node feature."
5959
+ msgid "This request may only be performed on a Smart proxy that has the Pulpcore feature with mirror=true."
5089
5960
  msgstr ""
5090
5961
 
5091
5962
  msgid "This service is available for unauthenticated users"
@@ -5100,6 +5971,21 @@ msgstr ""
5100
5971
  msgid "This subscription is not relevant to the current organization."
5101
5972
  msgstr ""
5102
5973
 
5974
+ msgid "This version has not been promoted to any environments."
5975
+ msgstr ""
5976
+
5977
+ msgid "This version is not promoted to any environments."
5978
+ msgstr ""
5979
+
5980
+ msgid "This version will be removed from:"
5981
+ msgstr ""
5982
+
5983
+ msgid "This will create a copy of {cv}, including details, repositories, and filters. Generated data such as history, tasks and versions will not be copied."
5984
+ msgstr ""
5985
+
5986
+ msgid "Time in minutes to consider orphan content as orphaned."
5987
+ msgstr ""
5988
+
5103
5989
  msgid "Time in seconds to wait for a Host to finish a remote action"
5104
5990
  msgstr ""
5105
5991
 
@@ -5124,18 +6010,36 @@ msgstr ""
5124
6010
  msgid "Total timeout in seconds for connections when syncing"
5125
6011
  msgstr ""
5126
6012
 
6013
+ msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6014
+ msgstr ""
6015
+
5127
6016
  msgid "Tracer profile uploaded successfully"
5128
6017
  msgstr ""
5129
6018
 
5130
6019
  msgid "Traces"
5131
6020
  msgstr ""
5132
6021
 
6022
+ msgid "Traces are not enabled"
6023
+ msgstr ""
6024
+
6025
+ msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6026
+ msgstr ""
6027
+
6028
+ msgid "Traces that require logout cannot be restarted remotely"
6029
+ msgstr ""
6030
+
5133
6031
  msgid "Trigger an auto-attach of subscriptions"
5134
6032
  msgstr ""
5135
6033
 
5136
6034
  msgid "Trigger an auto-attach of subscriptions on one or more hosts"
5137
6035
  msgstr ""
5138
6036
 
6037
+ msgid "Try changing your search criteria."
6038
+ msgstr ""
6039
+
6040
+ msgid "Try changing your search query."
6041
+ msgstr ""
6042
+
5139
6043
  msgid "Try changing your search settings."
5140
6044
  msgstr ""
5141
6045
 
@@ -5145,15 +6049,27 @@ msgstr ""
5145
6049
  msgid "Type"
5146
6050
  msgstr ""
5147
6051
 
6052
+ msgid "Type must be one of: %s"
6053
+ msgstr ""
6054
+
5148
6055
  msgid "Type of content"
5149
6056
  msgstr ""
5150
6057
 
5151
6058
  msgid "Type of content: \"cert\", \"gpg_key\""
5152
6059
  msgstr ""
5153
6060
 
6061
+ msgid "URL"
6062
+ msgstr ""
6063
+
5154
6064
  msgid "URL needs to have a trailing /"
5155
6065
  msgstr ""
5156
6066
 
6067
+ msgid "URL of a PyPI content source such as https://pypi.org."
6068
+ msgstr ""
6069
+
6070
+ msgid "URL of an OSTree repository."
6071
+ msgstr ""
6072
+
5157
6073
  msgid "UUID"
5158
6074
  msgstr ""
5159
6075
 
@@ -5172,6 +6088,9 @@ msgstr ""
5172
6088
  msgid "UUIDs of the virtual guests from the host's hypervisor"
5173
6089
  msgstr ""
5174
6090
 
6091
+ msgid "Unable to connect"
6092
+ msgstr ""
6093
+
5175
6094
  msgid "Unable to connect. Got: %s"
5176
6095
  msgstr ""
5177
6096
 
@@ -5271,15 +6190,24 @@ msgstr ""
5271
6190
  msgid "Unsubscribed hypervisor"
5272
6191
  msgstr ""
5273
6192
 
6193
+ msgid "Unsupported CDN resource"
6194
+ msgstr ""
6195
+
5274
6196
  msgid "Unsupported URL protocol %s."
5275
6197
  msgstr ""
5276
6198
 
5277
6199
  msgid "Unsupported event type %{type}. Supported: %{types}"
5278
6200
  msgstr ""
5279
6201
 
6202
+ msgid "Up-to date"
6203
+ msgstr ""
6204
+
5280
6205
  msgid "Update"
5281
6206
  msgstr ""
5282
6207
 
6208
+ msgid "Update CDN Configuration"
6209
+ msgstr ""
6210
+
5283
6211
  msgid "Update Content Overrides"
5284
6212
  msgstr ""
5285
6213
 
@@ -5295,9 +6223,8 @@ msgstr ""
5295
6223
  msgid "Update a component associated with the content view"
5296
6224
  msgstr ""
5297
6225
 
5298
- #, fuzzy
5299
6226
  msgid "Update a content view"
5300
- msgstr "Repositórios"
6227
+ msgstr ""
5301
6228
 
5302
6229
  msgid "Update a content view version"
5303
6230
  msgstr ""
@@ -5308,9 +6235,8 @@ msgstr ""
5308
6235
  msgid "Update a host collection"
5309
6236
  msgstr ""
5310
6237
 
5311
- #, fuzzy
5312
6238
  msgid "Update a repository"
5313
- msgstr "Repositórios"
6239
+ msgstr ""
5314
6240
 
5315
6241
  msgid "Update a sync plan"
5316
6242
  msgstr ""
@@ -5318,9 +6244,8 @@ msgstr ""
5318
6244
  msgid "Update an activation key"
5319
6245
  msgstr ""
5320
6246
 
5321
- #, fuzzy
5322
6247
  msgid "Update an environment"
5323
- msgstr "Repositórios"
6248
+ msgstr ""
5324
6249
 
5325
6250
  msgid "Update an environment in an organization"
5326
6251
  msgstr ""
@@ -5382,6 +6307,9 @@ msgstr ""
5382
6307
  msgid "Update services requiring restart"
5383
6308
  msgstr ""
5384
6309
 
6310
+ msgid "Update the CDN configuration"
6311
+ msgstr ""
6312
+
5385
6313
  msgid "Update the HTTP proxy configuration on the repositories of one or more products."
5386
6314
  msgstr ""
5387
6315
 
@@ -5424,7 +6352,19 @@ msgstr ""
5424
6352
  msgid "Updating repository authentication configuration"
5425
6353
  msgstr ""
5426
6354
 
5427
- msgid "Updating..."
6355
+ msgid "Upgradable"
6356
+ msgstr ""
6357
+
6358
+ msgid "Upgradable To"
6359
+ msgstr ""
6360
+
6361
+ msgid "Upgrade"
6362
+ msgstr ""
6363
+
6364
+ msgid "Upgrade via customized remote execution"
6365
+ msgstr ""
6366
+
6367
+ msgid "Upgrade via remote execution"
5428
6368
  msgstr ""
5429
6369
 
5430
6370
  msgid "Upload Content Credential contents"
@@ -5442,6 +6382,9 @@ msgstr ""
5442
6382
  msgid "Upload into"
5443
6383
  msgstr ""
5444
6384
 
6385
+ msgid "Upload profiles without Dynflow"
6386
+ msgstr ""
6387
+
5445
6388
  msgid "Upload request id"
5446
6389
  msgstr ""
5447
6390
 
@@ -5451,12 +6394,30 @@ msgstr ""
5451
6394
  msgid "Upstream identity certificate not available"
5452
6395
  msgstr ""
5453
6396
 
6397
+ msgid "Upstream organization %s does not provide this content path"
6398
+ msgstr ""
6399
+
6400
+ msgid "Upstream organization %{org_label} does not have a content view with the label %{cv_label}"
6401
+ msgstr ""
6402
+
6403
+ msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
6404
+ msgstr ""
6405
+
6406
+ msgid "Upstream organization to sync CDN content from"
6407
+ msgstr ""
6408
+
5454
6409
  msgid "Upstream password requires upstream username be set."
5455
6410
  msgstr ""
5456
6411
 
6412
+ msgid "Upstream server to sync CDN content from"
6413
+ msgstr ""
6414
+
5457
6415
  msgid "Upstream username and password may only be set on custom repositories."
5458
6416
  msgstr ""
5459
6417
 
6418
+ msgid "Upstream username and upstream password cannot be blank for ULN repositories"
6419
+ msgstr ""
6420
+
5460
6421
  msgid "Upstream username requires upstream password be set."
5461
6422
  msgstr ""
5462
6423
 
@@ -5490,12 +6451,24 @@ msgstr ""
5490
6451
  msgid "User must be logged in."
5491
6452
  msgstr ""
5492
6453
 
6454
+ msgid "Username"
6455
+ msgstr ""
6456
+
6457
+ msgid "Username for authentication"
6458
+ msgstr ""
6459
+
5493
6460
  msgid "Username of the upstream repository user used for authentication"
5494
6461
  msgstr ""
5495
6462
 
5496
6463
  msgid "Username to access URL"
5497
6464
  msgstr ""
5498
6465
 
6466
+ msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
6467
+ msgstr ""
6468
+
6469
+ msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using a non-Red Hat CDN."
6470
+ msgstr ""
6471
+
5499
6472
  msgid "Valid"
5500
6473
  msgstr ""
5501
6474
 
@@ -5520,6 +6493,21 @@ msgstr ""
5520
6493
  msgid "Version ${item.version}"
5521
6494
  msgstr ""
5522
6495
 
6496
+ msgid "Version ${version.version}"
6497
+ msgstr ""
6498
+
6499
+ msgid "Version ${versionNameToRemove} will be deleted from all environments. It will no longer be available for promotion."
6500
+ msgstr ""
6501
+
6502
+ msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
6503
+ msgstr ""
6504
+
6505
+ msgid "Version details updated."
6506
+ msgstr ""
6507
+
6508
+ msgid "Version in use"
6509
+ msgstr ""
6510
+
5523
6511
  msgid "Versions"
5524
6512
  msgstr ""
5525
6513
 
@@ -5532,9 +6520,27 @@ msgstr ""
5532
6520
  msgid "View a report of the affected hosts"
5533
6521
  msgstr ""
5534
6522
 
6523
+ msgid "View matching content"
6524
+ msgstr ""
6525
+
5535
6526
  msgid "Virtual"
5536
6527
  msgstr ""
5537
6528
 
6529
+ msgid "Visit the previous Packages page"
6530
+ msgstr ""
6531
+
6532
+ msgid "Waiting to start."
6533
+ msgstr ""
6534
+
6535
+ msgid "Warning"
6536
+ msgstr ""
6537
+
6538
+ msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
6539
+ msgstr ""
6540
+
6541
+ msgid "When \"Upstream URL\" is set, \"Releases/Distributions\" must also be set!"
6542
+ msgstr ""
6543
+
5538
6544
  msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5539
6545
  msgstr ""
5540
6546
 
@@ -5601,7 +6607,10 @@ msgstr ""
5601
6607
  msgid "You cannot set an organization's parent_id. This feature is disabled."
5602
6608
  msgstr ""
5603
6609
 
5604
- msgid "You currently don't have any Content Views."
6610
+ msgid "You currently don't have any ${selectedContentType}."
6611
+ msgstr ""
6612
+
6613
+ msgid "You currently don't have any Content views."
5605
6614
  msgstr ""
5606
6615
 
5607
6616
  msgid "You currently don't have any filters for this content view."
@@ -5610,12 +6619,21 @@ msgstr ""
5610
6619
  msgid "You currently don't have any history for this content view."
5611
6620
  msgstr ""
5612
6621
 
6622
+ msgid "You currently don't have any repositories associated with this content."
6623
+ msgstr ""
6624
+
5613
6625
  msgid "You currently don't have any repositories to add to this content view."
5614
6626
  msgstr ""
5615
6627
 
6628
+ msgid "You currently don't have any repositories to add to this filter."
6629
+ msgstr ""
6630
+
5616
6631
  msgid "You currently don't have any versions for this content view."
5617
6632
  msgstr ""
5618
6633
 
6634
+ msgid "You currently don\\'t have any related content views."
6635
+ msgstr ""
6636
+
5619
6637
  msgid "You do not have permissions to delete %s"
5620
6638
  msgstr ""
5621
6639
 
@@ -5646,10 +6664,25 @@ msgstr ""
5646
6664
  msgid "Your search query was invalid. Please revise it and try again. The full error has been sent to the application logs."
5647
6665
  msgstr ""
5648
6666
 
6667
+ msgid "Your search returned no matching "
6668
+ msgstr ""
6669
+
6670
+ msgid "Your search returned no matching RPMs."
6671
+ msgstr ""
6672
+
6673
+ msgid "Your search returned no matching activation keys."
6674
+ msgstr ""
6675
+
6676
+ msgid "Your search returned no matching hosts."
6677
+ msgstr ""
6678
+
5649
6679
  msgid "Yum Metadata: %s"
5650
6680
  msgstr ""
5651
6681
 
5652
- msgid "a deb"
6682
+ msgid "a content unit"
6683
+ msgstr ""
6684
+
6685
+ msgid "a deb package"
5653
6686
  msgstr ""
5654
6687
 
5655
6688
  msgid "a docker manifest"
@@ -5673,9 +6706,8 @@ msgstr ""
5673
6706
  msgid "a package"
5674
6707
  msgstr ""
5675
6708
 
5676
- #, fuzzy
5677
6709
  msgid "a package group"
5678
- msgstr "Arquitetura"
6710
+ msgstr ""
5679
6711
 
5680
6712
  msgid "actions not found"
5681
6713
  msgstr ""
@@ -5695,6 +6727,9 @@ msgstr ""
5695
6727
  msgid "add all packages without errata to the included/excluded list. (package filter only)"
5696
6728
  msgstr ""
5697
6729
 
6730
+ msgid "all environments"
6731
+ msgstr ""
6732
+
5698
6733
  msgid "all packages"
5699
6734
  msgstr ""
5700
6735
 
@@ -5722,9 +6757,6 @@ msgstr ""
5722
6757
  msgid "an organization"
5723
6758
  msgstr ""
5724
6759
 
5725
- msgid "an ostree branch"
5726
- msgstr ""
5727
-
5728
6760
  msgid "are only allowed for Yum repositories."
5729
6761
  msgstr ""
5730
6762
 
@@ -5737,6 +6769,12 @@ msgstr ""
5737
6769
  msgid "base url to perform repo discovery on"
5738
6770
  msgstr ""
5739
6771
 
6772
+ msgid "bulk add filter rules"
6773
+ msgstr ""
6774
+
6775
+ msgid "bulk delete filter rules"
6776
+ msgstr ""
6777
+
5740
6778
  msgid "can the activation key have unlimited hosts"
5741
6779
  msgstr ""
5742
6780
 
@@ -5773,9 +6811,6 @@ msgstr ""
5773
6811
  msgid "cannot be set because unlimited hosts is set"
5774
6812
  msgstr ""
5775
6813
 
5776
- msgid "cannot be set for non-ostree repositories."
5777
- msgstr ""
5778
-
5779
6814
  msgid "cannot be set for non-yum repositories."
5780
6815
  msgstr ""
5781
6816
 
@@ -5815,6 +6850,9 @@ msgstr ""
5815
6850
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
5816
6851
  msgstr ""
5817
6852
 
6853
+ msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
6854
+ msgstr ""
6855
+
5818
6856
  msgid "content view component ID. Identifier of the component association"
5819
6857
  msgstr ""
5820
6858
 
@@ -5875,9 +6913,11 @@ msgstr ""
5875
6913
  msgid "delete a filter"
5876
6914
  msgstr ""
5877
6915
 
5878
- #, fuzzy
6916
+ msgid "delete the content view with all the versions and environments"
6917
+ msgstr ""
6918
+
5879
6919
  msgid "description"
5880
- msgstr "Arquitetura"
6920
+ msgstr ""
5881
6921
 
5882
6922
  msgid "description of the environment"
5883
6923
  msgstr ""
@@ -5894,13 +6934,11 @@ msgstr ""
5894
6934
  msgid "enables or disables synchronization"
5895
6935
  msgstr ""
5896
6936
 
5897
- #, fuzzy
5898
6937
  msgid "environment"
5899
- msgstr "Repositórios"
6938
+ msgstr ""
5900
6939
 
5901
- #, fuzzy
5902
6940
  msgid "environment id"
5903
- msgstr "Repositórios"
6941
+ msgstr ""
5904
6942
 
5905
6943
  msgid "environment identifier"
5906
6944
  msgstr ""
@@ -5917,9 +6955,8 @@ msgstr ""
5917
6955
  msgid "environment to reassign orphaned systems to"
5918
6956
  msgstr ""
5919
6957
 
5920
- #, fuzzy
5921
6958
  msgid "environments"
5922
- msgstr "Repositórios"
6959
+ msgstr ""
5923
6960
 
5924
6961
  msgid "errata_id of the content view filter rule"
5925
6962
  msgstr ""
@@ -6014,9 +7051,6 @@ msgstr ""
6014
7051
  msgid "ids to filter content by"
6015
7052
  msgstr ""
6016
7053
 
6017
- msgid "if a custom sync policy is chosen for ostree repositories then a 'depth' value must be provided"
6018
- msgstr ""
6019
-
6020
7054
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
6021
7055
  msgstr ""
6022
7056
 
@@ -6080,9 +7114,8 @@ msgstr ""
6080
7114
  msgid "list of packages names"
6081
7115
  msgstr ""
6082
7116
 
6083
- #, fuzzy
6084
7117
  msgid "list of repository ids"
6085
- msgstr "Repositórios"
7118
+ msgstr ""
6086
7119
 
6087
7120
  msgid "list of rpm filename strings to include in published version"
6088
7121
  msgstr ""
@@ -6138,9 +7171,8 @@ msgstr ""
6138
7171
  msgid "must not contain leading or trailing white spaces."
6139
7172
  msgstr ""
6140
7173
 
6141
- #, fuzzy
6142
7174
  msgid "name"
6143
- msgstr "Nome"
7175
+ msgstr ""
6144
7176
 
6145
7177
  msgid "name not defined."
6146
7178
  msgstr ""
@@ -6151,9 +7183,8 @@ msgstr ""
6151
7183
  msgid "name of the content view filter rule"
6152
7184
  msgstr ""
6153
7185
 
6154
- #, fuzzy
6155
7186
  msgid "name of the environment"
6156
- msgstr "Repositórios"
7187
+ msgstr ""
6157
7188
 
6158
7189
  msgid "name of the filter"
6159
7190
  msgstr ""
@@ -6161,9 +7192,8 @@ msgstr ""
6161
7192
  msgid "name of the organization"
6162
7193
  msgstr ""
6163
7194
 
6164
- #, fuzzy
6165
7195
  msgid "name of the repository"
6166
- msgstr "Repositórios"
7196
+ msgstr ""
6167
7197
 
6168
7198
  msgid "name of the subscription"
6169
7199
  msgstr ""
@@ -6246,9 +7276,6 @@ msgstr ""
6246
7276
  msgid "policies for HTTP proxy for content sync"
6247
7277
  msgstr ""
6248
7278
 
6249
- msgid "policies for syncing upstream ostree repositories"
6250
- msgstr ""
6251
-
6252
7279
  msgid "policy for HTTP proxy for content sync"
6253
7280
  msgstr ""
6254
7281
 
@@ -6276,25 +7303,17 @@ msgstr ""
6276
7303
  msgid "repo label"
6277
7304
  msgstr ""
6278
7305
 
6279
- #, fuzzy
6280
7306
  msgid "repository ID"
6281
- msgstr "Repositórios"
7307
+ msgstr ""
6282
7308
 
6283
- #, fuzzy
6284
7309
  msgid "repository id"
6285
- msgstr "Repositórios"
7310
+ msgstr ""
6286
7311
 
6287
- #, fuzzy
6288
7312
  msgid "repository identifier"
6289
- msgstr "Repositórios"
7313
+ msgstr ""
6290
7314
 
6291
- #, fuzzy
6292
7315
  msgid "repository source url"
6293
- msgstr "Repositórios"
6294
-
6295
- #, fuzzy
6296
- msgid "repository url"
6297
- msgstr "Repositórios"
7316
+ msgstr ""
6298
7317
 
6299
7318
  msgid "repository_id"
6300
7319
  msgstr ""
@@ -6320,6 +7339,9 @@ msgstr ""
6320
7339
  msgid "set true if you want to see only library environments"
6321
7340
  msgstr ""
6322
7341
 
7342
+ msgid "sha256"
7343
+ msgstr ""
7344
+
6323
7345
  msgid "show archived repositories"
6324
7346
  msgstr ""
6325
7347
 
@@ -6368,10 +7390,10 @@ msgstr ""
6368
7390
  msgid "true if this repository can be published via HTTP"
6369
7391
  msgstr ""
6370
7392
 
6371
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed"
7393
+ msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
6372
7394
  msgstr ""
6373
7395
 
6374
- msgid "type of filter (e.g. rpm, package_group, erratum, docker, modulemd)"
7396
+ msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
6375
7397
  msgstr ""
6376
7398
 
6377
7399
  msgid "type of repo"
@@ -6401,15 +7423,30 @@ msgstr ""
6401
7423
  msgid "url not defined."
6402
7424
  msgstr ""
6403
7425
 
7426
+ msgid "via customized remote execution"
7427
+ msgstr ""
7428
+
7429
+ msgid "via remote execution"
7430
+ msgstr ""
7431
+
7432
+ msgid "view content view tabs."
7433
+ msgstr ""
7434
+
6404
7435
  msgid "waiting for Candlepin to finish the task"
6405
7436
  msgstr ""
6406
7437
 
6407
7438
  msgid "waiting for Pulp to finish the task"
6408
7439
  msgstr ""
6409
7440
 
7441
+ msgid "waiting for Pulp to finish the task %s"
7442
+ msgstr ""
7443
+
6410
7444
  msgid "waiting for Pulp to start the task"
6411
7445
  msgstr ""
6412
7446
 
7447
+ msgid "waiting for Pulp to start the task %s"
7448
+ msgstr ""
7449
+
6413
7450
  msgid "whitespace-separated list of architectures to be synced from deb-archive"
6414
7451
  msgstr ""
6415
7452