katello 3.17.3 → 3.18.0.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (193) 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/api_controller.rb +2 -1
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  8. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
  10. data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
  11. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  12. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  13. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  14. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
  15. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  16. data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
  17. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  18. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  19. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  20. data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
  21. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  22. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  23. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  24. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  25. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  26. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  27. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
  28. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
  29. data/app/lib/actions/katello/content_view/publish.rb +3 -4
  30. data/app/lib/actions/katello/content_view_version/import.rb +4 -3
  31. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  32. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  33. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  34. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  35. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  36. data/app/lib/actions/katello/product/content_create.rb +7 -6
  37. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  38. data/app/lib/actions/katello/repository/import_upload.rb +2 -1
  39. data/app/lib/actions/katello/repository/update.rb +4 -1
  40. data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
  41. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  42. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  43. data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
  44. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  45. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
  46. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  47. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  48. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  49. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  50. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  51. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  52. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  53. data/app/lib/katello/resources/registry.rb +3 -3
  54. data/app/models/katello/authorization/activation_key.rb +4 -0
  55. data/app/models/katello/authorization/content_view.rb +13 -0
  56. data/app/models/katello/authorization/content_view_component.rb +15 -0
  57. data/app/models/katello/authorization/gpg_key.rb +12 -4
  58. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  59. data/app/models/katello/authorization/sync_plan.rb +16 -0
  60. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  61. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  62. data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
  63. data/app/models/katello/content_view_component.rb +2 -0
  64. data/app/models/katello/content_view_version_export_history.rb +2 -0
  65. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  66. data/app/models/katello/glue/pulp/repo.rb +8 -0
  67. data/app/models/katello/gpg_key.rb +1 -1
  68. data/app/models/katello/root_repository.rb +26 -1
  69. data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
  70. data/app/services/katello/candlepin/event_handler.rb +2 -0
  71. data/app/services/katello/candlepin/message_handler.rb +34 -0
  72. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  73. data/app/services/katello/host_status_manager.rb +9 -0
  74. data/app/services/katello/pulp3/api/apt.rb +57 -0
  75. data/app/services/katello/pulp3/api/core.rb +8 -0
  76. data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
  77. data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
  78. data/app/services/katello/pulp3/deb.rb +38 -0
  79. data/app/services/katello/pulp3/erratum.rb +1 -2
  80. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  81. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  82. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  83. data/app/services/katello/pulp3/repository/docker.rb +4 -0
  84. data/app/services/katello/pulp3/repository/yum.rb +2 -1
  85. data/app/services/katello/pulp3/repository.rb +11 -9
  86. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  87. data/app/services/katello/pulp3/task.rb +3 -3
  88. data/app/services/katello/pulp3/task_group.rb +0 -6
  89. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  90. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  91. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  92. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  93. data/config/routes/api/v2.rb +2 -0
  94. data/config/routes/overrides.rb +1 -0
  95. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  96. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
  97. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  98. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  99. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  100. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  101. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  102. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  104. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  105. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  123. data/lib/katello/engine.rb +1 -0
  124. data/lib/katello/permission_creator.rb +68 -59
  125. data/lib/katello/permissions/host_permissions.rb +1 -0
  126. data/lib/katello/plugin.rb +4 -1
  127. data/lib/katello/repository_types/deb.rb +9 -1
  128. data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
  129. data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
  130. data/lib/katello/tasks/reports.rake +1 -4
  131. data/lib/katello/tasks/reset.rake +2 -1
  132. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  133. data/lib/katello/version.rb +1 -1
  134. data/locale/action_names.rb +54 -47
  135. data/locale/bn/katello.po +165 -26
  136. data/locale/cs/katello.po +164 -24
  137. data/locale/de/katello.po +165 -26
  138. data/locale/en/katello.po +164 -23
  139. data/locale/es/katello.po +165 -25
  140. data/locale/fr/katello.po +165 -25
  141. data/locale/gu/katello.po +165 -26
  142. data/locale/hi/katello.po +165 -26
  143. data/locale/it/katello.po +165 -25
  144. data/locale/ja/katello.po +165 -26
  145. data/locale/katello.pot +1036 -802
  146. data/locale/kn/katello.po +165 -26
  147. data/locale/ko/katello.po +165 -25
  148. data/locale/mr/katello.po +165 -26
  149. data/locale/or/katello.po +165 -26
  150. data/locale/pa/katello.po +165 -26
  151. data/locale/pt/katello.po +164 -23
  152. data/locale/pt_BR/katello.po +165 -25
  153. data/locale/ru/katello.po +165 -25
  154. data/locale/ta/katello.po +165 -26
  155. data/locale/te/katello.po +165 -26
  156. data/locale/zh_CN/katello.po +165 -25
  157. data/locale/zh_TW/katello.po +165 -26
  158. data/webpack/components/ActionableDetail.js +2 -1
  159. data/webpack/components/Search/Search.js +1 -1
  160. data/webpack/components/Table/MainTable.js +6 -2
  161. data/webpack/components/Table/TableWrapper.js +46 -9
  162. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  163. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  164. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  165. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  166. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  167. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  168. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  169. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  170. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  171. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  172. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  173. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  174. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  175. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  176. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  177. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  178. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  179. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
  180. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  181. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  182. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  183. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  184. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  185. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  186. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  187. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  188. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  189. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  190. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  191. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  192. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  193. metadata +69 -26
data/locale/ru/katello.po CHANGED
@@ -402,6 +402,9 @@ msgstr "Добавлено содержимое:"
402
402
  msgid "Adding content units"
403
403
  msgstr ""
404
404
 
405
+ 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}"
406
+ msgstr ""
407
+
405
408
  msgid "Addons"
406
409
  msgstr ""
407
410
 
@@ -506,6 +509,9 @@ msgstr ""
506
509
  msgid "Artifacts"
507
510
  msgstr ""
508
511
 
512
+ msgid "Assign system purpose attributes on one or more hosts"
513
+ msgstr ""
514
+
509
515
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
510
516
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
511
517
  msgstr[0] "Выделить %{taxonomy_name} %{count} узел без %{taxonomy_single}"
@@ -552,9 +558,6 @@ msgstr ""
552
558
  msgid "Author"
553
559
  msgstr ""
554
560
 
555
- msgid "Auto Enablement may only be set on custom repositories."
556
- msgstr ""
557
-
558
561
  msgid "Auto Publish - Triggered by '%s'"
559
562
  msgstr ""
560
563
 
@@ -764,6 +767,9 @@ msgstr ""
764
767
  msgid "Cannot delete view while it exists in environments"
765
768
  msgstr "Прежде чем удалить представление, исключите его из окружений"
766
769
 
770
+ msgid "Cannot import a composite content view"
771
+ msgstr ""
772
+
767
773
  msgid "Cannot import a custom subscription from a redhat product."
768
774
  msgstr ""
769
775
 
@@ -840,6 +846,9 @@ msgstr ""
840
846
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
841
847
  msgstr ""
842
848
 
849
+ msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
850
+ msgstr ""
851
+
843
852
  msgid "Click here to go to the tasks page for the task."
844
853
  msgstr ""
845
854
 
@@ -970,9 +979,15 @@ msgstr ""
970
979
  msgid "Content View Version not set"
971
980
  msgstr ""
972
981
 
982
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
983
+ msgstr ""
984
+
973
985
  msgid "Content View and Environment not set for registration."
974
986
  msgstr ""
975
987
 
988
+ msgid "Content View id"
989
+ msgstr ""
990
+
976
991
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author ypoyarko
977
992
  msgid "Content Views"
978
993
  msgstr "Представления"
@@ -1032,12 +1047,12 @@ msgstr ""
1032
1047
  msgid "Copy an activation key"
1033
1048
  msgstr "Копировать ключ активации"
1034
1049
 
1050
+ msgid "Copy version units to library"
1051
+ msgstr ""
1052
+
1035
1053
  msgid "Cores: %s"
1036
1054
  msgstr "Ядра: %s"
1037
1055
 
1038
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1039
- msgstr ""
1040
-
1041
1056
  msgid "Could not delete organization '%s'."
1042
1057
  msgstr "Не удалось удалить организацию \"%s\"."
1043
1058
 
@@ -1047,6 +1062,9 @@ msgstr "%{content} с идентификатором «%{id}» в репозит
1047
1062
  msgid "Could not find %{count} errata. Only found: %{found}"
1048
1063
  msgstr ""
1049
1064
 
1065
+ msgid "Could not find %{name} resource with id %{id}"
1066
+ msgstr ""
1067
+
1050
1068
  msgid "Could not find Environment with ids: %s"
1051
1069
  msgstr "Окружения не найдены: %s"
1052
1070
 
@@ -1080,9 +1098,6 @@ msgstr ""
1080
1098
  msgid "Couldn't find %{type} Filter with id %{id}"
1081
1099
  msgstr "Фильтр %{type} с идентификатором %{id} не найден."
1082
1100
 
1083
- msgid "Couldn't find Content Credential '%s'"
1084
- msgstr ""
1085
-
1086
1101
  msgid "Couldn't find ContentViewFilter with id=%s"
1087
1102
  msgstr "Фильтр представления с идентификатором %s не найден."
1088
1103
 
@@ -1175,9 +1190,6 @@ msgstr ""
1175
1190
  msgid "Couldn't find subject of synchronization"
1176
1191
  msgstr "Не удалось найти объект синхронизации"
1177
1192
 
1178
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1179
- msgstr "Не удалось синхронизировать план «%{plan}» в организации «%{org}»"
1180
-
1181
1193
  msgid "Count"
1182
1194
  msgstr ""
1183
1195
 
@@ -1460,6 +1472,15 @@ msgstr ""
1460
1472
  msgid "Desired quantity of the pool"
1461
1473
  msgstr ""
1462
1474
 
1475
+ msgid "Destination Server Name required for Pulp3 repositories"
1476
+ msgstr ""
1477
+
1478
+ msgid "Destination Server name"
1479
+ msgstr ""
1480
+
1481
+ msgid "Destination Server name, required for Pulp3"
1482
+ msgstr ""
1483
+
1463
1484
  # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1464
1485
  msgid "Destroy"
1465
1486
  msgstr "Удалить"
@@ -1512,6 +1533,9 @@ msgstr "Свойства"
1512
1533
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1513
1534
  msgstr ""
1514
1535
 
1536
+ msgid "Directory containing the exported Content View Version"
1537
+ msgstr ""
1538
+
1515
1539
  # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author ypoyarko
1516
1540
  msgid "Disable"
1517
1541
  msgstr "Отключить"
@@ -1528,6 +1552,9 @@ msgstr ""
1528
1552
  msgid "Disable simple content access for a manifest"
1529
1553
  msgstr ""
1530
1554
 
1555
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1556
+ msgstr ""
1557
+
1531
1558
  msgid "Disconnected mode"
1532
1559
  msgstr ""
1533
1560
 
@@ -1612,6 +1639,9 @@ msgstr ""
1612
1639
  msgid "Enabled Repositories"
1613
1640
  msgstr ""
1614
1641
 
1642
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1643
+ msgstr ""
1644
+
1615
1645
  msgid "End Date"
1616
1646
  msgstr ""
1617
1647
 
@@ -1733,6 +1763,9 @@ msgstr ""
1733
1763
  msgid "Export to ISO format"
1734
1764
  msgstr ""
1735
1765
 
1766
+ msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1767
+ msgstr ""
1768
+
1736
1769
  msgid "Exported version"
1737
1770
  msgstr ""
1738
1771
 
@@ -1876,10 +1909,6 @@ msgstr ""
1876
1909
  msgid "GPG Key URL"
1877
1910
  msgstr ""
1878
1911
 
1879
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ypoyarko
1880
- msgid "GPG Keys"
1881
- msgstr "Ключи GPG"
1882
-
1883
1912
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author ypoyarko
1884
1913
  msgid "Generate and Download"
1885
1914
  msgstr "Создать и загрузить"
@@ -1987,6 +2016,9 @@ msgstr "Пустая коллекция."
1987
2016
  msgid "Host content and subscription details"
1988
2017
  msgstr "Свойства подписки и содержимого"
1989
2018
 
2019
+ 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."
2020
+ msgstr ""
2021
+
1990
2022
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
1991
2023
  msgstr ""
1992
2024
 
@@ -2207,6 +2239,12 @@ msgstr ""
2207
2239
  msgid "Immediate"
2208
2240
  msgstr ""
2209
2241
 
2242
+ msgid "Import"
2243
+ msgstr ""
2244
+
2245
+ msgid "Import Content View Version"
2246
+ msgstr ""
2247
+
2210
2248
  msgid "Import Manifest"
2211
2249
  msgstr "Импорт манифеста"
2212
2250
 
@@ -2228,6 +2266,9 @@ msgstr ""
2228
2266
  msgid "Import a Manifest using the manifest tab above."
2229
2267
  msgstr ""
2230
2268
 
2269
+ msgid "Import a content view version"
2270
+ msgstr ""
2271
+
2231
2272
  msgid "Import facts"
2232
2273
  msgstr "Импорт фактов"
2233
2274
 
@@ -2396,6 +2437,9 @@ msgstr ""
2396
2437
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2397
2438
  msgstr "Неверное правило: «version» не может использоваться вместе с «min_version» и «max_version»"
2398
2439
 
2440
+ msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2441
+ msgstr ""
2442
+
2399
2443
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2400
2444
  msgstr "Запрос операции содержит недопустимые параметры. Обратитесь к администратору."
2401
2445
 
@@ -2409,6 +2453,9 @@ msgstr ""
2409
2453
  msgid "Invalid params provided - date_type must be one of %s"
2410
2454
  msgstr ""
2411
2455
 
2456
+ msgid "Invalid path specified."
2457
+ msgstr ""
2458
+
2412
2459
  msgid ""
2413
2460
  "Invalid puppet module parameters specified. \\\n"
2414
2461
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2486,9 +2533,6 @@ msgstr ""
2486
2533
  msgid "Learn more about adding Subscription Manifests"
2487
2534
  msgstr ""
2488
2535
 
2489
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2490
- msgstr ""
2491
-
2492
2536
  msgid "Library lifecycle environments may not be deleted."
2493
2537
  msgstr "Окружения Library не могут быть удалены."
2494
2538
 
@@ -2743,6 +2787,9 @@ msgstr ""
2743
2787
  msgid "List srpms"
2744
2788
  msgstr ""
2745
2789
 
2790
+ msgid "List subscriptions"
2791
+ msgstr ""
2792
+
2746
2793
  msgid "List sync plans"
2747
2794
  msgstr "Показать планы синхронизации"
2748
2795
 
@@ -2831,6 +2878,9 @@ msgstr "Сообщение"
2831
2878
  msgid "Messaging connection"
2832
2879
  msgstr ""
2833
2880
 
2881
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2882
+ msgstr ""
2883
+
2834
2884
  msgid "Mismatched"
2835
2885
  msgstr ""
2836
2886
 
@@ -2975,12 +3025,18 @@ msgstr ""
2975
3025
  msgid "No hosts registered with subscription-manager found in selection."
2976
3026
  msgstr ""
2977
3027
 
3028
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3029
+ msgstr ""
3030
+
2978
3031
  msgid "No manifest file uploaded"
2979
3032
  msgstr "Нет загруженных файлов манифеста"
2980
3033
 
2981
3034
  msgid "No matching content views found"
2982
3035
  msgstr ""
2983
3036
 
3037
+ msgid "No matching repositories found"
3038
+ msgstr ""
3039
+
2984
3040
  msgid "No new packages installed"
2985
3041
  msgstr "Нет новых пакетов"
2986
3042
 
@@ -3116,6 +3172,9 @@ msgstr ""
3116
3172
  msgid "On-disk location for exported repositories"
3117
3173
  msgstr ""
3118
3174
 
3175
+ msgid "On-disk location for pulp 3 exported repositories"
3176
+ msgstr ""
3177
+
3119
3178
  msgid "One of parameters [ %s ] required but not specified."
3120
3179
  msgstr "Отсутствует обязательный параметр [ %s ] "
3121
3180
 
@@ -3147,6 +3206,9 @@ msgstr "Операторы"
3147
3206
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3148
3207
  msgstr ""
3149
3208
 
3209
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3210
+ msgstr ""
3211
+
3150
3212
  msgid "Organization"
3151
3213
  msgstr "Организация"
3152
3214
 
@@ -3393,6 +3455,9 @@ msgstr "Физическое"
3393
3455
  msgid "Plan numeric identifier"
3394
3456
  msgstr "Числовой идентификатор плана"
3395
3457
 
3458
+ msgid "Please add some repositories."
3459
+ msgstr ""
3460
+
3396
3461
  msgid "Please enter a positive number above zero"
3397
3462
  msgstr ""
3398
3463
 
@@ -3526,6 +3591,9 @@ msgstr ""
3526
3591
  msgid "Pulp"
3527
3592
  msgstr ""
3528
3593
 
3594
+ msgid "Pulp 3 export destination filepath"
3595
+ msgstr ""
3596
+
3529
3597
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3530
3598
  msgstr ""
3531
3599
 
@@ -3580,6 +3648,12 @@ msgstr ""
3580
3648
  msgid "Pulp task error"
3581
3649
  msgstr "Ошибка задачи Pulp"
3582
3650
 
3651
+ msgid "Pulp user or group unable to read '%s'."
3652
+ msgstr ""
3653
+
3654
+ msgid "Pulp user or group unable to read content in '%s'."
3655
+ msgstr ""
3656
+
3583
3657
  msgid "Pulpcore"
3584
3658
  msgstr ""
3585
3659
 
@@ -3719,6 +3793,9 @@ msgstr "Включить $releasever "
3719
3793
  msgid "Reload data"
3720
3794
  msgstr "Перезагрузить"
3721
3795
 
3796
+ msgid "Remote action:"
3797
+ msgstr ""
3798
+
3722
3799
  msgid "Removal of package group(s) requested: %{groups}"
3723
3800
  msgstr ""
3724
3801
 
@@ -3803,6 +3880,9 @@ msgstr "Удаление пакета..."
3803
3880
  msgid "Repo Type"
3804
3881
  msgstr ""
3805
3882
 
3883
+ msgid "Report"
3884
+ msgstr ""
3885
+
3806
3886
  # translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author ypoyarko
3807
3887
  msgid "Repositories"
3808
3888
  msgstr "Репозитории"
@@ -3879,6 +3959,9 @@ msgstr ""
3879
3959
  msgid "Resolve Traces"
3880
3960
  msgstr ""
3881
3961
 
3962
+ msgid "Resolve traces for one or more hosts"
3963
+ msgstr ""
3964
+
3882
3965
  msgid "Resource"
3883
3966
  msgstr ""
3884
3967
 
@@ -3958,6 +4041,9 @@ msgstr "Вернуть содержимое ключа GPG, используем
3958
4041
  msgid "Role"
3959
4042
  msgstr ""
3960
4043
 
4044
+ msgid "Role of host"
4045
+ msgstr ""
4046
+
3961
4047
  msgid "Run Sync Plan:"
3962
4048
  msgstr ""
3963
4049
 
@@ -4058,6 +4144,9 @@ msgstr "Уровень обслуживания %s"
4058
4144
  msgid "Service Level (SLA)"
4059
4145
  msgstr ""
4060
4146
 
4147
+ msgid "Service level of host"
4148
+ msgstr ""
4149
+
4061
4150
  msgid "Service level to be used for autoheal"
4062
4151
  msgstr ""
4063
4152
 
@@ -4152,6 +4241,9 @@ msgstr "Показать версии для узла содержимого"
4152
4241
  msgid "Show the available repository types"
4153
4242
  msgstr ""
4154
4243
 
4244
+ msgid "Show the export history for a content view version"
4245
+ msgstr ""
4246
+
4155
4247
  msgid "Shows status of Katello system and it's subcomponents"
4156
4248
  msgstr ""
4157
4249
 
@@ -4161,6 +4253,12 @@ msgstr "Показывает версию"
4161
4253
  msgid "Simple Content Access"
4162
4254
  msgstr ""
4163
4255
 
4256
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4257
+ msgstr ""
4258
+
4259
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4260
+ msgstr ""
4261
+
4164
4262
  msgid "Size of file to upload"
4165
4263
  msgstr ""
4166
4264
 
@@ -4405,6 +4503,9 @@ msgstr "Синхронизировать продукты"
4405
4503
  msgid "Sync plan identifier to attach"
4406
4504
  msgstr "Идентификатор плана синхронизации"
4407
4505
 
4506
+ msgid "Sync state"
4507
+ msgstr ""
4508
+
4408
4509
  msgid "Synced Content"
4409
4510
  msgstr ""
4410
4511
 
@@ -4516,6 +4617,9 @@ msgstr "Узлы, для которых обнаружены подходящи
4516
4617
  msgid "The id of the host to alter"
4517
4618
  msgstr ""
4518
4619
 
4620
+ msgid "The import path must be in a subdirectory under '%s'."
4621
+ msgstr ""
4622
+
4519
4623
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4520
4624
  msgstr ""
4521
4625
 
@@ -4564,6 +4668,9 @@ msgstr ""
4564
4668
  msgid "The requested resource does not belong to the specified organization"
4565
4669
  msgstr ""
4566
4670
 
4671
+ msgid "The requested traces were not found for this host"
4672
+ msgstr ""
4673
+
4567
4674
  msgid "The selected content source and lifecycle environment do not match"
4568
4675
  msgstr ""
4569
4676
 
@@ -4627,6 +4734,9 @@ msgstr ""
4627
4734
  msgid "There's no running synchronization for this smart proxy."
4628
4735
  msgstr ""
4629
4736
 
4737
+ msgid "This API endpoint is only valid for Pulp 3 repositories."
4738
+ msgstr ""
4739
+
4630
4740
  msgid "This Host is not currently registered with subscription-manager."
4631
4741
  msgstr ""
4632
4742
 
@@ -4766,10 +4876,13 @@ msgstr ""
4766
4876
  msgid "Unable to detect puppet path"
4767
4877
  msgstr ""
4768
4878
 
4769
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4879
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4770
4880
  msgstr ""
4771
4881
 
4772
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4882
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4883
+ msgstr ""
4884
+
4885
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4773
4886
  msgstr ""
4774
4887
 
4775
4888
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -4984,6 +5097,12 @@ msgstr ""
4984
5097
  msgid "Updating Package..."
4985
5098
  msgstr "Обновление пакета..."
4986
5099
 
5100
+ msgid "Updating System Purpose for host"
5101
+ msgstr ""
5102
+
5103
+ msgid "Updating System Purpose for host %s"
5104
+ msgstr ""
5105
+
4987
5106
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author ypoyarko
4988
5107
  msgid "Updating package group..."
4989
5108
  msgstr "Обновление группы пакетов..."
@@ -5039,9 +5158,15 @@ msgstr ""
5039
5158
  msgid "Usage Type"
5040
5159
  msgstr ""
5041
5160
 
5161
+ msgid "Usage of host"
5162
+ msgstr ""
5163
+
5042
5164
  msgid "Use remote execution by default"
5043
5165
  msgstr ""
5044
5166
 
5167
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5168
+ msgstr ""
5169
+
5045
5170
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5046
5171
  msgstr "Пользователь «%s» не задал идентификатор организации и не имеет исходной организации."
5047
5172
 
@@ -5066,6 +5191,15 @@ msgstr ""
5066
5191
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5067
5192
  msgstr ""
5068
5193
 
5194
+ msgid "Verify checksum"
5195
+ msgstr ""
5196
+
5197
+ msgid "Verify checksum for one or more products"
5198
+ msgstr ""
5199
+
5200
+ msgid "Verify checksum of repository contents"
5201
+ msgstr ""
5202
+
5069
5203
  msgid "Version"
5070
5204
  msgstr ""
5071
5205
 
@@ -5083,7 +5217,7 @@ msgstr ""
5083
5217
  msgid "Virtual"
5084
5218
  msgstr "Логическое"
5085
5219
 
5086
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5220
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5087
5221
  msgstr ""
5088
5222
 
5089
5223
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5152,6 +5286,9 @@ msgstr "Вы не можете настроить parent_id для органи
5152
5286
  msgid "You currently don't have any Content Views."
5153
5287
  msgstr ""
5154
5288
 
5289
+ msgid "You currently don't have any repositories to add to this content view."
5290
+ msgstr ""
5291
+
5155
5292
  msgid "You do not have permissions to delete %s"
5156
5293
  msgstr "Недостаточно разрешений для удаления %s"
5157
5294
 
@@ -5566,9 +5703,6 @@ msgstr ""
5566
5703
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5567
5704
  msgstr ""
5568
5705
 
5569
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5570
- msgstr ""
5571
-
5572
5706
  msgid "if true, will ignore the globally configured proxy when syncing"
5573
5707
  msgstr ""
5574
5708
 
@@ -5641,6 +5775,9 @@ msgstr "максимальное число зарегистрированных
5641
5775
  msgid "maximum size of each ISO in MB"
5642
5776
  msgstr ""
5643
5777
 
5778
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5779
+ msgstr ""
5780
+
5644
5781
  msgid "may not be less than the number of hosts associated with the host collection."
5645
5782
  msgstr ""
5646
5783
 
@@ -5919,6 +6056,9 @@ msgstr ""
5919
6056
  msgid "the uuid of the puppet module to associate"
5920
6057
  msgstr "UUID модуля Puppet для сопоставления"
5921
6058
 
6059
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6060
+ msgstr ""
6061
+
5922
6062
  msgid "true if the latest version of the component's content view is desired"
5923
6063
  msgstr ""
5924
6064