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
@@ -403,6 +403,9 @@ msgstr "Conteúdo adicionado:"
403
403
  msgid "Adding content units"
404
404
  msgstr ""
405
405
 
406
+ 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}"
407
+ msgstr ""
408
+
406
409
  msgid "Addons"
407
410
  msgstr ""
408
411
 
@@ -507,6 +510,9 @@ msgstr ""
507
510
  msgid "Artifacts"
508
511
  msgstr ""
509
512
 
513
+ msgid "Assign system purpose attributes on one or more hosts"
514
+ msgstr ""
515
+
510
516
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
511
517
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
512
518
  msgstr[0] "Atribuir o host %{count} sem um %{taxonomy_single} ao %{taxonomy_name}"
@@ -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
 
@@ -763,6 +766,9 @@ msgstr ""
763
766
  msgid "Cannot delete view while it exists in environments"
764
767
  msgstr "Não foi possível remover visualização enquanto ele existir nos ambientes."
765
768
 
769
+ msgid "Cannot import a composite content view"
770
+ msgstr ""
771
+
766
772
  msgid "Cannot import a custom subscription from a redhat product."
767
773
  msgstr ""
768
774
 
@@ -838,6 +844,9 @@ msgstr ""
838
844
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
839
845
  msgstr ""
840
846
 
847
+ msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
848
+ msgstr ""
849
+
841
850
  msgid "Click here to go to the tasks page for the task."
842
851
  msgstr ""
843
852
 
@@ -968,9 +977,15 @@ msgstr ""
968
977
  msgid "Content View Version not set"
969
978
  msgstr ""
970
979
 
980
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
981
+ msgstr ""
982
+
971
983
  msgid "Content View and Environment not set for registration."
972
984
  msgstr ""
973
985
 
986
+ msgid "Content View id"
987
+ msgstr ""
988
+
974
989
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author gcintra
975
990
  msgid "Content Views"
976
991
  msgstr "Visualização de Conteúdo"
@@ -1030,12 +1045,12 @@ msgstr ""
1030
1045
  msgid "Copy an activation key"
1031
1046
  msgstr "Copiar uma chave de ativação"
1032
1047
 
1048
+ msgid "Copy version units to library"
1049
+ msgstr ""
1050
+
1033
1051
  msgid "Cores: %s"
1034
1052
  msgstr "Núcleos: %s"
1035
1053
 
1036
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1037
- msgstr ""
1038
-
1039
1054
  msgid "Could not delete organization '%s'."
1040
1055
  msgstr "Não foi possível remover organização \"\\%s\\\"."
1041
1056
 
@@ -1045,6 +1060,9 @@ msgstr "Não foi possível encontrar %{content} com o id '%{id}' no repositório
1045
1060
  msgid "Could not find %{count} errata. Only found: %{found}"
1046
1061
  msgstr ""
1047
1062
 
1063
+ msgid "Could not find %{name} resource with id %{id}"
1064
+ msgstr ""
1065
+
1048
1066
  msgid "Could not find Environment with ids: %s"
1049
1067
  msgstr "Não foi possível encontrar Ambiente com ids: %s"
1050
1068
 
@@ -1078,9 +1096,6 @@ msgstr ""
1078
1096
  msgid "Couldn't find %{type} Filter with id %{id}"
1079
1097
  msgstr "Não' foi possível encontrar o Filtro %{type} com o id %{id}"
1080
1098
 
1081
- msgid "Couldn't find Content Credential '%s'"
1082
- msgstr ""
1083
-
1084
1099
  msgid "Couldn't find ContentViewFilter with id=%s"
1085
1100
  msgstr "Não foi possível encontrar ContentViewFilter with id=%s"
1086
1101
 
@@ -1172,9 +1187,6 @@ msgstr ""
1172
1187
  msgid "Couldn't find subject of synchronization"
1173
1188
  msgstr "Não foi possível encontrar tópico de sincronização"
1174
1189
 
1175
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1176
- msgstr "Não foi' possível encontrar plano de sincronização '%{plan}' na organização '%{org}'"
1177
-
1178
1190
  msgid "Count"
1179
1191
  msgstr ""
1180
1192
 
@@ -1456,6 +1468,15 @@ msgstr ""
1456
1468
  msgid "Desired quantity of the pool"
1457
1469
  msgstr ""
1458
1470
 
1471
+ msgid "Destination Server Name required for Pulp3 repositories"
1472
+ msgstr ""
1473
+
1474
+ msgid "Destination Server name"
1475
+ msgstr ""
1476
+
1477
+ msgid "Destination Server name, required for Pulp3"
1478
+ msgstr ""
1479
+
1459
1480
  # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1460
1481
  msgid "Destroy"
1461
1482
  msgstr "Destruir"
@@ -1508,6 +1529,9 @@ msgstr "Detalhes"
1508
1529
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1509
1530
  msgstr ""
1510
1531
 
1532
+ msgid "Directory containing the exported Content View Version"
1533
+ msgstr ""
1534
+
1511
1535
  msgid "Disable"
1512
1536
  msgstr "Desativar "
1513
1537
 
@@ -1523,6 +1547,9 @@ msgstr ""
1523
1547
  msgid "Disable simple content access for a manifest"
1524
1548
  msgstr ""
1525
1549
 
1550
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1551
+ msgstr ""
1552
+
1526
1553
  msgid "Disconnected mode"
1527
1554
  msgstr ""
1528
1555
 
@@ -1607,6 +1634,9 @@ msgstr ""
1607
1634
  msgid "Enabled Repositories"
1608
1635
  msgstr ""
1609
1636
 
1637
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1638
+ msgstr ""
1639
+
1610
1640
  msgid "End Date"
1611
1641
  msgstr ""
1612
1642
 
@@ -1728,6 +1758,9 @@ msgstr ""
1728
1758
  msgid "Export to ISO format"
1729
1759
  msgstr ""
1730
1760
 
1761
+ msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1762
+ msgstr ""
1763
+
1731
1764
  msgid "Exported version"
1732
1765
  msgstr ""
1733
1766
 
@@ -1869,10 +1902,6 @@ msgstr ""
1869
1902
  msgid "GPG Key URL"
1870
1903
  msgstr ""
1871
1904
 
1872
- # translation auto-copied from project PressGang CCMS topics, version 1, document 31337-708757, author gcintra
1873
- msgid "GPG Keys"
1874
- msgstr "Chaves GPG"
1875
-
1876
1905
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author gcintra
1877
1906
  msgid "Generate and Download"
1878
1907
  msgstr "Gerar e Baixar"
@@ -1979,6 +2008,9 @@ msgstr "Coleção do Host está vazia. "
1979
2008
  msgid "Host content and subscription details"
1980
2009
  msgstr "Host de conteúdo e detalhes da subscrição"
1981
2010
 
2011
+ 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."
2012
+ msgstr ""
2013
+
1982
2014
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
1983
2015
  msgstr ""
1984
2016
 
@@ -2198,6 +2230,12 @@ msgstr ""
2198
2230
  msgid "Immediate"
2199
2231
  msgstr ""
2200
2232
 
2233
+ msgid "Import"
2234
+ msgstr ""
2235
+
2236
+ msgid "Import Content View Version"
2237
+ msgstr ""
2238
+
2201
2239
  msgid "Import Manifest"
2202
2240
  msgstr "Importar Manifesto"
2203
2241
 
@@ -2219,6 +2257,9 @@ msgstr ""
2219
2257
  msgid "Import a Manifest using the manifest tab above."
2220
2258
  msgstr ""
2221
2259
 
2260
+ msgid "Import a content view version"
2261
+ msgstr ""
2262
+
2222
2263
  msgid "Import facts"
2223
2264
  msgstr "Importar fatos"
2224
2265
 
@@ -2386,6 +2427,9 @@ msgstr ""
2386
2427
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2387
2428
  msgstr "Regra de filtro inválido, \"versão\" não pode ser especificada na mesma tupla como 'min_version 'ou' max_version'"
2388
2429
 
2430
+ msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2431
+ msgstr ""
2432
+
2389
2433
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2390
2434
  msgstr "Parâmetros inválidos enviado na requisição desta operação. Por favor, entre em contato com um administrador de sistemas."
2391
2435
 
@@ -2399,6 +2443,9 @@ msgstr ""
2399
2443
  msgid "Invalid params provided - date_type must be one of %s"
2400
2444
  msgstr ""
2401
2445
 
2446
+ msgid "Invalid path specified."
2447
+ msgstr ""
2448
+
2402
2449
  msgid ""
2403
2450
  "Invalid puppet module parameters specified. \\\n"
2404
2451
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2476,9 +2523,6 @@ msgstr ""
2476
2523
  msgid "Learn more about adding Subscription Manifests"
2477
2524
  msgstr ""
2478
2525
 
2479
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2480
- msgstr ""
2481
-
2482
2526
  msgid "Library lifecycle environments may not be deleted."
2483
2527
  msgstr "Ambientes de ciclo de vida de biblioteca podem não ser removidos."
2484
2528
 
@@ -2733,6 +2777,9 @@ msgstr ""
2733
2777
  msgid "List srpms"
2734
2778
  msgstr ""
2735
2779
 
2780
+ msgid "List subscriptions"
2781
+ msgstr ""
2782
+
2736
2783
  msgid "List sync plans"
2737
2784
  msgstr "Listar planos de sinc"
2738
2785
 
@@ -2821,6 +2868,9 @@ msgstr "Mensagem"
2821
2868
  msgid "Messaging connection"
2822
2869
  msgstr ""
2823
2870
 
2871
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2872
+ msgstr ""
2873
+
2824
2874
  msgid "Mismatched"
2825
2875
  msgstr ""
2826
2876
 
@@ -2964,12 +3014,18 @@ msgstr ""
2964
3014
  msgid "No hosts registered with subscription-manager found in selection."
2965
3015
  msgstr ""
2966
3016
 
3017
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3018
+ msgstr ""
3019
+
2967
3020
  msgid "No manifest file uploaded"
2968
3021
  msgstr "Nenhum arquivo de manifesto carregado"
2969
3022
 
2970
3023
  msgid "No matching content views found"
2971
3024
  msgstr ""
2972
3025
 
3026
+ msgid "No matching repositories found"
3027
+ msgstr ""
3028
+
2973
3029
  msgid "No new packages installed"
2974
3030
  msgstr "Nenhum pacote novo instalado"
2975
3031
 
@@ -3105,6 +3161,9 @@ msgstr ""
3105
3161
  msgid "On-disk location for exported repositories"
3106
3162
  msgstr ""
3107
3163
 
3164
+ msgid "On-disk location for pulp 3 exported repositories"
3165
+ msgstr ""
3166
+
3108
3167
  msgid "One of parameters [ %s ] required but not specified."
3109
3168
  msgstr "Um dos parâmetros [ %s ] requerido mas não especificado"
3110
3169
 
@@ -3136,6 +3195,9 @@ msgstr "Operadores"
3136
3195
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3137
3196
  msgstr ""
3138
3197
 
3198
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3199
+ msgstr ""
3200
+
3139
3201
  msgid "Organization"
3140
3202
  msgstr "Organização"
3141
3203
 
@@ -3381,6 +3443,9 @@ msgstr "Físico "
3381
3443
  msgid "Plan numeric identifier"
3382
3444
  msgstr "Identificador numérico de plano"
3383
3445
 
3446
+ msgid "Please add some repositories."
3447
+ msgstr ""
3448
+
3384
3449
  msgid "Please enter a positive number above zero"
3385
3450
  msgstr ""
3386
3451
 
@@ -3514,6 +3579,9 @@ msgstr ""
3514
3579
  msgid "Pulp"
3515
3580
  msgstr ""
3516
3581
 
3582
+ msgid "Pulp 3 export destination filepath"
3583
+ msgstr ""
3584
+
3517
3585
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3518
3586
  msgstr ""
3519
3587
 
@@ -3568,6 +3636,12 @@ msgstr ""
3568
3636
  msgid "Pulp task error"
3569
3637
  msgstr "Erro de tarefa Pulp"
3570
3638
 
3639
+ msgid "Pulp user or group unable to read '%s'."
3640
+ msgstr ""
3641
+
3642
+ msgid "Pulp user or group unable to read content in '%s'."
3643
+ msgstr ""
3644
+
3571
3645
  msgid "Pulpcore"
3572
3646
  msgstr ""
3573
3647
 
@@ -3706,6 +3780,9 @@ msgstr "Releasever a ativar "
3706
3780
  msgid "Reload data"
3707
3781
  msgstr "Recarregar dados"
3708
3782
 
3783
+ msgid "Remote action:"
3784
+ msgstr ""
3785
+
3709
3786
  msgid "Removal of package group(s) requested: %{groups}"
3710
3787
  msgstr ""
3711
3788
 
@@ -3790,6 +3867,9 @@ msgstr "Removendo Pacote..."
3790
3867
  msgid "Repo Type"
3791
3868
  msgstr ""
3792
3869
 
3870
+ msgid "Report"
3871
+ msgstr ""
3872
+
3793
3873
  # translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author gcintra
3794
3874
  msgid "Repositories"
3795
3875
  msgstr "Repositórios"
@@ -3866,6 +3946,9 @@ msgstr ""
3866
3946
  msgid "Resolve Traces"
3867
3947
  msgstr ""
3868
3948
 
3949
+ msgid "Resolve traces for one or more hosts"
3950
+ msgstr ""
3951
+
3869
3952
  msgid "Resource"
3870
3953
  msgstr ""
3871
3954
 
@@ -3945,6 +4028,9 @@ msgstr "Retornar o conteúdo de uma chave gpg repo, usada diretamente pelo yum "
3945
4028
  msgid "Role"
3946
4029
  msgstr ""
3947
4030
 
4031
+ msgid "Role of host"
4032
+ msgstr ""
4033
+
3948
4034
  msgid "Run Sync Plan:"
3949
4035
  msgstr ""
3950
4036
 
@@ -4045,6 +4131,9 @@ msgstr "Nível de Serviço %s"
4045
4131
  msgid "Service Level (SLA)"
4046
4132
  msgstr ""
4047
4133
 
4134
+ msgid "Service level of host"
4135
+ msgstr ""
4136
+
4048
4137
  msgid "Service level to be used for autoheal"
4049
4138
  msgstr ""
4050
4139
 
@@ -4139,6 +4228,9 @@ msgstr "Exibir lançamentos disponiveis para um host de conteúdo"
4139
4228
  msgid "Show the available repository types"
4140
4229
  msgstr ""
4141
4230
 
4231
+ msgid "Show the export history for a content view version"
4232
+ msgstr ""
4233
+
4142
4234
  msgid "Shows status of Katello system and it's subcomponents"
4143
4235
  msgstr ""
4144
4236
 
@@ -4148,6 +4240,12 @@ msgstr "Exibir informações da versão"
4148
4240
  msgid "Simple Content Access"
4149
4241
  msgstr ""
4150
4242
 
4243
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4244
+ msgstr ""
4245
+
4246
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4247
+ msgstr ""
4248
+
4151
4249
  msgid "Size of file to upload"
4152
4250
  msgstr ""
4153
4251
 
@@ -4390,6 +4488,9 @@ msgstr "Sincronizar um ou mais produtos "
4390
4488
  msgid "Sync plan identifier to attach"
4391
4489
  msgstr "Identificador de plano de sinc a ser anexado"
4392
4490
 
4491
+ msgid "Sync state"
4492
+ msgstr ""
4493
+
4393
4494
  msgid "Synced Content"
4394
4495
  msgstr ""
4395
4496
 
@@ -4500,6 +4601,9 @@ msgstr "Os hosts a seguir possuem errata que se aplicam à eles:"
4500
4601
  msgid "The id of the host to alter"
4501
4602
  msgstr ""
4502
4603
 
4604
+ msgid "The import path must be in a subdirectory under '%s'."
4605
+ msgstr ""
4606
+
4503
4607
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4504
4608
  msgstr ""
4505
4609
 
@@ -4548,6 +4652,9 @@ msgstr ""
4548
4652
  msgid "The requested resource does not belong to the specified organization"
4549
4653
  msgstr ""
4550
4654
 
4655
+ msgid "The requested traces were not found for this host"
4656
+ msgstr ""
4657
+
4551
4658
  msgid "The selected content source and lifecycle environment do not match"
4552
4659
  msgstr ""
4553
4660
 
@@ -4611,6 +4718,9 @@ msgstr ""
4611
4718
  msgid "There's no running synchronization for this smart proxy."
4612
4719
  msgstr ""
4613
4720
 
4721
+ msgid "This API endpoint is only valid for Pulp 3 repositories."
4722
+ msgstr ""
4723
+
4614
4724
  msgid "This Host is not currently registered with subscription-manager."
4615
4725
  msgstr ""
4616
4726
 
@@ -4750,10 +4860,13 @@ msgstr ""
4750
4860
  msgid "Unable to detect puppet path"
4751
4861
  msgstr ""
4752
4862
 
4753
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
4863
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4754
4864
  msgstr ""
4755
4865
 
4756
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4866
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
4867
+ msgstr ""
4868
+
4869
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4757
4870
  msgstr ""
4758
4871
 
4759
4872
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -4968,6 +5081,12 @@ msgstr ""
4968
5081
  msgid "Updating Package..."
4969
5082
  msgstr "Atualizando Pacote..."
4970
5083
 
5084
+ msgid "Updating System Purpose for host"
5085
+ msgstr ""
5086
+
5087
+ msgid "Updating System Purpose for host %s"
5088
+ msgstr ""
5089
+
4971
5090
  msgid "Updating package group..."
4972
5091
  msgstr "Atualizando grupo do pacotes..."
4973
5092
 
@@ -5022,9 +5141,15 @@ msgstr ""
5022
5141
  msgid "Usage Type"
5023
5142
  msgstr ""
5024
5143
 
5144
+ msgid "Usage of host"
5145
+ msgstr ""
5146
+
5025
5147
  msgid "Use remote execution by default"
5026
5148
  msgstr ""
5027
5149
 
5150
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5151
+ msgstr ""
5152
+
5028
5153
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5029
5154
  msgstr "Usuário '%s' não especificou um ID de organização e não possui uma organização padrão."
5030
5155
 
@@ -5049,6 +5174,15 @@ msgstr ""
5049
5174
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5050
5175
  msgstr ""
5051
5176
 
5177
+ msgid "Verify checksum"
5178
+ msgstr ""
5179
+
5180
+ msgid "Verify checksum for one or more products"
5181
+ msgstr ""
5182
+
5183
+ msgid "Verify checksum of repository contents"
5184
+ msgstr ""
5185
+
5052
5186
  msgid "Version"
5053
5187
  msgstr ""
5054
5188
 
@@ -5066,7 +5200,7 @@ msgstr ""
5066
5200
  msgid "Virtual"
5067
5201
  msgstr "Virtual"
5068
5202
 
5069
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5203
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5070
5204
  msgstr ""
5071
5205
 
5072
5206
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5135,6 +5269,9 @@ msgstr "Você não pode definir um parent_id de organização. Este recurso est
5135
5269
  msgid "You currently don't have any Content Views."
5136
5270
  msgstr ""
5137
5271
 
5272
+ msgid "You currently don't have any repositories to add to this content view."
5273
+ msgstr ""
5274
+
5138
5275
  msgid "You do not have permissions to delete %s"
5139
5276
  msgstr "Você não possui permissão para excluir %s"
5140
5277
 
@@ -5549,9 +5686,6 @@ msgstr ""
5549
5686
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5550
5687
  msgstr ""
5551
5688
 
5552
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5553
- msgstr ""
5554
-
5555
5689
  msgid "if true, will ignore the globally configured proxy when syncing"
5556
5690
  msgstr ""
5557
5691
 
@@ -5624,6 +5758,9 @@ msgstr "O número máximo de hosts de conteúdo registrados"
5624
5758
  msgid "maximum size of each ISO in MB"
5625
5759
  msgstr ""
5626
5760
 
5761
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5762
+ msgstr ""
5763
+
5627
5764
  msgid "may not be less than the number of hosts associated with the host collection."
5628
5765
  msgstr ""
5629
5766
 
@@ -5899,6 +6036,9 @@ msgstr ""
5899
6036
  msgid "the uuid of the puppet module to associate"
5900
6037
  msgstr "o uuid do módulo puppet a associar"
5901
6038
 
6039
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6040
+ msgstr ""
6041
+
5902
6042
  msgid "true if the latest version of the component's content view is desired"
5903
6043
  msgstr ""
5904
6044