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/gu/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 swkothar
|
|
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 "id '%s' સાથે પ્રોડક્ટને શોધી શક્યા નહિં"
|
|
@@ -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 swkothar
|
|
1280
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
1281
|
-
msgstr "સંસ્થા '%{org}' માં સુમેળ યોજના '%{plan}' ને શોધી શક્યા નહિં"
|
|
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, author swkothar
|
|
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
|
|
|
@@ -3111,12 +3160,18 @@ msgstr ""
|
|
|
3111
3160
|
msgid "No hosts registered with subscription-manager found in selection."
|
|
3112
3161
|
msgstr ""
|
|
3113
3162
|
|
|
3163
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
3164
|
+
msgstr ""
|
|
3165
|
+
|
|
3114
3166
|
msgid "No manifest file uploaded"
|
|
3115
3167
|
msgstr ""
|
|
3116
3168
|
|
|
3117
3169
|
msgid "No matching content views found"
|
|
3118
3170
|
msgstr ""
|
|
3119
3171
|
|
|
3172
|
+
msgid "No matching repositories found"
|
|
3173
|
+
msgstr ""
|
|
3174
|
+
|
|
3120
3175
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
|
3121
3176
|
msgid "No new packages installed"
|
|
3122
3177
|
msgstr "નવાં પેકેજ સ્થાપિત થયેલ નથી"
|
|
@@ -3259,6 +3314,9 @@ msgstr ""
|
|
|
3259
3314
|
msgid "On-disk location for exported repositories"
|
|
3260
3315
|
msgstr ""
|
|
3261
3316
|
|
|
3317
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
3318
|
+
msgstr ""
|
|
3319
|
+
|
|
3262
3320
|
#, fuzzy
|
|
3263
3321
|
msgid "One of parameters [ %s ] required but not specified."
|
|
3264
3322
|
msgstr "સંસ્થા id જરૂરી છે પરંતુ સ્પષ્ટ થયેલ નથી (_i)."
|
|
@@ -3292,6 +3350,9 @@ msgstr ""
|
|
|
3292
3350
|
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3293
3351
|
msgstr ""
|
|
3294
3352
|
|
|
3353
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
|
|
3354
|
+
msgstr ""
|
|
3355
|
+
|
|
3295
3356
|
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author swkothar
|
|
3296
3357
|
msgid "Organization"
|
|
3297
3358
|
msgstr "સંસ્થા"
|
|
@@ -3582,6 +3643,9 @@ msgstr "ભૌતિક"
|
|
|
3582
3643
|
msgid "Plan numeric identifier"
|
|
3583
3644
|
msgstr ""
|
|
3584
3645
|
|
|
3646
|
+
msgid "Please add some repositories."
|
|
3647
|
+
msgstr ""
|
|
3648
|
+
|
|
3585
3649
|
msgid "Please enter a positive number above zero"
|
|
3586
3650
|
msgstr ""
|
|
3587
3651
|
|
|
@@ -3716,6 +3780,9 @@ msgstr ""
|
|
|
3716
3780
|
msgid "Pulp"
|
|
3717
3781
|
msgstr ""
|
|
3718
3782
|
|
|
3783
|
+
msgid "Pulp 3 export destination filepath"
|
|
3784
|
+
msgstr ""
|
|
3785
|
+
|
|
3719
3786
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
3720
3787
|
msgstr ""
|
|
3721
3788
|
|
|
@@ -3770,6 +3837,12 @@ msgstr ""
|
|
|
3770
3837
|
msgid "Pulp task error"
|
|
3771
3838
|
msgstr ""
|
|
3772
3839
|
|
|
3840
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
3841
|
+
msgstr ""
|
|
3842
|
+
|
|
3843
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
3844
|
+
msgstr ""
|
|
3845
|
+
|
|
3773
3846
|
msgid "Pulpcore"
|
|
3774
3847
|
msgstr ""
|
|
3775
3848
|
|
|
@@ -3912,6 +3985,9 @@ msgstr ""
|
|
|
3912
3985
|
msgid "Reload data"
|
|
3913
3986
|
msgstr ""
|
|
3914
3987
|
|
|
3988
|
+
msgid "Remote action:"
|
|
3989
|
+
msgstr ""
|
|
3990
|
+
|
|
3915
3991
|
msgid "Removal of package group(s) requested: %{groups}"
|
|
3916
3992
|
msgstr ""
|
|
3917
3993
|
|
|
@@ -4003,6 +4079,9 @@ msgstr "પેકેજને દૂર કરી રહ્યા છે..."
|
|
|
4003
4079
|
msgid "Repo Type"
|
|
4004
4080
|
msgstr ""
|
|
4005
4081
|
|
|
4082
|
+
msgid "Report"
|
|
4083
|
+
msgstr ""
|
|
4084
|
+
|
|
4006
4085
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
|
4007
4086
|
msgid "Repositories"
|
|
4008
4087
|
msgstr "રિપોઝીટરીઓ"
|
|
@@ -4081,6 +4160,9 @@ msgstr ""
|
|
|
4081
4160
|
msgid "Resolve Traces"
|
|
4082
4161
|
msgstr ""
|
|
4083
4162
|
|
|
4163
|
+
msgid "Resolve traces for one or more hosts"
|
|
4164
|
+
msgstr ""
|
|
4165
|
+
|
|
4084
4166
|
msgid "Resource"
|
|
4085
4167
|
msgstr ""
|
|
4086
4168
|
|
|
@@ -4160,6 +4242,9 @@ msgstr ""
|
|
|
4160
4242
|
msgid "Role"
|
|
4161
4243
|
msgstr ""
|
|
4162
4244
|
|
|
4245
|
+
msgid "Role of host"
|
|
4246
|
+
msgstr ""
|
|
4247
|
+
|
|
4163
4248
|
msgid "Run Sync Plan:"
|
|
4164
4249
|
msgstr ""
|
|
4165
4250
|
|
|
@@ -4264,6 +4349,9 @@ msgstr "સેવા સ્તર %s"
|
|
|
4264
4349
|
msgid "Service Level (SLA)"
|
|
4265
4350
|
msgstr ""
|
|
4266
4351
|
|
|
4352
|
+
msgid "Service level of host"
|
|
4353
|
+
msgstr ""
|
|
4354
|
+
|
|
4267
4355
|
msgid "Service level to be used for autoheal"
|
|
4268
4356
|
msgstr ""
|
|
4269
4357
|
|
|
@@ -4358,6 +4446,9 @@ msgstr ""
|
|
|
4358
4446
|
msgid "Show the available repository types"
|
|
4359
4447
|
msgstr ""
|
|
4360
4448
|
|
|
4449
|
+
msgid "Show the export history for a content view version"
|
|
4450
|
+
msgstr ""
|
|
4451
|
+
|
|
4361
4452
|
msgid "Shows status of Katello system and it's subcomponents"
|
|
4362
4453
|
msgstr ""
|
|
4363
4454
|
|
|
@@ -4367,6 +4458,12 @@ msgstr ""
|
|
|
4367
4458
|
msgid "Simple Content Access"
|
|
4368
4459
|
msgstr ""
|
|
4369
4460
|
|
|
4461
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
4462
|
+
msgstr ""
|
|
4463
|
+
|
|
4464
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
4465
|
+
msgstr ""
|
|
4466
|
+
|
|
4370
4467
|
msgid "Size of file to upload"
|
|
4371
4468
|
msgstr ""
|
|
4372
4469
|
|
|
@@ -4617,6 +4714,9 @@ msgstr ""
|
|
|
4617
4714
|
msgid "Sync plan identifier to attach"
|
|
4618
4715
|
msgstr ""
|
|
4619
4716
|
|
|
4717
|
+
msgid "Sync state"
|
|
4718
|
+
msgstr ""
|
|
4719
|
+
|
|
4620
4720
|
msgid "Synced Content"
|
|
4621
4721
|
msgstr ""
|
|
4622
4722
|
|
|
@@ -4732,6 +4832,9 @@ msgstr ""
|
|
|
4732
4832
|
msgid "The id of the host to alter"
|
|
4733
4833
|
msgstr ""
|
|
4734
4834
|
|
|
4835
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
4836
|
+
msgstr ""
|
|
4837
|
+
|
|
4735
4838
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
|
4736
4839
|
msgstr ""
|
|
4737
4840
|
|
|
@@ -4781,6 +4884,9 @@ msgstr ""
|
|
|
4781
4884
|
msgid "The requested resource does not belong to the specified organization"
|
|
4782
4885
|
msgstr ""
|
|
4783
4886
|
|
|
4887
|
+
msgid "The requested traces were not found for this host"
|
|
4888
|
+
msgstr ""
|
|
4889
|
+
|
|
4784
4890
|
msgid "The selected content source and lifecycle environment do not match"
|
|
4785
4891
|
msgstr ""
|
|
4786
4892
|
|
|
@@ -4844,6 +4950,9 @@ msgstr ""
|
|
|
4844
4950
|
msgid "There's no running synchronization for this smart proxy."
|
|
4845
4951
|
msgstr ""
|
|
4846
4952
|
|
|
4953
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4954
|
+
msgstr ""
|
|
4955
|
+
|
|
4847
4956
|
msgid "This Host is not currently registered with subscription-manager."
|
|
4848
4957
|
msgstr ""
|
|
4849
4958
|
|
|
@@ -4983,10 +5092,13 @@ msgstr ""
|
|
|
4983
5092
|
msgid "Unable to detect puppet path"
|
|
4984
5093
|
msgstr ""
|
|
4985
5094
|
|
|
4986
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not a
|
|
5095
|
+
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
|
4987
5096
|
msgstr ""
|
|
4988
5097
|
|
|
4989
|
-
msgid "Unable to export
|
|
5098
|
+
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
|
5099
|
+
msgstr ""
|
|
5100
|
+
|
|
5101
|
+
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
|
4990
5102
|
msgstr ""
|
|
4991
5103
|
|
|
4992
5104
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
|
@@ -5203,6 +5315,12 @@ msgstr ""
|
|
|
5203
5315
|
msgid "Updating Package..."
|
|
5204
5316
|
msgstr "પેકેજને સુધારી રહ્યા છે..."
|
|
5205
5317
|
|
|
5318
|
+
msgid "Updating System Purpose for host"
|
|
5319
|
+
msgstr ""
|
|
5320
|
+
|
|
5321
|
+
msgid "Updating System Purpose for host %s"
|
|
5322
|
+
msgstr ""
|
|
5323
|
+
|
|
5206
5324
|
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author swkothar
|
|
5207
5325
|
msgid "Updating package group..."
|
|
5208
5326
|
msgstr "પેકેજ જૂથને સુધારી રહ્યા છે..."
|
|
@@ -5260,9 +5378,15 @@ msgstr ""
|
|
|
5260
5378
|
msgid "Usage Type"
|
|
5261
5379
|
msgstr ""
|
|
5262
5380
|
|
|
5381
|
+
msgid "Usage of host"
|
|
5382
|
+
msgstr ""
|
|
5383
|
+
|
|
5263
5384
|
msgid "Use remote execution by default"
|
|
5264
5385
|
msgstr ""
|
|
5265
5386
|
|
|
5387
|
+
msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
|
|
5388
|
+
msgstr ""
|
|
5389
|
+
|
|
5266
5390
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
|
5267
5391
|
msgstr ""
|
|
5268
5392
|
|
|
@@ -5287,6 +5411,15 @@ msgstr ""
|
|
|
5287
5411
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
|
5288
5412
|
msgstr ""
|
|
5289
5413
|
|
|
5414
|
+
msgid "Verify checksum"
|
|
5415
|
+
msgstr ""
|
|
5416
|
+
|
|
5417
|
+
msgid "Verify checksum for one or more products"
|
|
5418
|
+
msgstr ""
|
|
5419
|
+
|
|
5420
|
+
msgid "Verify checksum of repository contents"
|
|
5421
|
+
msgstr ""
|
|
5422
|
+
|
|
5290
5423
|
msgid "Version"
|
|
5291
5424
|
msgstr ""
|
|
5292
5425
|
|
|
@@ -5304,7 +5437,7 @@ msgstr ""
|
|
|
5304
5437
|
msgid "Virtual"
|
|
5305
5438
|
msgstr "વર્ચ્યુઅલ"
|
|
5306
5439
|
|
|
5307
|
-
msgid "When Simple Content Access is enabled, hosts
|
|
5440
|
+
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
|
5308
5441
|
msgstr ""
|
|
5309
5442
|
|
|
5310
5443
|
msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
|
|
@@ -5375,6 +5508,9 @@ msgstr "તમે વપરાશકર્તા %s પર મૂળભૂત
|
|
|
5375
5508
|
msgid "You currently don't have any Content Views."
|
|
5376
5509
|
msgstr ""
|
|
5377
5510
|
|
|
5511
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
5512
|
+
msgstr ""
|
|
5513
|
+
|
|
5378
5514
|
msgid "You do not have permissions to delete %s"
|
|
5379
5515
|
msgstr ""
|
|
5380
5516
|
|
|
@@ -5812,9 +5948,6 @@ msgstr ""
|
|
|
5812
5948
|
msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
|
|
5813
5949
|
msgstr ""
|
|
5814
5950
|
|
|
5815
|
-
msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
|
|
5816
|
-
msgstr ""
|
|
5817
|
-
|
|
5818
5951
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
5819
5952
|
msgstr ""
|
|
5820
5953
|
|
|
@@ -5894,6 +6027,9 @@ msgstr ""
|
|
|
5894
6027
|
msgid "maximum size of each ISO in MB"
|
|
5895
6028
|
msgstr ""
|
|
5896
6029
|
|
|
6030
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
6031
|
+
msgstr ""
|
|
6032
|
+
|
|
5897
6033
|
msgid "may not be less than the number of hosts associated with the host collection."
|
|
5898
6034
|
msgstr ""
|
|
5899
6035
|
|
|
@@ -6180,6 +6316,9 @@ msgstr ""
|
|
|
6180
6316
|
msgid "the uuid of the puppet module to associate"
|
|
6181
6317
|
msgstr ""
|
|
6182
6318
|
|
|
6319
|
+
msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
|
|
6320
|
+
msgstr ""
|
|
6321
|
+
|
|
6183
6322
|
msgid "true if the latest version of the component's content view is desired"
|
|
6184
6323
|
msgstr ""
|
|
6185
6324
|
|