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/or/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
|
|
|
@@ -842,6 +845,9 @@ msgstr ""
|
|
|
842
845
|
msgid "Cannot delete view while it exists in environments"
|
|
843
846
|
msgstr "ଅନ୍ୟ ଏକ ପରିବେଶର ନମୁନାକୁ ପରିବର୍ତ୍ତନ କରିପାରିବେ ନାହିଁ"
|
|
844
847
|
|
|
848
|
+
msgid "Cannot import a composite content view"
|
|
849
|
+
msgstr ""
|
|
850
|
+
|
|
845
851
|
msgid "Cannot import a custom subscription from a redhat product."
|
|
846
852
|
msgstr ""
|
|
847
853
|
|
|
@@ -918,6 +924,9 @@ msgstr ""
|
|
|
918
924
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
|
919
925
|
msgstr ""
|
|
920
926
|
|
|
927
|
+
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
|
928
|
+
msgstr ""
|
|
929
|
+
|
|
921
930
|
msgid "Click here to go to the tasks page for the task."
|
|
922
931
|
msgstr ""
|
|
923
932
|
|
|
@@ -1049,9 +1058,15 @@ msgstr ""
|
|
|
1049
1058
|
msgid "Content View Version not set"
|
|
1050
1059
|
msgstr ""
|
|
1051
1060
|
|
|
1061
|
+
msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
|
|
1062
|
+
msgstr ""
|
|
1063
|
+
|
|
1052
1064
|
msgid "Content View and Environment not set for registration."
|
|
1053
1065
|
msgstr ""
|
|
1054
1066
|
|
|
1067
|
+
msgid "Content View id"
|
|
1068
|
+
msgstr ""
|
|
1069
|
+
|
|
1055
1070
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
|
1056
1071
|
msgid "Content Views"
|
|
1057
1072
|
msgstr "ସୂଚୀପତ୍ର ଦୃଶ୍ଯ"
|
|
@@ -1112,13 +1127,13 @@ msgstr ""
|
|
|
1112
1127
|
msgid "Copy an activation key"
|
|
1113
1128
|
msgstr "ସକ୍ରିୟଣ କିଗୁଡ଼ିକ"
|
|
1114
1129
|
|
|
1130
|
+
msgid "Copy version units to library"
|
|
1131
|
+
msgstr ""
|
|
1132
|
+
|
|
1115
1133
|
#, fuzzy
|
|
1116
1134
|
msgid "Cores: %s"
|
|
1117
1135
|
msgstr "କାରଣ: %s"
|
|
1118
1136
|
|
|
1119
|
-
msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
|
|
1120
|
-
msgstr ""
|
|
1121
|
-
|
|
1122
1137
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
|
|
1123
1138
|
msgid "Could not delete organization '%s'."
|
|
1124
1139
|
msgstr "ଅନୁଷ୍ଠାନ '%s' କୁ ଅପସାରଣ କରିପାରିଲା ନାହିଁ।"
|
|
@@ -1129,6 +1144,9 @@ msgstr ""
|
|
|
1129
1144
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1130
1145
|
msgstr ""
|
|
1131
1146
|
|
|
1147
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
1148
|
+
msgstr ""
|
|
1149
|
+
|
|
1132
1150
|
msgid "Could not find Environment with ids: %s"
|
|
1133
1151
|
msgstr ""
|
|
1134
1152
|
|
|
@@ -1162,9 +1180,6 @@ msgstr ""
|
|
|
1162
1180
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
|
1163
1181
|
msgstr ""
|
|
1164
1182
|
|
|
1165
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
1166
|
-
msgstr ""
|
|
1167
|
-
|
|
1168
1183
|
#, fuzzy
|
|
1169
1184
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
|
1170
1185
|
msgstr "id '%s' ବିଶିଷ୍ଟ ଉତ୍ପାଦନକୁ ପାଇଲା ନାହିଁ"
|
|
@@ -1275,10 +1290,6 @@ msgstr ""
|
|
|
1275
1290
|
msgid "Couldn't find subject of synchronization"
|
|
1276
1291
|
msgstr "ସନ୍ତୁଳନର ବିଷୟ ମିଳିଲା ନାହିଁ"
|
|
1277
1292
|
|
|
1278
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app
|
|
1279
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1280
|
-
msgstr "ସନ୍ତୁଳନ ଯୋଜନା '%{plan}' କୁ ଅନୁଷ୍ଠାନ '%{org}' ରେ ପାଇଲା ନାହିଁ"
|
|
1281
|
-
|
|
1282
1293
|
msgid "Count"
|
|
1283
1294
|
msgstr ""
|
|
1284
1295
|
|
|
@@ -1565,6 +1576,15 @@ msgstr ""
|
|
|
1565
1576
|
msgid "Desired quantity of the pool"
|
|
1566
1577
|
msgstr ""
|
|
1567
1578
|
|
|
1579
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1580
|
+
msgstr ""
|
|
1581
|
+
|
|
1582
|
+
msgid "Destination Server name"
|
|
1583
|
+
msgstr ""
|
|
1584
|
+
|
|
1585
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1586
|
+
msgstr ""
|
|
1587
|
+
|
|
1568
1588
|
msgid "Destroy"
|
|
1569
1589
|
msgstr ""
|
|
1570
1590
|
|
|
@@ -1616,6 +1636,9 @@ msgstr ""
|
|
|
1616
1636
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
|
1617
1637
|
msgstr ""
|
|
1618
1638
|
|
|
1639
|
+
msgid "Directory containing the exported Content View Version"
|
|
1640
|
+
msgstr ""
|
|
1641
|
+
|
|
1619
1642
|
msgid "Disable"
|
|
1620
1643
|
msgstr ""
|
|
1621
1644
|
|
|
@@ -1631,6 +1654,9 @@ msgstr ""
|
|
|
1631
1654
|
msgid "Disable simple content access for a manifest"
|
|
1632
1655
|
msgstr ""
|
|
1633
1656
|
|
|
1657
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
1658
|
+
msgstr ""
|
|
1659
|
+
|
|
1634
1660
|
msgid "Disconnected mode"
|
|
1635
1661
|
msgstr ""
|
|
1636
1662
|
|
|
@@ -1715,6 +1741,9 @@ msgstr ""
|
|
|
1715
1741
|
msgid "Enabled Repositories"
|
|
1716
1742
|
msgstr ""
|
|
1717
1743
|
|
|
1744
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
1745
|
+
msgstr ""
|
|
1746
|
+
|
|
1718
1747
|
msgid "End Date"
|
|
1719
1748
|
msgstr ""
|
|
1720
1749
|
|
|
@@ -1850,6 +1879,9 @@ msgstr ""
|
|
|
1850
1879
|
msgid "Export to ISO format"
|
|
1851
1880
|
msgstr ""
|
|
1852
1881
|
|
|
1882
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1883
|
+
msgstr ""
|
|
1884
|
+
|
|
1853
1885
|
msgid "Exported version"
|
|
1854
1886
|
msgstr ""
|
|
1855
1887
|
|
|
@@ -1993,10 +2025,6 @@ msgstr ""
|
|
|
1993
2025
|
msgid "GPG Key URL"
|
|
1994
2026
|
msgstr ""
|
|
1995
2027
|
|
|
1996
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
|
|
1997
|
-
msgid "GPG Keys"
|
|
1998
|
-
msgstr "GPG କି"
|
|
1999
|
-
|
|
2000
2028
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
|
2001
2029
|
msgid "Generate and Download"
|
|
2002
2030
|
msgstr "ନିର୍ମାଣ କରନ୍ତୁ ଏବଂ ଆହରଣ କରନ୍ତୁ"
|
|
@@ -2104,6 +2132,9 @@ msgstr ""
|
|
|
2104
2132
|
msgid "Host content and subscription details"
|
|
2105
2133
|
msgstr ""
|
|
2106
2134
|
|
|
2135
|
+
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."
|
|
2136
|
+
msgstr ""
|
|
2137
|
+
|
|
2107
2138
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
2108
2139
|
msgstr ""
|
|
2109
2140
|
|
|
@@ -2324,6 +2355,12 @@ msgstr ""
|
|
|
2324
2355
|
msgid "Immediate"
|
|
2325
2356
|
msgstr ""
|
|
2326
2357
|
|
|
2358
|
+
msgid "Import"
|
|
2359
|
+
msgstr ""
|
|
2360
|
+
|
|
2361
|
+
msgid "Import Content View Version"
|
|
2362
|
+
msgstr ""
|
|
2363
|
+
|
|
2327
2364
|
#, fuzzy
|
|
2328
2365
|
msgid "Import Manifest"
|
|
2329
2366
|
msgstr "ଆମଦାନୀ କରନ୍ତୁ"
|
|
@@ -2346,6 +2383,9 @@ msgstr ""
|
|
|
2346
2383
|
msgid "Import a Manifest using the manifest tab above."
|
|
2347
2384
|
msgstr ""
|
|
2348
2385
|
|
|
2386
|
+
msgid "Import a content view version"
|
|
2387
|
+
msgstr ""
|
|
2388
|
+
|
|
2349
2389
|
#, fuzzy
|
|
2350
2390
|
msgid "Import facts"
|
|
2351
2391
|
msgstr "ଆମଦାନୀ କରନ୍ତୁ"
|
|
@@ -2523,6 +2563,9 @@ msgstr ""
|
|
|
2523
2563
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2524
2564
|
msgstr ""
|
|
2525
2565
|
|
|
2566
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2567
|
+
msgstr ""
|
|
2568
|
+
|
|
2526
2569
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author mgiri
|
|
2527
2570
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2528
2571
|
msgstr "ଏହି ପ୍ରୟୋଗ ପାଇଁ ଅବୈଧ ପ୍ରାଚଳଗୁଡ଼ିକୁ ପଠାଯାଇଛି। ଦୟାକରି ତନ୍ତ୍ର ପ୍ରଶାସକଙ୍କ ସହିତ ଯୋଗାଯୋଗ କରନ୍ତୁ।"
|
|
@@ -2537,6 +2580,9 @@ msgstr ""
|
|
|
2537
2580
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2538
2581
|
msgstr ""
|
|
2539
2582
|
|
|
2583
|
+
msgid "Invalid path specified."
|
|
2584
|
+
msgstr ""
|
|
2585
|
+
|
|
2540
2586
|
msgid ""
|
|
2541
2587
|
"Invalid puppet module parameters specified. \\\n"
|
|
2542
2588
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2614,9 +2660,6 @@ msgstr ""
|
|
|
2614
2660
|
msgid "Learn more about adding Subscription Manifests"
|
|
2615
2661
|
msgstr ""
|
|
2616
2662
|
|
|
2617
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2618
|
-
msgstr ""
|
|
2619
|
-
|
|
2620
2663
|
#, fuzzy
|
|
2621
2664
|
msgid "Library lifecycle environments may not be deleted."
|
|
2622
2665
|
msgstr "ପରିବେଶ '%s' କୁ ଅପସରଣ କରାଯାଇଛି।"
|
|
@@ -2871,6 +2914,9 @@ msgstr ""
|
|
|
2871
2914
|
msgid "List srpms"
|
|
2872
2915
|
msgstr ""
|
|
2873
2916
|
|
|
2917
|
+
msgid "List subscriptions"
|
|
2918
|
+
msgstr ""
|
|
2919
|
+
|
|
2874
2920
|
msgid "List sync plans"
|
|
2875
2921
|
msgstr ""
|
|
2876
2922
|
|
|
@@ -2959,6 +3005,9 @@ msgstr "ସନ୍ଦେଶ"
|
|
|
2959
3005
|
msgid "Messaging connection"
|
|
2960
3006
|
msgstr ""
|
|
2961
3007
|
|
|
3008
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
3009
|
+
msgstr ""
|
|
3010
|
+
|
|
2962
3011
|
msgid "Mismatched"
|
|
2963
3012
|
msgstr ""
|
|
2964
3013
|
|
|
@@ -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, author mgiri
|
|
3120
3175
|
msgid "No new packages installed"
|
|
3121
3176
|
msgstr "କୌଣସି ନୂତନ ପ୍ୟାକେଜ ସ୍ଥାପିତ ହୋଇନାହିଁ"
|
|
@@ -3257,6 +3312,9 @@ msgstr ""
|
|
|
3257
3312
|
msgid "On-disk location for exported repositories"
|
|
3258
3313
|
msgstr ""
|
|
3259
3314
|
|
|
3315
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3316
|
+
msgstr ""
|
|
3317
|
+
|
|
3260
3318
|
#, fuzzy
|
|
3261
3319
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3262
3320
|
msgstr "ଅନୁଷ୍ଠାନ id ଆବଶ୍ୟକ କିନ୍ତୁ ଉଲ୍ଲେଖ ହୋଇନାହିଁ।"
|
|
@@ -3290,6 +3348,9 @@ msgstr ""
|
|
|
3290
3348
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3291
3349
|
msgstr ""
|
|
3292
3350
|
|
|
3351
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3352
|
+
msgstr ""
|
|
3353
|
+
|
|
3293
3354
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author mgiri
|
|
3294
3355
|
msgid "Organization"
|
|
3295
3356
|
msgstr "ଅନୁଷ୍ଠାନ"
|
|
@@ -3580,6 +3641,9 @@ msgstr "ଭୌତିକ"
|
|
|
3580
3641
|
msgid "Plan numeric identifier"
|
|
3581
3642
|
msgstr ""
|
|
3582
3643
|
|
|
3644
|
+
msgid "Please add some repositories."
|
|
3645
|
+
msgstr ""
|
|
3646
|
+
|
|
3583
3647
|
msgid "Please enter a positive number above zero"
|
|
3584
3648
|
msgstr ""
|
|
3585
3649
|
|
|
@@ -3714,6 +3778,9 @@ msgstr ""
|
|
|
3714
3778
|
msgid "Pulp"
|
|
3715
3779
|
msgstr ""
|
|
3716
3780
|
|
|
3781
|
+
msgid "Pulp 3 export destination filepath"
|
|
3782
|
+
msgstr ""
|
|
3783
|
+
|
|
3717
3784
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3718
3785
|
msgstr ""
|
|
3719
3786
|
|
|
@@ -3768,6 +3835,12 @@ msgstr ""
|
|
|
3768
3835
|
msgid "Pulp task error"
|
|
3769
3836
|
msgstr ""
|
|
3770
3837
|
|
|
3838
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3839
|
+
msgstr ""
|
|
3840
|
+
|
|
3841
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3842
|
+
msgstr ""
|
|
3843
|
+
|
|
3771
3844
|
msgid "Pulpcore"
|
|
3772
3845
|
msgstr ""
|
|
3773
3846
|
|
|
@@ -3910,6 +3983,9 @@ msgstr ""
|
|
|
3910
3983
|
msgid "Reload data"
|
|
3911
3984
|
msgstr ""
|
|
3912
3985
|
|
|
3986
|
+
msgid "Remote action:"
|
|
3987
|
+
msgstr ""
|
|
3988
|
+
|
|
3913
3989
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3914
3990
|
msgstr ""
|
|
3915
3991
|
|
|
@@ -4001,6 +4077,9 @@ msgstr "ପ୍ୟାକେଜକୁ ବାହାର କରୁଅଛି..."
|
|
|
4001
4077
|
msgid "Repo Type"
|
|
4002
4078
|
msgstr ""
|
|
4003
4079
|
|
|
4080
|
+
msgid "Report"
|
|
4081
|
+
msgstr ""
|
|
4082
|
+
|
|
4004
4083
|
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author mgiri
|
|
4005
4084
|
msgid "Repositories"
|
|
4006
4085
|
msgstr "ରେପୋଜିଟୋରୀଗୁଡ଼ିକ"
|
|
@@ -4079,6 +4158,9 @@ msgstr ""
|
|
|
4079
4158
|
msgid "Resolve Traces"
|
|
4080
4159
|
msgstr ""
|
|
4081
4160
|
|
|
4161
|
+
msgid "Resolve traces for one or more hosts"
|
|
4162
|
+
msgstr ""
|
|
4163
|
+
|
|
4082
4164
|
msgid "Resource"
|
|
4083
4165
|
msgstr ""
|
|
4084
4166
|
|
|
@@ -4158,6 +4240,9 @@ msgstr ""
|
|
|
4158
4240
|
msgid "Role"
|
|
4159
4241
|
msgstr ""
|
|
4160
4242
|
|
|
4243
|
+
msgid "Role of host"
|
|
4244
|
+
msgstr ""
|
|
4245
|
+
|
|
4161
4246
|
msgid "Run Sync Plan:"
|
|
4162
4247
|
msgstr ""
|
|
4163
4248
|
|
|
@@ -4262,6 +4347,9 @@ msgstr "ସର୍ଭିସ ସ୍ତର %s"
|
|
|
4262
4347
|
msgid "Service Level (SLA)"
|
|
4263
4348
|
msgstr ""
|
|
4264
4349
|
|
|
4350
|
+
msgid "Service level of host"
|
|
4351
|
+
msgstr ""
|
|
4352
|
+
|
|
4265
4353
|
msgid "Service level to be used for autoheal"
|
|
4266
4354
|
msgstr ""
|
|
4267
4355
|
|
|
@@ -4356,6 +4444,9 @@ msgstr ""
|
|
|
4356
4444
|
msgid "Show the available repository types"
|
|
4357
4445
|
msgstr ""
|
|
4358
4446
|
|
|
4447
|
+
msgid "Show the export history for a content view version"
|
|
4448
|
+
msgstr ""
|
|
4449
|
+
|
|
4359
4450
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4360
4451
|
msgstr ""
|
|
4361
4452
|
|
|
@@ -4365,6 +4456,12 @@ msgstr ""
|
|
|
4365
4456
|
msgid "Simple Content Access"
|
|
4366
4457
|
msgstr ""
|
|
4367
4458
|
|
|
4459
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4460
|
+
msgstr ""
|
|
4461
|
+
|
|
4462
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4463
|
+
msgstr ""
|
|
4464
|
+
|
|
4368
4465
|
msgid "Size of file to upload"
|
|
4369
4466
|
msgstr ""
|
|
4370
4467
|
|
|
@@ -4615,6 +4712,9 @@ msgstr ""
|
|
|
4615
4712
|
msgid "Sync plan identifier to attach"
|
|
4616
4713
|
msgstr ""
|
|
4617
4714
|
|
|
4715
|
+
msgid "Sync state"
|
|
4716
|
+
msgstr ""
|
|
4717
|
+
|
|
4618
4718
|
msgid "Synced Content"
|
|
4619
4719
|
msgstr ""
|
|
4620
4720
|
|
|
@@ -4730,6 +4830,9 @@ msgstr ""
|
|
|
4730
4830
|
msgid "The id of the host to alter"
|
|
4731
4831
|
msgstr ""
|
|
4732
4832
|
|
|
4833
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4834
|
+
msgstr ""
|
|
4835
|
+
|
|
4733
4836
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4734
4837
|
msgstr ""
|
|
4735
4838
|
|
|
@@ -4779,6 +4882,9 @@ msgstr ""
|
|
|
4779
4882
|
msgid "The requested resource does not belong to the specified organization"
|
|
4780
4883
|
msgstr ""
|
|
4781
4884
|
|
|
4885
|
+
msgid "The requested traces were not found for this host"
|
|
4886
|
+
msgstr ""
|
|
4887
|
+
|
|
4782
4888
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4783
4889
|
msgstr ""
|
|
4784
4890
|
|
|
@@ -4842,6 +4948,9 @@ msgstr ""
|
|
|
4842
4948
|
msgid "There's no running synchronization for this smart proxy."
|
|
4843
4949
|
msgstr ""
|
|
4844
4950
|
|
|
4951
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4952
|
+
msgstr ""
|
|
4953
|
+
|
|
4845
4954
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4846
4955
|
msgstr ""
|
|
4847
4956
|
|
|
@@ -4981,10 +5090,13 @@ msgstr ""
|
|
|
4981
5090
|
msgid "Unable to detect puppet path"
|
|
4982
5091
|
msgstr ""
|
|
4983
5092
|
|
|
4984
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
5093
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4985
5094
|
msgstr ""
|
|
4986
5095
|
|
|
4987
|
-
msgid "Unable to export
|
|
5096
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
5097
|
+
msgstr ""
|
|
5098
|
+
|
|
5099
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4988
5100
|
msgstr ""
|
|
4989
5101
|
|
|
4990
5102
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -5201,6 +5313,12 @@ msgstr ""
|
|
|
5201
5313
|
msgid "Updating Package..."
|
|
5202
5314
|
msgstr "ପ୍ୟାକେଜକୁ ଅଦ୍ୟତନ କରୁଅଛି..."
|
|
5203
5315
|
|
|
5316
|
+
msgid "Updating System Purpose for host"
|
|
5317
|
+
msgstr ""
|
|
5318
|
+
|
|
5319
|
+
msgid "Updating System Purpose for host %s"
|
|
5320
|
+
msgstr ""
|
|
5321
|
+
|
|
5204
5322
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author mgiri
|
|
5205
5323
|
msgid "Updating package group..."
|
|
5206
5324
|
msgstr "ପ୍ୟାକେଜ ଶ୍ରେଣୀକୁ ଅଦ୍ୟତନ କରୁଅଛି..."
|
|
@@ -5258,9 +5376,15 @@ msgstr ""
|
|
|
5258
5376
|
msgid "Usage Type"
|
|
5259
5377
|
msgstr ""
|
|
5260
5378
|
|
|
5379
|
+
msgid "Usage of host"
|
|
5380
|
+
msgstr ""
|
|
5381
|
+
|
|
5261
5382
|
msgid "Use remote execution by default"
|
|
5262
5383
|
msgstr ""
|
|
5263
5384
|
|
|
5385
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5386
|
+
msgstr ""
|
|
5387
|
+
|
|
5264
5388
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5265
5389
|
msgstr ""
|
|
5266
5390
|
|
|
@@ -5285,6 +5409,15 @@ msgstr ""
|
|
|
5285
5409
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5286
5410
|
msgstr ""
|
|
5287
5411
|
|
|
5412
|
+
msgid "Verify checksum"
|
|
5413
|
+
msgstr ""
|
|
5414
|
+
|
|
5415
|
+
msgid "Verify checksum for one or more products"
|
|
5416
|
+
msgstr ""
|
|
5417
|
+
|
|
5418
|
+
msgid "Verify checksum of repository contents"
|
|
5419
|
+
msgstr ""
|
|
5420
|
+
|
|
5288
5421
|
msgid "Version"
|
|
5289
5422
|
msgstr ""
|
|
5290
5423
|
|
|
@@ -5302,7 +5435,7 @@ msgstr ""
|
|
|
5302
5435
|
msgid "Virtual"
|
|
5303
5436
|
msgstr "ଆଭାସୀ"
|
|
5304
5437
|
|
|
5305
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5438
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5306
5439
|
msgstr ""
|
|
5307
5440
|
|
|
5308
5441
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5373,6 +5506,9 @@ msgstr "ଚାଳକ %s ରେ ଆପଣ ପୂର୍ବନିର୍ଦ୍ଧା
|
|
|
5373
5506
|
msgid "You currently don't have any Content Views."
|
|
5374
5507
|
msgstr ""
|
|
5375
5508
|
|
|
5509
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5510
|
+
msgstr ""
|
|
5511
|
+
|
|
5376
5512
|
msgid "You do not have permissions to delete %s"
|
|
5377
5513
|
msgstr ""
|
|
5378
5514
|
|
|
@@ -5810,9 +5946,6 @@ msgstr ""
|
|
|
5810
5946
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5811
5947
|
msgstr ""
|
|
5812
5948
|
|
|
5813
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5814
|
-
msgstr ""
|
|
5815
|
-
|
|
5816
5949
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5817
5950
|
msgstr ""
|
|
5818
5951
|
|
|
@@ -5892,6 +6025,9 @@ msgstr ""
|
|
|
5892
6025
|
msgid "maximum size of each ISO in MB"
|
|
5893
6026
|
msgstr ""
|
|
5894
6027
|
|
|
6028
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
6029
|
+
msgstr ""
|
|
6030
|
+
|
|
5895
6031
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5896
6032
|
msgstr ""
|
|
5897
6033
|
|
|
@@ -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
|
|