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