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/cs/katello.po
CHANGED
|
@@ -420,6 +420,9 @@ msgstr ""
|
|
|
420
420
|
msgid "Adding content units"
|
|
421
421
|
msgstr ""
|
|
422
422
|
|
|
423
|
+
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}"
|
|
424
|
+
msgstr ""
|
|
425
|
+
|
|
423
426
|
msgid "Addons"
|
|
424
427
|
msgstr ""
|
|
425
428
|
|
|
@@ -524,6 +527,9 @@ msgstr ""
|
|
|
524
527
|
msgid "Artifacts"
|
|
525
528
|
msgstr ""
|
|
526
529
|
|
|
530
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
|
531
|
+
msgstr ""
|
|
532
|
+
|
|
527
533
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
|
528
534
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
|
529
535
|
msgstr[0] ""
|
|
@@ -570,9 +576,6 @@ msgstr ""
|
|
|
570
576
|
msgid "Author"
|
|
571
577
|
msgstr ""
|
|
572
578
|
|
|
573
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
574
|
-
msgstr ""
|
|
575
|
-
|
|
576
579
|
msgid "Auto Publish - Triggered by '%s'"
|
|
577
580
|
msgstr ""
|
|
578
581
|
|
|
@@ -781,6 +784,9 @@ msgstr ""
|
|
|
781
784
|
msgid "Cannot delete view while it exists in environments"
|
|
782
785
|
msgstr ""
|
|
783
786
|
|
|
787
|
+
msgid "Cannot import a composite content view"
|
|
788
|
+
msgstr ""
|
|
789
|
+
|
|
784
790
|
msgid "Cannot import a custom subscription from a redhat product."
|
|
785
791
|
msgstr ""
|
|
786
792
|
|
|
@@ -856,6 +862,9 @@ msgstr ""
|
|
|
856
862
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
|
857
863
|
msgstr ""
|
|
858
864
|
|
|
865
|
+
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
|
866
|
+
msgstr ""
|
|
867
|
+
|
|
859
868
|
msgid "Click here to go to the tasks page for the task."
|
|
860
869
|
msgstr ""
|
|
861
870
|
|
|
@@ -985,9 +994,15 @@ msgstr ""
|
|
|
985
994
|
msgid "Content View Version not set"
|
|
986
995
|
msgstr ""
|
|
987
996
|
|
|
997
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
998
|
+
msgstr ""
|
|
999
|
+
|
|
988
1000
|
msgid "Content View and Environment not set for registration."
|
|
989
1001
|
msgstr ""
|
|
990
1002
|
|
|
1003
|
+
msgid "Content View id"
|
|
1004
|
+
msgstr ""
|
|
1005
|
+
|
|
991
1006
|
#, fuzzy
|
|
992
1007
|
msgid "Content Views"
|
|
993
1008
|
msgstr "Vyhledat obsah"
|
|
@@ -1049,10 +1064,10 @@ msgstr ""
|
|
|
1049
1064
|
msgid "Copy an activation key"
|
|
1050
1065
|
msgstr "Číst aktivační klíče"
|
|
1051
1066
|
|
|
1052
|
-
msgid "
|
|
1067
|
+
msgid "Copy version units to library"
|
|
1053
1068
|
msgstr ""
|
|
1054
1069
|
|
|
1055
|
-
msgid "
|
|
1070
|
+
msgid "Cores: %s"
|
|
1056
1071
|
msgstr ""
|
|
1057
1072
|
|
|
1058
1073
|
#, fuzzy
|
|
@@ -1065,6 +1080,9 @@ msgstr ""
|
|
|
1065
1080
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1066
1081
|
msgstr ""
|
|
1067
1082
|
|
|
1083
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1084
|
+
msgstr ""
|
|
1085
|
+
|
|
1068
1086
|
msgid "Could not find Environment with ids: %s"
|
|
1069
1087
|
msgstr ""
|
|
1070
1088
|
|
|
@@ -1098,9 +1116,6 @@ msgstr ""
|
|
|
1098
1116
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1099
1117
|
msgstr ""
|
|
1100
1118
|
|
|
1101
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1102
|
-
msgstr ""
|
|
1103
|
-
|
|
1104
1119
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1105
1120
|
msgstr ""
|
|
1106
1121
|
|
|
@@ -1197,9 +1212,6 @@ msgstr ""
|
|
|
1197
1212
|
msgid "Couldn't find subject of synchronization"
|
|
1198
1213
|
msgstr ""
|
|
1199
1214
|
|
|
1200
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1201
|
-
msgstr ""
|
|
1202
|
-
|
|
1203
1215
|
msgid "Count"
|
|
1204
1216
|
msgstr ""
|
|
1205
1217
|
|
|
@@ -1493,6 +1505,15 @@ msgstr ""
|
|
|
1493
1505
|
msgid "Desired quantity of the pool"
|
|
1494
1506
|
msgstr ""
|
|
1495
1507
|
|
|
1508
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1509
|
+
msgstr ""
|
|
1510
|
+
|
|
1511
|
+
msgid "Destination Server name"
|
|
1512
|
+
msgstr ""
|
|
1513
|
+
|
|
1514
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1515
|
+
msgstr ""
|
|
1516
|
+
|
|
1496
1517
|
msgid "Destroy"
|
|
1497
1518
|
msgstr ""
|
|
1498
1519
|
|
|
@@ -1546,6 +1567,9 @@ msgstr ""
|
|
|
1546
1567
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1547
1568
|
msgstr ""
|
|
1548
1569
|
|
|
1570
|
+
msgid "Directory containing the exported Content View Version"
|
|
1571
|
+
msgstr ""
|
|
1572
|
+
|
|
1549
1573
|
msgid "Disable"
|
|
1550
1574
|
msgstr ""
|
|
1551
1575
|
|
|
@@ -1561,6 +1585,9 @@ msgstr ""
|
|
|
1561
1585
|
msgid "Disable simple content access for a manifest"
|
|
1562
1586
|
msgstr ""
|
|
1563
1587
|
|
|
1588
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1589
|
+
msgstr ""
|
|
1590
|
+
|
|
1564
1591
|
msgid "Disconnected mode"
|
|
1565
1592
|
msgstr ""
|
|
1566
1593
|
|
|
@@ -1644,6 +1671,9 @@ msgstr ""
|
|
|
1644
1671
|
msgid "Enabled Repositories"
|
|
1645
1672
|
msgstr ""
|
|
1646
1673
|
|
|
1674
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1675
|
+
msgstr ""
|
|
1676
|
+
|
|
1647
1677
|
msgid "End Date"
|
|
1648
1678
|
msgstr ""
|
|
1649
1679
|
|
|
@@ -1765,6 +1795,9 @@ msgstr ""
|
|
|
1765
1795
|
msgid "Export to ISO format"
|
|
1766
1796
|
msgstr ""
|
|
1767
1797
|
|
|
1798
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1799
|
+
msgstr ""
|
|
1800
|
+
|
|
1768
1801
|
msgid "Exported version"
|
|
1769
1802
|
msgstr ""
|
|
1770
1803
|
|
|
@@ -1907,10 +1940,6 @@ msgstr ""
|
|
|
1907
1940
|
msgid "GPG Key URL"
|
|
1908
1941
|
msgstr ""
|
|
1909
1942
|
|
|
1910
|
-
#, fuzzy
|
|
1911
|
-
msgid "GPG Keys"
|
|
1912
|
-
msgstr "GPG klíče"
|
|
1913
|
-
|
|
1914
1943
|
msgid "Generate and Download"
|
|
1915
1944
|
msgstr ""
|
|
1916
1945
|
|
|
@@ -2018,6 +2047,9 @@ msgstr ""
|
|
|
2018
2047
|
msgid "Host content and subscription details"
|
|
2019
2048
|
msgstr ""
|
|
2020
2049
|
|
|
2050
|
+
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."
|
|
2051
|
+
msgstr ""
|
|
2052
|
+
|
|
2021
2053
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
2022
2054
|
msgstr ""
|
|
2023
2055
|
|
|
@@ -2239,6 +2271,12 @@ msgstr ""
|
|
|
2239
2271
|
msgid "Immediate"
|
|
2240
2272
|
msgstr ""
|
|
2241
2273
|
|
|
2274
|
+
msgid "Import"
|
|
2275
|
+
msgstr ""
|
|
2276
|
+
|
|
2277
|
+
msgid "Import Content View Version"
|
|
2278
|
+
msgstr ""
|
|
2279
|
+
|
|
2242
2280
|
#, fuzzy
|
|
2243
2281
|
msgid "Import Manifest"
|
|
2244
2282
|
msgstr "Závažnost: Důležitá"
|
|
@@ -2261,6 +2299,9 @@ msgstr ""
|
|
|
2261
2299
|
msgid "Import a Manifest using the manifest tab above."
|
|
2262
2300
|
msgstr ""
|
|
2263
2301
|
|
|
2302
|
+
msgid "Import a content view version"
|
|
2303
|
+
msgstr ""
|
|
2304
|
+
|
|
2264
2305
|
#, fuzzy
|
|
2265
2306
|
msgid "Import facts"
|
|
2266
2307
|
msgstr "Import historie"
|
|
@@ -2437,6 +2478,9 @@ msgstr ""
|
|
|
2437
2478
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2438
2479
|
msgstr ""
|
|
2439
2480
|
|
|
2481
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2482
|
+
msgstr ""
|
|
2483
|
+
|
|
2440
2484
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2441
2485
|
msgstr ""
|
|
2442
2486
|
|
|
@@ -2449,6 +2493,9 @@ msgstr ""
|
|
|
2449
2493
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2450
2494
|
msgstr ""
|
|
2451
2495
|
|
|
2496
|
+
msgid "Invalid path specified."
|
|
2497
|
+
msgstr ""
|
|
2498
|
+
|
|
2452
2499
|
msgid ""
|
|
2453
2500
|
"Invalid puppet module parameters specified. \\\n"
|
|
2454
2501
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2526,9 +2573,6 @@ msgstr ""
|
|
|
2526
2573
|
msgid "Learn more about adding Subscription Manifests"
|
|
2527
2574
|
msgstr ""
|
|
2528
2575
|
|
|
2529
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2530
|
-
msgstr ""
|
|
2531
|
-
|
|
2532
2576
|
msgid "Library lifecycle environments may not be deleted."
|
|
2533
2577
|
msgstr ""
|
|
2534
2578
|
|
|
@@ -2793,6 +2837,9 @@ msgstr ""
|
|
|
2793
2837
|
msgid "List srpms"
|
|
2794
2838
|
msgstr ""
|
|
2795
2839
|
|
|
2840
|
+
msgid "List subscriptions"
|
|
2841
|
+
msgstr ""
|
|
2842
|
+
|
|
2796
2843
|
#, fuzzy
|
|
2797
2844
|
msgid "List sync plans"
|
|
2798
2845
|
msgstr "Vybrat distribuci"
|
|
@@ -2881,6 +2928,9 @@ msgstr ""
|
|
|
2881
2928
|
msgid "Messaging connection"
|
|
2882
2929
|
msgstr ""
|
|
2883
2930
|
|
|
2931
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
2932
|
+
msgstr ""
|
|
2933
|
+
|
|
2884
2934
|
msgid "Mismatched"
|
|
2885
2935
|
msgstr ""
|
|
2886
2936
|
|
|
@@ -3032,12 +3082,18 @@ msgstr ""
|
|
|
3032
3082
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
3033
3083
|
msgstr ""
|
|
3034
3084
|
|
|
3085
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3086
|
+
msgstr ""
|
|
3087
|
+
|
|
3035
3088
|
msgid "No manifest file uploaded"
|
|
3036
3089
|
msgstr ""
|
|
3037
3090
|
|
|
3038
3091
|
msgid "No matching content views found"
|
|
3039
3092
|
msgstr ""
|
|
3040
3093
|
|
|
3094
|
+
msgid "No matching repositories found"
|
|
3095
|
+
msgstr ""
|
|
3096
|
+
|
|
3041
3097
|
msgid "No new packages installed"
|
|
3042
3098
|
msgstr "Žádné nové instalační balíčky"
|
|
3043
3099
|
|
|
@@ -3177,6 +3233,9 @@ msgstr ""
|
|
|
3177
3233
|
msgid "On-disk location for exported repositories"
|
|
3178
3234
|
msgstr ""
|
|
3179
3235
|
|
|
3236
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3237
|
+
msgstr ""
|
|
3238
|
+
|
|
3180
3239
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3181
3240
|
msgstr ""
|
|
3182
3241
|
|
|
@@ -3208,6 +3267,9 @@ msgstr ""
|
|
|
3208
3267
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3209
3268
|
msgstr ""
|
|
3210
3269
|
|
|
3270
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3271
|
+
msgstr ""
|
|
3272
|
+
|
|
3211
3273
|
msgid "Organization"
|
|
3212
3274
|
msgstr "Organizace"
|
|
3213
3275
|
|
|
@@ -3489,6 +3551,9 @@ msgstr ""
|
|
|
3489
3551
|
msgid "Plan numeric identifier"
|
|
3490
3552
|
msgstr ""
|
|
3491
3553
|
|
|
3554
|
+
msgid "Please add some repositories."
|
|
3555
|
+
msgstr ""
|
|
3556
|
+
|
|
3492
3557
|
msgid "Please enter a positive number above zero"
|
|
3493
3558
|
msgstr ""
|
|
3494
3559
|
|
|
@@ -3625,6 +3690,9 @@ msgstr ""
|
|
|
3625
3690
|
msgid "Pulp"
|
|
3626
3691
|
msgstr ""
|
|
3627
3692
|
|
|
3693
|
+
msgid "Pulp 3 export destination filepath"
|
|
3694
|
+
msgstr ""
|
|
3695
|
+
|
|
3628
3696
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3629
3697
|
msgstr ""
|
|
3630
3698
|
|
|
@@ -3679,6 +3747,12 @@ msgstr ""
|
|
|
3679
3747
|
msgid "Pulp task error"
|
|
3680
3748
|
msgstr ""
|
|
3681
3749
|
|
|
3750
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3751
|
+
msgstr ""
|
|
3752
|
+
|
|
3753
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3754
|
+
msgstr ""
|
|
3755
|
+
|
|
3682
3756
|
msgid "Pulpcore"
|
|
3683
3757
|
msgstr ""
|
|
3684
3758
|
|
|
@@ -3818,6 +3892,9 @@ msgstr ""
|
|
|
3818
3892
|
msgid "Reload data"
|
|
3819
3893
|
msgstr ""
|
|
3820
3894
|
|
|
3895
|
+
msgid "Remote action:"
|
|
3896
|
+
msgstr ""
|
|
3897
|
+
|
|
3821
3898
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3822
3899
|
msgstr ""
|
|
3823
3900
|
|
|
@@ -3910,6 +3987,9 @@ msgstr "Smazat balíček filtrů"
|
|
|
3910
3987
|
msgid "Repo Type"
|
|
3911
3988
|
msgstr ""
|
|
3912
3989
|
|
|
3990
|
+
msgid "Report"
|
|
3991
|
+
msgstr ""
|
|
3992
|
+
|
|
3913
3993
|
#, fuzzy
|
|
3914
3994
|
msgid "Repositories"
|
|
3915
3995
|
msgstr "Repozitáře"
|
|
@@ -3986,6 +4066,9 @@ msgstr ""
|
|
|
3986
4066
|
msgid "Resolve Traces"
|
|
3987
4067
|
msgstr ""
|
|
3988
4068
|
|
|
4069
|
+
msgid "Resolve traces for one or more hosts"
|
|
4070
|
+
msgstr ""
|
|
4071
|
+
|
|
3989
4072
|
msgid "Resource"
|
|
3990
4073
|
msgstr ""
|
|
3991
4074
|
|
|
@@ -4064,6 +4147,9 @@ msgstr ""
|
|
|
4064
4147
|
msgid "Role"
|
|
4065
4148
|
msgstr ""
|
|
4066
4149
|
|
|
4150
|
+
msgid "Role of host"
|
|
4151
|
+
msgstr ""
|
|
4152
|
+
|
|
4067
4153
|
msgid "Run Sync Plan:"
|
|
4068
4154
|
msgstr ""
|
|
4069
4155
|
|
|
@@ -4165,6 +4251,9 @@ msgstr ""
|
|
|
4165
4251
|
msgid "Service Level (SLA)"
|
|
4166
4252
|
msgstr ""
|
|
4167
4253
|
|
|
4254
|
+
msgid "Service level of host"
|
|
4255
|
+
msgstr ""
|
|
4256
|
+
|
|
4168
4257
|
msgid "Service level to be used for autoheal"
|
|
4169
4258
|
msgstr ""
|
|
4170
4259
|
|
|
@@ -4267,6 +4356,9 @@ msgstr ""
|
|
|
4267
4356
|
msgid "Show the available repository types"
|
|
4268
4357
|
msgstr ""
|
|
4269
4358
|
|
|
4359
|
+
msgid "Show the export history for a content view version"
|
|
4360
|
+
msgstr ""
|
|
4361
|
+
|
|
4270
4362
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4271
4363
|
msgstr ""
|
|
4272
4364
|
|
|
@@ -4276,6 +4368,12 @@ msgstr ""
|
|
|
4276
4368
|
msgid "Simple Content Access"
|
|
4277
4369
|
msgstr ""
|
|
4278
4370
|
|
|
4371
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4372
|
+
msgstr ""
|
|
4373
|
+
|
|
4374
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4375
|
+
msgstr ""
|
|
4376
|
+
|
|
4279
4377
|
msgid "Size of file to upload"
|
|
4280
4378
|
msgstr ""
|
|
4281
4379
|
|
|
@@ -4521,6 +4619,9 @@ msgstr ""
|
|
|
4521
4619
|
msgid "Sync plan identifier to attach"
|
|
4522
4620
|
msgstr ""
|
|
4523
4621
|
|
|
4622
|
+
msgid "Sync state"
|
|
4623
|
+
msgstr ""
|
|
4624
|
+
|
|
4524
4625
|
msgid "Synced Content"
|
|
4525
4626
|
msgstr ""
|
|
4526
4627
|
|
|
@@ -4632,6 +4733,9 @@ msgstr ""
|
|
|
4632
4733
|
msgid "The id of the host to alter"
|
|
4633
4734
|
msgstr ""
|
|
4634
4735
|
|
|
4736
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4737
|
+
msgstr ""
|
|
4738
|
+
|
|
4635
4739
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4636
4740
|
msgstr ""
|
|
4637
4741
|
|
|
@@ -4681,6 +4785,9 @@ msgstr ""
|
|
|
4681
4785
|
msgid "The requested resource does not belong to the specified organization"
|
|
4682
4786
|
msgstr ""
|
|
4683
4787
|
|
|
4788
|
+
msgid "The requested traces were not found for this host"
|
|
4789
|
+
msgstr ""
|
|
4790
|
+
|
|
4684
4791
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4685
4792
|
msgstr ""
|
|
4686
4793
|
|
|
@@ -4743,6 +4850,9 @@ msgstr ""
|
|
|
4743
4850
|
msgid "There's no running synchronization for this smart proxy."
|
|
4744
4851
|
msgstr ""
|
|
4745
4852
|
|
|
4853
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4854
|
+
msgstr ""
|
|
4855
|
+
|
|
4746
4856
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4747
4857
|
msgstr ""
|
|
4748
4858
|
|
|
@@ -4881,10 +4991,13 @@ msgstr ""
|
|
|
4881
4991
|
msgid "Unable to detect puppet path"
|
|
4882
4992
|
msgstr ""
|
|
4883
4993
|
|
|
4884
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
4994
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4885
4995
|
msgstr ""
|
|
4886
4996
|
|
|
4887
|
-
msgid "Unable to export
|
|
4997
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
4998
|
+
msgstr ""
|
|
4999
|
+
|
|
5000
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4888
5001
|
msgstr ""
|
|
4889
5002
|
|
|
4890
5003
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -5108,6 +5221,12 @@ msgstr ""
|
|
|
5108
5221
|
msgid "Updating Package..."
|
|
5109
5222
|
msgstr "Smazat balíček filtrů"
|
|
5110
5223
|
|
|
5224
|
+
msgid "Updating System Purpose for host"
|
|
5225
|
+
msgstr ""
|
|
5226
|
+
|
|
5227
|
+
msgid "Updating System Purpose for host %s"
|
|
5228
|
+
msgstr ""
|
|
5229
|
+
|
|
5111
5230
|
#, fuzzy
|
|
5112
5231
|
msgid "Updating package group..."
|
|
5113
5232
|
msgstr "Smazat balíček filtrů"
|
|
@@ -5163,9 +5282,15 @@ msgstr ""
|
|
|
5163
5282
|
msgid "Usage Type"
|
|
5164
5283
|
msgstr ""
|
|
5165
5284
|
|
|
5285
|
+
msgid "Usage of host"
|
|
5286
|
+
msgstr ""
|
|
5287
|
+
|
|
5166
5288
|
msgid "Use remote execution by default"
|
|
5167
5289
|
msgstr ""
|
|
5168
5290
|
|
|
5291
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5292
|
+
msgstr ""
|
|
5293
|
+
|
|
5169
5294
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5170
5295
|
msgstr ""
|
|
5171
5296
|
|
|
@@ -5190,6 +5315,15 @@ msgstr ""
|
|
|
5190
5315
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5191
5316
|
msgstr ""
|
|
5192
5317
|
|
|
5318
|
+
msgid "Verify checksum"
|
|
5319
|
+
msgstr ""
|
|
5320
|
+
|
|
5321
|
+
msgid "Verify checksum for one or more products"
|
|
5322
|
+
msgstr ""
|
|
5323
|
+
|
|
5324
|
+
msgid "Verify checksum of repository contents"
|
|
5325
|
+
msgstr ""
|
|
5326
|
+
|
|
5193
5327
|
msgid "Version"
|
|
5194
5328
|
msgstr ""
|
|
5195
5329
|
|
|
@@ -5206,7 +5340,7 @@ msgstr ""
|
|
|
5206
5340
|
msgid "Virtual"
|
|
5207
5341
|
msgstr "Virtuální"
|
|
5208
5342
|
|
|
5209
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5343
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5210
5344
|
msgstr ""
|
|
5211
5345
|
|
|
5212
5346
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5275,6 +5409,9 @@ msgstr ""
|
|
|
5275
5409
|
msgid "You currently don't have any Content Views."
|
|
5276
5410
|
msgstr ""
|
|
5277
5411
|
|
|
5412
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5413
|
+
msgstr ""
|
|
5414
|
+
|
|
5278
5415
|
msgid "You do not have permissions to delete %s"
|
|
5279
5416
|
msgstr ""
|
|
5280
5417
|
|
|
@@ -5709,9 +5846,6 @@ msgstr ""
|
|
|
5709
5846
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5710
5847
|
msgstr ""
|
|
5711
5848
|
|
|
5712
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5713
|
-
msgstr ""
|
|
5714
|
-
|
|
5715
5849
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5716
5850
|
msgstr ""
|
|
5717
5851
|
|
|
@@ -5789,6 +5923,9 @@ msgstr ""
|
|
|
5789
5923
|
msgid "maximum size of each ISO in MB"
|
|
5790
5924
|
msgstr ""
|
|
5791
5925
|
|
|
5926
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
5927
|
+
msgstr ""
|
|
5928
|
+
|
|
5792
5929
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5793
5930
|
msgstr ""
|
|
5794
5931
|
|
|
@@ -6083,6 +6220,9 @@ msgstr ""
|
|
|
6083
6220
|
msgid "the uuid of the puppet module to associate"
|
|
6084
6221
|
msgstr ""
|
|
6085
6222
|
|
|
6223
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
6224
|
+
msgstr ""
|
|
6225
|
+
|
|
6086
6226
|
msgid "true if the latest version of the component's content view is desired"
|
|
6087
6227
|
msgstr ""
|
|
6088
6228
|
|