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
@@ -20,6 +20,11 @@ msgstr ""
20
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
21
  "X-Generator: Zanata 3.6.2\n"
22
22
 
23
+ msgid ""
24
+ "\n"
25
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
26
+ msgstr ""
27
+
23
28
  msgid " %{errata_count} Errata"
24
29
  msgstr ""
25
30
 
@@ -404,6 +409,9 @@ msgstr ""
404
409
  msgid "Action with sub plans"
405
410
  msgstr ""
406
411
 
412
+ msgid "Activation Key(s)"
413
+ msgstr ""
414
+
407
415
  # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author mgiri
408
416
  msgid "Activation Keys"
409
417
  msgstr "ସକ୍ରିୟଣ କିଗୁଡ଼ିକ"
@@ -411,6 +419,9 @@ msgstr "ସକ୍ରିୟଣ କିଗୁଡ଼ିକ"
411
419
  msgid "Activation key ID"
412
420
  msgstr ""
413
421
 
422
+ 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."
423
+ msgstr ""
424
+
414
425
  #, fuzzy
415
426
  msgid "Activation keys and subscriptions can be managed"
416
427
  msgstr "ସକ୍ରିୟଣ କି %s କୁ ପ୍ରସ୍ତୁତ କରାଯାଇଛି।"
@@ -465,6 +476,9 @@ msgstr ""
465
476
  msgid "Adding content units"
466
477
  msgstr ""
467
478
 
479
+ 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}"
480
+ msgstr ""
481
+
468
482
  msgid "Addons"
469
483
  msgstr ""
470
484
 
@@ -569,6 +583,9 @@ msgstr ""
569
583
  msgid "Artifacts"
570
584
  msgstr ""
571
585
 
586
+ msgid "Assign system purpose attributes on one or more hosts"
587
+ msgstr ""
588
+
572
589
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
573
590
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
574
591
  msgstr[0] ""
@@ -617,9 +634,6 @@ msgstr ""
617
634
  msgid "Author"
618
635
  msgstr ""
619
636
 
620
- msgid "Auto Enablement may only be set on custom repositories."
621
- msgstr ""
622
-
623
637
  msgid "Auto Publish - Triggered by '%s'"
624
638
  msgstr ""
625
639
 
@@ -842,6 +856,9 @@ msgstr ""
842
856
  msgid "Cannot delete view while it exists in environments"
843
857
  msgstr "ଅନ୍ୟ ଏକ ପରିବେଶର ନମୁନାକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ"
844
858
 
859
+ msgid "Cannot import a composite content view"
860
+ msgstr ""
861
+
845
862
  msgid "Cannot import a custom subscription from a redhat product."
846
863
  msgstr ""
847
864
 
@@ -897,12 +914,18 @@ msgstr ""
897
914
  msgid "Cannot upload Container Image content."
898
915
  msgstr ""
899
916
 
917
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
918
+ msgstr ""
919
+
900
920
  msgid "Cannot validate contents on non-yum/deb repositories."
901
921
  msgstr ""
902
922
 
903
923
  msgid "Check if a connection can be made to Red Hat Subscription Management."
904
924
  msgstr ""
905
925
 
926
+ msgid "Check if the specified organization is eligible for Simple Content Access"
927
+ msgstr ""
928
+
906
929
  msgid "Check services before actions"
907
930
  msgstr ""
908
931
 
@@ -938,7 +961,7 @@ msgstr ""
938
961
  msgid "Combined Profile Update for %s"
939
962
  msgstr ""
940
963
 
941
- msgid "Comma separated list of tags to sync for Container Image repository"
964
+ msgid "Comma-separated list of tags to sync for Container Image repository"
942
965
  msgstr ""
943
966
 
944
967
  # translation auto-copied from project CFSE, version sam-1.2, document app
@@ -994,10 +1017,16 @@ msgstr ""
994
1017
  msgid "Content Download URL"
995
1018
  msgstr ""
996
1019
 
1020
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
1021
+ msgstr ""
1022
+
997
1023
  #, fuzzy
998
1024
  msgid "Content Hosts"
999
1025
  msgstr "ବିଷୟବସ୍ତୁ"
1000
1026
 
1027
+ msgid "Content Migration"
1028
+ msgstr ""
1029
+
1001
1030
  msgid "Content Source"
1002
1031
  msgstr ""
1003
1032
 
@@ -1049,9 +1078,15 @@ msgstr ""
1049
1078
  msgid "Content View Version not set"
1050
1079
  msgstr ""
1051
1080
 
1081
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1082
+ msgstr ""
1083
+
1052
1084
  msgid "Content View and Environment not set for registration."
1053
1085
  msgstr ""
1054
1086
 
1087
+ msgid "Content View id"
1088
+ msgstr ""
1089
+
1055
1090
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1056
1091
  msgid "Content Views"
1057
1092
  msgstr "ସୂଚୀପତ୍ର ଦୃଶ୍ଯ"
@@ -1090,6 +1125,9 @@ msgstr ""
1090
1125
  msgid "Content view numeric identifier"
1091
1126
  msgstr ""
1092
1127
 
1128
+ msgid "Content view version export history identifier"
1129
+ msgstr ""
1130
+
1093
1131
  msgid "Content view version identifier"
1094
1132
  msgstr ""
1095
1133
 
@@ -1112,13 +1150,13 @@ msgstr ""
1112
1150
  msgid "Copy an activation key"
1113
1151
  msgstr "ସକ୍ରିୟଣ କିଗୁଡ଼ିକ"
1114
1152
 
1153
+ msgid "Copy version units to library"
1154
+ msgstr ""
1155
+
1115
1156
  #, fuzzy
1116
1157
  msgid "Cores: %s"
1117
1158
  msgstr "କାରଣ: %s"
1118
1159
 
1119
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1120
- msgstr ""
1121
-
1122
1160
  # translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
1123
1161
  msgid "Could not delete organization '%s'."
1124
1162
  msgstr "ଅନୁଷ୍ଠାନ '%s' କୁ ଅପସାରଣ କରିପାରିଲା ନାହିଁ।"
@@ -1129,6 +1167,12 @@ msgstr ""
1129
1167
  msgid "Could not find %{count} errata. Only found: %{found}"
1130
1168
  msgstr ""
1131
1169
 
1170
+ msgid "Could not find %{name} resource with id %{id}"
1171
+ msgstr ""
1172
+
1173
+ msgid "Could not find %{name} resources with ids %{ids}"
1174
+ msgstr ""
1175
+
1132
1176
  msgid "Could not find Environment with ids: %s"
1133
1177
  msgstr ""
1134
1178
 
@@ -1162,9 +1206,6 @@ msgstr ""
1162
1206
  msgid "Couldn't find %{type} Filter with id %{id}"
1163
1207
  msgstr ""
1164
1208
 
1165
- msgid "Couldn't find Content Credential '%s'"
1166
- msgstr ""
1167
-
1168
1209
  #, fuzzy
1169
1210
  msgid "Couldn't find ContentViewFilter with id=%s"
1170
1211
  msgstr "id '%s' ବିଶିଷ୍ଟ ଉତ୍ପାଦନକୁ ପାଇଲା ନାହିଁ"
@@ -1222,13 +1263,6 @@ msgstr "ପରିବେଶ '%s' କୁ ପାଇଲା ନାହିଁ"
1222
1263
  msgid "Couldn't find errata ids '%s'"
1223
1264
  msgstr "ଅନୁଷ୍ଠାନ '%s' କୁ ପାଇଲା ନାହିଁ"
1224
1265
 
1225
- #, fuzzy
1226
- msgid "Couldn't find gpg key '%s'"
1227
- msgstr "GPG କି '%s' କୁ ପାଇଲା ନାହିଁ"
1228
-
1229
- msgid "Couldn't find host '%s'"
1230
- msgstr ""
1231
-
1232
1266
  msgid "Couldn't find host collection '%s'"
1233
1267
  msgstr ""
1234
1268
 
@@ -1243,10 +1277,6 @@ msgstr "ଅନୁଷ୍ଠାନ '%s' କୁ ପାଇଲା ନାହିଁ"
1243
1277
  msgid "Couldn't find prior-environment '%s'"
1244
1278
  msgstr "ପରିବେଶ '%s' କୁ ପାଇଲା ନାହିଁ"
1245
1279
 
1246
- #, fuzzy
1247
- msgid "Couldn't find product '%s'"
1248
- msgstr "ପ୍ରଦାତା '%s' କୁ ପାଇଲା ନାହିଁ"
1249
-
1250
1280
  # translation auto-copied from project CFSE, version sam-1.2, document app
1251
1281
  msgid "Couldn't find product with id '%s'"
1252
1282
  msgstr "id '%s' ବିଶିଷ୍ଟ ଉତ୍ପାଦନକୁ ପାଇଲା ନାହିଁ"
@@ -1255,30 +1285,13 @@ msgstr "id '%s' ବିଶିଷ୍ଟ ଉତ୍ପାଦନକୁ ପାଇଲ
1255
1285
  msgid "Couldn't find repository '%s'"
1256
1286
  msgstr "ରେପୋଜିଟୋରୀ '%s' କୁ ପାଇଲା ନାହିଁ"
1257
1287
 
1258
- #, fuzzy
1259
- msgid "Couldn't find repository set with id '%s'."
1260
- msgstr "ରେପୋଜିଟୋରୀ '%s' କୁ ପାଇଲା ନାହିଁ"
1261
-
1262
1288
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1263
1289
  msgstr ""
1264
1290
 
1265
- msgid "Couldn't find ssl ca cert '%s'"
1266
- msgstr ""
1267
-
1268
- msgid "Couldn't find ssl client cert '%s'"
1269
- msgstr ""
1270
-
1271
- msgid "Couldn't find ssl client key '%s'"
1272
- msgstr ""
1273
-
1274
1291
  # translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
1275
1292
  msgid "Couldn't find subject of synchronization"
1276
1293
  msgstr "ସନ୍ତୁଳନର ବିଷୟ ମିଳିଲା ନାହିଁ"
1277
1294
 
1278
- # translation auto-copied from project CFSE, version sam-1.2, document app
1279
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1280
- msgstr "ସନ୍ତୁଳନ ଯୋଜନା '%{plan}' କୁ ଅନୁଷ୍ଠାନ '%{org}' ରେ ପାଇଲା ନାହିଁ"
1281
-
1282
1295
  msgid "Count"
1283
1296
  msgstr ""
1284
1297
 
@@ -1349,6 +1362,9 @@ msgstr ""
1349
1362
  msgid "Current organization not set."
1350
1363
  msgstr ""
1351
1364
 
1365
+ msgid "Custom"
1366
+ msgstr ""
1367
+
1352
1368
  # translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
1353
1369
  msgid "Custom Content Repositories"
1354
1370
  msgstr "ଇଚ୍ଛାମୁତାବକ ବିଷୟବସ୍ତୁ ରେପୋଜିଟୋରୀଗୁଡ଼ିକ"
@@ -1562,9 +1578,15 @@ msgstr ""
1562
1578
  msgid "Description of the repository"
1563
1579
  msgstr ""
1564
1580
 
1581
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1582
+ msgstr ""
1583
+
1565
1584
  msgid "Desired quantity of the pool"
1566
1585
  msgstr ""
1567
1586
 
1587
+ msgid "Destination Server name"
1588
+ msgstr ""
1589
+
1568
1590
  msgid "Destroy"
1569
1591
  msgstr ""
1570
1592
 
@@ -1616,6 +1638,9 @@ msgstr ""
1616
1638
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1617
1639
  msgstr ""
1618
1640
 
1641
+ msgid "Directory containing the exported Content View Version"
1642
+ msgstr ""
1643
+
1619
1644
  msgid "Disable"
1620
1645
  msgstr ""
1621
1646
 
@@ -1631,6 +1656,9 @@ msgstr ""
1631
1656
  msgid "Disable simple content access for a manifest"
1632
1657
  msgstr ""
1633
1658
 
1659
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1660
+ msgstr ""
1661
+
1634
1662
  msgid "Disconnected mode"
1635
1663
  msgstr ""
1636
1664
 
@@ -1715,6 +1743,9 @@ msgstr ""
1715
1743
  msgid "Enabled Repositories"
1716
1744
  msgstr ""
1717
1745
 
1746
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1747
+ msgstr ""
1748
+
1718
1749
  msgid "End Date"
1719
1750
  msgstr ""
1720
1751
 
@@ -1838,7 +1869,10 @@ msgstr ""
1838
1869
  msgid "Export CSV"
1839
1870
  msgstr ""
1840
1871
 
1841
- msgid "Export a content view version"
1872
+ msgid "Export Library"
1873
+ msgstr ""
1874
+
1875
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1842
1876
  msgstr ""
1843
1877
 
1844
1878
  msgid "Export a repository"
@@ -1847,9 +1881,15 @@ msgstr ""
1847
1881
  msgid "Export as CSV"
1848
1882
  msgstr ""
1849
1883
 
1884
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1885
+ msgstr ""
1886
+
1850
1887
  msgid "Export to ISO format"
1851
1888
  msgstr ""
1852
1889
 
1890
+ msgid "Export to ISO format."
1891
+ msgstr ""
1892
+
1853
1893
  msgid "Exported version"
1854
1894
  msgstr ""
1855
1895
 
@@ -1993,10 +2033,6 @@ msgstr ""
1993
2033
  msgid "GPG Key URL"
1994
2034
  msgstr ""
1995
2035
 
1996
- # translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
1997
- msgid "GPG Keys"
1998
- msgstr "GPG କି"
1999
-
2000
2036
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
2001
2037
  msgid "Generate and Download"
2002
2038
  msgstr "ନିର୍ମାଣ କରନ୍ତୁ ଏବଂ ଆହରଣ କରନ୍ତୁ"
@@ -2104,6 +2140,9 @@ msgstr ""
2104
2140
  msgid "Host content and subscription details"
2105
2141
  msgstr ""
2106
2142
 
2143
+ 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."
2144
+ msgstr ""
2145
+
2107
2146
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2108
2147
  msgstr ""
2109
2148
 
@@ -2128,6 +2167,9 @@ msgstr ""
2128
2167
  msgid "Host id to list applicable packages for"
2129
2168
  msgstr ""
2130
2169
 
2170
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2171
+ msgstr ""
2172
+
2131
2173
  msgid "Host with ID %s already exists in the host collection."
2132
2174
  msgstr ""
2133
2175
 
@@ -2282,6 +2324,9 @@ msgstr ""
2282
2324
  msgid "Identifiers for Lifecycle Environment"
2283
2325
  msgstr ""
2284
2326
 
2327
+ 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"
2328
+ msgstr ""
2329
+
2285
2330
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2286
2331
  msgstr ""
2287
2332
 
@@ -2324,6 +2369,15 @@ msgstr ""
2324
2369
  msgid "Immediate"
2325
2370
  msgstr ""
2326
2371
 
2372
+ msgid "Import"
2373
+ msgstr ""
2374
+
2375
+ msgid "Import Content View Version"
2376
+ msgstr ""
2377
+
2378
+ msgid "Import Default Content View"
2379
+ msgstr ""
2380
+
2327
2381
  #, fuzzy
2328
2382
  msgid "Import Manifest"
2329
2383
  msgstr "ଆମଦାନୀ କରନ୍ତୁ"
@@ -2346,6 +2400,12 @@ msgstr ""
2346
2400
  msgid "Import a Manifest using the manifest tab above."
2347
2401
  msgstr ""
2348
2402
 
2403
+ msgid "Import a content view version"
2404
+ msgstr ""
2405
+
2406
+ msgid "Import a content view version to the library"
2407
+ msgstr ""
2408
+
2349
2409
  #, fuzzy
2350
2410
  msgid "Import facts"
2351
2411
  msgstr "ଆମଦାନୀ କରନ୍ତୁ"
@@ -2353,6 +2413,15 @@ msgstr "ଆମଦାନୀ କରନ୍ତୁ"
2353
2413
  msgid "Import uploads into a repository"
2354
2414
  msgstr ""
2355
2415
 
2416
+ msgid "Import-only can not be changed after creation"
2417
+ msgstr ""
2418
+
2419
+ msgid "Import-only content views can not be published directly"
2420
+ msgstr ""
2421
+
2422
+ msgid "Import-only content views will be available in a future version."
2423
+ msgstr ""
2424
+
2356
2425
  msgid "Importing manifest into '%{subject}' failed."
2357
2426
  msgstr ""
2358
2427
 
@@ -2537,6 +2606,9 @@ msgstr ""
2537
2606
  msgid "Invalid params provided - date_type must be one of %s"
2538
2607
  msgstr ""
2539
2608
 
2609
+ msgid "Invalid path specified."
2610
+ msgstr ""
2611
+
2540
2612
  msgid ""
2541
2613
  "Invalid puppet module parameters specified. \\\n"
2542
2614
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2545,6 +2617,12 @@ msgstr ""
2545
2617
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2546
2618
  msgstr ""
2547
2619
 
2620
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2621
+ msgstr ""
2622
+
2623
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2624
+ msgstr ""
2625
+
2548
2626
  msgid "Invalid value specified for Container Image repositories."
2549
2627
  msgstr ""
2550
2628
 
@@ -2554,6 +2632,9 @@ msgstr ""
2554
2632
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2555
2633
  msgstr ""
2556
2634
 
2635
+ msgid "Katello"
2636
+ msgstr ""
2637
+
2557
2638
  msgid "Katello ID of local pool to update"
2558
2639
  msgstr ""
2559
2640
 
@@ -2614,9 +2695,6 @@ msgstr ""
2614
2695
  msgid "Learn more about adding Subscription Manifests"
2615
2696
  msgstr ""
2616
2697
 
2617
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2618
- msgstr ""
2619
-
2620
2698
  #, fuzzy
2621
2699
  msgid "Library lifecycle environments may not be deleted."
2622
2700
  msgstr "ପରିବେଶ '%s' କୁ ଅପସରଣ କରାଯାଇଛି।"
@@ -2718,6 +2796,9 @@ msgstr ""
2718
2796
  msgid "List errata available for the content host"
2719
2797
  msgstr ""
2720
2798
 
2799
+ msgid "List export histories"
2800
+ msgstr ""
2801
+
2721
2802
  msgid "List filter rules"
2722
2803
  msgstr ""
2723
2804
 
@@ -2871,6 +2952,9 @@ msgstr ""
2871
2952
  msgid "List srpms"
2872
2953
  msgstr ""
2873
2954
 
2955
+ msgid "List subscriptions"
2956
+ msgstr ""
2957
+
2874
2958
  msgid "List sync plans"
2875
2959
  msgstr ""
2876
2960
 
@@ -2959,6 +3043,9 @@ msgstr "ସନ୍ଦେଶ"
2959
3043
  msgid "Messaging connection"
2960
3044
  msgstr ""
2961
3045
 
3046
+ msgid "Metadata taken from the upstream export history for this Content View Version"
3047
+ msgstr ""
3048
+
2962
3049
  msgid "Mismatched"
2963
3050
  msgstr ""
2964
3051
 
@@ -3098,6 +3185,9 @@ msgstr ""
3098
3185
  msgid "No errors"
3099
3186
  msgstr "କୌଣସି ତ୍ରୁଟି ନାହିଁ"
3100
3187
 
3188
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3189
+ msgstr ""
3190
+
3101
3191
  msgid "No file uploaded"
3102
3192
  msgstr ""
3103
3193
 
@@ -3110,12 +3200,18 @@ msgstr ""
3110
3200
  msgid "No hosts registered with subscription-manager found in selection."
3111
3201
  msgstr ""
3112
3202
 
3203
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3204
+ msgstr ""
3205
+
3113
3206
  msgid "No manifest file uploaded"
3114
3207
  msgstr ""
3115
3208
 
3116
3209
  msgid "No matching content views found"
3117
3210
  msgstr ""
3118
3211
 
3212
+ msgid "No matching repositories found"
3213
+ msgstr ""
3214
+
3119
3215
  # translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
3120
3216
  msgid "No new packages installed"
3121
3217
  msgstr "କୌଣସି ନୂତନ ପ୍ୟାକେଜ ସ୍ଥାପିତ ହୋଇନାହିଁ"
@@ -3257,6 +3353,9 @@ msgstr ""
3257
3353
  msgid "On-disk location for exported repositories"
3258
3354
  msgstr ""
3259
3355
 
3356
+ msgid "On-disk location for pulp 3 exported repositories"
3357
+ msgstr ""
3358
+
3260
3359
  #, fuzzy
3261
3360
  msgid "One of parameters [ %s ] required but not specified."
3262
3361
  msgstr "ଅନୁଷ୍ଠାନ id ଆବଶ୍ୟକ କିନ୍ତୁ ଉଲ୍ଲେଖ ହୋଇନାହିଁ।"
@@ -3290,6 +3389,9 @@ msgstr ""
3290
3389
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3291
3390
  msgstr ""
3292
3391
 
3392
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3393
+ msgstr ""
3394
+
3293
3395
  # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author mgiri
3294
3396
  msgid "Organization"
3295
3397
  msgstr "ଅନୁଷ୍ଠାନ"
@@ -3569,6 +3671,18 @@ msgstr ""
3569
3671
  msgid "Perform an Incremental Update on one or more Content View Versions"
3570
3672
  msgstr ""
3571
3673
 
3674
+ msgid "Performs a full-export of a content view version."
3675
+ msgstr ""
3676
+
3677
+ msgid "Performs a full-export of the repositories in library."
3678
+ msgstr ""
3679
+
3680
+ msgid "Performs an incremental-export of a content view version."
3681
+ msgstr ""
3682
+
3683
+ msgid "Performs an incremental-export of the repositories in library."
3684
+ msgstr ""
3685
+
3572
3686
  # translation auto-copied from project CFSE, version sam-1.2, document app
3573
3687
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3574
3688
  msgstr "ଅନୁମତି ନାହିଁ। ବ୍ୟବହାରକାରୀ '%{user}' ପାଖରେ ଅନୁଷ୍ଠାନ '%{org}' ରେ ପ୍ରବେଶାନୁମତି ନାହିଁ।"
@@ -3580,6 +3694,9 @@ msgstr "ଭୌତିକ"
3580
3694
  msgid "Plan numeric identifier"
3581
3695
  msgstr ""
3582
3696
 
3697
+ msgid "Please add some repositories."
3698
+ msgstr ""
3699
+
3583
3700
  msgid "Please enter a positive number above zero"
3584
3701
  msgstr ""
3585
3702
 
@@ -3607,6 +3724,9 @@ msgstr ""
3607
3724
  msgid "Please select one from the list below and you will be redirected."
3608
3725
  msgstr ""
3609
3726
 
3727
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3728
+ msgstr ""
3729
+
3610
3730
  msgid "Processing metadata"
3611
3731
  msgstr ""
3612
3732
 
@@ -3714,6 +3834,9 @@ msgstr ""
3714
3834
  msgid "Pulp"
3715
3835
  msgstr ""
3716
3836
 
3837
+ msgid "Pulp 3 export destination filepath"
3838
+ msgstr ""
3839
+
3717
3840
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3718
3841
  msgstr ""
3719
3842
 
@@ -3768,6 +3891,12 @@ msgstr ""
3768
3891
  msgid "Pulp task error"
3769
3892
  msgstr ""
3770
3893
 
3894
+ msgid "Pulp user or group unable to read '%s'."
3895
+ msgstr ""
3896
+
3897
+ msgid "Pulp user or group unable to read content in '%s'."
3898
+ msgstr ""
3899
+
3771
3900
  msgid "Pulpcore"
3772
3901
  msgstr ""
3773
3902
 
@@ -3844,6 +3973,9 @@ msgstr ""
3844
3973
  msgid "Recommended Repositories"
3845
3974
  msgstr ""
3846
3975
 
3976
+ msgid "Red Hat"
3977
+ msgstr ""
3978
+
3847
3979
  #, fuzzy
3848
3980
  msgid "Red Hat CDN URL"
3849
3981
  msgstr "ଉତ୍ପାଦନଗୁଡ଼ିକ"
@@ -4079,6 +4211,9 @@ msgstr ""
4079
4211
  msgid "Resolve Traces"
4080
4212
  msgstr ""
4081
4213
 
4214
+ msgid "Resolve traces for one or more hosts"
4215
+ msgstr ""
4216
+
4082
4217
  msgid "Resource"
4083
4218
  msgstr ""
4084
4219
 
@@ -4158,6 +4293,9 @@ msgstr ""
4158
4293
  msgid "Role"
4159
4294
  msgstr ""
4160
4295
 
4296
+ msgid "Role of host"
4297
+ msgstr ""
4298
+
4161
4299
  msgid "Run Sync Plan:"
4162
4300
  msgstr ""
4163
4301
 
@@ -4262,6 +4400,9 @@ msgstr "ସର୍ଭିସ ସ୍ତର %s"
4262
4400
  msgid "Service Level (SLA)"
4263
4401
  msgstr ""
4264
4402
 
4403
+ msgid "Service level of host"
4404
+ msgstr ""
4405
+
4265
4406
  msgid "Service level to be used for autoheal"
4266
4407
  msgstr ""
4267
4408
 
@@ -4365,6 +4506,15 @@ msgstr ""
4365
4506
  msgid "Simple Content Access"
4366
4507
  msgstr ""
4367
4508
 
4509
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4510
+ msgstr ""
4511
+
4512
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4513
+ msgstr ""
4514
+
4515
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4516
+ msgstr ""
4517
+
4368
4518
  msgid "Size of file to upload"
4369
4519
  msgstr ""
4370
4520
 
@@ -4399,6 +4549,9 @@ msgstr ""
4399
4549
  msgid "Specify the list of units in each repo"
4400
4550
  msgstr ""
4401
4551
 
4552
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4553
+ msgstr ""
4554
+
4402
4555
  msgid "Stacking ID"
4403
4556
  msgstr ""
4404
4557
 
@@ -4615,6 +4768,9 @@ msgstr ""
4615
4768
  msgid "Sync plan identifier to attach"
4616
4769
  msgstr ""
4617
4770
 
4771
+ msgid "Sync state"
4772
+ msgstr ""
4773
+
4618
4774
  msgid "Synced Content"
4619
4775
  msgstr ""
4620
4776
 
@@ -4680,6 +4836,9 @@ msgstr "'%s' ପରିବେଶ କୌଣସି ପରିବର୍ତ୍ତନ
4680
4836
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4681
4837
  msgstr ""
4682
4838
 
4839
+ msgid "The TOC file specified in the metadata does not exist. %s "
4840
+ msgstr ""
4841
+
4683
4842
  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."
4684
4843
  msgstr ""
4685
4844
 
@@ -4721,15 +4880,26 @@ msgstr ""
4721
4880
  msgid "The erratum type must be an array. Invalid value provided"
4722
4881
  msgstr ""
4723
4882
 
4883
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4884
+ msgstr ""
4885
+
4724
4886
  msgid "The field to sort the data by. Defaults to the created date."
4725
4887
  msgstr ""
4726
4888
 
4727
4889
  msgid "The following hosts have errata that apply to them: "
4728
4890
  msgstr ""
4729
4891
 
4892
+ msgid ""
4893
+ "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"
4894
+ " %{repos}"
4895
+ msgstr ""
4896
+
4730
4897
  msgid "The id of the host to alter"
4731
4898
  msgstr ""
4732
4899
 
4900
+ msgid "The import path must be in a subdirectory under '%s'."
4901
+ msgstr ""
4902
+
4733
4903
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4734
4904
  msgstr ""
4735
4905
 
@@ -4779,6 +4949,9 @@ msgstr ""
4779
4949
  msgid "The requested resource does not belong to the specified organization"
4780
4950
  msgstr ""
4781
4951
 
4952
+ msgid "The requested traces were not found for this host"
4953
+ msgstr ""
4954
+
4782
4955
  msgid "The selected content source and lifecycle environment do not match"
4783
4956
  msgstr ""
4784
4957
 
@@ -4842,6 +5015,9 @@ msgstr ""
4842
5015
  msgid "There's no running synchronization for this smart proxy."
4843
5016
  msgstr ""
4844
5017
 
5018
+ msgid "This Content View must be set to Import-only before performing an import"
5019
+ msgstr ""
5020
+
4845
5021
  msgid "This Host is not currently registered with subscription-manager."
4846
5022
  msgstr ""
4847
5023
 
@@ -4851,6 +5027,9 @@ msgstr ""
4851
5027
  msgid "This action doesn't support package groups"
4852
5028
  msgstr ""
4853
5029
 
5030
+ msgid "This action will become available after the Pulp 3 content migration"
5031
+ msgstr ""
5032
+
4854
5033
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4855
5034
  msgstr ""
4856
5035
 
@@ -4981,10 +5160,16 @@ msgstr ""
4981
5160
  msgid "Unable to detect puppet path"
4982
5161
  msgstr ""
4983
5162
 
4984
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
5163
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4985
5164
  msgstr ""
4986
5165
 
4987
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5166
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5167
+ msgstr ""
5168
+
5169
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
5170
+ msgstr ""
5171
+
5172
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4988
5173
  msgstr ""
4989
5174
 
4990
5175
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -5201,6 +5386,12 @@ msgstr ""
5201
5386
  msgid "Updating Package..."
5202
5387
  msgstr "ପ୍ୟାକେଜକୁ ଅଦ୍ୟତନ କରୁଅଛି..."
5203
5388
 
5389
+ msgid "Updating System Purpose for host"
5390
+ msgstr ""
5391
+
5392
+ msgid "Updating System Purpose for host %s"
5393
+ msgstr ""
5394
+
5204
5395
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author mgiri
5205
5396
  msgid "Updating package group..."
5206
5397
  msgstr "ପ୍ୟାକେଜ ଶ୍ରେଣୀକୁ ଅଦ୍ୟତନ କରୁଅଛି..."
@@ -5258,9 +5449,15 @@ msgstr ""
5258
5449
  msgid "Usage Type"
5259
5450
  msgstr ""
5260
5451
 
5452
+ msgid "Usage of host"
5453
+ msgstr ""
5454
+
5261
5455
  msgid "Use remote execution by default"
5262
5456
  msgstr ""
5263
5457
 
5458
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5459
+ msgstr ""
5460
+
5264
5461
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5265
5462
  msgstr ""
5266
5463
 
@@ -5285,6 +5482,15 @@ msgstr ""
5285
5482
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5286
5483
  msgstr ""
5287
5484
 
5485
+ msgid "Verify checksum"
5486
+ msgstr ""
5487
+
5488
+ msgid "Verify checksum for one or more products"
5489
+ msgstr ""
5490
+
5491
+ msgid "Verify checksum of repository contents"
5492
+ msgstr ""
5493
+
5288
5494
  msgid "Version"
5289
5495
  msgstr ""
5290
5496
 
@@ -5302,7 +5508,7 @@ msgstr ""
5302
5508
  msgid "Virtual"
5303
5509
  msgstr "ଆଭାସୀ"
5304
5510
 
5305
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5511
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5306
5512
  msgstr ""
5307
5513
 
5308
5514
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5373,6 +5579,9 @@ msgstr "ଚାଳକ %s ରେ ଆପଣ ପୂର୍ବନିର୍ଦ୍ଧା
5373
5579
  msgid "You currently don't have any Content Views."
5374
5580
  msgstr ""
5375
5581
 
5582
+ msgid "You currently don't have any repositories to add to this content view."
5583
+ msgstr ""
5584
+
5376
5585
  msgid "You do not have permissions to delete %s"
5377
5586
  msgstr ""
5378
5587
 
@@ -5489,6 +5698,9 @@ msgstr "ଅନୁଷ୍ଠାନ"
5489
5698
  msgid "an ostree branch"
5490
5699
  msgstr ""
5491
5700
 
5701
+ msgid "are only allowed for Yum repositories."
5702
+ msgstr ""
5703
+
5492
5704
  msgid "attempted to sync without a feed URL"
5493
5705
  msgstr ""
5494
5706
 
@@ -5508,6 +5720,9 @@ msgstr ""
5508
5720
  msgid "can't be blank"
5509
5721
  msgstr "ଖାଲି ରଖିପାରିବେ ନାହିଁ"
5510
5722
 
5723
+ msgid "cannot add filter to import-only view"
5724
+ msgstr ""
5725
+
5511
5726
  # translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
5512
5727
  msgid "cannot be a binary file."
5513
5728
  msgstr "ଏକ ବାଇନାରୀ ଫାଇଲ ହୋଇପାରିବ ନାହିଁ।"
@@ -5572,13 +5787,13 @@ msgstr ""
5572
5787
  msgid "checking Pulp task status"
5573
5788
  msgstr ""
5574
5789
 
5575
- msgid "comma separated list of architectures to be synched from deb-archive"
5790
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5576
5791
  msgstr ""
5577
5792
 
5578
- msgid "comma separated list of releases to be synched from deb-archive"
5793
+ msgid "comma-separated list of releases to be synced from deb-archive"
5579
5794
  msgstr ""
5580
5795
 
5581
- msgid "comma separated list of repo components to be synched from deb-archive"
5796
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5582
5797
  msgstr ""
5583
5798
 
5584
5799
  msgid "composite content view identifier"
@@ -5810,9 +6025,6 @@ msgstr ""
5810
6025
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5811
6026
  msgstr ""
5812
6027
 
5813
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5814
- msgstr ""
5815
-
5816
6028
  msgid "if true, will ignore the globally configured proxy when syncing"
5817
6029
  msgstr ""
5818
6030
 
@@ -5852,6 +6064,9 @@ msgstr ""
5852
6064
  msgid "invalid container image name"
5853
6065
  msgstr ""
5854
6066
 
6067
+ msgid "invalid: Repositories can only require one OS version."
6068
+ msgstr ""
6069
+
5855
6070
  msgid "is already attached to the capsule"
5856
6071
  msgstr ""
5857
6072
 
@@ -5892,6 +6107,9 @@ msgstr ""
5892
6107
  msgid "maximum size of each ISO in MB"
5893
6108
  msgstr ""
5894
6109
 
6110
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
6111
+ msgstr ""
6112
+
5895
6113
  msgid "may not be less than the number of hosts associated with the host collection."
5896
6114
  msgstr ""
5897
6115
 
@@ -5914,6 +6132,9 @@ msgstr "ନିଶ୍ଚିତ ଭାବରେ ଏକ ଯୁକ୍ତାତ୍ମ
5914
6132
  msgid "must be one of the following: %s"
5915
6133
  msgstr ""
5916
6134
 
6135
+ msgid "must be one of: %s"
6136
+ msgstr ""
6137
+
5917
6138
  # translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
5918
6139
  msgid "must be unique within one organization"
5919
6140
  msgstr "ଗୋଟିଏ ଅନୁଷ୍ଠାନ ମଧ୍ଯରେ ଏହା ଅନନ୍ୟ ହୋଇଥିବା ଉଚିତ"
@@ -6178,6 +6399,9 @@ msgstr ""
6178
6399
  msgid "the uuid of the puppet module to associate"
6179
6400
  msgstr ""
6180
6401
 
6402
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6403
+ msgstr ""
6404
+
6181
6405
  msgid "true if the latest version of the component's content view is desired"
6182
6406
  msgstr ""
6183
6407