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/pa/katello.po
CHANGED
|
@@ -465,6 +465,9 @@ msgstr ""
|
|
|
465
465
|
msgid "Adding content units"
|
|
466
466
|
msgstr ""
|
|
467
467
|
|
|
468
|
+
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}"
|
|
469
|
+
msgstr ""
|
|
470
|
+
|
|
468
471
|
msgid "Addons"
|
|
469
472
|
msgstr ""
|
|
470
473
|
|
|
@@ -569,6 +572,9 @@ msgstr ""
|
|
|
569
572
|
msgid "Artifacts"
|
|
570
573
|
msgstr ""
|
|
571
574
|
|
|
575
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
|
576
|
+
msgstr ""
|
|
577
|
+
|
|
572
578
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
|
573
579
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
|
574
580
|
msgstr[0] ""
|
|
@@ -617,9 +623,6 @@ msgstr ""
|
|
|
617
623
|
msgid "Author"
|
|
618
624
|
msgstr ""
|
|
619
625
|
|
|
620
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
621
|
-
msgstr ""
|
|
622
|
-
|
|
623
626
|
msgid "Auto Publish - Triggered by '%s'"
|
|
624
627
|
msgstr ""
|
|
625
628
|
|
|
@@ -841,6 +844,9 @@ msgstr ""
|
|
|
841
844
|
msgid "Cannot delete view while it exists in environments"
|
|
842
845
|
msgstr "ਟੈਂਪਲਿਟ ਨੂੰ ਸੋਧ ਨਹੀਂ ਸਕਦਾ ਜੋ ਹੋਰ ਵਾਤਾਵਰਨ ਹੈ"
|
|
843
846
|
|
|
847
|
+
msgid "Cannot import a composite content view"
|
|
848
|
+
msgstr ""
|
|
849
|
+
|
|
844
850
|
msgid "Cannot import a custom subscription from a redhat product."
|
|
845
851
|
msgstr ""
|
|
846
852
|
|
|
@@ -917,6 +923,9 @@ msgstr ""
|
|
|
917
923
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
|
918
924
|
msgstr ""
|
|
919
925
|
|
|
926
|
+
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
|
927
|
+
msgstr ""
|
|
928
|
+
|
|
920
929
|
msgid "Click here to go to the tasks page for the task."
|
|
921
930
|
msgstr ""
|
|
922
931
|
|
|
@@ -1046,9 +1055,15 @@ msgstr ""
|
|
|
1046
1055
|
msgid "Content View Version not set"
|
|
1047
1056
|
msgstr ""
|
|
1048
1057
|
|
|
1058
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
1059
|
+
msgstr ""
|
|
1060
|
+
|
|
1049
1061
|
msgid "Content View and Environment not set for registration."
|
|
1050
1062
|
msgstr ""
|
|
1051
1063
|
|
|
1064
|
+
msgid "Content View id"
|
|
1065
|
+
msgstr ""
|
|
1066
|
+
|
|
1052
1067
|
#, fuzzy
|
|
1053
1068
|
msgid "Content Views"
|
|
1054
1069
|
msgstr "ਸੰਖੇਪ"
|
|
@@ -1109,13 +1124,13 @@ msgstr ""
|
|
|
1109
1124
|
msgid "Copy an activation key"
|
|
1110
1125
|
msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
|
|
1111
1126
|
|
|
1127
|
+
msgid "Copy version units to library"
|
|
1128
|
+
msgstr ""
|
|
1129
|
+
|
|
1112
1130
|
#, fuzzy
|
|
1113
1131
|
msgid "Cores: %s"
|
|
1114
1132
|
msgstr "ਕਾਰਨ: %s"
|
|
1115
1133
|
|
|
1116
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
|
1117
|
-
msgstr ""
|
|
1118
|
-
|
|
1119
1134
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
|
1120
1135
|
msgid "Could not delete organization '%s'."
|
|
1121
1136
|
msgstr "ਸੰਗਠਨ '%s' ਨੂੰ ਹਟਾ ਨਹੀਂ ਸਕਿਆ।"
|
|
@@ -1126,6 +1141,9 @@ msgstr ""
|
|
|
1126
1141
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1127
1142
|
msgstr ""
|
|
1128
1143
|
|
|
1144
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1145
|
+
msgstr ""
|
|
1146
|
+
|
|
1129
1147
|
msgid "Could not find Environment with ids: %s"
|
|
1130
1148
|
msgstr ""
|
|
1131
1149
|
|
|
@@ -1159,9 +1177,6 @@ msgstr ""
|
|
|
1159
1177
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1160
1178
|
msgstr ""
|
|
1161
1179
|
|
|
1162
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1163
|
-
msgstr ""
|
|
1164
|
-
|
|
1165
1180
|
#, fuzzy
|
|
1166
1181
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1167
1182
|
msgstr "id '%s' ਵਾਲਾ ਉਤਪਾਦ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
|
|
@@ -1270,10 +1285,6 @@ msgstr ""
|
|
|
1270
1285
|
msgid "Couldn't find subject of synchronization"
|
|
1271
1286
|
msgstr "ਸਮਕਾਲਤਾ ਦਾ ਵਿਸ਼ਾ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
|
|
1272
1287
|
|
|
1273
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
|
1274
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1275
|
-
msgstr "ਸਮਕਾਲੀ ਪਲਾਨ '%{plan}' ਨੂੰ ਸੰਗਠਨ '%{org}' ਵਿੱਚ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
|
|
1276
|
-
|
|
1277
1288
|
msgid "Count"
|
|
1278
1289
|
msgstr ""
|
|
1279
1290
|
|
|
@@ -1560,6 +1571,15 @@ msgstr ""
|
|
|
1560
1571
|
msgid "Desired quantity of the pool"
|
|
1561
1572
|
msgstr ""
|
|
1562
1573
|
|
|
1574
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1575
|
+
msgstr ""
|
|
1576
|
+
|
|
1577
|
+
msgid "Destination Server name"
|
|
1578
|
+
msgstr ""
|
|
1579
|
+
|
|
1580
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1581
|
+
msgstr ""
|
|
1582
|
+
|
|
1563
1583
|
msgid "Destroy"
|
|
1564
1584
|
msgstr ""
|
|
1565
1585
|
|
|
@@ -1611,6 +1631,9 @@ msgstr ""
|
|
|
1611
1631
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1612
1632
|
msgstr ""
|
|
1613
1633
|
|
|
1634
|
+
msgid "Directory containing the exported Content View Version"
|
|
1635
|
+
msgstr ""
|
|
1636
|
+
|
|
1614
1637
|
msgid "Disable"
|
|
1615
1638
|
msgstr ""
|
|
1616
1639
|
|
|
@@ -1626,6 +1649,9 @@ msgstr ""
|
|
|
1626
1649
|
msgid "Disable simple content access for a manifest"
|
|
1627
1650
|
msgstr ""
|
|
1628
1651
|
|
|
1652
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1653
|
+
msgstr ""
|
|
1654
|
+
|
|
1629
1655
|
msgid "Disconnected mode"
|
|
1630
1656
|
msgstr ""
|
|
1631
1657
|
|
|
@@ -1710,6 +1736,9 @@ msgstr ""
|
|
|
1710
1736
|
msgid "Enabled Repositories"
|
|
1711
1737
|
msgstr ""
|
|
1712
1738
|
|
|
1739
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1740
|
+
msgstr ""
|
|
1741
|
+
|
|
1713
1742
|
msgid "End Date"
|
|
1714
1743
|
msgstr ""
|
|
1715
1744
|
|
|
@@ -1844,6 +1873,9 @@ msgstr ""
|
|
|
1844
1873
|
msgid "Export to ISO format"
|
|
1845
1874
|
msgstr ""
|
|
1846
1875
|
|
|
1876
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1877
|
+
msgstr ""
|
|
1878
|
+
|
|
1847
1879
|
msgid "Exported version"
|
|
1848
1880
|
msgstr ""
|
|
1849
1881
|
|
|
@@ -1987,10 +2019,6 @@ msgstr ""
|
|
|
1987
2019
|
msgid "GPG Key URL"
|
|
1988
2020
|
msgstr ""
|
|
1989
2021
|
|
|
1990
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
|
1991
|
-
msgid "GPG Keys"
|
|
1992
|
-
msgstr "GPG ਕੁੰਜੀਆਂ"
|
|
1993
|
-
|
|
1994
2022
|
msgid "Generate and Download"
|
|
1995
2023
|
msgstr ""
|
|
1996
2024
|
|
|
@@ -2097,6 +2125,9 @@ msgstr ""
|
|
|
2097
2125
|
msgid "Host content and subscription details"
|
|
2098
2126
|
msgstr ""
|
|
2099
2127
|
|
|
2128
|
+
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."
|
|
2129
|
+
msgstr ""
|
|
2130
|
+
|
|
2100
2131
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
2101
2132
|
msgstr ""
|
|
2102
2133
|
|
|
@@ -2317,6 +2348,12 @@ msgstr ""
|
|
|
2317
2348
|
msgid "Immediate"
|
|
2318
2349
|
msgstr ""
|
|
2319
2350
|
|
|
2351
|
+
msgid "Import"
|
|
2352
|
+
msgstr ""
|
|
2353
|
+
|
|
2354
|
+
msgid "Import Content View Version"
|
|
2355
|
+
msgstr ""
|
|
2356
|
+
|
|
2320
2357
|
#, fuzzy
|
|
2321
2358
|
msgid "Import Manifest"
|
|
2322
2359
|
msgstr "ਇੰਪੋਰਟ"
|
|
@@ -2339,6 +2376,9 @@ msgstr ""
|
|
|
2339
2376
|
msgid "Import a Manifest using the manifest tab above."
|
|
2340
2377
|
msgstr ""
|
|
2341
2378
|
|
|
2379
|
+
msgid "Import a content view version"
|
|
2380
|
+
msgstr ""
|
|
2381
|
+
|
|
2342
2382
|
#, fuzzy
|
|
2343
2383
|
msgid "Import facts"
|
|
2344
2384
|
msgstr "ਇੰਪੋਰਟ"
|
|
@@ -2516,6 +2556,9 @@ msgstr ""
|
|
|
2516
2556
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2517
2557
|
msgstr ""
|
|
2518
2558
|
|
|
2559
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2560
|
+
msgstr ""
|
|
2561
|
+
|
|
2519
2562
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
|
2520
2563
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2521
2564
|
msgstr "ਇਸ ਕਾਰਵਾਈ ਲਈ ਬੇਨਤੀ ਵਿੱਚ ਗਲਤ ਪੈਰਾਮੀਟਰ ਦਿੱਤੇ ਹਨ। ਕਿਰਪਾ ਕਰਕੇ ਸਿਸਟਮ ਪਰਬੰਧਕ ਨਾਲ ਸੰਪਰਕ ਕਰੋ।"
|
|
@@ -2530,6 +2573,9 @@ msgstr ""
|
|
|
2530
2573
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2531
2574
|
msgstr ""
|
|
2532
2575
|
|
|
2576
|
+
msgid "Invalid path specified."
|
|
2577
|
+
msgstr ""
|
|
2578
|
+
|
|
2533
2579
|
msgid ""
|
|
2534
2580
|
"Invalid puppet module parameters specified. \\\n"
|
|
2535
2581
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2607,9 +2653,6 @@ msgstr ""
|
|
|
2607
2653
|
msgid "Learn more about adding Subscription Manifests"
|
|
2608
2654
|
msgstr ""
|
|
2609
2655
|
|
|
2610
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2611
|
-
msgstr ""
|
|
2612
|
-
|
|
2613
2656
|
#, fuzzy
|
|
2614
2657
|
msgid "Library lifecycle environments may not be deleted."
|
|
2615
2658
|
msgstr "ਇਨਵਾਇਰਮੈਂਟ '%s' ਹਟਾਇਆ ਗਿਆ ਹੈ।"
|
|
@@ -2864,6 +2907,9 @@ msgstr ""
|
|
|
2864
2907
|
msgid "List srpms"
|
|
2865
2908
|
msgstr ""
|
|
2866
2909
|
|
|
2910
|
+
msgid "List subscriptions"
|
|
2911
|
+
msgstr ""
|
|
2912
|
+
|
|
2867
2913
|
msgid "List sync plans"
|
|
2868
2914
|
msgstr ""
|
|
2869
2915
|
|
|
@@ -2952,6 +2998,9 @@ msgstr "ਸੁਨੇਹਾ"
|
|
|
2952
2998
|
msgid "Messaging connection"
|
|
2953
2999
|
msgstr ""
|
|
2954
3000
|
|
|
3001
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
3002
|
+
msgstr ""
|
|
3003
|
+
|
|
2955
3004
|
msgid "Mismatched"
|
|
2956
3005
|
msgstr ""
|
|
2957
3006
|
|
|
@@ -3102,12 +3151,18 @@ msgstr ""
|
|
|
3102
3151
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
3103
3152
|
msgstr ""
|
|
3104
3153
|
|
|
3154
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3155
|
+
msgstr ""
|
|
3156
|
+
|
|
3105
3157
|
msgid "No manifest file uploaded"
|
|
3106
3158
|
msgstr ""
|
|
3107
3159
|
|
|
3108
3160
|
msgid "No matching content views found"
|
|
3109
3161
|
msgstr ""
|
|
3110
3162
|
|
|
3163
|
+
msgid "No matching repositories found"
|
|
3164
|
+
msgstr ""
|
|
3165
|
+
|
|
3111
3166
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
|
|
3112
3167
|
msgid "No new packages installed"
|
|
3113
3168
|
msgstr "ਕੋਈ ਨਵਾਂ ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ"
|
|
@@ -3250,6 +3305,9 @@ msgstr ""
|
|
|
3250
3305
|
msgid "On-disk location for exported repositories"
|
|
3251
3306
|
msgstr ""
|
|
3252
3307
|
|
|
3308
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3309
|
+
msgstr ""
|
|
3310
|
+
|
|
3253
3311
|
#, fuzzy
|
|
3254
3312
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3255
3313
|
msgstr "organization_id ਲੋੜੀਂਦਾ ਹੈ ਪਰ ਦਿੱਤਾ ਨਹੀਂ।"
|
|
@@ -3283,6 +3341,9 @@ msgstr ""
|
|
|
3283
3341
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3284
3342
|
msgstr ""
|
|
3285
3343
|
|
|
3344
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3345
|
+
msgstr ""
|
|
3346
|
+
|
|
3286
3347
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
|
|
3287
3348
|
msgid "Organization"
|
|
3288
3349
|
msgstr "ਸੰਗਠਨ"
|
|
@@ -3572,6 +3633,9 @@ msgstr "ਭੌਤਿਕ"
|
|
|
3572
3633
|
msgid "Plan numeric identifier"
|
|
3573
3634
|
msgstr ""
|
|
3574
3635
|
|
|
3636
|
+
msgid "Please add some repositories."
|
|
3637
|
+
msgstr ""
|
|
3638
|
+
|
|
3575
3639
|
msgid "Please enter a positive number above zero"
|
|
3576
3640
|
msgstr ""
|
|
3577
3641
|
|
|
@@ -3705,6 +3769,9 @@ msgstr ""
|
|
|
3705
3769
|
msgid "Pulp"
|
|
3706
3770
|
msgstr ""
|
|
3707
3771
|
|
|
3772
|
+
msgid "Pulp 3 export destination filepath"
|
|
3773
|
+
msgstr ""
|
|
3774
|
+
|
|
3708
3775
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3709
3776
|
msgstr ""
|
|
3710
3777
|
|
|
@@ -3759,6 +3826,12 @@ msgstr ""
|
|
|
3759
3826
|
msgid "Pulp task error"
|
|
3760
3827
|
msgstr ""
|
|
3761
3828
|
|
|
3829
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3830
|
+
msgstr ""
|
|
3831
|
+
|
|
3832
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3833
|
+
msgstr ""
|
|
3834
|
+
|
|
3762
3835
|
msgid "Pulpcore"
|
|
3763
3836
|
msgstr ""
|
|
3764
3837
|
|
|
@@ -3900,6 +3973,9 @@ msgstr ""
|
|
|
3900
3973
|
msgid "Reload data"
|
|
3901
3974
|
msgstr ""
|
|
3902
3975
|
|
|
3976
|
+
msgid "Remote action:"
|
|
3977
|
+
msgstr ""
|
|
3978
|
+
|
|
3903
3979
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3904
3980
|
msgstr ""
|
|
3905
3981
|
|
|
@@ -3991,6 +4067,9 @@ msgstr "ਪੈਕੇਜ ਹਟਾ ਰਿਹਾ ਹੈ..."
|
|
|
3991
4067
|
msgid "Repo Type"
|
|
3992
4068
|
msgstr ""
|
|
3993
4069
|
|
|
4070
|
+
msgid "Report"
|
|
4071
|
+
msgstr ""
|
|
4072
|
+
|
|
3994
4073
|
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
|
|
3995
4074
|
msgid "Repositories"
|
|
3996
4075
|
msgstr "ਰਿਪੋਜ਼ਟਰੀਆਂ"
|
|
@@ -4069,6 +4148,9 @@ msgstr ""
|
|
|
4069
4148
|
msgid "Resolve Traces"
|
|
4070
4149
|
msgstr ""
|
|
4071
4150
|
|
|
4151
|
+
msgid "Resolve traces for one or more hosts"
|
|
4152
|
+
msgstr ""
|
|
4153
|
+
|
|
4072
4154
|
msgid "Resource"
|
|
4073
4155
|
msgstr ""
|
|
4074
4156
|
|
|
@@ -4148,6 +4230,9 @@ msgstr ""
|
|
|
4148
4230
|
msgid "Role"
|
|
4149
4231
|
msgstr ""
|
|
4150
4232
|
|
|
4233
|
+
msgid "Role of host"
|
|
4234
|
+
msgstr ""
|
|
4235
|
+
|
|
4151
4236
|
msgid "Run Sync Plan:"
|
|
4152
4237
|
msgstr ""
|
|
4153
4238
|
|
|
@@ -4252,6 +4337,9 @@ msgstr "ਸਰਵਿਸ ਲੈਵਲ %s"
|
|
|
4252
4337
|
msgid "Service Level (SLA)"
|
|
4253
4338
|
msgstr ""
|
|
4254
4339
|
|
|
4340
|
+
msgid "Service level of host"
|
|
4341
|
+
msgstr ""
|
|
4342
|
+
|
|
4255
4343
|
msgid "Service level to be used for autoheal"
|
|
4256
4344
|
msgstr ""
|
|
4257
4345
|
|
|
@@ -4346,6 +4434,9 @@ msgstr ""
|
|
|
4346
4434
|
msgid "Show the available repository types"
|
|
4347
4435
|
msgstr ""
|
|
4348
4436
|
|
|
4437
|
+
msgid "Show the export history for a content view version"
|
|
4438
|
+
msgstr ""
|
|
4439
|
+
|
|
4349
4440
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4350
4441
|
msgstr ""
|
|
4351
4442
|
|
|
@@ -4355,6 +4446,12 @@ msgstr ""
|
|
|
4355
4446
|
msgid "Simple Content Access"
|
|
4356
4447
|
msgstr ""
|
|
4357
4448
|
|
|
4449
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4450
|
+
msgstr ""
|
|
4451
|
+
|
|
4452
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4453
|
+
msgstr ""
|
|
4454
|
+
|
|
4358
4455
|
msgid "Size of file to upload"
|
|
4359
4456
|
msgstr ""
|
|
4360
4457
|
|
|
@@ -4605,6 +4702,9 @@ msgstr ""
|
|
|
4605
4702
|
msgid "Sync plan identifier to attach"
|
|
4606
4703
|
msgstr ""
|
|
4607
4704
|
|
|
4705
|
+
msgid "Sync state"
|
|
4706
|
+
msgstr ""
|
|
4707
|
+
|
|
4608
4708
|
msgid "Synced Content"
|
|
4609
4709
|
msgstr ""
|
|
4610
4710
|
|
|
@@ -4720,6 +4820,9 @@ msgstr ""
|
|
|
4720
4820
|
msgid "The id of the host to alter"
|
|
4721
4821
|
msgstr ""
|
|
4722
4822
|
|
|
4823
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4824
|
+
msgstr ""
|
|
4825
|
+
|
|
4723
4826
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4724
4827
|
msgstr ""
|
|
4725
4828
|
|
|
@@ -4769,6 +4872,9 @@ msgstr ""
|
|
|
4769
4872
|
msgid "The requested resource does not belong to the specified organization"
|
|
4770
4873
|
msgstr ""
|
|
4771
4874
|
|
|
4875
|
+
msgid "The requested traces were not found for this host"
|
|
4876
|
+
msgstr ""
|
|
4877
|
+
|
|
4772
4878
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4773
4879
|
msgstr ""
|
|
4774
4880
|
|
|
@@ -4831,6 +4937,9 @@ msgstr ""
|
|
|
4831
4937
|
msgid "There's no running synchronization for this smart proxy."
|
|
4832
4938
|
msgstr ""
|
|
4833
4939
|
|
|
4940
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4941
|
+
msgstr ""
|
|
4942
|
+
|
|
4834
4943
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4835
4944
|
msgstr ""
|
|
4836
4945
|
|
|
@@ -4970,10 +5079,13 @@ msgstr ""
|
|
|
4970
5079
|
msgid "Unable to detect puppet path"
|
|
4971
5080
|
msgstr ""
|
|
4972
5081
|
|
|
4973
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
5082
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4974
5083
|
msgstr ""
|
|
4975
5084
|
|
|
4976
|
-
msgid "Unable to export
|
|
5085
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
5086
|
+
msgstr ""
|
|
5087
|
+
|
|
5088
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4977
5089
|
msgstr ""
|
|
4978
5090
|
|
|
4979
5091
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -5189,6 +5301,12 @@ msgstr ""
|
|
|
5189
5301
|
msgid "Updating Package..."
|
|
5190
5302
|
msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਹੋ ਰਹੇ ਹਨ..."
|
|
5191
5303
|
|
|
5304
|
+
msgid "Updating System Purpose for host"
|
|
5305
|
+
msgstr ""
|
|
5306
|
+
|
|
5307
|
+
msgid "Updating System Purpose for host %s"
|
|
5308
|
+
msgstr ""
|
|
5309
|
+
|
|
5192
5310
|
#, fuzzy
|
|
5193
5311
|
msgid "Updating package group..."
|
|
5194
5312
|
msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਹੋ ਰਿਹਾ ਹੈ..."
|
|
@@ -5246,9 +5364,15 @@ msgstr ""
|
|
|
5246
5364
|
msgid "Usage Type"
|
|
5247
5365
|
msgstr ""
|
|
5248
5366
|
|
|
5367
|
+
msgid "Usage of host"
|
|
5368
|
+
msgstr ""
|
|
5369
|
+
|
|
5249
5370
|
msgid "Use remote execution by default"
|
|
5250
5371
|
msgstr ""
|
|
5251
5372
|
|
|
5373
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5374
|
+
msgstr ""
|
|
5375
|
+
|
|
5252
5376
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5253
5377
|
msgstr ""
|
|
5254
5378
|
|
|
@@ -5273,6 +5397,15 @@ msgstr ""
|
|
|
5273
5397
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5274
5398
|
msgstr ""
|
|
5275
5399
|
|
|
5400
|
+
msgid "Verify checksum"
|
|
5401
|
+
msgstr ""
|
|
5402
|
+
|
|
5403
|
+
msgid "Verify checksum for one or more products"
|
|
5404
|
+
msgstr ""
|
|
5405
|
+
|
|
5406
|
+
msgid "Verify checksum of repository contents"
|
|
5407
|
+
msgstr ""
|
|
5408
|
+
|
|
5276
5409
|
msgid "Version"
|
|
5277
5410
|
msgstr ""
|
|
5278
5411
|
|
|
@@ -5290,7 +5423,7 @@ msgstr ""
|
|
|
5290
5423
|
msgid "Virtual"
|
|
5291
5424
|
msgstr "ਵਰਚੁਅਲ"
|
|
5292
5425
|
|
|
5293
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5426
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5294
5427
|
msgstr ""
|
|
5295
5428
|
|
|
5296
5429
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5361,6 +5494,9 @@ msgstr "ਤੁਸੀਂ ਮੂਲ ਸੰਗਠਨ ਅਤੇ ਇਨਵਾਇਰ
|
|
|
5361
5494
|
msgid "You currently don't have any Content Views."
|
|
5362
5495
|
msgstr ""
|
|
5363
5496
|
|
|
5497
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5498
|
+
msgstr ""
|
|
5499
|
+
|
|
5364
5500
|
msgid "You do not have permissions to delete %s"
|
|
5365
5501
|
msgstr ""
|
|
5366
5502
|
|
|
@@ -5796,9 +5932,6 @@ msgstr ""
|
|
|
5796
5932
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5797
5933
|
msgstr ""
|
|
5798
5934
|
|
|
5799
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5800
|
-
msgstr ""
|
|
5801
|
-
|
|
5802
5935
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5803
5936
|
msgstr ""
|
|
5804
5937
|
|
|
@@ -5878,6 +6011,9 @@ msgstr ""
|
|
|
5878
6011
|
msgid "maximum size of each ISO in MB"
|
|
5879
6012
|
msgstr ""
|
|
5880
6013
|
|
|
6014
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
6015
|
+
msgstr ""
|
|
6016
|
+
|
|
5881
6017
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5882
6018
|
msgstr ""
|
|
5883
6019
|
|
|
@@ -6164,6 +6300,9 @@ msgstr ""
|
|
|
6164
6300
|
msgid "the uuid of the puppet module to associate"
|
|
6165
6301
|
msgstr ""
|
|
6166
6302
|
|
|
6303
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
6304
|
+
msgstr ""
|
|
6305
|
+
|
|
6167
6306
|
msgid "true if the latest version of the component's content view is desired"
|
|
6168
6307
|
msgstr ""
|
|
6169
6308
|
|