katello 3.17.3 → 3.18.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
- data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
- data/app/controllers/katello/api/v2/api_controller.rb +2 -1
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
- data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -36
- data/app/controllers/katello/api/v2/content_views_controller.rb +27 -25
- data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
- data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
- data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +17 -0
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +8 -5
- data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
- data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
- data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
- data/app/controllers/katello/concerns/api/v2/authorization.rb +9 -5
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
- data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
- data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
- data/app/helpers/katello/katello_urls_helper.rb +5 -2
- data/app/lib/actions/candlepin/product/content_create.rb +2 -0
- data/app/lib/actions/candlepin/product/content_update.rb +2 -0
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +2 -6
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +2 -6
- data/app/lib/actions/katello/content_view/publish.rb +3 -4
- data/app/lib/actions/katello/content_view_version/import.rb +4 -3
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
- data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
- data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
- data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
- data/app/lib/actions/katello/product/content_create.rb +7 -6
- data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
- data/app/lib/actions/katello/repository/import_upload.rb +2 -1
- data/app/lib/actions/katello/repository/update.rb +4 -1
- data/app/lib/actions/pulp3/abstract_async_task.rb +0 -1
- data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
- data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
- data/app/lib/actions/pulp3/content_view_version/export.rb +2 -1
- data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +15 -10
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
- data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
- data/app/lib/actions/pulp3/repository/delete.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
- data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
- data/app/lib/katello/resources/candlepin/owner.rb +5 -0
- data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
- data/app/lib/katello/resources/registry.rb +3 -3
- data/app/models/katello/authorization/activation_key.rb +4 -0
- data/app/models/katello/authorization/content_view.rb +13 -0
- data/app/models/katello/authorization/content_view_component.rb +15 -0
- data/app/models/katello/authorization/gpg_key.rb +12 -4
- data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
- data/app/models/katello/authorization/sync_plan.rb +16 -0
- data/app/models/katello/concerns/organization_extensions.rb +4 -5
- data/app/models/katello/concerns/redhat_extensions.rb +2 -2
- data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -3
- data/app/models/katello/content_view_component.rb +2 -0
- data/app/models/katello/content_view_version_export_history.rb +2 -0
- data/app/models/katello/glue/candlepin/pool.rb +9 -14
- data/app/models/katello/glue/pulp/repo.rb +8 -0
- data/app/models/katello/gpg_key.rb +1 -1
- data/app/models/katello/root_repository.rb +26 -1
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -12
- data/app/services/katello/candlepin/event_handler.rb +2 -0
- data/app/services/katello/candlepin/message_handler.rb +34 -0
- data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
- data/app/services/katello/host_status_manager.rb +9 -0
- data/app/services/katello/pulp3/api/apt.rb +57 -0
- data/app/services/katello/pulp3/api/core.rb +8 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +4 -3
- data/app/services/katello/pulp3/content_view_version/import.rb +5 -15
- data/app/services/katello/pulp3/deb.rb +38 -0
- data/app/services/katello/pulp3/erratum.rb +1 -2
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
- data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
- data/app/services/katello/pulp3/repository/apt.rb +63 -0
- data/app/services/katello/pulp3/repository/docker.rb +4 -0
- data/app/services/katello/pulp3/repository/yum.rb +2 -1
- data/app/services/katello/pulp3/repository.rb +11 -9
- data/app/services/katello/pulp3/repository_mirror.rb +9 -4
- data/app/services/katello/pulp3/task.rb +3 -3
- data/app/services/katello/pulp3/task_group.rb +0 -6
- data/app/views/dashboard/_subscription_widget.html.erb +0 -5
- data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
- data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
- data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
- data/config/routes/api/v2.rb +2 -0
- data/config/routes/overrides.rb +1 -0
- data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +2 -5
- data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
- data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
- data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
- data/db/seeds.d/111-upgrade_tasks.rb +2 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
- data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +16 -14
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
- data/lib/katello/engine.rb +1 -0
- data/lib/katello/permission_creator.rb +68 -59
- data/lib/katello/permissions/host_permissions.rb +1 -0
- data/lib/katello/plugin.rb +4 -1
- data/lib/katello/repository_types/deb.rb +9 -1
- data/lib/katello/tasks/pulp3_content_switchover.rake +1 -3
- data/lib/katello/tasks/pulp3_migration_stats.rake +21 -0
- data/lib/katello/tasks/reports.rake +1 -4
- data/lib/katello/tasks/reset.rake +2 -1
- data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +54 -47
- data/locale/bn/katello.po +165 -26
- data/locale/cs/katello.po +164 -24
- data/locale/de/katello.po +165 -26
- data/locale/en/katello.po +164 -23
- data/locale/es/katello.po +165 -25
- data/locale/fr/katello.po +165 -25
- data/locale/gu/katello.po +165 -26
- data/locale/hi/katello.po +165 -26
- data/locale/it/katello.po +165 -25
- data/locale/ja/katello.po +165 -26
- data/locale/katello.pot +1036 -802
- data/locale/kn/katello.po +165 -26
- data/locale/ko/katello.po +165 -25
- data/locale/mr/katello.po +165 -26
- data/locale/or/katello.po +165 -26
- data/locale/pa/katello.po +165 -26
- data/locale/pt/katello.po +164 -23
- data/locale/pt_BR/katello.po +165 -25
- data/locale/ru/katello.po +165 -25
- data/locale/ta/katello.po +165 -26
- data/locale/te/katello.po +165 -26
- data/locale/zh_CN/katello.po +165 -25
- data/locale/zh_TW/katello.po +165 -26
- data/webpack/components/ActionableDetail.js +2 -1
- data/webpack/components/Search/Search.js +1 -1
- data/webpack/components/Table/MainTable.js +6 -2
- data/webpack/components/Table/TableWrapper.js +46 -9
- data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
- data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
- data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
- data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
- data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +16 -8
- data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
- data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
- data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
- data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
- data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
- data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
- data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
- data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
- metadata +69 -26
data/locale/katello.pot
CHANGED
|
@@ -8,8 +8,8 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: katello 1.0.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2020-
|
|
12
|
-
"PO-Revision-Date: 2020-
|
|
11
|
+
"POT-Creation-Date: 2020-11-02 22:17+0000\n"
|
|
12
|
+
"PO-Revision-Date: 2020-11-02 22:17+0000\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
15
15
|
"Language: \n"
|
|
@@ -31,101 +31,99 @@ msgid "Update installed deb packages"
|
|
|
31
31
|
msgstr ""
|
|
32
32
|
|
|
33
33
|
#: ../app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb:42
|
|
34
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
34
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:192
|
|
35
35
|
msgid "UUID of the system"
|
|
36
36
|
msgstr ""
|
|
37
37
|
|
|
38
38
|
#: ../app/controllers/katello/api/rhsm/candlepin_dynflow_proxy_controller.rb:54
|
|
39
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
39
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:307
|
|
40
40
|
msgid "Couldn't find consumer '%s'"
|
|
41
41
|
msgstr ""
|
|
42
42
|
|
|
43
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
43
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:154
|
|
44
44
|
msgid "Update services requiring restart"
|
|
45
45
|
msgstr ""
|
|
46
46
|
|
|
47
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
47
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:160
|
|
48
48
|
msgid "Tracer profile uploaded successfully"
|
|
49
49
|
msgstr ""
|
|
50
50
|
|
|
51
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
51
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:182
|
|
52
52
|
msgid "Update the information about enabled repositories"
|
|
53
53
|
msgstr ""
|
|
54
54
|
|
|
55
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
55
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:189
|
|
56
56
|
msgid "List of enabled repo urls for the repo (Only first is used.)"
|
|
57
57
|
msgstr ""
|
|
58
58
|
|
|
59
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
59
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:195
|
|
60
60
|
msgid "The request did not contain any repository information."
|
|
61
61
|
msgstr ""
|
|
62
62
|
|
|
63
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
63
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:222
|
|
64
64
|
msgid "Deleted consumer '%s'"
|
|
65
65
|
msgstr ""
|
|
66
66
|
|
|
67
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
67
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:263
|
|
68
68
|
msgid "Facts successfully updated."
|
|
69
69
|
msgstr ""
|
|
70
70
|
|
|
71
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
71
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:323
|
|
72
72
|
msgid ""
|
|
73
73
|
"User '%s' did not specify an organization ID and does not have a default organ"
|
|
74
74
|
"ization."
|
|
75
75
|
msgstr ""
|
|
76
76
|
|
|
77
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
77
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:348
|
|
78
78
|
msgid "Couldn't find Organization '%s'."
|
|
79
79
|
msgstr ""
|
|
80
80
|
|
|
81
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
81
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:353
|
|
82
82
|
msgid "User '%{user}' does not belong to Organization '%{organization}'."
|
|
83
83
|
msgstr ""
|
|
84
84
|
|
|
85
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
85
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:372
|
|
86
86
|
msgid "Organization not found"
|
|
87
87
|
msgstr ""
|
|
88
88
|
|
|
89
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
90
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:261
|
|
89
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:376
|
|
91
90
|
#: ../app/controllers/katello/api/v2/products_controller.rb:141
|
|
92
91
|
msgid "Couldn't find activation key '%s'"
|
|
93
92
|
msgstr ""
|
|
94
93
|
|
|
95
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
94
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:379
|
|
96
95
|
msgid "Max Hosts (%{limit}) reached for activation key '%{name}'"
|
|
97
96
|
msgstr ""
|
|
98
97
|
|
|
99
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
98
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:388
|
|
100
99
|
msgid "At least one activation key must be provided"
|
|
101
100
|
msgstr ""
|
|
102
101
|
|
|
103
|
-
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:
|
|
104
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
105
|
-
#: ../app/controllers/katello/api/v2/environments_controller.rb:162
|
|
102
|
+
#: ../app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb:397
|
|
103
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:280
|
|
106
104
|
msgid "Couldn't find environment '%s'"
|
|
107
105
|
msgstr ""
|
|
108
106
|
|
|
109
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
107
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:17
|
|
110
108
|
msgid "List activation keys"
|
|
111
109
|
msgstr ""
|
|
112
110
|
|
|
113
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
114
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
115
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
116
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
117
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
118
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
119
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
120
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
111
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:20
|
|
112
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:32
|
|
113
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:60
|
|
114
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:88
|
|
115
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:96
|
|
116
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:29
|
|
117
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:45
|
|
118
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:35
|
|
121
119
|
#: ../app/controllers/katello/api/v2/environments_controller.rb:48
|
|
122
120
|
#: ../app/controllers/katello/api/v2/environments_controller.rb:123
|
|
123
121
|
#: ../app/controllers/katello/api/v2/environments_controller.rb:132
|
|
124
122
|
#: ../app/controllers/katello/api/v2/gpg_keys_controller.rb:24
|
|
125
123
|
#: ../app/controllers/katello/api/v2/gpg_keys_controller.rb:39
|
|
126
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
127
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
128
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
124
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:29
|
|
125
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:38
|
|
126
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:73
|
|
129
127
|
#: ../app/controllers/katello/api/v2/repository_sets_controller.rb:21
|
|
130
128
|
#: ../app/controllers/katello/api/v2/repository_sets_controller.rb:33
|
|
131
129
|
#: ../app/controllers/katello/api/v2/repository_sets_controller.rb:42
|
|
@@ -136,13 +134,13 @@ msgstr ""
|
|
|
136
134
|
msgid "organization identifier"
|
|
137
135
|
msgstr ""
|
|
138
136
|
|
|
139
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
140
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
137
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:21
|
|
138
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:36
|
|
141
139
|
#: ../app/controllers/katello/concerns/api/v2/repository_content_controller.rb:28
|
|
142
140
|
msgid "environment identifier"
|
|
143
141
|
msgstr ""
|
|
144
142
|
|
|
145
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
143
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:22
|
|
146
144
|
#: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:13
|
|
147
145
|
#: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:35
|
|
148
146
|
#: ../app/controllers/katello/api/v2/content_view_filters_controller.rb:52
|
|
@@ -155,239 +153,239 @@ msgstr ""
|
|
|
155
153
|
msgid "content view identifier"
|
|
156
154
|
msgstr ""
|
|
157
155
|
|
|
158
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
156
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:23
|
|
159
157
|
msgid "activation key name to filter by"
|
|
160
158
|
msgstr ""
|
|
161
159
|
|
|
162
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
160
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:31
|
|
163
161
|
msgid "Create an activation key"
|
|
164
162
|
msgstr ""
|
|
165
163
|
|
|
166
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
167
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
164
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:33
|
|
165
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:61
|
|
168
166
|
msgid "name"
|
|
169
167
|
msgstr ""
|
|
170
168
|
|
|
171
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
172
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
169
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:34
|
|
170
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:62
|
|
173
171
|
msgid "description"
|
|
174
172
|
msgstr ""
|
|
175
173
|
|
|
176
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
174
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:35
|
|
177
175
|
msgid "environment"
|
|
178
176
|
msgstr ""
|
|
179
177
|
|
|
178
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:36
|
|
179
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:63
|
|
180
|
+
msgid "environment id"
|
|
181
|
+
msgstr ""
|
|
182
|
+
|
|
183
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:37
|
|
184
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:64
|
|
185
|
+
msgid "content view id"
|
|
186
|
+
msgstr ""
|
|
187
|
+
|
|
180
188
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:38
|
|
181
189
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:65
|
|
182
|
-
msgid "
|
|
190
|
+
msgid "maximum number of registered content hosts"
|
|
183
191
|
msgstr ""
|
|
184
192
|
|
|
185
193
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:39
|
|
186
194
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:66
|
|
187
|
-
msgid "
|
|
195
|
+
msgid "can the activation key have unlimited hosts"
|
|
188
196
|
msgstr ""
|
|
189
197
|
|
|
190
198
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:40
|
|
191
199
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:67
|
|
192
|
-
|
|
200
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:227
|
|
201
|
+
msgid "content release version"
|
|
193
202
|
msgstr ""
|
|
194
203
|
|
|
195
204
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:41
|
|
196
205
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:68
|
|
197
|
-
msgid "
|
|
206
|
+
msgid "service level"
|
|
198
207
|
msgstr ""
|
|
199
208
|
|
|
200
209
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:42
|
|
201
210
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:69
|
|
202
|
-
|
|
203
|
-
msgid "content release version"
|
|
211
|
+
msgid "auto attach subscriptions upon registration"
|
|
204
212
|
msgstr ""
|
|
205
213
|
|
|
206
214
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:43
|
|
207
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:70
|
|
208
|
-
msgid "service level"
|
|
209
|
-
msgstr ""
|
|
210
|
-
|
|
211
215
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:44
|
|
216
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:70
|
|
212
217
|
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:71
|
|
213
|
-
msgid "auto attach subscriptions upon registration"
|
|
214
|
-
msgstr ""
|
|
215
|
-
|
|
216
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:45
|
|
217
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:46
|
|
218
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:72
|
|
219
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:73
|
|
220
218
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:20
|
|
221
219
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:21
|
|
222
220
|
msgid "Sets the system purpose usage"
|
|
223
221
|
msgstr ""
|
|
224
222
|
|
|
225
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
226
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
223
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:45
|
|
224
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:72
|
|
227
225
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:22
|
|
226
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:255
|
|
228
227
|
msgid "Sets the system add-ons"
|
|
229
228
|
msgstr ""
|
|
230
229
|
|
|
231
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
230
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:58
|
|
232
231
|
msgid "Update an activation key"
|
|
233
232
|
msgstr ""
|
|
234
233
|
|
|
235
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
236
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
237
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
238
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
239
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
240
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
241
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
242
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
243
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
244
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
245
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
234
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:59
|
|
235
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:79
|
|
236
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:87
|
|
237
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:95
|
|
238
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:134
|
|
239
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:145
|
|
240
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:168
|
|
241
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:178
|
|
242
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:188
|
|
243
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:206
|
|
244
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:222
|
|
246
245
|
msgid "ID of the activation key"
|
|
247
246
|
msgstr ""
|
|
248
247
|
|
|
249
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
248
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:78
|
|
250
249
|
msgid "Destroy an activation key"
|
|
251
250
|
msgstr ""
|
|
252
251
|
|
|
253
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
252
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:86
|
|
254
253
|
msgid "Show an activation key"
|
|
255
254
|
msgstr ""
|
|
256
255
|
|
|
257
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
256
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:93
|
|
258
257
|
msgid "Copy an activation key"
|
|
259
258
|
msgstr ""
|
|
260
259
|
|
|
261
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
260
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:94
|
|
262
261
|
msgid "Name of new activation key"
|
|
263
262
|
msgstr ""
|
|
264
263
|
|
|
265
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
264
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:101
|
|
266
265
|
msgid "New name cannot be blank"
|
|
267
266
|
msgstr ""
|
|
268
267
|
|
|
269
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
268
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:118
|
|
270
269
|
msgid "List host collections the activation key does not belong to"
|
|
271
270
|
msgstr ""
|
|
272
271
|
|
|
273
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
274
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
272
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:120
|
|
273
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:39
|
|
275
274
|
msgid "host collection name to filter by"
|
|
276
275
|
msgstr ""
|
|
277
276
|
|
|
278
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
277
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:133
|
|
279
278
|
msgid "Show release versions available for an activation key"
|
|
280
279
|
msgstr ""
|
|
281
280
|
|
|
282
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
281
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:144
|
|
283
282
|
msgid "Show content available for an activation key"
|
|
284
283
|
msgstr ""
|
|
285
284
|
|
|
286
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
285
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:146
|
|
287
286
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:172
|
|
288
287
|
msgid "Get all content available, not just that provided by subscriptions"
|
|
289
288
|
msgstr ""
|
|
290
289
|
|
|
291
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
290
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:147
|
|
292
291
|
msgid ""
|
|
293
292
|
"Limit content to just that available in the activation key's content view vers"
|
|
294
293
|
"ion"
|
|
295
294
|
msgstr ""
|
|
296
295
|
|
|
297
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
296
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:169
|
|
298
297
|
msgid "List of host collection IDs to associate with activation key"
|
|
299
298
|
msgstr ""
|
|
300
299
|
|
|
301
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
300
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:179
|
|
302
301
|
msgid "List of host collection IDs to disassociate from the activation key"
|
|
303
302
|
msgstr ""
|
|
304
303
|
|
|
305
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
304
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:187
|
|
306
305
|
msgid "Attach a subscription"
|
|
307
306
|
msgstr ""
|
|
308
307
|
|
|
309
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
308
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:189
|
|
310
309
|
#: ../app/controllers/katello/api/v2/subscriptions_controller.rb:75
|
|
311
310
|
msgid "Subscription identifier"
|
|
312
311
|
msgstr ""
|
|
313
312
|
|
|
314
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
313
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:190
|
|
315
314
|
msgid "Quantity of this subscription to add"
|
|
316
315
|
msgstr ""
|
|
317
316
|
|
|
318
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
319
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
317
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:191
|
|
318
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:208
|
|
320
319
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:134
|
|
321
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
320
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:174
|
|
322
321
|
msgid "Array of subscriptions to add"
|
|
323
322
|
msgstr ""
|
|
324
323
|
|
|
325
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
326
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
324
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:192
|
|
325
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:209
|
|
327
326
|
msgid "Subscription Pool uuid"
|
|
328
327
|
msgstr ""
|
|
329
328
|
|
|
330
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
329
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:193
|
|
331
330
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:136
|
|
332
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
331
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:176
|
|
333
332
|
msgid "Quantity of this subscriptions to add"
|
|
334
333
|
msgstr ""
|
|
335
334
|
|
|
336
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
335
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:205
|
|
337
336
|
msgid "Unattach a subscription"
|
|
338
337
|
msgstr ""
|
|
339
338
|
|
|
340
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
339
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:207
|
|
341
340
|
msgid "Subscription ID"
|
|
342
341
|
msgstr ""
|
|
343
342
|
|
|
344
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
343
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:221
|
|
345
344
|
msgid "Override content for activation_key"
|
|
346
345
|
msgstr ""
|
|
347
346
|
|
|
348
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
347
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:223
|
|
349
348
|
msgid "Array of Content override parameters to be added in bulk"
|
|
350
349
|
msgstr ""
|
|
351
350
|
|
|
352
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
351
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:224
|
|
353
352
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:155
|
|
354
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
353
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:201
|
|
355
354
|
msgid "Label of the content"
|
|
356
355
|
msgstr ""
|
|
357
356
|
|
|
358
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
357
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:225
|
|
359
358
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:156
|
|
360
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
359
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:202
|
|
361
360
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
|
362
361
|
msgstr ""
|
|
363
362
|
|
|
364
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
363
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:226
|
|
365
364
|
msgid ""
|
|
366
365
|
"Override parameter key or name. Note if name is not provided the default name "
|
|
367
366
|
"will be 'enabled'"
|
|
368
367
|
msgstr ""
|
|
369
368
|
|
|
370
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
369
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:227
|
|
371
370
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:158
|
|
372
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
371
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:204
|
|
373
372
|
msgid "Set true to remove an override and reset it to 'default'"
|
|
374
373
|
msgstr ""
|
|
375
374
|
|
|
376
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
377
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:183
|
|
375
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:291
|
|
378
376
|
msgid "Couldn't find host collection '%s'"
|
|
379
377
|
msgstr ""
|
|
380
378
|
|
|
381
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
379
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:298
|
|
382
380
|
msgid "Either organization ID or environment ID needs to be specified"
|
|
383
381
|
msgstr ""
|
|
384
382
|
|
|
385
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
383
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:305
|
|
386
384
|
msgid "Couldn't find content view '%s'"
|
|
387
385
|
msgstr ""
|
|
388
386
|
|
|
389
|
-
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:
|
|
390
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
387
|
+
#: ../app/controllers/katello/api/v2/activation_keys_controller.rb:351
|
|
388
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:180
|
|
391
389
|
msgid ""
|
|
392
390
|
"The specified organization is in Simple Content Access mode. Attaching subscri"
|
|
393
391
|
"ptions is disabled"
|
|
@@ -531,73 +529,69 @@ msgid ""
|
|
|
531
529
|
"ture."
|
|
532
530
|
msgstr ""
|
|
533
531
|
|
|
534
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
532
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:13
|
|
535
533
|
msgid "identifier of the content credential"
|
|
536
534
|
msgstr ""
|
|
537
535
|
|
|
538
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
539
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
536
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:14
|
|
537
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:31
|
|
540
538
|
msgid "type of content"
|
|
541
539
|
msgstr ""
|
|
542
540
|
|
|
543
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
541
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:15
|
|
544
542
|
msgid "public key block in DER encoding or certificate content"
|
|
545
543
|
msgstr ""
|
|
546
544
|
|
|
547
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
545
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:28
|
|
548
546
|
msgid "List content credentials"
|
|
549
547
|
msgstr ""
|
|
550
548
|
|
|
551
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
549
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:30
|
|
552
550
|
msgid "name of the Content Credential"
|
|
553
551
|
msgstr ""
|
|
554
552
|
|
|
555
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
553
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:44
|
|
556
554
|
msgid "Create a content credential"
|
|
557
555
|
msgstr ""
|
|
558
556
|
|
|
559
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
557
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:61
|
|
560
558
|
msgid "Show a content credential"
|
|
561
559
|
msgstr ""
|
|
562
560
|
|
|
563
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
564
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
565
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
566
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
561
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:62
|
|
562
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:68
|
|
563
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:76
|
|
564
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:89
|
|
567
565
|
msgid "content credential numeric identifier"
|
|
568
566
|
msgstr ""
|
|
569
567
|
|
|
570
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
568
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:67
|
|
571
569
|
msgid "Update a content credential"
|
|
572
570
|
msgstr ""
|
|
573
571
|
|
|
574
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
572
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:75
|
|
575
573
|
msgid "Destroy a content credential"
|
|
576
574
|
msgstr ""
|
|
577
575
|
|
|
578
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
576
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:82
|
|
579
577
|
msgid "Return the content of a content credential, used directly by yum"
|
|
580
578
|
msgstr ""
|
|
581
579
|
|
|
582
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
580
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:88
|
|
583
581
|
msgid "Upload content credential contents"
|
|
584
582
|
msgstr ""
|
|
585
583
|
|
|
586
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
584
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:90
|
|
587
585
|
#: ../app/controllers/katello/api/v2/gpg_keys_controller.rb:85
|
|
588
586
|
msgid "file contents"
|
|
589
587
|
msgstr ""
|
|
590
588
|
|
|
591
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:
|
|
589
|
+
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:99
|
|
592
590
|
#: ../app/controllers/katello/api/v2/gpg_keys_controller.rb:94
|
|
593
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
591
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:387
|
|
594
592
|
msgid "No file uploaded"
|
|
595
593
|
msgstr ""
|
|
596
594
|
|
|
597
|
-
#: ../app/controllers/katello/api/v2/content_credentials_controller.rb:109
|
|
598
|
-
msgid "Couldn't find Content Credential '%s'"
|
|
599
|
-
msgstr ""
|
|
600
|
-
|
|
601
595
|
#: ../app/controllers/katello/api/v2/content_uploads_controller.rb:9
|
|
602
596
|
msgid "Create an upload request"
|
|
603
597
|
msgstr ""
|
|
@@ -616,9 +610,9 @@ msgid "Checksum of file to upload"
|
|
|
616
610
|
msgstr ""
|
|
617
611
|
|
|
618
612
|
#: ../app/controllers/katello/api/v2/content_uploads_controller.rb:13
|
|
619
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
620
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
621
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
613
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:364
|
|
614
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:375
|
|
615
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:404
|
|
622
616
|
msgid ""
|
|
623
617
|
"content type ('deb', 'docker_manifest', 'file', 'ostree', 'puppet_module', 'rp"
|
|
624
618
|
"m', 'srpm')"
|
|
@@ -630,7 +624,7 @@ msgstr ""
|
|
|
630
624
|
|
|
631
625
|
#: ../app/controllers/katello/api/v2/content_uploads_controller.rb:21
|
|
632
626
|
#: ../app/controllers/katello/api/v2/content_uploads_controller.rb:33
|
|
633
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
627
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:400
|
|
634
628
|
msgid "Repository id"
|
|
635
629
|
msgstr ""
|
|
636
630
|
|
|
@@ -920,12 +914,12 @@ msgstr ""
|
|
|
920
914
|
|
|
921
915
|
#: ../app/controllers/katello/api/v2/content_view_histories_controller.rb:8
|
|
922
916
|
#: ../app/controllers/katello/api/v2/content_view_puppet_modules_controller.rb:32
|
|
923
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
924
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
925
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
926
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
927
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
928
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
917
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:117
|
|
918
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:124
|
|
919
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:156
|
|
920
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:170
|
|
921
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:183
|
|
922
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:214
|
|
929
923
|
msgid "content view numeric identifier"
|
|
930
924
|
msgstr ""
|
|
931
925
|
|
|
@@ -991,35 +985,42 @@ msgstr ""
|
|
|
991
985
|
msgid "Remove a puppet module from the content view"
|
|
992
986
|
msgstr ""
|
|
993
987
|
|
|
994
|
-
#: ../app/controllers/katello/api/v2/
|
|
988
|
+
#: ../app/controllers/katello/api/v2/content_view_repositories_controller.rb:13
|
|
989
|
+
msgid "Content View id"
|
|
990
|
+
msgstr ""
|
|
991
|
+
|
|
995
992
|
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:16
|
|
993
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:17
|
|
996
994
|
msgid "List content view versions"
|
|
997
995
|
msgstr ""
|
|
998
996
|
|
|
999
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1000
|
-
#: ../app/controllers/katello/api/v2/
|
|
1001
|
-
#: ../app/controllers/katello/api/v2/
|
|
997
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:18
|
|
998
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:88
|
|
999
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:126
|
|
1000
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:79
|
|
1001
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:88
|
|
1002
1002
|
msgid "Content view identifier"
|
|
1003
1003
|
msgstr ""
|
|
1004
1004
|
|
|
1005
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1005
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:19
|
|
1006
1006
|
msgid "Filter versions by environment"
|
|
1007
1007
|
msgstr ""
|
|
1008
1008
|
|
|
1009
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1009
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:20
|
|
1010
1010
|
msgid "Filter versions by puppet module"
|
|
1011
1011
|
msgstr ""
|
|
1012
1012
|
|
|
1013
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1013
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:21
|
|
1014
1014
|
msgid "Filter versions by version number"
|
|
1015
1015
|
msgstr ""
|
|
1016
1016
|
|
|
1017
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1017
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:22
|
|
1018
1018
|
msgid "Filter versions that are components in the specified composite version"
|
|
1019
1019
|
msgstr ""
|
|
1020
1020
|
|
|
1021
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1022
|
-
#: ../app/controllers/katello/api/v2/
|
|
1021
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:23
|
|
1022
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:90
|
|
1023
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:64
|
|
1023
1024
|
#: ../app/controllers/katello/api/v2/errata_controller.rb:12
|
|
1024
1025
|
#: ../app/controllers/katello/api/v2/errata_controller.rb:67
|
|
1025
1026
|
#: ../app/controllers/katello/api/v2/packages_controller.rb:33
|
|
@@ -1028,389 +1029,435 @@ msgstr ""
|
|
|
1028
1029
|
msgid "Organization identifier"
|
|
1029
1030
|
msgstr ""
|
|
1030
1031
|
|
|
1031
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1032
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:24
|
|
1032
1033
|
msgid ""
|
|
1033
1034
|
"Filter composite versions whose publish was triggered by the specified compone"
|
|
1034
1035
|
"nt version"
|
|
1035
1036
|
msgstr ""
|
|
1036
1037
|
|
|
1037
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1038
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:47
|
|
1038
1039
|
msgid "Show content view version"
|
|
1039
1040
|
msgstr ""
|
|
1040
1041
|
|
|
1041
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1042
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1043
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1044
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1045
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1046
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1042
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:48
|
|
1043
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:54
|
|
1044
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:66
|
|
1045
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:80
|
|
1046
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:87
|
|
1047
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:110
|
|
1048
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:135
|
|
1047
1049
|
msgid "Content view version identifier"
|
|
1048
1050
|
msgstr ""
|
|
1049
1051
|
|
|
1050
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1052
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:53
|
|
1051
1053
|
msgid "Promote a content view version"
|
|
1052
1054
|
msgstr ""
|
|
1053
1055
|
|
|
1054
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1056
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:55
|
|
1055
1057
|
msgid "force content view promotion and bypass lifecycle environment restriction"
|
|
1056
1058
|
msgstr ""
|
|
1057
1059
|
|
|
1058
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1060
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:56
|
|
1059
1061
|
msgid "Identifiers for Lifecycle Environment"
|
|
1060
1062
|
msgstr ""
|
|
1061
1063
|
|
|
1062
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1064
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:57
|
|
1063
1065
|
msgid "The description for the content view version promotion"
|
|
1064
1066
|
msgstr ""
|
|
1065
1067
|
|
|
1066
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1068
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:65
|
|
1067
1069
|
msgid "Update a content view version"
|
|
1068
1070
|
msgstr ""
|
|
1069
1071
|
|
|
1070
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1072
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:67
|
|
1071
1073
|
msgid "The description for the content view version"
|
|
1072
1074
|
msgstr ""
|
|
1073
1075
|
|
|
1074
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1076
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:71
|
|
1075
1077
|
msgid "This content view version doesn't have a history."
|
|
1076
1078
|
msgstr ""
|
|
1077
1079
|
|
|
1078
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1080
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:79
|
|
1079
1081
|
msgid "Forces a republish of the version's repositories' metadata"
|
|
1080
1082
|
msgstr ""
|
|
1081
1083
|
|
|
1082
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1083
|
-
msgid "
|
|
1084
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:86
|
|
1085
|
+
msgid "Show the export history for a content view version"
|
|
1084
1086
|
msgstr ""
|
|
1085
1087
|
|
|
1086
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1087
|
-
|
|
1088
|
-
msgid "Export to ISO format"
|
|
1088
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:89
|
|
1089
|
+
msgid "Destination Server name"
|
|
1089
1090
|
msgstr ""
|
|
1090
1091
|
|
|
1091
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1092
|
-
|
|
1093
|
-
|
|
1092
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:103
|
|
1093
|
+
msgid ""
|
|
1094
|
+
"true if the export api is pulp3 ready and usable. This API is intended for use"
|
|
1095
|
+
" by hammer-cli only."
|
|
1094
1096
|
msgstr ""
|
|
1095
1097
|
|
|
1096
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1097
|
-
|
|
1098
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
1098
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:109
|
|
1099
|
+
msgid "Export a content view version"
|
|
1099
1100
|
msgstr ""
|
|
1100
1101
|
|
|
1101
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1102
|
-
|
|
1103
|
-
msgid "ISO export must be enabled when specifying ISO size"
|
|
1102
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:111
|
|
1103
|
+
msgid "Destination Server name, required for Pulp3"
|
|
1104
1104
|
msgstr ""
|
|
1105
1105
|
|
|
1106
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1107
|
-
msgid "
|
|
1106
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:112
|
|
1107
|
+
msgid ""
|
|
1108
|
+
"Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for P"
|
|
1109
|
+
"ulp 3 repositories"
|
|
1108
1110
|
msgstr ""
|
|
1109
1111
|
|
|
1110
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1111
|
-
|
|
1112
|
-
|
|
1112
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:113
|
|
1113
|
+
msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
|
|
1114
|
+
msgstr ""
|
|
1115
|
+
|
|
1116
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:114
|
|
1117
|
+
msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
|
|
1113
1118
|
msgstr ""
|
|
1114
1119
|
|
|
1115
1120
|
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:115
|
|
1121
|
+
msgid ""
|
|
1122
|
+
"Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pul"
|
|
1123
|
+
"p 2 repositories"
|
|
1124
|
+
msgstr ""
|
|
1125
|
+
|
|
1126
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:125
|
|
1127
|
+
msgid "Import a content view version"
|
|
1128
|
+
msgstr ""
|
|
1129
|
+
|
|
1130
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:127
|
|
1131
|
+
msgid "Directory containing the exported Content View Version"
|
|
1132
|
+
msgstr ""
|
|
1133
|
+
|
|
1134
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:128
|
|
1135
|
+
msgid "Metadata taken from the upstream export history for this Content View Version"
|
|
1136
|
+
msgstr ""
|
|
1137
|
+
|
|
1138
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:134
|
|
1116
1139
|
msgid "Remove content view version"
|
|
1117
1140
|
msgstr ""
|
|
1118
1141
|
|
|
1119
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1142
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:141
|
|
1120
1143
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
|
1121
1144
|
msgstr ""
|
|
1122
1145
|
|
|
1123
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1146
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:143
|
|
1124
1147
|
msgid ""
|
|
1125
1148
|
"Content View Version Ids to perform an incremental update on. May contain com"
|
|
1126
1149
|
"posites as well as one or more components to update."
|
|
1127
1150
|
msgstr ""
|
|
1128
1151
|
|
|
1129
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1152
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:144
|
|
1130
1153
|
msgid ""
|
|
1131
1154
|
"The list of environments to promote the specified Content View Version to (rep"
|
|
1132
1155
|
"lacing the older version)"
|
|
1133
1156
|
msgstr ""
|
|
1134
1157
|
|
|
1135
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1158
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:146
|
|
1136
1159
|
msgid "The description for the new generated Content View Versions"
|
|
1137
1160
|
msgstr ""
|
|
1138
1161
|
|
|
1139
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1162
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:147
|
|
1140
1163
|
msgid ""
|
|
1141
1164
|
"If true, when adding the specified errata or packages, any needed dependencies"
|
|
1142
1165
|
" will be copied as well. Defaults to true"
|
|
1143
1166
|
msgstr ""
|
|
1144
1167
|
|
|
1145
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1168
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:148
|
|
1146
1169
|
msgid ""
|
|
1147
1170
|
"If true, will publish a new composite version using any specified content_view"
|
|
1148
1171
|
"_version_id that has been promoted to a lifecycle environment"
|
|
1149
1172
|
msgstr ""
|
|
1150
1173
|
|
|
1151
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1174
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:155
|
|
1152
1175
|
msgid ""
|
|
1153
1176
|
"After generating the incremental update, apply the changes to the specified ho"
|
|
1154
1177
|
"sts. Only Errata are supported currently."
|
|
1155
1178
|
msgstr ""
|
|
1156
1179
|
|
|
1157
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1180
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:157
|
|
1158
1181
|
msgid "Search string for host to perform an action on"
|
|
1159
1182
|
msgstr ""
|
|
1160
1183
|
|
|
1161
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1162
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
1184
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:158
|
|
1185
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:48
|
|
1163
1186
|
msgid "List of host ids to perform an action on"
|
|
1164
1187
|
msgstr ""
|
|
1165
1188
|
|
|
1166
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1167
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
1189
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:161
|
|
1190
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:51
|
|
1168
1191
|
msgid "List of host ids to exclude and not run an action on"
|
|
1169
1192
|
msgstr ""
|
|
1170
1193
|
|
|
1171
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1194
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:166
|
|
1172
1195
|
msgid "Incremental update requires at least one content unit"
|
|
1173
1196
|
msgstr ""
|
|
1174
1197
|
|
|
1175
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1198
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:210
|
|
1176
1199
|
msgid "The default content view cannot be promoted"
|
|
1177
1200
|
msgstr ""
|
|
1178
1201
|
|
|
1179
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1202
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:219
|
|
1180
1203
|
msgid "At least one Content View Version must be specified"
|
|
1181
1204
|
msgstr ""
|
|
1182
1205
|
|
|
1183
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1206
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:230
|
|
1184
1207
|
msgid "You are not allowed to publish Content View %s"
|
|
1185
1208
|
msgstr ""
|
|
1186
1209
|
|
|
1187
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1210
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:234
|
|
1188
1211
|
msgid "You are not allowed to promote to Environments %s"
|
|
1189
1212
|
msgstr ""
|
|
1190
1213
|
|
|
1191
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1214
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:239
|
|
1192
1215
|
msgid "Could not find Environment with ids: %s"
|
|
1193
1216
|
msgstr ""
|
|
1194
1217
|
|
|
1195
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1218
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:292
|
|
1196
1219
|
msgid "Could not find %{count} errata. Only found: %{found}"
|
|
1197
1220
|
msgstr ""
|
|
1198
1221
|
|
|
1199
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1222
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:298
|
|
1200
1223
|
msgid "package_ids is not an array"
|
|
1201
1224
|
msgstr ""
|
|
1202
1225
|
|
|
1203
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1226
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:302
|
|
1204
1227
|
msgid "deb_ids is not an array"
|
|
1205
1228
|
msgstr ""
|
|
1206
1229
|
|
|
1207
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1230
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:306
|
|
1208
1231
|
msgid "puppet_module_ids is not an array"
|
|
1209
1232
|
msgstr ""
|
|
1210
1233
|
|
|
1211
|
-
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:
|
|
1234
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:315
|
|
1212
1235
|
msgid "Could not find environments for promotion"
|
|
1213
1236
|
msgstr ""
|
|
1214
1237
|
|
|
1215
|
-
#: ../app/controllers/katello/api/v2/
|
|
1216
|
-
|
|
1238
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:328
|
|
1239
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:315
|
|
1240
|
+
msgid "ISO export must be enabled when specifying ISO size"
|
|
1241
|
+
msgstr ""
|
|
1242
|
+
|
|
1243
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:332
|
|
1244
|
+
msgid "This content view has on demand repositories that cannot be exported: %{repos}"
|
|
1245
|
+
msgstr ""
|
|
1246
|
+
|
|
1247
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:339
|
|
1248
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:322
|
|
1249
|
+
msgid "Invalid date provided."
|
|
1250
|
+
msgstr ""
|
|
1251
|
+
|
|
1252
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:351
|
|
1253
|
+
msgid ""
|
|
1254
|
+
"Invalid parameters provided - %{params}. These are only relevant for Pulp 2 re"
|
|
1255
|
+
"positories"
|
|
1256
|
+
msgstr ""
|
|
1257
|
+
|
|
1258
|
+
#: ../app/controllers/katello/api/v2/content_view_versions_controller.rb:355
|
|
1259
|
+
msgid "Destination Server Name required for Pulp3 repositories"
|
|
1217
1260
|
msgstr ""
|
|
1218
1261
|
|
|
1219
1262
|
#: ../app/controllers/katello/api/v2/content_views_controller.rb:19
|
|
1263
|
+
msgid "Description for the content view"
|
|
1264
|
+
msgstr ""
|
|
1265
|
+
|
|
1266
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:20
|
|
1220
1267
|
#: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:6
|
|
1221
1268
|
#: ../app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb:45
|
|
1222
1269
|
msgid "List of repository ids"
|
|
1223
1270
|
msgstr ""
|
|
1224
1271
|
|
|
1225
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1272
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:21
|
|
1226
1273
|
msgid "List of component content view version ids for composite views"
|
|
1227
1274
|
msgstr ""
|
|
1228
1275
|
|
|
1229
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1276
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:22
|
|
1230
1277
|
msgid "Enable/Disable auto publish of composite view"
|
|
1231
1278
|
msgstr ""
|
|
1232
1279
|
|
|
1233
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1280
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:23
|
|
1234
1281
|
msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
|
|
1235
1282
|
msgstr ""
|
|
1236
1283
|
|
|
1237
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:32
|
|
1238
1284
|
#: ../app/controllers/katello/api/v2/content_views_controller.rb:33
|
|
1285
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:34
|
|
1239
1286
|
msgid "List content views"
|
|
1240
1287
|
msgstr ""
|
|
1241
1288
|
|
|
1242
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1289
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:37
|
|
1243
1290
|
msgid "Filter out default content views"
|
|
1244
1291
|
msgstr ""
|
|
1245
1292
|
|
|
1246
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1293
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:38
|
|
1247
1294
|
msgid "Filter out composite content views"
|
|
1248
1295
|
msgstr ""
|
|
1249
1296
|
|
|
1250
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1297
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:39
|
|
1251
1298
|
msgid "Filter only composite content views"
|
|
1252
1299
|
msgstr ""
|
|
1253
1300
|
|
|
1254
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1301
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:40
|
|
1255
1302
|
msgid "Do not include this array of content views"
|
|
1256
1303
|
msgstr ""
|
|
1257
1304
|
|
|
1258
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1259
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1305
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:41
|
|
1306
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:65
|
|
1260
1307
|
msgid "Name of the content view"
|
|
1261
1308
|
msgstr ""
|
|
1262
1309
|
|
|
1263
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:61
|
|
1264
1310
|
#: ../app/controllers/katello/api/v2/content_views_controller.rb:62
|
|
1311
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:63
|
|
1265
1312
|
msgid "Create a content view"
|
|
1266
1313
|
msgstr ""
|
|
1267
1314
|
|
|
1268
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1315
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:66
|
|
1269
1316
|
msgid "Content view label"
|
|
1270
1317
|
msgstr ""
|
|
1271
1318
|
|
|
1272
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1319
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:67
|
|
1273
1320
|
msgid "Composite content view"
|
|
1274
1321
|
msgstr ""
|
|
1275
1322
|
|
|
1276
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1323
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:78
|
|
1277
1324
|
msgid "Update a content view"
|
|
1278
1325
|
msgstr ""
|
|
1279
1326
|
|
|
1280
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1327
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:80
|
|
1281
1328
|
msgid "New name for the content view"
|
|
1282
1329
|
msgstr ""
|
|
1283
1330
|
|
|
1284
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1331
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:87
|
|
1285
1332
|
msgid "Publish a content view"
|
|
1286
1333
|
msgstr ""
|
|
1287
1334
|
|
|
1288
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1335
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:89
|
|
1289
1336
|
msgid "Description for the new published content view version"
|
|
1290
1337
|
msgstr ""
|
|
1291
1338
|
|
|
1292
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1339
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:90
|
|
1293
1340
|
msgid "Override the major version number"
|
|
1294
1341
|
msgstr ""
|
|
1295
1342
|
|
|
1296
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1343
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:91
|
|
1297
1344
|
msgid "Override the minor version number"
|
|
1298
1345
|
msgstr ""
|
|
1299
1346
|
|
|
1300
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1347
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:92
|
|
1301
1348
|
msgid "Specify the list of units in each repo"
|
|
1302
1349
|
msgstr ""
|
|
1303
1350
|
|
|
1304
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1351
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:93
|
|
1305
1352
|
msgid "repo label"
|
|
1306
1353
|
msgstr ""
|
|
1307
1354
|
|
|
1308
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1355
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:94
|
|
1309
1356
|
msgid "list of rpm filename strings to include in published version"
|
|
1310
1357
|
msgstr ""
|
|
1311
1358
|
|
|
1312
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1359
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:98
|
|
1313
1360
|
msgid ""
|
|
1314
1361
|
"Directly setting package lists on composite content views is not allowed. Plea"
|
|
1315
1362
|
"se update the components, then re-publish the composite."
|
|
1316
1363
|
msgstr ""
|
|
1317
1364
|
|
|
1318
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1365
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:102
|
|
1319
1366
|
msgid ""
|
|
1320
1367
|
"A CV version already exists with the same major and minor version (%{major}.%{"
|
|
1321
1368
|
"minor})"
|
|
1322
1369
|
msgstr ""
|
|
1323
1370
|
|
|
1324
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1371
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:106
|
|
1325
1372
|
msgid "Both major and minor parameters have to be used to override a CV version"
|
|
1326
1373
|
msgstr ""
|
|
1327
1374
|
|
|
1328
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1375
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:116
|
|
1329
1376
|
msgid "Show a content view"
|
|
1330
1377
|
msgstr ""
|
|
1331
1378
|
|
|
1332
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1379
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:123
|
|
1333
1380
|
msgid "Get puppet modules that are available to be added to the content view"
|
|
1334
1381
|
msgstr ""
|
|
1335
1382
|
|
|
1336
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1383
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:125
|
|
1337
1384
|
msgid "module name to restrict modules for"
|
|
1338
1385
|
msgstr ""
|
|
1339
1386
|
|
|
1340
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1387
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:155
|
|
1341
1388
|
msgid "Get puppet modules names that are available to be added to the content view"
|
|
1342
1389
|
msgstr ""
|
|
1343
1390
|
|
|
1344
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1391
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:169
|
|
1345
1392
|
msgid "Remove a content view from an environment"
|
|
1346
1393
|
msgstr ""
|
|
1347
1394
|
|
|
1348
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1395
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:171
|
|
1349
1396
|
msgid "environment numeric identifier"
|
|
1350
1397
|
msgstr ""
|
|
1351
1398
|
|
|
1352
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1399
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:174
|
|
1353
1400
|
msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
|
|
1354
1401
|
msgstr ""
|
|
1355
1402
|
|
|
1356
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1403
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:182
|
|
1357
1404
|
msgid ""
|
|
1358
1405
|
"Remove versions and/or environments from a content view and reassign systems a"
|
|
1359
1406
|
"nd keys"
|
|
1360
1407
|
msgstr ""
|
|
1361
1408
|
|
|
1362
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1409
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:184
|
|
1363
1410
|
msgid "environment numeric identifiers to be removed"
|
|
1364
1411
|
msgstr ""
|
|
1365
1412
|
|
|
1366
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1413
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:185
|
|
1367
1414
|
msgid "content view version identifiers to be deleted"
|
|
1368
1415
|
msgstr ""
|
|
1369
1416
|
|
|
1370
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1417
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:186
|
|
1371
1418
|
msgid "content view to reassign orphaned systems to"
|
|
1372
1419
|
msgstr ""
|
|
1373
1420
|
|
|
1374
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1421
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:187
|
|
1375
1422
|
msgid "environment to reassign orphaned systems to"
|
|
1376
1423
|
msgstr ""
|
|
1377
1424
|
|
|
1378
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1425
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:188
|
|
1379
1426
|
msgid "content view to reassign orphaned activation keys to"
|
|
1380
1427
|
msgstr ""
|
|
1381
1428
|
|
|
1382
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1429
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:189
|
|
1383
1430
|
msgid "environment to reassign orphaned activation keys to"
|
|
1384
1431
|
msgstr ""
|
|
1385
1432
|
|
|
1386
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1433
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:197
|
|
1387
1434
|
msgid ""
|
|
1388
1435
|
"There either were no environments nor versions specified or there were invalid"
|
|
1389
1436
|
" environments/versions specified. Please check environment_ids and content_vie"
|
|
1390
1437
|
"w_version_ids parameters."
|
|
1391
1438
|
msgstr ""
|
|
1392
1439
|
|
|
1393
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1440
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:213
|
|
1394
1441
|
msgid "Delete a content view"
|
|
1395
1442
|
msgstr ""
|
|
1396
1443
|
|
|
1397
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1444
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:220
|
|
1398
1445
|
msgid "Make copy of a content view"
|
|
1399
1446
|
msgstr ""
|
|
1400
1447
|
|
|
1401
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1448
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:221
|
|
1402
1449
|
msgid "Content view numeric identifier"
|
|
1403
1450
|
msgstr ""
|
|
1404
1451
|
|
|
1405
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1452
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:222
|
|
1406
1453
|
msgid "New content view name"
|
|
1407
1454
|
msgstr ""
|
|
1408
1455
|
|
|
1409
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1456
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:235
|
|
1410
1457
|
msgid "The default content view cannot be edited, published, or deleted."
|
|
1411
1458
|
msgstr ""
|
|
1412
1459
|
|
|
1413
|
-
#: ../app/controllers/katello/api/v2/content_views_controller.rb:
|
|
1460
|
+
#: ../app/controllers/katello/api/v2/content_views_controller.rb:258
|
|
1414
1461
|
msgid "Always Use Latest (currently %{version})"
|
|
1415
1462
|
msgstr ""
|
|
1416
1463
|
|
|
@@ -1459,7 +1506,7 @@ msgid "ID of the environment"
|
|
|
1459
1506
|
msgstr ""
|
|
1460
1507
|
|
|
1461
1508
|
#: ../app/controllers/katello/api/v2/environments_controller.rb:68
|
|
1462
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
1509
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:45
|
|
1463
1510
|
#: ../app/controllers/katello/api/v2/products_controller.rb:76
|
|
1464
1511
|
msgid "ID of the organization"
|
|
1465
1512
|
msgstr ""
|
|
@@ -1563,8 +1610,8 @@ msgstr ""
|
|
|
1563
1610
|
#: ../app/controllers/katello/api/v2/errata_controller.rb:15
|
|
1564
1611
|
#: ../app/controllers/katello/api/v2/errata_controller.rb:69
|
|
1565
1612
|
#: ../app/controllers/katello/api/v2/packages_controller.rb:36
|
|
1566
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
1567
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
1613
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:258
|
|
1614
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:309
|
|
1568
1615
|
#: ../app/controllers/katello/api/v2/srpms_controller.rb:8
|
|
1569
1616
|
msgid "Repository identifier"
|
|
1570
1617
|
msgstr ""
|
|
@@ -1655,7 +1702,7 @@ msgid "gpg key numeric identifier"
|
|
|
1655
1702
|
msgstr ""
|
|
1656
1703
|
|
|
1657
1704
|
#: ../app/controllers/katello/api/v2/gpg_keys_controller.rb:61
|
|
1658
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
1705
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:338
|
|
1659
1706
|
msgid "Update a repository"
|
|
1660
1707
|
msgstr ""
|
|
1661
1708
|
|
|
@@ -1675,125 +1722,125 @@ msgstr ""
|
|
|
1675
1722
|
msgid "Couldn't find GPG key '%s'"
|
|
1676
1723
|
msgstr ""
|
|
1677
1724
|
|
|
1678
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1725
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:22
|
|
1679
1726
|
msgid "List of host ids to replace the hosts in host collection"
|
|
1680
1727
|
msgstr ""
|
|
1681
1728
|
|
|
1682
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1729
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:23
|
|
1683
1730
|
msgid "Maximum number of hosts in the host collection"
|
|
1684
1731
|
msgstr ""
|
|
1685
1732
|
|
|
1686
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1733
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:24
|
|
1687
1734
|
msgid "Whether or not the host collection may have unlimited hosts"
|
|
1688
1735
|
msgstr ""
|
|
1689
1736
|
|
|
1690
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1737
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:27
|
|
1691
1738
|
msgid "Show a host collection"
|
|
1692
1739
|
msgstr ""
|
|
1693
1740
|
|
|
1694
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1695
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1696
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1697
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1698
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1741
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:28
|
|
1742
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:84
|
|
1743
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:93
|
|
1744
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:128
|
|
1745
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:162
|
|
1699
1746
|
msgid "Id of the host collection"
|
|
1700
1747
|
msgstr ""
|
|
1701
1748
|
|
|
1702
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1749
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:34
|
|
1703
1750
|
msgid "List host collections"
|
|
1704
1751
|
msgstr ""
|
|
1705
1752
|
|
|
1706
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1753
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:35
|
|
1707
1754
|
msgid "List host collections within an organization"
|
|
1708
1755
|
msgstr ""
|
|
1709
1756
|
|
|
1710
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1757
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:36
|
|
1711
1758
|
msgid "List host collections in an activation key"
|
|
1712
1759
|
msgstr ""
|
|
1713
1760
|
|
|
1714
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1761
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:40
|
|
1715
1762
|
msgid "activation key identifier"
|
|
1716
1763
|
msgstr ""
|
|
1717
1764
|
|
|
1718
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1765
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:41
|
|
1719
1766
|
msgid "Filter products by host id"
|
|
1720
1767
|
msgstr ""
|
|
1721
1768
|
|
|
1722
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1769
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:43
|
|
1723
1770
|
msgid ""
|
|
1724
1771
|
"Interpret specified object to return only Host Collections that can be associa"
|
|
1725
1772
|
"ted with specified object. The value 'host' is supported."
|
|
1726
1773
|
msgstr ""
|
|
1727
1774
|
|
|
1728
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1729
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1775
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:71
|
|
1776
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:72
|
|
1730
1777
|
msgid "Create a host collection"
|
|
1731
1778
|
msgstr ""
|
|
1732
1779
|
|
|
1733
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1734
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1780
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:74
|
|
1781
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:85
|
|
1735
1782
|
msgid "Host Collection name"
|
|
1736
1783
|
msgstr ""
|
|
1737
1784
|
|
|
1738
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1785
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:83
|
|
1739
1786
|
msgid "Update a host collection"
|
|
1740
1787
|
msgstr ""
|
|
1741
1788
|
|
|
1742
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1789
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:92
|
|
1743
1790
|
msgid "Add host to the host collection"
|
|
1744
1791
|
msgstr ""
|
|
1745
1792
|
|
|
1746
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1747
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1793
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:94
|
|
1794
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:129
|
|
1748
1795
|
msgid "Array of host ids"
|
|
1749
1796
|
msgstr ""
|
|
1750
1797
|
|
|
1751
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1798
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:109
|
|
1752
1799
|
msgid "Successfully added %s Host(s)."
|
|
1753
1800
|
msgstr ""
|
|
1754
1801
|
|
|
1755
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1802
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:110
|
|
1756
1803
|
msgid "You were not allowed to add %s"
|
|
1757
1804
|
msgstr ""
|
|
1758
1805
|
|
|
1759
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1806
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:116
|
|
1760
1807
|
msgid "Host with ID %s already exists in the host collection."
|
|
1761
1808
|
msgstr ""
|
|
1762
1809
|
|
|
1763
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1764
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1810
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:120
|
|
1811
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:154
|
|
1765
1812
|
msgid "Host with ID %s not found."
|
|
1766
1813
|
msgstr ""
|
|
1767
1814
|
|
|
1768
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1815
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:127
|
|
1769
1816
|
msgid "Remove hosts from the host collection"
|
|
1770
1817
|
msgstr ""
|
|
1771
1818
|
|
|
1772
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1819
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:143
|
|
1773
1820
|
msgid "Successfully removed %s Host(s)."
|
|
1774
1821
|
msgstr ""
|
|
1775
1822
|
|
|
1776
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1823
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:144
|
|
1777
1824
|
msgid "You were not allowed to sync %s"
|
|
1778
1825
|
msgstr ""
|
|
1779
1826
|
|
|
1780
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1827
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:150
|
|
1781
1828
|
msgid "Host with ID %s does not exist in the host collection."
|
|
1782
1829
|
msgstr ""
|
|
1783
1830
|
|
|
1784
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1831
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:161
|
|
1785
1832
|
msgid "Destroy a host collection"
|
|
1786
1833
|
msgstr ""
|
|
1787
1834
|
|
|
1788
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1835
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:168
|
|
1789
1836
|
msgid "Make copy of a host collection"
|
|
1790
1837
|
msgstr ""
|
|
1791
1838
|
|
|
1792
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1839
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:169
|
|
1793
1840
|
msgid "ID of the host collection"
|
|
1794
1841
|
msgstr ""
|
|
1795
1842
|
|
|
1796
|
-
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:
|
|
1843
|
+
#: ../app/controllers/katello/api/v2/host_collections_controller.rb:170
|
|
1797
1844
|
msgid "New host collection name"
|
|
1798
1845
|
msgstr ""
|
|
1799
1846
|
|
|
@@ -1813,6 +1860,7 @@ msgstr ""
|
|
|
1813
1860
|
#: ../app/controllers/katello/api/v2/host_packages_controller.rb:60
|
|
1814
1861
|
#: ../app/controllers/katello/api/v2/host_packages_controller.rb:67
|
|
1815
1862
|
#: ../app/controllers/katello/api/v2/host_tracer_controller.rb:11
|
|
1863
|
+
#: ../app/controllers/katello/api/v2/host_tracer_controller.rb:18
|
|
1816
1864
|
msgid "ID of the host"
|
|
1817
1865
|
msgstr ""
|
|
1818
1866
|
|
|
@@ -2066,14 +2114,14 @@ msgid "Content View ID"
|
|
|
2066
2114
|
msgstr ""
|
|
2067
2115
|
|
|
2068
2116
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:116
|
|
2069
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2117
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:157
|
|
2070
2118
|
msgid "Array of subscriptions to remove"
|
|
2071
2119
|
msgstr ""
|
|
2072
2120
|
|
|
2073
2121
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:117
|
|
2074
2122
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:135
|
|
2075
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2076
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2123
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:158
|
|
2124
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:175
|
|
2077
2125
|
msgid "Subscription Pool id"
|
|
2078
2126
|
msgstr ""
|
|
2079
2127
|
|
|
@@ -2106,12 +2154,12 @@ msgid "Override to a boolean value or 'default'"
|
|
|
2106
2154
|
msgstr ""
|
|
2107
2155
|
|
|
2108
2156
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:154
|
|
2109
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2157
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:200
|
|
2110
2158
|
msgid "Array of Content override parameters"
|
|
2111
2159
|
msgstr ""
|
|
2112
2160
|
|
|
2113
2161
|
#: ../app/controllers/katello/api/v2/host_subscriptions_controller.rb:157
|
|
2114
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2162
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:203
|
|
2115
2163
|
msgid ""
|
|
2116
2164
|
"Override key or name. Note if name is not provided the default name will be 'e"
|
|
2117
2165
|
"nabled'"
|
|
@@ -2153,156 +2201,181 @@ msgstr ""
|
|
|
2153
2201
|
msgid "Resolve Traces"
|
|
2154
2202
|
msgstr ""
|
|
2155
2203
|
|
|
2156
|
-
#: ../app/controllers/katello/api/v2/host_tracer_controller.rb:
|
|
2204
|
+
#: ../app/controllers/katello/api/v2/host_tracer_controller.rb:19
|
|
2205
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:242
|
|
2157
2206
|
msgid "Array of Trace IDs"
|
|
2158
2207
|
msgstr ""
|
|
2159
2208
|
|
|
2160
|
-
#: ../app/controllers/katello/api/v2/
|
|
2209
|
+
#: ../app/controllers/katello/api/v2/host_tracer_controller.rb:22
|
|
2210
|
+
msgid "The requested traces were not found for this host"
|
|
2211
|
+
msgstr ""
|
|
2212
|
+
|
|
2213
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:47
|
|
2161
2214
|
msgid "Search string for hosts to perform an action on"
|
|
2162
2215
|
msgstr ""
|
|
2163
2216
|
|
|
2164
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2217
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:56
|
|
2165
2218
|
msgid "Add one or more host collections to one or more hosts"
|
|
2166
2219
|
msgstr ""
|
|
2167
2220
|
|
|
2168
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2169
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2221
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:58
|
|
2222
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:81
|
|
2170
2223
|
msgid "List of host collection ids"
|
|
2171
2224
|
msgstr ""
|
|
2172
2225
|
|
|
2173
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2226
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:69
|
|
2174
2227
|
msgid ""
|
|
2175
2228
|
"Successfully added %{count} content host(s) to host collection %{host_collecti"
|
|
2176
2229
|
"on}."
|
|
2177
2230
|
msgstr ""
|
|
2178
2231
|
|
|
2179
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2232
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:79
|
|
2180
2233
|
msgid "Remove one or more host collections from one or more hosts"
|
|
2181
2234
|
msgstr ""
|
|
2182
2235
|
|
|
2183
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2236
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:92
|
|
2184
2237
|
msgid ""
|
|
2185
2238
|
"Successfully removed %{count} content host(s) from host collection %{host_coll"
|
|
2186
2239
|
"ection}."
|
|
2187
2240
|
msgstr ""
|
|
2188
2241
|
|
|
2189
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2242
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:102
|
|
2190
2243
|
msgid "Fetch applicable errata for one or more hosts."
|
|
2191
2244
|
msgstr ""
|
|
2192
2245
|
|
|
2193
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2246
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:110
|
|
2194
2247
|
msgid "Fetch installable errata for one or more hosts."
|
|
2195
2248
|
msgstr ""
|
|
2196
2249
|
|
|
2197
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2250
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:117
|
|
2198
2251
|
msgid "Install content on one or more hosts"
|
|
2199
2252
|
msgstr ""
|
|
2200
2253
|
|
|
2201
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2254
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:120
|
|
2202
2255
|
msgid ""
|
|
2203
2256
|
"The type of content. The following types are supported: 'package', 'package_g"
|
|
2204
2257
|
"roup' and 'errata'."
|
|
2205
2258
|
msgstr ""
|
|
2206
2259
|
|
|
2207
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2260
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:122
|
|
2208
2261
|
msgid "List of content (e.g. package names, package group names or errata ids)"
|
|
2209
2262
|
msgstr ""
|
|
2210
2263
|
|
|
2211
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2264
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:127
|
|
2212
2265
|
msgid "Update content on one or more hosts"
|
|
2213
2266
|
msgstr ""
|
|
2214
2267
|
|
|
2215
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2216
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2268
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:130
|
|
2269
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:141
|
|
2217
2270
|
msgid ""
|
|
2218
2271
|
"The type of content. The following types are supported: 'package' and 'packag"
|
|
2219
2272
|
"e_group."
|
|
2220
2273
|
msgstr ""
|
|
2221
2274
|
|
|
2222
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2223
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2275
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:132
|
|
2276
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:143
|
|
2224
2277
|
msgid "List of content (e.g. package or package group names)"
|
|
2225
2278
|
msgstr ""
|
|
2226
2279
|
|
|
2227
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2280
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:133
|
|
2228
2281
|
msgid "Updates all packages on the host(s)"
|
|
2229
2282
|
msgstr ""
|
|
2230
2283
|
|
|
2231
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2284
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:138
|
|
2232
2285
|
msgid "Remove content on one or more hosts"
|
|
2233
2286
|
msgstr ""
|
|
2234
2287
|
|
|
2235
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2288
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:148
|
|
2236
2289
|
msgid "Destroy one or more hosts"
|
|
2237
2290
|
msgstr ""
|
|
2238
2291
|
|
|
2239
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2292
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:155
|
|
2240
2293
|
msgid "Remove subscriptions from one or more hosts"
|
|
2241
2294
|
msgstr ""
|
|
2242
2295
|
|
|
2243
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2296
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:159
|
|
2244
2297
|
msgid "Quantity of specified subscription to remove"
|
|
2245
2298
|
msgstr ""
|
|
2246
2299
|
|
|
2247
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2300
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:172
|
|
2248
2301
|
msgid "Add subscriptions to one or more hosts"
|
|
2249
2302
|
msgstr ""
|
|
2250
2303
|
|
|
2251
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2304
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:191
|
|
2252
2305
|
msgid "Trigger an auto-attach of subscriptions on one or more hosts"
|
|
2253
2306
|
msgstr ""
|
|
2254
2307
|
|
|
2255
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2308
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:198
|
|
2256
2309
|
msgid "Set content overrides to one or more hosts"
|
|
2257
2310
|
msgstr ""
|
|
2258
2311
|
|
|
2259
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2312
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:216
|
|
2260
2313
|
msgid "Assign the environment and content view to one or more hosts"
|
|
2261
2314
|
msgstr ""
|
|
2262
2315
|
|
|
2263
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2316
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:225
|
|
2264
2317
|
msgid "Assign the release version to one or more hosts"
|
|
2265
2318
|
msgstr ""
|
|
2266
2319
|
|
|
2267
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2320
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:233
|
|
2268
2321
|
msgid "Fetch traces for one or more hosts"
|
|
2269
2322
|
msgstr ""
|
|
2270
2323
|
|
|
2271
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2324
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:240
|
|
2325
|
+
msgid "Resolve traces for one or more hosts"
|
|
2326
|
+
msgstr ""
|
|
2327
|
+
|
|
2328
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:250
|
|
2329
|
+
msgid "Assign system purpose attributes on one or more hosts"
|
|
2330
|
+
msgstr ""
|
|
2331
|
+
|
|
2332
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:252
|
|
2333
|
+
msgid "Service level of host"
|
|
2334
|
+
msgstr ""
|
|
2335
|
+
|
|
2336
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:253
|
|
2337
|
+
msgid "Role of host"
|
|
2338
|
+
msgstr ""
|
|
2339
|
+
|
|
2340
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:254
|
|
2341
|
+
msgid "Usage of host"
|
|
2342
|
+
msgstr ""
|
|
2343
|
+
|
|
2344
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:267
|
|
2272
2345
|
msgid ""
|
|
2273
2346
|
"Given a set of hosts and errata, lists the content view versions and environme"
|
|
2274
2347
|
"nts that need updating."
|
|
2275
2348
|
msgstr ""
|
|
2276
2349
|
|
|
2277
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2350
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:270
|
|
2278
2351
|
msgid "List of Errata ids"
|
|
2279
2352
|
msgstr ""
|
|
2280
2353
|
|
|
2281
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2354
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:296
|
|
2282
2355
|
msgid "Fetch available module streams for hosts."
|
|
2283
2356
|
msgstr ""
|
|
2284
2357
|
|
|
2285
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2358
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:313
|
|
2286
2359
|
msgid "Could not find all specified errata ids: %s"
|
|
2287
2360
|
msgstr ""
|
|
2288
2361
|
|
|
2289
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2362
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:333
|
|
2290
2363
|
msgid "Organization ID is required"
|
|
2291
2364
|
msgstr ""
|
|
2292
2365
|
|
|
2293
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2366
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:348
|
|
2294
2367
|
msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
|
2295
2368
|
msgstr ""
|
|
2296
2369
|
|
|
2297
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2370
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:371
|
|
2298
2371
|
msgid "A content_type must be provided."
|
|
2299
2372
|
msgstr ""
|
|
2300
2373
|
|
|
2301
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2374
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:372
|
|
2302
2375
|
msgid "No content has been provided."
|
|
2303
2376
|
msgstr ""
|
|
2304
2377
|
|
|
2305
|
-
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:
|
|
2378
|
+
#: ../app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb:375
|
|
2306
2379
|
msgid "Invalid content type %s"
|
|
2307
2380
|
msgstr ""
|
|
2308
2381
|
|
|
@@ -2409,7 +2482,7 @@ msgid "Update organization"
|
|
|
2409
2482
|
msgstr ""
|
|
2410
2483
|
|
|
2411
2484
|
#: ../app/controllers/katello/api/v2/organizations_controller.rb:59
|
|
2412
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
2485
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:162
|
|
2413
2486
|
msgid "Red Hat CDN URL"
|
|
2414
2487
|
msgstr ""
|
|
2415
2488
|
|
|
@@ -2424,16 +2497,16 @@ msgstr ""
|
|
|
2424
2497
|
#: ../app/controllers/katello/api/v2/organizations_controller.rb:85
|
|
2425
2498
|
#: ../app/controllers/katello/api/v2/organizations_controller.rb:92
|
|
2426
2499
|
#: ../app/controllers/katello/api/v2/products_controller.rb:90
|
|
2427
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2500
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:266
|
|
2428
2501
|
#: ../app/controllers/katello/api/v2/subscriptions_controller.rb:24
|
|
2429
2502
|
#: ../app/controllers/katello/api/v2/subscriptions_controller.rb:128
|
|
2430
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
2431
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
2432
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
2433
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
2434
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
2435
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
2436
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
2503
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:23
|
|
2504
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:43
|
|
2505
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:50
|
|
2506
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:67
|
|
2507
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:84
|
|
2508
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:91
|
|
2509
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:102
|
|
2437
2510
|
#: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:20
|
|
2438
2511
|
#: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:37
|
|
2439
2512
|
#: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:49
|
|
@@ -2631,7 +2704,8 @@ msgstr ""
|
|
|
2631
2704
|
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:7
|
|
2632
2705
|
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:26
|
|
2633
2706
|
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:54
|
|
2634
|
-
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:
|
|
2707
|
+
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:69
|
|
2708
|
+
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:82
|
|
2635
2709
|
msgid "List of product ids"
|
|
2636
2710
|
msgstr ""
|
|
2637
2711
|
|
|
@@ -2644,7 +2718,7 @@ msgid "You were not allowed to delete %s"
|
|
|
2644
2718
|
msgstr ""
|
|
2645
2719
|
|
|
2646
2720
|
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:25
|
|
2647
|
-
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:
|
|
2721
|
+
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:81
|
|
2648
2722
|
msgid "Sync one or more products"
|
|
2649
2723
|
msgstr ""
|
|
2650
2724
|
|
|
@@ -2667,28 +2741,32 @@ msgid "No syncable repositories found for selected products and options."
|
|
|
2667
2741
|
msgstr ""
|
|
2668
2742
|
|
|
2669
2743
|
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:53
|
|
2744
|
+
msgid "Verify checksum for one or more products"
|
|
2745
|
+
msgstr ""
|
|
2746
|
+
|
|
2747
|
+
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:68
|
|
2670
2748
|
msgid ""
|
|
2671
2749
|
"Update the HTTP proxy configuration on the repositories of one or more product"
|
|
2672
2750
|
"s."
|
|
2673
2751
|
msgstr ""
|
|
2674
2752
|
|
|
2675
|
-
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:
|
|
2753
|
+
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:70
|
|
2676
2754
|
msgid "policy for HTTP proxy for content sync"
|
|
2677
2755
|
msgstr ""
|
|
2678
2756
|
|
|
2679
|
-
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:
|
|
2757
|
+
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:71
|
|
2680
2758
|
msgid "HTTP Proxy identifier to associated"
|
|
2681
2759
|
msgstr ""
|
|
2682
2760
|
|
|
2683
|
-
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:
|
|
2761
|
+
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:83
|
|
2684
2762
|
msgid "Sync plan identifier to attach"
|
|
2685
2763
|
msgstr ""
|
|
2686
2764
|
|
|
2687
|
-
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:
|
|
2765
|
+
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:92
|
|
2688
2766
|
msgid "Successfully changed sync plan for %s product(s)"
|
|
2689
2767
|
msgstr ""
|
|
2690
2768
|
|
|
2691
|
-
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:
|
|
2769
|
+
#: ../app/controllers/katello/api/v2/products_bulk_actions_controller.rb:93
|
|
2692
2770
|
msgid "You were not allowed to change sync plan for %s"
|
|
2693
2771
|
msgstr ""
|
|
2694
2772
|
|
|
@@ -2859,385 +2937,402 @@ msgstr ""
|
|
|
2859
2937
|
msgid "Synchronize repository"
|
|
2860
2938
|
msgstr ""
|
|
2861
2939
|
|
|
2862
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2940
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:37
|
|
2863
2941
|
msgid "repository source url"
|
|
2864
2942
|
msgstr ""
|
|
2865
2943
|
|
|
2866
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2944
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:38
|
|
2867
2945
|
msgid "id of the gpg key that will be assigned to the new repository"
|
|
2868
2946
|
msgstr ""
|
|
2869
2947
|
|
|
2870
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2948
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:39
|
|
2871
2949
|
msgid "Identifier of the content credential containing the SSL CA Cert"
|
|
2872
2950
|
msgstr ""
|
|
2873
2951
|
|
|
2874
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2952
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:40
|
|
2875
2953
|
msgid "Identifier of the content credential containing the SSL Client Cert"
|
|
2876
2954
|
msgstr ""
|
|
2877
2955
|
|
|
2878
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2956
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:41
|
|
2879
2957
|
msgid "Identifier of the content credential containing the SSL Client Key"
|
|
2880
2958
|
msgstr ""
|
|
2881
2959
|
|
|
2882
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2960
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:42
|
|
2883
2961
|
msgid "true if this repository can be published via HTTP"
|
|
2884
2962
|
msgstr ""
|
|
2885
2963
|
|
|
2886
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2964
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:43
|
|
2887
2965
|
msgid "Checksum of the repository, currently 'sha1' & 'sha256' are supported"
|
|
2888
2966
|
msgstr ""
|
|
2889
2967
|
|
|
2890
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2968
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:44
|
|
2891
2969
|
msgid "Name of the upstream docker repository"
|
|
2892
2970
|
msgstr ""
|
|
2893
2971
|
|
|
2894
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2972
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:45
|
|
2895
2973
|
msgid "Comma separated list of tags to sync for Container Image repository"
|
|
2896
2974
|
msgstr ""
|
|
2897
2975
|
|
|
2898
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2976
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:46
|
|
2899
2977
|
msgid ""
|
|
2900
2978
|
"download policy for yum repos (either 'immediate', 'on_demand', or 'background"
|
|
2901
2979
|
" (deprecated)')"
|
|
2902
2980
|
msgstr ""
|
|
2903
2981
|
|
|
2904
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2982
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:47
|
|
2983
|
+
msgid ""
|
|
2984
|
+
"Used to determine download concurrency of the repository in pulp3. Use value l"
|
|
2985
|
+
"ess than 20. Defaults to 10"
|
|
2986
|
+
msgstr ""
|
|
2987
|
+
|
|
2988
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:48
|
|
2905
2989
|
msgid ""
|
|
2906
2990
|
"true if this repository when synced has to be mirrored from the source and sta"
|
|
2907
2991
|
"le rpms removed"
|
|
2908
2992
|
msgstr ""
|
|
2909
2993
|
|
|
2910
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2994
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:49
|
|
2911
2995
|
msgid ""
|
|
2912
2996
|
"if true, Katello will verify the upstream url's SSL certifcates are signed by "
|
|
2913
2997
|
"a trusted CA"
|
|
2914
2998
|
msgstr ""
|
|
2915
2999
|
|
|
2916
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3000
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:50
|
|
2917
3001
|
msgid "Username of the upstream repository user used for authentication"
|
|
2918
3002
|
msgstr ""
|
|
2919
3003
|
|
|
2920
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3004
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:51
|
|
2921
3005
|
msgid "Password of the upstream repository user used for authentication"
|
|
2922
3006
|
msgstr ""
|
|
2923
3007
|
|
|
2924
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3008
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:52
|
|
2925
3009
|
msgid "policies for syncing upstream ostree repositories"
|
|
2926
3010
|
msgstr ""
|
|
2927
3011
|
|
|
2928
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3012
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:53
|
|
2929
3013
|
msgid ""
|
|
2930
3014
|
"if a custom sync policy is chosen for ostree repositories then a 'depth' value"
|
|
2931
3015
|
" must be provided"
|
|
2932
3016
|
msgstr ""
|
|
2933
3017
|
|
|
2934
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3018
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:54
|
|
2935
3019
|
msgid "comma separated list of releases to be synched from deb-archive"
|
|
2936
3020
|
msgstr ""
|
|
2937
3021
|
|
|
2938
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3022
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:55
|
|
2939
3023
|
msgid "comma separated list of repo components to be synched from deb-archive"
|
|
2940
3024
|
msgstr ""
|
|
2941
3025
|
|
|
2942
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3026
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:56
|
|
2943
3027
|
msgid "comma separated list of architectures to be synched from deb-archive"
|
|
2944
3028
|
msgstr ""
|
|
2945
3029
|
|
|
2946
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3030
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:57
|
|
2947
3031
|
msgid "if true, will ignore the globally configured proxy when syncing"
|
|
2948
3032
|
msgstr ""
|
|
2949
3033
|
|
|
2950
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3034
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:58
|
|
2951
3035
|
msgid ""
|
|
2952
3036
|
"List of content units to ignore while syncing a yum repository. Must be subset"
|
|
2953
3037
|
" of %s"
|
|
2954
3038
|
msgstr ""
|
|
2955
3039
|
|
|
2956
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3040
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:59
|
|
2957
3041
|
msgid "Contents of requirement yaml file to sync from URL"
|
|
2958
3042
|
msgstr ""
|
|
2959
3043
|
|
|
2960
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3044
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:60
|
|
2961
3045
|
msgid "policies for HTTP proxy for content sync"
|
|
2962
3046
|
msgstr ""
|
|
2963
3047
|
|
|
2964
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3048
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:61
|
|
2965
3049
|
msgid "ID of a HTTP Proxy"
|
|
2966
3050
|
msgstr ""
|
|
2967
3051
|
|
|
2968
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
2969
|
-
msgid ""
|
|
2970
|
-
"if true, the repositories will be automatically enabled on a registered host s"
|
|
2971
|
-
"ubscribed to this product. Default: true"
|
|
2972
|
-
msgstr ""
|
|
2973
|
-
|
|
2974
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:65
|
|
3052
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:66
|
|
2975
3053
|
msgid "Product the repository belongs to"
|
|
2976
3054
|
msgstr ""
|
|
2977
3055
|
|
|
2978
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3056
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:67
|
|
2979
3057
|
msgid "type of repo"
|
|
2980
3058
|
msgstr ""
|
|
2981
3059
|
|
|
2982
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3060
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:70
|
|
2983
3061
|
msgid "List of enabled repositories"
|
|
2984
3062
|
msgstr ""
|
|
2985
3063
|
|
|
2986
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3064
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:71
|
|
2987
3065
|
msgid "List of repositories for a content view"
|
|
2988
3066
|
msgstr ""
|
|
2989
3067
|
|
|
2990
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3068
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:72
|
|
2991
3069
|
msgid "List of repositories in an organization"
|
|
2992
3070
|
msgstr ""
|
|
2993
3071
|
|
|
2994
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3072
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:73
|
|
2995
3073
|
msgid "List repositories in the environment"
|
|
2996
3074
|
msgstr ""
|
|
2997
3075
|
|
|
2998
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3076
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:74
|
|
2999
3077
|
msgid "List of repositories for a product"
|
|
3000
3078
|
msgstr ""
|
|
3001
3079
|
|
|
3002
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3080
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:75
|
|
3003
3081
|
msgid "List of repositories belonging to a product in an environment"
|
|
3004
3082
|
msgstr ""
|
|
3005
3083
|
|
|
3006
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3084
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:76
|
|
3007
3085
|
msgid "ID of an organization to show repositories in"
|
|
3008
3086
|
msgstr ""
|
|
3009
3087
|
|
|
3010
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3088
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:77
|
|
3011
3089
|
msgid "ID of a product to show repositories of"
|
|
3012
3090
|
msgstr ""
|
|
3013
3091
|
|
|
3014
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3092
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:78
|
|
3015
3093
|
msgid "ID of an environment to show repositories in"
|
|
3016
3094
|
msgstr ""
|
|
3017
3095
|
|
|
3018
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3096
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:79
|
|
3019
3097
|
msgid "ID of a content view to show repositories in"
|
|
3020
3098
|
msgstr ""
|
|
3021
3099
|
|
|
3022
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3100
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:80
|
|
3023
3101
|
msgid "ID of a content view version to show repositories in"
|
|
3024
3102
|
msgstr ""
|
|
3025
3103
|
|
|
3026
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3104
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:81
|
|
3027
3105
|
msgid "Id of a deb package to find repositories that contain the deb"
|
|
3028
3106
|
msgstr ""
|
|
3029
3107
|
|
|
3030
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3108
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:82
|
|
3031
3109
|
msgid "Id of an erratum to find repositories that contain the erratum"
|
|
3032
3110
|
msgstr ""
|
|
3033
3111
|
|
|
3034
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3112
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:83
|
|
3035
3113
|
msgid "Id of a rpm package to find repositories that contain the rpm"
|
|
3036
3114
|
msgstr ""
|
|
3037
3115
|
|
|
3038
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3116
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:84
|
|
3039
3117
|
msgid "Id of a file to find repositories that contain the file"
|
|
3040
3118
|
msgstr ""
|
|
3041
3119
|
|
|
3042
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3120
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:85
|
|
3043
3121
|
msgid ""
|
|
3044
3122
|
"Id of an ansible collection to find repositories that contain the ansible coll"
|
|
3045
3123
|
"ection"
|
|
3046
3124
|
msgstr ""
|
|
3047
3125
|
|
|
3048
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3126
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:86
|
|
3049
3127
|
msgid "Id of an ostree branch to find repositories that contain that branch"
|
|
3050
3128
|
msgstr ""
|
|
3051
3129
|
|
|
3052
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3130
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:87
|
|
3053
3131
|
msgid "show repositories in Library and the default content view"
|
|
3054
3132
|
msgstr ""
|
|
3055
3133
|
|
|
3056
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3134
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:88
|
|
3057
3135
|
msgid "show archived repositories"
|
|
3058
3136
|
msgstr ""
|
|
3059
3137
|
|
|
3060
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3138
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:89
|
|
3061
3139
|
msgid "limit to only repositories of this type"
|
|
3062
3140
|
msgstr ""
|
|
3063
3141
|
|
|
3064
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3142
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:90
|
|
3065
3143
|
msgid "name of the repository"
|
|
3066
3144
|
msgstr ""
|
|
3067
3145
|
|
|
3068
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3146
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:91
|
|
3069
3147
|
msgid "label of the repository"
|
|
3070
3148
|
msgstr ""
|
|
3071
3149
|
|
|
3072
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3073
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3150
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:92
|
|
3151
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:341
|
|
3074
3152
|
msgid "description of the repository"
|
|
3075
3153
|
msgstr ""
|
|
3076
3154
|
|
|
3077
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3155
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:93
|
|
3078
3156
|
msgid ""
|
|
3079
3157
|
"interpret specified object to return only Repositories that can be associated "
|
|
3080
3158
|
"with specified object. Only 'content_view' & 'content_view_version' are suppo"
|
|
3081
3159
|
"rted."
|
|
3082
3160
|
msgstr ""
|
|
3083
3161
|
|
|
3084
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3162
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:95
|
|
3085
3163
|
msgid ""
|
|
3086
3164
|
"only repositories having at least one of the specified content type ex: rpm , "
|
|
3087
3165
|
"erratum"
|
|
3088
3166
|
msgstr ""
|
|
3089
3167
|
|
|
3090
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3168
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:213
|
|
3091
3169
|
msgid "Create a custom repository"
|
|
3092
3170
|
msgstr ""
|
|
3093
3171
|
|
|
3094
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3172
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:214
|
|
3095
3173
|
msgid "Name of the repository"
|
|
3096
3174
|
msgstr ""
|
|
3097
3175
|
|
|
3098
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3176
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:215
|
|
3099
3177
|
msgid "Description of the repository"
|
|
3100
3178
|
msgstr ""
|
|
3101
3179
|
|
|
3102
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3180
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:221
|
|
3103
3181
|
msgid "Invalid params provided - content_type must be one of %s"
|
|
3104
3182
|
msgstr ""
|
|
3105
3183
|
|
|
3106
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3184
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:249
|
|
3107
3185
|
msgid "Show the available repository types"
|
|
3108
3186
|
msgstr ""
|
|
3109
3187
|
|
|
3110
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3188
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:250
|
|
3111
3189
|
msgid "When set to 'True' repository types that are creatable will be returned"
|
|
3112
3190
|
msgstr ""
|
|
3113
3191
|
|
|
3114
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3192
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:257
|
|
3115
3193
|
msgid ""
|
|
3116
3194
|
"Forces a republish of the specified repository, regenerating metadata and syml"
|
|
3117
3195
|
"inks on the filesystem."
|
|
3118
3196
|
msgstr ""
|
|
3119
3197
|
|
|
3120
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3198
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:264
|
|
3121
3199
|
msgid "Show a repository"
|
|
3122
3200
|
msgstr ""
|
|
3123
3201
|
|
|
3124
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3125
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3126
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3127
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3202
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:265
|
|
3203
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:272
|
|
3204
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:300
|
|
3205
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:339
|
|
3206
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:373
|
|
3128
3207
|
msgid "repository ID"
|
|
3129
3208
|
msgstr ""
|
|
3130
3209
|
|
|
3131
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3210
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:271
|
|
3132
3211
|
msgid "Sync a repository"
|
|
3133
3212
|
msgstr ""
|
|
3134
3213
|
|
|
3135
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3214
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:273
|
|
3136
3215
|
msgid "temporarily override feed URL for sync"
|
|
3137
3216
|
msgstr ""
|
|
3138
3217
|
|
|
3139
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3218
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:274
|
|
3140
3219
|
msgid "perform an incremental import"
|
|
3141
3220
|
msgstr ""
|
|
3142
3221
|
|
|
3143
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3222
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:275
|
|
3144
3223
|
msgid ""
|
|
3145
3224
|
"Force sync even if no upstream changes are detected. Only used with yum reposi"
|
|
3146
3225
|
"tories."
|
|
3147
3226
|
msgstr ""
|
|
3148
3227
|
|
|
3149
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3228
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:276
|
|
3150
3229
|
msgid ""
|
|
3151
3230
|
"Force a sync and validate the checksums of all content. Only used with yum rep"
|
|
3152
3231
|
"ositories."
|
|
3153
3232
|
msgstr ""
|
|
3154
3233
|
|
|
3155
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3234
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:286
|
|
3156
3235
|
msgid "source URL is malformed"
|
|
3157
3236
|
msgstr ""
|
|
3158
3237
|
|
|
3159
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3238
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:290
|
|
3160
3239
|
msgid "attempted to sync without a feed URL"
|
|
3161
3240
|
msgstr ""
|
|
3162
3241
|
|
|
3163
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3242
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:299
|
|
3243
|
+
msgid "Verify checksum of repository contents"
|
|
3244
|
+
msgstr ""
|
|
3245
|
+
|
|
3246
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:308
|
|
3164
3247
|
msgid "Export a repository"
|
|
3165
3248
|
msgstr ""
|
|
3166
3249
|
|
|
3167
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3250
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:310
|
|
3251
|
+
msgid "Export to ISO format"
|
|
3252
|
+
msgstr ""
|
|
3253
|
+
|
|
3254
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:311
|
|
3255
|
+
msgid "maximum size of each ISO in MB"
|
|
3256
|
+
msgstr ""
|
|
3257
|
+
|
|
3258
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:312
|
|
3259
|
+
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
|
3260
|
+
msgstr ""
|
|
3261
|
+
|
|
3262
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:326
|
|
3168
3263
|
msgid "Repository content type must be 'yum' to export."
|
|
3169
3264
|
msgstr ""
|
|
3170
3265
|
|
|
3171
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3266
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:328
|
|
3172
3267
|
msgid "On demand repositories cannot be exported."
|
|
3173
3268
|
msgstr ""
|
|
3174
3269
|
|
|
3175
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3270
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:350
|
|
3176
3271
|
msgid "Destroy a custom repository"
|
|
3177
3272
|
msgstr ""
|
|
3178
3273
|
|
|
3179
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3180
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3274
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:365
|
|
3275
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:403
|
|
3181
3276
|
msgid "Whether or not to sync an external capsule after upload. Default: true"
|
|
3182
3277
|
msgstr ""
|
|
3183
3278
|
|
|
3184
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3279
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:368
|
|
3185
3280
|
msgid "No content ids provided"
|
|
3186
3281
|
msgstr ""
|
|
3187
3282
|
|
|
3188
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3283
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:372
|
|
3189
3284
|
msgid "Upload content into the repository"
|
|
3190
3285
|
msgstr ""
|
|
3191
3286
|
|
|
3192
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3287
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:374
|
|
3193
3288
|
msgid "Content files to upload. Can be a single file or array of files."
|
|
3194
3289
|
msgstr ""
|
|
3195
3290
|
|
|
3196
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3291
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:377
|
|
3197
3292
|
msgid "Cannot upload Container Image content."
|
|
3198
3293
|
msgstr ""
|
|
3199
3294
|
|
|
3200
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3295
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:399
|
|
3201
3296
|
msgid "Import uploads into a repository"
|
|
3202
3297
|
msgstr ""
|
|
3203
3298
|
|
|
3204
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3299
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:401
|
|
3205
3300
|
msgid "Do not wait for the ImportUpload action to finish. Default: false"
|
|
3206
3301
|
msgstr ""
|
|
3207
3302
|
|
|
3208
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3303
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:402
|
|
3209
3304
|
msgid "Whether or not to regenerate the repository on disk. Default: true"
|
|
3210
3305
|
msgstr ""
|
|
3211
3306
|
|
|
3212
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3307
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:405
|
|
3213
3308
|
msgid "Array of uploads to import"
|
|
3214
3309
|
msgstr ""
|
|
3215
3310
|
|
|
3216
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3311
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:410
|
|
3217
3312
|
msgid "Needs to only be set for file repositories or docker tags"
|
|
3218
3313
|
msgstr ""
|
|
3219
3314
|
|
|
3220
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3315
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:411
|
|
3221
3316
|
msgid "Needs to only be set for docker tags"
|
|
3222
3317
|
msgstr ""
|
|
3223
3318
|
|
|
3224
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3319
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:418
|
|
3225
3320
|
msgid "No uploads param specified. An array of uploads to import is required."
|
|
3226
3321
|
msgstr ""
|
|
3227
3322
|
|
|
3228
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3323
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:438
|
|
3229
3324
|
msgid "Return the content of a repo gpg key, used directly by yum"
|
|
3230
3325
|
msgstr ""
|
|
3231
3326
|
|
|
3232
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3327
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:472
|
|
3233
3328
|
msgid "Couldn't find %{content_type} with id '%{id}'"
|
|
3234
3329
|
msgstr ""
|
|
3235
3330
|
|
|
3236
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3331
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:546
|
|
3237
3332
|
msgid "Red Hat products cannot be manipulated."
|
|
3238
3333
|
msgstr ""
|
|
3239
3334
|
|
|
3240
|
-
#: ../app/controllers/katello/api/v2/repositories_controller.rb:
|
|
3335
|
+
#: ../app/controllers/katello/api/v2/repositories_controller.rb:550
|
|
3241
3336
|
msgid "Red Hat repositories cannot be manipulated."
|
|
3242
3337
|
msgstr ""
|
|
3243
3338
|
|
|
@@ -3356,6 +3451,10 @@ msgstr ""
|
|
|
3356
3451
|
msgid "List an activation key's subscriptions"
|
|
3357
3452
|
msgstr ""
|
|
3358
3453
|
|
|
3454
|
+
#: ../app/controllers/katello/api/v2/subscriptions_controller.rb:22
|
|
3455
|
+
msgid "List subscriptions"
|
|
3456
|
+
msgstr ""
|
|
3457
|
+
|
|
3359
3458
|
#: ../app/controllers/katello/api/v2/subscriptions_controller.rb:25
|
|
3360
3459
|
msgid "id of a host"
|
|
3361
3460
|
msgstr ""
|
|
@@ -3456,107 +3555,103 @@ msgid ""
|
|
|
3456
3555
|
"onment.'"
|
|
3457
3556
|
msgstr ""
|
|
3458
3557
|
|
|
3459
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3558
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:13
|
|
3460
3559
|
msgid "sync plan name"
|
|
3461
3560
|
msgstr ""
|
|
3462
3561
|
|
|
3463
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3562
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:14
|
|
3464
3563
|
msgid "how often synchronization should run"
|
|
3465
3564
|
msgstr ""
|
|
3466
3565
|
|
|
3467
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3566
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:15
|
|
3468
3567
|
msgid "start datetime of synchronization"
|
|
3469
3568
|
msgstr ""
|
|
3470
3569
|
|
|
3471
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3570
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:16
|
|
3472
3571
|
msgid "sync plan description"
|
|
3473
3572
|
msgstr ""
|
|
3474
3573
|
|
|
3475
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3574
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:17
|
|
3476
3575
|
msgid "enables or disables synchronization"
|
|
3477
3576
|
msgstr ""
|
|
3478
3577
|
|
|
3479
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3578
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:18
|
|
3480
3579
|
msgid "Add custom cron logic for sync plan"
|
|
3481
3580
|
msgstr ""
|
|
3482
3581
|
|
|
3483
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3582
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:21
|
|
3484
3583
|
msgid "List sync plans"
|
|
3485
3584
|
msgstr ""
|
|
3486
3585
|
|
|
3487
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3586
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:24
|
|
3488
3587
|
msgid "filter by name"
|
|
3489
3588
|
msgstr ""
|
|
3490
3589
|
|
|
3491
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3590
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:25
|
|
3492
3591
|
msgid "filter by sync date"
|
|
3493
3592
|
msgstr ""
|
|
3494
3593
|
|
|
3495
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3594
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:26
|
|
3496
3595
|
msgid "filter by interval"
|
|
3497
3596
|
msgstr ""
|
|
3498
3597
|
|
|
3499
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3500
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3598
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:41
|
|
3599
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:42
|
|
3501
3600
|
msgid "Show a sync plan"
|
|
3502
3601
|
msgstr ""
|
|
3503
3602
|
|
|
3504
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3505
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3506
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3603
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:44
|
|
3604
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:68
|
|
3605
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:85
|
|
3507
3606
|
msgid "sync plan numeric identifier"
|
|
3508
3607
|
msgstr ""
|
|
3509
3608
|
|
|
3510
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3609
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:49
|
|
3511
3610
|
msgid "Create a sync plan"
|
|
3512
3611
|
msgstr ""
|
|
3513
3612
|
|
|
3514
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3515
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3613
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:57
|
|
3614
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:76
|
|
3516
3615
|
msgid "Date format is incorrect."
|
|
3517
3616
|
msgstr ""
|
|
3518
3617
|
|
|
3519
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3520
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3618
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:65
|
|
3619
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:66
|
|
3521
3620
|
msgid "Update a sync plan"
|
|
3522
3621
|
msgstr ""
|
|
3523
3622
|
|
|
3524
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3525
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3623
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:82
|
|
3624
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:83
|
|
3526
3625
|
msgid "Destroy a sync plan"
|
|
3527
3626
|
msgstr ""
|
|
3528
3627
|
|
|
3529
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3628
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:90
|
|
3530
3629
|
msgid "Add products to sync plan"
|
|
3531
3630
|
msgstr ""
|
|
3532
3631
|
|
|
3533
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3534
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3535
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3632
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:92
|
|
3633
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:103
|
|
3634
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:114
|
|
3536
3635
|
msgid "ID of the sync plan"
|
|
3537
3636
|
msgstr ""
|
|
3538
3637
|
|
|
3539
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3638
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:93
|
|
3540
3639
|
msgid "List of product ids to add to the sync plan"
|
|
3541
3640
|
msgstr ""
|
|
3542
3641
|
|
|
3543
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3642
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:101
|
|
3544
3643
|
msgid "Remove products from sync plan"
|
|
3545
3644
|
msgstr ""
|
|
3546
3645
|
|
|
3547
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3646
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:104
|
|
3548
3647
|
msgid "List of product ids to remove from the sync plan"
|
|
3549
3648
|
msgstr ""
|
|
3550
3649
|
|
|
3551
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3552
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:
|
|
3650
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:112
|
|
3651
|
+
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:113
|
|
3553
3652
|
msgid "Initiate a sync of the products attached to the sync plan"
|
|
3554
3653
|
msgstr ""
|
|
3555
3654
|
|
|
3556
|
-
#: ../app/controllers/katello/api/v2/sync_plans_controller.rb:122
|
|
3557
|
-
msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
|
|
3558
|
-
msgstr ""
|
|
3559
|
-
|
|
3560
3655
|
#: ../app/controllers/katello/api/v2/upstream_subscriptions_controller.rb:13
|
|
3561
3656
|
msgid "Number of results per page to return."
|
|
3562
3657
|
msgstr ""
|
|
@@ -3655,15 +3750,17 @@ msgid ""
|
|
|
3655
3750
|
"ving trouble with this, please contact an Administrator."
|
|
3656
3751
|
msgstr ""
|
|
3657
3752
|
|
|
3658
|
-
#:
|
|
3659
|
-
|
|
3753
|
+
#: ../app/controllers/katello/concerns/api/v2/authorization.rb:42
|
|
3754
|
+
msgid "Could not find %{name} resource with id %{id}"
|
|
3755
|
+
msgstr ""
|
|
3756
|
+
|
|
3757
|
+
#: ../app/controllers/katello/concerns/api/v2/authorization.rb:53
|
|
3660
3758
|
msgid ""
|
|
3661
3759
|
"One or more ids (%{ids}) were not found for %{assoc}. You may not have permis"
|
|
3662
3760
|
"sions to see them."
|
|
3663
3761
|
msgstr ""
|
|
3664
3762
|
|
|
3665
|
-
#:
|
|
3666
|
-
#: ../app/controllers/katello/concerns/api/v2/associations_permission_check.rb:35
|
|
3763
|
+
#: ../app/controllers/katello/concerns/api/v2/authorization.rb:57
|
|
3667
3764
|
msgid "Unfiltered params array: %s."
|
|
3668
3765
|
msgstr ""
|
|
3669
3766
|
|
|
@@ -3922,16 +4019,16 @@ msgstr ""
|
|
|
3922
4019
|
msgid "Operators"
|
|
3923
4020
|
msgstr ""
|
|
3924
4021
|
|
|
3925
|
-
#: ../app/controllers/katello/concerns/hosts_controller_extensions.rb:
|
|
4022
|
+
#: ../app/controllers/katello/concerns/hosts_controller_extensions.rb:28
|
|
3926
4023
|
msgid "Unregister host %s before assigning an organization"
|
|
3927
4024
|
msgstr ""
|
|
3928
4025
|
|
|
3929
|
-
#: ../app/controllers/katello/concerns/hosts_controller_extensions.rb:
|
|
4026
|
+
#: ../app/controllers/katello/concerns/hosts_controller_extensions.rb:42
|
|
3930
4027
|
msgid "Failed to delete %{host}: %{errors}"
|
|
3931
4028
|
msgstr ""
|
|
3932
4029
|
|
|
3933
4030
|
#:
|
|
3934
|
-
#: ../app/controllers/katello/concerns/organizations_controller_extensions.rb:
|
|
4031
|
+
#: ../app/controllers/katello/concerns/organizations_controller_extensions.rb:19
|
|
3935
4032
|
msgid "Organization %s is being deleted."
|
|
3936
4033
|
msgstr ""
|
|
3937
4034
|
|
|
@@ -3998,6 +4095,7 @@ msgstr ""
|
|
|
3998
4095
|
|
|
3999
4096
|
#: ../app/helpers/katello/hosts_and_hostgroups_helper.rb:255
|
|
4000
4097
|
#: ../lib/katello/plugin.rb:8 ../lib/katello/plugin.rb:264
|
|
4098
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:48
|
|
4001
4099
|
msgid "Content"
|
|
4002
4100
|
msgstr ""
|
|
4003
4101
|
|
|
@@ -4074,30 +4172,30 @@ msgstr ""
|
|
|
4074
4172
|
#: ../app/lib/actions/katello/environment/library_create.rb:24
|
|
4075
4173
|
#: ../app/lib/actions/katello/organization/create.rb:35
|
|
4076
4174
|
#: ../app/lib/actions/katello/repository/create.rb:58
|
|
4077
|
-
#: ../app/lib/actions/katello/repository/create_root.rb:17 action_names.rb:
|
|
4175
|
+
#: ../app/lib/actions/katello/repository/create_root.rb:17 action_names.rb:19
|
|
4078
4176
|
msgid "Create"
|
|
4079
4177
|
msgstr ""
|
|
4080
4178
|
|
|
4081
|
-
#: ../app/lib/actions/katello/activation_key/destroy.rb:19 action_names.rb:
|
|
4179
|
+
#: ../app/lib/actions/katello/activation_key/destroy.rb:19 action_names.rb:48
|
|
4082
4180
|
msgid "Delete Activation Key"
|
|
4083
4181
|
msgstr ""
|
|
4084
4182
|
|
|
4085
4183
|
#: ../app/lib/actions/katello/applicability/host/generate.rb:22
|
|
4086
|
-
#: action_names.rb:
|
|
4184
|
+
#: action_names.rb:47
|
|
4087
4185
|
msgid "Generate host applicability"
|
|
4088
4186
|
msgstr ""
|
|
4089
4187
|
|
|
4090
4188
|
#: ../app/lib/actions/katello/applicability/hosts/bulk_generate.rb:26
|
|
4091
|
-
#: action_names.rb:
|
|
4189
|
+
#: action_names.rb:46
|
|
4092
4190
|
msgid "Bulk generate applicability for hosts"
|
|
4093
4191
|
msgstr ""
|
|
4094
4192
|
|
|
4095
4193
|
#: ../app/lib/actions/katello/applicability/repository/regenerate.rb:25
|
|
4096
|
-
#: action_names.rb:
|
|
4194
|
+
#: action_names.rb:53
|
|
4097
4195
|
msgid "Generate repository applicability"
|
|
4098
4196
|
msgstr ""
|
|
4099
4197
|
|
|
4100
|
-
#: ../app/lib/actions/katello/capsule_content/sync.rb:14 action_names.rb:
|
|
4198
|
+
#: ../app/lib/actions/katello/capsule_content/sync.rb:14 action_names.rb:45
|
|
4101
4199
|
msgid "Synchronize smart proxy"
|
|
4102
4200
|
msgstr ""
|
|
4103
4201
|
|
|
@@ -4113,12 +4211,12 @@ msgstr ""
|
|
|
4113
4211
|
#: ../app/lib/actions/katello/content_view_puppet_environment/destroy.rb:23
|
|
4114
4212
|
#: ../app/lib/actions/katello/content_view_puppet_module/destroy.rb:41
|
|
4115
4213
|
#: ../app/lib/actions/katello/provider/destroy.rb:19
|
|
4116
|
-
#: ../app/lib/actions/katello/repository/destroy.rb:
|
|
4117
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
4118
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
4214
|
+
#: ../app/lib/actions/katello/repository/destroy.rb:67
|
|
4215
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:252
|
|
4216
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:267
|
|
4119
4217
|
#: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/DeleteDialog.js:27
|
|
4120
|
-
#: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:
|
|
4121
|
-
#: action_names.rb:
|
|
4218
|
+
#: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:90
|
|
4219
|
+
#: action_names.rb:20
|
|
4122
4220
|
msgid "Delete"
|
|
4123
4221
|
msgstr ""
|
|
4124
4222
|
|
|
@@ -4181,26 +4279,26 @@ msgstr ""
|
|
|
4181
4279
|
msgid "Cannot promote environment out of sequence. Use force to bypass restriction."
|
|
4182
4280
|
msgstr ""
|
|
4183
4281
|
|
|
4184
|
-
#: ../app/lib/actions/katello/content_view/promote_to_environment.rb:
|
|
4185
|
-
#: action_names.rb:
|
|
4282
|
+
#: ../app/lib/actions/katello/content_view/promote_to_environment.rb:43
|
|
4283
|
+
#: action_names.rb:41
|
|
4186
4284
|
msgid "Promotion to Environment"
|
|
4187
4285
|
msgstr ""
|
|
4188
4286
|
|
|
4189
|
-
#: ../app/lib/actions/katello/content_view/publish.rb:
|
|
4287
|
+
#: ../app/lib/actions/katello/content_view/publish.rb:19
|
|
4190
4288
|
msgid "Repository label '%s' is not associated with content view."
|
|
4191
4289
|
msgstr ""
|
|
4192
4290
|
|
|
4193
|
-
#: ../app/lib/actions/katello/content_view/publish.rb:
|
|
4291
|
+
#: ../app/lib/actions/katello/content_view/publish.rb:23
|
|
4194
4292
|
msgid ""
|
|
4195
4293
|
"Content view has repository label '%s' which is not specified in repos_units p"
|
|
4196
4294
|
"arameter."
|
|
4197
4295
|
msgstr ""
|
|
4198
4296
|
|
|
4199
|
-
#: ../app/lib/actions/katello/content_view/publish.rb:
|
|
4297
|
+
#: ../app/lib/actions/katello/content_view/publish.rb:99 action_names.rb:40
|
|
4200
4298
|
msgid "Publish"
|
|
4201
4299
|
msgstr ""
|
|
4202
4300
|
|
|
4203
|
-
#: ../app/lib/actions/katello/content_view/publish.rb:
|
|
4301
|
+
#: ../app/lib/actions/katello/content_view/publish.rb:104
|
|
4204
4302
|
msgid "Auto Publish - Triggered by '%s'"
|
|
4205
4303
|
msgstr ""
|
|
4206
4304
|
|
|
@@ -4208,7 +4306,7 @@ msgstr ""
|
|
|
4208
4306
|
msgid "Cannot delete version while it is in environment %s"
|
|
4209
4307
|
msgstr ""
|
|
4210
4308
|
|
|
4211
|
-
#: ../app/lib/actions/katello/content_view/remove.rb:86 action_names.rb:
|
|
4309
|
+
#: ../app/lib/actions/katello/content_view/remove.rb:86 action_names.rb:54
|
|
4212
4310
|
msgid "Remove Versions and Associations"
|
|
4213
4311
|
msgstr ""
|
|
4214
4312
|
|
|
@@ -4235,12 +4333,12 @@ msgid ""
|
|
|
4235
4333
|
msgstr ""
|
|
4236
4334
|
|
|
4237
4335
|
#: ../app/lib/actions/katello/content_view/remove_from_environment.rb:35
|
|
4238
|
-
#: action_names.rb:
|
|
4336
|
+
#: action_names.rb:39
|
|
4239
4337
|
msgid "Remove from Environment"
|
|
4240
4338
|
msgstr ""
|
|
4241
4339
|
|
|
4242
4340
|
#: ../app/lib/actions/katello/content_view/remove_version.rb:26
|
|
4243
|
-
#: action_names.rb:
|
|
4341
|
+
#: action_names.rb:55
|
|
4244
4342
|
msgid "Remove Version"
|
|
4245
4343
|
msgstr ""
|
|
4246
4344
|
|
|
@@ -4253,48 +4351,72 @@ msgid "Create Repositories"
|
|
|
4253
4351
|
msgstr ""
|
|
4254
4352
|
|
|
4255
4353
|
#: ../app/lib/actions/katello/content_view_version/export.rb:27
|
|
4256
|
-
#: ../app/lib/actions/katello/repository/export.rb:63
|
|
4354
|
+
#: ../app/lib/actions/katello/repository/export.rb:63
|
|
4355
|
+
#: ../app/lib/actions/pulp3/orchestration/content_view_version/export.rb:72
|
|
4356
|
+
#: action_names.rb:3
|
|
4257
4357
|
msgid "Export"
|
|
4258
4358
|
msgstr ""
|
|
4259
4359
|
|
|
4360
|
+
#: ../app/lib/actions/katello/content_view_version/import.rb:10
|
|
4361
|
+
msgid "This API endpoint is only valid for Pulp 3 repositories."
|
|
4362
|
+
msgstr ""
|
|
4363
|
+
|
|
4364
|
+
#: ../app/lib/actions/katello/content_view_version/import.rb:19
|
|
4365
|
+
msgid ""
|
|
4366
|
+
"Content View Version specified in the metadata - '%{name}' already exists. If "
|
|
4367
|
+
"you wish to replace the existing version, delete %{name} and try again. "
|
|
4368
|
+
msgstr ""
|
|
4369
|
+
|
|
4370
|
+
#: ../app/lib/actions/katello/content_view_version/import.rb:32
|
|
4371
|
+
#: action_names.rb:38
|
|
4372
|
+
msgid "Import Content View Version"
|
|
4373
|
+
msgstr ""
|
|
4374
|
+
|
|
4260
4375
|
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:17
|
|
4261
|
-
#: action_names.rb:
|
|
4376
|
+
#: action_names.rb:35
|
|
4262
4377
|
msgid "Incremental Update"
|
|
4263
4378
|
msgstr ""
|
|
4264
4379
|
|
|
4265
|
-
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:
|
|
4380
|
+
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:314
|
|
4266
4381
|
msgid "Content View Version %{id} not in all specified environments %{envs}"
|
|
4267
4382
|
msgstr ""
|
|
4268
4383
|
|
|
4269
|
-
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:
|
|
4384
|
+
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:321
|
|
4270
4385
|
msgid "Cannot specify content for composite views"
|
|
4271
4386
|
msgstr ""
|
|
4272
4387
|
|
|
4273
|
-
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:
|
|
4388
|
+
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:324
|
|
4274
4389
|
msgid "Cannot specify components for non-composite views"
|
|
4275
4390
|
msgstr ""
|
|
4276
4391
|
|
|
4277
|
-
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:
|
|
4392
|
+
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:332
|
|
4278
4393
|
msgid ""
|
|
4279
4394
|
"No Version of Content View %{component} already exists as a component of the c"
|
|
4280
4395
|
"omposite Content View %{composite} version %{version}"
|
|
4281
4396
|
msgstr ""
|
|
4282
4397
|
|
|
4398
|
+
#: ../app/lib/actions/katello/content_view_version/incremental_update.rb:379
|
|
4399
|
+
msgid ""
|
|
4400
|
+
"Adding multiple versions of the same Puppet Module is not supported by increme"
|
|
4401
|
+
"ntal update. The following Puppet Modules have duplicate versions in the incr"
|
|
4402
|
+
"emental update content list: %{dup_list}"
|
|
4403
|
+
msgstr ""
|
|
4404
|
+
|
|
4283
4405
|
#: ../app/lib/actions/katello/content_view_version/republish_repositories.rb:29
|
|
4284
4406
|
msgid "Republish Repositories of %{name} %{version}"
|
|
4285
4407
|
msgstr ""
|
|
4286
4408
|
|
|
4287
4409
|
#: ../app/lib/actions/katello/content_view_version/republish_repositories.rb:31
|
|
4288
|
-
#: action_names.rb:
|
|
4410
|
+
#: action_names.rb:56
|
|
4289
4411
|
msgid "Republish Version Repositories"
|
|
4290
4412
|
msgstr ""
|
|
4291
4413
|
|
|
4292
|
-
#: ../app/lib/actions/katello/environment/destroy.rb:36 action_names.rb:
|
|
4414
|
+
#: ../app/lib/actions/katello/environment/destroy.rb:36 action_names.rb:37
|
|
4293
4415
|
msgid "Delete Lifecycle Environment"
|
|
4294
4416
|
msgstr ""
|
|
4295
4417
|
|
|
4296
4418
|
#: ../app/lib/actions/katello/environment/publish_repositories.rb:33
|
|
4297
|
-
#: action_names.rb:
|
|
4419
|
+
#: action_names.rb:36
|
|
4298
4420
|
msgid "Publish Lifecycle Environment Repositories"
|
|
4299
4421
|
msgstr ""
|
|
4300
4422
|
|
|
@@ -4302,10 +4424,6 @@ msgstr ""
|
|
|
4302
4424
|
msgid "Register host '%s' before attaching subscriptions"
|
|
4303
4425
|
msgstr ""
|
|
4304
4426
|
|
|
4305
|
-
#: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
|
|
4306
|
-
msgid "Attach subscriptions to %s"
|
|
4307
|
-
msgstr ""
|
|
4308
|
-
|
|
4309
4427
|
#: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
|
|
4310
4428
|
#: ../app/lib/actions/katello/host/remove_subscriptions.rb:38
|
|
4311
4429
|
#: ../app/lib/actions/katello/host/update_content_overrides.rb:30
|
|
@@ -4316,8 +4434,12 @@ msgstr ""
|
|
|
4316
4434
|
msgid "Unknown"
|
|
4317
4435
|
msgstr ""
|
|
4318
4436
|
|
|
4437
|
+
#: ../app/lib/actions/katello/host/attach_subscriptions.rb:47
|
|
4438
|
+
msgid "Attach subscriptions to %s"
|
|
4439
|
+
msgstr ""
|
|
4440
|
+
|
|
4319
4441
|
#: ../app/lib/actions/katello/host/attach_subscriptions.rb:49
|
|
4320
|
-
#: action_names.rb:
|
|
4442
|
+
#: action_names.rb:34
|
|
4321
4443
|
msgid "Attach subscriptions"
|
|
4322
4444
|
msgstr ""
|
|
4323
4445
|
|
|
@@ -4325,7 +4447,7 @@ msgstr ""
|
|
|
4325
4447
|
msgid "Destroy Content Host %s"
|
|
4326
4448
|
msgstr ""
|
|
4327
4449
|
|
|
4328
|
-
#: ../app/lib/actions/katello/host/destroy.rb:32 action_names.rb:
|
|
4450
|
+
#: ../app/lib/actions/katello/host/destroy.rb:32 action_names.rb:33
|
|
4329
4451
|
msgid "Destroy Content Host"
|
|
4330
4452
|
msgstr ""
|
|
4331
4453
|
|
|
@@ -4338,7 +4460,7 @@ msgid "No applicable errata for %s, skipping"
|
|
|
4338
4460
|
msgstr ""
|
|
4339
4461
|
|
|
4340
4462
|
#: ../app/lib/actions/katello/host/erratum/applicable_errata_install.rb:31
|
|
4341
|
-
#: action_names.rb:
|
|
4463
|
+
#: action_names.rb:58
|
|
4342
4464
|
msgid "Install Applicable Errata"
|
|
4343
4465
|
msgstr ""
|
|
4344
4466
|
|
|
@@ -4350,7 +4472,7 @@ msgstr ""
|
|
|
4350
4472
|
msgid "Install erratum for %s"
|
|
4351
4473
|
msgstr ""
|
|
4352
4474
|
|
|
4353
|
-
#: ../app/lib/actions/katello/host/erratum/install.rb:32 action_names.rb:
|
|
4475
|
+
#: ../app/lib/actions/katello/host/erratum/install.rb:32 action_names.rb:32
|
|
4354
4476
|
msgid "Install erratum"
|
|
4355
4477
|
msgstr ""
|
|
4356
4478
|
|
|
@@ -4358,7 +4480,14 @@ msgstr ""
|
|
|
4358
4480
|
msgid "Installation of errata requested: %{errata}"
|
|
4359
4481
|
msgstr ""
|
|
4360
4482
|
|
|
4361
|
-
#: ../app/lib/actions/katello/host/hypervisors_update.rb:
|
|
4483
|
+
#: ../app/lib/actions/katello/host/hypervisors_update.rb:37
|
|
4484
|
+
msgid ""
|
|
4485
|
+
"Host creation was skipped for %s because it shares a BIOS UUID with %s. To rep"
|
|
4486
|
+
"ort this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_s"
|
|
4487
|
+
"ystem_uuid_for_matching' to 'true' in the Candlepin configuration."
|
|
4488
|
+
msgstr ""
|
|
4489
|
+
|
|
4490
|
+
#: ../app/lib/actions/katello/host/hypervisors_update.rb:124
|
|
4362
4491
|
msgid "Host '%{name}' does not belong to an organization"
|
|
4363
4492
|
msgstr ""
|
|
4364
4493
|
|
|
@@ -4366,7 +4495,7 @@ msgstr ""
|
|
|
4366
4495
|
msgid "Install package for %s"
|
|
4367
4496
|
msgstr ""
|
|
4368
4497
|
|
|
4369
|
-
#: ../app/lib/actions/katello/host/package/install.rb:23 action_names.rb:
|
|
4498
|
+
#: ../app/lib/actions/katello/host/package/install.rb:23 action_names.rb:30
|
|
4370
4499
|
msgid "Install package"
|
|
4371
4500
|
msgstr ""
|
|
4372
4501
|
|
|
@@ -4378,7 +4507,7 @@ msgstr ""
|
|
|
4378
4507
|
msgid "Remove package for %s"
|
|
4379
4508
|
msgstr ""
|
|
4380
4509
|
|
|
4381
|
-
#: ../app/lib/actions/katello/host/package/remove.rb:21 action_names.rb:
|
|
4510
|
+
#: ../app/lib/actions/katello/host/package/remove.rb:21 action_names.rb:60
|
|
4382
4511
|
msgid "Remove package"
|
|
4383
4512
|
msgstr ""
|
|
4384
4513
|
|
|
@@ -4390,7 +4519,7 @@ msgstr ""
|
|
|
4390
4519
|
msgid "Update package for %s"
|
|
4391
4520
|
msgstr ""
|
|
4392
4521
|
|
|
4393
|
-
#: ../app/lib/actions/katello/host/package/update.rb:23 action_names.rb:
|
|
4522
|
+
#: ../app/lib/actions/katello/host/package/update.rb:23 action_names.rb:29
|
|
4394
4523
|
msgid "Update package"
|
|
4395
4524
|
msgstr ""
|
|
4396
4525
|
|
|
@@ -4403,7 +4532,7 @@ msgid "Update of all packages requested"
|
|
|
4403
4532
|
msgstr ""
|
|
4404
4533
|
|
|
4405
4534
|
#: ../app/lib/actions/katello/host/package_group/install.rb:20
|
|
4406
|
-
#: action_names.rb:
|
|
4535
|
+
#: action_names.rb:61
|
|
4407
4536
|
msgid "Install package group"
|
|
4408
4537
|
msgstr ""
|
|
4409
4538
|
|
|
@@ -4412,7 +4541,7 @@ msgid "Installation of package group(s) requested: %{groups}"
|
|
|
4412
4541
|
msgstr ""
|
|
4413
4542
|
|
|
4414
4543
|
#: ../app/lib/actions/katello/host/package_group/remove.rb:18
|
|
4415
|
-
#: action_names.rb:
|
|
4544
|
+
#: action_names.rb:28
|
|
4416
4545
|
msgid "Remove package group"
|
|
4417
4546
|
msgstr ""
|
|
4418
4547
|
|
|
@@ -4429,7 +4558,7 @@ msgid "Remove subscriptions from %s"
|
|
|
4429
4558
|
msgstr ""
|
|
4430
4559
|
|
|
4431
4560
|
#: ../app/lib/actions/katello/host/remove_subscriptions.rb:40
|
|
4432
|
-
#: action_names.rb:
|
|
4561
|
+
#: action_names.rb:27
|
|
4433
4562
|
msgid "Remove subscriptions"
|
|
4434
4563
|
msgstr ""
|
|
4435
4564
|
|
|
@@ -4442,16 +4571,17 @@ msgid "Update Content Overrides to %s"
|
|
|
4442
4571
|
msgstr ""
|
|
4443
4572
|
|
|
4444
4573
|
#: ../app/lib/actions/katello/host/update_content_overrides.rb:32
|
|
4445
|
-
#: action_names.rb:
|
|
4574
|
+
#: action_names.rb:62
|
|
4446
4575
|
msgid "Update Content Overrides"
|
|
4447
4576
|
msgstr ""
|
|
4448
4577
|
|
|
4449
4578
|
#: ../app/lib/actions/katello/host/update_content_view.rb:12
|
|
4450
4579
|
#: ../app/lib/actions/katello/host/update_release_version.rb:15
|
|
4580
|
+
#: ../app/lib/actions/katello/host/update_system_purpose.rb:6
|
|
4451
4581
|
msgid "Host %s has not been registered with subscription-manager."
|
|
4452
4582
|
msgstr ""
|
|
4453
4583
|
|
|
4454
|
-
#: ../app/lib/actions/katello/host/update_content_view.rb:18 action_names.rb:
|
|
4584
|
+
#: ../app/lib/actions/katello/host/update_content_view.rb:18 action_names.rb:25
|
|
4455
4585
|
msgid "Update for host"
|
|
4456
4586
|
msgstr ""
|
|
4457
4587
|
|
|
@@ -4464,7 +4594,7 @@ msgid "Host %{name} cannot be assigned release version %{release_version}."
|
|
|
4464
4594
|
msgstr ""
|
|
4465
4595
|
|
|
4466
4596
|
#: ../app/lib/actions/katello/host/update_release_version.rb:21
|
|
4467
|
-
#: action_names.rb:
|
|
4597
|
+
#: action_names.rb:26
|
|
4468
4598
|
msgid "Update release version for host"
|
|
4469
4599
|
msgstr ""
|
|
4470
4600
|
|
|
@@ -4472,12 +4602,21 @@ msgstr ""
|
|
|
4472
4602
|
msgid "Update release version for host %s"
|
|
4473
4603
|
msgstr ""
|
|
4474
4604
|
|
|
4605
|
+
#: ../app/lib/actions/katello/host/update_system_purpose.rb:23
|
|
4606
|
+
msgid "Updating System Purpose for host %s"
|
|
4607
|
+
msgstr ""
|
|
4608
|
+
|
|
4609
|
+
#: ../app/lib/actions/katello/host/update_system_purpose.rb:25
|
|
4610
|
+
#: action_names.rb:24
|
|
4611
|
+
msgid "Updating System Purpose for host"
|
|
4612
|
+
msgstr ""
|
|
4613
|
+
|
|
4475
4614
|
#: ../app/lib/actions/katello/host/upload_package_profile.rb:20
|
|
4476
4615
|
msgid "Package Profile Update for %s"
|
|
4477
4616
|
msgstr ""
|
|
4478
4617
|
|
|
4479
4618
|
#: ../app/lib/actions/katello/host/upload_package_profile.rb:22
|
|
4480
|
-
#: action_names.rb:
|
|
4619
|
+
#: action_names.rb:63
|
|
4481
4620
|
msgid "Package Profile Update"
|
|
4482
4621
|
msgstr ""
|
|
4483
4622
|
|
|
@@ -4485,11 +4624,11 @@ msgstr ""
|
|
|
4485
4624
|
msgid "Combined Profile Update for %s"
|
|
4486
4625
|
msgstr ""
|
|
4487
4626
|
|
|
4488
|
-
#: ../app/lib/actions/katello/host/upload_profiles.rb:24 action_names.rb:
|
|
4627
|
+
#: ../app/lib/actions/katello/host/upload_profiles.rb:24 action_names.rb:64
|
|
4489
4628
|
msgid "Combined Profile Update"
|
|
4490
4629
|
msgstr ""
|
|
4491
4630
|
|
|
4492
|
-
#: ../app/lib/actions/katello/organization/destroy.rb:30 action_names.rb:
|
|
4631
|
+
#: ../app/lib/actions/katello/organization/destroy.rb:30 action_names.rb:23
|
|
4493
4632
|
msgid "Destroy"
|
|
4494
4633
|
msgstr ""
|
|
4495
4634
|
|
|
@@ -4529,25 +4668,25 @@ msgstr ""
|
|
|
4529
4668
|
msgid "Cannot delete redhat product content"
|
|
4530
4669
|
msgstr ""
|
|
4531
4670
|
|
|
4532
|
-
#: ../app/lib/actions/katello/product/create.rb:38 action_names.rb:
|
|
4671
|
+
#: ../app/lib/actions/katello/product/create.rb:38 action_names.rb:65
|
|
4533
4672
|
msgid "Product Create"
|
|
4534
4673
|
msgstr ""
|
|
4535
4674
|
|
|
4536
|
-
#: ../app/lib/actions/katello/product/destroy.rb:
|
|
4675
|
+
#: ../app/lib/actions/katello/product/destroy.rb:13
|
|
4537
4676
|
msgid "Cannot delete Red Hat product: %{product}"
|
|
4538
4677
|
msgstr ""
|
|
4539
4678
|
|
|
4540
|
-
#: ../app/lib/actions/katello/product/destroy.rb:
|
|
4679
|
+
#: ../app/lib/actions/katello/product/destroy.rb:15
|
|
4541
4680
|
msgid ""
|
|
4542
4681
|
"Cannot delete product with repositories published in a content view. Product:"
|
|
4543
4682
|
" %{product}, %{view_versions}"
|
|
4544
4683
|
msgstr ""
|
|
4545
4684
|
|
|
4546
|
-
#: ../app/lib/actions/katello/product/destroy.rb:
|
|
4685
|
+
#: ../app/lib/actions/katello/product/destroy.rb:65 action_names.rb:22
|
|
4547
4686
|
msgid "Delete Product"
|
|
4548
4687
|
msgstr ""
|
|
4549
4688
|
|
|
4550
|
-
#: ../app/lib/actions/katello/product/destroy.rb:
|
|
4689
|
+
#: ../app/lib/actions/katello/product/destroy.rb:97
|
|
4551
4690
|
msgid "Content View %{view}: Versions: %{versions}"
|
|
4552
4691
|
msgstr ""
|
|
4553
4692
|
|
|
@@ -4561,8 +4700,8 @@ msgid "Cannot delete provider with attached products"
|
|
|
4561
4700
|
msgstr ""
|
|
4562
4701
|
|
|
4563
4702
|
#: ../app/lib/actions/katello/provider/update.rb:12
|
|
4564
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
4565
|
-
#: action_names.rb:
|
|
4703
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:181
|
|
4704
|
+
#: action_names.rb:4
|
|
4566
4705
|
msgid "Update"
|
|
4567
4706
|
msgstr ""
|
|
4568
4707
|
|
|
@@ -4579,7 +4718,7 @@ msgid "Cannot publish a link repository if multiple component clones are specifi
|
|
|
4579
4718
|
msgstr ""
|
|
4580
4719
|
|
|
4581
4720
|
#: ../app/lib/actions/katello/repository/destroy_package_group.rb:21
|
|
4582
|
-
#: action_names.rb:
|
|
4721
|
+
#: action_names.rb:18
|
|
4583
4722
|
msgid "Delete Package Group"
|
|
4584
4723
|
msgstr ""
|
|
4585
4724
|
|
|
@@ -4591,12 +4730,12 @@ msgstr ""
|
|
|
4591
4730
|
|
|
4592
4731
|
#: ../app/lib/actions/katello/repository/export.rb:18
|
|
4593
4732
|
msgid ""
|
|
4594
|
-
"Unable to export
|
|
4733
|
+
"Unable to export. 'pulp_export_destination' setting is not a writable director"
|
|
4595
4734
|
"y."
|
|
4596
4735
|
msgstr ""
|
|
4597
4736
|
|
|
4598
|
-
#: ../app/lib/actions/katello/repository/import_upload.rb:
|
|
4599
|
-
#: ../app/lib/actions/katello/repository/upload_files.rb:45 action_names.rb:
|
|
4737
|
+
#: ../app/lib/actions/katello/repository/import_upload.rb:58
|
|
4738
|
+
#: ../app/lib/actions/katello/repository/upload_files.rb:45 action_names.rb:7
|
|
4600
4739
|
msgid "Upload into"
|
|
4601
4740
|
msgstr ""
|
|
4602
4741
|
|
|
@@ -4609,7 +4748,7 @@ msgid "Can only remove content from within the Default Content View"
|
|
|
4609
4748
|
msgstr ""
|
|
4610
4749
|
|
|
4611
4750
|
#: ../app/lib/actions/katello/repository/remove_content.rb:56
|
|
4612
|
-
#: action_names.rb:
|
|
4751
|
+
#: action_names.rb:70
|
|
4613
4752
|
msgid "Remove Content"
|
|
4614
4753
|
msgstr ""
|
|
4615
4754
|
|
|
@@ -4625,34 +4764,30 @@ msgstr ""
|
|
|
4625
4764
|
msgid "Cannot skip metadata check on non-yum repositories."
|
|
4626
4765
|
msgstr ""
|
|
4627
4766
|
|
|
4628
|
-
#: ../app/lib/actions/katello/repository/sync.rb:
|
|
4767
|
+
#: ../app/lib/actions/katello/repository/sync.rb:92
|
|
4629
4768
|
msgid "Synchronize: Validate Content"
|
|
4630
4769
|
msgstr ""
|
|
4631
4770
|
|
|
4632
|
-
#: ../app/lib/actions/katello/repository/sync.rb:
|
|
4771
|
+
#: ../app/lib/actions/katello/repository/sync.rb:94
|
|
4633
4772
|
msgid "Synchronize: Skip Metadata Check"
|
|
4634
4773
|
msgstr ""
|
|
4635
4774
|
|
|
4636
|
-
#: ../app/lib/actions/katello/repository/sync.rb:
|
|
4775
|
+
#: ../app/lib/actions/katello/repository/sync.rb:96 action_names.rb:71
|
|
4637
4776
|
msgid "Synchronize"
|
|
4638
4777
|
msgstr ""
|
|
4639
4778
|
|
|
4640
|
-
#: ../app/lib/actions/katello/repository/
|
|
4641
|
-
msgid "Updating repository authentication configuration"
|
|
4642
|
-
msgstr ""
|
|
4643
|
-
|
|
4644
|
-
#: ../app/lib/actions/katello/repository/upload_errata.rb:33 action_names.rb:49
|
|
4779
|
+
#: ../app/lib/actions/katello/repository/upload_errata.rb:33 action_names.rb:8
|
|
4645
4780
|
msgid "Upload errata into"
|
|
4646
4781
|
msgstr ""
|
|
4647
4782
|
|
|
4648
4783
|
#: ../app/lib/actions/katello/repository/upload_package_group.rb:28
|
|
4649
|
-
#: action_names.rb:
|
|
4784
|
+
#: action_names.rb:72
|
|
4650
4785
|
msgid "Create Package Group"
|
|
4651
4786
|
msgstr ""
|
|
4652
4787
|
|
|
4653
4788
|
#: ../app/lib/actions/katello/repository_set/disable_repository.rb:6
|
|
4654
4789
|
#: ../webpack/scenes/RedHatRepositories/components/EnabledRepository/EnabledRepositoryContent.js:10
|
|
4655
|
-
#: action_names.rb:
|
|
4790
|
+
#: action_names.rb:73
|
|
4656
4791
|
msgid "Disable"
|
|
4657
4792
|
msgstr ""
|
|
4658
4793
|
|
|
@@ -4661,7 +4796,7 @@ msgid "Repository not found"
|
|
|
4661
4796
|
msgstr ""
|
|
4662
4797
|
|
|
4663
4798
|
#: ../app/lib/actions/katello/repository_set/enable_repository.rb:6
|
|
4664
|
-
#: action_names.rb:
|
|
4799
|
+
#: action_names.rb:5
|
|
4665
4800
|
msgid "Enable"
|
|
4666
4801
|
msgstr ""
|
|
4667
4802
|
|
|
@@ -4669,7 +4804,7 @@ msgstr ""
|
|
|
4669
4804
|
msgid "The repository is already enabled"
|
|
4670
4805
|
msgstr ""
|
|
4671
4806
|
|
|
4672
|
-
#: ../app/lib/actions/katello/sync_plan/run.rb:36 action_names.rb:
|
|
4807
|
+
#: ../app/lib/actions/katello/sync_plan/run.rb:36 action_names.rb:74
|
|
4673
4808
|
msgid "Run Sync Plan:"
|
|
4674
4809
|
msgstr ""
|
|
4675
4810
|
|
|
@@ -4766,7 +4901,7 @@ msgid ""
|
|
|
4766
4901
|
msgstr ""
|
|
4767
4902
|
|
|
4768
4903
|
#: ../app/lib/actions/pulp/consumer/content_install.rb:32
|
|
4769
|
-
#: ../app/lib/actions/pulp/repository/sync.rb:
|
|
4904
|
+
#: ../app/lib/actions/pulp/repository/sync.rb:36
|
|
4770
4905
|
#: ../app/lib/actions/pulp3/repository/sync.rb:29
|
|
4771
4906
|
#: ../app/lib/actions/pulp3/repository/upload_file.rb:54
|
|
4772
4907
|
msgid ""
|
|
@@ -4775,7 +4910,7 @@ msgid ""
|
|
|
4775
4910
|
msgstr ""
|
|
4776
4911
|
|
|
4777
4912
|
#: ../app/lib/actions/pulp/consumer/destroy.rb:12
|
|
4778
|
-
#: ../app/services/katello/registration_manager.rb:
|
|
4913
|
+
#: ../app/services/katello/registration_manager.rb:266
|
|
4779
4914
|
msgid "Pulp Consumer %s has already been removed"
|
|
4780
4915
|
msgstr ""
|
|
4781
4916
|
|
|
@@ -4796,6 +4931,7 @@ msgstr ""
|
|
|
4796
4931
|
#: ../app/lib/actions/pulp/repository/presenters/puppet_presenter.rb:14
|
|
4797
4932
|
#: ../app/lib/actions/pulp/repository/presenters/yum_presenter.rb:18
|
|
4798
4933
|
#: ../app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb:14
|
|
4934
|
+
#: ../app/lib/actions/pulp3/repository/presenters/repair_presenter.rb:41
|
|
4799
4935
|
msgid "Cancelled."
|
|
4800
4936
|
msgstr ""
|
|
4801
4937
|
|
|
@@ -4882,7 +5018,25 @@ msgstr ""
|
|
|
4882
5018
|
msgid "Group %{id} already created."
|
|
4883
5019
|
msgstr ""
|
|
4884
5020
|
|
|
5021
|
+
#: ../app/lib/actions/pulp3/orchestration/content_view_version/export.rb:22
|
|
5022
|
+
msgid ""
|
|
5023
|
+
"Unable to export. 'pulpcore_export_destination' setting is not set to a valid "
|
|
5024
|
+
"directory."
|
|
5025
|
+
msgstr ""
|
|
5026
|
+
|
|
5027
|
+
#: ../app/lib/actions/pulp3/orchestration/content_view_version/import.rb:37
|
|
5028
|
+
#: action_names.rb:2
|
|
5029
|
+
msgid "Import"
|
|
5030
|
+
msgstr ""
|
|
5031
|
+
|
|
5032
|
+
#:
|
|
5033
|
+
#: ../app/lib/actions/pulp3/orchestration/repository/trigger_update_repo_cert_guard.rb:16
|
|
5034
|
+
#: ../app/lib/actions/pulp3/repository/update_cv_repository_cert_guard.rb:14
|
|
5035
|
+
msgid "Updating repository authentication configuration"
|
|
5036
|
+
msgstr ""
|
|
5037
|
+
|
|
4885
5038
|
#: ../app/lib/actions/pulp3/repository/presenters/content_unit_presenter.rb:15
|
|
5039
|
+
#: ../app/lib/actions/pulp3/repository/presenters/repair_presenter.rb:42
|
|
4886
5040
|
msgid "Total steps: "
|
|
4887
5041
|
msgstr ""
|
|
4888
5042
|
|
|
@@ -4964,15 +5118,15 @@ msgstr ""
|
|
|
4964
5118
|
msgid "Current organization not set."
|
|
4965
5119
|
msgstr ""
|
|
4966
5120
|
|
|
4967
|
-
#: ../app/lib/katello/resources/cdn.rb:
|
|
5121
|
+
#: ../app/lib/katello/resources/cdn.rb:120
|
|
4968
5122
|
msgid "CDN loading error: %s not found"
|
|
4969
5123
|
msgstr ""
|
|
4970
5124
|
|
|
4971
|
-
#: ../app/lib/katello/resources/cdn.rb:
|
|
5125
|
+
#: ../app/lib/katello/resources/cdn.rb:122
|
|
4972
5126
|
msgid "CDN loading error: access denied to %s"
|
|
4973
5127
|
msgstr ""
|
|
4974
5128
|
|
|
4975
|
-
#: ../app/lib/katello/resources/cdn.rb:
|
|
5129
|
+
#: ../app/lib/katello/resources/cdn.rb:124
|
|
4976
5130
|
msgid "CDN loading error: access forbidden to %s"
|
|
4977
5131
|
msgstr ""
|
|
4978
5132
|
|
|
@@ -5869,28 +6023,28 @@ msgstr ""
|
|
|
5869
6023
|
|
|
5870
6024
|
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:58
|
|
5871
6025
|
#: ../app/models/katello/content_view_erratum_filter_rule.rb:26
|
|
5872
|
-
#: ../app/models/katello/root_repository.rb:
|
|
5873
|
-
#: ../app/models/katello/root_repository.rb:
|
|
5874
|
-
#: ../app/models/katello/root_repository.rb:
|
|
6026
|
+
#: ../app/models/katello/root_repository.rb:78
|
|
6027
|
+
#: ../app/models/katello/root_repository.rb:82
|
|
6028
|
+
#: ../app/models/katello/root_repository.rb:86
|
|
5875
6029
|
msgid "must be one of the following: %s"
|
|
5876
6030
|
msgstr ""
|
|
5877
6031
|
|
|
5878
|
-
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:
|
|
6032
|
+
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:78
|
|
5879
6033
|
msgid "Could not find a smart proxy with pulp feature."
|
|
5880
6034
|
msgstr ""
|
|
5881
6035
|
|
|
5882
|
-
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:
|
|
6036
|
+
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:291
|
|
5883
6037
|
msgid "Could not remove the lifecycle environment from the smart proxy"
|
|
5884
6038
|
msgstr ""
|
|
5885
6039
|
|
|
5886
|
-
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:
|
|
6040
|
+
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:294
|
|
5887
6041
|
msgid ""
|
|
5888
6042
|
"Lifecycle environment was not attached to the smart proxy; therefore, no chang"
|
|
5889
6043
|
"es were made."
|
|
5890
6044
|
msgstr ""
|
|
5891
6045
|
|
|
5892
|
-
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:
|
|
5893
|
-
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:
|
|
6046
|
+
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:332
|
|
6047
|
+
#: ../app/models/katello/concerns/smart_proxy_extensions.rb:338
|
|
5894
6048
|
msgid "%s is unreachable. %s"
|
|
5895
6049
|
msgstr ""
|
|
5896
6050
|
|
|
@@ -5924,20 +6078,25 @@ msgid "Container Image repo '%{repo}' is present in multiple component content v
|
|
|
5924
6078
|
msgstr ""
|
|
5925
6079
|
|
|
5926
6080
|
#: ../app/models/katello/content_view.rb:583
|
|
6081
|
+
#: ../app/models/katello/content_view.rb:589
|
|
5927
6082
|
msgid "User must be logged in."
|
|
5928
6083
|
msgstr ""
|
|
5929
6084
|
|
|
5930
6085
|
#: ../app/models/katello/content_view.rb:584
|
|
6086
|
+
msgid "Cannot import a composite content view"
|
|
6087
|
+
msgstr ""
|
|
6088
|
+
|
|
6089
|
+
#: ../app/models/katello/content_view.rb:590
|
|
5931
6090
|
msgid "Cannot publish default content view"
|
|
5932
6091
|
msgstr ""
|
|
5933
6092
|
|
|
5934
|
-
#: ../app/models/katello/content_view.rb:
|
|
6093
|
+
#: ../app/models/katello/content_view.rb:606
|
|
5935
6094
|
msgid ""
|
|
5936
6095
|
"Consider changing the Lifecycle Environment's Registry Name Pattern to somethi"
|
|
5937
6096
|
"ng more specific."
|
|
5938
6097
|
msgstr ""
|
|
5939
6098
|
|
|
5940
|
-
#: ../app/models/katello/content_view.rb:
|
|
6099
|
+
#: ../app/models/katello/content_view.rb:616
|
|
5941
6100
|
msgid ""
|
|
5942
6101
|
"Make sure all the component content views are published before publishing/prom"
|
|
5943
6102
|
"oting the composite content view. This restriction is optional and can be modi"
|
|
@@ -5945,7 +6104,7 @@ msgid ""
|
|
|
5945
6104
|
"site_view flag."
|
|
5946
6105
|
msgstr ""
|
|
5947
6106
|
|
|
5948
|
-
#: ../app/models/katello/content_view.rb:
|
|
6107
|
+
#: ../app/models/katello/content_view.rb:626
|
|
5949
6108
|
msgid ""
|
|
5950
6109
|
"The action requested on this composite view cannot be performed until all of t"
|
|
5951
6110
|
"he component content view versions have been promoted to the target environmen"
|
|
@@ -5953,39 +6112,39 @@ msgid ""
|
|
|
5953
6112
|
"tor -> Settings -> Content page using the restrict_composite_view flag."
|
|
5954
6113
|
msgstr ""
|
|
5955
6114
|
|
|
5956
|
-
#: ../app/models/katello/content_view.rb:
|
|
5957
|
-
#: ../app/models/katello/content_view.rb:
|
|
6115
|
+
#: ../app/models/katello/content_view.rb:640
|
|
6116
|
+
#: ../app/models/katello/content_view.rb:659
|
|
5958
6117
|
msgid "hosts"
|
|
5959
6118
|
msgstr ""
|
|
5960
6119
|
|
|
5961
|
-
#: ../app/models/katello/content_view.rb:
|
|
5962
|
-
#: ../app/models/katello/content_view.rb:
|
|
6120
|
+
#: ../app/models/katello/content_view.rb:641
|
|
6121
|
+
#: ../app/models/katello/content_view.rb:660
|
|
5963
6122
|
msgid "activation keys"
|
|
5964
6123
|
msgstr ""
|
|
5965
6124
|
|
|
5966
|
-
#: ../app/models/katello/content_view.rb:
|
|
6125
|
+
#: ../app/models/katello/content_view.rb:646
|
|
5967
6126
|
msgid ""
|
|
5968
6127
|
"Cannot remove '%{view}' from environment '%{env}' due to associated %{dependen"
|
|
5969
6128
|
"t}: %{names}."
|
|
5970
6129
|
msgstr ""
|
|
5971
6130
|
|
|
5972
|
-
#: ../app/models/katello/content_view.rb:
|
|
6131
|
+
#: ../app/models/katello/content_view.rb:658
|
|
5973
6132
|
msgid "environments"
|
|
5974
6133
|
msgstr ""
|
|
5975
6134
|
|
|
5976
|
-
#: ../app/models/katello/content_view.rb:
|
|
6135
|
+
#: ../app/models/katello/content_view.rb:665
|
|
5977
6136
|
msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
|
|
5978
6137
|
msgstr ""
|
|
5979
6138
|
|
|
5980
|
-
#: ../app/models/katello/content_view.rb:
|
|
6139
|
+
#: ../app/models/katello/content_view.rb:675
|
|
5981
6140
|
#: ../app/views/dashboard/_content_views_widget.html.erb:2
|
|
5982
6141
|
#: ../lib/katello/plugin.rb:76 ../lib/katello/plugin.rb:217
|
|
5983
6142
|
#: ../webpack/containers/Application/config.js:57
|
|
5984
|
-
#: ../webpack/scenes/ContentViews/ContentViewsPage.js:
|
|
6143
|
+
#: ../webpack/scenes/ContentViews/ContentViewsPage.js:19
|
|
5985
6144
|
msgid "Content Views"
|
|
5986
6145
|
msgstr ""
|
|
5987
6146
|
|
|
5988
|
-
#: ../app/models/katello/content_view.rb:
|
|
6147
|
+
#: ../app/models/katello/content_view.rb:720
|
|
5989
6148
|
msgid "cannot be deleted if it has been promoted."
|
|
5990
6149
|
msgstr ""
|
|
5991
6150
|
|
|
@@ -6152,20 +6311,20 @@ msgstr ""
|
|
|
6152
6311
|
msgid "Repositories from published Content Views are not allowed."
|
|
6153
6312
|
msgstr ""
|
|
6154
6313
|
|
|
6155
|
-
#: ../app/models/katello/content_view_version.rb:
|
|
6314
|
+
#: ../app/models/katello/content_view_version.rb:52
|
|
6156
6315
|
msgid ", must be unique to major and version id version."
|
|
6157
6316
|
msgstr ""
|
|
6158
6317
|
|
|
6159
|
-
#: ../app/models/katello/content_view_version.rb:
|
|
6318
|
+
#: ../app/models/katello/content_view_version.rb:333
|
|
6160
6319
|
msgid "Default content view versions cannot be promoted"
|
|
6161
6320
|
msgstr ""
|
|
6162
6321
|
|
|
6163
|
-
#: ../app/models/katello/content_view_version.rb:
|
|
6322
|
+
#: ../app/models/katello/content_view_version.rb:341
|
|
6164
6323
|
msgid "Cannot delete version while it is in environments: %s"
|
|
6165
6324
|
msgstr ""
|
|
6166
6325
|
|
|
6167
|
-
#: ../app/models/katello/content_view_version.rb:
|
|
6168
|
-
#: ../app/models/katello/content_view_version.rb:
|
|
6326
|
+
#: ../app/models/katello/content_view_version.rb:346
|
|
6327
|
+
#: ../app/models/katello/content_view_version.rb:354
|
|
6169
6328
|
msgid "Cannot delete version while it is in use by composite content views: %s"
|
|
6170
6329
|
msgstr ""
|
|
6171
6330
|
|
|
@@ -6173,33 +6332,31 @@ msgstr ""
|
|
|
6173
6332
|
msgid "Cannot add composite versions to another composite content view"
|
|
6174
6333
|
msgstr ""
|
|
6175
6334
|
|
|
6176
|
-
#: ../app/models/katello/errata_status.rb:
|
|
6335
|
+
#: ../app/models/katello/errata_status.rb:27
|
|
6177
6336
|
msgid "Security errata installable"
|
|
6178
6337
|
msgstr ""
|
|
6179
6338
|
|
|
6180
|
-
#: ../app/models/katello/errata_status.rb:
|
|
6339
|
+
#: ../app/models/katello/errata_status.rb:27
|
|
6181
6340
|
msgid "Security errata applicable"
|
|
6182
6341
|
msgstr ""
|
|
6183
6342
|
|
|
6184
|
-
#: ../app/models/katello/errata_status.rb:
|
|
6343
|
+
#: ../app/models/katello/errata_status.rb:29
|
|
6185
6344
|
msgid "Non-security errata installable"
|
|
6186
6345
|
msgstr ""
|
|
6187
6346
|
|
|
6188
|
-
#: ../app/models/katello/errata_status.rb:
|
|
6347
|
+
#: ../app/models/katello/errata_status.rb:29
|
|
6189
6348
|
msgid "Non-security errata applicable"
|
|
6190
6349
|
msgstr ""
|
|
6191
6350
|
|
|
6192
|
-
#: ../app/models/katello/errata_status.rb:
|
|
6351
|
+
#: ../app/models/katello/errata_status.rb:31
|
|
6193
6352
|
msgid "All errata applied"
|
|
6194
6353
|
msgstr ""
|
|
6195
6354
|
|
|
6196
|
-
#: ../app/models/katello/errata_status.rb:
|
|
6197
|
-
msgid ""
|
|
6198
|
-
"Could not calculate errata status, ensure host is registered and the katello-h"
|
|
6199
|
-
"ost-tools package is installed"
|
|
6355
|
+
#: ../app/models/katello/errata_status.rb:33
|
|
6356
|
+
msgid "No installed packages and/or enabled repositories have been reported by %s."
|
|
6200
6357
|
msgstr ""
|
|
6201
6358
|
|
|
6202
|
-
#: ../app/models/katello/errata_status.rb:
|
|
6359
|
+
#: ../app/models/katello/errata_status.rb:35
|
|
6203
6360
|
msgid "Unknown errata status"
|
|
6204
6361
|
msgstr ""
|
|
6205
6362
|
|
|
@@ -6231,8 +6388,8 @@ msgstr ""
|
|
|
6231
6388
|
msgid "must be %{gpg_key} or %{cert}"
|
|
6232
6389
|
msgstr ""
|
|
6233
6390
|
|
|
6234
|
-
#: ../app/models/katello/gpg_key.rb:49
|
|
6235
|
-
msgid "
|
|
6391
|
+
#: ../app/models/katello/gpg_key.rb:49 ../lib/katello/plugin.rb:39
|
|
6392
|
+
msgid "Content Credentials"
|
|
6236
6393
|
msgstr ""
|
|
6237
6394
|
|
|
6238
6395
|
#: ../app/models/katello/host/subscription_facet.rb:241
|
|
@@ -6308,43 +6465,43 @@ msgstr ""
|
|
|
6308
6465
|
msgid "Lifecycle Environment"
|
|
6309
6466
|
msgstr ""
|
|
6310
6467
|
|
|
6311
|
-
#: ../app/models/katello/ping.rb:
|
|
6468
|
+
#: ../app/models/katello/ping.rb:57
|
|
6312
6469
|
msgid "Not running"
|
|
6313
6470
|
msgstr ""
|
|
6314
6471
|
|
|
6315
|
-
#: ../app/models/katello/ping.rb:
|
|
6472
|
+
#: ../app/models/katello/ping.rb:100
|
|
6316
6473
|
msgid "Skipped pulp_auth check after failed pulp check"
|
|
6317
6474
|
msgstr ""
|
|
6318
6475
|
|
|
6319
|
-
#: ../app/models/katello/ping.rb:
|
|
6476
|
+
#: ../app/models/katello/ping.rb:118
|
|
6320
6477
|
msgid "foreman-tasks service not running or is not ready yet"
|
|
6321
6478
|
msgstr ""
|
|
6322
6479
|
|
|
6323
|
-
#: ../app/models/katello/ping.rb:
|
|
6480
|
+
#: ../app/models/katello/ping.rb:124
|
|
6324
6481
|
msgid "some executors are not responding, check %{status_url}"
|
|
6325
6482
|
msgstr ""
|
|
6326
6483
|
|
|
6327
|
-
#: ../app/models/katello/ping.rb:
|
|
6484
|
+
#: ../app/models/katello/ping.rb:131
|
|
6328
6485
|
msgid "Candlepin is not running properly"
|
|
6329
6486
|
msgstr ""
|
|
6330
6487
|
|
|
6331
|
-
#: ../app/models/katello/ping.rb:
|
|
6488
|
+
#: ../app/models/katello/ping.rb:169 ../app/models/katello/ping.rb:188
|
|
6332
6489
|
msgid "Pulp does not appear to be running at %s."
|
|
6333
6490
|
msgstr ""
|
|
6334
6491
|
|
|
6335
|
-
#: ../app/models/katello/ping.rb:
|
|
6492
|
+
#: ../app/models/katello/ping.rb:172 ../app/models/katello/ping.rb:191
|
|
6336
6493
|
msgid "Pulp database connection issue at %s."
|
|
6337
6494
|
msgstr ""
|
|
6338
6495
|
|
|
6339
|
-
#: ../app/models/katello/ping.rb:
|
|
6496
|
+
#: ../app/models/katello/ping.rb:176
|
|
6340
6497
|
msgid "Pulp message bus connection issue at %s."
|
|
6341
6498
|
msgstr ""
|
|
6342
6499
|
|
|
6343
|
-
#: ../app/models/katello/ping.rb:
|
|
6500
|
+
#: ../app/models/katello/ping.rb:180 ../app/models/katello/ping.rb:202
|
|
6344
6501
|
msgid "Not all necessary pulp workers running at %s."
|
|
6345
6502
|
msgstr ""
|
|
6346
6503
|
|
|
6347
|
-
#: ../app/models/katello/ping.rb:
|
|
6504
|
+
#: ../app/models/katello/ping.rb:195
|
|
6348
6505
|
msgid "Pulp redis connection issue at %s."
|
|
6349
6506
|
msgstr ""
|
|
6350
6507
|
|
|
@@ -6443,18 +6600,18 @@ msgstr ""
|
|
|
6443
6600
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
|
6444
6601
|
msgstr ""
|
|
6445
6602
|
|
|
6446
|
-
#: ../app/models/katello/repository.rb:
|
|
6603
|
+
#: ../app/models/katello/repository.rb:680
|
|
6447
6604
|
msgid "Duplicate branches specified - %{branches}"
|
|
6448
6605
|
msgstr ""
|
|
6449
6606
|
|
|
6450
|
-
#: ../app/models/katello/repository.rb:
|
|
6607
|
+
#: ../app/models/katello/repository.rb:694
|
|
6451
6608
|
msgid ""
|
|
6452
6609
|
"Repository cannot be deleted since it has already been included in a published"
|
|
6453
6610
|
" Content View. Please delete all Content View versions containing this reposit"
|
|
6454
6611
|
"ory before attempting to delete it."
|
|
6455
6612
|
msgstr ""
|
|
6456
6613
|
|
|
6457
|
-
#: ../app/models/katello/repository.rb:
|
|
6614
|
+
#: ../app/models/katello/repository.rb:745
|
|
6458
6615
|
msgid "This is not a linked repository"
|
|
6459
6616
|
msgstr ""
|
|
6460
6617
|
|
|
@@ -6528,11 +6685,7 @@ msgstr ""
|
|
|
6528
6685
|
msgid "Upstream username requires upstream password be set."
|
|
6529
6686
|
msgstr ""
|
|
6530
6687
|
|
|
6531
|
-
#: ../app/models/katello/root_repository.rb:
|
|
6532
|
-
msgid "Auto Enablement may only be set on custom repositories."
|
|
6533
|
-
msgstr ""
|
|
6534
|
-
|
|
6535
|
-
#: ../app/models/katello/root_repository.rb:307
|
|
6688
|
+
#: ../app/models/katello/root_repository.rb:302
|
|
6536
6689
|
msgid "Cannot calculate name for custom repos"
|
|
6537
6690
|
msgstr ""
|
|
6538
6691
|
|
|
@@ -6558,6 +6711,8 @@ msgid "Unsubscribed hypervisor"
|
|
|
6558
6711
|
msgstr ""
|
|
6559
6712
|
|
|
6560
6713
|
#: ../app/models/katello/subscription_status.rb:25
|
|
6714
|
+
#: ../app/views/overrides/organizations/_edit_override.html.erb:19
|
|
6715
|
+
#: ../app/views/overrides/organizations/_index_header_override.html.erb:2
|
|
6561
6716
|
#: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:33
|
|
6562
6717
|
msgid "Simple Content Access"
|
|
6563
6718
|
msgstr ""
|
|
@@ -6582,19 +6737,19 @@ msgstr ""
|
|
|
6582
6737
|
msgid "Start Date and Time can't be blank"
|
|
6583
6738
|
msgstr ""
|
|
6584
6739
|
|
|
6585
|
-
#: ../app/models/katello/sync_plan.rb:
|
|
6740
|
+
#: ../app/models/katello/sync_plan.rb:138 ../lib/katello/plugin.rb:48
|
|
6586
6741
|
msgid "Sync Plans"
|
|
6587
6742
|
msgstr ""
|
|
6588
6743
|
|
|
6589
|
-
#: ../app/models/katello/sync_plan.rb:
|
|
6744
|
+
#: ../app/models/katello/sync_plan.rb:145
|
|
6590
6745
|
msgid "Interval cannot be nil"
|
|
6591
6746
|
msgstr ""
|
|
6592
6747
|
|
|
6593
|
-
#: ../app/models/katello/sync_plan.rb:
|
|
6748
|
+
#: ../app/models/katello/sync_plan.rb:156
|
|
6594
6749
|
msgid "Interval not set correctly"
|
|
6595
6750
|
msgstr ""
|
|
6596
6751
|
|
|
6597
|
-
#: ../app/models/katello/sync_plan.rb:
|
|
6752
|
+
#: ../app/models/katello/sync_plan.rb:161
|
|
6598
6753
|
msgid "Cron expression is not valid!"
|
|
6599
6754
|
msgstr ""
|
|
6600
6755
|
|
|
@@ -6899,108 +7054,116 @@ msgid "Pulp export destination filepath"
|
|
|
6899
7054
|
msgstr ""
|
|
6900
7055
|
|
|
6901
7056
|
#: ../app/models/setting/content.rb:108
|
|
6902
|
-
msgid "
|
|
7057
|
+
msgid "On-disk location for pulp 3 exported repositories"
|
|
6903
7058
|
msgstr ""
|
|
6904
7059
|
|
|
6905
7060
|
#: ../app/models/setting/content.rb:109
|
|
6906
|
-
msgid "Pulp
|
|
7061
|
+
msgid "Pulp 3 export destination filepath"
|
|
6907
7062
|
msgstr ""
|
|
6908
7063
|
|
|
6909
7064
|
#: ../app/models/setting/content.rb:110
|
|
6910
|
-
msgid "Path for ssl
|
|
7065
|
+
msgid "Path for ssl key used for pulp server auth"
|
|
6911
7066
|
msgstr ""
|
|
6912
7067
|
|
|
6913
7068
|
#: ../app/models/setting/content.rb:111
|
|
6914
|
-
msgid "Pulp client
|
|
7069
|
+
msgid "Pulp client key"
|
|
6915
7070
|
msgstr ""
|
|
6916
7071
|
|
|
6917
7072
|
#: ../app/models/setting/content.rb:112
|
|
6918
|
-
msgid "
|
|
7073
|
+
msgid "Path for ssl cert used for pulp server auth"
|
|
6919
7074
|
msgstr ""
|
|
6920
7075
|
|
|
6921
7076
|
#: ../app/models/setting/content.rb:113
|
|
6922
|
-
msgid "
|
|
7077
|
+
msgid "Pulp client cert"
|
|
6923
7078
|
msgstr ""
|
|
6924
7079
|
|
|
6925
7080
|
#: ../app/models/setting/content.rb:114
|
|
7081
|
+
msgid "If set to true, use the remote execution over katello-agent for remote actions"
|
|
7082
|
+
msgstr ""
|
|
7083
|
+
|
|
7084
|
+
#: ../app/models/setting/content.rb:115
|
|
7085
|
+
msgid "Use remote execution by default"
|
|
7086
|
+
msgstr ""
|
|
7087
|
+
|
|
7088
|
+
#: ../app/models/setting/content.rb:116
|
|
6926
7089
|
msgid ""
|
|
6927
7090
|
"When unregistering a host via subscription-manager, also delete the host recor"
|
|
6928
7091
|
"d. Managed resources linked to host such as virtual machines and DNS records m"
|
|
6929
7092
|
"ay also be deleted."
|
|
6930
7093
|
msgstr ""
|
|
6931
7094
|
|
|
6932
|
-
#: ../app/models/setting/content.rb:
|
|
7095
|
+
#: ../app/models/setting/content.rb:118
|
|
6933
7096
|
msgid "Delete Host upon unregister"
|
|
6934
7097
|
msgstr ""
|
|
6935
7098
|
|
|
6936
|
-
#: ../app/models/setting/content.rb:
|
|
7099
|
+
#: ../app/models/setting/content.rb:119
|
|
6937
7100
|
msgid ""
|
|
6938
7101
|
"When registering a host via subscription-manager, force use the specified fact"
|
|
6939
7102
|
" (in the form of 'fact.fact')"
|
|
6940
7103
|
msgstr ""
|
|
6941
7104
|
|
|
6942
|
-
#: ../app/models/setting/content.rb:
|
|
7105
|
+
#: ../app/models/setting/content.rb:120
|
|
6943
7106
|
msgid "Subscription manager name registration fact"
|
|
6944
7107
|
msgstr ""
|
|
6945
7108
|
|
|
6946
|
-
#: ../app/models/setting/content.rb:
|
|
7109
|
+
#: ../app/models/setting/content.rb:121
|
|
6947
7110
|
msgid ""
|
|
6948
7111
|
"If true, and register_hostname_fact is set and provided, registration will loo"
|
|
6949
7112
|
"k for a new host by name only using that fact, and will skip all hostname matc"
|
|
6950
7113
|
"hing"
|
|
6951
7114
|
msgstr ""
|
|
6952
7115
|
|
|
6953
|
-
#: ../app/models/setting/content.rb:
|
|
7116
|
+
#: ../app/models/setting/content.rb:122
|
|
6954
7117
|
msgid "Subscription manager name registration fact strict matching"
|
|
6955
7118
|
msgstr ""
|
|
6956
7119
|
|
|
6957
|
-
#: ../app/models/setting/content.rb:
|
|
7120
|
+
#: ../app/models/setting/content.rb:123
|
|
6958
7121
|
msgid ""
|
|
6959
7122
|
"Errata installed via katello-agent will be triggered in batches of this size. "
|
|
6960
7123
|
"Set to 0 to install all errata in one batch."
|
|
6961
7124
|
msgstr ""
|
|
6962
7125
|
|
|
6963
|
-
#: ../app/models/setting/content.rb:
|
|
7126
|
+
#: ../app/models/setting/content.rb:124
|
|
6964
7127
|
msgid "Erratum Install Batch Size"
|
|
6965
7128
|
msgstr ""
|
|
6966
7129
|
|
|
6967
|
-
#: ../app/models/setting/content.rb:
|
|
7130
|
+
#: ../app/models/setting/content.rb:126
|
|
6968
7131
|
msgid "Default Location where new subscribed hosts will put upon registration"
|
|
6969
7132
|
msgstr ""
|
|
6970
7133
|
|
|
6971
|
-
#: ../app/models/setting/content.rb:
|
|
7134
|
+
#: ../app/models/setting/content.rb:127
|
|
6972
7135
|
msgid "Default Location subscribed hosts"
|
|
6973
7136
|
msgstr ""
|
|
6974
7137
|
|
|
6975
|
-
#: ../app/models/setting/content.rb:
|
|
7138
|
+
#: ../app/models/setting/content.rb:130
|
|
6976
7139
|
msgid ""
|
|
6977
7140
|
"Default Location where new Puppet content will be put upon Content View publis"
|
|
6978
7141
|
"h"
|
|
6979
7142
|
msgstr ""
|
|
6980
7143
|
|
|
6981
|
-
#: ../app/models/setting/content.rb:
|
|
7144
|
+
#: ../app/models/setting/content.rb:131
|
|
6982
7145
|
msgid "Default Location Puppet content"
|
|
6983
7146
|
msgstr ""
|
|
6984
7147
|
|
|
6985
|
-
#: ../app/models/setting/content.rb:
|
|
7148
|
+
#: ../app/models/setting/content.rb:133
|
|
6986
7149
|
msgid ""
|
|
6987
7150
|
"The number of days remaining in a subscription before you will be reminded abo"
|
|
6988
7151
|
"ut renewing it."
|
|
6989
7152
|
msgstr ""
|
|
6990
7153
|
|
|
6991
|
-
#: ../app/models/setting/content.rb:
|
|
7154
|
+
#: ../app/models/setting/content.rb:134
|
|
6992
7155
|
msgid "Expire soon days"
|
|
6993
7156
|
msgstr ""
|
|
6994
7157
|
|
|
6995
|
-
#: ../app/models/setting/content.rb:
|
|
7158
|
+
#: ../app/models/setting/content.rb:136
|
|
6996
7159
|
msgid "The default dependency solving value for new Content Views."
|
|
6997
7160
|
msgstr ""
|
|
6998
7161
|
|
|
6999
|
-
#: ../app/models/setting/content.rb:
|
|
7162
|
+
#: ../app/models/setting/content.rb:137
|
|
7000
7163
|
msgid "Content View Dependency Solving Default"
|
|
7001
7164
|
msgstr ""
|
|
7002
7165
|
|
|
7003
|
-
#: ../app/models/setting/content.rb:
|
|
7166
|
+
#: ../app/models/setting/content.rb:139
|
|
7004
7167
|
msgid ""
|
|
7005
7168
|
"How the logic of solving dependencies in a Content View is managed. Conservati"
|
|
7006
7169
|
"ve will only add packages to solve the dependencies if the package needed does"
|
|
@@ -7008,71 +7171,71 @@ msgid ""
|
|
|
7008
7171
|
"f it already does exist in the repository."
|
|
7009
7172
|
msgstr ""
|
|
7010
7173
|
|
|
7011
|
-
#: ../app/models/setting/content.rb:
|
|
7174
|
+
#: ../app/models/setting/content.rb:142
|
|
7012
7175
|
msgid "Content View Dependency Solving Algorithm"
|
|
7013
7176
|
msgstr ""
|
|
7014
7177
|
|
|
7015
|
-
#: ../app/models/setting/content.rb:
|
|
7178
|
+
#: ../app/models/setting/content.rb:145
|
|
7016
7179
|
msgid ""
|
|
7017
7180
|
"If hosts fail to register because of duplicate DMI UUIDs add their comma-separ"
|
|
7018
7181
|
"ated values here. Subsequent registrations will generate a unique DMI UUID for"
|
|
7019
7182
|
" the affected hosts."
|
|
7020
7183
|
msgstr ""
|
|
7021
7184
|
|
|
7022
|
-
#: ../app/models/setting/content.rb:
|
|
7185
|
+
#: ../app/models/setting/content.rb:147
|
|
7023
7186
|
msgid "Host Duplicate DMI UUIDs"
|
|
7024
7187
|
msgstr ""
|
|
7025
7188
|
|
|
7026
|
-
#: ../app/models/setting/content.rb:
|
|
7189
|
+
#: ../app/models/setting/content.rb:148
|
|
7027
7190
|
msgid ""
|
|
7028
7191
|
"Allow new Host registrations to assume registered profiles with matching hostn"
|
|
7029
7192
|
"ame as long as the registering DMI UUID is not used by another host."
|
|
7030
7193
|
msgstr ""
|
|
7031
7194
|
|
|
7032
|
-
#: ../app/models/setting/content.rb:
|
|
7195
|
+
#: ../app/models/setting/content.rb:150
|
|
7033
7196
|
msgid "Host Profile Assume"
|
|
7034
7197
|
msgstr ""
|
|
7035
7198
|
|
|
7036
|
-
#: ../app/models/setting/content.rb:
|
|
7199
|
+
#: ../app/models/setting/content.rb:151
|
|
7037
7200
|
msgid ""
|
|
7038
7201
|
"Amount of workers in the pool to handle the execution of host-related tasks. W"
|
|
7039
7202
|
"hen set to 0, the default queue will be used instead. Restart of the dynflowd/"
|
|
7040
7203
|
"foreman-tasks service is required."
|
|
7041
7204
|
msgstr ""
|
|
7042
7205
|
|
|
7043
|
-
#: ../app/models/setting/content.rb:
|
|
7206
|
+
#: ../app/models/setting/content.rb:152
|
|
7044
7207
|
msgid "Host Tasks Workers Pool Size"
|
|
7045
7208
|
msgstr ""
|
|
7046
7209
|
|
|
7047
|
-
#: ../app/models/setting/content.rb:
|
|
7210
|
+
#: ../app/models/setting/content.rb:153
|
|
7048
7211
|
msgid "Number of host applicability calculations to process per task."
|
|
7049
7212
|
msgstr ""
|
|
7050
7213
|
|
|
7051
|
-
#: ../app/models/setting/content.rb:
|
|
7214
|
+
#: ../app/models/setting/content.rb:154
|
|
7052
7215
|
msgid "Applicability Batch Size"
|
|
7053
7216
|
msgstr ""
|
|
7054
7217
|
|
|
7055
|
-
#: ../app/models/setting/content.rb:
|
|
7218
|
+
#: ../app/models/setting/content.rb:155
|
|
7056
7219
|
msgid ""
|
|
7057
7220
|
"For pages that support it, automatically perform search while typing in search"
|
|
7058
7221
|
" input."
|
|
7059
7222
|
msgstr ""
|
|
7060
7223
|
|
|
7061
|
-
#: ../app/models/setting/content.rb:
|
|
7224
|
+
#: ../app/models/setting/content.rb:156
|
|
7062
7225
|
msgid "Autosearch"
|
|
7063
7226
|
msgstr ""
|
|
7064
7227
|
|
|
7065
|
-
#: ../app/models/setting/content.rb:
|
|
7228
|
+
#: ../app/models/setting/content.rb:157
|
|
7066
7229
|
msgid ""
|
|
7067
7230
|
"If Autosearch is enabled, delay in milliseconds before executing searches whil"
|
|
7068
7231
|
"e typing."
|
|
7069
7232
|
msgstr ""
|
|
7070
7233
|
|
|
7071
|
-
#: ../app/models/setting/content.rb:
|
|
7234
|
+
#: ../app/models/setting/content.rb:158
|
|
7072
7235
|
msgid "Autosearch delay"
|
|
7073
7236
|
msgstr ""
|
|
7074
7237
|
|
|
7075
|
-
#: ../app/models/setting/content.rb:
|
|
7238
|
+
#: ../app/models/setting/content.rb:188
|
|
7076
7239
|
msgid "There is no such HTTP proxy"
|
|
7077
7240
|
msgstr ""
|
|
7078
7241
|
|
|
@@ -7142,11 +7305,28 @@ msgstr ""
|
|
|
7142
7305
|
msgid "Failed indexing errata, maximum retries encountered"
|
|
7143
7306
|
msgstr ""
|
|
7144
7307
|
|
|
7308
|
+
#: ../app/services/katello/pulp3/content_view_version/import.rb:49
|
|
7309
|
+
msgid "Invalid path specified."
|
|
7310
|
+
msgstr ""
|
|
7311
|
+
|
|
7312
|
+
#: ../app/services/katello/pulp3/content_view_version/import.rb:50
|
|
7313
|
+
msgid "The import path must be in a subdirectory under '%s'."
|
|
7314
|
+
msgstr ""
|
|
7315
|
+
|
|
7316
|
+
#: ../app/services/katello/pulp3/content_view_version/import.rb:51
|
|
7317
|
+
msgid "Pulp user or group unable to read content in '%s'."
|
|
7318
|
+
msgstr ""
|
|
7319
|
+
|
|
7320
|
+
#: ../app/services/katello/pulp3/content_view_version/import.rb:54
|
|
7321
|
+
msgid "Pulp user or group unable to read '%s'."
|
|
7322
|
+
msgstr ""
|
|
7323
|
+
|
|
7324
|
+
#: ../app/services/katello/pulp3/deb.rb:16
|
|
7145
7325
|
#: ../app/services/katello/pulp3/file_unit.rb:12
|
|
7146
7326
|
msgid "Artifact Id and relative path are needed to create content"
|
|
7147
7327
|
msgstr ""
|
|
7148
7328
|
|
|
7149
|
-
#: ../app/services/katello/pulp3/migration.rb:
|
|
7329
|
+
#: ../app/services/katello/pulp3/migration.rb:28
|
|
7150
7330
|
msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
|
|
7151
7331
|
msgstr ""
|
|
7152
7332
|
|
|
@@ -7154,27 +7334,27 @@ msgstr ""
|
|
|
7154
7334
|
msgid "Content View and Environment not set for registration."
|
|
7155
7335
|
msgstr ""
|
|
7156
7336
|
|
|
7157
|
-
#: ../app/services/katello/registration_manager.rb:
|
|
7337
|
+
#: ../app/services/katello/registration_manager.rb:237
|
|
7158
7338
|
msgid "Host collection '%{name}' exceeds maximum usage limit of '%{limit}'"
|
|
7159
7339
|
msgstr ""
|
|
7160
7340
|
|
|
7161
|
-
#: ../app/services/katello/registration_manager.rb:
|
|
7341
|
+
#: ../app/services/katello/registration_manager.rb:251
|
|
7162
7342
|
msgid ""
|
|
7163
7343
|
"At least one activation key must have a lifecycle environment and content view"
|
|
7164
7344
|
" assigned to it"
|
|
7165
7345
|
msgstr ""
|
|
7166
7346
|
|
|
7167
|
-
#: ../app/services/katello/registration_manager.rb:
|
|
7347
|
+
#: ../app/services/katello/registration_manager.rb:258
|
|
7168
7348
|
msgid ""
|
|
7169
7349
|
"Attempted to destroy consumer %s from candlepin, but consumer does not exist i"
|
|
7170
7350
|
"n candlepin"
|
|
7171
7351
|
msgstr ""
|
|
7172
7352
|
|
|
7173
|
-
#: ../app/services/katello/registration_manager.rb:
|
|
7353
|
+
#: ../app/services/katello/registration_manager.rb:260
|
|
7174
7354
|
msgid "Candlepin consumer %s has already been removed"
|
|
7175
7355
|
msgstr ""
|
|
7176
7356
|
|
|
7177
|
-
#: ../app/services/katello/smart_proxy_helper.rb:
|
|
7357
|
+
#: ../app/services/katello/smart_proxy_helper.rb:20
|
|
7178
7358
|
msgid "Lifecycle environment '%{environment}' is not attached to this capsule."
|
|
7179
7359
|
msgstr ""
|
|
7180
7360
|
|
|
@@ -7187,6 +7367,10 @@ msgstr ""
|
|
|
7187
7367
|
#: ../db/seeds.d/109-katello-notification-blueprints.rb:47
|
|
7188
7368
|
#: ../db/seeds.d/109-katello-notification-blueprints.rb:53
|
|
7189
7369
|
#: ../db/seeds.d/109-katello-notification-blueprints.rb:59
|
|
7370
|
+
#: ../db/seeds.d/109-katello-notification-blueprints.rb:65
|
|
7371
|
+
#: ../db/seeds.d/109-katello-notification-blueprints.rb:71
|
|
7372
|
+
#: ../db/seeds.d/109-katello-notification-blueprints.rb:77
|
|
7373
|
+
#: ../db/seeds.d/109-katello-notification-blueprints.rb:83
|
|
7190
7374
|
#: ../lib/katello/plugin.rb:12 ../webpack/containers/Application/config.js:24
|
|
7191
7375
|
#: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:69
|
|
7192
7376
|
#: ../webpack/scenes/Subscriptions/SubscriptionsPage.js:233
|
|
@@ -7216,6 +7400,7 @@ msgstr ""
|
|
|
7216
7400
|
#: ../app/views/dashboard/_content_views_widget.html.erb:17
|
|
7217
7401
|
#: ../app/views/dashboard/_sync_widget.html.erb:18
|
|
7218
7402
|
#: ../webpack/components/extensions/about/SystemStatuses.js:24
|
|
7403
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:49
|
|
7219
7404
|
#: ../webpack/scenes/Subscriptions/Manifest/ManifestHistoryTableSchema.js:8
|
|
7220
7405
|
msgid "Status"
|
|
7221
7406
|
msgstr ""
|
|
@@ -7232,6 +7417,7 @@ msgstr ""
|
|
|
7232
7417
|
#: ../app/views/katello/subscription_mailer/subscription_expiry.html.erb:20
|
|
7233
7418
|
#: ../app/views/katello/subscription_mailer/subscription_expiry.text.erb:7
|
|
7234
7419
|
#: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:67
|
|
7420
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:44
|
|
7235
7421
|
#: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:19
|
|
7236
7422
|
#: ../webpack/scenes/Subscriptions/Details/SubscriptionAttributes.js:15
|
|
7237
7423
|
#: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:90
|
|
@@ -7258,6 +7444,7 @@ msgstr ""
|
|
|
7258
7444
|
#: ../webpack/scenes/AnsibleCollections/AnsibleCollectionsTableSchema.js:14
|
|
7259
7445
|
#: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:7
|
|
7260
7446
|
#: ../webpack/scenes/ContentViews/Details/ContentViewInfo.js:51
|
|
7447
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:45
|
|
7261
7448
|
#: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:20
|
|
7262
7449
|
#: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:9
|
|
7263
7450
|
#: ../webpack/scenes/ModuleStreams/Details/Profiles/TableSchema.js:13
|
|
@@ -7284,7 +7471,7 @@ msgid "Please select an organization to view subscription totals."
|
|
|
7284
7471
|
msgstr ""
|
|
7285
7472
|
|
|
7286
7473
|
#: ../app/views/dashboard/_subscription_status_widget.html.erb:17
|
|
7287
|
-
#: ../app/views/dashboard/_subscription_widget.html.erb:
|
|
7474
|
+
#: ../app/views/dashboard/_subscription_widget.html.erb:21
|
|
7288
7475
|
msgid "Count"
|
|
7289
7476
|
msgstr ""
|
|
7290
7477
|
|
|
@@ -7308,23 +7495,23 @@ msgstr ""
|
|
|
7308
7495
|
msgid "Please select an organization to view subscription status."
|
|
7309
7496
|
msgstr ""
|
|
7310
7497
|
|
|
7311
|
-
#: ../app/views/dashboard/_subscription_widget.html.erb:
|
|
7498
|
+
#: ../app/views/dashboard/_subscription_widget.html.erb:28
|
|
7312
7499
|
msgid "Invalid"
|
|
7313
7500
|
msgstr ""
|
|
7314
7501
|
|
|
7315
|
-
#: ../app/views/dashboard/_subscription_widget.html.erb:
|
|
7502
|
+
#: ../app/views/dashboard/_subscription_widget.html.erb:38
|
|
7316
7503
|
msgid "Partial"
|
|
7317
7504
|
msgstr ""
|
|
7318
7505
|
|
|
7319
|
-
#: ../app/views/dashboard/_subscription_widget.html.erb:
|
|
7506
|
+
#: ../app/views/dashboard/_subscription_widget.html.erb:48
|
|
7320
7507
|
msgid "Valid"
|
|
7321
7508
|
msgstr ""
|
|
7322
7509
|
|
|
7323
|
-
#: ../app/views/dashboard/_subscription_widget.html.erb:
|
|
7510
|
+
#: ../app/views/dashboard/_subscription_widget.html.erb:58
|
|
7324
7511
|
msgid "Unsubscribed Hypervisor"
|
|
7325
7512
|
msgstr ""
|
|
7326
7513
|
|
|
7327
|
-
#: ../app/views/dashboard/_subscription_widget.html.erb:
|
|
7514
|
+
#: ../app/views/dashboard/_subscription_widget.html.erb:68
|
|
7328
7515
|
msgid "Unknown or Unregistered"
|
|
7329
7516
|
msgstr ""
|
|
7330
7517
|
|
|
@@ -7339,6 +7526,7 @@ msgstr ""
|
|
|
7339
7526
|
#: ../app/views/dashboard/_sync_widget.html.erb:17
|
|
7340
7527
|
#: ../app/views/katello/sync_management/_products.html.erb:7
|
|
7341
7528
|
#: ../webpack/components/Content/Details/ContentDetailRepositoryTableSchema.js:31
|
|
7529
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:46
|
|
7342
7530
|
msgid "Product"
|
|
7343
7531
|
msgstr ""
|
|
7344
7532
|
|
|
@@ -7572,7 +7760,7 @@ msgstr ""
|
|
|
7572
7760
|
#: ../app/views/katello/sync_management/_products.html.erb:16
|
|
7573
7761
|
#: ../db/seeds.d/109-katello-notification-blueprints.rb:12
|
|
7574
7762
|
#: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:21
|
|
7575
|
-
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:
|
|
7763
|
+
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:20
|
|
7576
7764
|
#: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:20
|
|
7577
7765
|
#: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:33
|
|
7578
7766
|
#: ../webpack/scenes/ContentViews/expansions/DetailsExpansion.js:5
|
|
@@ -7606,7 +7794,7 @@ msgid "Synchronize Now"
|
|
|
7606
7794
|
msgstr ""
|
|
7607
7795
|
|
|
7608
7796
|
#: ../app/views/katello/sync_management/index.html.erb:5
|
|
7609
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
7797
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:264
|
|
7610
7798
|
#: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:147
|
|
7611
7799
|
#: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/DeleteDialog.js:30
|
|
7612
7800
|
#: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Dialogs/UnsavedChangesDialog.js:15
|
|
@@ -7696,6 +7884,11 @@ msgstr ""
|
|
|
7696
7884
|
msgid "Generate and Download"
|
|
7697
7885
|
msgstr ""
|
|
7698
7886
|
|
|
7887
|
+
#: ../app/views/overrides/organizations/_edit_override.html.erb:20
|
|
7888
|
+
#: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:64
|
|
7889
|
+
msgid "Toggling Simple Content Access will refresh your manifest."
|
|
7890
|
+
msgstr ""
|
|
7891
|
+
|
|
7699
7892
|
#: ../app/views/overrides/smart_proxies/_environment_tab.html.erb:3
|
|
7700
7893
|
#: ../app/views/overrides/smart_proxies/_environment_tab_pane.html.erb:3
|
|
7701
7894
|
#: ../lib/katello/plugin.rb:67
|
|
@@ -7876,6 +8069,22 @@ msgstr ""
|
|
|
7876
8069
|
msgid "Deleting manifest in '%{subject}' failed."
|
|
7877
8070
|
msgstr ""
|
|
7878
8071
|
|
|
8072
|
+
#: ../db/seeds.d/109-katello-notification-blueprints.rb:67
|
|
8073
|
+
msgid "Simple Content Access has been enabled for '%{subject}'."
|
|
8074
|
+
msgstr ""
|
|
8075
|
+
|
|
8076
|
+
#: ../db/seeds.d/109-katello-notification-blueprints.rb:73
|
|
8077
|
+
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
|
8078
|
+
msgstr ""
|
|
8079
|
+
|
|
8080
|
+
#: ../db/seeds.d/109-katello-notification-blueprints.rb:79
|
|
8081
|
+
msgid "Simple Content Access has been disabled for '%{subject}'."
|
|
8082
|
+
msgstr ""
|
|
8083
|
+
|
|
8084
|
+
#: ../db/seeds.d/109-katello-notification-blueprints.rb:85
|
|
8085
|
+
msgid "Disabling Simple Content Access failed for '%{subject}'."
|
|
8086
|
+
msgstr ""
|
|
8087
|
+
|
|
7879
8088
|
#: ../db/seeds.d/110-content-view-autopublish.rb:6
|
|
7880
8089
|
msgid "Composite Content View '%{subject}' failed auto-publish"
|
|
7881
8090
|
msgstr ""
|
|
@@ -7884,10 +8093,6 @@ msgstr ""
|
|
|
7884
8093
|
msgid "Products"
|
|
7885
8094
|
msgstr ""
|
|
7886
8095
|
|
|
7887
|
-
#: ../lib/katello/plugin.rb:39
|
|
7888
|
-
msgid "Content Credentials"
|
|
7889
|
-
msgstr ""
|
|
7890
|
-
|
|
7891
8096
|
#: ../lib/katello/plugin.rb:63
|
|
7892
8097
|
msgid "Lifecycle"
|
|
7893
8098
|
msgstr ""
|
|
@@ -7921,79 +8126,79 @@ msgstr ""
|
|
|
7921
8126
|
msgid "Puppet Modules"
|
|
7922
8127
|
msgstr ""
|
|
7923
8128
|
|
|
7924
|
-
#: ../lib/katello/plugin.rb:
|
|
8129
|
+
#: ../lib/katello/plugin.rb:288
|
|
7925
8130
|
msgid "Storage"
|
|
7926
8131
|
msgstr ""
|
|
7927
8132
|
|
|
7928
|
-
#: ../lib/katello/plugin.rb:
|
|
8133
|
+
#: ../lib/katello/plugin.rb:317
|
|
7929
8134
|
msgid "Katello: Install Package"
|
|
7930
8135
|
msgstr ""
|
|
7931
8136
|
|
|
7932
|
-
#: ../lib/katello/plugin.rb:
|
|
8137
|
+
#: ../lib/katello/plugin.rb:317
|
|
7933
8138
|
msgid "Install package via Katello interface"
|
|
7934
8139
|
msgstr ""
|
|
7935
8140
|
|
|
7936
|
-
#: ../lib/katello/plugin.rb:
|
|
8141
|
+
#: ../lib/katello/plugin.rb:318
|
|
7937
8142
|
msgid "Katello: Update Package"
|
|
7938
8143
|
msgstr ""
|
|
7939
8144
|
|
|
7940
|
-
#: ../lib/katello/plugin.rb:
|
|
8145
|
+
#: ../lib/katello/plugin.rb:318
|
|
7941
8146
|
msgid "Update package via Katello interface"
|
|
7942
8147
|
msgstr ""
|
|
7943
8148
|
|
|
7944
|
-
#: ../lib/katello/plugin.rb:
|
|
8149
|
+
#: ../lib/katello/plugin.rb:319
|
|
7945
8150
|
msgid "Katello: Remove Package"
|
|
7946
8151
|
msgstr ""
|
|
7947
8152
|
|
|
7948
|
-
#: ../lib/katello/plugin.rb:
|
|
8153
|
+
#: ../lib/katello/plugin.rb:319
|
|
7949
8154
|
msgid "Remove package via Katello interface"
|
|
7950
8155
|
msgstr ""
|
|
7951
8156
|
|
|
7952
|
-
#: ../lib/katello/plugin.rb:
|
|
8157
|
+
#: ../lib/katello/plugin.rb:320
|
|
7953
8158
|
msgid "Katello: Install Package Group"
|
|
7954
8159
|
msgstr ""
|
|
7955
8160
|
|
|
7956
|
-
#: ../lib/katello/plugin.rb:
|
|
8161
|
+
#: ../lib/katello/plugin.rb:320
|
|
7957
8162
|
msgid "Install package group via Katello interface"
|
|
7958
8163
|
msgstr ""
|
|
7959
8164
|
|
|
7960
|
-
#: ../lib/katello/plugin.rb:
|
|
8165
|
+
#: ../lib/katello/plugin.rb:321
|
|
7961
8166
|
msgid "Katello: Update Package Group"
|
|
7962
8167
|
msgstr ""
|
|
7963
8168
|
|
|
7964
|
-
#: ../lib/katello/plugin.rb:
|
|
8169
|
+
#: ../lib/katello/plugin.rb:321
|
|
7965
8170
|
msgid "Update package group via Katello interface"
|
|
7966
8171
|
msgstr ""
|
|
7967
8172
|
|
|
7968
|
-
#: ../lib/katello/plugin.rb:
|
|
8173
|
+
#: ../lib/katello/plugin.rb:322
|
|
7969
8174
|
msgid "Katello: Remove Package Group"
|
|
7970
8175
|
msgstr ""
|
|
7971
8176
|
|
|
7972
|
-
#: ../lib/katello/plugin.rb:
|
|
8177
|
+
#: ../lib/katello/plugin.rb:322
|
|
7973
8178
|
msgid "Remove package group via Katello interface"
|
|
7974
8179
|
msgstr ""
|
|
7975
8180
|
|
|
7976
|
-
#: ../lib/katello/plugin.rb:
|
|
8181
|
+
#: ../lib/katello/plugin.rb:323
|
|
7977
8182
|
msgid "Katello: Install Errata"
|
|
7978
8183
|
msgstr ""
|
|
7979
8184
|
|
|
7980
|
-
#: ../lib/katello/plugin.rb:
|
|
8185
|
+
#: ../lib/katello/plugin.rb:323
|
|
7981
8186
|
msgid "Install errata via Katello interface"
|
|
7982
8187
|
msgstr ""
|
|
7983
8188
|
|
|
7984
|
-
#: ../lib/katello/plugin.rb:
|
|
8189
|
+
#: ../lib/katello/plugin.rb:324
|
|
7985
8190
|
msgid "Katello: Service Restart"
|
|
7986
8191
|
msgstr ""
|
|
7987
8192
|
|
|
7988
|
-
#: ../lib/katello/plugin.rb:
|
|
8193
|
+
#: ../lib/katello/plugin.rb:324
|
|
7989
8194
|
msgid "Restart Services via Katello interface"
|
|
7990
8195
|
msgstr ""
|
|
7991
8196
|
|
|
7992
|
-
#: ../lib/katello/plugin.rb:
|
|
8197
|
+
#: ../lib/katello/plugin.rb:325
|
|
7993
8198
|
msgid "Katello: Module Stream Actions"
|
|
7994
8199
|
msgstr ""
|
|
7995
8200
|
|
|
7996
|
-
#: ../lib/katello/plugin.rb:
|
|
8201
|
+
#: ../lib/katello/plugin.rb:326
|
|
7997
8202
|
msgid "Perform a module stream action via Katello interface"
|
|
7998
8203
|
msgstr ""
|
|
7999
8204
|
|
|
@@ -8016,7 +8221,7 @@ msgstr ""
|
|
|
8016
8221
|
#: ../webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js:59
|
|
8017
8222
|
#: ../webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js:83
|
|
8018
8223
|
#: ../webpack/scenes/Subscriptions/Details/SubscriptionDetails.js:83
|
|
8019
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8224
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:281
|
|
8020
8225
|
#: ../webpack/scenes/Subscriptions/UpstreamSubscriptions/UpstreamSubscriptionsPage.js:239
|
|
8021
8226
|
#: ../webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTable.js:185
|
|
8022
8227
|
msgid "Loading"
|
|
@@ -8159,7 +8364,7 @@ msgid "Tags"
|
|
|
8159
8364
|
msgstr ""
|
|
8160
8365
|
|
|
8161
8366
|
#: ../webpack/scenes/AnsibleCollections/Details/AnsibleCollectionsSchema.js:28
|
|
8162
|
-
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:
|
|
8367
|
+
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:28
|
|
8163
8368
|
#: ../webpack/scenes/ModuleStreams/Details/ModuleDetailsSchema.js:32
|
|
8164
8369
|
msgid "Repositories"
|
|
8165
8370
|
msgstr ""
|
|
@@ -8169,25 +8374,25 @@ msgstr ""
|
|
|
8169
8374
|
msgid "No repositories to show"
|
|
8170
8375
|
msgstr ""
|
|
8171
8376
|
|
|
8172
|
-
#: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:
|
|
8377
|
+
#: ../webpack/scenes/ContentViews/Details/ContentViewDetailActions.js:30
|
|
8173
8378
|
msgid " Content view updated."
|
|
8174
8379
|
msgstr ""
|
|
8175
8380
|
|
|
8176
|
-
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:
|
|
8381
|
+
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:24
|
|
8177
8382
|
#: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:22
|
|
8178
8383
|
#: ../webpack/scenes/ContentViews/expansions/VersionsExpansion.js:5
|
|
8179
8384
|
msgid "Versions"
|
|
8180
8385
|
msgstr ""
|
|
8181
8386
|
|
|
8182
|
-
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:
|
|
8387
|
+
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:32
|
|
8183
8388
|
msgid "Filters"
|
|
8184
8389
|
msgstr ""
|
|
8185
8390
|
|
|
8186
|
-
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:
|
|
8391
|
+
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:36
|
|
8187
8392
|
msgid "History"
|
|
8188
8393
|
msgstr ""
|
|
8189
8394
|
|
|
8190
|
-
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:
|
|
8395
|
+
#: ../webpack/scenes/ContentViews/Details/ContentViewDetails.js:40
|
|
8191
8396
|
msgid "Tasks"
|
|
8192
8397
|
msgstr ""
|
|
8193
8398
|
|
|
@@ -8203,20 +8408,42 @@ msgstr ""
|
|
|
8203
8408
|
msgid "Solve dependencies"
|
|
8204
8409
|
msgstr ""
|
|
8205
8410
|
|
|
8206
|
-
#:
|
|
8207
|
-
|
|
8411
|
+
#:
|
|
8412
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:47
|
|
8413
|
+
msgid "Sync state"
|
|
8414
|
+
msgstr ""
|
|
8415
|
+
|
|
8416
|
+
#:
|
|
8417
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:112
|
|
8418
|
+
msgid "You currently don't have any repositories to add to this content view."
|
|
8419
|
+
msgstr ""
|
|
8420
|
+
|
|
8421
|
+
#:
|
|
8422
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:113
|
|
8423
|
+
msgid "Please add some repositories."
|
|
8424
|
+
msgstr ""
|
|
8425
|
+
|
|
8426
|
+
#:
|
|
8427
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:114
|
|
8428
|
+
msgid "No matching repositories found"
|
|
8429
|
+
msgstr ""
|
|
8430
|
+
|
|
8431
|
+
#:
|
|
8432
|
+
#: ../webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js:115
|
|
8433
|
+
#: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:78
|
|
8434
|
+
msgid "Try changing your search settings."
|
|
8208
8435
|
msgstr ""
|
|
8209
8436
|
|
|
8210
8437
|
#: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:75
|
|
8211
|
-
msgid "
|
|
8438
|
+
msgid "You currently don't have any Content Views."
|
|
8212
8439
|
msgstr ""
|
|
8213
8440
|
|
|
8214
8441
|
#: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:76
|
|
8215
|
-
msgid "
|
|
8442
|
+
msgid "A content view can be added by using the \"New content view\" button below."
|
|
8216
8443
|
msgstr ""
|
|
8217
8444
|
|
|
8218
8445
|
#: ../webpack/scenes/ContentViews/Table/ContentViewsTable.js:77
|
|
8219
|
-
msgid "
|
|
8446
|
+
msgid "No matching content views found"
|
|
8220
8447
|
msgstr ""
|
|
8221
8448
|
|
|
8222
8449
|
#: ../webpack/scenes/ContentViews/Table/tableDataGenerator.js:20
|
|
@@ -8525,72 +8752,72 @@ msgstr ""
|
|
|
8525
8752
|
msgid "Disable Red Hat Insights."
|
|
8526
8753
|
msgstr ""
|
|
8527
8754
|
|
|
8528
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8755
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:80
|
|
8529
8756
|
msgid "This is disabled because a manifest task is in progress"
|
|
8530
8757
|
msgstr ""
|
|
8531
8758
|
|
|
8532
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8759
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:82
|
|
8533
8760
|
msgid "This is disabled because no manifest exists"
|
|
8534
8761
|
msgstr ""
|
|
8535
8762
|
|
|
8536
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8763
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:114
|
|
8537
8764
|
msgid "There is no Manifest History to display."
|
|
8538
8765
|
msgstr ""
|
|
8539
8766
|
|
|
8540
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8767
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:115
|
|
8541
8768
|
msgid "Import a Manifest using the manifest tab above."
|
|
8542
8769
|
msgstr ""
|
|
8543
8770
|
|
|
8544
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8771
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:117
|
|
8545
8772
|
msgid "Learn more about adding Subscription Manifests"
|
|
8546
8773
|
msgstr ""
|
|
8547
8774
|
|
|
8548
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8775
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:123
|
|
8549
8776
|
msgid "Updating..."
|
|
8550
8777
|
msgstr ""
|
|
8551
8778
|
|
|
8552
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8779
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:127
|
|
8553
8780
|
msgid "No Manifest Uploaded"
|
|
8554
8781
|
msgstr ""
|
|
8555
8782
|
|
|
8556
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8557
|
-
#: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:
|
|
8783
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:148
|
|
8784
|
+
#: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:74
|
|
8558
8785
|
msgid "Manage Manifest"
|
|
8559
8786
|
msgstr ""
|
|
8560
8787
|
|
|
8561
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8788
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:151
|
|
8562
8789
|
msgid "Manifest"
|
|
8563
8790
|
msgstr ""
|
|
8564
8791
|
|
|
8565
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8792
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:155
|
|
8566
8793
|
msgid "Red Hat Provider Details"
|
|
8567
8794
|
msgstr ""
|
|
8568
8795
|
|
|
8569
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8796
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:195
|
|
8570
8797
|
msgid "Subscription Manifest"
|
|
8571
8798
|
msgstr ""
|
|
8572
8799
|
|
|
8573
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8800
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:207
|
|
8574
8801
|
msgid "Subscription Allocation"
|
|
8575
8802
|
msgstr ""
|
|
8576
8803
|
|
|
8577
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8804
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:219
|
|
8578
8805
|
msgid "Import New Manifest"
|
|
8579
8806
|
msgstr ""
|
|
8580
8807
|
|
|
8581
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8808
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:241
|
|
8582
8809
|
msgid "Refresh"
|
|
8583
8810
|
msgstr ""
|
|
8584
8811
|
|
|
8585
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8812
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:260
|
|
8586
8813
|
msgid "Confirm delete manifest"
|
|
8587
8814
|
msgstr ""
|
|
8588
8815
|
|
|
8589
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8816
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:280
|
|
8590
8817
|
msgid "Manifest History"
|
|
8591
8818
|
msgstr ""
|
|
8592
8819
|
|
|
8593
|
-
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:
|
|
8820
|
+
#: ../webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js:292
|
|
8594
8821
|
msgid "Close"
|
|
8595
8822
|
msgstr ""
|
|
8596
8823
|
|
|
@@ -8600,12 +8827,8 @@ msgstr ""
|
|
|
8600
8827
|
|
|
8601
8828
|
#: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:39
|
|
8602
8829
|
msgid ""
|
|
8603
|
-
"When Simple Content Access is enabled, hosts
|
|
8604
|
-
"
|
|
8605
|
-
msgstr ""
|
|
8606
|
-
|
|
8607
|
-
#: ../webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js:64
|
|
8608
|
-
msgid "Toggling Simple Content Access will refresh your manifest."
|
|
8830
|
+
"When Simple Content Access is enabled, hosts are not required to have subscrip"
|
|
8831
|
+
"tions attached to access repositories."
|
|
8609
8832
|
msgstr ""
|
|
8610
8833
|
|
|
8611
8834
|
#: ../webpack/scenes/Subscriptions/SubscriptionConstants.js:100
|
|
@@ -8809,12 +9032,7 @@ msgid "Subscription Watch"
|
|
|
8809
9032
|
msgstr ""
|
|
8810
9033
|
|
|
8811
9034
|
#:
|
|
8812
|
-
#: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:
|
|
8813
|
-
msgid "Learn more about your overall subscription usage (opens in a new tab)"
|
|
8814
|
-
msgstr ""
|
|
8815
|
-
|
|
8816
|
-
#:
|
|
8817
|
-
#: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:92
|
|
9035
|
+
#: ../webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js:80
|
|
8818
9036
|
msgid "Export CSV"
|
|
8819
9037
|
msgstr ""
|
|
8820
9038
|
|
|
@@ -8834,98 +9052,114 @@ msgstr ""
|
|
|
8834
9052
|
msgid "The subscription is no longer available"
|
|
8835
9053
|
msgstr ""
|
|
8836
9054
|
|
|
8837
|
-
#: action_names.rb:
|
|
8838
|
-
msgid "
|
|
9055
|
+
#: action_names.rb:6
|
|
9056
|
+
msgid "Verify checksum"
|
|
8839
9057
|
msgstr ""
|
|
8840
9058
|
|
|
8841
|
-
#: action_names.rb:
|
|
9059
|
+
#: action_names.rb:9
|
|
9060
|
+
msgid "Update redhat repository"
|
|
9061
|
+
msgstr ""
|
|
9062
|
+
|
|
9063
|
+
#: action_names.rb:10
|
|
9064
|
+
msgid "Update content urls"
|
|
9065
|
+
msgstr ""
|
|
9066
|
+
|
|
9067
|
+
#: action_names.rb:11
|
|
9068
|
+
msgid "Update http proxy details"
|
|
9069
|
+
msgstr ""
|
|
9070
|
+
|
|
9071
|
+
#: action_names.rb:12
|
|
8842
9072
|
msgid "Index package groups"
|
|
8843
9073
|
msgstr ""
|
|
8844
9074
|
|
|
8845
|
-
#: action_names.rb:
|
|
8846
|
-
msgid "
|
|
9075
|
+
#: action_names.rb:13
|
|
9076
|
+
msgid "Instance update"
|
|
8847
9077
|
msgstr ""
|
|
8848
9078
|
|
|
8849
|
-
#: action_names.rb:
|
|
8850
|
-
msgid "
|
|
9079
|
+
#: action_names.rb:14
|
|
9080
|
+
msgid "Index errata"
|
|
9081
|
+
msgstr ""
|
|
9082
|
+
|
|
9083
|
+
#: action_names.rb:15
|
|
9084
|
+
msgid "Filtered index content"
|
|
8851
9085
|
msgstr ""
|
|
8852
9086
|
|
|
8853
|
-
#: action_names.rb:
|
|
9087
|
+
#: action_names.rb:16
|
|
8854
9088
|
msgid "Discover"
|
|
8855
9089
|
msgstr ""
|
|
8856
9090
|
|
|
8857
|
-
#: action_names.rb:
|
|
9091
|
+
#: action_names.rb:17
|
|
8858
9092
|
msgid "Errata mail"
|
|
8859
9093
|
msgstr ""
|
|
8860
9094
|
|
|
8861
|
-
#: action_names.rb:
|
|
9095
|
+
#: action_names.rb:21
|
|
8862
9096
|
msgid "Reindex subscriptions"
|
|
8863
9097
|
msgstr ""
|
|
8864
9098
|
|
|
8865
|
-
#: action_names.rb:
|
|
8866
|
-
msgid "
|
|
9099
|
+
#: action_names.rb:31
|
|
9100
|
+
msgid "Hypervisors"
|
|
8867
9101
|
msgstr ""
|
|
8868
9102
|
|
|
8869
|
-
#: action_names.rb:
|
|
8870
|
-
msgid "
|
|
9103
|
+
#: action_names.rb:42
|
|
9104
|
+
msgid "Promote"
|
|
8871
9105
|
msgstr ""
|
|
8872
9106
|
|
|
8873
|
-
#: action_names.rb:
|
|
8874
|
-
msgid "
|
|
9107
|
+
#: action_names.rb:43
|
|
9108
|
+
msgid "Incremental Update of Content View Version(s) "
|
|
8875
9109
|
msgstr ""
|
|
8876
9110
|
|
|
8877
|
-
#: action_names.rb:
|
|
8878
|
-
msgid "
|
|
9111
|
+
#: action_names.rb:44
|
|
9112
|
+
msgid "Sync capsule"
|
|
8879
9113
|
msgstr ""
|
|
8880
9114
|
|
|
8881
|
-
#: action_names.rb:
|
|
8882
|
-
msgid "
|
|
9115
|
+
#: action_names.rb:49
|
|
9116
|
+
msgid "Import facts"
|
|
8883
9117
|
msgstr ""
|
|
8884
9118
|
|
|
8885
|
-
#: action_names.rb:
|
|
8886
|
-
msgid "
|
|
9119
|
+
#: action_names.rb:50
|
|
9120
|
+
msgid "Action with sub plans"
|
|
8887
9121
|
msgstr ""
|
|
8888
9122
|
|
|
8889
|
-
#: action_names.rb:
|
|
8890
|
-
msgid "
|
|
9123
|
+
#: action_names.rb:51
|
|
9124
|
+
msgid "Import Puppet classes"
|
|
8891
9125
|
msgstr ""
|
|
8892
9126
|
|
|
8893
|
-
#: action_names.rb:
|
|
8894
|
-
msgid "
|
|
9127
|
+
#: action_names.rb:52
|
|
9128
|
+
msgid "Abstract async task"
|
|
8895
9129
|
msgstr ""
|
|
8896
9130
|
|
|
8897
|
-
#: action_names.rb:
|
|
8898
|
-
msgid "
|
|
9131
|
+
#: action_names.rb:57
|
|
9132
|
+
msgid "Auto attach subscriptions"
|
|
8899
9133
|
msgstr ""
|
|
8900
9134
|
|
|
8901
|
-
#: action_names.rb:
|
|
8902
|
-
msgid "
|
|
9135
|
+
#: action_names.rb:59
|
|
9136
|
+
msgid "Hypervisors update"
|
|
8903
9137
|
msgstr ""
|
|
8904
9138
|
|
|
8905
|
-
#: action_names.rb:
|
|
8906
|
-
msgid "
|
|
9139
|
+
#: action_names.rb:66
|
|
9140
|
+
msgid "Update http proxy"
|
|
8907
9141
|
msgstr ""
|
|
8908
9142
|
|
|
8909
|
-
#: action_names.rb:
|
|
8910
|
-
msgid "
|
|
9143
|
+
#: action_names.rb:67
|
|
9144
|
+
msgid "Fetch pxe files"
|
|
8911
9145
|
msgstr ""
|
|
8912
9146
|
|
|
8913
|
-
#: action_names.rb:
|
|
8914
|
-
msgid "
|
|
9147
|
+
#: action_names.rb:68
|
|
9148
|
+
msgid "Index content"
|
|
8915
9149
|
msgstr ""
|
|
8916
9150
|
|
|
8917
|
-
#: action_names.rb:
|
|
8918
|
-
msgid "
|
|
9151
|
+
#: action_names.rb:69
|
|
9152
|
+
msgid "Index module streams"
|
|
8919
9153
|
msgstr ""
|
|
8920
9154
|
|
|
8921
|
-
#: action_names.rb:
|
|
8922
|
-
msgid "
|
|
9155
|
+
#: action_names.rb:75
|
|
9156
|
+
msgid "Copy version units to library"
|
|
8923
9157
|
msgstr ""
|
|
8924
9158
|
|
|
8925
|
-
#: action_names.rb:
|
|
8926
|
-
msgid "
|
|
9159
|
+
#: action_names.rb:76
|
|
9160
|
+
msgid "Remote action:"
|
|
8927
9161
|
msgstr ""
|
|
8928
9162
|
|
|
8929
|
-
#: action_names.rb:
|
|
8930
|
-
msgid "
|
|
9163
|
+
#: action_names.rb:77
|
|
9164
|
+
msgid "Report"
|
|
8931
9165
|
msgstr ""
|