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/kn/katello.po
CHANGED
|
@@ -466,6 +466,9 @@ msgstr ""
|
|
|
466
466
|
msgid "Adding content units"
|
|
467
467
|
msgstr ""
|
|
468
468
|
|
|
469
|
+
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}"
|
|
470
|
+
msgstr ""
|
|
471
|
+
|
|
469
472
|
msgid "Addons"
|
|
470
473
|
msgstr ""
|
|
471
474
|
|
|
@@ -570,6 +573,9 @@ msgstr ""
|
|
|
570
573
|
msgid "Artifacts"
|
|
571
574
|
msgstr ""
|
|
572
575
|
|
|
576
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
|
577
|
+
msgstr ""
|
|
578
|
+
|
|
573
579
|
msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
|
|
574
580
|
msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
|
|
575
581
|
msgstr[0] ""
|
|
@@ -618,9 +624,6 @@ msgstr ""
|
|
|
618
624
|
msgid "Author"
|
|
619
625
|
msgstr ""
|
|
620
626
|
|
|
621
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
622
|
-
msgstr ""
|
|
623
|
-
|
|
624
627
|
msgid "Auto Publish - Triggered by '%s'"
|
|
625
628
|
msgstr ""
|
|
626
629
|
|
|
@@ -843,6 +846,9 @@ msgstr ""
|
|
|
843
846
|
msgid "Cannot delete view while it exists in environments"
|
|
844
847
|
msgstr "ಬೇರೊಂದು ಪರಿಸರದ ಮಾದರಿಯನ್ನು ಮಾರ್ಪಡಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ"
|
|
845
848
|
|
|
849
|
+
msgid "Cannot import a composite content view"
|
|
850
|
+
msgstr ""
|
|
851
|
+
|
|
846
852
|
msgid "Cannot import a custom subscription from a redhat product."
|
|
847
853
|
msgstr ""
|
|
848
854
|
|
|
@@ -919,6 +925,9 @@ msgstr ""
|
|
|
919
925
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
|
920
926
|
msgstr ""
|
|
921
927
|
|
|
928
|
+
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
|
929
|
+
msgstr ""
|
|
930
|
+
|
|
922
931
|
msgid "Click here to go to the tasks page for the task."
|
|
923
932
|
msgstr ""
|
|
924
933
|
|
|
@@ -1050,9 +1059,15 @@ msgstr ""
|
|
|
1050
1059
|
msgid "Content View Version not set"
|
|
1051
1060
|
msgstr ""
|
|
1052
1061
|
|
|
1062
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
1063
|
+
msgstr ""
|
|
1064
|
+
|
|
1053
1065
|
msgid "Content View and Environment not set for registration."
|
|
1054
1066
|
msgstr ""
|
|
1055
1067
|
|
|
1068
|
+
msgid "Content View id"
|
|
1069
|
+
msgstr ""
|
|
1070
|
+
|
|
1056
1071
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author shanky
|
|
1057
1072
|
msgid "Content Views"
|
|
1058
1073
|
msgstr "ಕಂಟೆಂಟ್ ನೋಟಗಳು"
|
|
@@ -1113,13 +1128,13 @@ msgstr ""
|
|
|
1113
1128
|
msgid "Copy an activation key"
|
|
1114
1129
|
msgstr "ಸಕ್ರಿಯಗೊಳಿಕೆ ಕೀಲಿಗಳು"
|
|
1115
1130
|
|
|
1131
|
+
msgid "Copy version units to library"
|
|
1132
|
+
msgstr ""
|
|
1133
|
+
|
|
1116
1134
|
#, fuzzy
|
|
1117
1135
|
msgid "Cores: %s"
|
|
1118
1136
|
msgstr "ಕಾರಣ :%s"
|
|
1119
1137
|
|
|
1120
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
|
1121
|
-
msgstr ""
|
|
1122
|
-
|
|
1123
1138
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
|
1124
1139
|
msgid "Could not delete organization '%s'."
|
|
1125
1140
|
msgstr "'%s' ಸಂಸ್ಥೆಯನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ."
|
|
@@ -1130,6 +1145,9 @@ msgstr ""
|
|
|
1130
1145
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1131
1146
|
msgstr ""
|
|
1132
1147
|
|
|
1148
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1149
|
+
msgstr ""
|
|
1150
|
+
|
|
1133
1151
|
msgid "Could not find Environment with ids: %s"
|
|
1134
1152
|
msgstr ""
|
|
1135
1153
|
|
|
@@ -1163,9 +1181,6 @@ msgstr ""
|
|
|
1163
1181
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1164
1182
|
msgstr ""
|
|
1165
1183
|
|
|
1166
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1167
|
-
msgstr ""
|
|
1168
|
-
|
|
1169
1184
|
#, fuzzy
|
|
1170
1185
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1171
1186
|
msgstr "'%s' id ಯನ್ನು ಹೊಂದಿದ ಉತ್ಪನ್ನವು ಕಂಡುಬಂದಿಲ್ಲ"
|
|
@@ -1276,10 +1291,6 @@ msgstr ""
|
|
|
1276
1291
|
msgid "Couldn't find subject of synchronization"
|
|
1277
1292
|
msgstr "ಮೇಳೈಸುವಿಕೆಯ ವಿಷಯವನ್ನು ಪತ್ತೆ ಮಾಡಲಾಗಿಲ್ಲ"
|
|
1278
1293
|
|
|
1279
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
|
1280
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1281
|
-
msgstr "'%{plan}' ಸಿಂಕ್ ಯೋಜನೆಯು '%{org}' ಸಂಸ್ಥೆಯಲ್ಲಿ ಕಂಡುಬಂದಿಲ್ಲ"
|
|
1282
|
-
|
|
1283
1294
|
msgid "Count"
|
|
1284
1295
|
msgstr ""
|
|
1285
1296
|
|
|
@@ -1566,6 +1577,15 @@ msgstr ""
|
|
|
1566
1577
|
msgid "Desired quantity of the pool"
|
|
1567
1578
|
msgstr ""
|
|
1568
1579
|
|
|
1580
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1581
|
+
msgstr ""
|
|
1582
|
+
|
|
1583
|
+
msgid "Destination Server name"
|
|
1584
|
+
msgstr ""
|
|
1585
|
+
|
|
1586
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1587
|
+
msgstr ""
|
|
1588
|
+
|
|
1569
1589
|
msgid "Destroy"
|
|
1570
1590
|
msgstr ""
|
|
1571
1591
|
|
|
@@ -1617,6 +1637,9 @@ msgstr ""
|
|
|
1617
1637
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1618
1638
|
msgstr ""
|
|
1619
1639
|
|
|
1640
|
+
msgid "Directory containing the exported Content View Version"
|
|
1641
|
+
msgstr ""
|
|
1642
|
+
|
|
1620
1643
|
msgid "Disable"
|
|
1621
1644
|
msgstr ""
|
|
1622
1645
|
|
|
@@ -1632,6 +1655,9 @@ msgstr ""
|
|
|
1632
1655
|
msgid "Disable simple content access for a manifest"
|
|
1633
1656
|
msgstr ""
|
|
1634
1657
|
|
|
1658
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1659
|
+
msgstr ""
|
|
1660
|
+
|
|
1635
1661
|
msgid "Disconnected mode"
|
|
1636
1662
|
msgstr ""
|
|
1637
1663
|
|
|
@@ -1716,6 +1742,9 @@ msgstr ""
|
|
|
1716
1742
|
msgid "Enabled Repositories"
|
|
1717
1743
|
msgstr ""
|
|
1718
1744
|
|
|
1745
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1746
|
+
msgstr ""
|
|
1747
|
+
|
|
1719
1748
|
msgid "End Date"
|
|
1720
1749
|
msgstr ""
|
|
1721
1750
|
|
|
@@ -1851,6 +1880,9 @@ msgstr ""
|
|
|
1851
1880
|
msgid "Export to ISO format"
|
|
1852
1881
|
msgstr ""
|
|
1853
1882
|
|
|
1883
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1884
|
+
msgstr ""
|
|
1885
|
+
|
|
1854
1886
|
msgid "Exported version"
|
|
1855
1887
|
msgstr ""
|
|
1856
1888
|
|
|
@@ -1994,10 +2026,6 @@ msgstr ""
|
|
|
1994
2026
|
msgid "GPG Key URL"
|
|
1995
2027
|
msgstr ""
|
|
1996
2028
|
|
|
1997
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
|
1998
|
-
msgid "GPG Keys"
|
|
1999
|
-
msgstr "GPG ಕೀಲಿಗಳು"
|
|
2000
|
-
|
|
2001
2029
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
|
2002
2030
|
msgid "Generate and Download"
|
|
2003
2031
|
msgstr "ಉತ್ಪಾದಿಸು ಮತ್ತು ಇಳಿಸಿಕೊ"
|
|
@@ -2105,6 +2133,9 @@ msgstr ""
|
|
|
2105
2133
|
msgid "Host content and subscription details"
|
|
2106
2134
|
msgstr ""
|
|
2107
2135
|
|
|
2136
|
+
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."
|
|
2137
|
+
msgstr ""
|
|
2138
|
+
|
|
2108
2139
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
2109
2140
|
msgstr ""
|
|
2110
2141
|
|
|
@@ -2325,6 +2356,12 @@ msgstr ""
|
|
|
2325
2356
|
msgid "Immediate"
|
|
2326
2357
|
msgstr ""
|
|
2327
2358
|
|
|
2359
|
+
msgid "Import"
|
|
2360
|
+
msgstr ""
|
|
2361
|
+
|
|
2362
|
+
msgid "Import Content View Version"
|
|
2363
|
+
msgstr ""
|
|
2364
|
+
|
|
2328
2365
|
#, fuzzy
|
|
2329
2366
|
msgid "Import Manifest"
|
|
2330
2367
|
msgstr "ಆಮದು"
|
|
@@ -2347,6 +2384,9 @@ msgstr ""
|
|
|
2347
2384
|
msgid "Import a Manifest using the manifest tab above."
|
|
2348
2385
|
msgstr ""
|
|
2349
2386
|
|
|
2387
|
+
msgid "Import a content view version"
|
|
2388
|
+
msgstr ""
|
|
2389
|
+
|
|
2350
2390
|
#, fuzzy
|
|
2351
2391
|
msgid "Import facts"
|
|
2352
2392
|
msgstr "ಆಮದು"
|
|
@@ -2524,6 +2564,9 @@ msgstr ""
|
|
|
2524
2564
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2525
2565
|
msgstr ""
|
|
2526
2566
|
|
|
2567
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2568
|
+
msgstr ""
|
|
2569
|
+
|
|
2527
2570
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
|
2528
2571
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2529
2572
|
msgstr "ಈ ಕಾರ್ಯಕ್ಕಾಗಿ ಅಮಾನ್ಯವಾದ ನಿಯತಾಂಕಗಳನ್ನು ಕಳುಹಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ದಯವಿಟ್ಟು ವ್ಯವಸ್ಥಾಪಕರನ್ನು ಸಂಪರ್ಕಿಸಿ."
|
|
@@ -2538,6 +2581,9 @@ msgstr ""
|
|
|
2538
2581
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2539
2582
|
msgstr ""
|
|
2540
2583
|
|
|
2584
|
+
msgid "Invalid path specified."
|
|
2585
|
+
msgstr ""
|
|
2586
|
+
|
|
2541
2587
|
msgid ""
|
|
2542
2588
|
"Invalid puppet module parameters specified. \\\n"
|
|
2543
2589
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2615,9 +2661,6 @@ msgstr ""
|
|
|
2615
2661
|
msgid "Learn more about adding Subscription Manifests"
|
|
2616
2662
|
msgstr ""
|
|
2617
2663
|
|
|
2618
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2619
|
-
msgstr ""
|
|
2620
|
-
|
|
2621
2664
|
#, fuzzy
|
|
2622
2665
|
msgid "Library lifecycle environments may not be deleted."
|
|
2623
2666
|
msgstr "'%s' ಎನ್ನುವ ಪರಿಸರವನ್ನು ಅಳಿಸಲಾಗಿದೆ."
|
|
@@ -2872,6 +2915,9 @@ msgstr ""
|
|
|
2872
2915
|
msgid "List srpms"
|
|
2873
2916
|
msgstr ""
|
|
2874
2917
|
|
|
2918
|
+
msgid "List subscriptions"
|
|
2919
|
+
msgstr ""
|
|
2920
|
+
|
|
2875
2921
|
msgid "List sync plans"
|
|
2876
2922
|
msgstr ""
|
|
2877
2923
|
|
|
@@ -2960,6 +3006,9 @@ msgstr "ಸಂದೇಶ"
|
|
|
2960
3006
|
msgid "Messaging connection"
|
|
2961
3007
|
msgstr ""
|
|
2962
3008
|
|
|
3009
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
3010
|
+
msgstr ""
|
|
3011
|
+
|
|
2963
3012
|
msgid "Mismatched"
|
|
2964
3013
|
msgstr ""
|
|
2965
3014
|
|
|
@@ -3110,12 +3159,18 @@ msgstr ""
|
|
|
3110
3159
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
3111
3160
|
msgstr ""
|
|
3112
3161
|
|
|
3162
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3163
|
+
msgstr ""
|
|
3164
|
+
|
|
3113
3165
|
msgid "No manifest file uploaded"
|
|
3114
3166
|
msgstr ""
|
|
3115
3167
|
|
|
3116
3168
|
msgid "No matching content views found"
|
|
3117
3169
|
msgstr ""
|
|
3118
3170
|
|
|
3171
|
+
msgid "No matching repositories found"
|
|
3172
|
+
msgstr ""
|
|
3173
|
+
|
|
3119
3174
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
|
3120
3175
|
msgid "No new packages installed"
|
|
3121
3176
|
msgstr "ಯಾವುದೆ ಪ್ಯಾಕೇಜನ್ನು ಅನುಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ"
|
|
@@ -3258,6 +3313,9 @@ msgstr ""
|
|
|
3258
3313
|
msgid "On-disk location for exported repositories"
|
|
3259
3314
|
msgstr ""
|
|
3260
3315
|
|
|
3316
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3317
|
+
msgstr ""
|
|
3318
|
+
|
|
3261
3319
|
#, fuzzy
|
|
3262
3320
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3263
3321
|
msgstr "organization_id ಅಗತ್ಯವಿದೆ ಆದರೆ ಅದನ್ನು ಸೂಚಿಸಲಾಗಿಲ್ಲ."
|
|
@@ -3291,6 +3349,9 @@ msgstr ""
|
|
|
3291
3349
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3292
3350
|
msgstr ""
|
|
3293
3351
|
|
|
3352
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3353
|
+
msgstr ""
|
|
3354
|
+
|
|
3294
3355
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author shanky
|
|
3295
3356
|
msgid "Organization"
|
|
3296
3357
|
msgstr "ಸಂಸ್ಥೆ"
|
|
@@ -3581,6 +3642,9 @@ msgstr "ಭೌತಿಕ"
|
|
|
3581
3642
|
msgid "Plan numeric identifier"
|
|
3582
3643
|
msgstr ""
|
|
3583
3644
|
|
|
3645
|
+
msgid "Please add some repositories."
|
|
3646
|
+
msgstr ""
|
|
3647
|
+
|
|
3584
3648
|
msgid "Please enter a positive number above zero"
|
|
3585
3649
|
msgstr ""
|
|
3586
3650
|
|
|
@@ -3715,6 +3779,9 @@ msgstr ""
|
|
|
3715
3779
|
msgid "Pulp"
|
|
3716
3780
|
msgstr ""
|
|
3717
3781
|
|
|
3782
|
+
msgid "Pulp 3 export destination filepath"
|
|
3783
|
+
msgstr ""
|
|
3784
|
+
|
|
3718
3785
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3719
3786
|
msgstr ""
|
|
3720
3787
|
|
|
@@ -3769,6 +3836,12 @@ msgstr ""
|
|
|
3769
3836
|
msgid "Pulp task error"
|
|
3770
3837
|
msgstr ""
|
|
3771
3838
|
|
|
3839
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3840
|
+
msgstr ""
|
|
3841
|
+
|
|
3842
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3843
|
+
msgstr ""
|
|
3844
|
+
|
|
3772
3845
|
msgid "Pulpcore"
|
|
3773
3846
|
msgstr ""
|
|
3774
3847
|
|
|
@@ -3911,6 +3984,9 @@ msgstr ""
|
|
|
3911
3984
|
msgid "Reload data"
|
|
3912
3985
|
msgstr ""
|
|
3913
3986
|
|
|
3987
|
+
msgid "Remote action:"
|
|
3988
|
+
msgstr ""
|
|
3989
|
+
|
|
3914
3990
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3915
3991
|
msgstr ""
|
|
3916
3992
|
|
|
@@ -4002,6 +4078,9 @@ msgstr "ಪ್ಯಾಕೇಜನ್ನು ತೆಗೆದುಹಾಕಲಾಗ
|
|
|
4002
4078
|
msgid "Repo Type"
|
|
4003
4079
|
msgstr ""
|
|
4004
4080
|
|
|
4081
|
+
msgid "Report"
|
|
4082
|
+
msgstr ""
|
|
4083
|
+
|
|
4005
4084
|
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
|
4006
4085
|
msgid "Repositories"
|
|
4007
4086
|
msgstr "ರೆಪೊಸಿಟರಿಗಳು"
|
|
@@ -4080,6 +4159,9 @@ msgstr ""
|
|
|
4080
4159
|
msgid "Resolve Traces"
|
|
4081
4160
|
msgstr ""
|
|
4082
4161
|
|
|
4162
|
+
msgid "Resolve traces for one or more hosts"
|
|
4163
|
+
msgstr ""
|
|
4164
|
+
|
|
4083
4165
|
msgid "Resource"
|
|
4084
4166
|
msgstr ""
|
|
4085
4167
|
|
|
@@ -4159,6 +4241,9 @@ msgstr ""
|
|
|
4159
4241
|
msgid "Role"
|
|
4160
4242
|
msgstr ""
|
|
4161
4243
|
|
|
4244
|
+
msgid "Role of host"
|
|
4245
|
+
msgstr ""
|
|
4246
|
+
|
|
4162
4247
|
msgid "Run Sync Plan:"
|
|
4163
4248
|
msgstr ""
|
|
4164
4249
|
|
|
@@ -4263,6 +4348,9 @@ msgstr "%s ಸೇವಾ ಮಟ್ಟ"
|
|
|
4263
4348
|
msgid "Service Level (SLA)"
|
|
4264
4349
|
msgstr ""
|
|
4265
4350
|
|
|
4351
|
+
msgid "Service level of host"
|
|
4352
|
+
msgstr ""
|
|
4353
|
+
|
|
4266
4354
|
msgid "Service level to be used for autoheal"
|
|
4267
4355
|
msgstr ""
|
|
4268
4356
|
|
|
@@ -4357,6 +4445,9 @@ msgstr ""
|
|
|
4357
4445
|
msgid "Show the available repository types"
|
|
4358
4446
|
msgstr ""
|
|
4359
4447
|
|
|
4448
|
+
msgid "Show the export history for a content view version"
|
|
4449
|
+
msgstr ""
|
|
4450
|
+
|
|
4360
4451
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4361
4452
|
msgstr ""
|
|
4362
4453
|
|
|
@@ -4366,6 +4457,12 @@ msgstr ""
|
|
|
4366
4457
|
msgid "Simple Content Access"
|
|
4367
4458
|
msgstr ""
|
|
4368
4459
|
|
|
4460
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4461
|
+
msgstr ""
|
|
4462
|
+
|
|
4463
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4464
|
+
msgstr ""
|
|
4465
|
+
|
|
4369
4466
|
msgid "Size of file to upload"
|
|
4370
4467
|
msgstr ""
|
|
4371
4468
|
|
|
@@ -4616,6 +4713,9 @@ msgstr ""
|
|
|
4616
4713
|
msgid "Sync plan identifier to attach"
|
|
4617
4714
|
msgstr ""
|
|
4618
4715
|
|
|
4716
|
+
msgid "Sync state"
|
|
4717
|
+
msgstr ""
|
|
4718
|
+
|
|
4619
4719
|
msgid "Synced Content"
|
|
4620
4720
|
msgstr ""
|
|
4621
4721
|
|
|
@@ -4731,6 +4831,9 @@ msgstr ""
|
|
|
4731
4831
|
msgid "The id of the host to alter"
|
|
4732
4832
|
msgstr ""
|
|
4733
4833
|
|
|
4834
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4835
|
+
msgstr ""
|
|
4836
|
+
|
|
4734
4837
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4735
4838
|
msgstr ""
|
|
4736
4839
|
|
|
@@ -4780,6 +4883,9 @@ msgstr ""
|
|
|
4780
4883
|
msgid "The requested resource does not belong to the specified organization"
|
|
4781
4884
|
msgstr ""
|
|
4782
4885
|
|
|
4886
|
+
msgid "The requested traces were not found for this host"
|
|
4887
|
+
msgstr ""
|
|
4888
|
+
|
|
4783
4889
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4784
4890
|
msgstr ""
|
|
4785
4891
|
|
|
@@ -4843,6 +4949,9 @@ msgstr ""
|
|
|
4843
4949
|
msgid "There's no running synchronization for this smart proxy."
|
|
4844
4950
|
msgstr ""
|
|
4845
4951
|
|
|
4952
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4953
|
+
msgstr ""
|
|
4954
|
+
|
|
4846
4955
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4847
4956
|
msgstr ""
|
|
4848
4957
|
|
|
@@ -4982,10 +5091,13 @@ msgstr ""
|
|
|
4982
5091
|
msgid "Unable to detect puppet path"
|
|
4983
5092
|
msgstr ""
|
|
4984
5093
|
|
|
4985
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
5094
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4986
5095
|
msgstr ""
|
|
4987
5096
|
|
|
4988
|
-
msgid "Unable to export
|
|
5097
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
5098
|
+
msgstr ""
|
|
5099
|
+
|
|
5100
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4989
5101
|
msgstr ""
|
|
4990
5102
|
|
|
4991
5103
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -5202,6 +5314,12 @@ msgstr ""
|
|
|
5202
5314
|
msgid "Updating Package..."
|
|
5203
5315
|
msgstr "ಪ್ಯಾಕೇಜನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
|
5204
5316
|
|
|
5317
|
+
msgid "Updating System Purpose for host"
|
|
5318
|
+
msgstr ""
|
|
5319
|
+
|
|
5320
|
+
msgid "Updating System Purpose for host %s"
|
|
5321
|
+
msgstr ""
|
|
5322
|
+
|
|
5205
5323
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
|
5206
5324
|
msgid "Updating package group..."
|
|
5207
5325
|
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
|
@@ -5259,9 +5377,15 @@ msgstr ""
|
|
|
5259
5377
|
msgid "Usage Type"
|
|
5260
5378
|
msgstr ""
|
|
5261
5379
|
|
|
5380
|
+
msgid "Usage of host"
|
|
5381
|
+
msgstr ""
|
|
5382
|
+
|
|
5262
5383
|
msgid "Use remote execution by default"
|
|
5263
5384
|
msgstr ""
|
|
5264
5385
|
|
|
5386
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5387
|
+
msgstr ""
|
|
5388
|
+
|
|
5265
5389
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5266
5390
|
msgstr ""
|
|
5267
5391
|
|
|
@@ -5286,6 +5410,15 @@ msgstr ""
|
|
|
5286
5410
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5287
5411
|
msgstr ""
|
|
5288
5412
|
|
|
5413
|
+
msgid "Verify checksum"
|
|
5414
|
+
msgstr ""
|
|
5415
|
+
|
|
5416
|
+
msgid "Verify checksum for one or more products"
|
|
5417
|
+
msgstr ""
|
|
5418
|
+
|
|
5419
|
+
msgid "Verify checksum of repository contents"
|
|
5420
|
+
msgstr ""
|
|
5421
|
+
|
|
5289
5422
|
msgid "Version"
|
|
5290
5423
|
msgstr ""
|
|
5291
5424
|
|
|
@@ -5303,7 +5436,7 @@ msgstr ""
|
|
|
5303
5436
|
msgid "Virtual"
|
|
5304
5437
|
msgstr "ವರ್ಚುವಲ್"
|
|
5305
5438
|
|
|
5306
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5439
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5307
5440
|
msgstr ""
|
|
5308
5441
|
|
|
5309
5442
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5374,6 +5507,9 @@ msgstr "%s ಬಳಕೆದಾರನಿಗಾಗಿ ನೀವು ಪೂರ್ವ
|
|
|
5374
5507
|
msgid "You currently don't have any Content Views."
|
|
5375
5508
|
msgstr ""
|
|
5376
5509
|
|
|
5510
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5511
|
+
msgstr ""
|
|
5512
|
+
|
|
5377
5513
|
msgid "You do not have permissions to delete %s"
|
|
5378
5514
|
msgstr ""
|
|
5379
5515
|
|
|
@@ -5811,9 +5947,6 @@ msgstr ""
|
|
|
5811
5947
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5812
5948
|
msgstr ""
|
|
5813
5949
|
|
|
5814
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5815
|
-
msgstr ""
|
|
5816
|
-
|
|
5817
5950
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5818
5951
|
msgstr ""
|
|
5819
5952
|
|
|
@@ -5893,6 +6026,9 @@ msgstr ""
|
|
|
5893
6026
|
msgid "maximum size of each ISO in MB"
|
|
5894
6027
|
msgstr ""
|
|
5895
6028
|
|
|
6029
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
6030
|
+
msgstr ""
|
|
6031
|
+
|
|
5896
6032
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5897
6033
|
msgstr ""
|
|
5898
6034
|
|
|
@@ -6178,6 +6314,9 @@ msgstr ""
|
|
|
6178
6314
|
msgid "the uuid of the puppet module to associate"
|
|
6179
6315
|
msgstr ""
|
|
6180
6316
|
|
|
6317
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
6318
|
+
msgstr ""
|
|
6319
|
+
|
|
6181
6320
|
msgid "true if the latest version of the component's content view is desired"
|
|
6182
6321
|
msgstr ""
|
|
6183
6322
|
|