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/pt/katello.po
CHANGED
@@ -1,22 +1,19 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
-
# This file is distributed under the same license as the
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
5
4
|
#
|
6
5
|
# Translators:
|
7
|
-
# Bryan Kearney <bryan.kearney@gmail.com>, 2017
|
8
|
-
#
|
9
6
|
msgid ""
|
10
7
|
msgstr ""
|
11
|
-
"Project-Id-Version:
|
8
|
+
"Project-Id-Version: version 0.0.1\n"
|
12
9
|
"Report-Msgid-Bugs-To: \n"
|
13
|
-
"PO-Revision-Date:
|
14
|
-
"Last-Translator:
|
15
|
-
"Language-Team:
|
10
|
+
"PO-Revision-Date: 2012-09-10 13:11+0000\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
13
|
+
"Language: pt\n"
|
16
14
|
"MIME-Version: 1.0\n"
|
17
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
18
16
|
"Content-Transfer-Encoding: 8bit\n"
|
19
|
-
"Language: pt\n"
|
20
17
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
21
18
|
|
22
19
|
msgid ""
|
@@ -33,7 +30,7 @@ msgstr ""
|
|
33
30
|
msgid " %{package_count} Package(s)"
|
34
31
|
msgstr ""
|
35
32
|
|
36
|
-
msgid " Content view updated
|
33
|
+
msgid " Content view updated"
|
37
34
|
msgstr ""
|
38
35
|
|
39
36
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
@@ -42,6 +39,9 @@ msgstr ""
|
|
42
39
|
msgid " RPMs"
|
43
40
|
msgstr ""
|
44
41
|
|
42
|
+
msgid " View task details "
|
43
|
+
msgstr ""
|
44
|
+
|
45
45
|
msgid " environment cannot be set to an environment already on its path"
|
46
46
|
msgstr ""
|
47
47
|
|
@@ -311,6 +311,9 @@ msgstr ""
|
|
311
311
|
msgid "A list of subscriptions expiring soon"
|
312
312
|
msgstr ""
|
313
313
|
|
314
|
+
msgid "A new version of "
|
315
|
+
msgstr ""
|
316
|
+
|
314
317
|
msgid "A post-promotion summary of hosts with installable errata"
|
315
318
|
msgstr ""
|
316
319
|
|
@@ -320,7 +323,7 @@ msgstr ""
|
|
320
323
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
321
324
|
msgstr ""
|
322
325
|
|
323
|
-
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."
|
324
327
|
msgstr ""
|
325
328
|
|
326
329
|
msgid "A summary of available and applicable errata for your hosts"
|
@@ -362,16 +365,16 @@ msgstr ""
|
|
362
365
|
msgid "Activation key ID"
|
363
366
|
msgstr ""
|
364
367
|
|
365
|
-
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."
|
366
369
|
msgstr ""
|
367
370
|
|
368
371
|
msgid "Activation key(s) for Subscription Manager."
|
369
372
|
msgstr ""
|
370
373
|
|
371
|
-
msgid "Activation
|
374
|
+
msgid "Activation keys and subscriptions can be managed"
|
372
375
|
msgstr ""
|
373
376
|
|
374
|
-
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."
|
375
378
|
msgstr ""
|
376
379
|
|
377
380
|
msgid "Activation keys: "
|
@@ -383,12 +386,18 @@ msgstr ""
|
|
383
386
|
msgid "Active only"
|
384
387
|
msgstr ""
|
385
388
|
|
389
|
+
msgid "Add"
|
390
|
+
msgstr ""
|
391
|
+
|
386
392
|
msgid "Add Subscriptions"
|
387
393
|
msgstr ""
|
388
394
|
|
389
395
|
msgid "Add a subscription to a host"
|
390
396
|
msgstr ""
|
391
397
|
|
398
|
+
msgid "Add component"
|
399
|
+
msgstr ""
|
400
|
+
|
392
401
|
msgid "Add components to the content view"
|
393
402
|
msgstr ""
|
394
403
|
|
@@ -431,6 +440,9 @@ msgstr ""
|
|
431
440
|
msgid "Added Content:"
|
432
441
|
msgstr ""
|
433
442
|
|
443
|
+
msgid "Added component to content view"
|
444
|
+
msgstr ""
|
445
|
+
|
434
446
|
msgid "Adding content units"
|
435
447
|
msgstr ""
|
436
448
|
|
@@ -455,6 +467,12 @@ msgstr ""
|
|
455
467
|
msgid "All errata applied"
|
456
468
|
msgstr ""
|
457
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
|
+
|
458
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."
|
459
477
|
msgstr ""
|
460
478
|
|
@@ -464,6 +482,9 @@ msgstr ""
|
|
464
482
|
msgid "Always Use Latest (currently %{version})"
|
465
483
|
msgstr ""
|
466
484
|
|
485
|
+
msgid "Always update to latest version"
|
486
|
+
msgstr ""
|
487
|
+
|
467
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."
|
468
489
|
msgstr ""
|
469
490
|
|
@@ -582,8 +603,9 @@ msgstr ""
|
|
582
603
|
msgid "At least one organization must exist."
|
583
604
|
msgstr ""
|
584
605
|
|
606
|
+
#, fuzzy
|
585
607
|
msgid "Attach a subscription"
|
586
|
-
msgstr ""
|
608
|
+
msgstr "Repositórios"
|
587
609
|
|
588
610
|
msgid "Attach subscriptions"
|
589
611
|
msgstr ""
|
@@ -594,6 +616,12 @@ msgstr ""
|
|
594
616
|
msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
|
595
617
|
msgstr ""
|
596
618
|
|
619
|
+
msgid "Auth URL requires Auth token be set."
|
620
|
+
msgstr ""
|
621
|
+
|
622
|
+
msgid "Auth token requires Auth URL be set."
|
623
|
+
msgstr ""
|
624
|
+
|
597
625
|
msgid "Author"
|
598
626
|
msgstr ""
|
599
627
|
|
@@ -603,8 +631,9 @@ msgstr ""
|
|
603
631
|
msgid "Auto Publish - Triggered by '%s'"
|
604
632
|
msgstr ""
|
605
633
|
|
634
|
+
#, fuzzy
|
606
635
|
msgid "Auto attach subscriptions"
|
607
|
-
msgstr ""
|
636
|
+
msgstr "Repositórios"
|
608
637
|
|
609
638
|
msgid "Autopublish"
|
610
639
|
msgstr ""
|
@@ -621,8 +650,9 @@ msgstr ""
|
|
621
650
|
msgid "Available Repositories"
|
622
651
|
msgstr ""
|
623
652
|
|
653
|
+
#, fuzzy
|
624
654
|
msgid "Backend System Status"
|
625
|
-
msgstr ""
|
655
|
+
msgstr "Sistema"
|
626
656
|
|
627
657
|
msgid "Background"
|
628
658
|
msgstr ""
|
@@ -705,8 +735,9 @@ msgstr ""
|
|
705
735
|
msgid "Cancel"
|
706
736
|
msgstr ""
|
707
737
|
|
738
|
+
#, fuzzy
|
708
739
|
msgid "Cancel repository discovery"
|
709
|
-
msgstr ""
|
740
|
+
msgstr "Repositórios"
|
710
741
|
|
711
742
|
msgid "Cancel running smart proxy synchronization"
|
712
743
|
msgstr ""
|
@@ -885,8 +916,9 @@ msgstr ""
|
|
885
916
|
msgid "Click here to go to the tasks page for the task."
|
886
917
|
msgstr ""
|
887
918
|
|
919
|
+
#, fuzzy
|
888
920
|
msgid "Clone"
|
889
|
-
msgstr ""
|
921
|
+
msgstr "Nenhum"
|
890
922
|
|
891
923
|
msgid "Close"
|
892
924
|
msgstr ""
|
@@ -909,14 +941,18 @@ msgstr ""
|
|
909
941
|
msgid "Component Content View"
|
910
942
|
msgstr ""
|
911
943
|
|
944
|
+
msgid "Component content view"
|
945
|
+
msgstr ""
|
946
|
+
|
912
947
|
msgid "Composite Content View"
|
913
948
|
msgstr ""
|
914
949
|
|
915
950
|
msgid "Composite Content View '%{subject}' failed auto-publish"
|
916
951
|
msgstr ""
|
917
952
|
|
953
|
+
#, fuzzy
|
918
954
|
msgid "Composite content view"
|
919
|
-
msgstr ""
|
955
|
+
msgstr "Repositórios"
|
920
956
|
|
921
957
|
msgid "Compute resource IDs"
|
922
958
|
msgstr ""
|
@@ -930,6 +966,9 @@ msgstr ""
|
|
930
966
|
msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
|
931
967
|
msgstr ""
|
932
968
|
|
969
|
+
msgid "Consisting of multiple component content views"
|
970
|
+
msgstr ""
|
971
|
+
|
933
972
|
msgid "Consumed"
|
934
973
|
msgstr ""
|
935
974
|
|
@@ -972,11 +1011,13 @@ msgstr ""
|
|
972
1011
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
973
1012
|
msgstr ""
|
974
1013
|
|
1014
|
+
#, fuzzy
|
975
1015
|
msgid "Content Hosts"
|
976
|
-
msgstr ""
|
1016
|
+
msgstr "Repositórios"
|
977
1017
|
|
1018
|
+
#, fuzzy
|
978
1019
|
msgid "Content Source"
|
979
|
-
msgstr ""
|
1020
|
+
msgstr "Repositórios"
|
980
1021
|
|
981
1022
|
msgid "Content Sync"
|
982
1023
|
msgstr ""
|
@@ -1050,6 +1091,12 @@ msgstr ""
|
|
1050
1091
|
msgid "Content type"
|
1051
1092
|
msgstr ""
|
1052
1093
|
|
1094
|
+
msgid "Content type %{content_type_string} does not belong to an enabled repo type."
|
1095
|
+
msgstr ""
|
1096
|
+
|
1097
|
+
msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
|
1098
|
+
msgstr ""
|
1099
|
+
|
1053
1100
|
msgid "Content view"
|
1054
1101
|
msgstr ""
|
1055
1102
|
|
@@ -1104,6 +1151,9 @@ msgstr ""
|
|
1104
1151
|
msgid "Contract Number"
|
1105
1152
|
msgstr ""
|
1106
1153
|
|
1154
|
+
msgid "Copy"
|
1155
|
+
msgstr ""
|
1156
|
+
|
1107
1157
|
msgid "Copy an activation key"
|
1108
1158
|
msgstr ""
|
1109
1159
|
|
@@ -1155,14 +1205,17 @@ msgstr ""
|
|
1155
1205
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1156
1206
|
msgstr ""
|
1157
1207
|
|
1208
|
+
#, fuzzy
|
1158
1209
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1159
|
-
msgstr ""
|
1210
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1160
1211
|
|
1212
|
+
#, fuzzy
|
1161
1213
|
msgid "Couldn't find Organization '%s'."
|
1162
|
-
msgstr ""
|
1214
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1163
1215
|
|
1216
|
+
#, fuzzy
|
1164
1217
|
msgid "Couldn't find activation key '%s'"
|
1165
|
-
msgstr ""
|
1218
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1166
1219
|
|
1167
1220
|
msgid "Couldn't find activation key content view id '%s'"
|
1168
1221
|
msgstr ""
|
@@ -1170,8 +1223,9 @@ msgstr ""
|
|
1170
1223
|
msgid "Couldn't find activation key environment '%s'"
|
1171
1224
|
msgstr ""
|
1172
1225
|
|
1226
|
+
#, fuzzy
|
1173
1227
|
msgid "Couldn't find consumer '%s'"
|
1174
|
-
msgstr ""
|
1228
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1175
1229
|
|
1176
1230
|
msgid "Couldn't find content host content view id '%s'"
|
1177
1231
|
msgstr ""
|
@@ -1179,38 +1233,48 @@ msgstr ""
|
|
1179
1233
|
msgid "Couldn't find content host environment '%s'"
|
1180
1234
|
msgstr ""
|
1181
1235
|
|
1236
|
+
#, fuzzy
|
1182
1237
|
msgid "Couldn't find content view '%s'"
|
1183
|
-
msgstr ""
|
1238
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1184
1239
|
|
1240
|
+
#, fuzzy
|
1185
1241
|
msgid "Couldn't find content view version '%s'"
|
1186
|
-
msgstr ""
|
1242
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1187
1243
|
|
1244
|
+
#, fuzzy
|
1188
1245
|
msgid "Couldn't find content view versions '%s'"
|
1189
|
-
msgstr ""
|
1246
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1190
1247
|
|
1248
|
+
#, fuzzy
|
1191
1249
|
msgid "Couldn't find environment '%s'"
|
1192
|
-
msgstr ""
|
1250
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1193
1251
|
|
1252
|
+
#, fuzzy
|
1194
1253
|
msgid "Couldn't find errata ids '%s'"
|
1195
|
-
msgstr ""
|
1254
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1196
1255
|
|
1256
|
+
#, fuzzy
|
1197
1257
|
msgid "Couldn't find host collection '%s'"
|
1198
|
-
msgstr ""
|
1258
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1199
1259
|
|
1200
1260
|
msgid "Couldn't find host with host id '%s'"
|
1201
1261
|
msgstr ""
|
1202
1262
|
|
1263
|
+
#, fuzzy
|
1203
1264
|
msgid "Couldn't find organization '%s'"
|
1204
|
-
msgstr ""
|
1265
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1205
1266
|
|
1267
|
+
#, fuzzy
|
1206
1268
|
msgid "Couldn't find prior-environment '%s'"
|
1207
|
-
msgstr ""
|
1269
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1208
1270
|
|
1271
|
+
#, fuzzy
|
1209
1272
|
msgid "Couldn't find product with id '%s'"
|
1210
|
-
msgstr ""
|
1273
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1211
1274
|
|
1275
|
+
#, fuzzy
|
1212
1276
|
msgid "Couldn't find repository '%s'"
|
1213
|
-
msgstr ""
|
1277
|
+
msgstr "Não foi possível encontrar modelo '%s'"
|
1214
1278
|
|
1215
1279
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1216
1280
|
msgstr ""
|
@@ -1239,8 +1303,9 @@ msgstr ""
|
|
1239
1303
|
msgid "Create a Content Credential"
|
1240
1304
|
msgstr ""
|
1241
1305
|
|
1306
|
+
#, fuzzy
|
1242
1307
|
msgid "Create a content view"
|
1243
|
-
msgstr ""
|
1308
|
+
msgstr "Repositórios"
|
1244
1309
|
|
1245
1310
|
msgid "Create a custom repository"
|
1246
1311
|
msgstr ""
|
@@ -1254,8 +1319,9 @@ msgstr ""
|
|
1254
1319
|
msgid "Create a package group"
|
1255
1320
|
msgstr ""
|
1256
1321
|
|
1322
|
+
#, fuzzy
|
1257
1323
|
msgid "Create a product"
|
1258
|
-
msgstr ""
|
1324
|
+
msgstr "Arquitetura"
|
1259
1325
|
|
1260
1326
|
msgid "Create a sync plan"
|
1261
1327
|
msgstr ""
|
@@ -1263,8 +1329,9 @@ msgstr ""
|
|
1263
1329
|
msgid "Create an activation key"
|
1264
1330
|
msgstr ""
|
1265
1331
|
|
1332
|
+
#, fuzzy
|
1266
1333
|
msgid "Create an environment"
|
1267
|
-
msgstr ""
|
1334
|
+
msgstr "Repositórios"
|
1268
1335
|
|
1269
1336
|
msgid "Create an environment in an organization"
|
1270
1337
|
msgstr ""
|
@@ -1272,6 +1339,12 @@ msgstr ""
|
|
1272
1339
|
msgid "Create an upload request"
|
1273
1340
|
msgstr ""
|
1274
1341
|
|
1342
|
+
msgid "Create content view"
|
1343
|
+
msgstr ""
|
1344
|
+
|
1345
|
+
msgid "Create filter"
|
1346
|
+
msgstr ""
|
1347
|
+
|
1275
1348
|
msgid "Create organization"
|
1276
1349
|
msgstr ""
|
1277
1350
|
|
@@ -1290,8 +1363,9 @@ msgstr ""
|
|
1290
1363
|
msgid "Current organization not set."
|
1291
1364
|
msgstr ""
|
1292
1365
|
|
1366
|
+
#, fuzzy
|
1293
1367
|
msgid "Custom Content Repositories"
|
1294
|
-
msgstr ""
|
1368
|
+
msgstr "Repositórios"
|
1295
1369
|
|
1296
1370
|
msgid "Custom cron expression only needs to be set for interval value of custom cron"
|
1297
1371
|
msgstr ""
|
@@ -1431,26 +1505,31 @@ msgstr ""
|
|
1431
1505
|
msgid "Delete Host upon unregister"
|
1432
1506
|
msgstr ""
|
1433
1507
|
|
1508
|
+
#, fuzzy
|
1434
1509
|
msgid "Delete Lifecycle Environment"
|
1435
|
-
msgstr ""
|
1510
|
+
msgstr "Repositórios"
|
1436
1511
|
|
1512
|
+
#, fuzzy
|
1437
1513
|
msgid "Delete Manifest"
|
1438
|
-
msgstr ""
|
1514
|
+
msgstr "Arquitetura"
|
1439
1515
|
|
1440
1516
|
msgid "Delete Package Group"
|
1441
1517
|
msgstr ""
|
1442
1518
|
|
1519
|
+
#, fuzzy
|
1443
1520
|
msgid "Delete Product"
|
1444
|
-
msgstr ""
|
1521
|
+
msgstr "Arquitetura"
|
1445
1522
|
|
1446
1523
|
msgid "Delete Upstream Subscription"
|
1447
1524
|
msgstr ""
|
1448
1525
|
|
1526
|
+
#, fuzzy
|
1449
1527
|
msgid "Delete a content view"
|
1450
|
-
msgstr ""
|
1528
|
+
msgstr "Repositórios"
|
1451
1529
|
|
1530
|
+
#, fuzzy
|
1452
1531
|
msgid "Delete a filter rule"
|
1453
|
-
msgstr ""
|
1532
|
+
msgstr "Arquitetura"
|
1454
1533
|
|
1455
1534
|
msgid "Delete a package group"
|
1456
1535
|
msgstr ""
|
@@ -1470,11 +1549,15 @@ msgstr ""
|
|
1470
1549
|
msgid "Delete manifest from Red Hat provider"
|
1471
1550
|
msgstr ""
|
1472
1551
|
|
1552
|
+
msgid "Delete multiple filters from a content view"
|
1553
|
+
msgstr ""
|
1554
|
+
|
1473
1555
|
msgid "Deleted consumer '%s'"
|
1474
1556
|
msgstr ""
|
1475
1557
|
|
1558
|
+
#, fuzzy
|
1476
1559
|
msgid "Deleted from %{environment}"
|
1477
|
-
msgstr ""
|
1560
|
+
msgstr "Repositórios"
|
1478
1561
|
|
1479
1562
|
msgid "Deleting manifest in '%{subject}' failed."
|
1480
1563
|
msgstr ""
|
@@ -1503,8 +1586,9 @@ msgstr ""
|
|
1503
1586
|
msgid "Destroy"
|
1504
1587
|
msgstr ""
|
1505
1588
|
|
1589
|
+
#, fuzzy
|
1506
1590
|
msgid "Destroy Content Host"
|
1507
|
-
msgstr ""
|
1591
|
+
msgstr "Sistema"
|
1508
1592
|
|
1509
1593
|
msgid "Destroy Content Host %s"
|
1510
1594
|
msgstr ""
|
@@ -1527,8 +1611,9 @@ msgstr ""
|
|
1527
1611
|
msgid "Destroy an activation key"
|
1528
1612
|
msgstr ""
|
1529
1613
|
|
1614
|
+
#, fuzzy
|
1530
1615
|
msgid "Destroy an environment"
|
1531
|
-
msgstr ""
|
1616
|
+
msgstr "Repositórios"
|
1532
1617
|
|
1533
1618
|
msgid "Destroy an environment in an organization"
|
1534
1619
|
msgstr ""
|
@@ -1545,6 +1630,9 @@ msgstr ""
|
|
1545
1630
|
msgid "Details"
|
1546
1631
|
msgstr ""
|
1547
1632
|
|
1633
|
+
msgid "Determining settings for ${name}"
|
1634
|
+
msgstr ""
|
1635
|
+
|
1548
1636
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1549
1637
|
msgstr ""
|
1550
1638
|
|
@@ -1575,8 +1663,9 @@ msgstr ""
|
|
1575
1663
|
msgid "Discover"
|
1576
1664
|
msgstr ""
|
1577
1665
|
|
1666
|
+
#, fuzzy
|
1578
1667
|
msgid "Discover Repositories"
|
1579
|
-
msgstr ""
|
1668
|
+
msgstr "Repositórios"
|
1580
1669
|
|
1581
1670
|
msgid "Do not include this array of content views"
|
1582
1671
|
msgstr ""
|
@@ -1764,18 +1853,12 @@ msgstr ""
|
|
1764
1853
|
msgid "Export Types"
|
1765
1854
|
msgstr ""
|
1766
1855
|
|
1767
|
-
msgid "Export a repository"
|
1768
|
-
msgstr ""
|
1769
|
-
|
1770
1856
|
msgid "Export as CSV"
|
1771
1857
|
msgstr ""
|
1772
1858
|
|
1773
1859
|
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1774
1860
|
msgstr ""
|
1775
1861
|
|
1776
|
-
msgid "Export to ISO format"
|
1777
|
-
msgstr ""
|
1778
|
-
|
1779
1862
|
msgid "Exported version"
|
1780
1863
|
msgstr ""
|
1781
1864
|
|
@@ -1841,6 +1924,9 @@ msgstr ""
|
|
1841
1924
|
msgid "Filter composite versions whose publish was triggered by the specified component version"
|
1842
1925
|
msgstr ""
|
1843
1926
|
|
1927
|
+
msgid "Filter created"
|
1928
|
+
msgstr ""
|
1929
|
+
|
1844
1930
|
msgid "Filter only composite content views"
|
1845
1931
|
msgstr ""
|
1846
1932
|
|
@@ -1865,6 +1951,9 @@ msgstr ""
|
|
1865
1951
|
msgid "Filter products by sync plan id"
|
1866
1952
|
msgstr ""
|
1867
1953
|
|
1954
|
+
msgid "Filter successfully deleted"
|
1955
|
+
msgstr ""
|
1956
|
+
|
1868
1957
|
msgid "Filter versions by environment"
|
1869
1958
|
msgstr ""
|
1870
1959
|
|
@@ -1880,6 +1969,9 @@ msgstr ""
|
|
1880
1969
|
msgid "Filters"
|
1881
1970
|
msgstr ""
|
1882
1971
|
|
1972
|
+
msgid "Filters successfully deleted"
|
1973
|
+
msgstr ""
|
1974
|
+
|
1883
1975
|
msgid "Finish action timeout"
|
1884
1976
|
msgstr ""
|
1885
1977
|
|
@@ -1993,6 +2085,9 @@ msgstr ""
|
|
1993
2085
|
msgid "Host '%{name}' does not belong to an organization"
|
1994
2086
|
msgstr ""
|
1995
2087
|
|
2088
|
+
msgid "Host Can Re-Register Only In Build"
|
2089
|
+
msgstr ""
|
2090
|
+
|
1996
2091
|
msgid "Host Collection name"
|
1997
2092
|
msgstr ""
|
1998
2093
|
|
@@ -2011,6 +2106,9 @@ msgstr ""
|
|
2011
2106
|
msgid "Host Profile Assume"
|
2012
2107
|
msgstr ""
|
2013
2108
|
|
2109
|
+
msgid "Host Profile Can Change In Build"
|
2110
|
+
msgstr ""
|
2111
|
+
|
2014
2112
|
msgid "Host Subscription Status"
|
2015
2113
|
msgstr ""
|
2016
2114
|
|
@@ -2053,7 +2151,7 @@ msgstr ""
|
|
2053
2151
|
msgid "Host id to list applicable packages for"
|
2054
2152
|
msgstr ""
|
2055
2153
|
|
2056
|
-
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this
|
2154
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
|
2057
2155
|
msgstr ""
|
2058
2156
|
|
2059
2157
|
msgid "Host with ID %s already exists in the host collection."
|
@@ -2113,8 +2211,9 @@ msgstr ""
|
|
2113
2211
|
msgid "ID of the activation key"
|
2114
2212
|
msgstr ""
|
2115
2213
|
|
2214
|
+
#, fuzzy
|
2116
2215
|
msgid "ID of the environment"
|
2117
|
-
msgstr ""
|
2216
|
+
msgstr "Repositórios"
|
2118
2217
|
|
2119
2218
|
msgid "ID of the host"
|
2120
2219
|
msgstr ""
|
@@ -2143,9 +2242,6 @@ msgstr ""
|
|
2143
2242
|
msgid "ID: %s doesn't exist "
|
2144
2243
|
msgstr ""
|
2145
2244
|
|
2146
|
-
msgid "ISO export must be enabled when specifying ISO size"
|
2147
|
-
msgstr ""
|
2148
|
-
|
2149
2245
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2150
2246
|
msgstr ""
|
2151
2247
|
|
@@ -2326,6 +2422,9 @@ msgstr ""
|
|
2326
2422
|
msgid "In Progress"
|
2327
2423
|
msgstr ""
|
2328
2424
|
|
2425
|
+
msgid "In progress"
|
2426
|
+
msgstr ""
|
2427
|
+
|
2329
2428
|
msgid "Include"
|
2330
2429
|
msgstr ""
|
2331
2430
|
|
@@ -2470,9 +2569,6 @@ msgstr ""
|
|
2470
2569
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2471
2570
|
msgstr ""
|
2472
2571
|
|
2473
|
-
msgid "Invalid date provided."
|
2474
|
-
msgstr ""
|
2475
|
-
|
2476
2572
|
msgid "Invalid date range. The erratum filter rule start date must come before the end date"
|
2477
2573
|
msgstr ""
|
2478
2574
|
|
@@ -2590,8 +2686,9 @@ msgstr ""
|
|
2590
2686
|
msgid "Lifecycle"
|
2591
2687
|
msgstr ""
|
2592
2688
|
|
2689
|
+
#, fuzzy
|
2593
2690
|
msgid "Lifecycle Environment"
|
2594
|
-
msgstr ""
|
2691
|
+
msgstr "Repositórios"
|
2595
2692
|
|
2596
2693
|
msgid "Lifecycle Environment %s has associated Activation Keys. Please change or remove the associated Activation Keys before trying to delete this lifecycle environment."
|
2597
2694
|
msgstr ""
|
@@ -2602,8 +2699,9 @@ msgstr ""
|
|
2602
2699
|
msgid "Lifecycle Environment ID"
|
2603
2700
|
msgstr ""
|
2604
2701
|
|
2702
|
+
#, fuzzy
|
2605
2703
|
msgid "Lifecycle Environments"
|
2606
|
-
msgstr ""
|
2704
|
+
msgstr "Repositórios"
|
2607
2705
|
|
2608
2706
|
msgid "Lifecycle environment"
|
2609
2707
|
msgstr ""
|
@@ -2668,14 +2766,16 @@ msgstr ""
|
|
2668
2766
|
msgid "List content view versions"
|
2669
2767
|
msgstr ""
|
2670
2768
|
|
2769
|
+
#, fuzzy
|
2671
2770
|
msgid "List content views"
|
2672
|
-
msgstr ""
|
2771
|
+
msgstr "Repositórios"
|
2673
2772
|
|
2674
2773
|
msgid "List deb packages installed on the host"
|
2675
2774
|
msgstr ""
|
2676
2775
|
|
2776
|
+
#, fuzzy
|
2677
2777
|
msgid "List environment paths"
|
2678
|
-
msgstr ""
|
2778
|
+
msgstr "Repositórios"
|
2679
2779
|
|
2680
2780
|
msgid "List environments in an organization"
|
2681
2781
|
msgstr ""
|
@@ -2692,8 +2792,9 @@ msgstr ""
|
|
2692
2792
|
msgid "List filter rules"
|
2693
2793
|
msgstr ""
|
2694
2794
|
|
2795
|
+
#, fuzzy
|
2695
2796
|
msgid "List host collections"
|
2696
|
-
msgstr ""
|
2797
|
+
msgstr "Repositórios"
|
2697
2798
|
|
2698
2799
|
msgid "List host collections in an activation key"
|
2699
2800
|
msgstr ""
|
@@ -2713,7 +2814,7 @@ msgstr ""
|
|
2713
2814
|
msgid "List of Errata ids"
|
2714
2815
|
msgstr ""
|
2715
2816
|
|
2716
|
-
msgid "List of Errata ids to install. Will be removed in
|
2817
|
+
msgid "List of Errata ids to install. Will be removed in %s"
|
2717
2818
|
msgstr ""
|
2718
2819
|
|
2719
2820
|
msgid "List of Products for sync plan"
|
@@ -2722,7 +2823,7 @@ msgstr ""
|
|
2722
2823
|
msgid "List of component content view version ids for composite views"
|
2723
2824
|
msgstr ""
|
2724
2825
|
|
2725
|
-
msgid "List of content (e.g. package names, package group names or errata ids)"
|
2826
|
+
msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
|
2726
2827
|
msgstr ""
|
2727
2828
|
|
2728
2829
|
msgid "List of content (e.g. package or package group names)"
|
@@ -2749,8 +2850,9 @@ msgstr ""
|
|
2749
2850
|
msgid "List of host collection IDs to disassociate from the activation key"
|
2750
2851
|
msgstr ""
|
2751
2852
|
|
2853
|
+
#, fuzzy
|
2752
2854
|
msgid "List of host collection ids"
|
2753
|
-
msgstr ""
|
2855
|
+
msgstr "Repositórios"
|
2754
2856
|
|
2755
2857
|
msgid "List of host collection ids to update"
|
2756
2858
|
msgstr ""
|
@@ -2770,7 +2872,7 @@ msgstr ""
|
|
2770
2872
|
msgid "List of hypervisor guest uuids"
|
2771
2873
|
msgstr ""
|
2772
2874
|
|
2773
|
-
msgid "List of package group names"
|
2875
|
+
msgid "List of package group names (Deprecated)"
|
2774
2876
|
msgstr ""
|
2775
2877
|
|
2776
2878
|
msgid "List of package names"
|
@@ -2806,8 +2908,9 @@ msgstr ""
|
|
2806
2908
|
msgid "List of repositories in an organization"
|
2807
2909
|
msgstr ""
|
2808
2910
|
|
2911
|
+
#, fuzzy
|
2809
2912
|
msgid "List of repository ids"
|
2810
|
-
msgstr ""
|
2913
|
+
msgstr "Repositórios"
|
2811
2914
|
|
2812
2915
|
msgid "List of subscription products in a subscription"
|
2813
2916
|
msgstr ""
|
@@ -2824,8 +2927,9 @@ msgstr ""
|
|
2824
2927
|
msgid "List packages installed on the host"
|
2825
2928
|
msgstr ""
|
2826
2929
|
|
2930
|
+
#, fuzzy
|
2827
2931
|
msgid "List products"
|
2828
|
-
msgstr ""
|
2932
|
+
msgstr "Repositórios"
|
2829
2933
|
|
2830
2934
|
msgid "List repositories in the environment"
|
2831
2935
|
msgstr ""
|
@@ -2941,6 +3045,9 @@ msgstr ""
|
|
2941
3045
|
msgid "Mismatched"
|
2942
3046
|
msgstr ""
|
2943
3047
|
|
3048
|
+
msgid "Missing activation key!"
|
3049
|
+
msgstr ""
|
3050
|
+
|
2944
3051
|
msgid "Missing arguments %{substitutions} for %{content_url}"
|
2945
3052
|
msgstr ""
|
2946
3053
|
|
@@ -3023,11 +3130,13 @@ msgstr ""
|
|
3023
3130
|
msgid "New blobs: %{count}."
|
3024
3131
|
msgstr ""
|
3025
3132
|
|
3133
|
+
#, fuzzy
|
3026
3134
|
msgid "New content view name"
|
3027
|
-
msgstr ""
|
3135
|
+
msgstr "Repositórios"
|
3028
3136
|
|
3137
|
+
#, fuzzy
|
3029
3138
|
msgid "New host collection name"
|
3030
|
-
msgstr ""
|
3139
|
+
msgstr "Repositórios"
|
3031
3140
|
|
3032
3141
|
msgid "New name cannot be blank"
|
3033
3142
|
msgstr ""
|
@@ -3041,6 +3150,9 @@ msgstr ""
|
|
3041
3150
|
msgid "New version is available: Version ${latestVersion}"
|
3042
3151
|
msgstr ""
|
3043
3152
|
|
3153
|
+
msgid "Newly published"
|
3154
|
+
msgstr ""
|
3155
|
+
|
3044
3156
|
msgid "No"
|
3045
3157
|
msgstr ""
|
3046
3158
|
|
@@ -3299,9 +3411,6 @@ msgstr ""
|
|
3299
3411
|
msgid "On Demand"
|
3300
3412
|
msgstr ""
|
3301
3413
|
|
3302
|
-
msgid "On demand repositories cannot be exported."
|
3303
|
-
msgstr ""
|
3304
|
-
|
3305
3414
|
msgid "On-disk location for exported repositories"
|
3306
3415
|
msgstr ""
|
3307
3416
|
|
@@ -3335,9 +3444,6 @@ msgstr ""
|
|
3335
3444
|
msgid "Operators"
|
3336
3445
|
msgstr ""
|
3337
3446
|
|
3338
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3339
|
-
msgstr ""
|
3340
|
-
|
3341
3447
|
msgid "Organization"
|
3342
3448
|
msgstr ""
|
3343
3449
|
|
@@ -3398,8 +3504,9 @@ msgstr ""
|
|
3398
3504
|
msgid "Package"
|
3399
3505
|
msgstr ""
|
3400
3506
|
|
3507
|
+
#, fuzzy
|
3401
3508
|
msgid "Package Group"
|
3402
|
-
msgstr ""
|
3509
|
+
msgstr "Domínio"
|
3403
3510
|
|
3404
3511
|
msgid "Package Group Install"
|
3405
3512
|
msgstr ""
|
@@ -3470,8 +3577,9 @@ msgstr ""
|
|
3470
3577
|
msgid "Package Profile Update for %s"
|
3471
3578
|
msgstr ""
|
3472
3579
|
|
3580
|
+
#, fuzzy
|
3473
3581
|
msgid "Package Remove"
|
3474
|
-
msgstr ""
|
3582
|
+
msgstr "Domínio"
|
3475
3583
|
|
3476
3584
|
msgid "Package Remove Canceled"
|
3477
3585
|
msgstr ""
|
@@ -3647,22 +3755,25 @@ msgstr ""
|
|
3647
3755
|
msgid "Product ID"
|
3648
3756
|
msgstr ""
|
3649
3757
|
|
3758
|
+
#, fuzzy
|
3650
3759
|
msgid "Product and Repositories"
|
3651
|
-
msgstr ""
|
3760
|
+
msgstr "Repositórios"
|
3652
3761
|
|
3653
3762
|
msgid "Product architecture"
|
3654
3763
|
msgstr ""
|
3655
3764
|
|
3765
|
+
#, fuzzy
|
3656
3766
|
msgid "Product description"
|
3657
|
-
msgstr ""
|
3767
|
+
msgstr "Repositórios"
|
3658
3768
|
|
3659
3769
|
msgid ""
|
3660
3770
|
"Product id as listed from a host's installed products, \\\n"
|
3661
3771
|
" this is not the same product id as the products api returns"
|
3662
3772
|
msgstr ""
|
3663
3773
|
|
3774
|
+
#, fuzzy
|
3664
3775
|
msgid "Product name"
|
3665
|
-
msgstr ""
|
3776
|
+
msgstr "Nome"
|
3666
3777
|
|
3667
3778
|
msgid "Product name as listed from a host's installed products"
|
3668
3779
|
msgstr ""
|
@@ -3727,12 +3838,22 @@ msgstr ""
|
|
3727
3838
|
msgid "Publish Lifecycle Environment Repositories"
|
3728
3839
|
msgstr ""
|
3729
3840
|
|
3841
|
+
#, fuzzy
|
3730
3842
|
msgid "Publish a content view"
|
3843
|
+
msgstr "Repositórios"
|
3844
|
+
|
3845
|
+
msgid "Publish new version - "
|
3731
3846
|
msgstr ""
|
3732
3847
|
|
3733
3848
|
msgid "Published new version"
|
3734
3849
|
msgstr ""
|
3735
3850
|
|
3851
|
+
msgid "Publishing ${name}"
|
3852
|
+
msgstr ""
|
3853
|
+
|
3854
|
+
msgid "Publishing content view"
|
3855
|
+
msgstr ""
|
3856
|
+
|
3736
3857
|
msgid "Pulling remote branches. Downloaded %s units."
|
3737
3858
|
msgstr ""
|
3738
3859
|
|
@@ -3742,7 +3863,7 @@ msgstr ""
|
|
3742
3863
|
msgid "Pulp 3 export destination filepath"
|
3743
3864
|
msgstr ""
|
3744
3865
|
|
3745
|
-
msgid "Pulp
|
3866
|
+
msgid "Pulp 3 is not enabled on Smart proxy!"
|
3746
3867
|
msgstr ""
|
3747
3868
|
|
3748
3869
|
msgid "Pulp Docker registry port"
|
@@ -3853,8 +3974,9 @@ msgstr ""
|
|
3853
3974
|
msgid "Red Hat Provider Details"
|
3854
3975
|
msgstr ""
|
3855
3976
|
|
3977
|
+
#, fuzzy
|
3856
3978
|
msgid "Red Hat Repositories"
|
3857
|
-
msgstr ""
|
3979
|
+
msgstr "Repositórios"
|
3858
3980
|
|
3859
3981
|
msgid "Red Hat products cannot be manipulated."
|
3860
3982
|
msgstr ""
|
@@ -3868,8 +3990,9 @@ msgstr ""
|
|
3868
3990
|
msgid "Refresh"
|
3869
3991
|
msgstr ""
|
3870
3992
|
|
3993
|
+
#, fuzzy
|
3871
3994
|
msgid "Refresh Manifest"
|
3872
|
-
msgstr ""
|
3995
|
+
msgstr "Repositórios"
|
3873
3996
|
|
3874
3997
|
msgid "Refresh previously imported manifest for Red Hat provider"
|
3875
3998
|
msgstr ""
|
@@ -3916,11 +4039,16 @@ msgstr ""
|
|
3916
4039
|
msgid "Removal of package(s) requested: %{packages}"
|
3917
4040
|
msgstr ""
|
3918
4041
|
|
3919
|
-
msgid "Remove
|
4042
|
+
msgid "Remove"
|
3920
4043
|
msgstr ""
|
3921
4044
|
|
4045
|
+
#, fuzzy
|
4046
|
+
msgid "Remove Content"
|
4047
|
+
msgstr "Domínio"
|
4048
|
+
|
4049
|
+
#, fuzzy
|
3922
4050
|
msgid "Remove Version"
|
3923
|
-
msgstr ""
|
4051
|
+
msgstr "Repositórios"
|
3924
4052
|
|
3925
4053
|
msgid "Remove Versions and Associations"
|
3926
4054
|
msgstr ""
|
@@ -3940,9 +4068,13 @@ msgstr ""
|
|
3940
4068
|
msgid "Remove content view version"
|
3941
4069
|
msgstr ""
|
3942
4070
|
|
3943
|
-
msgid "Remove
|
4071
|
+
msgid "Remove content views"
|
3944
4072
|
msgstr ""
|
3945
4073
|
|
4074
|
+
#, fuzzy
|
4075
|
+
msgid "Remove from Environment"
|
4076
|
+
msgstr "Repositórios"
|
4077
|
+
|
3946
4078
|
msgid "Remove hosts from the host collection"
|
3947
4079
|
msgstr ""
|
3948
4080
|
|
@@ -3961,8 +4093,9 @@ msgstr ""
|
|
3961
4093
|
msgid "Remove package for %s"
|
3962
4094
|
msgstr ""
|
3963
4095
|
|
4096
|
+
#, fuzzy
|
3964
4097
|
msgid "Remove package group"
|
3965
|
-
msgstr ""
|
4098
|
+
msgstr "Arquitetura"
|
3966
4099
|
|
3967
4100
|
msgid "Remove package group via Katello interface"
|
3968
4101
|
msgstr ""
|
@@ -3985,6 +4118,12 @@ msgstr ""
|
|
3985
4118
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
3986
4119
|
msgstr ""
|
3987
4120
|
|
4121
|
+
msgid "Removed component from content view"
|
4122
|
+
msgstr ""
|
4123
|
+
|
4124
|
+
msgid "Removed components from content view"
|
4125
|
+
msgstr ""
|
4126
|
+
|
3988
4127
|
msgid "Removing Package Group..."
|
3989
4128
|
msgstr ""
|
3990
4129
|
|
@@ -3994,21 +4133,20 @@ msgstr ""
|
|
3994
4133
|
msgid "Repo Type"
|
3995
4134
|
msgstr ""
|
3996
4135
|
|
4136
|
+
#, fuzzy
|
3997
4137
|
msgid "Repositories"
|
3998
|
-
msgstr ""
|
4138
|
+
msgstr "Repositórios"
|
3999
4139
|
|
4000
4140
|
msgid "Repositories from published Content Views are not allowed."
|
4001
4141
|
msgstr ""
|
4002
4142
|
|
4143
|
+
#, fuzzy
|
4003
4144
|
msgid "Repository"
|
4004
|
-
msgstr ""
|
4145
|
+
msgstr "Repositórios"
|
4005
4146
|
|
4006
4147
|
msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
|
4007
4148
|
msgstr ""
|
4008
4149
|
|
4009
|
-
msgid "Repository %s cannot be deleted since they are Red Hat repositories."
|
4010
|
-
msgstr ""
|
4011
|
-
|
4012
4150
|
msgid "Repository '%(repoName)s' has been disabled."
|
4013
4151
|
msgstr ""
|
4014
4152
|
|
@@ -4024,14 +4162,12 @@ msgstr ""
|
|
4024
4162
|
msgid "Repository cannot be disabled since it has already been promoted."
|
4025
4163
|
msgstr ""
|
4026
4164
|
|
4027
|
-
msgid "Repository content type must be 'yum' to export."
|
4028
|
-
msgstr ""
|
4029
|
-
|
4030
4165
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4031
4166
|
msgstr ""
|
4032
4167
|
|
4168
|
+
#, fuzzy
|
4033
4169
|
msgid "Repository id"
|
4034
|
-
msgstr ""
|
4170
|
+
msgstr "Repositórios"
|
4035
4171
|
|
4036
4172
|
msgid "Repository identifier"
|
4037
4173
|
msgstr ""
|
@@ -4042,8 +4178,9 @@ msgstr ""
|
|
4042
4178
|
msgid "Repository metadata publish"
|
4043
4179
|
msgstr ""
|
4044
4180
|
|
4181
|
+
#, fuzzy
|
4045
4182
|
msgid "Repository not found"
|
4046
|
-
msgstr ""
|
4183
|
+
msgstr "Repositórios"
|
4047
4184
|
|
4048
4185
|
msgid "Repository set name to search on"
|
4049
4186
|
msgstr ""
|
@@ -4057,6 +4194,9 @@ msgstr ""
|
|
4057
4194
|
msgid "Republish Version Repositories"
|
4058
4195
|
msgstr ""
|
4059
4196
|
|
4197
|
+
msgid "Requirements yaml is invalid!"
|
4198
|
+
msgstr ""
|
4199
|
+
|
4060
4200
|
msgid "Requires Virt-Who"
|
4061
4201
|
msgstr ""
|
4062
4202
|
|
@@ -4099,9 +4239,6 @@ msgstr ""
|
|
4099
4239
|
msgid "Return errata that are upgradable on one or more hosts"
|
4100
4240
|
msgstr ""
|
4101
4241
|
|
4102
|
-
msgid "Return errata that can be added to the Content View Version via an Incremental Update. Will be removed in Katello 4.1."
|
4103
|
-
msgstr ""
|
4104
|
-
|
4105
4242
|
msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
|
4106
4243
|
msgstr ""
|
4107
4244
|
|
@@ -4180,8 +4317,9 @@ msgstr ""
|
|
4180
4317
|
msgid "Search pattern (defaults to '*')"
|
4181
4318
|
msgstr ""
|
4182
4319
|
|
4320
|
+
#, fuzzy
|
4183
4321
|
msgid "Search string"
|
4184
|
-
msgstr ""
|
4322
|
+
msgstr "Repositórios"
|
4185
4323
|
|
4186
4324
|
msgid "Search string for erratum to perform an action on"
|
4187
4325
|
msgstr ""
|
@@ -4207,11 +4345,13 @@ msgstr ""
|
|
4207
4345
|
msgid "Select All"
|
4208
4346
|
msgstr ""
|
4209
4347
|
|
4348
|
+
#, fuzzy
|
4210
4349
|
msgid "Select Content View"
|
4211
|
-
msgstr ""
|
4350
|
+
msgstr "Repositórios"
|
4212
4351
|
|
4352
|
+
#, fuzzy
|
4213
4353
|
msgid "Select None"
|
4214
|
-
msgstr ""
|
4354
|
+
msgstr "Domínio"
|
4215
4355
|
|
4216
4356
|
msgid "Select Organization"
|
4217
4357
|
msgstr ""
|
@@ -4219,6 +4359,9 @@ msgstr ""
|
|
4219
4359
|
msgid "Select Value"
|
4220
4360
|
msgstr ""
|
4221
4361
|
|
4362
|
+
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
4363
|
+
msgstr ""
|
4364
|
+
|
4222
4365
|
msgid "Select all rows"
|
4223
4366
|
msgstr ""
|
4224
4367
|
|
@@ -4228,6 +4371,9 @@ msgstr ""
|
|
4228
4371
|
msgid "Select an organization"
|
4229
4372
|
msgstr ""
|
4230
4373
|
|
4374
|
+
msgid "Select available version of ${cvName} to use"
|
4375
|
+
msgstr ""
|
4376
|
+
|
4231
4377
|
msgid "Select hosts to assign to %s"
|
4232
4378
|
msgstr ""
|
4233
4379
|
|
@@ -4282,8 +4428,9 @@ msgstr ""
|
|
4282
4428
|
msgid "Show a Content Credential"
|
4283
4429
|
msgstr ""
|
4284
4430
|
|
4431
|
+
#, fuzzy
|
4285
4432
|
msgid "Show a content view"
|
4286
|
-
msgstr ""
|
4433
|
+
msgstr "Repositórios"
|
4287
4434
|
|
4288
4435
|
msgid "Show a content view component"
|
4289
4436
|
msgstr ""
|
@@ -4300,8 +4447,9 @@ msgstr ""
|
|
4300
4447
|
msgid "Show a repository"
|
4301
4448
|
msgstr ""
|
4302
4449
|
|
4450
|
+
#, fuzzy
|
4303
4451
|
msgid "Show a subscription"
|
4304
|
-
msgstr ""
|
4452
|
+
msgstr "Repositórios"
|
4305
4453
|
|
4306
4454
|
msgid "Show a sync plan"
|
4307
4455
|
msgstr ""
|
@@ -4309,8 +4457,9 @@ msgstr ""
|
|
4309
4457
|
msgid "Show an activation key"
|
4310
4458
|
msgstr ""
|
4311
4459
|
|
4460
|
+
#, fuzzy
|
4312
4461
|
msgid "Show an environment"
|
4313
|
-
msgstr ""
|
4462
|
+
msgstr "Repositórios"
|
4314
4463
|
|
4315
4464
|
msgid "Show content available for an activation key"
|
4316
4465
|
msgstr ""
|
@@ -4351,6 +4500,9 @@ msgstr ""
|
|
4351
4500
|
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4352
4501
|
msgstr ""
|
4353
4502
|
|
4503
|
+
msgid "Single content view consisting of repositories"
|
4504
|
+
msgstr ""
|
4505
|
+
|
4354
4506
|
msgid "Size of file to upload"
|
4355
4507
|
msgstr ""
|
4356
4508
|
|
@@ -4363,6 +4515,9 @@ msgstr ""
|
|
4363
4515
|
msgid "Smart proxy IDs"
|
4364
4516
|
msgstr ""
|
4365
4517
|
|
4518
|
+
msgid "Smart proxy content source not found!"
|
4519
|
+
msgstr ""
|
4520
|
+
|
4366
4521
|
msgid "Sockets: %s"
|
4367
4522
|
msgstr ""
|
4368
4523
|
|
@@ -4381,6 +4536,21 @@ msgstr ""
|
|
4381
4536
|
msgid "Some services are not properly started. See the About page for more information."
|
4382
4537
|
msgstr ""
|
4383
4538
|
|
4539
|
+
msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
|
4540
|
+
msgstr ""
|
4541
|
+
|
4542
|
+
msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
|
4543
|
+
msgstr ""
|
4544
|
+
|
4545
|
+
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
4546
|
+
msgstr ""
|
4547
|
+
|
4548
|
+
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
4549
|
+
msgstr ""
|
4550
|
+
|
4551
|
+
msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
|
4552
|
+
msgstr ""
|
4553
|
+
|
4384
4554
|
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4385
4555
|
msgstr ""
|
4386
4556
|
|
@@ -4591,8 +4761,9 @@ msgstr ""
|
|
4591
4761
|
msgid "Sync Smart Proxies after Content View promotion"
|
4592
4762
|
msgstr ""
|
4593
4763
|
|
4764
|
+
#, fuzzy
|
4594
4765
|
msgid "Sync Status"
|
4595
|
-
msgstr ""
|
4766
|
+
msgstr "Sistema"
|
4596
4767
|
|
4597
4768
|
msgid "Sync Summary"
|
4598
4769
|
msgstr ""
|
@@ -4600,8 +4771,9 @@ msgstr ""
|
|
4600
4771
|
msgid "Sync Summary for %s"
|
4601
4772
|
msgstr ""
|
4602
4773
|
|
4774
|
+
#, fuzzy
|
4603
4775
|
msgid "Sync a repository"
|
4604
|
-
msgstr ""
|
4776
|
+
msgstr "Repositórios"
|
4605
4777
|
|
4606
4778
|
msgid "Sync all repositories for a product"
|
4607
4779
|
msgstr ""
|
@@ -4639,8 +4811,9 @@ msgstr ""
|
|
4639
4811
|
msgid "Synchronize capsule content"
|
4640
4812
|
msgstr ""
|
4641
4813
|
|
4814
|
+
#, fuzzy
|
4642
4815
|
msgid "Synchronize repository"
|
4643
|
-
msgstr ""
|
4816
|
+
msgstr "Repositórios"
|
4644
4817
|
|
4645
4818
|
msgid "Synchronize smart proxy"
|
4646
4819
|
msgstr ""
|
@@ -4720,12 +4893,6 @@ msgstr ""
|
|
4720
4893
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4721
4894
|
msgstr ""
|
4722
4895
|
|
4723
|
-
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4724
|
-
msgstr ""
|
4725
|
-
|
4726
|
-
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4727
|
-
msgstr ""
|
4728
|
-
|
4729
4896
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4730
4897
|
msgstr ""
|
4731
4898
|
|
@@ -4758,6 +4925,9 @@ msgstr ""
|
|
4758
4925
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
4759
4926
|
msgstr ""
|
4760
4927
|
|
4928
|
+
msgid "The maximum number of versions of each package to keep."
|
4929
|
+
msgstr ""
|
4930
|
+
|
4761
4931
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4762
4932
|
msgstr ""
|
4763
4933
|
|
@@ -4897,9 +5067,6 @@ msgstr ""
|
|
4897
5067
|
msgid "This is disabled because a manifest task is in progress"
|
4898
5068
|
msgstr ""
|
4899
5069
|
|
4900
|
-
msgid "This is disabled because disconnected mode is enabled."
|
4901
|
-
msgstr ""
|
4902
|
-
|
4903
5070
|
msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
|
4904
5071
|
msgstr ""
|
4905
5072
|
|
@@ -4984,6 +5151,9 @@ msgstr ""
|
|
4984
5151
|
msgid "Type of content: \"cert\", \"gpg_key\""
|
4985
5152
|
msgstr ""
|
4986
5153
|
|
5154
|
+
msgid "URL needs to have a trailing /"
|
5155
|
+
msgstr ""
|
5156
|
+
|
4987
5157
|
msgid "UUID"
|
4988
5158
|
msgstr ""
|
4989
5159
|
|
@@ -5011,12 +5181,6 @@ msgstr ""
|
|
5011
5181
|
msgid "Unable to detect puppet path"
|
5012
5182
|
msgstr ""
|
5013
5183
|
|
5014
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
5015
|
-
msgstr ""
|
5016
|
-
|
5017
|
-
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5018
|
-
msgstr ""
|
5019
|
-
|
5020
5184
|
msgid "Unable to find product '%s' in organization '%s'"
|
5021
5185
|
msgstr ""
|
5022
5186
|
|
@@ -5131,8 +5295,9 @@ msgstr ""
|
|
5131
5295
|
msgid "Update a component associated with the content view"
|
5132
5296
|
msgstr ""
|
5133
5297
|
|
5298
|
+
#, fuzzy
|
5134
5299
|
msgid "Update a content view"
|
5135
|
-
msgstr ""
|
5300
|
+
msgstr "Repositórios"
|
5136
5301
|
|
5137
5302
|
msgid "Update a content view version"
|
5138
5303
|
msgstr ""
|
@@ -5143,8 +5308,9 @@ msgstr ""
|
|
5143
5308
|
msgid "Update a host collection"
|
5144
5309
|
msgstr ""
|
5145
5310
|
|
5311
|
+
#, fuzzy
|
5146
5312
|
msgid "Update a repository"
|
5147
|
-
msgstr ""
|
5313
|
+
msgstr "Repositórios"
|
5148
5314
|
|
5149
5315
|
msgid "Update a sync plan"
|
5150
5316
|
msgstr ""
|
@@ -5152,8 +5318,9 @@ msgstr ""
|
|
5152
5318
|
msgid "Update an activation key"
|
5153
5319
|
msgstr ""
|
5154
5320
|
|
5321
|
+
#, fuzzy
|
5155
5322
|
msgid "Update an environment"
|
5156
|
-
msgstr ""
|
5323
|
+
msgstr "Repositórios"
|
5157
5324
|
|
5158
5325
|
msgid "Update an environment in an organization"
|
5159
5326
|
msgstr ""
|
@@ -5224,9 +5391,15 @@ msgstr ""
|
|
5224
5391
|
msgid "Update the quantity of one or more subscriptions on an upstream allocation"
|
5225
5392
|
msgstr ""
|
5226
5393
|
|
5394
|
+
msgid "Update version"
|
5395
|
+
msgstr ""
|
5396
|
+
|
5227
5397
|
msgid "Updated"
|
5228
5398
|
msgstr ""
|
5229
5399
|
|
5400
|
+
msgid "Updated component details"
|
5401
|
+
msgstr ""
|
5402
|
+
|
5230
5403
|
msgid "Updates"
|
5231
5404
|
msgstr ""
|
5232
5405
|
|
@@ -5266,9 +5439,6 @@ msgstr ""
|
|
5266
5439
|
msgid "Upload content into the repository"
|
5267
5440
|
msgstr ""
|
5268
5441
|
|
5269
|
-
msgid "Upload errata into"
|
5270
|
-
msgstr ""
|
5271
|
-
|
5272
5442
|
msgid "Upload into"
|
5273
5443
|
msgstr ""
|
5274
5444
|
|
@@ -5344,6 +5514,12 @@ msgstr ""
|
|
5344
5514
|
msgid "Version"
|
5345
5515
|
msgstr ""
|
5346
5516
|
|
5517
|
+
msgid "Version "
|
5518
|
+
msgstr ""
|
5519
|
+
|
5520
|
+
msgid "Version ${item.version}"
|
5521
|
+
msgstr ""
|
5522
|
+
|
5347
5523
|
msgid "Versions"
|
5348
5524
|
msgstr ""
|
5349
5525
|
|
@@ -5497,8 +5673,9 @@ msgstr ""
|
|
5497
5673
|
msgid "a package"
|
5498
5674
|
msgstr ""
|
5499
5675
|
|
5676
|
+
#, fuzzy
|
5500
5677
|
msgid "a package group"
|
5501
|
-
msgstr ""
|
5678
|
+
msgstr "Arquitetura"
|
5502
5679
|
|
5503
5680
|
msgid "actions not found"
|
5504
5681
|
msgstr ""
|
@@ -5698,8 +5875,9 @@ msgstr ""
|
|
5698
5875
|
msgid "delete a filter"
|
5699
5876
|
msgstr ""
|
5700
5877
|
|
5878
|
+
#, fuzzy
|
5701
5879
|
msgid "description"
|
5702
|
-
msgstr ""
|
5880
|
+
msgstr "Arquitetura"
|
5703
5881
|
|
5704
5882
|
msgid "description of the environment"
|
5705
5883
|
msgstr ""
|
@@ -5716,11 +5894,13 @@ msgstr ""
|
|
5716
5894
|
msgid "enables or disables synchronization"
|
5717
5895
|
msgstr ""
|
5718
5896
|
|
5897
|
+
#, fuzzy
|
5719
5898
|
msgid "environment"
|
5720
|
-
msgstr ""
|
5899
|
+
msgstr "Repositórios"
|
5721
5900
|
|
5901
|
+
#, fuzzy
|
5722
5902
|
msgid "environment id"
|
5723
|
-
msgstr ""
|
5903
|
+
msgstr "Repositórios"
|
5724
5904
|
|
5725
5905
|
msgid "environment identifier"
|
5726
5906
|
msgstr ""
|
@@ -5737,8 +5917,9 @@ msgstr ""
|
|
5737
5917
|
msgid "environment to reassign orphaned systems to"
|
5738
5918
|
msgstr ""
|
5739
5919
|
|
5920
|
+
#, fuzzy
|
5740
5921
|
msgid "environments"
|
5741
|
-
msgstr ""
|
5922
|
+
msgstr "Repositórios"
|
5742
5923
|
|
5743
5924
|
msgid "errata_id of the content view filter rule"
|
5744
5925
|
msgstr ""
|
@@ -5782,6 +5963,9 @@ msgstr ""
|
|
5782
5963
|
msgid "filter identifier"
|
5783
5964
|
msgstr ""
|
5784
5965
|
|
5966
|
+
msgid "filter identifiers"
|
5967
|
+
msgstr ""
|
5968
|
+
|
5785
5969
|
msgid "filter only environments containing this name"
|
5786
5970
|
msgstr ""
|
5787
5971
|
|
@@ -5875,6 +6059,9 @@ msgstr ""
|
|
5875
6059
|
msgid "is invalid"
|
5876
6060
|
msgstr ""
|
5877
6061
|
|
6062
|
+
msgid "is not enabled. must be one of the following: %s"
|
6063
|
+
msgstr ""
|
6064
|
+
|
5878
6065
|
msgid "label of the environment"
|
5879
6066
|
msgstr ""
|
5880
6067
|
|
@@ -5893,8 +6080,9 @@ msgstr ""
|
|
5893
6080
|
msgid "list of packages names"
|
5894
6081
|
msgstr ""
|
5895
6082
|
|
6083
|
+
#, fuzzy
|
5896
6084
|
msgid "list of repository ids"
|
5897
|
-
msgstr ""
|
6085
|
+
msgstr "Repositórios"
|
5898
6086
|
|
5899
6087
|
msgid "list of rpm filename strings to include in published version"
|
5900
6088
|
msgstr ""
|
@@ -5908,9 +6096,6 @@ msgstr ""
|
|
5908
6096
|
msgid "maximum number of registered content hosts"
|
5909
6097
|
msgstr ""
|
5910
6098
|
|
5911
|
-
msgid "maximum size of each ISO in MB"
|
5912
|
-
msgstr ""
|
5913
|
-
|
5914
6099
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5915
6100
|
msgstr ""
|
5916
6101
|
|
@@ -5953,8 +6138,9 @@ msgstr ""
|
|
5953
6138
|
msgid "must not contain leading or trailing white spaces."
|
5954
6139
|
msgstr ""
|
5955
6140
|
|
6141
|
+
#, fuzzy
|
5956
6142
|
msgid "name"
|
5957
|
-
msgstr ""
|
6143
|
+
msgstr "Nome"
|
5958
6144
|
|
5959
6145
|
msgid "name not defined."
|
5960
6146
|
msgstr ""
|
@@ -5965,8 +6151,9 @@ msgstr ""
|
|
5965
6151
|
msgid "name of the content view filter rule"
|
5966
6152
|
msgstr ""
|
5967
6153
|
|
6154
|
+
#, fuzzy
|
5968
6155
|
msgid "name of the environment"
|
5969
|
-
msgstr ""
|
6156
|
+
msgstr "Repositórios"
|
5970
6157
|
|
5971
6158
|
msgid "name of the filter"
|
5972
6159
|
msgstr ""
|
@@ -5974,8 +6161,9 @@ msgstr ""
|
|
5974
6161
|
msgid "name of the organization"
|
5975
6162
|
msgstr ""
|
5976
6163
|
|
6164
|
+
#, fuzzy
|
5977
6165
|
msgid "name of the repository"
|
5978
|
-
msgstr ""
|
6166
|
+
msgstr "Repositórios"
|
5979
6167
|
|
5980
6168
|
msgid "name of the subscription"
|
5981
6169
|
msgstr ""
|
@@ -6088,20 +6276,25 @@ msgstr ""
|
|
6088
6276
|
msgid "repo label"
|
6089
6277
|
msgstr ""
|
6090
6278
|
|
6279
|
+
#, fuzzy
|
6091
6280
|
msgid "repository ID"
|
6092
|
-
msgstr ""
|
6281
|
+
msgstr "Repositórios"
|
6093
6282
|
|
6283
|
+
#, fuzzy
|
6094
6284
|
msgid "repository id"
|
6095
|
-
msgstr ""
|
6285
|
+
msgstr "Repositórios"
|
6096
6286
|
|
6287
|
+
#, fuzzy
|
6097
6288
|
msgid "repository identifier"
|
6098
|
-
msgstr ""
|
6289
|
+
msgstr "Repositórios"
|
6099
6290
|
|
6291
|
+
#, fuzzy
|
6100
6292
|
msgid "repository source url"
|
6101
|
-
msgstr ""
|
6293
|
+
msgstr "Repositórios"
|
6102
6294
|
|
6295
|
+
#, fuzzy
|
6103
6296
|
msgid "repository url"
|
6104
|
-
msgstr ""
|
6297
|
+
msgstr "Repositórios"
|
6105
6298
|
|
6106
6299
|
msgid "repository_id"
|
6107
6300
|
msgstr ""
|