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