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/te/katello.po
CHANGED
|
@@ -464,6 +464,9 @@ msgstr ""
|
|
|
464
464
|
msgid "Adding content units"
|
|
465
465
|
msgstr ""
|
|
466
466
|
|
|
467
|
+
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}"
|
|
468
|
+
msgstr ""
|
|
469
|
+
|
|
467
470
|
msgid "Addons"
|
|
468
471
|
msgstr ""
|
|
469
472
|
|
|
@@ -568,6 +571,9 @@ msgstr ""
|
|
|
568
571
|
msgid "Artifacts"
|
|
569
572
|
msgstr ""
|
|
570
573
|
|
|
574
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
|
575
|
+
msgstr ""
|
|
576
|
+
|
|
571
577
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
|
572
578
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
|
573
579
|
msgstr[0] ""
|
|
@@ -616,9 +622,6 @@ msgstr ""
|
|
|
616
622
|
msgid "Author"
|
|
617
623
|
msgstr ""
|
|
618
624
|
|
|
619
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
620
|
-
msgstr ""
|
|
621
|
-
|
|
622
625
|
msgid "Auto Publish - Triggered by '%s'"
|
|
623
626
|
msgstr ""
|
|
624
627
|
|
|
@@ -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
|
|
|
@@ -1047,9 +1056,15 @@ msgstr ""
|
|
|
1047
1056
|
msgid "Content View Version not set"
|
|
1048
1057
|
msgstr ""
|
|
1049
1058
|
|
|
1059
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
1060
|
+
msgstr ""
|
|
1061
|
+
|
|
1050
1062
|
msgid "Content View and Environment not set for registration."
|
|
1051
1063
|
msgstr ""
|
|
1052
1064
|
|
|
1065
|
+
msgid "Content View id"
|
|
1066
|
+
msgstr ""
|
|
1067
|
+
|
|
1053
1068
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
|
1054
1069
|
msgid "Content Views"
|
|
1055
1070
|
msgstr "కాంటెంట్ దర్శనాలు"
|
|
@@ -1110,13 +1125,13 @@ msgstr ""
|
|
|
1110
1125
|
msgid "Copy an activation key"
|
|
1111
1126
|
msgstr "క్రియాశీలపు కీలు"
|
|
1112
1127
|
|
|
1128
|
+
msgid "Copy version units to library"
|
|
1129
|
+
msgstr ""
|
|
1130
|
+
|
|
1113
1131
|
#, fuzzy
|
|
1114
1132
|
msgid "Cores: %s"
|
|
1115
1133
|
msgstr "కారణం: %s"
|
|
1116
1134
|
|
|
1117
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
|
1118
|
-
msgstr ""
|
|
1119
|
-
|
|
1120
1135
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
|
1121
1136
|
msgid "Could not delete organization '%s'."
|
|
1122
1137
|
msgstr "సంస్థ '%s' ను తొలగించలేక పోయింది."
|
|
@@ -1127,6 +1142,9 @@ msgstr ""
|
|
|
1127
1142
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1128
1143
|
msgstr ""
|
|
1129
1144
|
|
|
1145
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1146
|
+
msgstr ""
|
|
1147
|
+
|
|
1130
1148
|
msgid "Could not find Environment with ids: %s"
|
|
1131
1149
|
msgstr ""
|
|
1132
1150
|
|
|
@@ -1160,9 +1178,6 @@ msgstr ""
|
|
|
1160
1178
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1161
1179
|
msgstr ""
|
|
1162
1180
|
|
|
1163
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1164
|
-
msgstr ""
|
|
1165
|
-
|
|
1166
1181
|
#, fuzzy
|
|
1167
1182
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1168
1183
|
msgstr "ఐడి '%s' తో వుత్పత్తిని కనుగొనలేక పోయింది"
|
|
@@ -1273,10 +1288,6 @@ msgstr ""
|
|
|
1273
1288
|
msgid "Couldn't find subject of synchronization"
|
|
1274
1289
|
msgstr "సింక్రొనైజేషన్ సబ్జక్టును కనుగొనలేక పోయింది"
|
|
1275
1290
|
|
|
1276
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
|
1277
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1278
|
-
msgstr "సంస్థ '%{org}' నందు సింక్ ప్లాన్ '%{plan}' ను కనుగొనలేక పోయింది"
|
|
1279
|
-
|
|
1280
1291
|
msgid "Count"
|
|
1281
1292
|
msgstr ""
|
|
1282
1293
|
|
|
@@ -1563,6 +1574,15 @@ msgstr ""
|
|
|
1563
1574
|
msgid "Desired quantity of the pool"
|
|
1564
1575
|
msgstr ""
|
|
1565
1576
|
|
|
1577
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1578
|
+
msgstr ""
|
|
1579
|
+
|
|
1580
|
+
msgid "Destination Server name"
|
|
1581
|
+
msgstr ""
|
|
1582
|
+
|
|
1583
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1584
|
+
msgstr ""
|
|
1585
|
+
|
|
1566
1586
|
msgid "Destroy"
|
|
1567
1587
|
msgstr ""
|
|
1568
1588
|
|
|
@@ -1614,6 +1634,9 @@ msgstr ""
|
|
|
1614
1634
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1615
1635
|
msgstr ""
|
|
1616
1636
|
|
|
1637
|
+
msgid "Directory containing the exported Content View Version"
|
|
1638
|
+
msgstr ""
|
|
1639
|
+
|
|
1617
1640
|
msgid "Disable"
|
|
1618
1641
|
msgstr ""
|
|
1619
1642
|
|
|
@@ -1629,6 +1652,9 @@ msgstr ""
|
|
|
1629
1652
|
msgid "Disable simple content access for a manifest"
|
|
1630
1653
|
msgstr ""
|
|
1631
1654
|
|
|
1655
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1656
|
+
msgstr ""
|
|
1657
|
+
|
|
1632
1658
|
msgid "Disconnected mode"
|
|
1633
1659
|
msgstr ""
|
|
1634
1660
|
|
|
@@ -1713,6 +1739,9 @@ msgstr ""
|
|
|
1713
1739
|
msgid "Enabled Repositories"
|
|
1714
1740
|
msgstr ""
|
|
1715
1741
|
|
|
1742
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1743
|
+
msgstr ""
|
|
1744
|
+
|
|
1716
1745
|
msgid "End Date"
|
|
1717
1746
|
msgstr ""
|
|
1718
1747
|
|
|
@@ -1848,6 +1877,9 @@ msgstr ""
|
|
|
1848
1877
|
msgid "Export to ISO format"
|
|
1849
1878
|
msgstr ""
|
|
1850
1879
|
|
|
1880
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1881
|
+
msgstr ""
|
|
1882
|
+
|
|
1851
1883
|
msgid "Exported version"
|
|
1852
1884
|
msgstr ""
|
|
1853
1885
|
|
|
@@ -1991,10 +2023,6 @@ msgstr ""
|
|
|
1991
2023
|
msgid "GPG Key URL"
|
|
1992
2024
|
msgstr ""
|
|
1993
2025
|
|
|
1994
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
|
1995
|
-
msgid "GPG Keys"
|
|
1996
|
-
msgstr "GPG కీలు"
|
|
1997
|
-
|
|
1998
2026
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
|
1999
2027
|
msgid "Generate and Download"
|
|
2000
2028
|
msgstr "జనియింపచేయి మరియు దింపు"
|
|
@@ -2102,6 +2130,9 @@ msgstr ""
|
|
|
2102
2130
|
msgid "Host content and subscription details"
|
|
2103
2131
|
msgstr ""
|
|
2104
2132
|
|
|
2133
|
+
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."
|
|
2134
|
+
msgstr ""
|
|
2135
|
+
|
|
2105
2136
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
2106
2137
|
msgstr ""
|
|
2107
2138
|
|
|
@@ -2322,6 +2353,12 @@ msgstr ""
|
|
|
2322
2353
|
msgid "Immediate"
|
|
2323
2354
|
msgstr ""
|
|
2324
2355
|
|
|
2356
|
+
msgid "Import"
|
|
2357
|
+
msgstr ""
|
|
2358
|
+
|
|
2359
|
+
msgid "Import Content View Version"
|
|
2360
|
+
msgstr ""
|
|
2361
|
+
|
|
2325
2362
|
#, fuzzy
|
|
2326
2363
|
msgid "Import Manifest"
|
|
2327
2364
|
msgstr "దిగుమతిచేయి"
|
|
@@ -2344,6 +2381,9 @@ msgstr ""
|
|
|
2344
2381
|
msgid "Import a Manifest using the manifest tab above."
|
|
2345
2382
|
msgstr ""
|
|
2346
2383
|
|
|
2384
|
+
msgid "Import a content view version"
|
|
2385
|
+
msgstr ""
|
|
2386
|
+
|
|
2347
2387
|
#, fuzzy
|
|
2348
2388
|
msgid "Import facts"
|
|
2349
2389
|
msgstr "దిగుమతిచేయి"
|
|
@@ -2521,6 +2561,9 @@ msgstr ""
|
|
|
2521
2561
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2522
2562
|
msgstr ""
|
|
2523
2563
|
|
|
2564
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2565
|
+
msgstr ""
|
|
2566
|
+
|
|
2524
2567
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
|
2525
2568
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2526
2569
|
msgstr "ఈ ఆపరేషన్ కొరకు అభ్యర్ధననందు చెల్లని పారామితులు పంపబడెను. దయచేసి వ్యవస్థ నిర్వహణాధికారిని సంప్రదించండి."
|
|
@@ -2535,6 +2578,9 @@ msgstr ""
|
|
|
2535
2578
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2536
2579
|
msgstr ""
|
|
2537
2580
|
|
|
2581
|
+
msgid "Invalid path specified."
|
|
2582
|
+
msgstr ""
|
|
2583
|
+
|
|
2538
2584
|
msgid ""
|
|
2539
2585
|
"Invalid puppet module parameters specified. \\\n"
|
|
2540
2586
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2612,9 +2658,6 @@ msgstr ""
|
|
|
2612
2658
|
msgid "Learn more about adding Subscription Manifests"
|
|
2613
2659
|
msgstr ""
|
|
2614
2660
|
|
|
2615
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2616
|
-
msgstr ""
|
|
2617
|
-
|
|
2618
2661
|
#, fuzzy
|
|
2619
2662
|
msgid "Library lifecycle environments may not be deleted."
|
|
2620
2663
|
msgstr "ఎన్విరాన్మెంట్ '%s' తొలగించబడెను."
|
|
@@ -2869,6 +2912,9 @@ msgstr ""
|
|
|
2869
2912
|
msgid "List srpms"
|
|
2870
2913
|
msgstr ""
|
|
2871
2914
|
|
|
2915
|
+
msgid "List subscriptions"
|
|
2916
|
+
msgstr ""
|
|
2917
|
+
|
|
2872
2918
|
msgid "List sync plans"
|
|
2873
2919
|
msgstr ""
|
|
2874
2920
|
|
|
@@ -2957,6 +3003,9 @@ msgstr "సందేశం"
|
|
|
2957
3003
|
msgid "Messaging connection"
|
|
2958
3004
|
msgstr ""
|
|
2959
3005
|
|
|
3006
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
3007
|
+
msgstr ""
|
|
3008
|
+
|
|
2960
3009
|
msgid "Mismatched"
|
|
2961
3010
|
msgstr ""
|
|
2962
3011
|
|
|
@@ -3108,12 +3157,18 @@ msgstr ""
|
|
|
3108
3157
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
3109
3158
|
msgstr ""
|
|
3110
3159
|
|
|
3160
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3161
|
+
msgstr ""
|
|
3162
|
+
|
|
3111
3163
|
msgid "No manifest file uploaded"
|
|
3112
3164
|
msgstr ""
|
|
3113
3165
|
|
|
3114
3166
|
msgid "No matching content views found"
|
|
3115
3167
|
msgstr ""
|
|
3116
3168
|
|
|
3169
|
+
msgid "No matching repositories found"
|
|
3170
|
+
msgstr ""
|
|
3171
|
+
|
|
3117
3172
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
|
3118
3173
|
msgid "No new packages installed"
|
|
3119
3174
|
msgstr "ఏ కొత్త ప్యాకేజీలు సంస్థాపించబడిలేవు"
|
|
@@ -3256,6 +3311,9 @@ msgstr ""
|
|
|
3256
3311
|
msgid "On-disk location for exported repositories"
|
|
3257
3312
|
msgstr ""
|
|
3258
3313
|
|
|
3314
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3315
|
+
msgstr ""
|
|
3316
|
+
|
|
3259
3317
|
#, fuzzy
|
|
3260
3318
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3261
3319
|
msgstr "సంస్థ ఐడి కావాలి కాని తెలుపలేదు (_i)."
|
|
@@ -3289,6 +3347,9 @@ msgstr ""
|
|
|
3289
3347
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3290
3348
|
msgstr ""
|
|
3291
3349
|
|
|
3350
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3351
|
+
msgstr ""
|
|
3352
|
+
|
|
3292
3353
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
|
3293
3354
|
msgid "Organization"
|
|
3294
3355
|
msgstr "సంస్థ"
|
|
@@ -3578,6 +3639,9 @@ msgstr "భౌతిక"
|
|
|
3578
3639
|
msgid "Plan numeric identifier"
|
|
3579
3640
|
msgstr ""
|
|
3580
3641
|
|
|
3642
|
+
msgid "Please add some repositories."
|
|
3643
|
+
msgstr ""
|
|
3644
|
+
|
|
3581
3645
|
msgid "Please enter a positive number above zero"
|
|
3582
3646
|
msgstr ""
|
|
3583
3647
|
|
|
@@ -3712,6 +3776,9 @@ msgstr ""
|
|
|
3712
3776
|
msgid "Pulp"
|
|
3713
3777
|
msgstr ""
|
|
3714
3778
|
|
|
3779
|
+
msgid "Pulp 3 export destination filepath"
|
|
3780
|
+
msgstr ""
|
|
3781
|
+
|
|
3715
3782
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3716
3783
|
msgstr ""
|
|
3717
3784
|
|
|
@@ -3766,6 +3833,12 @@ msgstr ""
|
|
|
3766
3833
|
msgid "Pulp task error"
|
|
3767
3834
|
msgstr ""
|
|
3768
3835
|
|
|
3836
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3837
|
+
msgstr ""
|
|
3838
|
+
|
|
3839
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3840
|
+
msgstr ""
|
|
3841
|
+
|
|
3769
3842
|
msgid "Pulpcore"
|
|
3770
3843
|
msgstr ""
|
|
3771
3844
|
|
|
@@ -3908,6 +3981,9 @@ msgstr ""
|
|
|
3908
3981
|
msgid "Reload data"
|
|
3909
3982
|
msgstr ""
|
|
3910
3983
|
|
|
3984
|
+
msgid "Remote action:"
|
|
3985
|
+
msgstr ""
|
|
3986
|
+
|
|
3911
3987
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3912
3988
|
msgstr ""
|
|
3913
3989
|
|
|
@@ -3999,6 +4075,9 @@ msgstr "ప్యాకేజీ తీసివేస్తోంది..."
|
|
|
3999
4075
|
msgid "Repo Type"
|
|
4000
4076
|
msgstr ""
|
|
4001
4077
|
|
|
4078
|
+
msgid "Report"
|
|
4079
|
+
msgstr ""
|
|
4080
|
+
|
|
4002
4081
|
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
|
4003
4082
|
msgid "Repositories"
|
|
4004
4083
|
msgstr "రిపోజిటరీలు"
|
|
@@ -4077,6 +4156,9 @@ msgstr ""
|
|
|
4077
4156
|
msgid "Resolve Traces"
|
|
4078
4157
|
msgstr ""
|
|
4079
4158
|
|
|
4159
|
+
msgid "Resolve traces for one or more hosts"
|
|
4160
|
+
msgstr ""
|
|
4161
|
+
|
|
4080
4162
|
msgid "Resource"
|
|
4081
4163
|
msgstr ""
|
|
4082
4164
|
|
|
@@ -4156,6 +4238,9 @@ msgstr ""
|
|
|
4156
4238
|
msgid "Role"
|
|
4157
4239
|
msgstr ""
|
|
4158
4240
|
|
|
4241
|
+
msgid "Role of host"
|
|
4242
|
+
msgstr ""
|
|
4243
|
+
|
|
4159
4244
|
msgid "Run Sync Plan:"
|
|
4160
4245
|
msgstr ""
|
|
4161
4246
|
|
|
@@ -4260,6 +4345,9 @@ msgstr "సేవా స్థాయి %s"
|
|
|
4260
4345
|
msgid "Service Level (SLA)"
|
|
4261
4346
|
msgstr ""
|
|
4262
4347
|
|
|
4348
|
+
msgid "Service level of host"
|
|
4349
|
+
msgstr ""
|
|
4350
|
+
|
|
4263
4351
|
msgid "Service level to be used for autoheal"
|
|
4264
4352
|
msgstr ""
|
|
4265
4353
|
|
|
@@ -4354,6 +4442,9 @@ msgstr ""
|
|
|
4354
4442
|
msgid "Show the available repository types"
|
|
4355
4443
|
msgstr ""
|
|
4356
4444
|
|
|
4445
|
+
msgid "Show the export history for a content view version"
|
|
4446
|
+
msgstr ""
|
|
4447
|
+
|
|
4357
4448
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4358
4449
|
msgstr ""
|
|
4359
4450
|
|
|
@@ -4363,6 +4454,12 @@ msgstr ""
|
|
|
4363
4454
|
msgid "Simple Content Access"
|
|
4364
4455
|
msgstr ""
|
|
4365
4456
|
|
|
4457
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4458
|
+
msgstr ""
|
|
4459
|
+
|
|
4460
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4461
|
+
msgstr ""
|
|
4462
|
+
|
|
4366
4463
|
msgid "Size of file to upload"
|
|
4367
4464
|
msgstr ""
|
|
4368
4465
|
|
|
@@ -4613,6 +4710,9 @@ msgstr ""
|
|
|
4613
4710
|
msgid "Sync plan identifier to attach"
|
|
4614
4711
|
msgstr ""
|
|
4615
4712
|
|
|
4713
|
+
msgid "Sync state"
|
|
4714
|
+
msgstr ""
|
|
4715
|
+
|
|
4616
4716
|
msgid "Synced Content"
|
|
4617
4717
|
msgstr ""
|
|
4618
4718
|
|
|
@@ -4728,6 +4828,9 @@ msgstr ""
|
|
|
4728
4828
|
msgid "The id of the host to alter"
|
|
4729
4829
|
msgstr ""
|
|
4730
4830
|
|
|
4831
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4832
|
+
msgstr ""
|
|
4833
|
+
|
|
4731
4834
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4732
4835
|
msgstr ""
|
|
4733
4836
|
|
|
@@ -4777,6 +4880,9 @@ msgstr ""
|
|
|
4777
4880
|
msgid "The requested resource does not belong to the specified organization"
|
|
4778
4881
|
msgstr ""
|
|
4779
4882
|
|
|
4883
|
+
msgid "The requested traces were not found for this host"
|
|
4884
|
+
msgstr ""
|
|
4885
|
+
|
|
4780
4886
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4781
4887
|
msgstr ""
|
|
4782
4888
|
|
|
@@ -4840,6 +4946,9 @@ msgstr ""
|
|
|
4840
4946
|
msgid "There's no running synchronization for this smart proxy."
|
|
4841
4947
|
msgstr ""
|
|
4842
4948
|
|
|
4949
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4950
|
+
msgstr ""
|
|
4951
|
+
|
|
4843
4952
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4844
4953
|
msgstr ""
|
|
4845
4954
|
|
|
@@ -4979,10 +5088,13 @@ msgstr ""
|
|
|
4979
5088
|
msgid "Unable to detect puppet path"
|
|
4980
5089
|
msgstr ""
|
|
4981
5090
|
|
|
4982
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
5091
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4983
5092
|
msgstr ""
|
|
4984
5093
|
|
|
4985
|
-
msgid "Unable to export
|
|
5094
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
5095
|
+
msgstr ""
|
|
5096
|
+
|
|
5097
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4986
5098
|
msgstr ""
|
|
4987
5099
|
|
|
4988
5100
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -5199,6 +5311,12 @@ msgstr ""
|
|
|
5199
5311
|
msgid "Updating Package..."
|
|
5200
5312
|
msgstr "ప్యాకేజీను నవీకరించుచున్నది..."
|
|
5201
5313
|
|
|
5314
|
+
msgid "Updating System Purpose for host"
|
|
5315
|
+
msgstr ""
|
|
5316
|
+
|
|
5317
|
+
msgid "Updating System Purpose for host %s"
|
|
5318
|
+
msgstr ""
|
|
5319
|
+
|
|
5202
5320
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
|
5203
5321
|
msgid "Updating package group..."
|
|
5204
5322
|
msgstr "ప్యాకేజీ సమూహం నవీకరిస్తోంది..."
|
|
@@ -5256,9 +5374,15 @@ msgstr ""
|
|
|
5256
5374
|
msgid "Usage Type"
|
|
5257
5375
|
msgstr ""
|
|
5258
5376
|
|
|
5377
|
+
msgid "Usage of host"
|
|
5378
|
+
msgstr ""
|
|
5379
|
+
|
|
5259
5380
|
msgid "Use remote execution by default"
|
|
5260
5381
|
msgstr ""
|
|
5261
5382
|
|
|
5383
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5384
|
+
msgstr ""
|
|
5385
|
+
|
|
5262
5386
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5263
5387
|
msgstr ""
|
|
5264
5388
|
|
|
@@ -5283,6 +5407,15 @@ msgstr ""
|
|
|
5283
5407
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5284
5408
|
msgstr ""
|
|
5285
5409
|
|
|
5410
|
+
msgid "Verify checksum"
|
|
5411
|
+
msgstr ""
|
|
5412
|
+
|
|
5413
|
+
msgid "Verify checksum for one or more products"
|
|
5414
|
+
msgstr ""
|
|
5415
|
+
|
|
5416
|
+
msgid "Verify checksum of repository contents"
|
|
5417
|
+
msgstr ""
|
|
5418
|
+
|
|
5286
5419
|
msgid "Version"
|
|
5287
5420
|
msgstr ""
|
|
5288
5421
|
|
|
@@ -5300,7 +5433,7 @@ msgstr ""
|
|
|
5300
5433
|
msgid "Virtual"
|
|
5301
5434
|
msgstr "వర్చ్యువల్"
|
|
5302
5435
|
|
|
5303
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5436
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5304
5437
|
msgstr ""
|
|
5305
5438
|
|
|
5306
5439
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5371,6 +5504,9 @@ msgstr "వాడుకరి %s పైన మీరు అప్రమేయ
|
|
|
5371
5504
|
msgid "You currently don't have any Content Views."
|
|
5372
5505
|
msgstr ""
|
|
5373
5506
|
|
|
5507
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5508
|
+
msgstr ""
|
|
5509
|
+
|
|
5374
5510
|
msgid "You do not have permissions to delete %s"
|
|
5375
5511
|
msgstr ""
|
|
5376
5512
|
|
|
@@ -5808,9 +5944,6 @@ msgstr ""
|
|
|
5808
5944
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5809
5945
|
msgstr ""
|
|
5810
5946
|
|
|
5811
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5812
|
-
msgstr ""
|
|
5813
|
-
|
|
5814
5947
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5815
5948
|
msgstr ""
|
|
5816
5949
|
|
|
@@ -5890,6 +6023,9 @@ msgstr ""
|
|
|
5890
6023
|
msgid "maximum size of each ISO in MB"
|
|
5891
6024
|
msgstr ""
|
|
5892
6025
|
|
|
6026
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
6027
|
+
msgstr ""
|
|
6028
|
+
|
|
5893
6029
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5894
6030
|
msgstr ""
|
|
5895
6031
|
|
|
@@ -6176,6 +6312,9 @@ msgstr ""
|
|
|
6176
6312
|
msgid "the uuid of the puppet module to associate"
|
|
6177
6313
|
msgstr ""
|
|
6178
6314
|
|
|
6315
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
6316
|
+
msgstr ""
|
|
6317
|
+
|
|
6179
6318
|
msgid "true if the latest version of the component's content view is desired"
|
|
6180
6319
|
msgstr ""
|
|
6181
6320
|
|