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.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
- data/app/controllers/katello/api/v2/api_controller.rb +2 -1
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
- data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
- data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
- data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
- data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
- data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
- data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
- data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
- data/app/helpers/katello/katello_urls_helper.rb +5 -2
- data/app/lib/actions/candlepin/product/content_create.rb +2 -0
- data/app/lib/actions/candlepin/product/content_update.rb +2 -0
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
- data/app/lib/actions/katello/content_view/publish.rb +3 -4
- data/app/lib/actions/katello/content_view_version/import.rb +4 -3
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
- data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
- data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
- data/app/lib/actions/katello/product/content_create.rb +7 -6
- data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
- data/app/lib/actions/katello/repository/import_upload.rb +2 -1
- data/app/lib/actions/katello/repository/update.rb +4 -1
- data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
- data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
- data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
- data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
- data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
- data/app/lib/actions/pulp3/repository/delete.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
- data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
- data/app/lib/katello/resources/candlepin/owner.rb +5 -0
- data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
- data/app/lib/katello/resources/registry.rb +3 -3
- data/app/models/katello/authorization/activation_key.rb +4 -0
- data/app/models/katello/authorization/content_view.rb +13 -0
- data/app/models/katello/authorization/content_view_component.rb +15 -0
- data/app/models/katello/authorization/gpg_key.rb +12 -4
- data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
- data/app/models/katello/authorization/sync_plan.rb +16 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -5
- data/app/models/katello/concerns/redhat_extensions.rb +2 -2
- data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
- data/app/models/katello/content_view_component.rb +2 -0
- data/app/models/katello/content_view_version_export_history.rb +2 -0
- data/app/models/katello/glue/candlepin/pool.rb +9 -14
- data/app/models/katello/glue/pulp/repo.rb +8 -0
- data/app/models/katello/gpg_key.rb +1 -1
- data/app/models/katello/root_repository.rb +26 -1
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
- data/app/services/katello/candlepin/event_handler.rb +2 -0
- data/app/services/katello/candlepin/message_handler.rb +34 -0
- data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
- data/app/services/katello/host_status_manager.rb +9 -0
- data/app/services/katello/pulp3/api/apt.rb +57 -0
- data/app/services/katello/pulp3/api/core.rb +8 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
- data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
- data/app/services/katello/pulp3/deb.rb +38 -0
- data/app/services/katello/pulp3/erratum.rb +1 -2
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
- data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
- data/app/services/katello/pulp3/repository/apt.rb +63 -0
- data/app/services/katello/pulp3/repository/docker.rb +4 -0
- data/app/services/katello/pulp3/repository/yum.rb +2 -1
- data/app/services/katello/pulp3/repository.rb +11 -9
- data/app/services/katello/pulp3/repository_mirror.rb +9 -4
- data/app/services/katello/pulp3/task.rb +3 -3
- data/app/services/katello/pulp3/task_group.rb +0 -6
- data/app/views/dashboard/_subscription_widget.html.erb +0 -5
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/config/routes/api/v2.rb +2 -0
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
- data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
- data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
- data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
- data/db/seeds.d/111-upgrade_tasks.rb +2 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
- data/lib/katello/engine.rb +1 -0
- data/lib/katello/permission_creator.rb +68 -59
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +4 -1
- data/lib/katello/repository_types/deb.rb +9 -1
- data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
- data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
- data/lib/katello/tasks/reports.rake +1 -4
- data/lib/katello/tasks/reset.rake +2 -1
- data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +54 -47
- data/locale/bn/katello.po +165 -26
- data/locale/cs/katello.po +164 -24
- data/locale/de/katello.po +165 -26
- data/locale/en/katello.po +164 -23
- data/locale/es/katello.po +165 -25
- data/locale/fr/katello.po +165 -25
- data/locale/gu/katello.po +165 -26
- data/locale/hi/katello.po +165 -26
- data/locale/it/katello.po +165 -25
- data/locale/ja/katello.po +165 -26
- data/locale/katello.pot +1036 -802
- data/locale/kn/katello.po +165 -26
- data/locale/ko/katello.po +165 -25
- data/locale/mr/katello.po +165 -26
- data/locale/or/katello.po +165 -26
- data/locale/pa/katello.po +165 -26
- data/locale/pt/katello.po +164 -23
- data/locale/pt_BR/katello.po +165 -25
- data/locale/ru/katello.po +165 -25
- data/locale/ta/katello.po +165 -26
- data/locale/te/katello.po +165 -26
- data/locale/zh_CN/katello.po +165 -25
- data/locale/zh_TW/katello.po +165 -26
- data/webpack/components/ActionableDetail.js +2 -1
- data/webpack/components/Search/Search.js +1 -1
- data/webpack/components/Table/MainTable.js +6 -2
- data/webpack/components/Table/TableWrapper.js +46 -9
- data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
- data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
- data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
- data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
- data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
- data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
- data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
- data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
- data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
- data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
- metadata +69 -26
data/locale/es/katello.po
CHANGED
|
@@ -402,6 +402,9 @@ msgstr "Contenido agregado:"
|
|
|
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] "Asignar el host %{count} sin %{taxonomy_single} a %{taxonomy_name}"
|
|
@@ -551,9 +557,6 @@ msgstr ""
|
|
|
551
557
|
msgid "Author"
|
|
552
558
|
msgstr ""
|
|
553
559
|
|
|
554
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
555
|
-
msgstr ""
|
|
556
|
-
|
|
557
560
|
msgid "Auto Publish - Triggered by '%s'"
|
|
558
561
|
msgstr ""
|
|
559
562
|
|
|
@@ -764,6 +767,9 @@ msgstr ""
|
|
|
764
767
|
msgid "Cannot delete view while it exists in environments"
|
|
765
768
|
msgstr "No se puede borrar vista mientras existan entornos"
|
|
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
|
|
|
@@ -971,9 +980,15 @@ msgstr ""
|
|
|
971
980
|
msgid "Content View Version not set"
|
|
972
981
|
msgstr ""
|
|
973
982
|
|
|
983
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
984
|
+
msgstr ""
|
|
985
|
+
|
|
974
986
|
msgid "Content View and Environment not set for registration."
|
|
975
987
|
msgstr ""
|
|
976
988
|
|
|
989
|
+
msgid "Content View id"
|
|
990
|
+
msgstr ""
|
|
991
|
+
|
|
977
992
|
# translation auto-copied from project PressGang CCMS topics, version 1, document 20647-698348, author gguerrer
|
|
978
993
|
msgid "Content Views"
|
|
979
994
|
msgstr "Vistas de contenido"
|
|
@@ -1033,13 +1048,13 @@ msgstr ""
|
|
|
1033
1048
|
msgid "Copy an activation key"
|
|
1034
1049
|
msgstr "Copiar llave de activación"
|
|
1035
1050
|
|
|
1051
|
+
msgid "Copy version units to library"
|
|
1052
|
+
msgstr ""
|
|
1053
|
+
|
|
1036
1054
|
# translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
|
|
1037
1055
|
msgid "Cores: %s"
|
|
1038
1056
|
msgstr "Núcleos: %s"
|
|
1039
1057
|
|
|
1040
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
|
1041
|
-
msgstr ""
|
|
1042
|
-
|
|
1043
1058
|
msgid "Could not delete organization '%s'."
|
|
1044
1059
|
msgstr "No se puede borrar organización '%s'."
|
|
1045
1060
|
|
|
@@ -1049,6 +1064,9 @@ msgstr "No se encontró %{content} con ID '%{id}' en repositorio."
|
|
|
1049
1064
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1050
1065
|
msgstr ""
|
|
1051
1066
|
|
|
1067
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1068
|
+
msgstr ""
|
|
1069
|
+
|
|
1052
1070
|
msgid "Could not find Environment with ids: %s"
|
|
1053
1071
|
msgstr "No se encontró entorno con los ID: %s"
|
|
1054
1072
|
|
|
@@ -1082,9 +1100,6 @@ msgstr ""
|
|
|
1082
1100
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1083
1101
|
msgstr "No se encontró filtro %{type} con ID %{id}"
|
|
1084
1102
|
|
|
1085
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1086
|
-
msgstr ""
|
|
1087
|
-
|
|
1088
1103
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1089
1104
|
msgstr "No se encontró ContentViewFilter con ID=%s"
|
|
1090
1105
|
|
|
@@ -1179,9 +1194,6 @@ msgstr ""
|
|
|
1179
1194
|
msgid "Couldn't find subject of synchronization"
|
|
1180
1195
|
msgstr "No se encontró asunto de sincronización"
|
|
1181
1196
|
|
|
1182
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1183
|
-
msgstr "No se encontró plan de sincronización '%{plan}' en la organización %{org}'"
|
|
1184
|
-
|
|
1185
1197
|
msgid "Count"
|
|
1186
1198
|
msgstr ""
|
|
1187
1199
|
|
|
@@ -1462,6 +1474,15 @@ msgstr ""
|
|
|
1462
1474
|
msgid "Desired quantity of the pool"
|
|
1463
1475
|
msgstr ""
|
|
1464
1476
|
|
|
1477
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1478
|
+
msgstr ""
|
|
1479
|
+
|
|
1480
|
+
msgid "Destination Server name"
|
|
1481
|
+
msgstr ""
|
|
1482
|
+
|
|
1483
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1484
|
+
msgstr ""
|
|
1485
|
+
|
|
1465
1486
|
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/java/StringResource
|
|
1466
1487
|
msgid "Destroy"
|
|
1467
1488
|
msgstr "Destruir"
|
|
@@ -1514,6 +1535,9 @@ msgstr "Información"
|
|
|
1514
1535
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1515
1536
|
msgstr ""
|
|
1516
1537
|
|
|
1538
|
+
msgid "Directory containing the exported Content View Version"
|
|
1539
|
+
msgstr ""
|
|
1540
|
+
|
|
1517
1541
|
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author gguerrer
|
|
1518
1542
|
msgid "Disable"
|
|
1519
1543
|
msgstr "Inhabilitar"
|
|
@@ -1530,6 +1554,9 @@ msgstr ""
|
|
|
1530
1554
|
msgid "Disable simple content access for a manifest"
|
|
1531
1555
|
msgstr ""
|
|
1532
1556
|
|
|
1557
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1558
|
+
msgstr ""
|
|
1559
|
+
|
|
1533
1560
|
msgid "Disconnected mode"
|
|
1534
1561
|
msgstr ""
|
|
1535
1562
|
|
|
@@ -1613,6 +1640,9 @@ msgstr ""
|
|
|
1613
1640
|
msgid "Enabled Repositories"
|
|
1614
1641
|
msgstr ""
|
|
1615
1642
|
|
|
1643
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1644
|
+
msgstr ""
|
|
1645
|
+
|
|
1616
1646
|
msgid "End Date"
|
|
1617
1647
|
msgstr ""
|
|
1618
1648
|
|
|
@@ -1734,6 +1764,9 @@ msgstr ""
|
|
|
1734
1764
|
msgid "Export to ISO format"
|
|
1735
1765
|
msgstr ""
|
|
1736
1766
|
|
|
1767
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1768
|
+
msgstr ""
|
|
1769
|
+
|
|
1737
1770
|
msgid "Exported version"
|
|
1738
1771
|
msgstr ""
|
|
1739
1772
|
|
|
@@ -1875,10 +1908,6 @@ msgstr ""
|
|
|
1875
1908
|
msgid "GPG Key URL"
|
|
1876
1909
|
msgstr ""
|
|
1877
1910
|
|
|
1878
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
|
1879
|
-
msgid "GPG Keys"
|
|
1880
|
-
msgstr "llaves GPG"
|
|
1881
|
-
|
|
1882
1911
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author Gladys Guerrero Lozano
|
|
1883
1912
|
msgid "Generate and Download"
|
|
1884
1913
|
msgstr "Generar y descargar"
|
|
@@ -1985,6 +2014,9 @@ msgstr "La recopilación de hosts está vacía."
|
|
|
1985
2014
|
msgid "Host content and subscription details"
|
|
1986
2015
|
msgstr "Detalles del contenido y la suscripción del host"
|
|
1987
2016
|
|
|
2017
|
+
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."
|
|
2018
|
+
msgstr ""
|
|
2019
|
+
|
|
1988
2020
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
1989
2021
|
msgstr ""
|
|
1990
2022
|
|
|
@@ -2204,6 +2236,12 @@ msgstr ""
|
|
|
2204
2236
|
msgid "Immediate"
|
|
2205
2237
|
msgstr ""
|
|
2206
2238
|
|
|
2239
|
+
msgid "Import"
|
|
2240
|
+
msgstr ""
|
|
2241
|
+
|
|
2242
|
+
msgid "Import Content View Version"
|
|
2243
|
+
msgstr ""
|
|
2244
|
+
|
|
2207
2245
|
msgid "Import Manifest"
|
|
2208
2246
|
msgstr "Importar manifiesto: "
|
|
2209
2247
|
|
|
@@ -2225,6 +2263,9 @@ msgstr ""
|
|
|
2225
2263
|
msgid "Import a Manifest using the manifest tab above."
|
|
2226
2264
|
msgstr ""
|
|
2227
2265
|
|
|
2266
|
+
msgid "Import a content view version"
|
|
2267
|
+
msgstr ""
|
|
2268
|
+
|
|
2228
2269
|
msgid "Import facts"
|
|
2229
2270
|
msgstr "Eventos de importación"
|
|
2230
2271
|
|
|
@@ -2392,6 +2433,9 @@ msgstr ""
|
|
|
2392
2433
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2393
2434
|
msgstr "Regla de filtro no válida. 'version' no se puede especificar en la misma tupla que 'min_version' o 'max_version'"
|
|
2394
2435
|
|
|
2436
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2437
|
+
msgstr ""
|
|
2438
|
+
|
|
2395
2439
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2396
2440
|
msgstr "Parámetros inválidos enviados en la solicitud para esta operación. Por favor contacte a un administrador de sistemas."
|
|
2397
2441
|
|
|
@@ -2405,6 +2449,9 @@ msgstr ""
|
|
|
2405
2449
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2406
2450
|
msgstr ""
|
|
2407
2451
|
|
|
2452
|
+
msgid "Invalid path specified."
|
|
2453
|
+
msgstr ""
|
|
2454
|
+
|
|
2408
2455
|
msgid ""
|
|
2409
2456
|
"Invalid puppet module parameters specified. \\\n"
|
|
2410
2457
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2482,9 +2529,6 @@ msgstr ""
|
|
|
2482
2529
|
msgid "Learn more about adding Subscription Manifests"
|
|
2483
2530
|
msgstr ""
|
|
2484
2531
|
|
|
2485
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2486
|
-
msgstr ""
|
|
2487
|
-
|
|
2488
2532
|
msgid "Library lifecycle environments may not be deleted."
|
|
2489
2533
|
msgstr "La biblioteca de entornos de ciclo de vida puede borrarse."
|
|
2490
2534
|
|
|
@@ -2738,6 +2782,9 @@ msgstr ""
|
|
|
2738
2782
|
msgid "List srpms"
|
|
2739
2783
|
msgstr ""
|
|
2740
2784
|
|
|
2785
|
+
msgid "List subscriptions"
|
|
2786
|
+
msgstr ""
|
|
2787
|
+
|
|
2741
2788
|
msgid "List sync plans"
|
|
2742
2789
|
msgstr "Mostrar planes de sincronización"
|
|
2743
2790
|
|
|
@@ -2826,6 +2873,9 @@ msgstr "Mensaje"
|
|
|
2826
2873
|
msgid "Messaging connection"
|
|
2827
2874
|
msgstr ""
|
|
2828
2875
|
|
|
2876
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
2877
|
+
msgstr ""
|
|
2878
|
+
|
|
2829
2879
|
msgid "Mismatched"
|
|
2830
2880
|
msgstr ""
|
|
2831
2881
|
|
|
@@ -2969,12 +3019,18 @@ msgstr ""
|
|
|
2969
3019
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
2970
3020
|
msgstr ""
|
|
2971
3021
|
|
|
3022
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3023
|
+
msgstr ""
|
|
3024
|
+
|
|
2972
3025
|
msgid "No manifest file uploaded"
|
|
2973
3026
|
msgstr "No se ha cargado ningún archivo de manifiesto"
|
|
2974
3027
|
|
|
2975
3028
|
msgid "No matching content views found"
|
|
2976
3029
|
msgstr ""
|
|
2977
3030
|
|
|
3031
|
+
msgid "No matching repositories found"
|
|
3032
|
+
msgstr ""
|
|
3033
|
+
|
|
2978
3034
|
msgid "No new packages installed"
|
|
2979
3035
|
msgstr "No hay paquetes nuevos instalados"
|
|
2980
3036
|
|
|
@@ -3110,6 +3166,9 @@ msgstr ""
|
|
|
3110
3166
|
msgid "On-disk location for exported repositories"
|
|
3111
3167
|
msgstr ""
|
|
3112
3168
|
|
|
3169
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3170
|
+
msgstr ""
|
|
3171
|
+
|
|
3113
3172
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3114
3173
|
msgstr "Se necesita uno de los parámetros [ %s ] pero no está especificado."
|
|
3115
3174
|
|
|
@@ -3141,6 +3200,9 @@ msgstr "Operadores"
|
|
|
3141
3200
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3142
3201
|
msgstr ""
|
|
3143
3202
|
|
|
3203
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3204
|
+
msgstr ""
|
|
3205
|
+
|
|
3144
3206
|
msgid "Organization"
|
|
3145
3207
|
msgstr "Organización"
|
|
3146
3208
|
|
|
@@ -3390,6 +3452,9 @@ msgstr "Físicos"
|
|
|
3390
3452
|
msgid "Plan numeric identifier"
|
|
3391
3453
|
msgstr "Identificador numérico del plan"
|
|
3392
3454
|
|
|
3455
|
+
msgid "Please add some repositories."
|
|
3456
|
+
msgstr ""
|
|
3457
|
+
|
|
3393
3458
|
msgid "Please enter a positive number above zero"
|
|
3394
3459
|
msgstr ""
|
|
3395
3460
|
|
|
@@ -3523,6 +3588,9 @@ msgstr ""
|
|
|
3523
3588
|
msgid "Pulp"
|
|
3524
3589
|
msgstr ""
|
|
3525
3590
|
|
|
3591
|
+
msgid "Pulp 3 export destination filepath"
|
|
3592
|
+
msgstr ""
|
|
3593
|
+
|
|
3526
3594
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3527
3595
|
msgstr ""
|
|
3528
3596
|
|
|
@@ -3577,6 +3645,12 @@ msgstr ""
|
|
|
3577
3645
|
msgid "Pulp task error"
|
|
3578
3646
|
msgstr "Error de tarea de Pulp"
|
|
3579
3647
|
|
|
3648
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3649
|
+
msgstr ""
|
|
3650
|
+
|
|
3651
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3652
|
+
msgstr ""
|
|
3653
|
+
|
|
3580
3654
|
msgid "Pulpcore"
|
|
3581
3655
|
msgstr ""
|
|
3582
3656
|
|
|
@@ -3714,6 +3788,9 @@ msgstr "Releasever para habilitar"
|
|
|
3714
3788
|
msgid "Reload data"
|
|
3715
3789
|
msgstr "Volver a cargar datos"
|
|
3716
3790
|
|
|
3791
|
+
msgid "Remote action:"
|
|
3792
|
+
msgstr ""
|
|
3793
|
+
|
|
3717
3794
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3718
3795
|
msgstr ""
|
|
3719
3796
|
|
|
@@ -3799,6 +3876,9 @@ msgstr "Retirando paquetes..."
|
|
|
3799
3876
|
msgid "Repo Type"
|
|
3800
3877
|
msgstr ""
|
|
3801
3878
|
|
|
3879
|
+
msgid "Report"
|
|
3880
|
+
msgstr ""
|
|
3881
|
+
|
|
3802
3882
|
# translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author gguerrer
|
|
3803
3883
|
msgid "Repositories"
|
|
3804
3884
|
msgstr "Repositorios"
|
|
@@ -3875,6 +3955,9 @@ msgstr ""
|
|
|
3875
3955
|
msgid "Resolve Traces"
|
|
3876
3956
|
msgstr ""
|
|
3877
3957
|
|
|
3958
|
+
msgid "Resolve traces for one or more hosts"
|
|
3959
|
+
msgstr ""
|
|
3960
|
+
|
|
3878
3961
|
msgid "Resource"
|
|
3879
3962
|
msgstr ""
|
|
3880
3963
|
|
|
@@ -3954,6 +4037,9 @@ msgstr "Devolver el contenido de una llave GPG de repositorio, que utiliza direc
|
|
|
3954
4037
|
msgid "Role"
|
|
3955
4038
|
msgstr ""
|
|
3956
4039
|
|
|
4040
|
+
msgid "Role of host"
|
|
4041
|
+
msgstr ""
|
|
4042
|
+
|
|
3957
4043
|
msgid "Run Sync Plan:"
|
|
3958
4044
|
msgstr ""
|
|
3959
4045
|
|
|
@@ -4054,6 +4140,9 @@ msgstr "Nivel de servicio %s"
|
|
|
4054
4140
|
msgid "Service Level (SLA)"
|
|
4055
4141
|
msgstr ""
|
|
4056
4142
|
|
|
4143
|
+
msgid "Service level of host"
|
|
4144
|
+
msgstr ""
|
|
4145
|
+
|
|
4057
4146
|
msgid "Service level to be used for autoheal"
|
|
4058
4147
|
msgstr ""
|
|
4059
4148
|
|
|
@@ -4149,6 +4238,9 @@ msgstr "Mostrar versiones disponibles para el host de contenido"
|
|
|
4149
4238
|
msgid "Show the available repository types"
|
|
4150
4239
|
msgstr ""
|
|
4151
4240
|
|
|
4241
|
+
msgid "Show the export history for a content view version"
|
|
4242
|
+
msgstr ""
|
|
4243
|
+
|
|
4152
4244
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4153
4245
|
msgstr ""
|
|
4154
4246
|
|
|
@@ -4158,6 +4250,12 @@ msgstr "Muestra información de versión"
|
|
|
4158
4250
|
msgid "Simple Content Access"
|
|
4159
4251
|
msgstr ""
|
|
4160
4252
|
|
|
4253
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4254
|
+
msgstr ""
|
|
4255
|
+
|
|
4256
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4257
|
+
msgstr ""
|
|
4258
|
+
|
|
4161
4259
|
msgid "Size of file to upload"
|
|
4162
4260
|
msgstr ""
|
|
4163
4261
|
|
|
@@ -4400,6 +4498,9 @@ msgstr "Sincronizar uno o más productos"
|
|
|
4400
4498
|
msgid "Sync plan identifier to attach"
|
|
4401
4499
|
msgstr "Identificador del plan de sincronización para vincular"
|
|
4402
4500
|
|
|
4501
|
+
msgid "Sync state"
|
|
4502
|
+
msgstr ""
|
|
4503
|
+
|
|
4403
4504
|
msgid "Synced Content"
|
|
4404
4505
|
msgstr ""
|
|
4405
4506
|
|
|
@@ -4510,6 +4611,9 @@ msgstr "Los siguientes hosts tienen erratas que aplican a ellos:"
|
|
|
4510
4611
|
msgid "The id of the host to alter"
|
|
4511
4612
|
msgstr ""
|
|
4512
4613
|
|
|
4614
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4615
|
+
msgstr ""
|
|
4616
|
+
|
|
4513
4617
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4514
4618
|
msgstr ""
|
|
4515
4619
|
|
|
@@ -4558,6 +4662,9 @@ msgstr ""
|
|
|
4558
4662
|
msgid "The requested resource does not belong to the specified organization"
|
|
4559
4663
|
msgstr ""
|
|
4560
4664
|
|
|
4665
|
+
msgid "The requested traces were not found for this host"
|
|
4666
|
+
msgstr ""
|
|
4667
|
+
|
|
4561
4668
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4562
4669
|
msgstr ""
|
|
4563
4670
|
|
|
@@ -4621,6 +4728,9 @@ msgstr ""
|
|
|
4621
4728
|
msgid "There's no running synchronization for this smart proxy."
|
|
4622
4729
|
msgstr ""
|
|
4623
4730
|
|
|
4731
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4732
|
+
msgstr ""
|
|
4733
|
+
|
|
4624
4734
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4625
4735
|
msgstr ""
|
|
4626
4736
|
|
|
@@ -4760,10 +4870,13 @@ msgstr ""
|
|
|
4760
4870
|
msgid "Unable to detect puppet path"
|
|
4761
4871
|
msgstr ""
|
|
4762
4872
|
|
|
4763
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
4873
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4764
4874
|
msgstr ""
|
|
4765
4875
|
|
|
4766
|
-
msgid "Unable to export
|
|
4876
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
4877
|
+
msgstr ""
|
|
4878
|
+
|
|
4879
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4767
4880
|
msgstr ""
|
|
4768
4881
|
|
|
4769
4882
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -4978,6 +5091,12 @@ msgstr ""
|
|
|
4978
5091
|
msgid "Updating Package..."
|
|
4979
5092
|
msgstr "Actualizando el paquete..."
|
|
4980
5093
|
|
|
5094
|
+
msgid "Updating System Purpose for host"
|
|
5095
|
+
msgstr ""
|
|
5096
|
+
|
|
5097
|
+
msgid "Updating System Purpose for host %s"
|
|
5098
|
+
msgstr ""
|
|
5099
|
+
|
|
4981
5100
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author Gladys Guerrero Lozano
|
|
4982
5101
|
msgid "Updating package group..."
|
|
4983
5102
|
msgstr "Actualización de grupo de paquetes..."
|
|
@@ -5033,9 +5152,15 @@ msgstr ""
|
|
|
5033
5152
|
msgid "Usage Type"
|
|
5034
5153
|
msgstr ""
|
|
5035
5154
|
|
|
5155
|
+
msgid "Usage of host"
|
|
5156
|
+
msgstr ""
|
|
5157
|
+
|
|
5036
5158
|
msgid "Use remote execution by default"
|
|
5037
5159
|
msgstr ""
|
|
5038
5160
|
|
|
5161
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5162
|
+
msgstr ""
|
|
5163
|
+
|
|
5039
5164
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5040
5165
|
msgstr "El usuario '%s' no ha especificado un ID de organización y no tiene una organización predeterminada."
|
|
5041
5166
|
|
|
@@ -5060,6 +5185,15 @@ msgstr ""
|
|
|
5060
5185
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5061
5186
|
msgstr ""
|
|
5062
5187
|
|
|
5188
|
+
msgid "Verify checksum"
|
|
5189
|
+
msgstr ""
|
|
5190
|
+
|
|
5191
|
+
msgid "Verify checksum for one or more products"
|
|
5192
|
+
msgstr ""
|
|
5193
|
+
|
|
5194
|
+
msgid "Verify checksum of repository contents"
|
|
5195
|
+
msgstr ""
|
|
5196
|
+
|
|
5063
5197
|
msgid "Version"
|
|
5064
5198
|
msgstr ""
|
|
5065
5199
|
|
|
@@ -5077,7 +5211,7 @@ msgstr ""
|
|
|
5077
5211
|
msgid "Virtual"
|
|
5078
5212
|
msgstr "Virtual"
|
|
5079
5213
|
|
|
5080
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5214
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5081
5215
|
msgstr ""
|
|
5082
5216
|
|
|
5083
5217
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5146,6 +5280,9 @@ msgstr "No puede establecer un parent_id de organización. Esta funcionalidad es
|
|
|
5146
5280
|
msgid "You currently don't have any Content Views."
|
|
5147
5281
|
msgstr ""
|
|
5148
5282
|
|
|
5283
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5284
|
+
msgstr ""
|
|
5285
|
+
|
|
5149
5286
|
msgid "You do not have permissions to delete %s"
|
|
5150
5287
|
msgstr "No tiene permisos para borrar %s"
|
|
5151
5288
|
|
|
@@ -5563,9 +5700,6 @@ msgstr ""
|
|
|
5563
5700
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5564
5701
|
msgstr ""
|
|
5565
5702
|
|
|
5566
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5567
|
-
msgstr ""
|
|
5568
|
-
|
|
5569
5703
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5570
5704
|
msgstr ""
|
|
5571
5705
|
|
|
@@ -5638,6 +5772,9 @@ msgstr "número máximo de hosts de contenido registrados"
|
|
|
5638
5772
|
msgid "maximum size of each ISO in MB"
|
|
5639
5773
|
msgstr ""
|
|
5640
5774
|
|
|
5775
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
5776
|
+
msgstr ""
|
|
5777
|
+
|
|
5641
5778
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5642
5779
|
msgstr ""
|
|
5643
5780
|
|
|
@@ -5916,6 +6053,9 @@ msgstr ""
|
|
|
5916
6053
|
msgid "the uuid of the puppet module to associate"
|
|
5917
6054
|
msgstr "el UUID del módulo Puppet a asociar"
|
|
5918
6055
|
|
|
6056
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
6057
|
+
msgstr ""
|
|
6058
|
+
|
|
5919
6059
|
msgid "true if the latest version of the component's content view is desired"
|
|
5920
6060
|
msgstr ""
|
|
5921
6061
|
|