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/bn/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, author bnin
|
|
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 Runa Bhattacharjee
|
|
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 "'%s' id বিশিষ্ট উৎপাদন পাওয়া যায়নি"
|
|
@@ -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, author Runa Bhattacharjee
|
|
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
|
|
|
@@ -1849,6 +1878,9 @@ msgstr ""
|
|
|
1849
1878
|
msgid "Export to ISO format"
|
|
1850
1879
|
msgstr ""
|
|
1851
1880
|
|
|
1881
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1882
|
+
msgstr ""
|
|
1883
|
+
|
|
1852
1884
|
msgid "Exported version"
|
|
1853
1885
|
msgstr ""
|
|
1854
1886
|
|
|
@@ -1992,10 +2024,6 @@ msgstr ""
|
|
|
1992
2024
|
msgid "GPG Key URL"
|
|
1993
2025
|
msgstr ""
|
|
1994
2026
|
|
|
1995
|
-
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
|
1996
|
-
msgid "GPG Keys"
|
|
1997
|
-
msgstr "GPG-কি"
|
|
1998
|
-
|
|
1999
2027
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
|
2000
2028
|
msgid "Generate and Download"
|
|
2001
2029
|
msgstr "প্রস্তুত করুন এবং ডাউনলোড করুন"
|
|
@@ -2103,6 +2131,9 @@ msgstr ""
|
|
|
2103
2131
|
msgid "Host content and subscription details"
|
|
2104
2132
|
msgstr ""
|
|
2105
2133
|
|
|
2134
|
+
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."
|
|
2135
|
+
msgstr ""
|
|
2136
|
+
|
|
2106
2137
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
|
2107
2138
|
msgstr ""
|
|
2108
2139
|
|
|
@@ -2323,6 +2354,12 @@ msgstr ""
|
|
|
2323
2354
|
msgid "Immediate"
|
|
2324
2355
|
msgstr ""
|
|
2325
2356
|
|
|
2357
|
+
msgid "Import"
|
|
2358
|
+
msgstr ""
|
|
2359
|
+
|
|
2360
|
+
msgid "Import Content View Version"
|
|
2361
|
+
msgstr ""
|
|
2362
|
+
|
|
2326
2363
|
#, fuzzy
|
|
2327
2364
|
msgid "Import Manifest"
|
|
2328
2365
|
msgstr "ইম্পোর্ট করুন"
|
|
@@ -2345,6 +2382,9 @@ msgstr ""
|
|
|
2345
2382
|
msgid "Import a Manifest using the manifest tab above."
|
|
2346
2383
|
msgstr ""
|
|
2347
2384
|
|
|
2385
|
+
msgid "Import a content view version"
|
|
2386
|
+
msgstr ""
|
|
2387
|
+
|
|
2348
2388
|
#, fuzzy
|
|
2349
2389
|
msgid "Import facts"
|
|
2350
2390
|
msgstr "ইম্পোর্ট করুন"
|
|
@@ -2522,6 +2562,9 @@ msgstr ""
|
|
|
2522
2562
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
|
2523
2563
|
msgstr ""
|
|
2524
2564
|
|
|
2565
|
+
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
|
2566
|
+
msgstr ""
|
|
2567
|
+
|
|
2525
2568
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
|
2526
2569
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
|
2527
2570
|
msgstr "এই কাজের অনুরোধের সাথে প্রেরিত পরামিতি বৈধ নয়। অনুগ্রহ করে সিস্টেম অ্যাডমিনিস্ট্রেটরের সাথে যোগাযোগ করুন।"
|
|
@@ -2536,6 +2579,9 @@ msgstr ""
|
|
|
2536
2579
|
msgid "Invalid params provided - date_type must be one of %s"
|
|
2537
2580
|
msgstr ""
|
|
2538
2581
|
|
|
2582
|
+
msgid "Invalid path specified."
|
|
2583
|
+
msgstr ""
|
|
2584
|
+
|
|
2539
2585
|
msgid ""
|
|
2540
2586
|
"Invalid puppet module parameters specified. \\\n"
|
|
2541
2587
|
" Either 'uuid' or 'name' and 'author' must be specified."
|
|
@@ -2613,9 +2659,6 @@ msgstr ""
|
|
|
2613
2659
|
msgid "Learn more about adding Subscription Manifests"
|
|
2614
2660
|
msgstr ""
|
|
2615
2661
|
|
|
2616
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
2617
|
-
msgstr ""
|
|
2618
|
-
|
|
2619
2662
|
#, fuzzy
|
|
2620
2663
|
msgid "Library lifecycle environments may not be deleted."
|
|
2621
2664
|
msgstr "'%s' এনভায়রনমেন্ট মুছে ফেলা হয়েছে।"
|
|
@@ -2870,6 +2913,9 @@ msgstr ""
|
|
|
2870
2913
|
msgid "List srpms"
|
|
2871
2914
|
msgstr ""
|
|
2872
2915
|
|
|
2916
|
+
msgid "List subscriptions"
|
|
2917
|
+
msgstr ""
|
|
2918
|
+
|
|
2873
2919
|
msgid "List sync plans"
|
|
2874
2920
|
msgstr ""
|
|
2875
2921
|
|
|
@@ -2958,6 +3004,9 @@ msgstr "বার্তা"
|
|
|
2958
3004
|
msgid "Messaging connection"
|
|
2959
3005
|
msgstr ""
|
|
2960
3006
|
|
|
3007
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
3008
|
+
msgstr ""
|
|
3009
|
+
|
|
2961
3010
|
msgid "Mismatched"
|
|
2962
3011
|
msgstr ""
|
|
2963
3012
|
|
|
@@ -3109,12 +3158,18 @@ msgstr ""
|
|
|
3109
3158
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
3110
3159
|
msgstr ""
|
|
3111
3160
|
|
|
3161
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3162
|
+
msgstr ""
|
|
3163
|
+
|
|
3112
3164
|
msgid "No manifest file uploaded"
|
|
3113
3165
|
msgstr ""
|
|
3114
3166
|
|
|
3115
3167
|
msgid "No matching content views found"
|
|
3116
3168
|
msgstr ""
|
|
3117
3169
|
|
|
3170
|
+
msgid "No matching repositories found"
|
|
3171
|
+
msgstr ""
|
|
3172
|
+
|
|
3118
3173
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
|
3119
3174
|
msgid "No new packages installed"
|
|
3120
3175
|
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 "organization_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 Runa Bhattacharjee
|
|
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 CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
|
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 bnin
|
|
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
|
|