katello 3.17.0 → 3.18.0

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 (272) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
  5. data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
  8. data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
  9. data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
  10. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  11. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +17 -8
  12. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  13. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -71
  14. data/app/controllers/katello/api/v2/content_views_controller.rb +37 -26
  15. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  16. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  17. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  18. data/app/controllers/katello/api/v2/host_debs_controller.rb +1 -0
  19. data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
  20. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +35 -6
  21. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  22. data/app/controllers/katello/api/v2/products_controller.rb +9 -9
  23. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  24. data/app/controllers/katello/api/v2/repositories_controller.rb +10 -5
  25. data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
  26. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  28. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  29. data/app/controllers/katello/concerns/api/v2/authorization.rb +19 -5
  30. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
  31. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  32. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  33. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  34. data/app/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
  35. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  36. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  37. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  38. data/app/lib/actions/helpers/smart_proxy_sync_history_helper.rb +24 -0
  39. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
  40. data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
  41. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -7
  42. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  43. data/app/lib/actions/katello/content_view/publish.rb +9 -9
  44. data/app/lib/actions/katello/content_view_version/import.rb +8 -13
  45. data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  47. data/app/lib/actions/katello/host/hypervisors_update.rb +18 -0
  48. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  49. data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
  50. data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
  51. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  52. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  53. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  54. data/app/lib/actions/katello/product/content_create.rb +7 -6
  55. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  56. data/app/lib/actions/katello/repository/import_upload.rb +4 -1
  57. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  58. data/app/lib/actions/katello/repository/sync.rb +3 -1
  59. data/app/lib/actions/katello/repository/update.rb +5 -1
  60. data/app/lib/actions/katello/repository/upload_files.rb +1 -0
  61. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +15 -0
  62. data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
  63. data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
  64. data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
  65. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  66. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  67. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  68. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  69. data/app/lib/actions/pulp3/content_view_version/export.rb +7 -1
  70. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  71. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  72. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  73. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +38 -14
  74. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  75. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  76. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
  77. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  78. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  79. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  80. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  81. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  82. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  83. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  84. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  85. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  86. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  87. data/app/lib/katello/resources/registry.rb +3 -3
  88. data/app/models/katello/authorization/activation_key.rb +4 -0
  89. data/app/models/katello/authorization/content_view.rb +13 -0
  90. data/app/models/katello/authorization/content_view_component.rb +15 -0
  91. data/app/models/katello/authorization/content_view_filter.rb +15 -0
  92. data/app/models/katello/authorization/content_view_version.rb +25 -2
  93. data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
  94. data/app/models/katello/authorization/gpg_key.rb +12 -4
  95. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  96. data/app/models/katello/authorization/organization.rb +8 -0
  97. data/app/models/katello/authorization/sync_plan.rb +16 -0
  98. data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
  99. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  100. data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -4
  101. data/app/models/katello/content_migration_progress.rb +4 -0
  102. data/app/models/katello/content_view.rb +30 -4
  103. data/app/models/katello/content_view_component.rb +2 -0
  104. data/app/models/katello/content_view_filter.rb +5 -0
  105. data/app/models/katello/content_view_history.rb +2 -1
  106. data/app/models/katello/content_view_package_filter.rb +1 -1
  107. data/app/models/katello/content_view_puppet_module.rb +8 -0
  108. data/app/models/katello/content_view_repository.rb +13 -1
  109. data/app/models/katello/content_view_version_export_history.rb +8 -1
  110. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  111. data/app/models/katello/glue/pulp/repo.rb +8 -0
  112. data/app/models/katello/gpg_key.rb +1 -1
  113. data/app/models/katello/ping.rb +8 -3
  114. data/app/models/katello/repository.rb +33 -0
  115. data/app/models/katello/root_repository.rb +26 -1
  116. data/app/models/katello/smart_proxy_sync_history.rb +8 -0
  117. data/app/services/katello/candlepin/event_handler.rb +2 -0
  118. data/app/services/katello/candlepin/message_handler.rb +34 -0
  119. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  120. data/app/services/katello/host_status_manager.rb +9 -0
  121. data/app/services/katello/pulp3/api/apt.rb +57 -0
  122. data/app/services/katello/pulp3/api/core.rb +8 -0
  123. data/app/services/katello/pulp3/api/docker.rb +4 -0
  124. data/app/services/katello/pulp3/content_view_version/export.rb +125 -8
  125. data/app/services/katello/pulp3/content_view_version/import.rb +39 -34
  126. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
  127. data/app/services/katello/pulp3/content_view_version/import_validator.rb +114 -0
  128. data/app/services/katello/pulp3/deb.rb +38 -0
  129. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  130. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  131. data/app/services/katello/pulp3/migration.rb +51 -10
  132. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  133. data/app/services/katello/pulp3/repository.rb +10 -4
  134. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  135. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  136. data/app/services/katello/pulp3/repository/docker.rb +9 -0
  137. data/app/services/katello/pulp3/repository/yum.rb +14 -9
  138. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  139. data/app/services/katello/pulp3/task.rb +4 -0
  140. data/app/services/katello/pulp3/task_group.rb +4 -0
  141. data/app/services/katello/repository_type.rb +2 -1
  142. data/app/services/katello/smart_proxy_helper.rb +9 -0
  143. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  144. data/app/views/foreman/hosts/_registration.html.erb +12 -0
  145. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  146. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  147. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  148. data/app/views/katello/layouts/react.html.erb +3 -2
  149. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  150. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  151. data/config/routes/api/v2.rb +24 -2
  152. data/config/routes/overrides.rb +1 -0
  153. data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
  154. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  155. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  156. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  157. data/db/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
  158. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  159. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  160. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  161. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +6 -2
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +92 -19
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +8 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  199. data/lib/katello/engine.rb +2 -0
  200. data/lib/katello/permission_creator.rb +98 -69
  201. data/lib/katello/permissions/host_permissions.rb +1 -0
  202. data/lib/katello/plugin.rb +10 -2
  203. data/lib/katello/repository_types/deb.rb +9 -1
  204. data/lib/katello/tasks/pulp3_migration.rake +17 -3
  205. data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
  206. data/lib/katello/tasks/pulp3_migration_stats.rake +41 -0
  207. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  208. data/lib/katello/tasks/reset.rake +2 -1
  209. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  210. data/lib/katello/version.rb +1 -1
  211. data/locale/action_names.rb +51 -44
  212. data/locale/bn/katello.po +279 -55
  213. data/locale/cs/katello.po +278 -51
  214. data/locale/de/katello.po +279 -52
  215. data/locale/en/katello.po +278 -49
  216. data/locale/es/katello.po +279 -51
  217. data/locale/fr/katello.po +279 -51
  218. data/locale/gu/katello.po +279 -55
  219. data/locale/hi/katello.po +279 -55
  220. data/locale/it/katello.po +279 -51
  221. data/locale/ja/katello.po +279 -52
  222. data/locale/katello.pot +1379 -971
  223. data/locale/kn/katello.po +279 -55
  224. data/locale/ko/katello.po +279 -51
  225. data/locale/mr/katello.po +279 -55
  226. data/locale/or/katello.po +279 -55
  227. data/locale/pa/katello.po +279 -55
  228. data/locale/pt/katello.po +278 -52
  229. data/locale/pt_BR/katello.po +279 -51
  230. data/locale/ru/katello.po +279 -51
  231. data/locale/ta/katello.po +279 -55
  232. data/locale/te/katello.po +279 -55
  233. data/locale/zh_CN/katello.po +279 -51
  234. data/locale/zh_TW/katello.po +279 -52
  235. data/webpack/components/ActionableDetail.js +2 -1
  236. data/webpack/components/Search/Search.js +1 -1
  237. data/webpack/components/Table/MainTable.js +6 -2
  238. data/webpack/components/Table/TableWrapper.js +46 -9
  239. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  240. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  241. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  242. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  243. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  244. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  245. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  246. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  247. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  248. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  249. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  250. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  251. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  252. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  253. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  254. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  255. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  256. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +29 -19
  257. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  258. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  259. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  260. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  261. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  262. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  263. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  264. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  265. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  266. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  267. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  268. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  269. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  270. data/webpack/test-utils/react-testing-lib-wrapper.js +3 -0
  271. metadata +74 -13
  272. data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
@@ -23,6 +23,11 @@ msgstr ""
23
23
  "4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
24
24
  "X-Generator: Zanata 3.6.0\n"
25
25
 
26
+ msgid ""
27
+ "\n"
28
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
29
+ msgstr ""
30
+
26
31
  msgid " %{errata_count} Errata"
27
32
  msgstr ""
28
33
 
@@ -345,12 +350,18 @@ msgstr ""
345
350
  msgid "Action with sub plans"
346
351
  msgstr ""
347
352
 
353
+ msgid "Activation Key(s)"
354
+ msgstr ""
355
+
348
356
  msgid "Activation Keys"
349
357
  msgstr "Ключи активации"
350
358
 
351
359
  msgid "Activation key ID"
352
360
  msgstr "ID ключа активации"
353
361
 
362
+ msgid "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
363
+ msgstr ""
364
+
354
365
  msgid "Activation keys and subscriptions can be managed"
355
366
  msgstr "Управление ключами активации и подписками: "
356
367
 
@@ -402,6 +413,9 @@ msgstr "Добавлено содержимое:"
402
413
  msgid "Adding content units"
403
414
  msgstr ""
404
415
 
416
+ msgid "Adding multiple versions of the same Puppet Module is not supported by incremental update. The following Puppet Modules have duplicate versions in the incremental update content list: %{dup_list}"
417
+ msgstr ""
418
+
405
419
  msgid "Addons"
406
420
  msgstr ""
407
421
 
@@ -506,6 +520,9 @@ msgstr ""
506
520
  msgid "Artifacts"
507
521
  msgstr ""
508
522
 
523
+ msgid "Assign system purpose attributes on one or more hosts"
524
+ msgstr ""
525
+
509
526
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
510
527
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
511
528
  msgstr[0] "Выделить %{taxonomy_name} %{count} узел без %{taxonomy_single}"
@@ -552,9 +569,6 @@ msgstr ""
552
569
  msgid "Author"
553
570
  msgstr ""
554
571
 
555
- msgid "Auto Enablement may only be set on custom repositories."
556
- msgstr ""
557
-
558
572
  msgid "Auto Publish - Triggered by '%s'"
559
573
  msgstr ""
560
574
 
@@ -764,6 +778,9 @@ msgstr ""
764
778
  msgid "Cannot delete view while it exists in environments"
765
779
  msgstr "Прежде чем удалить представление, исключите его из окружений"
766
780
 
781
+ msgid "Cannot import a composite content view"
782
+ msgstr ""
783
+
767
784
  msgid "Cannot import a custom subscription from a redhat product."
768
785
  msgstr ""
769
786
 
@@ -819,12 +836,18 @@ msgstr ""
819
836
  msgid "Cannot upload Container Image content."
820
837
  msgstr ""
821
838
 
839
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
840
+ msgstr ""
841
+
822
842
  msgid "Cannot validate contents on non-yum/deb repositories."
823
843
  msgstr ""
824
844
 
825
845
  msgid "Check if a connection can be made to Red Hat Subscription Management."
826
846
  msgstr ""
827
847
 
848
+ msgid "Check if the specified organization is eligible for Simple Content Access"
849
+ msgstr ""
850
+
828
851
  msgid "Check services before actions"
829
852
  msgstr ""
830
853
 
@@ -860,7 +883,7 @@ msgstr ""
860
883
  msgid "Combined Profile Update for %s"
861
884
  msgstr ""
862
885
 
863
- msgid "Comma separated list of tags to sync for Container Image repository"
886
+ msgid "Comma-separated list of tags to sync for Container Image repository"
864
887
  msgstr ""
865
888
 
866
889
  # translation auto-copied from project Customer Portal Core Files, version 1, document interface, author ypoyarko
@@ -916,9 +939,15 @@ msgstr ""
916
939
  msgid "Content Download URL"
917
940
  msgstr ""
918
941
 
942
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
943
+ msgstr ""
944
+
919
945
  msgid "Content Hosts"
920
946
  msgstr "Узлы содержимого"
921
947
 
948
+ msgid "Content Migration"
949
+ msgstr ""
950
+
922
951
  msgid "Content Source"
923
952
  msgstr "Источник содержимого"
924
953
 
@@ -970,9 +999,15 @@ msgstr ""
970
999
  msgid "Content View Version not set"
971
1000
  msgstr ""
972
1001
 
1002
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1003
+ msgstr ""
1004
+
973
1005
  msgid "Content View and Environment not set for registration."
974
1006
  msgstr ""
975
1007
 
1008
+ msgid "Content View id"
1009
+ msgstr ""
1010
+
976
1011
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author ypoyarko
977
1012
  msgid "Content Views"
978
1013
  msgstr "Представления"
@@ -1011,6 +1046,9 @@ msgstr "Метка представления"
1011
1046
  msgid "Content view numeric identifier"
1012
1047
  msgstr "Числовой идентификатор представления"
1013
1048
 
1049
+ msgid "Content view version export history identifier"
1050
+ msgstr ""
1051
+
1014
1052
  msgid "Content view version identifier"
1015
1053
  msgstr "Идентификатор версии представления"
1016
1054
 
@@ -1032,12 +1070,12 @@ msgstr ""
1032
1070
  msgid "Copy an activation key"
1033
1071
  msgstr "Копировать ключ активации"
1034
1072
 
1073
+ msgid "Copy version units to library"
1074
+ msgstr ""
1075
+
1035
1076
  msgid "Cores: %s"
1036
1077
  msgstr "Ядра: %s"
1037
1078
 
1038
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1039
- msgstr ""
1040
-
1041
1079
  msgid "Could not delete organization '%s'."
1042
1080
  msgstr "Не удалось удалить организацию \"%s\"."
1043
1081
 
@@ -1047,6 +1085,12 @@ msgstr "%{content} с идентификатором «%{id}» в репозит
1047
1085
  msgid "Could not find %{count} errata. Only found: %{found}"
1048
1086
  msgstr ""
1049
1087
 
1088
+ msgid "Could not find %{name} resource with id %{id}"
1089
+ msgstr ""
1090
+
1091
+ msgid "Could not find %{name} resources with ids %{ids}"
1092
+ msgstr ""
1093
+
1050
1094
  msgid "Could not find Environment with ids: %s"
1051
1095
  msgstr "Окружения не найдены: %s"
1052
1096
 
@@ -1080,9 +1124,6 @@ msgstr ""
1080
1124
  msgid "Couldn't find %{type} Filter with id %{id}"
1081
1125
  msgstr "Фильтр %{type} с идентификатором %{id} не найден."
1082
1126
 
1083
- msgid "Couldn't find Content Credential '%s'"
1084
- msgstr ""
1085
-
1086
1127
  msgid "Couldn't find ContentViewFilter with id=%s"
1087
1128
  msgstr "Фильтр представления с идентификатором %s не найден."
1088
1129
 
@@ -1129,12 +1170,6 @@ msgstr "Окружение «%s» не найдено."
1129
1170
  msgid "Couldn't find errata ids '%s'"
1130
1171
  msgstr "Исправления «%s» не найдены."
1131
1172
 
1132
- msgid "Couldn't find gpg key '%s'"
1133
- msgstr "Ключ GPG «%s» не найден."
1134
-
1135
- msgid "Couldn't find host '%s'"
1136
- msgstr ""
1137
-
1138
1173
  msgid "Couldn't find host collection '%s'"
1139
1174
  msgstr "Коллекция «%s» не найдена"
1140
1175
 
@@ -1148,36 +1183,18 @@ msgstr "Организация «%s» не найдена"
1148
1183
  msgid "Couldn't find prior-environment '%s'"
1149
1184
  msgstr "Предыдущее окружение «%s» не найдено"
1150
1185
 
1151
- msgid "Couldn't find product '%s'"
1152
- msgstr "Продукт «%s» не найден."
1153
-
1154
1186
  msgid "Couldn't find product with id '%s'"
1155
1187
  msgstr "Продукт с ID «%s» не найден."
1156
1188
 
1157
1189
  msgid "Couldn't find repository '%s'"
1158
1190
  msgstr "Репозиторий «%s» не найден."
1159
1191
 
1160
- msgid "Couldn't find repository set with id '%s'."
1161
- msgstr "Набор репозиториев с ID «%s» не найден."
1162
-
1163
1192
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1164
1193
  msgstr ""
1165
1194
 
1166
- msgid "Couldn't find ssl ca cert '%s'"
1167
- msgstr ""
1168
-
1169
- msgid "Couldn't find ssl client cert '%s'"
1170
- msgstr ""
1171
-
1172
- msgid "Couldn't find ssl client key '%s'"
1173
- msgstr ""
1174
-
1175
1195
  msgid "Couldn't find subject of synchronization"
1176
1196
  msgstr "Не удалось найти объект синхронизации"
1177
1197
 
1178
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1179
- msgstr "Не удалось синхронизировать план «%{plan}» в организации «%{org}»"
1180
-
1181
1198
  msgid "Count"
1182
1199
  msgstr ""
1183
1200
 
@@ -1248,6 +1265,9 @@ msgstr ""
1248
1265
  msgid "Current organization not set."
1249
1266
  msgstr ""
1250
1267
 
1268
+ msgid "Custom"
1269
+ msgstr ""
1270
+
1251
1271
  msgid "Custom Content Repositories"
1252
1272
  msgstr "Другие репозитории"
1253
1273
 
@@ -1457,9 +1477,15 @@ msgstr "Описание новой версии опубликованного
1457
1477
  msgid "Description of the repository"
1458
1478
  msgstr ""
1459
1479
 
1480
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1481
+ msgstr ""
1482
+
1460
1483
  msgid "Desired quantity of the pool"
1461
1484
  msgstr ""
1462
1485
 
1486
+ msgid "Destination Server name"
1487
+ msgstr ""
1488
+
1463
1489
  # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1464
1490
  msgid "Destroy"
1465
1491
  msgstr "Удалить"
@@ -1512,6 +1538,9 @@ msgstr "Свойства"
1512
1538
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1513
1539
  msgstr ""
1514
1540
 
1541
+ msgid "Directory containing the exported Content View Version"
1542
+ msgstr ""
1543
+
1515
1544
  # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author ypoyarko
1516
1545
  msgid "Disable"
1517
1546
  msgstr "Отключить"
@@ -1528,6 +1557,9 @@ msgstr ""
1528
1557
  msgid "Disable simple content access for a manifest"
1529
1558
  msgstr ""
1530
1559
 
1560
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1561
+ msgstr ""
1562
+
1531
1563
  msgid "Disconnected mode"
1532
1564
  msgstr ""
1533
1565
 
@@ -1612,6 +1644,9 @@ msgstr ""
1612
1644
  msgid "Enabled Repositories"
1613
1645
  msgstr ""
1614
1646
 
1647
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1648
+ msgstr ""
1649
+
1615
1650
  msgid "End Date"
1616
1651
  msgstr ""
1617
1652
 
@@ -1721,7 +1756,10 @@ msgstr ""
1721
1756
  msgid "Export CSV"
1722
1757
  msgstr ""
1723
1758
 
1724
- msgid "Export a content view version"
1759
+ msgid "Export Library"
1760
+ msgstr ""
1761
+
1762
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1725
1763
  msgstr ""
1726
1764
 
1727
1765
  msgid "Export a repository"
@@ -1730,9 +1768,15 @@ msgstr ""
1730
1768
  msgid "Export as CSV"
1731
1769
  msgstr ""
1732
1770
 
1771
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1772
+ msgstr ""
1773
+
1733
1774
  msgid "Export to ISO format"
1734
1775
  msgstr ""
1735
1776
 
1777
+ msgid "Export to ISO format."
1778
+ msgstr ""
1779
+
1736
1780
  msgid "Exported version"
1737
1781
  msgstr ""
1738
1782
 
@@ -1876,10 +1920,6 @@ msgstr ""
1876
1920
  msgid "GPG Key URL"
1877
1921
  msgstr ""
1878
1922
 
1879
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ypoyarko
1880
- msgid "GPG Keys"
1881
- msgstr "Ключи GPG"
1882
-
1883
1923
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author ypoyarko
1884
1924
  msgid "Generate and Download"
1885
1925
  msgstr "Создать и загрузить"
@@ -1987,6 +2027,9 @@ msgstr "Пустая коллекция."
1987
2027
  msgid "Host content and subscription details"
1988
2028
  msgstr "Свойства подписки и содержимого"
1989
2029
 
2030
+ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
2031
+ msgstr ""
2032
+
1990
2033
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
1991
2034
  msgstr ""
1992
2035
 
@@ -2011,6 +2054,9 @@ msgstr ""
2011
2054
  msgid "Host id to list applicable packages for"
2012
2055
  msgstr ""
2013
2056
 
2057
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2058
+ msgstr ""
2059
+
2014
2060
  msgid "Host with ID %s already exists in the host collection."
2015
2061
  msgstr ""
2016
2062
 
@@ -2165,6 +2211,9 @@ msgstr ""
2165
2211
  msgid "Identifiers for Lifecycle Environment"
2166
2212
  msgstr ""
2167
2213
 
2214
+ msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
2215
+ msgstr ""
2216
+
2168
2217
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2169
2218
  msgstr ""
2170
2219
 
@@ -2207,6 +2256,15 @@ msgstr ""
2207
2256
  msgid "Immediate"
2208
2257
  msgstr ""
2209
2258
 
2259
+ msgid "Import"
2260
+ msgstr ""
2261
+
2262
+ msgid "Import Content View Version"
2263
+ msgstr ""
2264
+
2265
+ msgid "Import Default Content View"
2266
+ msgstr ""
2267
+
2210
2268
  msgid "Import Manifest"
2211
2269
  msgstr "Импорт манифеста"
2212
2270
 
@@ -2228,12 +2286,27 @@ msgstr ""
2228
2286
  msgid "Import a Manifest using the manifest tab above."
2229
2287
  msgstr ""
2230
2288
 
2289
+ msgid "Import a content view version"
2290
+ msgstr ""
2291
+
2292
+ msgid "Import a content view version to the library"
2293
+ msgstr ""
2294
+
2231
2295
  msgid "Import facts"
2232
2296
  msgstr "Импорт фактов"
2233
2297
 
2234
2298
  msgid "Import uploads into a repository"
2235
2299
  msgstr "Импорт новых компонентов из репозитория"
2236
2300
 
2301
+ msgid "Import-only can not be changed after creation"
2302
+ msgstr ""
2303
+
2304
+ msgid "Import-only content views can not be published directly"
2305
+ msgstr ""
2306
+
2307
+ msgid "Import-only content views will be available in a future version."
2308
+ msgstr ""
2309
+
2237
2310
  msgid "Importing manifest into '%{subject}' failed."
2238
2311
  msgstr ""
2239
2312
 
@@ -2409,6 +2482,9 @@ msgstr ""
2409
2482
  msgid "Invalid params provided - date_type must be one of %s"
2410
2483
  msgstr ""
2411
2484
 
2485
+ msgid "Invalid path specified."
2486
+ msgstr ""
2487
+
2412
2488
  msgid ""
2413
2489
  "Invalid puppet module parameters specified. \\\n"
2414
2490
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2417,6 +2493,12 @@ msgstr ""
2417
2493
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2418
2494
  msgstr "Недопустимый модуль Puppet. Модуль должен содержать файл metadata.json и представлен в сжатом виде."
2419
2495
 
2496
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2497
+ msgstr ""
2498
+
2499
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2500
+ msgstr ""
2501
+
2420
2502
  msgid "Invalid value specified for Container Image repositories."
2421
2503
  msgstr ""
2422
2504
 
@@ -2426,6 +2508,9 @@ msgstr ""
2426
2508
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2427
2509
  msgstr ""
2428
2510
 
2511
+ msgid "Katello"
2512
+ msgstr ""
2513
+
2429
2514
  msgid "Katello ID of local pool to update"
2430
2515
  msgstr ""
2431
2516
 
@@ -2486,9 +2571,6 @@ msgstr ""
2486
2571
  msgid "Learn more about adding Subscription Manifests"
2487
2572
  msgstr ""
2488
2573
 
2489
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2490
- msgstr ""
2491
-
2492
2574
  msgid "Library lifecycle environments may not be deleted."
2493
2575
  msgstr "Окружения Library не могут быть удалены."
2494
2576
 
@@ -2590,6 +2672,9 @@ msgstr "Показать исправления"
2590
2672
  msgid "List errata available for the content host"
2591
2673
  msgstr "Показать исправления для узла"
2592
2674
 
2675
+ msgid "List export histories"
2676
+ msgstr ""
2677
+
2593
2678
  msgid "List filter rules"
2594
2679
  msgstr "Показать правила фильтрации"
2595
2680
 
@@ -2743,6 +2828,9 @@ msgstr ""
2743
2828
  msgid "List srpms"
2744
2829
  msgstr ""
2745
2830
 
2831
+ msgid "List subscriptions"
2832
+ msgstr ""
2833
+
2746
2834
  msgid "List sync plans"
2747
2835
  msgstr "Показать планы синхронизации"
2748
2836
 
@@ -2831,6 +2919,9 @@ msgstr "Сообщение"
2831
2919
  msgid "Messaging connection"
2832
2920
  msgstr ""
2833
2921
 
2922
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2923
+ msgstr ""
2924
+
2834
2925
  msgid "Mismatched"
2835
2926
  msgstr ""
2836
2927
 
@@ -2963,6 +3054,9 @@ msgstr ""
2963
3054
  msgid "No errors"
2964
3055
  msgstr "Нет"
2965
3056
 
3057
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3058
+ msgstr ""
3059
+
2966
3060
  msgid "No file uploaded"
2967
3061
  msgstr "Нет отправленных файлов"
2968
3062
 
@@ -2975,12 +3069,18 @@ msgstr ""
2975
3069
  msgid "No hosts registered with subscription-manager found in selection."
2976
3070
  msgstr ""
2977
3071
 
3072
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3073
+ msgstr ""
3074
+
2978
3075
  msgid "No manifest file uploaded"
2979
3076
  msgstr "Нет загруженных файлов манифеста"
2980
3077
 
2981
3078
  msgid "No matching content views found"
2982
3079
  msgstr ""
2983
3080
 
3081
+ msgid "No matching repositories found"
3082
+ msgstr ""
3083
+
2984
3084
  msgid "No new packages installed"
2985
3085
  msgstr "Нет новых пакетов"
2986
3086
 
@@ -3116,6 +3216,9 @@ msgstr ""
3116
3216
  msgid "On-disk location for exported repositories"
3117
3217
  msgstr ""
3118
3218
 
3219
+ msgid "On-disk location for pulp 3 exported repositories"
3220
+ msgstr ""
3221
+
3119
3222
  msgid "One of parameters [ %s ] required but not specified."
3120
3223
  msgstr "Отсутствует обязательный параметр [ %s ] "
3121
3224
 
@@ -3147,6 +3250,9 @@ msgstr "Операторы"
3147
3250
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3148
3251
  msgstr ""
3149
3252
 
3253
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3254
+ msgstr ""
3255
+
3150
3256
  msgid "Organization"
3151
3257
  msgstr "Организация"
3152
3258
 
@@ -3384,6 +3490,18 @@ msgstr ""
3384
3490
  msgid "Perform an Incremental Update on one or more Content View Versions"
3385
3491
  msgstr "Выполнить инкрементное обновление версий представления"
3386
3492
 
3493
+ msgid "Performs a full-export of a content view version."
3494
+ msgstr ""
3495
+
3496
+ msgid "Performs a full-export of the repositories in library."
3497
+ msgstr ""
3498
+
3499
+ msgid "Performs an incremental-export of a content view version."
3500
+ msgstr ""
3501
+
3502
+ msgid "Performs an incremental-export of the repositories in library."
3503
+ msgstr ""
3504
+
3387
3505
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3388
3506
  msgstr "Отказ в разрешении. У «%{user}» нет прав доступа к организации «%{org}»."
3389
3507
 
@@ -3393,6 +3511,9 @@ msgstr "Физическое"
3393
3511
  msgid "Plan numeric identifier"
3394
3512
  msgstr "Числовой идентификатор плана"
3395
3513
 
3514
+ msgid "Please add some repositories."
3515
+ msgstr ""
3516
+
3396
3517
  msgid "Please enter a positive number above zero"
3397
3518
  msgstr ""
3398
3519
 
@@ -3420,6 +3541,9 @@ msgstr ""
3420
3541
  msgid "Please select one from the list below and you will be redirected."
3421
3542
  msgstr ""
3422
3543
 
3544
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3545
+ msgstr ""
3546
+
3423
3547
  msgid "Processing metadata"
3424
3548
  msgstr "Обработка метаданных..."
3425
3549
 
@@ -3526,6 +3650,9 @@ msgstr ""
3526
3650
  msgid "Pulp"
3527
3651
  msgstr ""
3528
3652
 
3653
+ msgid "Pulp 3 export destination filepath"
3654
+ msgstr ""
3655
+
3529
3656
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3530
3657
  msgstr ""
3531
3658
 
@@ -3580,6 +3707,12 @@ msgstr ""
3580
3707
  msgid "Pulp task error"
3581
3708
  msgstr "Ошибка задачи Pulp"
3582
3709
 
3710
+ msgid "Pulp user or group unable to read '%s'."
3711
+ msgstr ""
3712
+
3713
+ msgid "Pulp user or group unable to read content in '%s'."
3714
+ msgstr ""
3715
+
3583
3716
  msgid "Pulpcore"
3584
3717
  msgstr ""
3585
3718
 
@@ -3658,6 +3791,9 @@ msgstr ""
3658
3791
  msgid "Recommended Repositories"
3659
3792
  msgstr ""
3660
3793
 
3794
+ msgid "Red Hat"
3795
+ msgstr ""
3796
+
3661
3797
  msgid "Red Hat CDN URL"
3662
3798
  msgstr "Сеть доставки содержимого Red Hat"
3663
3799
 
@@ -3879,6 +4015,9 @@ msgstr ""
3879
4015
  msgid "Resolve Traces"
3880
4016
  msgstr ""
3881
4017
 
4018
+ msgid "Resolve traces for one or more hosts"
4019
+ msgstr ""
4020
+
3882
4021
  msgid "Resource"
3883
4022
  msgstr ""
3884
4023
 
@@ -3958,6 +4097,9 @@ msgstr "Вернуть содержимое ключа GPG, используем
3958
4097
  msgid "Role"
3959
4098
  msgstr ""
3960
4099
 
4100
+ msgid "Role of host"
4101
+ msgstr ""
4102
+
3961
4103
  msgid "Run Sync Plan:"
3962
4104
  msgstr ""
3963
4105
 
@@ -4058,6 +4200,9 @@ msgstr "Уровень обслуживания %s"
4058
4200
  msgid "Service Level (SLA)"
4059
4201
  msgstr ""
4060
4202
 
4203
+ msgid "Service level of host"
4204
+ msgstr ""
4205
+
4061
4206
  msgid "Service level to be used for autoheal"
4062
4207
  msgstr ""
4063
4208
 
@@ -4161,6 +4306,15 @@ msgstr "Показывает версию"
4161
4306
  msgid "Simple Content Access"
4162
4307
  msgstr ""
4163
4308
 
4309
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4310
+ msgstr ""
4311
+
4312
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4313
+ msgstr ""
4314
+
4315
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4316
+ msgstr ""
4317
+
4164
4318
  msgid "Size of file to upload"
4165
4319
  msgstr ""
4166
4320
 
@@ -4195,6 +4349,9 @@ msgstr ""
4195
4349
  msgid "Specify the list of units in each repo"
4196
4350
  msgstr ""
4197
4351
 
4352
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4353
+ msgstr ""
4354
+
4198
4355
  msgid "Stacking ID"
4199
4356
  msgstr ""
4200
4357
 
@@ -4405,6 +4562,9 @@ msgstr "Синхронизировать продукты"
4405
4562
  msgid "Sync plan identifier to attach"
4406
4563
  msgstr "Идентификатор плана синхронизации"
4407
4564
 
4565
+ msgid "Sync state"
4566
+ msgstr ""
4567
+
4408
4568
  msgid "Synced Content"
4409
4569
  msgstr ""
4410
4570
 
@@ -4467,6 +4627,9 @@ msgstr "Окружение «%s» не может содержать набор
4467
4627
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4468
4628
  msgstr ""
4469
4629
 
4630
+ msgid "The TOC file specified in the metadata does not exist. %s "
4631
+ msgstr ""
4632
+
4470
4633
  msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
4471
4634
  msgstr ""
4472
4635
 
@@ -4507,15 +4670,26 @@ msgstr "Недействительный формат или тип даты н
4507
4670
  msgid "The erratum type must be an array. Invalid value provided"
4508
4671
  msgstr "Недопустимое значение: типы исправлений должны быть представлены в виде массивов. "
4509
4672
 
4673
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4674
+ msgstr ""
4675
+
4510
4676
  msgid "The field to sort the data by. Defaults to the created date."
4511
4677
  msgstr ""
4512
4678
 
4513
4679
  msgid "The following hosts have errata that apply to them: "
4514
4680
  msgstr "Узлы, для которых обнаружены подходящие исправления:"
4515
4681
 
4682
+ msgid ""
4683
+ "The following repositories provided in the import metadata are either not available in the Library or are of incorrect Respository Type. Please add or enable the repositories before importing\n"
4684
+ " %{repos}"
4685
+ msgstr ""
4686
+
4516
4687
  msgid "The id of the host to alter"
4517
4688
  msgstr ""
4518
4689
 
4690
+ msgid "The import path must be in a subdirectory under '%s'."
4691
+ msgstr ""
4692
+
4519
4693
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4520
4694
  msgstr ""
4521
4695
 
@@ -4564,6 +4738,9 @@ msgstr ""
4564
4738
  msgid "The requested resource does not belong to the specified organization"
4565
4739
  msgstr ""
4566
4740
 
4741
+ msgid "The requested traces were not found for this host"
4742
+ msgstr ""
4743
+
4567
4744
  msgid "The selected content source and lifecycle environment do not match"
4568
4745
  msgstr ""
4569
4746
 
@@ -4627,6 +4804,9 @@ msgstr ""
4627
4804
  msgid "There's no running synchronization for this smart proxy."
4628
4805
  msgstr ""
4629
4806
 
4807
+ msgid "This Content View must be set to Import-only before performing an import"
4808
+ msgstr ""
4809
+
4630
4810
  msgid "This Host is not currently registered with subscription-manager."
4631
4811
  msgstr ""
4632
4812
 
@@ -4636,6 +4816,9 @@ msgstr ""
4636
4816
  msgid "This action doesn't support package groups"
4637
4817
  msgstr ""
4638
4818
 
4819
+ msgid "This action will become available after the Pulp 3 content migration"
4820
+ msgstr ""
4821
+
4639
4822
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4640
4823
  msgstr "Сертификат позволяет просмотреть репозитории окружения из окна браузера."
4641
4824
 
@@ -4766,10 +4949,16 @@ msgstr ""
4766
4949
  msgid "Unable to detect puppet path"
4767
4950
  msgstr ""
4768
4951
 
4769
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4952
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4770
4953
  msgstr ""
4771
4954
 
4772
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4955
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4956
+ msgstr ""
4957
+
4958
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4959
+ msgstr ""
4960
+
4961
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4773
4962
  msgstr ""
4774
4963
 
4775
4964
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -4984,6 +5173,12 @@ msgstr ""
4984
5173
  msgid "Updating Package..."
4985
5174
  msgstr "Обновление пакета..."
4986
5175
 
5176
+ msgid "Updating System Purpose for host"
5177
+ msgstr ""
5178
+
5179
+ msgid "Updating System Purpose for host %s"
5180
+ msgstr ""
5181
+
4987
5182
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author ypoyarko
4988
5183
  msgid "Updating package group..."
4989
5184
  msgstr "Обновление группы пакетов..."
@@ -5039,9 +5234,15 @@ msgstr ""
5039
5234
  msgid "Usage Type"
5040
5235
  msgstr ""
5041
5236
 
5237
+ msgid "Usage of host"
5238
+ msgstr ""
5239
+
5042
5240
  msgid "Use remote execution by default"
5043
5241
  msgstr ""
5044
5242
 
5243
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5244
+ msgstr ""
5245
+
5045
5246
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5046
5247
  msgstr "Пользователь «%s» не задал идентификатор организации и не имеет исходной организации."
5047
5248
 
@@ -5066,6 +5267,15 @@ msgstr ""
5066
5267
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5067
5268
  msgstr ""
5068
5269
 
5270
+ msgid "Verify checksum"
5271
+ msgstr ""
5272
+
5273
+ msgid "Verify checksum for one or more products"
5274
+ msgstr ""
5275
+
5276
+ msgid "Verify checksum of repository contents"
5277
+ msgstr ""
5278
+
5069
5279
  msgid "Version"
5070
5280
  msgstr ""
5071
5281
 
@@ -5083,7 +5293,7 @@ msgstr ""
5083
5293
  msgid "Virtual"
5084
5294
  msgstr "Логическое"
5085
5295
 
5086
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5296
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5087
5297
  msgstr ""
5088
5298
 
5089
5299
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5152,6 +5362,9 @@ msgstr "Вы не можете настроить parent_id для органи
5152
5362
  msgid "You currently don't have any Content Views."
5153
5363
  msgstr ""
5154
5364
 
5365
+ msgid "You currently don't have any repositories to add to this content view."
5366
+ msgstr ""
5367
+
5155
5368
  msgid "You do not have permissions to delete %s"
5156
5369
  msgstr "Недостаточно разрешений для удаления %s"
5157
5370
 
@@ -5257,6 +5470,9 @@ msgstr "организация"
5257
5470
  msgid "an ostree branch"
5258
5471
  msgstr ""
5259
5472
 
5473
+ msgid "are only allowed for Yum repositories."
5474
+ msgstr ""
5475
+
5260
5476
  msgid "attempted to sync without a feed URL"
5261
5477
  msgstr ""
5262
5478
 
@@ -5275,6 +5491,9 @@ msgstr ""
5275
5491
  msgid "can't be blank"
5276
5492
  msgstr "не может быть пустым"
5277
5493
 
5494
+ msgid "cannot add filter to import-only view"
5495
+ msgstr ""
5496
+
5278
5497
  msgid "cannot be a binary file."
5279
5498
  msgstr "не может быть двоичным файлом."
5280
5499
 
@@ -5330,13 +5549,13 @@ msgstr ""
5330
5549
  msgid "checking Pulp task status"
5331
5550
  msgstr ""
5332
5551
 
5333
- msgid "comma separated list of architectures to be synched from deb-archive"
5552
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5334
5553
  msgstr ""
5335
5554
 
5336
- msgid "comma separated list of releases to be synched from deb-archive"
5555
+ msgid "comma-separated list of releases to be synced from deb-archive"
5337
5556
  msgstr ""
5338
5557
 
5339
- msgid "comma separated list of repo components to be synched from deb-archive"
5558
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5340
5559
  msgstr ""
5341
5560
 
5342
5561
  msgid "composite content view identifier"
@@ -5566,9 +5785,6 @@ msgstr ""
5566
5785
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5567
5786
  msgstr ""
5568
5787
 
5569
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5570
- msgstr ""
5571
-
5572
5788
  msgid "if true, will ignore the globally configured proxy when syncing"
5573
5789
  msgstr ""
5574
5790
 
@@ -5602,6 +5818,9 @@ msgstr ""
5602
5818
  msgid "invalid container image name"
5603
5819
  msgstr ""
5604
5820
 
5821
+ msgid "invalid: Repositories can only require one OS version."
5822
+ msgstr ""
5823
+
5605
5824
  msgid "is already attached to the capsule"
5606
5825
  msgstr "уже связан с капсулой"
5607
5826
 
@@ -5641,6 +5860,9 @@ msgstr "максимальное число зарегистрированных
5641
5860
  msgid "maximum size of each ISO in MB"
5642
5861
  msgstr ""
5643
5862
 
5863
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5864
+ msgstr ""
5865
+
5644
5866
  msgid "may not be less than the number of hosts associated with the host collection."
5645
5867
  msgstr ""
5646
5868
 
@@ -5662,6 +5884,9 @@ msgstr "должно быть положительным целым числом
5662
5884
  msgid "must be one of the following: %s"
5663
5885
  msgstr "допустимые значения: %s"
5664
5886
 
5887
+ msgid "must be one of: %s"
5888
+ msgstr ""
5889
+
5665
5890
  msgid "must be unique within one organization"
5666
5891
  msgstr "должно быть уникальным в пределах организации."
5667
5892
 
@@ -5919,6 +6144,9 @@ msgstr ""
5919
6144
  msgid "the uuid of the puppet module to associate"
5920
6145
  msgstr "UUID модуля Puppet для сопоставления"
5921
6146
 
6147
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6148
+ msgstr ""
6149
+
5922
6150
  msgid "true if the latest version of the component's content view is desired"
5923
6151
  msgstr ""
5924
6152