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
@@ -19,6 +19,11 @@ msgstr ""
19
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
20
  "X-Generator: Zanata 3.6.2\n"
21
21
 
22
+ msgid ""
23
+ "\n"
24
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
25
+ msgstr ""
26
+
22
27
  msgid " %{errata_count} Errata"
23
28
  msgstr ""
24
29
 
@@ -402,6 +407,9 @@ msgstr ""
402
407
  msgid "Action with sub plans"
403
408
  msgstr ""
404
409
 
410
+ msgid "Activation Key(s)"
411
+ msgstr ""
412
+
405
413
  # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
406
414
  msgid "Activation Keys"
407
415
  msgstr "ॲक्टिवेशन किज्"
@@ -409,6 +417,9 @@ msgstr "ॲक्टिवेशन किज्"
409
417
  msgid "Activation key ID"
410
418
  msgstr ""
411
419
 
420
+ 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."
421
+ msgstr ""
422
+
412
423
  #, fuzzy
413
424
  msgid "Activation keys and subscriptions can be managed"
414
425
  msgstr "ॲक्टिवेशन कि '%s' निर्माण केले."
@@ -463,6 +474,9 @@ msgstr ""
463
474
  msgid "Adding content units"
464
475
  msgstr ""
465
476
 
477
+ 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}"
478
+ msgstr ""
479
+
466
480
  msgid "Addons"
467
481
  msgstr ""
468
482
 
@@ -567,6 +581,9 @@ msgstr ""
567
581
  msgid "Artifacts"
568
582
  msgstr ""
569
583
 
584
+ msgid "Assign system purpose attributes on one or more hosts"
585
+ msgstr ""
586
+
570
587
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
571
588
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
572
589
  msgstr[0] ""
@@ -615,9 +632,6 @@ msgstr ""
615
632
  msgid "Author"
616
633
  msgstr ""
617
634
 
618
- msgid "Auto Enablement may only be set on custom repositories."
619
- msgstr ""
620
-
621
635
  msgid "Auto Publish - Triggered by '%s'"
622
636
  msgstr ""
623
637
 
@@ -840,6 +854,9 @@ msgstr ""
840
854
  msgid "Cannot delete view while it exists in environments"
841
855
  msgstr "दुसरे वातावरण असणारे टेम्प्लेट संपादित करणे अशक्य"
842
856
 
857
+ msgid "Cannot import a composite content view"
858
+ msgstr ""
859
+
843
860
  msgid "Cannot import a custom subscription from a redhat product."
844
861
  msgstr ""
845
862
 
@@ -895,12 +912,18 @@ msgstr ""
895
912
  msgid "Cannot upload Container Image content."
896
913
  msgstr ""
897
914
 
915
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
916
+ msgstr ""
917
+
898
918
  msgid "Cannot validate contents on non-yum/deb repositories."
899
919
  msgstr ""
900
920
 
901
921
  msgid "Check if a connection can be made to Red Hat Subscription Management."
902
922
  msgstr ""
903
923
 
924
+ msgid "Check if the specified organization is eligible for Simple Content Access"
925
+ msgstr ""
926
+
904
927
  msgid "Check services before actions"
905
928
  msgstr ""
906
929
 
@@ -936,7 +959,7 @@ msgstr ""
936
959
  msgid "Combined Profile Update for %s"
937
960
  msgstr ""
938
961
 
939
- msgid "Comma separated list of tags to sync for Container Image repository"
962
+ msgid "Comma-separated list of tags to sync for Container Image repository"
940
963
  msgstr ""
941
964
 
942
965
  # translation auto-copied from project CFSE, version sam-1.2, document app
@@ -991,10 +1014,16 @@ msgstr ""
991
1014
  msgid "Content Download URL"
992
1015
  msgstr ""
993
1016
 
1017
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
1018
+ msgstr ""
1019
+
994
1020
  #, fuzzy
995
1021
  msgid "Content Hosts"
996
1022
  msgstr "कंटेंट"
997
1023
 
1024
+ msgid "Content Migration"
1025
+ msgstr ""
1026
+
998
1027
  msgid "Content Source"
999
1028
  msgstr ""
1000
1029
 
@@ -1046,9 +1075,15 @@ msgstr ""
1046
1075
  msgid "Content View Version not set"
1047
1076
  msgstr ""
1048
1077
 
1078
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1079
+ msgstr ""
1080
+
1049
1081
  msgid "Content View and Environment not set for registration."
1050
1082
  msgstr ""
1051
1083
 
1084
+ msgid "Content View id"
1085
+ msgstr ""
1086
+
1052
1087
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1053
1088
  msgid "Content Views"
1054
1089
  msgstr "अंतर्भुत माहिती दृष्य"
@@ -1087,6 +1122,9 @@ msgstr ""
1087
1122
  msgid "Content view numeric identifier"
1088
1123
  msgstr ""
1089
1124
 
1125
+ msgid "Content view version export history identifier"
1126
+ msgstr ""
1127
+
1090
1128
  msgid "Content view version identifier"
1091
1129
  msgstr ""
1092
1130
 
@@ -1109,13 +1147,13 @@ msgstr ""
1109
1147
  msgid "Copy an activation key"
1110
1148
  msgstr "ॲक्टिवेशन किज्"
1111
1149
 
1150
+ msgid "Copy version units to library"
1151
+ msgstr ""
1152
+
1112
1153
  #, fuzzy
1113
1154
  msgid "Cores: %s"
1114
1155
  msgstr "कारण: %s"
1115
1156
 
1116
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1117
- msgstr ""
1118
-
1119
1157
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
1120
1158
  msgid "Could not delete organization '%s'."
1121
1159
  msgstr "संस्था '%s' नष्ट करणे अशक्य."
@@ -1126,6 +1164,12 @@ msgstr ""
1126
1164
  msgid "Could not find %{count} errata. Only found: %{found}"
1127
1165
  msgstr ""
1128
1166
 
1167
+ msgid "Could not find %{name} resource with id %{id}"
1168
+ msgstr ""
1169
+
1170
+ msgid "Could not find %{name} resources with ids %{ids}"
1171
+ msgstr ""
1172
+
1129
1173
  msgid "Could not find Environment with ids: %s"
1130
1174
  msgstr ""
1131
1175
 
@@ -1159,9 +1203,6 @@ msgstr ""
1159
1203
  msgid "Couldn't find %{type} Filter with id %{id}"
1160
1204
  msgstr ""
1161
1205
 
1162
- msgid "Couldn't find Content Credential '%s'"
1163
- msgstr ""
1164
-
1165
1206
  #, fuzzy
1166
1207
  msgid "Couldn't find ContentViewFilter with id=%s"
1167
1208
  msgstr "id '%s' सह उत्पादन आढळले नाही"
@@ -1219,13 +1260,6 @@ msgstr "वातावरण '%s' आढळले नाही"
1219
1260
  msgid "Couldn't find errata ids '%s'"
1220
1261
  msgstr "संस्था '%s' शोधणे अशक्य"
1221
1262
 
1222
- #, fuzzy
1223
- msgid "Couldn't find gpg key '%s'"
1224
- msgstr "GPG कि '%s' शोधणे अशक्य"
1225
-
1226
- msgid "Couldn't find host '%s'"
1227
- msgstr ""
1228
-
1229
1263
  msgid "Couldn't find host collection '%s'"
1230
1264
  msgstr ""
1231
1265
 
@@ -1240,10 +1274,6 @@ msgstr "संस्था '%s' शोधणे अशक्य"
1240
1274
  msgid "Couldn't find prior-environment '%s'"
1241
1275
  msgstr "वातावरण '%s' आढळले नाही"
1242
1276
 
1243
- #, fuzzy
1244
- msgid "Couldn't find product '%s'"
1245
- msgstr "प्रोव्हाइडर '%s' आढळले नाही"
1246
-
1247
1277
  # translation auto-copied from project CFSE, version sam-1.2, document app
1248
1278
  msgid "Couldn't find product with id '%s'"
1249
1279
  msgstr "id '%s' सह उत्पादन आढळले नाही"
@@ -1252,30 +1282,13 @@ msgstr "id '%s' सह उत्पादन आढळले नाही"
1252
1282
  msgid "Couldn't find repository '%s'"
1253
1283
  msgstr "रेपॉजिटरि '%s' शोधणे अशक्य"
1254
1284
 
1255
- #, fuzzy
1256
- msgid "Couldn't find repository set with id '%s'."
1257
- msgstr "रेपॉजिटरि '%s' शोधणे अशक्य"
1258
-
1259
1285
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1260
1286
  msgstr ""
1261
1287
 
1262
- msgid "Couldn't find ssl ca cert '%s'"
1263
- msgstr ""
1264
-
1265
- msgid "Couldn't find ssl client cert '%s'"
1266
- msgstr ""
1267
-
1268
- msgid "Couldn't find ssl client key '%s'"
1269
- msgstr ""
1270
-
1271
1288
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
1272
1289
  msgid "Couldn't find subject of synchronization"
1273
1290
  msgstr "सिंक्रोनाइजेशनचा विषय आढळले नाही"
1274
1291
 
1275
- # translation auto-copied from project CFSE, version sam-1.2, document app
1276
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1277
- msgstr "सिंक प्लॅन '%{plan}' शोधणे अशक्य, '%{org}' संस्थामध्ये"
1278
-
1279
1292
  msgid "Count"
1280
1293
  msgstr ""
1281
1294
 
@@ -1346,6 +1359,9 @@ msgstr ""
1346
1359
  msgid "Current organization not set."
1347
1360
  msgstr ""
1348
1361
 
1362
+ msgid "Custom"
1363
+ msgstr ""
1364
+
1349
1365
  # translation auto-copied from project CFSE, version sam-1.2, document app
1350
1366
  msgid "Custom Content Repositories"
1351
1367
  msgstr "पसंतीचे कंटेंट रेपॉजिटरिज्"
@@ -1559,9 +1575,15 @@ msgstr ""
1559
1575
  msgid "Description of the repository"
1560
1576
  msgstr ""
1561
1577
 
1578
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1579
+ msgstr ""
1580
+
1562
1581
  msgid "Desired quantity of the pool"
1563
1582
  msgstr ""
1564
1583
 
1584
+ msgid "Destination Server name"
1585
+ msgstr ""
1586
+
1565
1587
  msgid "Destroy"
1566
1588
  msgstr ""
1567
1589
 
@@ -1613,6 +1635,9 @@ msgstr ""
1613
1635
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1614
1636
  msgstr ""
1615
1637
 
1638
+ msgid "Directory containing the exported Content View Version"
1639
+ msgstr ""
1640
+
1616
1641
  msgid "Disable"
1617
1642
  msgstr ""
1618
1643
 
@@ -1628,6 +1653,9 @@ msgstr ""
1628
1653
  msgid "Disable simple content access for a manifest"
1629
1654
  msgstr ""
1630
1655
 
1656
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1657
+ msgstr ""
1658
+
1631
1659
  msgid "Disconnected mode"
1632
1660
  msgstr ""
1633
1661
 
@@ -1712,6 +1740,9 @@ msgstr ""
1712
1740
  msgid "Enabled Repositories"
1713
1741
  msgstr ""
1714
1742
 
1743
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1744
+ msgstr ""
1745
+
1715
1746
  msgid "End Date"
1716
1747
  msgstr ""
1717
1748
 
@@ -1829,7 +1860,10 @@ msgstr ""
1829
1860
  msgid "Export CSV"
1830
1861
  msgstr ""
1831
1862
 
1832
- msgid "Export a content view version"
1863
+ msgid "Export Library"
1864
+ msgstr ""
1865
+
1866
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1833
1867
  msgstr ""
1834
1868
 
1835
1869
  msgid "Export a repository"
@@ -1838,9 +1872,15 @@ msgstr ""
1838
1872
  msgid "Export as CSV"
1839
1873
  msgstr ""
1840
1874
 
1875
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1876
+ msgstr ""
1877
+
1841
1878
  msgid "Export to ISO format"
1842
1879
  msgstr ""
1843
1880
 
1881
+ msgid "Export to ISO format."
1882
+ msgstr ""
1883
+
1844
1884
  msgid "Exported version"
1845
1885
  msgstr ""
1846
1886
 
@@ -1984,10 +2024,6 @@ msgstr ""
1984
2024
  msgid "GPG Key URL"
1985
2025
  msgstr ""
1986
2026
 
1987
- # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
1988
- msgid "GPG Keys"
1989
- msgstr "GPG किज्"
1990
-
1991
2027
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1992
2028
  msgid "Generate and Download"
1993
2029
  msgstr "निर्माण व डाऊनलोड करा"
@@ -2095,6 +2131,9 @@ msgstr ""
2095
2131
  msgid "Host content and subscription details"
2096
2132
  msgstr ""
2097
2133
 
2134
+ 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."
2135
+ msgstr ""
2136
+
2098
2137
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2099
2138
  msgstr ""
2100
2139
 
@@ -2119,6 +2158,9 @@ msgstr ""
2119
2158
  msgid "Host id to list applicable packages for"
2120
2159
  msgstr ""
2121
2160
 
2161
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2162
+ msgstr ""
2163
+
2122
2164
  msgid "Host with ID %s already exists in the host collection."
2123
2165
  msgstr ""
2124
2166
 
@@ -2273,6 +2315,9 @@ msgstr ""
2273
2315
  msgid "Identifiers for Lifecycle Environment"
2274
2316
  msgstr ""
2275
2317
 
2318
+ 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"
2319
+ msgstr ""
2320
+
2276
2321
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2277
2322
  msgstr ""
2278
2323
 
@@ -2315,6 +2360,15 @@ msgstr ""
2315
2360
  msgid "Immediate"
2316
2361
  msgstr ""
2317
2362
 
2363
+ msgid "Import"
2364
+ msgstr ""
2365
+
2366
+ msgid "Import Content View Version"
2367
+ msgstr ""
2368
+
2369
+ msgid "Import Default Content View"
2370
+ msgstr ""
2371
+
2318
2372
  #, fuzzy
2319
2373
  msgid "Import Manifest"
2320
2374
  msgstr "आयात करा"
@@ -2337,6 +2391,12 @@ msgstr ""
2337
2391
  msgid "Import a Manifest using the manifest tab above."
2338
2392
  msgstr ""
2339
2393
 
2394
+ msgid "Import a content view version"
2395
+ msgstr ""
2396
+
2397
+ msgid "Import a content view version to the library"
2398
+ msgstr ""
2399
+
2340
2400
  #, fuzzy
2341
2401
  msgid "Import facts"
2342
2402
  msgstr "आयात करा"
@@ -2344,6 +2404,15 @@ msgstr "आयात करा"
2344
2404
  msgid "Import uploads into a repository"
2345
2405
  msgstr ""
2346
2406
 
2407
+ msgid "Import-only can not be changed after creation"
2408
+ msgstr ""
2409
+
2410
+ msgid "Import-only content views can not be published directly"
2411
+ msgstr ""
2412
+
2413
+ msgid "Import-only content views will be available in a future version."
2414
+ msgstr ""
2415
+
2347
2416
  msgid "Importing manifest into '%{subject}' failed."
2348
2417
  msgstr ""
2349
2418
 
@@ -2528,6 +2597,9 @@ msgstr ""
2528
2597
  msgid "Invalid params provided - date_type must be one of %s"
2529
2598
  msgstr ""
2530
2599
 
2600
+ msgid "Invalid path specified."
2601
+ msgstr ""
2602
+
2531
2603
  msgid ""
2532
2604
  "Invalid puppet module parameters specified. \\\n"
2533
2605
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2536,6 +2608,12 @@ msgstr ""
2536
2608
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2537
2609
  msgstr ""
2538
2610
 
2611
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2612
+ msgstr ""
2613
+
2614
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2615
+ msgstr ""
2616
+
2539
2617
  msgid "Invalid value specified for Container Image repositories."
2540
2618
  msgstr ""
2541
2619
 
@@ -2545,6 +2623,9 @@ msgstr ""
2545
2623
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2546
2624
  msgstr ""
2547
2625
 
2626
+ msgid "Katello"
2627
+ msgstr ""
2628
+
2548
2629
  msgid "Katello ID of local pool to update"
2549
2630
  msgstr ""
2550
2631
 
@@ -2605,9 +2686,6 @@ msgstr ""
2605
2686
  msgid "Learn more about adding Subscription Manifests"
2606
2687
  msgstr ""
2607
2688
 
2608
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2609
- msgstr ""
2610
-
2611
2689
  #, fuzzy
2612
2690
  msgid "Library lifecycle environments may not be deleted."
2613
2691
  msgstr "वातावरण '%s' नष्ट केले."
@@ -2709,6 +2787,9 @@ msgstr ""
2709
2787
  msgid "List errata available for the content host"
2710
2788
  msgstr ""
2711
2789
 
2790
+ msgid "List export histories"
2791
+ msgstr ""
2792
+
2712
2793
  msgid "List filter rules"
2713
2794
  msgstr ""
2714
2795
 
@@ -2862,6 +2943,9 @@ msgstr ""
2862
2943
  msgid "List srpms"
2863
2944
  msgstr ""
2864
2945
 
2946
+ msgid "List subscriptions"
2947
+ msgstr ""
2948
+
2865
2949
  msgid "List sync plans"
2866
2950
  msgstr ""
2867
2951
 
@@ -2950,6 +3034,9 @@ msgstr "संदेश"
2950
3034
  msgid "Messaging connection"
2951
3035
  msgstr ""
2952
3036
 
3037
+ msgid "Metadata taken from the upstream export history for this Content View Version"
3038
+ msgstr ""
3039
+
2953
3040
  msgid "Mismatched"
2954
3041
  msgstr ""
2955
3042
 
@@ -3089,6 +3176,9 @@ msgstr ""
3089
3176
  msgid "No errors"
3090
3177
  msgstr "त्रुटी आढळली नाही"
3091
3178
 
3179
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3180
+ msgstr ""
3181
+
3092
3182
  msgid "No file uploaded"
3093
3183
  msgstr ""
3094
3184
 
@@ -3101,12 +3191,18 @@ msgstr ""
3101
3191
  msgid "No hosts registered with subscription-manager found in selection."
3102
3192
  msgstr ""
3103
3193
 
3194
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3195
+ msgstr ""
3196
+
3104
3197
  msgid "No manifest file uploaded"
3105
3198
  msgstr ""
3106
3199
 
3107
3200
  msgid "No matching content views found"
3108
3201
  msgstr ""
3109
3202
 
3203
+ msgid "No matching repositories found"
3204
+ msgstr ""
3205
+
3110
3206
  msgid "No new packages installed"
3111
3207
  msgstr "नवीन संकुले प्रतिष्ठापीत झाले नाही"
3112
3208
 
@@ -3246,6 +3342,9 @@ msgstr ""
3246
3342
  msgid "On-disk location for exported repositories"
3247
3343
  msgstr ""
3248
3344
 
3345
+ msgid "On-disk location for pulp 3 exported repositories"
3346
+ msgstr ""
3347
+
3249
3348
  #, fuzzy
3250
3349
  msgid "One of parameters [ %s ] required but not specified."
3251
3350
  msgstr "organization_id आवश्यक परंतु निर्देशीत केले नाही."
@@ -3279,6 +3378,9 @@ msgstr ""
3279
3378
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3280
3379
  msgstr ""
3281
3380
 
3381
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3382
+ msgstr ""
3383
+
3282
3384
  # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
3283
3385
  msgid "Organization"
3284
3386
  msgstr "संस्था"
@@ -3543,6 +3645,18 @@ msgstr ""
3543
3645
  msgid "Perform an Incremental Update on one or more Content View Versions"
3544
3646
  msgstr ""
3545
3647
 
3648
+ msgid "Performs a full-export of a content view version."
3649
+ msgstr ""
3650
+
3651
+ msgid "Performs a full-export of the repositories in library."
3652
+ msgstr ""
3653
+
3654
+ msgid "Performs an incremental-export of a content view version."
3655
+ msgstr ""
3656
+
3657
+ msgid "Performs an incremental-export of the repositories in library."
3658
+ msgstr ""
3659
+
3546
3660
  # translation auto-copied from project CFSE, version sam-1.2, document app
3547
3661
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3548
3662
  msgstr "परवानगी नकारली. वापरकर्ता '%{user}' कडे संस्था '%{org}' करीता प्रवेशसाठी परवानगी नाही."
@@ -3554,6 +3668,9 @@ msgstr "फिजिकल"
3554
3668
  msgid "Plan numeric identifier"
3555
3669
  msgstr ""
3556
3670
 
3671
+ msgid "Please add some repositories."
3672
+ msgstr ""
3673
+
3557
3674
  msgid "Please enter a positive number above zero"
3558
3675
  msgstr ""
3559
3676
 
@@ -3581,6 +3698,9 @@ msgstr ""
3581
3698
  msgid "Please select one from the list below and you will be redirected."
3582
3699
  msgstr ""
3583
3700
 
3701
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3702
+ msgstr ""
3703
+
3584
3704
  msgid "Processing metadata"
3585
3705
  msgstr ""
3586
3706
 
@@ -3688,6 +3808,9 @@ msgstr ""
3688
3808
  msgid "Pulp"
3689
3809
  msgstr ""
3690
3810
 
3811
+ msgid "Pulp 3 export destination filepath"
3812
+ msgstr ""
3813
+
3691
3814
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3692
3815
  msgstr ""
3693
3816
 
@@ -3742,6 +3865,12 @@ msgstr ""
3742
3865
  msgid "Pulp task error"
3743
3866
  msgstr ""
3744
3867
 
3868
+ msgid "Pulp user or group unable to read '%s'."
3869
+ msgstr ""
3870
+
3871
+ msgid "Pulp user or group unable to read content in '%s'."
3872
+ msgstr ""
3873
+
3745
3874
  msgid "Pulpcore"
3746
3875
  msgstr ""
3747
3876
 
@@ -3818,6 +3947,9 @@ msgstr ""
3818
3947
  msgid "Recommended Repositories"
3819
3948
  msgstr ""
3820
3949
 
3950
+ msgid "Red Hat"
3951
+ msgstr ""
3952
+
3821
3953
  #, fuzzy
3822
3954
  msgid "Red Hat CDN URL"
3823
3955
  msgstr "उत्पादने"
@@ -4053,6 +4185,9 @@ msgstr ""
4053
4185
  msgid "Resolve Traces"
4054
4186
  msgstr ""
4055
4187
 
4188
+ msgid "Resolve traces for one or more hosts"
4189
+ msgstr ""
4190
+
4056
4191
  msgid "Resource"
4057
4192
  msgstr ""
4058
4193
 
@@ -4132,6 +4267,9 @@ msgstr ""
4132
4267
  msgid "Role"
4133
4268
  msgstr ""
4134
4269
 
4270
+ msgid "Role of host"
4271
+ msgstr ""
4272
+
4135
4273
  msgid "Run Sync Plan:"
4136
4274
  msgstr ""
4137
4275
 
@@ -4236,6 +4374,9 @@ msgstr "सर्व्हिस स्तर %s"
4236
4374
  msgid "Service Level (SLA)"
4237
4375
  msgstr ""
4238
4376
 
4377
+ msgid "Service level of host"
4378
+ msgstr ""
4379
+
4239
4380
  msgid "Service level to be used for autoheal"
4240
4381
  msgstr ""
4241
4382
 
@@ -4339,6 +4480,15 @@ msgstr ""
4339
4480
  msgid "Simple Content Access"
4340
4481
  msgstr ""
4341
4482
 
4483
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4484
+ msgstr ""
4485
+
4486
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4487
+ msgstr ""
4488
+
4489
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4490
+ msgstr ""
4491
+
4342
4492
  msgid "Size of file to upload"
4343
4493
  msgstr ""
4344
4494
 
@@ -4373,6 +4523,9 @@ msgstr ""
4373
4523
  msgid "Specify the list of units in each repo"
4374
4524
  msgstr ""
4375
4525
 
4526
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4527
+ msgstr ""
4528
+
4376
4529
  msgid "Stacking ID"
4377
4530
  msgstr ""
4378
4531
 
@@ -4589,6 +4742,9 @@ msgstr ""
4589
4742
  msgid "Sync plan identifier to attach"
4590
4743
  msgstr ""
4591
4744
 
4745
+ msgid "Sync state"
4746
+ msgstr ""
4747
+
4592
4748
  msgid "Synced Content"
4593
4749
  msgstr ""
4594
4750
 
@@ -4654,6 +4810,9 @@ msgstr "'%s' वातावरणात चेंजसेट समावि
4654
4810
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4655
4811
  msgstr ""
4656
4812
 
4813
+ msgid "The TOC file specified in the metadata does not exist. %s "
4814
+ msgstr ""
4815
+
4657
4816
  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."
4658
4817
  msgstr ""
4659
4818
 
@@ -4695,15 +4854,26 @@ msgstr ""
4695
4854
  msgid "The erratum type must be an array. Invalid value provided"
4696
4855
  msgstr ""
4697
4856
 
4857
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4858
+ msgstr ""
4859
+
4698
4860
  msgid "The field to sort the data by. Defaults to the created date."
4699
4861
  msgstr ""
4700
4862
 
4701
4863
  msgid "The following hosts have errata that apply to them: "
4702
4864
  msgstr ""
4703
4865
 
4866
+ msgid ""
4867
+ "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"
4868
+ " %{repos}"
4869
+ msgstr ""
4870
+
4704
4871
  msgid "The id of the host to alter"
4705
4872
  msgstr ""
4706
4873
 
4874
+ msgid "The import path must be in a subdirectory under '%s'."
4875
+ msgstr ""
4876
+
4707
4877
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4708
4878
  msgstr ""
4709
4879
 
@@ -4753,6 +4923,9 @@ msgstr ""
4753
4923
  msgid "The requested resource does not belong to the specified organization"
4754
4924
  msgstr ""
4755
4925
 
4926
+ msgid "The requested traces were not found for this host"
4927
+ msgstr ""
4928
+
4756
4929
  msgid "The selected content source and lifecycle environment do not match"
4757
4930
  msgstr ""
4758
4931
 
@@ -4816,6 +4989,9 @@ msgstr ""
4816
4989
  msgid "There's no running synchronization for this smart proxy."
4817
4990
  msgstr ""
4818
4991
 
4992
+ msgid "This Content View must be set to Import-only before performing an import"
4993
+ msgstr ""
4994
+
4819
4995
  msgid "This Host is not currently registered with subscription-manager."
4820
4996
  msgstr ""
4821
4997
 
@@ -4825,6 +5001,9 @@ msgstr ""
4825
5001
  msgid "This action doesn't support package groups"
4826
5002
  msgstr ""
4827
5003
 
5004
+ msgid "This action will become available after the Pulp 3 content migration"
5005
+ msgstr ""
5006
+
4828
5007
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4829
5008
  msgstr ""
4830
5009
 
@@ -4955,10 +5134,16 @@ msgstr ""
4955
5134
  msgid "Unable to detect puppet path"
4956
5135
  msgstr ""
4957
5136
 
4958
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
5137
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4959
5138
  msgstr ""
4960
5139
 
4961
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5140
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5141
+ msgstr ""
5142
+
5143
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
5144
+ msgstr ""
5145
+
5146
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4962
5147
  msgstr ""
4963
5148
 
4964
5149
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -5175,6 +5360,12 @@ msgstr ""
5175
5360
  msgid "Updating Package..."
5176
5361
  msgstr "संकुल सुधारित करत आहे..."
5177
5362
 
5363
+ msgid "Updating System Purpose for host"
5364
+ msgstr ""
5365
+
5366
+ msgid "Updating System Purpose for host %s"
5367
+ msgstr ""
5368
+
5178
5369
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
5179
5370
  msgid "Updating package group..."
5180
5371
  msgstr "संकुल गट सुधारित करत आहे..."
@@ -5232,9 +5423,15 @@ msgstr ""
5232
5423
  msgid "Usage Type"
5233
5424
  msgstr ""
5234
5425
 
5426
+ msgid "Usage of host"
5427
+ msgstr ""
5428
+
5235
5429
  msgid "Use remote execution by default"
5236
5430
  msgstr ""
5237
5431
 
5432
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5433
+ msgstr ""
5434
+
5238
5435
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5239
5436
  msgstr ""
5240
5437
 
@@ -5259,6 +5456,15 @@ msgstr ""
5259
5456
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5260
5457
  msgstr ""
5261
5458
 
5459
+ msgid "Verify checksum"
5460
+ msgstr ""
5461
+
5462
+ msgid "Verify checksum for one or more products"
5463
+ msgstr ""
5464
+
5465
+ msgid "Verify checksum of repository contents"
5466
+ msgstr ""
5467
+
5262
5468
  msgid "Version"
5263
5469
  msgstr ""
5264
5470
 
@@ -5275,7 +5481,7 @@ msgstr ""
5275
5481
  msgid "Virtual"
5276
5482
  msgstr "वर्चुअल"
5277
5483
 
5278
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5484
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5279
5485
  msgstr ""
5280
5486
 
5281
5487
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5346,6 +5552,9 @@ msgstr "वापरकर्ता %s करीता पूर्वनिर
5346
5552
  msgid "You currently don't have any Content Views."
5347
5553
  msgstr ""
5348
5554
 
5555
+ msgid "You currently don't have any repositories to add to this content view."
5556
+ msgstr ""
5557
+
5349
5558
  msgid "You do not have permissions to delete %s"
5350
5559
  msgstr ""
5351
5560
 
@@ -5460,6 +5669,9 @@ msgstr "संस्था"
5460
5669
  msgid "an ostree branch"
5461
5670
  msgstr ""
5462
5671
 
5672
+ msgid "are only allowed for Yum repositories."
5673
+ msgstr ""
5674
+
5463
5675
  msgid "attempted to sync without a feed URL"
5464
5676
  msgstr ""
5465
5677
 
@@ -5479,6 +5691,9 @@ msgstr ""
5479
5691
  msgid "can't be blank"
5480
5692
  msgstr "रिकामे असणे अशक्य"
5481
5693
 
5694
+ msgid "cannot add filter to import-only view"
5695
+ msgstr ""
5696
+
5482
5697
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
5483
5698
  msgid "cannot be a binary file."
5484
5699
  msgstr "बाइनरि फाइल असणे अशक्य."
@@ -5543,13 +5758,13 @@ msgstr ""
5543
5758
  msgid "checking Pulp task status"
5544
5759
  msgstr ""
5545
5760
 
5546
- msgid "comma separated list of architectures to be synched from deb-archive"
5761
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5547
5762
  msgstr ""
5548
5763
 
5549
- msgid "comma separated list of releases to be synched from deb-archive"
5764
+ msgid "comma-separated list of releases to be synced from deb-archive"
5550
5765
  msgstr ""
5551
5766
 
5552
- msgid "comma separated list of repo components to be synched from deb-archive"
5767
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5553
5768
  msgstr ""
5554
5769
 
5555
5770
  msgid "composite content view identifier"
@@ -5781,9 +5996,6 @@ msgstr ""
5781
5996
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5782
5997
  msgstr ""
5783
5998
 
5784
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5785
- msgstr ""
5786
-
5787
5999
  msgid "if true, will ignore the globally configured proxy when syncing"
5788
6000
  msgstr ""
5789
6001
 
@@ -5821,6 +6033,9 @@ msgstr ""
5821
6033
  msgid "invalid container image name"
5822
6034
  msgstr ""
5823
6035
 
6036
+ msgid "invalid: Repositories can only require one OS version."
6037
+ msgstr ""
6038
+
5824
6039
  msgid "is already attached to the capsule"
5825
6040
  msgstr ""
5826
6041
 
@@ -5861,6 +6076,9 @@ msgstr ""
5861
6076
  msgid "maximum size of each ISO in MB"
5862
6077
  msgstr ""
5863
6078
 
6079
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
6080
+ msgstr ""
6081
+
5864
6082
  msgid "may not be less than the number of hosts associated with the host collection."
5865
6083
  msgstr ""
5866
6084
 
@@ -5883,6 +6101,9 @@ msgstr "पॉजिटिव्ह इंटिजर मूल्य पाह
5883
6101
  msgid "must be one of the following: %s"
5884
6102
  msgstr ""
5885
6103
 
6104
+ msgid "must be one of: %s"
6105
+ msgstr ""
6106
+
5886
6107
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
5887
6108
  msgid "must be unique within one organization"
5888
6109
  msgstr "एक संस्था अंतर्गत एकमेव असायला हवे"
@@ -6144,6 +6365,9 @@ msgstr ""
6144
6365
  msgid "the uuid of the puppet module to associate"
6145
6366
  msgstr ""
6146
6367
 
6368
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6369
+ msgstr ""
6370
+
6147
6371
  msgid "true if the latest version of the component's content view is desired"
6148
6372
  msgstr ""
6149
6373