katello 4.1.4 → 4.2.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -2
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +3 -3
- data/app/controllers/katello/api/v2/content_uploads_controller.rb +3 -1
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +33 -1
- data/app/controllers/katello/api/v2/content_views_controller.rb +12 -0
- data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -1
- data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -2
- data/app/controllers/katello/api/v2/products_controller.rb +4 -4
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +3 -11
- data/app/controllers/katello/api/v2/repositories_controller.rb +68 -47
- data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +0 -28
- data/app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb +26 -5
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +26 -1
- data/app/lib/actions/candlepin/environment/destroy.rb +2 -0
- data/app/lib/actions/katello/agent_action.rb +2 -2
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +3 -2
- data/app/lib/actions/katello/{gpg_key → content_credential}/update.rb +1 -1
- data/app/lib/actions/katello/content_view/publish.rb +6 -1
- data/app/lib/actions/katello/content_view_version/create_repos.rb +1 -1
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +0 -47
- data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +1 -1
- data/app/lib/actions/katello/repository/clone_contents.rb +1 -7
- data/app/lib/actions/katello/repository/clone_to_environment.rb +1 -7
- data/app/lib/actions/katello/repository/create.rb +4 -8
- data/app/lib/actions/katello/repository/create_root.rb +1 -1
- data/app/lib/actions/katello/repository/destroy.rb +1 -3
- data/app/lib/actions/katello/repository/import_upload.rb +3 -2
- data/app/lib/actions/katello/repository/instance_update.rb +1 -1
- data/app/lib/actions/katello/repository/metadata_generate.rb +2 -8
- data/app/lib/actions/katello/repository/multi_clone_contents.rb +0 -1
- data/app/lib/actions/katello/repository/refresh_repository.rb +1 -4
- data/app/lib/actions/katello/repository/remove_content.rb +6 -4
- data/app/lib/actions/katello/repository/sync.rb +5 -25
- data/app/lib/actions/katello/repository/update.rb +1 -2
- data/app/lib/actions/katello/repository/update_http_proxy_details.rb +2 -5
- data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
- data/app/lib/actions/katello/repository/upload_files.rb +8 -3
- data/app/lib/actions/katello/repository/upload_package_group.rb +2 -11
- data/app/lib/actions/katello/repository/verify_checksum.rb +0 -1
- data/app/lib/actions/katello/repository_set/enable_repository.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/repository/create.rb +2 -2
- data/app/lib/actions/pulp3/repository/create.rb +3 -4
- data/app/lib/actions/pulp3/repository/create_remote.rb +1 -6
- data/app/lib/actions/pulp3/repository/repair.rb +4 -0
- data/app/lib/katello/errors.rb +1 -0
- data/app/lib/katello/http_resource.rb +26 -73
- data/app/lib/katello/qpid/connection.rb +1 -3
- data/app/lib/katello/resources/candlepin/consumer.rb +1 -1
- data/app/lib/katello/resources/candlepin/environment.rb +2 -0
- data/app/lib/katello/resources/registry.rb +7 -20
- data/app/lib/katello/util/http_proxy.rb +0 -3
- data/app/lib/katello/validators/gpg_key_content_validator.rb +1 -1
- data/app/models/katello/authorization/{gpg_key.rb → content_credential.rb} +1 -1
- data/app/models/katello/authorization/product.rb +0 -4
- data/app/models/katello/concerns/host_managed_extensions.rb +2 -16
- data/app/models/katello/concerns/organization_extensions.rb +1 -1
- data/app/models/katello/concerns/pulp_database_unit.rb +13 -5
- data/app/models/katello/concerns/smart_proxy_extensions.rb +45 -41
- data/app/models/katello/{gpg_key.rb → content_credential.rb} +4 -4
- data/app/models/katello/content_view.rb +6 -1
- data/app/models/katello/generic_content_unit.rb +16 -0
- data/app/models/katello/glue/pulp/repos.rb +9 -25
- data/app/models/katello/kt_environment.rb +1 -1
- data/app/models/katello/product.rb +4 -4
- data/app/models/katello/repository.rb +13 -7
- data/app/models/katello/repository_generic_content_unit.rb +7 -0
- data/app/models/katello/root_repository.rb +38 -7
- data/app/models/setting/content.rb +5 -0
- data/app/services/cert/certs.rb +16 -8
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -2
- data/app/services/katello/candlepin/consumer.rb +6 -0
- data/app/services/katello/component_view_presenter.rb +27 -0
- data/app/services/katello/pulp/repository.rb +1 -1
- data/app/services/katello/pulp/server.rb +2 -2
- data/app/services/katello/pulp3/api/core.rb +4 -0
- data/app/services/katello/pulp3/api/generic.rb +68 -0
- data/app/services/katello/pulp3/generic_content_unit.rb +29 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -1
- data/app/services/katello/pulp3/repository/generic.rb +94 -0
- data/app/services/katello/pulp3/repository/yum.rb +4 -5
- data/app/services/katello/pulp3/repository.rb +27 -12
- data/app/services/katello/pulp3/repository_mirror.rb +2 -2
- data/app/services/katello/pulp3/smart_proxy_repository.rb +4 -4
- data/app/services/katello/registration_manager.rb +18 -7
- data/app/services/katello/repository_type.rb +59 -1
- data/app/services/katello/repository_type_manager.rb +116 -24
- data/app/views/katello/api/v2/content_views/base.json.rabl +4 -4
- data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
- data/app/views/smart_proxies/plugins/_pulpcore.html.erb +2 -5
- data/app/views/smart_proxies/pulp_status.html.erb +0 -7
- data/config/katello.yaml.example +0 -21
- data/config/routes/api/v2.rb +2 -1
- data/db/functions/deb_version_cmp_v01.sql +200 -0
- data/db/migrate/20171110082124_add_ssl_certs_to_products_and_repos.rb +5 -1
- data/db/migrate/20200402130013_add_repsoitory_docker_meta_tag_f_key.rb +3 -1
- data/db/migrate/20210624221630_katello_generic_content.rb +22 -0
- data/db/migrate/20210625095042_add_retain_package_versions_count.rb +9 -0
- data/db/migrate/20210628182553_add_generic_remote_options_to_root_repository.rb +5 -0
- data/db/migrate/20210714140440_remove_repo_export_permission.rb +5 -0
- data/db/migrate/20210721163730_change_gpg_keys_to_content_credentials.rb +8 -0
- data/db/migrate/20210728130748_create_function_deb_version_cmp.rb +12 -0
- data/db/seeds.d/111-upgrade_tasks.rb +1 -2
- data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +7 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +4 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +25 -33
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +1 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +10 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +9 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +0 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +1 -25
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +31 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +11 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/aggregate-task.factory.js +3 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task.factory.js +1 -1
- data/lib/katello/engine.rb +2 -4
- data/lib/katello/permission_creator.rb +6 -12
- data/lib/katello/plugin.rb +76 -80
- data/lib/katello/repository_types/python.rb +37 -0
- data/lib/katello/tasks/reimport.rake +0 -9
- data/lib/katello/tasks/repository.rake +3 -4
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +28 -29
- data/locale/bn/katello.po +699 -221
- data/locale/cs/katello.po +167 -59
- data/locale/de/katello.po +585 -352
- data/locale/en/katello.po +167 -59
- data/locale/es/katello.po +1388 -1189
- data/locale/fr/katello.po +1740 -1494
- data/locale/gu/katello.po +896 -416
- data/locale/hi/katello.po +892 -415
- data/locale/it/katello.po +371 -170
- data/locale/ja/katello.po +1657 -1439
- data/locale/katello.pot +933 -736
- data/locale/kn/katello.po +894 -416
- data/locale/ko/katello.po +515 -317
- data/locale/mr/katello.po +857 -415
- data/locale/or/katello.po +894 -416
- data/locale/pa/katello.po +874 -411
- data/locale/pt/katello.po +347 -154
- data/locale/pt_BR/katello.po +1398 -1215
- data/locale/ru/katello.po +671 -463
- data/locale/ta/katello.po +697 -221
- data/locale/te/katello.po +891 -415
- data/locale/zh_CN/katello.po +2029 -1845
- data/locale/zh_TW/katello.po +735 -407
- data/package.json +3 -1
- data/webpack/components/EditableTextInput/EditableTextInput.js +3 -3
- data/webpack/components/RoutedTabs/RoutedTabs.js +7 -8
- data/webpack/components/Table/TableWrapper.js +19 -11
- data/webpack/components/Table/helpers.js +1 -1
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab.js +42 -0
- data/webpack/components/extensions/HostDetails/Tabs/SubscriptionTab.js +12 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +4 -0
- data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +1 -1
- data/webpack/components/extensions/RegistrationCommands/index.js +1 -2
- data/webpack/components/pf3Table/formatters/selectionHeaderCellFormatter.js +2 -1
- data/webpack/fills_index.js +4 -1
- data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -4
- data/webpack/redux/reducers/RedHatRepositories/enabled.js +4 -1
- data/webpack/scenes/ContentViews/ContentViewsActions.js +16 -1
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -0
- data/webpack/scenes/ContentViews/ContentViewsPage.js +12 -22
- data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +4 -3
- data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +25 -14
- data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +4 -2
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +153 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +21 -10
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +157 -19
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +100 -108
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +140 -16
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/publishedContentViewDetails.fixtures.json +367 -0
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +59 -6
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +43 -0
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +44 -13
- data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +161 -0
- data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +54 -0
- data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterCreateResult.fixtures.json +124 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -6
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +7 -6
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +4 -3
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +71 -12
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +77 -0
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +13 -12
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +2 -2
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +17 -14
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +3 -3
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +2 -2
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +6 -2
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +61 -20
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskInProgressResponse.fixtures.json +71 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskResponse.fixtures.json +75 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +86 -1
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +713 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +184 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +104 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +71 -0
- data/webpack/scenes/ContentViews/Publish/ContentViewPublishSelectors.js +17 -0
- data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +145 -0
- data/webpack/scenes/ContentViews/Publish/__tests__/environmentPaths.fixtures.json +352 -0
- data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +184 -0
- data/webpack/scenes/ContentViews/Publish/__tests__/publishResponse.fixture.json +69 -0
- data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +3 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +75 -48
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +15 -2
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +6 -10
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +22 -10
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathActions.js +12 -0
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathConstants.js +2 -0
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathSelectors.js +16 -0
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +72 -0
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +8 -0
- data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +85 -0
- data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +9 -8
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +4 -25
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -3
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +3 -3
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +4 -2
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +24 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Table.js +4 -1
- data/webpack/scenes/Subscriptions/index.js +1 -4
- metadata +74 -39
- data/app/lib/actions/candlepin/environment/create.rb +0 -21
- data/app/lib/actions/foreman/environment/destroy.rb +0 -23
- data/app/lib/actions/katello/content_view/environment_create.rb +0 -21
- data/app/lib/actions/katello/repository/export.rb +0 -85
- data/app/lib/actions/katello/repository/purge_empty_content.rb +0 -16
- data/app/lib/actions/katello/repository/upload_errata.rb +0 -38
- data/app/lib/katello/util/proxy_uri.rb +0 -64
- data/app/models/katello/rhsm_fact_importer.rb +0 -20
- data/app/models/katello/rhsm_fact_name.rb +0 -17
- data/app/models/katello/rhsm_fact_parser.rb +0 -120
data/locale/en/katello.po
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
#
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version:
|
8
|
+
"Project-Id-Version: version 0.0.1\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
10
|
"PO-Revision-Date: 2011-01-06 19:28-0700\n"
|
11
11
|
"Last-Translator: Jason E. Rist <jrist@redhat.com>\n"
|
@@ -30,7 +30,7 @@ msgstr ""
|
|
30
30
|
msgid " %{package_count} Package(s)"
|
31
31
|
msgstr ""
|
32
32
|
|
33
|
-
msgid " Content view updated
|
33
|
+
msgid " Content view updated"
|
34
34
|
msgstr ""
|
35
35
|
|
36
36
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
@@ -39,6 +39,9 @@ msgstr ""
|
|
39
39
|
msgid " RPMs"
|
40
40
|
msgstr ""
|
41
41
|
|
42
|
+
msgid " View task details "
|
43
|
+
msgstr ""
|
44
|
+
|
42
45
|
msgid " environment cannot be set to an environment already on its path"
|
43
46
|
msgstr ""
|
44
47
|
|
@@ -308,6 +311,9 @@ msgstr ""
|
|
308
311
|
msgid "A list of subscriptions expiring soon"
|
309
312
|
msgstr ""
|
310
313
|
|
314
|
+
msgid "A new version of "
|
315
|
+
msgstr ""
|
316
|
+
|
311
317
|
msgid "A post-promotion summary of hosts with installable errata"
|
312
318
|
msgstr ""
|
313
319
|
|
@@ -317,7 +323,7 @@ msgstr ""
|
|
317
323
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
318
324
|
msgstr ""
|
319
325
|
|
320
|
-
msgid "A smart proxy seems to have been refreshed without pulpcore being running.
|
326
|
+
msgid "A smart proxy seems to have been refreshed without pulpcore being running. Please refresh the smart proxy after ensuring that pulpcore services are running."
|
321
327
|
msgstr ""
|
322
328
|
|
323
329
|
msgid "A summary of available and applicable errata for your hosts"
|
@@ -359,16 +365,16 @@ msgstr ""
|
|
359
365
|
msgid "Activation key ID"
|
360
366
|
msgstr ""
|
361
367
|
|
362
|
-
msgid "Activation key for subscription-manager client
|
368
|
+
msgid "Activation key for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. For multiple keys use `activation_keys` param instead."
|
363
369
|
msgstr ""
|
364
370
|
|
365
371
|
msgid "Activation key(s) for Subscription Manager."
|
366
372
|
msgstr ""
|
367
373
|
|
368
|
-
msgid "Activation
|
374
|
+
msgid "Activation keys and subscriptions can be managed"
|
369
375
|
msgstr ""
|
370
376
|
|
371
|
-
msgid "Activation keys and
|
377
|
+
msgid "Activation keys for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys."
|
372
378
|
msgstr ""
|
373
379
|
|
374
380
|
msgid "Activation keys: "
|
@@ -380,12 +386,18 @@ msgstr ""
|
|
380
386
|
msgid "Active only"
|
381
387
|
msgstr ""
|
382
388
|
|
389
|
+
msgid "Add"
|
390
|
+
msgstr ""
|
391
|
+
|
383
392
|
msgid "Add Subscriptions"
|
384
393
|
msgstr ""
|
385
394
|
|
386
395
|
msgid "Add a subscription to a host"
|
387
396
|
msgstr ""
|
388
397
|
|
398
|
+
msgid "Add component"
|
399
|
+
msgstr ""
|
400
|
+
|
389
401
|
msgid "Add components to the content view"
|
390
402
|
msgstr ""
|
391
403
|
|
@@ -428,6 +440,9 @@ msgstr ""
|
|
428
440
|
msgid "Added Content:"
|
429
441
|
msgstr ""
|
430
442
|
|
443
|
+
msgid "Added component to content view"
|
444
|
+
msgstr ""
|
445
|
+
|
431
446
|
msgid "Adding content units"
|
432
447
|
msgstr ""
|
433
448
|
|
@@ -452,6 +467,12 @@ msgstr ""
|
|
452
467
|
msgid "All errata applied"
|
453
468
|
msgstr ""
|
454
469
|
|
470
|
+
msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
471
|
+
msgstr ""
|
472
|
+
|
473
|
+
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
474
|
+
msgstr ""
|
475
|
+
|
455
476
|
msgid "Allow new Host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
|
456
477
|
msgstr ""
|
457
478
|
|
@@ -461,6 +482,9 @@ msgstr ""
|
|
461
482
|
msgid "Always Use Latest (currently %{version})"
|
462
483
|
msgstr ""
|
463
484
|
|
485
|
+
msgid "Always update to latest version"
|
486
|
+
msgstr ""
|
487
|
+
|
464
488
|
msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
|
465
489
|
msgstr ""
|
466
490
|
|
@@ -591,6 +615,12 @@ msgstr ""
|
|
591
615
|
msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
|
592
616
|
msgstr ""
|
593
617
|
|
618
|
+
msgid "Auth URL requires Auth token be set."
|
619
|
+
msgstr ""
|
620
|
+
|
621
|
+
msgid "Auth token requires Auth URL be set."
|
622
|
+
msgstr ""
|
623
|
+
|
594
624
|
msgid "Author"
|
595
625
|
msgstr ""
|
596
626
|
|
@@ -906,6 +936,9 @@ msgstr ""
|
|
906
936
|
msgid "Component Content View"
|
907
937
|
msgstr ""
|
908
938
|
|
939
|
+
msgid "Component content view"
|
940
|
+
msgstr ""
|
941
|
+
|
909
942
|
msgid "Composite Content View"
|
910
943
|
msgstr ""
|
911
944
|
|
@@ -927,6 +960,9 @@ msgstr ""
|
|
927
960
|
msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
|
928
961
|
msgstr ""
|
929
962
|
|
963
|
+
msgid "Consisting of multiple component content views"
|
964
|
+
msgstr ""
|
965
|
+
|
930
966
|
msgid "Consumed"
|
931
967
|
msgstr ""
|
932
968
|
|
@@ -1047,6 +1083,12 @@ msgstr ""
|
|
1047
1083
|
msgid "Content type"
|
1048
1084
|
msgstr ""
|
1049
1085
|
|
1086
|
+
msgid "Content type %{content_type_string} does not belong to an enabled repo type."
|
1087
|
+
msgstr ""
|
1088
|
+
|
1089
|
+
msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
|
1090
|
+
msgstr ""
|
1091
|
+
|
1050
1092
|
msgid "Content view"
|
1051
1093
|
msgstr ""
|
1052
1094
|
|
@@ -1101,6 +1143,9 @@ msgstr ""
|
|
1101
1143
|
msgid "Contract Number"
|
1102
1144
|
msgstr ""
|
1103
1145
|
|
1146
|
+
msgid "Copy"
|
1147
|
+
msgstr ""
|
1148
|
+
|
1104
1149
|
msgid "Copy an activation key"
|
1105
1150
|
msgstr ""
|
1106
1151
|
|
@@ -1269,6 +1314,12 @@ msgstr ""
|
|
1269
1314
|
msgid "Create an upload request"
|
1270
1315
|
msgstr ""
|
1271
1316
|
|
1317
|
+
msgid "Create content view"
|
1318
|
+
msgstr ""
|
1319
|
+
|
1320
|
+
msgid "Create filter"
|
1321
|
+
msgstr ""
|
1322
|
+
|
1272
1323
|
msgid "Create organization"
|
1273
1324
|
msgstr ""
|
1274
1325
|
|
@@ -1467,6 +1518,9 @@ msgstr ""
|
|
1467
1518
|
msgid "Delete manifest from Red Hat provider"
|
1468
1519
|
msgstr ""
|
1469
1520
|
|
1521
|
+
msgid "Delete multiple filters from a content view"
|
1522
|
+
msgstr ""
|
1523
|
+
|
1470
1524
|
msgid "Deleted consumer '%s'"
|
1471
1525
|
msgstr ""
|
1472
1526
|
|
@@ -1542,6 +1596,9 @@ msgstr ""
|
|
1542
1596
|
msgid "Details"
|
1543
1597
|
msgstr ""
|
1544
1598
|
|
1599
|
+
msgid "Determining settings for ${name}"
|
1600
|
+
msgstr ""
|
1601
|
+
|
1545
1602
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1546
1603
|
msgstr ""
|
1547
1604
|
|
@@ -1761,18 +1818,12 @@ msgstr ""
|
|
1761
1818
|
msgid "Export Types"
|
1762
1819
|
msgstr ""
|
1763
1820
|
|
1764
|
-
msgid "Export a repository"
|
1765
|
-
msgstr ""
|
1766
|
-
|
1767
1821
|
msgid "Export as CSV"
|
1768
1822
|
msgstr ""
|
1769
1823
|
|
1770
1824
|
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1771
1825
|
msgstr ""
|
1772
1826
|
|
1773
|
-
msgid "Export to ISO format"
|
1774
|
-
msgstr ""
|
1775
|
-
|
1776
1827
|
msgid "Exported version"
|
1777
1828
|
msgstr ""
|
1778
1829
|
|
@@ -1838,6 +1889,9 @@ msgstr ""
|
|
1838
1889
|
msgid "Filter composite versions whose publish was triggered by the specified component version"
|
1839
1890
|
msgstr ""
|
1840
1891
|
|
1892
|
+
msgid "Filter created"
|
1893
|
+
msgstr ""
|
1894
|
+
|
1841
1895
|
msgid "Filter only composite content views"
|
1842
1896
|
msgstr ""
|
1843
1897
|
|
@@ -1862,6 +1916,9 @@ msgstr ""
|
|
1862
1916
|
msgid "Filter products by sync plan id"
|
1863
1917
|
msgstr ""
|
1864
1918
|
|
1919
|
+
msgid "Filter successfully deleted"
|
1920
|
+
msgstr ""
|
1921
|
+
|
1865
1922
|
msgid "Filter versions by environment"
|
1866
1923
|
msgstr ""
|
1867
1924
|
|
@@ -1877,6 +1934,9 @@ msgstr ""
|
|
1877
1934
|
msgid "Filters"
|
1878
1935
|
msgstr ""
|
1879
1936
|
|
1937
|
+
msgid "Filters successfully deleted"
|
1938
|
+
msgstr ""
|
1939
|
+
|
1880
1940
|
msgid "Finish action timeout"
|
1881
1941
|
msgstr ""
|
1882
1942
|
|
@@ -1990,6 +2050,9 @@ msgstr ""
|
|
1990
2050
|
msgid "Host '%{name}' does not belong to an organization"
|
1991
2051
|
msgstr ""
|
1992
2052
|
|
2053
|
+
msgid "Host Can Re-Register Only In Build"
|
2054
|
+
msgstr ""
|
2055
|
+
|
1993
2056
|
msgid "Host Collection name"
|
1994
2057
|
msgstr ""
|
1995
2058
|
|
@@ -2008,6 +2071,9 @@ msgstr ""
|
|
2008
2071
|
msgid "Host Profile Assume"
|
2009
2072
|
msgstr ""
|
2010
2073
|
|
2074
|
+
msgid "Host Profile Can Change In Build"
|
2075
|
+
msgstr ""
|
2076
|
+
|
2011
2077
|
msgid "Host Subscription Status"
|
2012
2078
|
msgstr ""
|
2013
2079
|
|
@@ -2050,7 +2116,7 @@ msgstr ""
|
|
2050
2116
|
msgid "Host id to list applicable packages for"
|
2051
2117
|
msgstr ""
|
2052
2118
|
|
2053
|
-
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this
|
2119
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
|
2054
2120
|
msgstr ""
|
2055
2121
|
|
2056
2122
|
msgid "Host with ID %s already exists in the host collection."
|
@@ -2140,9 +2206,6 @@ msgstr ""
|
|
2140
2206
|
msgid "ID: %s doesn't exist "
|
2141
2207
|
msgstr ""
|
2142
2208
|
|
2143
|
-
msgid "ISO export must be enabled when specifying ISO size"
|
2144
|
-
msgstr ""
|
2145
|
-
|
2146
2209
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2147
2210
|
msgstr ""
|
2148
2211
|
|
@@ -2323,6 +2386,9 @@ msgstr ""
|
|
2323
2386
|
msgid "In Progress"
|
2324
2387
|
msgstr ""
|
2325
2388
|
|
2389
|
+
msgid "In progress"
|
2390
|
+
msgstr ""
|
2391
|
+
|
2326
2392
|
msgid "Include"
|
2327
2393
|
msgstr ""
|
2328
2394
|
|
@@ -2467,9 +2533,6 @@ msgstr ""
|
|
2467
2533
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2468
2534
|
msgstr ""
|
2469
2535
|
|
2470
|
-
msgid "Invalid date provided."
|
2471
|
-
msgstr ""
|
2472
|
-
|
2473
2536
|
msgid "Invalid date range. The erratum filter rule start date must come before the end date"
|
2474
2537
|
msgstr ""
|
2475
2538
|
|
@@ -2710,7 +2773,7 @@ msgstr ""
|
|
2710
2773
|
msgid "List of Errata ids"
|
2711
2774
|
msgstr ""
|
2712
2775
|
|
2713
|
-
msgid "List of Errata ids to install. Will be removed in
|
2776
|
+
msgid "List of Errata ids to install. Will be removed in %s"
|
2714
2777
|
msgstr ""
|
2715
2778
|
|
2716
2779
|
msgid "List of Products for sync plan"
|
@@ -2719,7 +2782,7 @@ msgstr ""
|
|
2719
2782
|
msgid "List of component content view version ids for composite views"
|
2720
2783
|
msgstr ""
|
2721
2784
|
|
2722
|
-
msgid "List of content (e.g. package names, package group names or errata ids)"
|
2785
|
+
msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
|
2723
2786
|
msgstr ""
|
2724
2787
|
|
2725
2788
|
msgid "List of content (e.g. package or package group names)"
|
@@ -2767,7 +2830,7 @@ msgstr ""
|
|
2767
2830
|
msgid "List of hypervisor guest uuids"
|
2768
2831
|
msgstr ""
|
2769
2832
|
|
2770
|
-
msgid "List of package group names"
|
2833
|
+
msgid "List of package group names (Deprecated)"
|
2771
2834
|
msgstr ""
|
2772
2835
|
|
2773
2836
|
msgid "List of package names"
|
@@ -2938,6 +3001,9 @@ msgstr ""
|
|
2938
3001
|
msgid "Mismatched"
|
2939
3002
|
msgstr ""
|
2940
3003
|
|
3004
|
+
msgid "Missing activation key!"
|
3005
|
+
msgstr ""
|
3006
|
+
|
2941
3007
|
msgid "Missing arguments %{substitutions} for %{content_url}"
|
2942
3008
|
msgstr ""
|
2943
3009
|
|
@@ -3038,6 +3104,9 @@ msgstr ""
|
|
3038
3104
|
msgid "New version is available: Version ${latestVersion}"
|
3039
3105
|
msgstr ""
|
3040
3106
|
|
3107
|
+
msgid "Newly published"
|
3108
|
+
msgstr ""
|
3109
|
+
|
3041
3110
|
msgid "No"
|
3042
3111
|
msgstr ""
|
3043
3112
|
|
@@ -3296,9 +3365,6 @@ msgstr ""
|
|
3296
3365
|
msgid "On Demand"
|
3297
3366
|
msgstr ""
|
3298
3367
|
|
3299
|
-
msgid "On demand repositories cannot be exported."
|
3300
|
-
msgstr ""
|
3301
|
-
|
3302
3368
|
msgid "On-disk location for exported repositories"
|
3303
3369
|
msgstr ""
|
3304
3370
|
|
@@ -3332,9 +3398,6 @@ msgstr ""
|
|
3332
3398
|
msgid "Operators"
|
3333
3399
|
msgstr ""
|
3334
3400
|
|
3335
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3336
|
-
msgstr ""
|
3337
|
-
|
3338
3401
|
msgid "Organization"
|
3339
3402
|
msgstr ""
|
3340
3403
|
|
@@ -3727,9 +3790,18 @@ msgstr ""
|
|
3727
3790
|
msgid "Publish a content view"
|
3728
3791
|
msgstr ""
|
3729
3792
|
|
3793
|
+
msgid "Publish new version - "
|
3794
|
+
msgstr ""
|
3795
|
+
|
3730
3796
|
msgid "Published new version"
|
3731
3797
|
msgstr ""
|
3732
3798
|
|
3799
|
+
msgid "Publishing ${name}"
|
3800
|
+
msgstr ""
|
3801
|
+
|
3802
|
+
msgid "Publishing content view"
|
3803
|
+
msgstr ""
|
3804
|
+
|
3733
3805
|
msgid "Pulling remote branches. Downloaded %s units."
|
3734
3806
|
msgstr ""
|
3735
3807
|
|
@@ -3739,7 +3811,7 @@ msgstr ""
|
|
3739
3811
|
msgid "Pulp 3 export destination filepath"
|
3740
3812
|
msgstr ""
|
3741
3813
|
|
3742
|
-
msgid "Pulp
|
3814
|
+
msgid "Pulp 3 is not enabled on Smart proxy!"
|
3743
3815
|
msgstr ""
|
3744
3816
|
|
3745
3817
|
msgid "Pulp Docker registry port"
|
@@ -3913,6 +3985,9 @@ msgstr ""
|
|
3913
3985
|
msgid "Removal of package(s) requested: %{packages}"
|
3914
3986
|
msgstr ""
|
3915
3987
|
|
3988
|
+
msgid "Remove"
|
3989
|
+
msgstr ""
|
3990
|
+
|
3916
3991
|
msgid "Remove Content"
|
3917
3992
|
msgstr ""
|
3918
3993
|
|
@@ -3937,6 +4012,9 @@ msgstr ""
|
|
3937
4012
|
msgid "Remove content view version"
|
3938
4013
|
msgstr ""
|
3939
4014
|
|
4015
|
+
msgid "Remove content views"
|
4016
|
+
msgstr ""
|
4017
|
+
|
3940
4018
|
msgid "Remove from Environment"
|
3941
4019
|
msgstr ""
|
3942
4020
|
|
@@ -3982,6 +4060,12 @@ msgstr ""
|
|
3982
4060
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
3983
4061
|
msgstr ""
|
3984
4062
|
|
4063
|
+
msgid "Removed component from content view"
|
4064
|
+
msgstr ""
|
4065
|
+
|
4066
|
+
msgid "Removed components from content view"
|
4067
|
+
msgstr ""
|
4068
|
+
|
3985
4069
|
msgid "Removing Package Group..."
|
3986
4070
|
msgstr ""
|
3987
4071
|
|
@@ -4003,9 +4087,6 @@ msgstr ""
|
|
4003
4087
|
msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
|
4004
4088
|
msgstr ""
|
4005
4089
|
|
4006
|
-
msgid "Repository %s cannot be deleted since they are Red Hat repositories."
|
4007
|
-
msgstr ""
|
4008
|
-
|
4009
4090
|
msgid "Repository '%(repoName)s' has been disabled."
|
4010
4091
|
msgstr ""
|
4011
4092
|
|
@@ -4021,9 +4102,6 @@ msgstr ""
|
|
4021
4102
|
msgid "Repository cannot be disabled since it has already been promoted."
|
4022
4103
|
msgstr ""
|
4023
4104
|
|
4024
|
-
msgid "Repository content type must be 'yum' to export."
|
4025
|
-
msgstr ""
|
4026
|
-
|
4027
4105
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4028
4106
|
msgstr ""
|
4029
4107
|
|
@@ -4054,6 +4132,9 @@ msgstr ""
|
|
4054
4132
|
msgid "Republish Version Repositories"
|
4055
4133
|
msgstr ""
|
4056
4134
|
|
4135
|
+
msgid "Requirements yaml is invalid!"
|
4136
|
+
msgstr ""
|
4137
|
+
|
4057
4138
|
msgid "Requires Virt-Who"
|
4058
4139
|
msgstr ""
|
4059
4140
|
|
@@ -4096,9 +4177,6 @@ msgstr ""
|
|
4096
4177
|
msgid "Return errata that are upgradable on one or more hosts"
|
4097
4178
|
msgstr ""
|
4098
4179
|
|
4099
|
-
msgid "Return errata that can be added to the Content View Version via an Incremental Update. Will be removed in Katello 4.1."
|
4100
|
-
msgstr ""
|
4101
|
-
|
4102
4180
|
msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
|
4103
4181
|
msgstr ""
|
4104
4182
|
|
@@ -4216,6 +4294,9 @@ msgstr ""
|
|
4216
4294
|
msgid "Select Value"
|
4217
4295
|
msgstr ""
|
4218
4296
|
|
4297
|
+
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
4298
|
+
msgstr ""
|
4299
|
+
|
4219
4300
|
msgid "Select all rows"
|
4220
4301
|
msgstr ""
|
4221
4302
|
|
@@ -4225,6 +4306,9 @@ msgstr ""
|
|
4225
4306
|
msgid "Select an organization"
|
4226
4307
|
msgstr ""
|
4227
4308
|
|
4309
|
+
msgid "Select available version of ${cvName} to use"
|
4310
|
+
msgstr ""
|
4311
|
+
|
4228
4312
|
msgid "Select hosts to assign to %s"
|
4229
4313
|
msgstr ""
|
4230
4314
|
|
@@ -4348,6 +4432,9 @@ msgstr ""
|
|
4348
4432
|
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4349
4433
|
msgstr ""
|
4350
4434
|
|
4435
|
+
msgid "Single content view consisting of repositories"
|
4436
|
+
msgstr ""
|
4437
|
+
|
4351
4438
|
msgid "Size of file to upload"
|
4352
4439
|
msgstr ""
|
4353
4440
|
|
@@ -4360,6 +4447,9 @@ msgstr ""
|
|
4360
4447
|
msgid "Smart proxy IDs"
|
4361
4448
|
msgstr ""
|
4362
4449
|
|
4450
|
+
msgid "Smart proxy content source not found!"
|
4451
|
+
msgstr ""
|
4452
|
+
|
4363
4453
|
msgid "Sockets: %s"
|
4364
4454
|
msgstr ""
|
4365
4455
|
|
@@ -4378,6 +4468,21 @@ msgstr ""
|
|
4378
4468
|
msgid "Some services are not properly started. See the About page for more information."
|
4379
4469
|
msgstr ""
|
4380
4470
|
|
4471
|
+
msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
|
4472
|
+
msgstr ""
|
4473
|
+
|
4474
|
+
msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
|
4475
|
+
msgstr ""
|
4476
|
+
|
4477
|
+
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
4478
|
+
msgstr ""
|
4479
|
+
|
4480
|
+
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
4481
|
+
msgstr ""
|
4482
|
+
|
4483
|
+
msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
|
4484
|
+
msgstr ""
|
4485
|
+
|
4381
4486
|
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4382
4487
|
msgstr ""
|
4383
4488
|
|
@@ -4717,12 +4822,6 @@ msgstr ""
|
|
4717
4822
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4718
4823
|
msgstr ""
|
4719
4824
|
|
4720
|
-
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4721
|
-
msgstr ""
|
4722
|
-
|
4723
|
-
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4724
|
-
msgstr ""
|
4725
|
-
|
4726
4825
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4727
4826
|
msgstr ""
|
4728
4827
|
|
@@ -4755,6 +4854,9 @@ msgstr ""
|
|
4755
4854
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
4756
4855
|
msgstr ""
|
4757
4856
|
|
4857
|
+
msgid "The maximum number of versions of each package to keep."
|
4858
|
+
msgstr ""
|
4859
|
+
|
4758
4860
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4759
4861
|
msgstr ""
|
4760
4862
|
|
@@ -4894,9 +4996,6 @@ msgstr ""
|
|
4894
4996
|
msgid "This is disabled because a manifest task is in progress"
|
4895
4997
|
msgstr ""
|
4896
4998
|
|
4897
|
-
msgid "This is disabled because disconnected mode is enabled."
|
4898
|
-
msgstr ""
|
4899
|
-
|
4900
4999
|
msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
|
4901
5000
|
msgstr ""
|
4902
5001
|
|
@@ -4981,6 +5080,9 @@ msgstr ""
|
|
4981
5080
|
msgid "Type of content: \"cert\", \"gpg_key\""
|
4982
5081
|
msgstr ""
|
4983
5082
|
|
5083
|
+
msgid "URL needs to have a trailing /"
|
5084
|
+
msgstr ""
|
5085
|
+
|
4984
5086
|
msgid "UUID"
|
4985
5087
|
msgstr ""
|
4986
5088
|
|
@@ -5008,12 +5110,6 @@ msgstr ""
|
|
5008
5110
|
msgid "Unable to detect puppet path"
|
5009
5111
|
msgstr ""
|
5010
5112
|
|
5011
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
5012
|
-
msgstr ""
|
5013
|
-
|
5014
|
-
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5015
|
-
msgstr ""
|
5016
|
-
|
5017
5113
|
msgid "Unable to find product '%s' in organization '%s'"
|
5018
5114
|
msgstr ""
|
5019
5115
|
|
@@ -5221,9 +5317,15 @@ msgstr ""
|
|
5221
5317
|
msgid "Update the quantity of one or more subscriptions on an upstream allocation"
|
5222
5318
|
msgstr ""
|
5223
5319
|
|
5320
|
+
msgid "Update version"
|
5321
|
+
msgstr ""
|
5322
|
+
|
5224
5323
|
msgid "Updated"
|
5225
5324
|
msgstr ""
|
5226
5325
|
|
5326
|
+
msgid "Updated component details"
|
5327
|
+
msgstr ""
|
5328
|
+
|
5227
5329
|
msgid "Updates"
|
5228
5330
|
msgstr ""
|
5229
5331
|
|
@@ -5263,9 +5365,6 @@ msgstr ""
|
|
5263
5365
|
msgid "Upload content into the repository"
|
5264
5366
|
msgstr ""
|
5265
5367
|
|
5266
|
-
msgid "Upload errata into"
|
5267
|
-
msgstr ""
|
5268
|
-
|
5269
5368
|
msgid "Upload into"
|
5270
5369
|
msgstr ""
|
5271
5370
|
|
@@ -5341,6 +5440,12 @@ msgstr ""
|
|
5341
5440
|
msgid "Version"
|
5342
5441
|
msgstr ""
|
5343
5442
|
|
5443
|
+
msgid "Version "
|
5444
|
+
msgstr ""
|
5445
|
+
|
5446
|
+
msgid "Version ${item.version}"
|
5447
|
+
msgstr ""
|
5448
|
+
|
5344
5449
|
msgid "Versions"
|
5345
5450
|
msgstr ""
|
5346
5451
|
|
@@ -5779,6 +5884,9 @@ msgstr ""
|
|
5779
5884
|
msgid "filter identifier"
|
5780
5885
|
msgstr ""
|
5781
5886
|
|
5887
|
+
msgid "filter identifiers"
|
5888
|
+
msgstr ""
|
5889
|
+
|
5782
5890
|
msgid "filter only environments containing this name"
|
5783
5891
|
msgstr ""
|
5784
5892
|
|
@@ -5872,6 +5980,9 @@ msgstr ""
|
|
5872
5980
|
msgid "is invalid"
|
5873
5981
|
msgstr ""
|
5874
5982
|
|
5983
|
+
msgid "is not enabled. must be one of the following: %s"
|
5984
|
+
msgstr ""
|
5985
|
+
|
5875
5986
|
msgid "label of the environment"
|
5876
5987
|
msgstr ""
|
5877
5988
|
|
@@ -5905,9 +6016,6 @@ msgstr ""
|
|
5905
6016
|
msgid "maximum number of registered content hosts"
|
5906
6017
|
msgstr ""
|
5907
6018
|
|
5908
|
-
msgid "maximum size of each ISO in MB"
|
5909
|
-
msgstr ""
|
5910
|
-
|
5911
6019
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5912
6020
|
msgstr ""
|
5913
6021
|
|