katello 4.1.4 → 4.2.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of katello might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -2
- data/app/controllers/katello/api/v2/content_credentials_controller.rb +3 -3
- data/app/controllers/katello/api/v2/content_uploads_controller.rb +3 -1
- data/app/controllers/katello/api/v2/content_view_components_controller.rb +33 -1
- data/app/controllers/katello/api/v2/content_views_controller.rb +12 -0
- data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -1
- data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -2
- data/app/controllers/katello/api/v2/products_controller.rb +4 -4
- data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +3 -11
- data/app/controllers/katello/api/v2/repositories_controller.rb +68 -47
- data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +0 -28
- data/app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb +26 -5
- data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +26 -1
- data/app/lib/actions/candlepin/environment/destroy.rb +2 -0
- data/app/lib/actions/katello/agent_action.rb +2 -2
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +3 -2
- data/app/lib/actions/katello/{gpg_key → content_credential}/update.rb +1 -1
- data/app/lib/actions/katello/content_view/publish.rb +6 -1
- data/app/lib/actions/katello/content_view_version/create_repos.rb +1 -1
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +0 -47
- data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +1 -1
- data/app/lib/actions/katello/repository/clone_contents.rb +1 -7
- data/app/lib/actions/katello/repository/clone_to_environment.rb +1 -7
- data/app/lib/actions/katello/repository/create.rb +4 -8
- data/app/lib/actions/katello/repository/create_root.rb +1 -1
- data/app/lib/actions/katello/repository/destroy.rb +1 -3
- data/app/lib/actions/katello/repository/import_upload.rb +3 -2
- data/app/lib/actions/katello/repository/instance_update.rb +1 -1
- data/app/lib/actions/katello/repository/metadata_generate.rb +2 -8
- data/app/lib/actions/katello/repository/multi_clone_contents.rb +0 -1
- data/app/lib/actions/katello/repository/refresh_repository.rb +1 -4
- data/app/lib/actions/katello/repository/remove_content.rb +6 -4
- data/app/lib/actions/katello/repository/sync.rb +5 -25
- data/app/lib/actions/katello/repository/update.rb +1 -2
- data/app/lib/actions/katello/repository/update_http_proxy_details.rb +2 -5
- data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
- data/app/lib/actions/katello/repository/upload_files.rb +8 -3
- data/app/lib/actions/katello/repository/upload_package_group.rb +2 -11
- data/app/lib/actions/katello/repository/verify_checksum.rb +0 -1
- data/app/lib/actions/katello/repository_set/enable_repository.rb +1 -1
- data/app/lib/actions/pulp3/orchestration/repository/create.rb +2 -2
- data/app/lib/actions/pulp3/repository/create.rb +3 -4
- data/app/lib/actions/pulp3/repository/create_remote.rb +1 -6
- data/app/lib/actions/pulp3/repository/repair.rb +4 -0
- data/app/lib/katello/errors.rb +1 -0
- data/app/lib/katello/http_resource.rb +26 -73
- data/app/lib/katello/qpid/connection.rb +1 -3
- data/app/lib/katello/resources/candlepin/consumer.rb +1 -1
- data/app/lib/katello/resources/candlepin/environment.rb +2 -0
- data/app/lib/katello/resources/registry.rb +7 -20
- data/app/lib/katello/util/http_proxy.rb +0 -3
- data/app/lib/katello/validators/gpg_key_content_validator.rb +1 -1
- data/app/models/katello/authorization/{gpg_key.rb → content_credential.rb} +1 -1
- data/app/models/katello/authorization/product.rb +0 -4
- data/app/models/katello/concerns/host_managed_extensions.rb +2 -16
- data/app/models/katello/concerns/organization_extensions.rb +1 -1
- data/app/models/katello/concerns/pulp_database_unit.rb +13 -5
- data/app/models/katello/concerns/smart_proxy_extensions.rb +45 -41
- data/app/models/katello/{gpg_key.rb → content_credential.rb} +4 -4
- data/app/models/katello/content_view.rb +6 -1
- data/app/models/katello/generic_content_unit.rb +16 -0
- data/app/models/katello/glue/pulp/repos.rb +9 -25
- data/app/models/katello/kt_environment.rb +1 -1
- data/app/models/katello/product.rb +4 -4
- data/app/models/katello/repository.rb +13 -7
- data/app/models/katello/repository_generic_content_unit.rb +7 -0
- data/app/models/katello/root_repository.rb +38 -7
- data/app/models/setting/content.rb +5 -0
- data/app/services/cert/certs.rb +16 -8
- data/app/services/katello/applicability/applicable_content_helper.rb +1 -2
- data/app/services/katello/candlepin/consumer.rb +6 -0
- data/app/services/katello/component_view_presenter.rb +27 -0
- data/app/services/katello/pulp/repository.rb +1 -1
- data/app/services/katello/pulp/server.rb +2 -2
- data/app/services/katello/pulp3/api/core.rb +4 -0
- data/app/services/katello/pulp3/api/generic.rb +68 -0
- data/app/services/katello/pulp3/generic_content_unit.rb +29 -0
- data/app/services/katello/pulp3/pulp_content_unit.rb +5 -1
- data/app/services/katello/pulp3/repository/generic.rb +94 -0
- data/app/services/katello/pulp3/repository/yum.rb +4 -5
- data/app/services/katello/pulp3/repository.rb +27 -12
- data/app/services/katello/pulp3/repository_mirror.rb +2 -2
- data/app/services/katello/pulp3/smart_proxy_repository.rb +4 -4
- data/app/services/katello/registration_manager.rb +18 -7
- data/app/services/katello/repository_type.rb +59 -1
- data/app/services/katello/repository_type_manager.rb +116 -24
- data/app/views/katello/api/v2/content_views/base.json.rabl +4 -4
- data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
- data/app/views/smart_proxies/plugins/_pulpcore.html.erb +2 -5
- data/app/views/smart_proxies/pulp_status.html.erb +0 -7
- data/config/katello.yaml.example +0 -21
- data/config/routes/api/v2.rb +2 -1
- data/db/functions/deb_version_cmp_v01.sql +200 -0
- data/db/migrate/20171110082124_add_ssl_certs_to_products_and_repos.rb +5 -1
- data/db/migrate/20200402130013_add_repsoitory_docker_meta_tag_f_key.rb +3 -1
- data/db/migrate/20210624221630_katello_generic_content.rb +22 -0
- data/db/migrate/20210625095042_add_retain_package_versions_count.rb +9 -0
- data/db/migrate/20210628182553_add_generic_remote_options_to_root_repository.rb +5 -0
- data/db/migrate/20210714140440_remove_repo_export_permission.rb +5 -0
- data/db/migrate/20210721163730_change_gpg_keys_to_content_credentials.rb +8 -0
- data/db/migrate/20210728130748_create_function_deb_version_cmp.rb +12 -0
- data/db/seeds.d/111-upgrade_tasks.rb +1 -2
- data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +7 -5
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +4 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +2 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +25 -33
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +1 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +10 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +9 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +0 -2
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +1 -25
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +31 -13
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +11 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +0 -6
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/aggregate-task.factory.js +3 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task.factory.js +1 -1
- data/lib/katello/engine.rb +2 -4
- data/lib/katello/permission_creator.rb +6 -12
- data/lib/katello/plugin.rb +76 -80
- data/lib/katello/repository_types/python.rb +37 -0
- data/lib/katello/tasks/reimport.rake +0 -9
- data/lib/katello/tasks/repository.rake +3 -4
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +28 -29
- data/locale/bn/katello.po +699 -221
- data/locale/cs/katello.po +167 -59
- data/locale/de/katello.po +585 -352
- data/locale/en/katello.po +167 -59
- data/locale/es/katello.po +1388 -1189
- data/locale/fr/katello.po +1740 -1494
- data/locale/gu/katello.po +896 -416
- data/locale/hi/katello.po +892 -415
- data/locale/it/katello.po +371 -170
- data/locale/ja/katello.po +1657 -1439
- data/locale/katello.pot +933 -736
- data/locale/kn/katello.po +894 -416
- data/locale/ko/katello.po +515 -317
- data/locale/mr/katello.po +857 -415
- data/locale/or/katello.po +894 -416
- data/locale/pa/katello.po +874 -411
- data/locale/pt/katello.po +347 -154
- data/locale/pt_BR/katello.po +1398 -1215
- data/locale/ru/katello.po +671 -463
- data/locale/ta/katello.po +697 -221
- data/locale/te/katello.po +891 -415
- data/locale/zh_CN/katello.po +2029 -1845
- data/locale/zh_TW/katello.po +735 -407
- data/package.json +3 -1
- data/webpack/components/EditableTextInput/EditableTextInput.js +3 -3
- data/webpack/components/RoutedTabs/RoutedTabs.js +7 -8
- data/webpack/components/Table/TableWrapper.js +19 -11
- data/webpack/components/Table/helpers.js +1 -1
- data/webpack/components/extensions/HostDetails/Tabs/ContentTab.js +42 -0
- data/webpack/components/extensions/HostDetails/Tabs/SubscriptionTab.js +12 -0
- data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +4 -0
- data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +1 -1
- data/webpack/components/extensions/RegistrationCommands/index.js +1 -2
- data/webpack/components/pf3Table/formatters/selectionHeaderCellFormatter.js +2 -1
- data/webpack/fills_index.js +4 -1
- data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -4
- data/webpack/redux/reducers/RedHatRepositories/enabled.js +4 -1
- data/webpack/scenes/ContentViews/ContentViewsActions.js +16 -1
- data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -0
- data/webpack/scenes/ContentViews/ContentViewsPage.js +12 -22
- data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +4 -3
- data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +25 -14
- data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +4 -2
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +153 -0
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +21 -10
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +157 -19
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +100 -108
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +140 -16
- data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/publishedContentViewDetails.fixtures.json +367 -0
- data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +59 -6
- data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +43 -0
- data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +44 -13
- data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +161 -0
- data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +54 -0
- data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterCreateResult.fixtures.json +124 -0
- data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -6
- data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +7 -6
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +4 -3
- data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +71 -12
- data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +77 -0
- data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +13 -12
- data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +2 -2
- data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +17 -14
- data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +3 -3
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +2 -2
- data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +6 -2
- data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +61 -20
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskInProgressResponse.fixtures.json +71 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskResponse.fixtures.json +75 -0
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +86 -1
- data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +713 -0
- data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +184 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +104 -0
- data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +71 -0
- data/webpack/scenes/ContentViews/Publish/ContentViewPublishSelectors.js +17 -0
- data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +145 -0
- data/webpack/scenes/ContentViews/Publish/__tests__/environmentPaths.fixtures.json +352 -0
- data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +184 -0
- data/webpack/scenes/ContentViews/Publish/__tests__/publishResponse.fixture.json +69 -0
- data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +3 -0
- data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +75 -48
- data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +15 -2
- data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +6 -10
- data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +22 -10
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathActions.js +12 -0
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathConstants.js +2 -0
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathSelectors.js +16 -0
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +72 -0
- data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +8 -0
- data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +85 -0
- data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +9 -8
- data/webpack/scenes/Subscriptions/SubscriptionsPage.js +4 -25
- data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -3
- data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +3 -3
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +4 -2
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +24 -0
- data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Table.js +4 -1
- data/webpack/scenes/Subscriptions/index.js +1 -4
- metadata +74 -39
- data/app/lib/actions/candlepin/environment/create.rb +0 -21
- data/app/lib/actions/foreman/environment/destroy.rb +0 -23
- data/app/lib/actions/katello/content_view/environment_create.rb +0 -21
- data/app/lib/actions/katello/repository/export.rb +0 -85
- data/app/lib/actions/katello/repository/purge_empty_content.rb +0 -16
- data/app/lib/actions/katello/repository/upload_errata.rb +0 -38
- data/app/lib/katello/util/proxy_uri.rb +0 -64
- data/app/models/katello/rhsm_fact_importer.rb +0 -20
- data/app/models/katello/rhsm_fact_name.rb +0 -17
- data/app/models/katello/rhsm_fact_parser.rb +0 -120
data/locale/de/katello.po
CHANGED
@@ -1,40 +1,26 @@
|
|
1
1
|
# SOME DESCRIPTIVE TITLE.
|
2
2
|
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
-
# This file is distributed under the same license as the
|
4
|
-
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
3
|
+
# This file is distributed under the same license as the PACKAGE package.
|
5
4
|
#
|
6
5
|
# Translators:
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
#
|
12
|
-
# Markus Bucher <bucher@atix.de>, 2019
|
13
|
-
# simon11 <transifex@stieger.co>, 2020
|
14
|
-
# Martin Zimmermann <martin.zimmermann@gmx.com>, 2020
|
15
|
-
# Michael Moll, 2020
|
16
|
-
# Arnold Bechtoldt <mail@arnoldbechtoldt.com>, 2020
|
17
|
-
# abf90805572190d649c59f7a021d76cb, 2021
|
18
|
-
# Ulrich Habel <rhaen@pkgbox.de>, 2021
|
19
|
-
# Ettore Atalan <atalanttore@googlemail.com>, 2021
|
20
|
-
# Bryan Kearney <bryan.kearney@gmail.com>, 2021
|
21
|
-
# Bernhard Suttner <bernhard.suttner@atix.de>, 2021
|
22
|
-
# Lukáš Zapletal, 2021
|
23
|
-
# Wiederoder <stefanwiederoder@googlemail.com>, 2021
|
24
|
-
# Crited <Alexander.Stoll@netways.de>, 2021
|
25
|
-
#
|
6
|
+
# Miroslav Suchý <msuchy@redhat.com>, 2012-2013.
|
7
|
+
# hpeters <hpeters@redhat.com>, 2014. #zanata
|
8
|
+
# hpeters <hpeters@redhat.com>, 2015. #zanata
|
9
|
+
# jdimanos <jdimanos@redhat.com>, 2015. #zanata
|
10
|
+
# rgromans <rgromans@redhat.com>, 2015. #zanata
|
26
11
|
msgid ""
|
27
12
|
msgstr ""
|
28
|
-
"Project-Id-Version:
|
13
|
+
"Project-Id-Version: version 0.0.1\n"
|
29
14
|
"Report-Msgid-Bugs-To: \n"
|
30
|
-
"PO-Revision-Date:
|
31
|
-
"Last-Translator:
|
32
|
-
"Language-Team:
|
15
|
+
"PO-Revision-Date: 2015-04-28 01:24+0000\n"
|
16
|
+
"Last-Translator: hpeters <hpeters@redhat.com>\n"
|
17
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
18
|
+
"Language: de\n"
|
33
19
|
"MIME-Version: 1.0\n"
|
34
20
|
"Content-Type: text/plain; charset=UTF-8\n"
|
35
21
|
"Content-Transfer-Encoding: 8bit\n"
|
36
|
-
"Language: de\n"
|
37
22
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
23
|
+
"X-Generator: Zanata 3.6.0\n"
|
38
24
|
|
39
25
|
msgid ""
|
40
26
|
"\n"
|
@@ -50,7 +36,7 @@ msgstr ""
|
|
50
36
|
msgid " %{package_count} Package(s)"
|
51
37
|
msgstr ""
|
52
38
|
|
53
|
-
msgid " Content view updated
|
39
|
+
msgid " Content view updated"
|
54
40
|
msgstr ""
|
55
41
|
|
56
42
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
@@ -59,6 +45,9 @@ msgstr ""
|
|
59
45
|
msgid " RPMs"
|
60
46
|
msgstr ""
|
61
47
|
|
48
|
+
msgid " View task details "
|
49
|
+
msgstr ""
|
50
|
+
|
62
51
|
msgid " environment cannot be set to an environment already on its path"
|
63
52
|
msgstr " Umgebung darf sich nicht bereits auf dem Pfad befinden"
|
64
53
|
|
@@ -66,7 +55,7 @@ msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated po
|
|
66
55
|
msgstr ""
|
67
56
|
|
68
57
|
msgid "%s Available"
|
69
|
-
msgstr "
|
58
|
+
msgstr ""
|
70
59
|
|
71
60
|
msgid "%s Errata"
|
72
61
|
msgstr "%s Errata"
|
@@ -77,7 +66,7 @@ msgstr[0] ""
|
|
77
66
|
msgstr[1] ""
|
78
67
|
|
79
68
|
msgid "%s Used"
|
80
|
-
msgstr "
|
69
|
+
msgstr ""
|
81
70
|
|
82
71
|
msgid "%s ago"
|
83
72
|
msgstr "vor %s"
|
@@ -278,7 +267,7 @@ msgid "%{unused_substitutions} cannot be specified for %{content_name} as that i
|
|
278
267
|
msgstr ""
|
279
268
|
|
280
269
|
msgid "%{used} of %{total}"
|
281
|
-
msgstr "
|
270
|
+
msgstr ""
|
282
271
|
|
283
272
|
msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
|
284
273
|
msgstr ""
|
@@ -292,6 +281,7 @@ msgstr ""
|
|
292
281
|
msgid ", must be unique to major and version id version."
|
293
282
|
msgstr ""
|
294
283
|
|
284
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
295
285
|
msgid ": '%s' is a built-in environment"
|
296
286
|
msgstr ": \"%s\" ist eine integrierte Umgebung"
|
297
287
|
|
@@ -328,8 +318,11 @@ msgstr "Für dieses Repository wurde eine große Anzahl von Errata synchronisier
|
|
328
318
|
msgid "A list of subscriptions expiring soon"
|
329
319
|
msgstr ""
|
330
320
|
|
321
|
+
msgid "A new version of "
|
322
|
+
msgstr ""
|
323
|
+
|
331
324
|
msgid "A post-promotion summary of hosts with installable errata"
|
332
|
-
msgstr "
|
325
|
+
msgstr ""
|
333
326
|
|
334
327
|
msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
|
335
328
|
msgstr ""
|
@@ -337,7 +330,7 @@ msgstr ""
|
|
337
330
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
338
331
|
msgstr "Ein Servicelevel für automatische Neusubskription, z. B. SELBSTHILFE"
|
339
332
|
|
340
|
-
msgid "A smart proxy seems to have been refreshed without pulpcore being running.
|
333
|
+
msgid "A smart proxy seems to have been refreshed without pulpcore being running. Please refresh the smart proxy after ensuring that pulpcore services are running."
|
341
334
|
msgstr ""
|
342
335
|
|
343
336
|
msgid "A summary of available and applicable errata for your hosts"
|
@@ -356,10 +349,10 @@ msgid "Accept action timeout"
|
|
356
349
|
msgstr ""
|
357
350
|
|
358
351
|
msgid "Account Number"
|
359
|
-
msgstr "
|
352
|
+
msgstr ""
|
360
353
|
|
361
354
|
msgid "Action"
|
362
|
-
msgstr "
|
355
|
+
msgstr ""
|
363
356
|
|
364
357
|
msgid "Action not allowed for the default smart proxy."
|
365
358
|
msgstr ""
|
@@ -371,7 +364,7 @@ msgid "Action unauthorized to be performed on selected hosts."
|
|
371
364
|
msgstr ""
|
372
365
|
|
373
366
|
msgid "Action with sub plans"
|
374
|
-
msgstr "
|
367
|
+
msgstr ""
|
375
368
|
|
376
369
|
msgid "Activation Keys"
|
377
370
|
msgstr "Aktivierungsschlüssel"
|
@@ -379,32 +372,38 @@ msgstr "Aktivierungsschlüssel"
|
|
379
372
|
msgid "Activation key ID"
|
380
373
|
msgstr "Aktivierungsschlüssel-ID"
|
381
374
|
|
382
|
-
msgid "Activation key for subscription-manager client
|
375
|
+
msgid "Activation key for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. For multiple keys use `activation_keys` param instead."
|
383
376
|
msgstr ""
|
384
377
|
|
385
378
|
msgid "Activation key(s) for Subscription Manager."
|
386
379
|
msgstr ""
|
387
380
|
|
388
|
-
msgid "Activation key(s) for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys"
|
389
|
-
msgstr ""
|
390
|
-
|
391
381
|
msgid "Activation keys and subscriptions can be managed"
|
392
382
|
msgstr "Aktivierungsschlüssel und Subskriptionen können verwaltet werden"
|
393
383
|
|
384
|
+
msgid "Activation keys for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys."
|
385
|
+
msgstr ""
|
386
|
+
|
394
387
|
msgid "Activation keys: "
|
395
388
|
msgstr ""
|
396
389
|
|
397
390
|
msgid "Active Subscriptions"
|
398
|
-
msgstr "
|
391
|
+
msgstr ""
|
399
392
|
|
400
393
|
msgid "Active only"
|
401
394
|
msgstr "Nur aktive"
|
402
395
|
|
396
|
+
msgid "Add"
|
397
|
+
msgstr ""
|
398
|
+
|
403
399
|
msgid "Add Subscriptions"
|
404
400
|
msgstr ""
|
405
401
|
|
406
402
|
msgid "Add a subscription to a host"
|
407
|
-
msgstr "
|
403
|
+
msgstr ""
|
404
|
+
|
405
|
+
msgid "Add component"
|
406
|
+
msgstr ""
|
408
407
|
|
409
408
|
msgid "Add components to the content view"
|
410
409
|
msgstr ""
|
@@ -416,10 +415,10 @@ msgid "Add filters using the 'Add filter' button above."
|
|
416
415
|
msgstr ""
|
417
416
|
|
418
417
|
msgid "Add host to the host collection"
|
419
|
-
msgstr "
|
418
|
+
msgstr ""
|
420
419
|
|
421
420
|
msgid "Add lifecycle environments to the smart proxy"
|
422
|
-
msgstr "
|
421
|
+
msgstr ""
|
423
422
|
|
424
423
|
msgid "Add one or more host collections to one or more hosts"
|
425
424
|
msgstr ""
|
@@ -443,11 +442,14 @@ msgid "Add to this filter using the 'Add package group' button."
|
|
443
442
|
msgstr ""
|
444
443
|
|
445
444
|
msgid "Added"
|
446
|
-
msgstr "
|
445
|
+
msgstr ""
|
447
446
|
|
448
447
|
msgid "Added Content:"
|
449
448
|
msgstr "Hinzugefügte Inhalte:"
|
450
449
|
|
450
|
+
msgid "Added component to content view"
|
451
|
+
msgstr ""
|
452
|
+
|
451
453
|
msgid "Adding content units"
|
452
454
|
msgstr ""
|
453
455
|
|
@@ -470,17 +472,26 @@ msgid "All available architectures for this repo are enabled."
|
|
470
472
|
msgstr ""
|
471
473
|
|
472
474
|
msgid "All errata applied"
|
473
|
-
msgstr "
|
475
|
+
msgstr ""
|
476
|
+
|
477
|
+
msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
478
|
+
msgstr ""
|
479
|
+
|
480
|
+
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
481
|
+
msgstr ""
|
474
482
|
|
475
483
|
msgid "Allow new Host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
|
476
484
|
msgstr ""
|
477
485
|
|
478
486
|
msgid "Alter a hosts host collections"
|
479
|
-
msgstr "
|
487
|
+
msgstr ""
|
480
488
|
|
481
489
|
msgid "Always Use Latest (currently %{version})"
|
482
490
|
msgstr ""
|
483
491
|
|
492
|
+
msgid "Always update to latest version"
|
493
|
+
msgstr ""
|
494
|
+
|
484
495
|
msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
|
485
496
|
msgstr ""
|
486
497
|
|
@@ -494,8 +505,6 @@ msgid ""
|
|
494
505
|
"An error occurred during the sync \n"
|
495
506
|
"%{error_message}"
|
496
507
|
msgstr ""
|
497
|
-
"Fehler bei der Synchronisation\n"
|
498
|
-
"%{error_message}"
|
499
508
|
|
500
509
|
msgid "Another component already includes content view with ID %s"
|
501
510
|
msgstr ""
|
@@ -513,7 +522,7 @@ msgid "Applicability Batch Size"
|
|
513
522
|
msgstr ""
|
514
523
|
|
515
524
|
msgid "Arch"
|
516
|
-
msgstr "
|
525
|
+
msgstr ""
|
517
526
|
|
518
527
|
msgid "Architecture"
|
519
528
|
msgstr ""
|
@@ -522,7 +531,7 @@ msgid "Architecture of content in the repository"
|
|
522
531
|
msgstr ""
|
523
532
|
|
524
533
|
msgid "Architecture(s)"
|
525
|
-
msgstr "
|
534
|
+
msgstr ""
|
526
535
|
|
527
536
|
msgid "Are you sure you want to delete the manifest?"
|
528
537
|
msgstr ""
|
@@ -546,7 +555,7 @@ msgid "Array of content view component IDs to remove. Identifier of the componen
|
|
546
555
|
msgstr ""
|
547
556
|
|
548
557
|
msgid "Array of host ids"
|
549
|
-
msgstr "
|
558
|
+
msgstr ""
|
550
559
|
|
551
560
|
msgid "Array of local pool IDs. Only pools originating upstream are accepted."
|
552
561
|
msgstr ""
|
@@ -558,7 +567,7 @@ msgid "Array of subscriptions to add"
|
|
558
567
|
msgstr "Array der hinzuzufügenden Subskriptionen"
|
559
568
|
|
560
569
|
msgid "Array of subscriptions to remove"
|
561
|
-
msgstr "
|
570
|
+
msgstr ""
|
562
571
|
|
563
572
|
msgid "Array of uploads to import"
|
564
573
|
msgstr ""
|
@@ -587,7 +596,7 @@ msgid "Associated location IDs"
|
|
587
596
|
msgstr ""
|
588
597
|
|
589
598
|
msgid "Associations"
|
590
|
-
msgstr "
|
599
|
+
msgstr ""
|
591
600
|
|
592
601
|
msgid "At least one Content View Version must be specified"
|
593
602
|
msgstr "Mindestens eine Inhaltsansichtsversion muss angegeben werden"
|
@@ -601,23 +610,30 @@ msgstr "Zu mindestens einem Aktivierungsschlüssel muss eine Lebenszyklusumgebun
|
|
601
610
|
msgid "At least one organization must exist."
|
602
611
|
msgstr "Mindestens eine Organisation muss existieren."
|
603
612
|
|
613
|
+
# translation auto-copied from project rhsm-web, version 0.0, document management, author jdimanos
|
604
614
|
msgid "Attach a subscription"
|
605
615
|
msgstr "Subskription verknüpfen"
|
606
616
|
|
607
617
|
msgid "Attach subscriptions"
|
608
|
-
msgstr "
|
618
|
+
msgstr ""
|
609
619
|
|
610
620
|
msgid "Attach subscriptions to %s"
|
611
|
-
msgstr "
|
621
|
+
msgstr ""
|
612
622
|
|
613
623
|
msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
|
614
624
|
msgstr ""
|
615
625
|
|
626
|
+
msgid "Auth URL requires Auth token be set."
|
627
|
+
msgstr ""
|
628
|
+
|
629
|
+
msgid "Auth token requires Auth URL be set."
|
630
|
+
msgstr ""
|
631
|
+
|
616
632
|
msgid "Author"
|
617
|
-
msgstr "
|
633
|
+
msgstr ""
|
618
634
|
|
619
635
|
msgid "Auto Publish"
|
620
|
-
msgstr "
|
636
|
+
msgstr ""
|
621
637
|
|
622
638
|
msgid "Auto Publish - Triggered by '%s'"
|
623
639
|
msgstr ""
|
@@ -658,6 +674,7 @@ msgstr "Zu aktivierende Basisarchitektur"
|
|
658
674
|
msgid "Batch size to sync repositories in."
|
659
675
|
msgstr ""
|
660
676
|
|
677
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
661
678
|
msgid "Beta"
|
662
679
|
msgstr "Beta"
|
663
680
|
|
@@ -673,9 +690,11 @@ msgstr ""
|
|
673
690
|
msgid "Branches updated"
|
674
691
|
msgstr ""
|
675
692
|
|
693
|
+
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
676
694
|
msgid "Bug Fix"
|
677
695
|
msgstr "Bugfix"
|
678
696
|
|
697
|
+
# translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
|
679
698
|
msgid "Bugfix"
|
680
699
|
msgstr "Bugfix"
|
681
700
|
|
@@ -685,12 +704,15 @@ msgstr ""
|
|
685
704
|
msgid "CDN SSL version"
|
686
705
|
msgstr ""
|
687
706
|
|
707
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
688
708
|
msgid "CDN loading error: %s not found"
|
689
709
|
msgstr "CDN-Ladefehler: %s nicht gefunden"
|
690
710
|
|
711
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
691
712
|
msgid "CDN loading error: access denied to %s"
|
692
713
|
msgstr "CDN-Ladefehler: Zugriff auf %s verweigert"
|
693
714
|
|
715
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
694
716
|
msgid "CDN loading error: access forbidden to %s"
|
695
717
|
msgstr "CDN-Ladefehler: Zugriff auf %s verweigert"
|
696
718
|
|
@@ -718,9 +740,11 @@ msgstr "Nur Inhalt aus der standardmäßigen Inhaltsansicht kann entfernt werden
|
|
718
740
|
msgid "Can only upload to Yum Repositories."
|
719
741
|
msgstr ""
|
720
742
|
|
743
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
721
744
|
msgid "Can't update the '%s' environment"
|
722
745
|
msgstr "\"%s\" Umgebung kann nicht aktualisiert werden"
|
723
746
|
|
747
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
724
748
|
msgid "Cancel"
|
725
749
|
msgstr "Abbrechen"
|
726
750
|
|
@@ -730,8 +754,10 @@ msgstr "Repository-Suche abbrechen"
|
|
730
754
|
msgid "Cancel running smart proxy synchronization"
|
731
755
|
msgstr ""
|
732
756
|
|
757
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
758
|
+
#, fuzzy
|
733
759
|
msgid "Canceled"
|
734
|
-
msgstr "Abgebrochen"
|
760
|
+
msgstr "Abgebrochen."
|
735
761
|
|
736
762
|
msgid "Cancelled"
|
737
763
|
msgstr ""
|
@@ -787,6 +813,7 @@ msgstr "\"%{view}\" kann nicht gelöscht werden aufgrund zugewiesener %{dependen
|
|
787
813
|
msgid "Cannot delete Red Hat product: %{product}"
|
788
814
|
msgstr ""
|
789
815
|
|
816
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
790
817
|
msgid "Cannot delete from %s, view does not exist there."
|
791
818
|
msgstr "Aus %s kann nicht gelöscht werden, die Ansicht existiert dort nicht."
|
792
819
|
|
@@ -812,7 +839,7 @@ msgid "Cannot delete version while it is in environments: %s"
|
|
812
839
|
msgstr "Version kann nicht gelöscht werden, während sie in Umgebungen ist: %s"
|
813
840
|
|
814
841
|
msgid "Cannot delete version while it is in use by composite content views: %s"
|
815
|
-
msgstr "
|
842
|
+
msgstr ""
|
816
843
|
|
817
844
|
msgid "Cannot delete view while it exists in environments"
|
818
845
|
msgstr "Ansicht kann nicht gelöscht werden, während sie in Umgebungen existiert"
|
@@ -841,6 +868,7 @@ msgstr ""
|
|
841
868
|
msgid "Cannot publish default content view"
|
842
869
|
msgstr "Standardinhaltsansicht kann nicht veröffentlicht werden"
|
843
870
|
|
871
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
844
872
|
msgid "Cannot register a system to the '%s' environment"
|
845
873
|
msgstr "System kann nicht in der \"%s\" Umgebung registriert werden"
|
846
874
|
|
@@ -887,7 +915,7 @@ msgid "Check services before actions"
|
|
887
915
|
msgstr ""
|
888
916
|
|
889
917
|
msgid "Checksum"
|
890
|
-
msgstr "
|
918
|
+
msgstr ""
|
891
919
|
|
892
920
|
msgid "Checksum of file to upload"
|
893
921
|
msgstr ""
|
@@ -904,12 +932,14 @@ msgstr ""
|
|
904
932
|
msgid "Click here to go to the tasks page for the task."
|
905
933
|
msgstr ""
|
906
934
|
|
935
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
907
936
|
msgid "Clone"
|
908
937
|
msgstr "Klonen"
|
909
938
|
|
910
939
|
msgid "Close"
|
911
|
-
msgstr "
|
940
|
+
msgstr ""
|
912
941
|
|
942
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
913
943
|
msgid "Collapse All"
|
914
944
|
msgstr "Alle einklappen"
|
915
945
|
|
@@ -922,12 +952,16 @@ msgstr ""
|
|
922
952
|
msgid "Comma-separated list of tags to sync for Container Image repository"
|
923
953
|
msgstr ""
|
924
954
|
|
955
|
+
# translation auto-copied from project PressGang CCMS topics, version 1, document 15564-459330
|
925
956
|
msgid "Component"
|
926
957
|
msgstr "Komponente"
|
927
958
|
|
928
959
|
msgid "Component Content View"
|
929
960
|
msgstr ""
|
930
961
|
|
962
|
+
msgid "Component content view"
|
963
|
+
msgstr ""
|
964
|
+
|
931
965
|
msgid "Composite Content View"
|
932
966
|
msgstr ""
|
933
967
|
|
@@ -938,7 +972,7 @@ msgid "Composite content view"
|
|
938
972
|
msgstr "Verbundinhaltsansicht"
|
939
973
|
|
940
974
|
msgid "Compute resource IDs"
|
941
|
-
msgstr "
|
975
|
+
msgstr ""
|
942
976
|
|
943
977
|
msgid "Confirm Deletion"
|
944
978
|
msgstr ""
|
@@ -949,8 +983,11 @@ msgstr ""
|
|
949
983
|
msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
|
950
984
|
msgstr ""
|
951
985
|
|
986
|
+
msgid "Consisting of multiple component content views"
|
987
|
+
msgstr ""
|
988
|
+
|
952
989
|
msgid "Consumed"
|
953
|
-
msgstr "
|
990
|
+
msgstr ""
|
954
991
|
|
955
992
|
msgid "Container Image Manifest"
|
956
993
|
msgstr ""
|
@@ -973,6 +1010,7 @@ msgstr ""
|
|
973
1010
|
msgid "Container image tag"
|
974
1011
|
msgstr ""
|
975
1012
|
|
1013
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
976
1014
|
msgid "Content"
|
977
1015
|
msgstr "Inhalt"
|
978
1016
|
|
@@ -986,7 +1024,7 @@ msgid "Content Credentials"
|
|
986
1024
|
msgstr ""
|
987
1025
|
|
988
1026
|
msgid "Content Download URL"
|
989
|
-
msgstr "
|
1027
|
+
msgstr ""
|
990
1028
|
|
991
1029
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
992
1030
|
msgstr ""
|
@@ -998,11 +1036,12 @@ msgid "Content Source"
|
|
998
1036
|
msgstr "Inhaltsquelle"
|
999
1037
|
|
1000
1038
|
msgid "Content Sync"
|
1001
|
-
msgstr "
|
1039
|
+
msgstr ""
|
1002
1040
|
|
1003
1041
|
msgid "Content Types"
|
1004
1042
|
msgstr ""
|
1005
1043
|
|
1044
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
1006
1045
|
msgid "Content View"
|
1007
1046
|
msgstr "Inhaltsansicht"
|
1008
1047
|
|
@@ -1018,8 +1057,10 @@ msgstr ""
|
|
1018
1057
|
msgid "Content View Details"
|
1019
1058
|
msgstr ""
|
1020
1059
|
|
1060
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
1061
|
+
#, fuzzy
|
1021
1062
|
msgid "Content View Filter id"
|
1022
|
-
msgstr "
|
1063
|
+
msgstr "Inhaltsansichten-Übersicht"
|
1023
1064
|
|
1024
1065
|
msgid "Content View Filter identifier"
|
1025
1066
|
msgstr ""
|
@@ -1043,11 +1084,12 @@ msgid "Content View Version specified in the metadata - '%{name}' already exists
|
|
1043
1084
|
msgstr ""
|
1044
1085
|
|
1045
1086
|
msgid "Content View and Environment not set for registration."
|
1046
|
-
msgstr "
|
1087
|
+
msgstr ""
|
1047
1088
|
|
1048
1089
|
msgid "Content View id"
|
1049
1090
|
msgstr ""
|
1050
1091
|
|
1092
|
+
# translation auto-copied from project PressGang CCMS topics, version 1, document 20647-698348, author hpeters
|
1051
1093
|
msgid "Content Views"
|
1052
1094
|
msgstr "Inhaltsansichten"
|
1053
1095
|
|
@@ -1069,12 +1111,19 @@ msgstr ""
|
|
1069
1111
|
msgid "Content type"
|
1070
1112
|
msgstr ""
|
1071
1113
|
|
1114
|
+
msgid "Content type %{content_type_string} does not belong to an enabled repo type."
|
1115
|
+
msgstr ""
|
1116
|
+
|
1117
|
+
msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
|
1118
|
+
msgstr ""
|
1119
|
+
|
1072
1120
|
msgid "Content view"
|
1073
1121
|
msgstr ""
|
1074
1122
|
|
1075
1123
|
msgid "Content view ${name} created"
|
1076
1124
|
msgstr ""
|
1077
1125
|
|
1126
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
1078
1127
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1079
1128
|
msgstr "Inhaltsansicht \"%{view}\" ist nicht in der Umgebung \"%{env}\""
|
1080
1129
|
|
@@ -1115,13 +1164,16 @@ msgid "Contents of requirement yaml file to sync from URL"
|
|
1115
1164
|
msgstr ""
|
1116
1165
|
|
1117
1166
|
msgid "Context"
|
1118
|
-
msgstr "
|
1167
|
+
msgstr ""
|
1119
1168
|
|
1120
1169
|
msgid "Contract"
|
1121
|
-
msgstr "
|
1170
|
+
msgstr ""
|
1122
1171
|
|
1123
1172
|
msgid "Contract Number"
|
1124
|
-
msgstr "
|
1173
|
+
msgstr ""
|
1174
|
+
|
1175
|
+
msgid "Copy"
|
1176
|
+
msgstr ""
|
1125
1177
|
|
1126
1178
|
msgid "Copy an activation key"
|
1127
1179
|
msgstr "Aktivierungsschlüssel kopieren"
|
@@ -1132,6 +1184,7 @@ msgstr ""
|
|
1132
1184
|
msgid "Cores: %s"
|
1133
1185
|
msgstr "Kerne: %s"
|
1134
1186
|
|
1187
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1135
1188
|
msgid "Could not delete organization '%s'."
|
1136
1189
|
msgstr "Organisation \"%s\" konnte nicht gelöscht werden."
|
1137
1190
|
|
@@ -1180,6 +1233,7 @@ msgstr "Inhaltsansichtsfilter mit ID=%s konnte nicht gefunden werden."
|
|
1180
1233
|
msgid "Couldn't find Organization '%s'."
|
1181
1234
|
msgstr "Organisation \"%s\" konnte nicht gefunden werden."
|
1182
1235
|
|
1236
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1183
1237
|
msgid "Couldn't find activation key '%s'"
|
1184
1238
|
msgstr "Aktivierungsschlüssel \"%s\" konnte nicht gefunden werden"
|
1185
1239
|
|
@@ -1198,6 +1252,7 @@ msgstr "Inhaltshost-Inhaltsansichts-ID \"%s\" konnte nicht gefunden werden."
|
|
1198
1252
|
msgid "Couldn't find content host environment '%s'"
|
1199
1253
|
msgstr "Inhaltshostumgebung \"%s\" konnte nicht gefunden werden."
|
1200
1254
|
|
1255
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
1201
1256
|
msgid "Couldn't find content view '%s'"
|
1202
1257
|
msgstr "Inhaltsansicht \"%s\" konnte nicht gefunden werden."
|
1203
1258
|
|
@@ -1207,6 +1262,7 @@ msgstr "Inhaltsansichtsversion \"%s\" konnte nicht gefunden werden."
|
|
1207
1262
|
msgid "Couldn't find content view versions '%s'"
|
1208
1263
|
msgstr "Inhaltsansichtsversionen \"%s\" konnte nicht gefunden werden."
|
1209
1264
|
|
1265
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1210
1266
|
msgid "Couldn't find environment '%s'"
|
1211
1267
|
msgstr "Umgebung \"%s\" konnte nicht gefunden werden."
|
1212
1268
|
|
@@ -1217,17 +1273,20 @@ msgid "Couldn't find host collection '%s'"
|
|
1217
1273
|
msgstr "Hostsammlung \"%s\" konnte nicht gefunden werden."
|
1218
1274
|
|
1219
1275
|
msgid "Couldn't find host with host id '%s'"
|
1220
|
-
msgstr "
|
1276
|
+
msgstr ""
|
1221
1277
|
|
1278
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1222
1279
|
msgid "Couldn't find organization '%s'"
|
1223
1280
|
msgstr "Organisation \"%s\" konnte nicht gefunden werden."
|
1224
1281
|
|
1225
1282
|
msgid "Couldn't find prior-environment '%s'"
|
1226
1283
|
msgstr "Vorherige Umgebung \"%s\" konnte nicht gefunden werden."
|
1227
1284
|
|
1285
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1228
1286
|
msgid "Couldn't find product with id '%s'"
|
1229
1287
|
msgstr "Produkt mit ID \"%s\" konnte nicht gefunden werden."
|
1230
1288
|
|
1289
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1231
1290
|
msgid "Couldn't find repository '%s'"
|
1232
1291
|
msgstr "Repository \"%s\" konnte nicht gefunden werden."
|
1233
1292
|
|
@@ -1240,6 +1299,7 @@ msgstr "Subjekt der Synchronisation konnte nicht gefunden werden."
|
|
1240
1299
|
msgid "Count"
|
1241
1300
|
msgstr ""
|
1242
1301
|
|
1302
|
+
# translation auto-copied from project NetworkManager, version 0.9.9.0, document NetworkManager, author hpeters
|
1243
1303
|
msgid "Create"
|
1244
1304
|
msgstr "Erstellen"
|
1245
1305
|
|
@@ -1282,6 +1342,7 @@ msgstr "Synchronisationsplan erstellen"
|
|
1282
1342
|
msgid "Create an activation key"
|
1283
1343
|
msgstr "Aktivierungsschlüssel erstellen"
|
1284
1344
|
|
1345
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
1285
1346
|
msgid "Create an environment"
|
1286
1347
|
msgstr "Umgebung erstellen"
|
1287
1348
|
|
@@ -1291,6 +1352,12 @@ msgstr "Umgebung in einer Organisation erstellen"
|
|
1291
1352
|
msgid "Create an upload request"
|
1292
1353
|
msgstr "Upload-Anforderung erstellen"
|
1293
1354
|
|
1355
|
+
msgid "Create content view"
|
1356
|
+
msgstr ""
|
1357
|
+
|
1358
|
+
msgid "Create filter"
|
1359
|
+
msgstr ""
|
1360
|
+
|
1294
1361
|
msgid "Create organization"
|
1295
1362
|
msgstr "Organisation erstellen"
|
1296
1363
|
|
@@ -1298,7 +1365,7 @@ msgid "Creating local repository"
|
|
1298
1365
|
msgstr ""
|
1299
1366
|
|
1300
1367
|
msgid "Cron expression is not valid!"
|
1301
|
-
msgstr "
|
1368
|
+
msgstr ""
|
1302
1369
|
|
1303
1370
|
msgid "Current organization has no manifest imported."
|
1304
1371
|
msgstr ""
|
@@ -1309,6 +1376,7 @@ msgstr ""
|
|
1309
1376
|
msgid "Current organization not set."
|
1310
1377
|
msgstr ""
|
1311
1378
|
|
1379
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
1312
1380
|
msgid "Custom Content Repositories"
|
1313
1381
|
msgstr "Benutzerdefinierte Inhaltsrepositorys"
|
1314
1382
|
|
@@ -1319,10 +1387,10 @@ msgid "Custom repositories cannot be disabled."
|
|
1319
1387
|
msgstr "Benutzerdefinierte Repositorys können nicht deaktiviert werden."
|
1320
1388
|
|
1321
1389
|
msgid "Database connection"
|
1322
|
-
msgstr "
|
1390
|
+
msgstr ""
|
1323
1391
|
|
1324
1392
|
msgid "Date"
|
1325
|
-
msgstr "
|
1393
|
+
msgstr ""
|
1326
1394
|
|
1327
1395
|
msgid "Date format is incorrect."
|
1328
1396
|
msgstr "Datumsformat ist ungültig."
|
@@ -1339,6 +1407,7 @@ msgstr ""
|
|
1339
1407
|
msgid "Deb Packages"
|
1340
1408
|
msgstr ""
|
1341
1409
|
|
1410
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1342
1411
|
msgid "Debug Certificate"
|
1343
1412
|
msgstr "Debug-Zertifikat"
|
1344
1413
|
|
@@ -1441,9 +1510,11 @@ msgstr ""
|
|
1441
1510
|
msgid "Default user data for new Operating Systems created from synced content"
|
1442
1511
|
msgstr ""
|
1443
1512
|
|
1513
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
|
1444
1514
|
msgid "Delete"
|
1445
1515
|
msgstr "Löschen"
|
1446
1516
|
|
1517
|
+
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
1447
1518
|
msgid "Delete Activation Key"
|
1448
1519
|
msgstr "Aktivierungsschlüssel löschen"
|
1449
1520
|
|
@@ -1453,6 +1524,7 @@ msgstr ""
|
|
1453
1524
|
msgid "Delete Lifecycle Environment"
|
1454
1525
|
msgstr "Lebenszyklusumgebung löschen"
|
1455
1526
|
|
1527
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
1456
1528
|
msgid "Delete Manifest"
|
1457
1529
|
msgstr "Manifest löschen"
|
1458
1530
|
|
@@ -1489,6 +1561,9 @@ msgstr "Upload-Anforderung löschen"
|
|
1489
1561
|
msgid "Delete manifest from Red Hat provider"
|
1490
1562
|
msgstr "Manifest vom Red Hat Anbieter löschen"
|
1491
1563
|
|
1564
|
+
msgid "Delete multiple filters from a content view"
|
1565
|
+
msgstr ""
|
1566
|
+
|
1492
1567
|
msgid "Deleted consumer '%s'"
|
1493
1568
|
msgstr "Verbraucher \"%s\" gelöscht"
|
1494
1569
|
|
@@ -1499,7 +1574,7 @@ msgid "Deleting manifest in '%{subject}' failed."
|
|
1499
1574
|
msgstr ""
|
1500
1575
|
|
1501
1576
|
msgid "Description"
|
1502
|
-
msgstr "
|
1577
|
+
msgstr ""
|
1503
1578
|
|
1504
1579
|
msgid "Description for the content view"
|
1505
1580
|
msgstr "Beschreibung der Inhaltsansicht"
|
@@ -1519,6 +1594,7 @@ msgstr ""
|
|
1519
1594
|
msgid "Destination Server name"
|
1520
1595
|
msgstr ""
|
1521
1596
|
|
1597
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
1522
1598
|
msgid "Destroy"
|
1523
1599
|
msgstr "Löschen"
|
1524
1600
|
|
@@ -1564,12 +1640,16 @@ msgstr "Ein oder mehrere Repositorys löschen"
|
|
1564
1640
|
msgid "Details"
|
1565
1641
|
msgstr "Details"
|
1566
1642
|
|
1643
|
+
msgid "Determining settings for ${name}"
|
1644
|
+
msgstr ""
|
1645
|
+
|
1567
1646
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1568
1647
|
msgstr ""
|
1569
1648
|
|
1570
1649
|
msgid "Directory containing the exported Content View Version"
|
1571
1650
|
msgstr ""
|
1572
1651
|
|
1652
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author rgromans
|
1573
1653
|
msgid "Disable"
|
1574
1654
|
msgstr "Deaktivieren"
|
1575
1655
|
|
@@ -1592,7 +1672,7 @@ msgid "Disconnected mode"
|
|
1592
1672
|
msgstr ""
|
1593
1673
|
|
1594
1674
|
msgid "Discover"
|
1595
|
-
msgstr "
|
1675
|
+
msgstr ""
|
1596
1676
|
|
1597
1677
|
msgid "Discover Repositories"
|
1598
1678
|
msgstr "Repositorys suchen"
|
@@ -1607,7 +1687,7 @@ msgid "Do not wait for the update action to finish. Default: true"
|
|
1607
1687
|
msgstr ""
|
1608
1688
|
|
1609
1689
|
msgid "Domain IDs"
|
1610
|
-
msgstr "
|
1690
|
+
msgstr ""
|
1611
1691
|
|
1612
1692
|
msgid "Download Policy of the capsule, must be one of %s"
|
1613
1693
|
msgstr ""
|
@@ -1618,12 +1698,14 @@ msgstr "Debug-Zertifikat herunterladen"
|
|
1618
1698
|
msgid "Duplicate branches specified - %{branches}"
|
1619
1699
|
msgstr ""
|
1620
1700
|
|
1701
|
+
# translation auto-copied from project totem, version 3.8.2, document totem
|
1621
1702
|
msgid "Duration"
|
1622
1703
|
msgstr "Dauer"
|
1623
1704
|
|
1624
1705
|
msgid "ERRATA ADVISORY"
|
1625
1706
|
msgstr ""
|
1626
1707
|
|
1708
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
1627
1709
|
msgid "Edit"
|
1628
1710
|
msgstr "Bearbeiten"
|
1629
1711
|
|
@@ -1636,11 +1718,12 @@ msgstr "Entweder müssen beide Parameter \"content_view_id\" und \"environment_i
|
|
1636
1718
|
msgid "Either environments or versions must be specified."
|
1637
1719
|
msgstr "Entweder Umgebungen oder Versionen müssen angegeben werden."
|
1638
1720
|
|
1721
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
1639
1722
|
msgid "Either organization ID or environment ID needs to be specified"
|
1640
1723
|
msgstr "Entweder Organisations-ID oder Umgebungs-ID muss angegeben werden."
|
1641
1724
|
|
1642
1725
|
msgid "Either packages or groups must be provided"
|
1643
|
-
msgstr "
|
1726
|
+
msgstr ""
|
1644
1727
|
|
1645
1728
|
msgid "Either set the content view with the latest flag or set the content view version"
|
1646
1729
|
msgstr ""
|
@@ -1648,6 +1731,7 @@ msgstr ""
|
|
1648
1731
|
msgid "Either set the latest content view or the content view version. Cannot set both"
|
1649
1732
|
msgstr ""
|
1650
1733
|
|
1734
|
+
# translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author rgromans
|
1651
1735
|
msgid "Enable"
|
1652
1736
|
msgstr "Aktivieren"
|
1653
1737
|
|
@@ -1664,20 +1748,21 @@ msgid "Enable/Disable auto publish of composite view"
|
|
1664
1748
|
msgstr ""
|
1665
1749
|
|
1666
1750
|
msgid "Enabled"
|
1667
|
-
msgstr "
|
1751
|
+
msgstr ""
|
1668
1752
|
|
1669
1753
|
msgid "Enabled Repositories"
|
1670
|
-
msgstr "
|
1754
|
+
msgstr ""
|
1671
1755
|
|
1672
1756
|
msgid "Enabling Simple Content Access failed for '%{subject}'."
|
1673
1757
|
msgstr ""
|
1674
1758
|
|
1675
1759
|
msgid "End Date"
|
1676
|
-
msgstr "
|
1760
|
+
msgstr ""
|
1677
1761
|
|
1678
1762
|
msgid "Ends"
|
1679
|
-
msgstr "
|
1763
|
+
msgstr ""
|
1680
1764
|
|
1765
|
+
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
1681
1766
|
msgid "Enhancement"
|
1682
1767
|
msgstr "Erweiterung"
|
1683
1768
|
|
@@ -1688,7 +1773,7 @@ msgid "Environment"
|
|
1688
1773
|
msgstr "Umgebung"
|
1689
1774
|
|
1690
1775
|
msgid "Environment IDs"
|
1691
|
-
msgstr "
|
1776
|
+
msgstr ""
|
1692
1777
|
|
1693
1778
|
msgid "Environment cannot be in its own promotion path"
|
1694
1779
|
msgstr "Umgebung kann nicht in ihrem eigenen Übertragungspfad liegen"
|
@@ -1697,17 +1782,20 @@ msgid "Environment identifier"
|
|
1697
1782
|
msgstr ""
|
1698
1783
|
|
1699
1784
|
msgid "Environments"
|
1700
|
-
msgstr "
|
1785
|
+
msgstr ""
|
1701
1786
|
|
1702
1787
|
msgid "Errata"
|
1703
1788
|
msgstr "Errata"
|
1704
1789
|
|
1790
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
1705
1791
|
msgid "Errata ID"
|
1706
1792
|
msgstr "Errata-ID"
|
1707
1793
|
|
1794
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1708
1795
|
msgid "Errata Install"
|
1709
1796
|
msgstr "Errata-Installation"
|
1710
1797
|
|
1798
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1711
1799
|
msgid "Errata Install scheduled by %s"
|
1712
1800
|
msgstr "Errata-Installation eingeplant durch %s"
|
1713
1801
|
|
@@ -1735,29 +1823,31 @@ msgstr "Erratum-Installation abgeschlossen"
|
|
1735
1823
|
msgid "Erratum Install Failed"
|
1736
1824
|
msgstr "Erratum-Installation fehlgeschlagen"
|
1737
1825
|
|
1826
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
1738
1827
|
msgid "Erratum Install Timed Out"
|
1739
1828
|
msgstr "Zeitüberschreitung bei Erratum-Installation"
|
1740
1829
|
|
1830
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
1741
1831
|
msgid "Error"
|
1742
1832
|
msgstr "Fehler"
|
1743
1833
|
|
1744
1834
|
msgid "Error connecting to Pulp service"
|
1745
|
-
msgstr "
|
1835
|
+
msgstr ""
|
1746
1836
|
|
1747
1837
|
msgid "Error connecting. Got: %s"
|
1748
|
-
msgstr "
|
1838
|
+
msgstr ""
|
1749
1839
|
|
1750
1840
|
msgid "Error refreshing status for %s: "
|
1751
1841
|
msgstr ""
|
1752
1842
|
|
1753
1843
|
msgid "Error retrieving Pulp storage"
|
1754
|
-
msgstr "
|
1844
|
+
msgstr ""
|
1755
1845
|
|
1756
1846
|
msgid "Exceeds available quantity"
|
1757
1847
|
msgstr ""
|
1758
1848
|
|
1759
1849
|
msgid "Exclude"
|
1760
|
-
msgstr "
|
1850
|
+
msgstr ""
|
1761
1851
|
|
1762
1852
|
msgid "Excluded"
|
1763
1853
|
msgstr ""
|
@@ -1765,6 +1855,7 @@ msgstr ""
|
|
1765
1855
|
msgid "Exit"
|
1766
1856
|
msgstr ""
|
1767
1857
|
|
1858
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1768
1859
|
msgid "Expand All"
|
1769
1860
|
msgstr "Alle ausklappen"
|
1770
1861
|
|
@@ -1772,7 +1863,7 @@ msgid "Expire soon days"
|
|
1772
1863
|
msgstr ""
|
1773
1864
|
|
1774
1865
|
msgid "Export"
|
1775
|
-
msgstr "
|
1866
|
+
msgstr ""
|
1776
1867
|
|
1777
1868
|
msgid "Export CSV"
|
1778
1869
|
msgstr ""
|
@@ -1783,18 +1874,12 @@ msgstr ""
|
|
1783
1874
|
msgid "Export Types"
|
1784
1875
|
msgstr ""
|
1785
1876
|
|
1786
|
-
msgid "Export a repository"
|
1787
|
-
msgstr "Ein Repository exportieren"
|
1788
|
-
|
1789
1877
|
msgid "Export as CSV"
|
1790
1878
|
msgstr ""
|
1791
1879
|
|
1792
1880
|
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1793
1881
|
msgstr ""
|
1794
1882
|
|
1795
|
-
msgid "Export to ISO format"
|
1796
|
-
msgstr "Als ISO-Format exportieren"
|
1797
|
-
|
1798
1883
|
msgid "Exported version"
|
1799
1884
|
msgstr ""
|
1800
1885
|
|
@@ -1805,7 +1890,7 @@ msgid "Failed"
|
|
1805
1890
|
msgstr "Fehlgeschlagen"
|
1806
1891
|
|
1807
1892
|
msgid "Failed indexing errata, maximum retries encountered"
|
1808
|
-
msgstr "
|
1893
|
+
msgstr ""
|
1809
1894
|
|
1810
1895
|
msgid "Failed to delete %{host}: %{errors}"
|
1811
1896
|
msgstr ""
|
@@ -1849,7 +1934,7 @@ msgid "File contents"
|
|
1849
1934
|
msgstr ""
|
1850
1935
|
|
1851
1936
|
msgid "Files"
|
1852
|
-
msgstr "
|
1937
|
+
msgstr ""
|
1853
1938
|
|
1854
1939
|
msgid "Filter by Product"
|
1855
1940
|
msgstr ""
|
@@ -1860,6 +1945,9 @@ msgstr ""
|
|
1860
1945
|
msgid "Filter composite versions whose publish was triggered by the specified component version"
|
1861
1946
|
msgstr ""
|
1862
1947
|
|
1948
|
+
msgid "Filter created"
|
1949
|
+
msgstr ""
|
1950
|
+
|
1863
1951
|
msgid "Filter only composite content views"
|
1864
1952
|
msgstr ""
|
1865
1953
|
|
@@ -1870,7 +1958,7 @@ msgid "Filter out default content views"
|
|
1870
1958
|
msgstr "Standardinhaltsansichten ausfiltern"
|
1871
1959
|
|
1872
1960
|
msgid "Filter products by host id"
|
1873
|
-
msgstr "
|
1961
|
+
msgstr ""
|
1874
1962
|
|
1875
1963
|
msgid "Filter products by name"
|
1876
1964
|
msgstr "Produkte nach Namen filtern"
|
@@ -1882,7 +1970,10 @@ msgid "Filter products by subscription"
|
|
1882
1970
|
msgstr "Produkte nach Subskription filtern"
|
1883
1971
|
|
1884
1972
|
msgid "Filter products by sync plan id"
|
1885
|
-
msgstr "
|
1973
|
+
msgstr ""
|
1974
|
+
|
1975
|
+
msgid "Filter successfully deleted"
|
1976
|
+
msgstr ""
|
1886
1977
|
|
1887
1978
|
msgid "Filter versions by environment"
|
1888
1979
|
msgstr "Versionen nach Umgebung filtern"
|
@@ -1894,10 +1985,13 @@ msgid "Filter versions that are components in the specified composite version"
|
|
1894
1985
|
msgstr "Versionen filtern, die Komponenten in der angegebenen Verbundversion sind"
|
1895
1986
|
|
1896
1987
|
msgid "Filtered index content"
|
1897
|
-
msgstr "
|
1988
|
+
msgstr ""
|
1898
1989
|
|
1899
1990
|
msgid "Filters"
|
1900
|
-
msgstr "
|
1991
|
+
msgstr ""
|
1992
|
+
|
1993
|
+
msgid "Filters successfully deleted"
|
1994
|
+
msgstr ""
|
1901
1995
|
|
1902
1996
|
msgid "Finish action timeout"
|
1903
1997
|
msgstr ""
|
@@ -1935,11 +2029,12 @@ msgid "Forces a republish of the version's repositories' metadata"
|
|
1935
2029
|
msgstr ""
|
1936
2030
|
|
1937
2031
|
msgid "Fully entitled"
|
1938
|
-
msgstr "
|
2032
|
+
msgstr ""
|
1939
2033
|
|
1940
2034
|
msgid "GPG Key URL"
|
1941
|
-
msgstr "
|
2035
|
+
msgstr ""
|
1942
2036
|
|
2037
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
1943
2038
|
msgid "Generate and Download"
|
1944
2039
|
msgstr "Generieren und herunterladen"
|
1945
2040
|
|
@@ -1983,10 +2078,10 @@ msgid "Group %{id} already created."
|
|
1983
2078
|
msgstr ""
|
1984
2079
|
|
1985
2080
|
msgid "Guests of"
|
1986
|
-
msgstr "
|
2081
|
+
msgstr ""
|
1987
2082
|
|
1988
2083
|
msgid "HTTP Proxies"
|
1989
|
-
msgstr "
|
2084
|
+
msgstr ""
|
1990
2085
|
|
1991
2086
|
msgid "HTTP Proxy identifier to associated"
|
1992
2087
|
msgstr ""
|
@@ -1995,7 +2090,7 @@ msgid "Has to be > 0"
|
|
1995
2090
|
msgstr ""
|
1996
2091
|
|
1997
2092
|
msgid "History"
|
1998
|
-
msgstr "
|
2093
|
+
msgstr ""
|
1999
2094
|
|
2000
2095
|
msgid "History will appear here when the content view is published or promoted."
|
2001
2096
|
msgstr ""
|
@@ -2010,7 +2105,10 @@ msgid "Host %{name} cannot be assigned release version %{release_version}."
|
|
2010
2105
|
msgstr ""
|
2011
2106
|
|
2012
2107
|
msgid "Host '%{name}' does not belong to an organization"
|
2013
|
-
msgstr "
|
2108
|
+
msgstr ""
|
2109
|
+
|
2110
|
+
msgid "Host Can Re-Register Only In Build"
|
2111
|
+
msgstr ""
|
2014
2112
|
|
2015
2113
|
msgid "Host Collection name"
|
2016
2114
|
msgstr "Name der Hostsammlung"
|
@@ -2025,11 +2123,14 @@ msgid "Host Errata Advisory"
|
|
2025
2123
|
msgstr ""
|
2026
2124
|
|
2027
2125
|
msgid "Host ID"
|
2028
|
-
msgstr "
|
2126
|
+
msgstr ""
|
2029
2127
|
|
2030
2128
|
msgid "Host Profile Assume"
|
2031
2129
|
msgstr ""
|
2032
2130
|
|
2131
|
+
msgid "Host Profile Can Change In Build"
|
2132
|
+
msgstr ""
|
2133
|
+
|
2033
2134
|
msgid "Host Subscription Status"
|
2034
2135
|
msgstr ""
|
2035
2136
|
|
@@ -2049,19 +2150,19 @@ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. T
|
|
2049
2150
|
msgstr ""
|
2050
2151
|
|
2051
2152
|
msgid "Host did not finish content action in %s seconds. The task has been cancelled."
|
2052
|
-
msgstr "
|
2153
|
+
msgstr ""
|
2053
2154
|
|
2054
2155
|
msgid "Host did not respond within %s seconds. The task has been cancelled. Is katello-agent installed and goferd running on the Host?"
|
2055
|
-
msgstr "
|
2156
|
+
msgstr ""
|
2056
2157
|
|
2057
2158
|
msgid "Host errata advisory"
|
2058
2159
|
msgstr ""
|
2059
2160
|
|
2060
2161
|
msgid "Host group IDs"
|
2061
|
-
msgstr "
|
2162
|
+
msgstr ""
|
2062
2163
|
|
2063
2164
|
msgid "Host has not been registered with subscription-manager"
|
2064
|
-
msgstr "
|
2165
|
+
msgstr ""
|
2065
2166
|
|
2066
2167
|
msgid "Host has not been registered with subscription-manager."
|
2067
2168
|
msgstr ""
|
@@ -2072,7 +2173,7 @@ msgstr ""
|
|
2072
2173
|
msgid "Host id to list applicable packages for"
|
2073
2174
|
msgstr ""
|
2074
2175
|
|
2075
|
-
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this
|
2176
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
|
2076
2177
|
msgstr ""
|
2077
2178
|
|
2078
2179
|
msgid "Host with ID %s already exists in the host collection."
|
@@ -2100,10 +2201,10 @@ msgid "How to order the sorted results (e.g. ASC for ascending)"
|
|
2100
2201
|
msgstr "Reihenfolge der sortierten Ergebnisse (z. B. ASC für aufsteigend)"
|
2101
2202
|
|
2102
2203
|
msgid "Hypervisors"
|
2103
|
-
msgstr "
|
2204
|
+
msgstr ""
|
2104
2205
|
|
2105
2206
|
msgid "Hypervisors update"
|
2106
|
-
msgstr "
|
2207
|
+
msgstr ""
|
2107
2208
|
|
2108
2209
|
msgid "ID of a HTTP Proxy"
|
2109
2210
|
msgstr ""
|
@@ -2136,7 +2237,7 @@ msgid "ID of the environment"
|
|
2136
2237
|
msgstr "ID der Umgebung"
|
2137
2238
|
|
2138
2239
|
msgid "ID of the host"
|
2139
|
-
msgstr "
|
2240
|
+
msgstr ""
|
2140
2241
|
|
2141
2242
|
msgid "ID of the host collection"
|
2142
2243
|
msgstr "ID der Hostsammlung"
|
@@ -2162,9 +2263,6 @@ msgstr "ID des Synchronisationsplans"
|
|
2162
2263
|
msgid "ID: %s doesn't exist "
|
2163
2264
|
msgstr "ID: %s existiert nicht"
|
2164
2265
|
|
2165
|
-
msgid "ISO export must be enabled when specifying ISO size"
|
2166
|
-
msgstr ""
|
2167
|
-
|
2168
2266
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2169
2267
|
msgstr ""
|
2170
2268
|
|
@@ -2178,7 +2276,7 @@ msgid "Id of an ansible collection to find repositories that contain the ansible
|
|
2178
2276
|
msgstr ""
|
2179
2277
|
|
2180
2278
|
msgid "Id of an erratum to find repositories that contain the erratum"
|
2181
|
-
msgstr "
|
2279
|
+
msgstr ""
|
2182
2280
|
|
2183
2281
|
msgid "Id of an ostree branch to find repositories that contain that branch"
|
2184
2282
|
msgstr ""
|
@@ -2187,25 +2285,25 @@ msgid "Id of the content host"
|
|
2187
2285
|
msgstr ""
|
2188
2286
|
|
2189
2287
|
msgid "Id of the environment to limit the synchronization on"
|
2190
|
-
msgstr "
|
2288
|
+
msgstr ""
|
2191
2289
|
|
2192
2290
|
msgid "Id of the host"
|
2193
|
-
msgstr "
|
2291
|
+
msgstr ""
|
2194
2292
|
|
2195
2293
|
msgid "Id of the host collection"
|
2196
2294
|
msgstr "ID der Hostsammlung"
|
2197
2295
|
|
2198
2296
|
msgid "Id of the lifecycle environment"
|
2199
|
-
msgstr "
|
2297
|
+
msgstr ""
|
2200
2298
|
|
2201
2299
|
msgid "Id of the organization to get the status for"
|
2202
|
-
msgstr "
|
2300
|
+
msgstr ""
|
2203
2301
|
|
2204
2302
|
msgid "Id of the organization to limit environments on"
|
2205
|
-
msgstr "
|
2303
|
+
msgstr ""
|
2206
2304
|
|
2207
2305
|
msgid "Id of the smart proxy"
|
2208
|
-
msgstr "
|
2306
|
+
msgstr ""
|
2209
2307
|
|
2210
2308
|
msgid "Idenifier of the SSL CA Cert"
|
2211
2309
|
msgstr ""
|
@@ -2241,13 +2339,13 @@ msgid "If hosts fail to register because of duplicate DMI UUIDs add their comma-
|
|
2241
2339
|
msgstr ""
|
2242
2340
|
|
2243
2341
|
msgid "If set to true, a composite content view may not be published or promoted, unless the component content view versions that it includes exist in the target environment."
|
2244
|
-
msgstr "
|
2342
|
+
msgstr ""
|
2245
2343
|
|
2246
2344
|
msgid "If set to true, use remote execution instead of katello-agent for remote actions"
|
2247
2345
|
msgstr ""
|
2248
2346
|
|
2249
2347
|
msgid "If specified, remove the first instance of a subscription with matching id and quantity"
|
2250
|
-
msgstr "
|
2348
|
+
msgstr ""
|
2251
2349
|
|
2252
2350
|
msgid "If true, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
|
2253
2351
|
msgstr ""
|
@@ -2280,13 +2378,13 @@ msgid "Ignore subscription-manager errors for `subscription-manager register` co
|
|
2280
2378
|
msgstr ""
|
2281
2379
|
|
2282
2380
|
msgid "Ignore subscriptions that are unavailable to the specified host"
|
2283
|
-
msgstr "
|
2381
|
+
msgstr ""
|
2284
2382
|
|
2285
2383
|
msgid "Immediate"
|
2286
2384
|
msgstr ""
|
2287
2385
|
|
2288
2386
|
msgid "Import"
|
2289
|
-
msgstr "
|
2387
|
+
msgstr ""
|
2290
2388
|
|
2291
2389
|
msgid "Import Content View Version"
|
2292
2390
|
msgstr ""
|
@@ -2322,7 +2420,7 @@ msgid "Import a Manifest using the manifest tab above."
|
|
2322
2420
|
msgstr ""
|
2323
2421
|
|
2324
2422
|
msgid "Import a content view version"
|
2325
|
-
msgstr "
|
2423
|
+
msgstr ""
|
2326
2424
|
|
2327
2425
|
msgid "Import a content view version to the library"
|
2328
2426
|
msgstr ""
|
@@ -2345,8 +2443,11 @@ msgstr ""
|
|
2345
2443
|
msgid "In Progress"
|
2346
2444
|
msgstr "In Arbeit"
|
2347
2445
|
|
2446
|
+
msgid "In progress"
|
2447
|
+
msgstr ""
|
2448
|
+
|
2348
2449
|
msgid "Include"
|
2349
|
-
msgstr "
|
2450
|
+
msgstr ""
|
2350
2451
|
|
2351
2452
|
msgid "Included"
|
2352
2453
|
msgstr ""
|
@@ -2376,7 +2477,7 @@ msgid "Incremental update specified for composite %{name} version %{version}, bu
|
|
2376
2477
|
msgstr "Inkrementelle Aktualisierung für Verbund %{name} Version %{version} angegeben, aber keine Komponenten aktualisiert."
|
2377
2478
|
|
2378
2479
|
msgid "Index content"
|
2379
|
-
msgstr "
|
2480
|
+
msgstr ""
|
2380
2481
|
|
2381
2482
|
msgid "Index errata"
|
2382
2483
|
msgstr "Errata indizieren"
|
@@ -2385,7 +2486,7 @@ msgid "Index module streams"
|
|
2385
2486
|
msgstr ""
|
2386
2487
|
|
2387
2488
|
msgid "Index package groups"
|
2388
|
-
msgstr "
|
2489
|
+
msgstr ""
|
2389
2490
|
|
2390
2491
|
msgid "Informable Type must be one of the following [ %{list} ]"
|
2391
2492
|
msgstr "Relevante Typen sind folgende [ %{list} ]"
|
@@ -2394,7 +2495,7 @@ msgid "Inherit from Repository"
|
|
2394
2495
|
msgstr ""
|
2395
2496
|
|
2396
2497
|
msgid "Initiate a sync of the products attached to the sync plan"
|
2397
|
-
msgstr "
|
2498
|
+
msgstr ""
|
2398
2499
|
|
2399
2500
|
msgid "Install Applicable Errata"
|
2400
2501
|
msgstr "Relevante Errata installieren"
|
@@ -2414,6 +2515,7 @@ msgstr "Erratum installieren"
|
|
2414
2515
|
msgid "Install erratum for %s"
|
2415
2516
|
msgstr ""
|
2416
2517
|
|
2518
|
+
# translation auto-copied from project gnome-packagekit, version 3.8.2, document gnome-packagekit
|
2417
2519
|
msgid "Install package"
|
2418
2520
|
msgstr "Paket installieren"
|
2419
2521
|
|
@@ -2444,15 +2546,19 @@ msgstr ""
|
|
2444
2546
|
msgid "Installation of package(s) requested: %{packages}"
|
2445
2547
|
msgstr ""
|
2446
2548
|
|
2549
|
+
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
2447
2550
|
msgid "Installed Packages"
|
2448
2551
|
msgstr "Installierte Pakete"
|
2449
2552
|
|
2553
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
2450
2554
|
msgid "Installing Erratum..."
|
2451
2555
|
msgstr "Erratum wird installiert …"
|
2452
2556
|
|
2557
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
2453
2558
|
msgid "Installing Package Group..."
|
2454
2559
|
msgstr "Paketgruppe wird installiert …"
|
2455
2560
|
|
2561
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
2456
2562
|
msgid "Installing Package..."
|
2457
2563
|
msgstr "Paket wird installiert …"
|
2458
2564
|
|
@@ -2460,22 +2566,22 @@ msgid "Instance update"
|
|
2460
2566
|
msgstr ""
|
2461
2567
|
|
2462
2568
|
msgid "Instance-based"
|
2463
|
-
msgstr "
|
2569
|
+
msgstr ""
|
2464
2570
|
|
2465
2571
|
msgid "Interpret specified object to return only Host Collections that can be associated with specified object. The value 'host' is supported."
|
2466
|
-
msgstr "
|
2572
|
+
msgstr ""
|
2467
2573
|
|
2468
2574
|
msgid "Interpret specified object to return only Products that can be associated with specified object. Only 'sync_plan' is supported."
|
2469
|
-
msgstr "
|
2575
|
+
msgstr ""
|
2470
2576
|
|
2471
2577
|
msgid "Interval cannot be nil"
|
2472
|
-
msgstr "
|
2578
|
+
msgstr ""
|
2473
2579
|
|
2474
2580
|
msgid "Interval not set correctly"
|
2475
|
-
msgstr "
|
2581
|
+
msgstr ""
|
2476
2582
|
|
2477
2583
|
msgid "Invalid"
|
2478
|
-
msgstr "
|
2584
|
+
msgstr ""
|
2479
2585
|
|
2480
2586
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2481
2587
|
msgstr ""
|
@@ -2487,10 +2593,7 @@ msgid "Invalid content type %s"
|
|
2487
2593
|
msgstr "Ungültiger Inhaltstyp %s"
|
2488
2594
|
|
2489
2595
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2490
|
-
msgstr "
|
2491
|
-
|
2492
|
-
msgid "Invalid date provided."
|
2493
|
-
msgstr "Ungültiges Datum."
|
2596
|
+
msgstr ""
|
2494
2597
|
|
2495
2598
|
msgid "Invalid date range. The erratum filter rule start date must come before the end date"
|
2496
2599
|
msgstr "Ungültiger Datumsbereich. Das Startdatum der Erratum-Filterregel muss vor dem Enddatum liegen."
|
@@ -2513,14 +2616,15 @@ msgstr "Ungültige Regel angegeben, \"version\" kann nicht in demselben Tupel an
|
|
2513
2616
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2514
2617
|
msgstr "Ungültige Parameter in der Anfrage für diese Operation gesendet. Bitte setzen Sie sich bitte mit einem Systemadministrator in Verbindung."
|
2515
2618
|
|
2619
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
2516
2620
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2517
2621
|
msgstr "Ungültige Parameter gesendet. Womöglich haben Sie sich in der Adresse vertippt. Falls Sie weiterhin Probleme damit haben, setzen Sie sich bitte mit einem Administrator in Verbindung."
|
2518
2622
|
|
2519
2623
|
msgid "Invalid params provided - content_type must be one of %s"
|
2520
|
-
msgstr "
|
2624
|
+
msgstr ""
|
2521
2625
|
|
2522
2626
|
msgid "Invalid params provided - date_type must be one of %s"
|
2523
|
-
msgstr "
|
2627
|
+
msgstr ""
|
2524
2628
|
|
2525
2629
|
msgid "Invalid value specified for Container Image repositories."
|
2526
2630
|
msgstr ""
|
@@ -2577,7 +2681,7 @@ msgid "Kickstart repository was not set for host '%{host}'"
|
|
2577
2681
|
msgstr ""
|
2578
2682
|
|
2579
2683
|
msgid "Label"
|
2580
|
-
msgstr "
|
2684
|
+
msgstr ""
|
2581
2685
|
|
2582
2686
|
msgid "Label of the content"
|
2583
2687
|
msgstr "Kennung des Inhalts"
|
@@ -2592,7 +2696,7 @@ msgid "Latest (automatically updates)"
|
|
2592
2696
|
msgstr ""
|
2593
2697
|
|
2594
2698
|
msgid "Latest Errata"
|
2595
|
-
msgstr "
|
2699
|
+
msgstr ""
|
2596
2700
|
|
2597
2701
|
msgid "Latest version"
|
2598
2702
|
msgstr ""
|
@@ -2609,6 +2713,7 @@ msgstr "Library-Repository-ID, auf die Vergleiche beschränkt werden sollen"
|
|
2609
2713
|
msgid "Lifecycle"
|
2610
2714
|
msgstr ""
|
2611
2715
|
|
2716
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
2612
2717
|
msgid "Lifecycle Environment"
|
2613
2718
|
msgstr "Lebenszyklusumgebung"
|
2614
2719
|
|
@@ -2621,6 +2726,7 @@ msgstr ""
|
|
2621
2726
|
msgid "Lifecycle Environment ID"
|
2622
2727
|
msgstr ""
|
2623
2728
|
|
2729
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello, author hpeters
|
2624
2730
|
msgid "Lifecycle Environments"
|
2625
2731
|
msgstr "Lebenszyklusumgebungen"
|
2626
2732
|
|
@@ -2652,7 +2758,7 @@ msgid "Limit content to just that available in the host's content view version"
|
|
2652
2758
|
msgstr ""
|
2653
2759
|
|
2654
2760
|
msgid "Limits"
|
2655
|
-
msgstr "
|
2761
|
+
msgstr ""
|
2656
2762
|
|
2657
2763
|
msgid "List :resource_id"
|
2658
2764
|
msgstr ":resource_id auflisten"
|
@@ -2661,7 +2767,7 @@ msgid "List Content Credentials"
|
|
2661
2767
|
msgstr ""
|
2662
2768
|
|
2663
2769
|
msgid "List a host's subscriptions"
|
2664
|
-
msgstr "
|
2770
|
+
msgstr ""
|
2665
2771
|
|
2666
2772
|
msgid "List activation keys"
|
2667
2773
|
msgstr "Aktivierungsschlüssel auflisten"
|
@@ -2732,17 +2838,17 @@ msgstr ""
|
|
2732
2838
|
msgid "List of Errata ids"
|
2733
2839
|
msgstr "Liste mit Errata-IDs"
|
2734
2840
|
|
2735
|
-
msgid "List of Errata ids to install. Will be removed in
|
2841
|
+
msgid "List of Errata ids to install. Will be removed in %s"
|
2736
2842
|
msgstr ""
|
2737
2843
|
|
2738
2844
|
msgid "List of Products for sync plan"
|
2739
|
-
msgstr "
|
2845
|
+
msgstr ""
|
2740
2846
|
|
2741
2847
|
msgid "List of component content view version ids for composite views"
|
2742
2848
|
msgstr "Liste der Komponenteninhaltsansichts-Versions-IDs für Verbundansichten"
|
2743
2849
|
|
2744
|
-
msgid "List of content (e.g. package names, package group names or errata ids)"
|
2745
|
-
msgstr "
|
2850
|
+
msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
|
2851
|
+
msgstr ""
|
2746
2852
|
|
2747
2853
|
msgid "List of content (e.g. package or package group names)"
|
2748
2854
|
msgstr "Liste mit Inhalten (z. B. Paketnamen oder Paketgruppennamen)"
|
@@ -2772,7 +2878,7 @@ msgid "List of host collection ids"
|
|
2772
2878
|
msgstr "Liste mit Hostsammlungs-IDs"
|
2773
2879
|
|
2774
2880
|
msgid "List of host collection ids to update"
|
2775
|
-
msgstr "
|
2881
|
+
msgstr ""
|
2776
2882
|
|
2777
2883
|
msgid "List of host id to list available module streams for"
|
2778
2884
|
msgstr ""
|
@@ -2784,13 +2890,13 @@ msgid "List of host ids to perform an action on"
|
|
2784
2890
|
msgstr ""
|
2785
2891
|
|
2786
2892
|
msgid "List of host ids to replace the hosts in host collection"
|
2787
|
-
msgstr "
|
2893
|
+
msgstr ""
|
2788
2894
|
|
2789
2895
|
msgid "List of hypervisor guest uuids"
|
2790
2896
|
msgstr ""
|
2791
2897
|
|
2792
|
-
msgid "List of package group names"
|
2793
|
-
msgstr "
|
2898
|
+
msgid "List of package group names (Deprecated)"
|
2899
|
+
msgstr ""
|
2794
2900
|
|
2795
2901
|
msgid "List of package names"
|
2796
2902
|
msgstr "Liste mit Paketnamen"
|
@@ -2841,7 +2947,7 @@ msgid "List packages"
|
|
2841
2947
|
msgstr ""
|
2842
2948
|
|
2843
2949
|
msgid "List packages installed on the host"
|
2844
|
-
msgstr "
|
2950
|
+
msgstr ""
|
2845
2951
|
|
2846
2952
|
msgid "List products"
|
2847
2953
|
msgstr "Produkte auflisten"
|
@@ -2874,7 +2980,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
|
|
2874
2980
|
msgstr ""
|
2875
2981
|
|
2876
2982
|
msgid "Loading"
|
2877
|
-
msgstr "
|
2983
|
+
msgstr ""
|
2878
2984
|
|
2879
2985
|
msgid "Make copy of a content view"
|
2880
2986
|
msgstr "Kopie einer Inhaltsansicht erstellen"
|
@@ -2886,13 +2992,13 @@ msgid "Make sure all the component content views are published before publishing
|
|
2886
2992
|
msgstr ""
|
2887
2993
|
|
2888
2994
|
msgid "Manage Manifest"
|
2889
|
-
msgstr "
|
2995
|
+
msgstr ""
|
2890
2996
|
|
2891
2997
|
msgid "Manifest"
|
2892
2998
|
msgstr ""
|
2893
2999
|
|
2894
3000
|
msgid "Manifest History"
|
2895
|
-
msgstr "
|
3001
|
+
msgstr ""
|
2896
3002
|
|
2897
3003
|
msgid "Manifest deleted"
|
2898
3004
|
msgstr ""
|
@@ -2934,7 +3040,7 @@ msgid "Maximum number of content hosts exceeded for host collection(s): %s"
|
|
2934
3040
|
msgstr "Höchstanzahl von Inhaltshosts überschritten für Hostsammlungen: %s"
|
2935
3041
|
|
2936
3042
|
msgid "Maximum number of hosts in the host collection"
|
2937
|
-
msgstr "
|
3043
|
+
msgstr ""
|
2938
3044
|
|
2939
3045
|
msgid "May not add a type or date range rule to a filter that has existing rules."
|
2940
3046
|
msgstr "Regel für Typ oder Datumsbereich darf nicht zu einem Filter hinzugefügt werden, der bereits vorhandene Regeln hat."
|
@@ -2946,13 +3052,14 @@ msgid "Media Selection"
|
|
2946
3052
|
msgstr ""
|
2947
3053
|
|
2948
3054
|
msgid "Medium IDs"
|
2949
|
-
msgstr "
|
3055
|
+
msgstr ""
|
2950
3056
|
|
3057
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
2951
3058
|
msgid "Message"
|
2952
3059
|
msgstr "Nachricht"
|
2953
3060
|
|
2954
3061
|
msgid "Messaging connection"
|
2955
|
-
msgstr "
|
3062
|
+
msgstr ""
|
2956
3063
|
|
2957
3064
|
msgid "Metadata taken from the upstream export history for this Content View Version"
|
2958
3065
|
msgstr ""
|
@@ -2960,8 +3067,11 @@ msgstr ""
|
|
2960
3067
|
msgid "Mismatched"
|
2961
3068
|
msgstr ""
|
2962
3069
|
|
3070
|
+
msgid "Missing activation key!"
|
3071
|
+
msgstr ""
|
3072
|
+
|
2963
3073
|
msgid "Missing arguments %{substitutions} for %{content_url}"
|
2964
|
-
msgstr "
|
3074
|
+
msgstr ""
|
2965
3075
|
|
2966
3076
|
msgid "Module Stream"
|
2967
3077
|
msgstr ""
|
@@ -2970,13 +3080,13 @@ msgid "Module Stream Details"
|
|
2970
3080
|
msgstr ""
|
2971
3081
|
|
2972
3082
|
msgid "Module Streams"
|
2973
|
-
msgstr "
|
3083
|
+
msgstr ""
|
2974
3084
|
|
2975
3085
|
msgid "Module stream"
|
2976
3086
|
msgstr ""
|
2977
3087
|
|
2978
3088
|
msgid "Multi-entitlement"
|
2979
|
-
msgstr "
|
3089
|
+
msgstr ""
|
2980
3090
|
|
2981
3091
|
msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
|
2982
3092
|
msgstr ""
|
@@ -2985,7 +3095,7 @@ msgid "N/A"
|
|
2985
3095
|
msgstr ""
|
2986
3096
|
|
2987
3097
|
msgid "NA"
|
2988
|
-
msgstr "
|
3098
|
+
msgstr ""
|
2989
3099
|
|
2990
3100
|
msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
|
2991
3101
|
msgstr ""
|
@@ -3027,6 +3137,7 @@ msgstr ""
|
|
3027
3137
|
msgid "Needs to only be set for file repositories or docker tags"
|
3028
3138
|
msgstr ""
|
3029
3139
|
|
3140
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
3030
3141
|
msgid "Nest"
|
3031
3142
|
msgstr "Verschachteln"
|
3032
3143
|
|
@@ -3060,8 +3171,11 @@ msgstr "Neue Pakete: %{count} (%{size})"
|
|
3060
3171
|
msgid "New version is available: Version ${latestVersion}"
|
3061
3172
|
msgstr ""
|
3062
3173
|
|
3174
|
+
msgid "Newly published"
|
3175
|
+
msgstr ""
|
3176
|
+
|
3063
3177
|
msgid "No"
|
3064
|
-
msgstr "
|
3178
|
+
msgstr ""
|
3065
3179
|
|
3066
3180
|
msgid "No Activation Keys selected"
|
3067
3181
|
msgstr ""
|
@@ -3069,6 +3183,7 @@ msgstr ""
|
|
3069
3183
|
msgid "No Activation keys to select"
|
3070
3184
|
msgstr ""
|
3071
3185
|
|
3186
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
3072
3187
|
msgid "No Content View"
|
3073
3188
|
msgstr "Keine Inhaltsansicht"
|
3074
3189
|
|
@@ -3084,6 +3199,7 @@ msgstr ""
|
|
3084
3199
|
msgid "No Red Hat products currently exist, please import a manifest %(anchorBegin)s here %(anchorEnd)s to receive Red Hat content. No repository sets available."
|
3085
3200
|
msgstr ""
|
3086
3201
|
|
3202
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3087
3203
|
msgid "No Service Level Preference"
|
3088
3204
|
msgstr "Keine Servicelevel-Einstellung"
|
3089
3205
|
|
@@ -3103,7 +3219,7 @@ msgid "No content has been provided."
|
|
3103
3219
|
msgstr "Kein Inhalt wurde bereitgestellt."
|
3104
3220
|
|
3105
3221
|
msgid "No content ids provided"
|
3106
|
-
msgstr "
|
3222
|
+
msgstr ""
|
3107
3223
|
|
3108
3224
|
msgid "No content view history events found."
|
3109
3225
|
msgstr "Keine vergangenen Ereignisse der Inhaltsansicht gefunden."
|
@@ -3211,10 +3327,10 @@ msgid "No profiles to show"
|
|
3211
3327
|
msgstr ""
|
3212
3328
|
|
3213
3329
|
msgid "No pulp workers running."
|
3214
|
-
msgstr "
|
3330
|
+
msgstr ""
|
3215
3331
|
|
3216
3332
|
msgid "No recently synced products"
|
3217
|
-
msgstr "
|
3333
|
+
msgstr ""
|
3218
3334
|
|
3219
3335
|
msgid "No recurring logic tied to the sync plan."
|
3220
3336
|
msgstr ""
|
@@ -3235,7 +3351,7 @@ msgid "No rules have been added to this filter."
|
|
3235
3351
|
msgstr ""
|
3236
3352
|
|
3237
3353
|
msgid "No services defined, is this class extended?"
|
3238
|
-
msgstr "
|
3354
|
+
msgstr ""
|
3239
3355
|
|
3240
3356
|
msgid "No start time currently available."
|
3241
3357
|
msgstr "Keine Startzeit derzeit verfügbar."
|
@@ -3250,7 +3366,7 @@ msgid "No uploads param specified. An array of uploads to import is required."
|
|
3250
3366
|
msgstr ""
|
3251
3367
|
|
3252
3368
|
msgid "Non-security errata applicable"
|
3253
|
-
msgstr "
|
3369
|
+
msgstr ""
|
3254
3370
|
|
3255
3371
|
msgid "Non-security errata installable"
|
3256
3372
|
msgstr ""
|
@@ -3301,28 +3417,25 @@ msgid "Number to Allocate"
|
|
3301
3417
|
msgstr ""
|
3302
3418
|
|
3303
3419
|
msgid "OSTree"
|
3304
|
-
msgstr "
|
3420
|
+
msgstr ""
|
3305
3421
|
|
3306
3422
|
msgid "OSTree Branch"
|
3307
3423
|
msgstr ""
|
3308
3424
|
|
3309
3425
|
msgid "OSTree Branches"
|
3310
|
-
msgstr "
|
3426
|
+
msgstr ""
|
3311
3427
|
|
3312
3428
|
msgid "OSTree Repositories cannot be unprotected."
|
3313
3429
|
msgstr ""
|
3314
3430
|
|
3315
3431
|
msgid "Object to show subscriptions available for, either 'host' or 'activation_key'"
|
3316
|
-
msgstr "Objekt zeigt Liste verfügbarer Subskriptionen für 'host' oder 'activation_key' an"
|
3317
|
-
|
3318
|
-
msgid "On Demand"
|
3319
3432
|
msgstr ""
|
3320
3433
|
|
3321
|
-
msgid "On
|
3434
|
+
msgid "On Demand"
|
3322
3435
|
msgstr ""
|
3323
3436
|
|
3324
3437
|
msgid "On-disk location for exported repositories"
|
3325
|
-
msgstr "
|
3438
|
+
msgstr ""
|
3326
3439
|
|
3327
3440
|
msgid "On-disk location for pulp 3 exported repositories"
|
3328
3441
|
msgstr ""
|
@@ -3345,24 +3458,24 @@ msgstr "Ein oder mehrere Pakete wurden nicht ordnungsgemäß synchronisiert."
|
|
3345
3458
|
msgid "One or more processes require restarting"
|
3346
3459
|
msgstr ""
|
3347
3460
|
|
3461
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3348
3462
|
msgid "Only one Red Hat provider permitted for an Organization"
|
3349
3463
|
msgstr "Nur ein Red Hat Anbieter erlaubt für eine Organisation"
|
3350
3464
|
|
3351
3465
|
msgid "Only returns id and quantity fields"
|
3352
3466
|
msgstr ""
|
3353
3467
|
|
3468
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
3354
3469
|
msgid "Operators"
|
3355
3470
|
msgstr "Operatoren"
|
3356
3471
|
|
3357
|
-
msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
|
3358
|
-
msgstr ""
|
3359
|
-
|
3360
3472
|
msgid "Organization"
|
3361
3473
|
msgstr "Organisation"
|
3362
3474
|
|
3363
3475
|
msgid "Organization %s is being deleted."
|
3364
3476
|
msgstr "Organisation %s wurde gelöscht."
|
3365
3477
|
|
3478
|
+
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
|
3366
3479
|
msgid "Organization ID"
|
3367
3480
|
msgstr "Organisations-ID"
|
3368
3481
|
|
@@ -3385,11 +3498,12 @@ msgid "Organization label"
|
|
3385
3498
|
msgstr "Organsiationskennung"
|
3386
3499
|
|
3387
3500
|
msgid "Organization not found"
|
3388
|
-
msgstr "
|
3501
|
+
msgstr ""
|
3389
3502
|
|
3390
3503
|
msgid "Organization required"
|
3391
3504
|
msgstr "Organisation erforderlich"
|
3392
3505
|
|
3506
|
+
# translation auto-copied from project PressGang CCMS topics, version 1, document 38695-678029, author jdimanos
|
3393
3507
|
msgid "Other"
|
3394
3508
|
msgstr "Andere"
|
3395
3509
|
|
@@ -3414,9 +3528,11 @@ msgstr ""
|
|
3414
3528
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3415
3529
|
msgstr ""
|
3416
3530
|
|
3531
|
+
# translation auto-copied from project rhn-client-tools, version 6.5, document rhn-client-tools
|
3417
3532
|
msgid "Package"
|
3418
3533
|
msgstr "Paket"
|
3419
3534
|
|
3535
|
+
# translation auto-copied from project RHEL Virtualization Deployment and Administration Guide, version 7.0, document Host_Installation
|
3420
3536
|
msgid "Package Group"
|
3421
3537
|
msgstr "Paketgruppe"
|
3422
3538
|
|
@@ -3484,10 +3600,10 @@ msgid "Package Install scheduled by %s"
|
|
3484
3600
|
msgstr "Paketinstallation eingeplant durch %s"
|
3485
3601
|
|
3486
3602
|
msgid "Package Profile Update"
|
3487
|
-
msgstr "
|
3603
|
+
msgstr ""
|
3488
3604
|
|
3489
3605
|
msgid "Package Profile Update for %s"
|
3490
|
-
msgstr "
|
3606
|
+
msgstr ""
|
3491
3607
|
|
3492
3608
|
msgid "Package Remove"
|
3493
3609
|
msgstr "Paketentfernung"
|
@@ -3525,20 +3641,24 @@ msgstr "Zeitüberschreitung bei Paketaktualisierung"
|
|
3525
3641
|
msgid "Package Update scheduled by %s"
|
3526
3642
|
msgstr "Paketaktualisierung eingeplant durch %s"
|
3527
3643
|
|
3644
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
3528
3645
|
msgid "Package group update canceled"
|
3529
3646
|
msgstr "Paketgruppenaktualisierung abgebrochen"
|
3530
3647
|
|
3648
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
3531
3649
|
msgid "Package group update complete"
|
3532
3650
|
msgstr "Paketgruppenaktualisierung abgeschlossen"
|
3533
3651
|
|
3652
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
3534
3653
|
msgid "Package group update failed"
|
3535
3654
|
msgstr "Paketgruppenaktualisierung fehlgeschlagen"
|
3536
3655
|
|
3656
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
3537
3657
|
msgid "Package group update timed out"
|
3538
3658
|
msgstr "Zeitüberschreitung bei Paketgruppenaktualisierung"
|
3539
3659
|
|
3540
3660
|
msgid "Package groups"
|
3541
|
-
msgstr "
|
3661
|
+
msgstr ""
|
3542
3662
|
|
3543
3663
|
msgid "Package identifiers to filter content by"
|
3544
3664
|
msgstr ""
|
@@ -3559,13 +3679,13 @@ msgid "Page number, starting at 1"
|
|
3559
3679
|
msgstr "Seitennummer, beginnend bei 1"
|
3560
3680
|
|
3561
3681
|
msgid "Partial"
|
3562
|
-
msgstr "
|
3682
|
+
msgstr ""
|
3563
3683
|
|
3564
3684
|
msgid "Partially entitled"
|
3565
|
-
msgstr "
|
3685
|
+
msgstr ""
|
3566
3686
|
|
3567
3687
|
msgid "Partition template IDs"
|
3568
|
-
msgstr "
|
3688
|
+
msgstr ""
|
3569
3689
|
|
3570
3690
|
msgid "Password of the upstream repository user used for authentication"
|
3571
3691
|
msgstr ""
|
@@ -3579,9 +3699,11 @@ msgstr ""
|
|
3579
3699
|
msgid "Path for ssl key used for pulp server auth"
|
3580
3700
|
msgstr ""
|
3581
3701
|
|
3702
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
3582
3703
|
msgid "Paused"
|
3583
3704
|
msgstr "Pausiert"
|
3584
3705
|
|
3706
|
+
# translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
|
3585
3707
|
msgid "Pending"
|
3586
3708
|
msgstr "Ausstehend"
|
3587
3709
|
|
@@ -3603,9 +3725,11 @@ msgstr ""
|
|
3603
3725
|
msgid "Performs an incremental-export of the repositories in library."
|
3604
3726
|
msgstr ""
|
3605
3727
|
|
3728
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
3606
3729
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3607
3730
|
msgstr "Zugriff verweigert. Benutzer \"%{user}\" hat keine Berechtigung zum Zugriff auf Organisation \"%{org}\"."
|
3608
3731
|
|
3732
|
+
# translation auto-copied from project subscription-manager, version 1.10.10, document keys
|
3609
3733
|
msgid "Physical"
|
3610
3734
|
msgstr "Physisch"
|
3611
3735
|
|
@@ -3643,7 +3767,7 @@ msgid "Please select an organization to view subscription totals."
|
|
3643
3767
|
msgstr ""
|
3644
3768
|
|
3645
3769
|
msgid "Please select one from the list below and you will be redirected."
|
3646
|
-
msgstr "
|
3770
|
+
msgstr ""
|
3647
3771
|
|
3648
3772
|
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3649
3773
|
msgstr ""
|
@@ -3654,17 +3778,18 @@ msgstr "Metadaten werden verarbeitet"
|
|
3654
3778
|
msgid "Processing metadata."
|
3655
3779
|
msgstr "Metadaten werden verarbeitet."
|
3656
3780
|
|
3781
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
3657
3782
|
msgid "Product"
|
3658
3783
|
msgstr "Produkt"
|
3659
3784
|
|
3660
3785
|
msgid "Product Content"
|
3661
|
-
msgstr "
|
3786
|
+
msgstr ""
|
3662
3787
|
|
3663
3788
|
msgid "Product Create"
|
3664
3789
|
msgstr ""
|
3665
3790
|
|
3666
3791
|
msgid "Product ID"
|
3667
|
-
msgstr "
|
3792
|
+
msgstr ""
|
3668
3793
|
|
3669
3794
|
msgid "Product and Repositories"
|
3670
3795
|
msgstr "Produkte und Repositorys"
|
@@ -3702,7 +3827,7 @@ msgid "Products"
|
|
3702
3827
|
msgstr "Produkte"
|
3703
3828
|
|
3704
3829
|
msgid "Profiles"
|
3705
|
-
msgstr "
|
3830
|
+
msgstr ""
|
3706
3831
|
|
3707
3832
|
msgid "Promote"
|
3708
3833
|
msgstr ""
|
@@ -3726,13 +3851,13 @@ msgid "Promotion to Environment"
|
|
3726
3851
|
msgstr ""
|
3727
3852
|
|
3728
3853
|
msgid "Provided Products"
|
3729
|
-
msgstr "
|
3854
|
+
msgstr ""
|
3730
3855
|
|
3731
3856
|
msgid "Provided pool with id %s has no upstream entitlement"
|
3732
3857
|
msgstr ""
|
3733
3858
|
|
3734
3859
|
msgid "Provisioning template IDs"
|
3735
|
-
msgstr "
|
3860
|
+
msgstr ""
|
3736
3861
|
|
3737
3862
|
msgid "Proxies"
|
3738
3863
|
msgstr ""
|
@@ -3740,6 +3865,7 @@ msgstr ""
|
|
3740
3865
|
msgid "Public key block in DER encoding or certificate content"
|
3741
3866
|
msgstr ""
|
3742
3867
|
|
3868
|
+
# translation auto-copied from project shotwell-core, version 0.14.1, document shotwell-core
|
3743
3869
|
msgid "Publish"
|
3744
3870
|
msgstr "Veröffentlichen"
|
3745
3871
|
|
@@ -3749,19 +3875,28 @@ msgstr ""
|
|
3749
3875
|
msgid "Publish a content view"
|
3750
3876
|
msgstr "Inhaltsansicht veröffentlichen"
|
3751
3877
|
|
3878
|
+
msgid "Publish new version - "
|
3879
|
+
msgstr ""
|
3880
|
+
|
3752
3881
|
msgid "Published new version"
|
3753
3882
|
msgstr "Neue Version veröffentlicht"
|
3754
3883
|
|
3884
|
+
msgid "Publishing ${name}"
|
3885
|
+
msgstr ""
|
3886
|
+
|
3887
|
+
msgid "Publishing content view"
|
3888
|
+
msgstr ""
|
3889
|
+
|
3755
3890
|
msgid "Pulling remote branches. Downloaded %s units."
|
3756
3891
|
msgstr ""
|
3757
3892
|
|
3758
3893
|
msgid "Pulp"
|
3759
|
-
msgstr "
|
3894
|
+
msgstr ""
|
3760
3895
|
|
3761
3896
|
msgid "Pulp 3 export destination filepath"
|
3762
3897
|
msgstr ""
|
3763
3898
|
|
3764
|
-
msgid "Pulp
|
3899
|
+
msgid "Pulp 3 is not enabled on Smart proxy!"
|
3765
3900
|
msgstr ""
|
3766
3901
|
|
3767
3902
|
msgid "Pulp Docker registry port"
|
@@ -3780,7 +3915,7 @@ msgid "Pulp database connection issue at %s."
|
|
3780
3915
|
msgstr ""
|
3781
3916
|
|
3782
3917
|
msgid "Pulp database connection issue."
|
3783
|
-
msgstr "
|
3918
|
+
msgstr ""
|
3784
3919
|
|
3785
3920
|
msgid "Pulp disk space notification"
|
3786
3921
|
msgstr ""
|
@@ -3789,7 +3924,7 @@ msgid "Pulp does not appear to be running at %s."
|
|
3789
3924
|
msgstr ""
|
3790
3925
|
|
3791
3926
|
msgid "Pulp does not appear to be running."
|
3792
|
-
msgstr "
|
3927
|
+
msgstr ""
|
3793
3928
|
|
3794
3929
|
msgid "Pulp export destination filepath"
|
3795
3930
|
msgstr ""
|
@@ -3798,19 +3933,19 @@ msgid "Pulp message bus connection issue at %s."
|
|
3798
3933
|
msgstr ""
|
3799
3934
|
|
3800
3935
|
msgid "Pulp message bus connection issue."
|
3801
|
-
msgstr "
|
3936
|
+
msgstr ""
|
3802
3937
|
|
3803
3938
|
msgid "Pulp node"
|
3804
|
-
msgstr "
|
3939
|
+
msgstr ""
|
3805
3940
|
|
3806
3941
|
msgid "Pulp redis connection issue at %s."
|
3807
3942
|
msgstr ""
|
3808
3943
|
|
3809
3944
|
msgid "Pulp server version"
|
3810
|
-
msgstr "
|
3945
|
+
msgstr ""
|
3811
3946
|
|
3812
3947
|
msgid "Pulp storage"
|
3813
|
-
msgstr "
|
3948
|
+
msgstr ""
|
3814
3949
|
|
3815
3950
|
msgid "Pulp task error"
|
3816
3951
|
msgstr "Pulp-Taskfehler"
|
@@ -3819,7 +3954,7 @@ msgid "Pulpcore"
|
|
3819
3954
|
msgstr ""
|
3820
3955
|
|
3821
3956
|
msgid "Quantity"
|
3822
|
-
msgstr "
|
3957
|
+
msgstr ""
|
3823
3958
|
|
3824
3959
|
msgid "Quantity must not be above ${pool.available}"
|
3825
3960
|
msgstr ""
|
@@ -3846,22 +3981,23 @@ msgid "RH Repos"
|
|
3846
3981
|
msgstr ""
|
3847
3982
|
|
3848
3983
|
msgid "RPM"
|
3849
|
-
msgstr "
|
3984
|
+
msgstr ""
|
3850
3985
|
|
3851
3986
|
msgid "RPM name"
|
3852
3987
|
msgstr ""
|
3853
3988
|
|
3989
|
+
# translation auto-copied from project PressGang CCMS topics, version 1, document 30483-691333, author jdimanos
|
3854
3990
|
msgid "RPMs"
|
3855
3991
|
msgstr "RPMs"
|
3856
3992
|
|
3857
3993
|
msgid "Realm IDs"
|
3858
|
-
msgstr "
|
3994
|
+
msgstr ""
|
3859
3995
|
|
3860
3996
|
msgid "Reboot required"
|
3861
3997
|
msgstr ""
|
3862
3998
|
|
3863
3999
|
msgid "Recently Expired Subscriptions"
|
3864
|
-
msgstr "
|
4000
|
+
msgstr ""
|
3865
4001
|
|
3866
4002
|
msgid "Recommended Repositories"
|
3867
4003
|
msgstr ""
|
@@ -3870,14 +4006,16 @@ msgid "Red Hat CDN URL"
|
|
3870
4006
|
msgstr "Red Hat CDN-URL"
|
3871
4007
|
|
3872
4008
|
msgid "Red Hat Provider Details"
|
3873
|
-
msgstr "
|
4009
|
+
msgstr ""
|
3874
4010
|
|
4011
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
3875
4012
|
msgid "Red Hat Repositories"
|
3876
4013
|
msgstr "Red Hat Repositorys"
|
3877
4014
|
|
3878
4015
|
msgid "Red Hat products cannot be manipulated."
|
3879
4016
|
msgstr "Red Hat Produkte können nicht verändert werden."
|
3880
4017
|
|
4018
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3881
4019
|
msgid "Red Hat provider can not be deleted"
|
3882
4020
|
msgstr "Red Hat Anbieter kann nicht gelöscht werden"
|
3883
4021
|
|
@@ -3885,7 +4023,7 @@ msgid "Red Hat repositories cannot be manipulated."
|
|
3885
4023
|
msgstr "Red Hat Repositorys können nicht verändert werden."
|
3886
4024
|
|
3887
4025
|
msgid "Refresh"
|
3888
|
-
msgstr "
|
4026
|
+
msgstr ""
|
3889
4027
|
|
3890
4028
|
msgid "Refresh Manifest"
|
3891
4029
|
msgstr "Manifest aktualisieren"
|
@@ -3909,7 +4047,7 @@ msgid "Registry name pattern will result in invalid container image name of memb
|
|
3909
4047
|
msgstr ""
|
3910
4048
|
|
3911
4049
|
msgid "Reindex subscriptions"
|
3912
|
-
msgstr "
|
4050
|
+
msgstr ""
|
3913
4051
|
|
3914
4052
|
msgid "Release version for this Host to use (7Server, 7.1, etc)"
|
3915
4053
|
msgstr ""
|
@@ -3927,7 +4065,7 @@ msgid "Reload data"
|
|
3927
4065
|
msgstr "Daten neu laden"
|
3928
4066
|
|
3929
4067
|
msgid "Remote action:"
|
3930
|
-
msgstr "
|
4068
|
+
msgstr ""
|
3931
4069
|
|
3932
4070
|
msgid "Removal of package group(s) requested: %{groups}"
|
3933
4071
|
msgstr ""
|
@@ -3935,6 +4073,9 @@ msgstr ""
|
|
3935
4073
|
msgid "Removal of package(s) requested: %{packages}"
|
3936
4074
|
msgstr ""
|
3937
4075
|
|
4076
|
+
msgid "Remove"
|
4077
|
+
msgstr ""
|
4078
|
+
|
3938
4079
|
msgid "Remove Content"
|
3939
4080
|
msgstr "Inhalt entfernen"
|
3940
4081
|
|
@@ -3959,14 +4100,17 @@ msgstr ""
|
|
3959
4100
|
msgid "Remove content view version"
|
3960
4101
|
msgstr "Inhaltsansichtsversion entfernen"
|
3961
4102
|
|
4103
|
+
msgid "Remove content views"
|
4104
|
+
msgstr ""
|
4105
|
+
|
3962
4106
|
msgid "Remove from Environment"
|
3963
4107
|
msgstr "Aus Umgebung entfernen"
|
3964
4108
|
|
3965
4109
|
msgid "Remove hosts from the host collection"
|
3966
|
-
msgstr "
|
4110
|
+
msgstr ""
|
3967
4111
|
|
3968
4112
|
msgid "Remove lifecycle environments from the smart proxy"
|
3969
|
-
msgstr "
|
4113
|
+
msgstr ""
|
3970
4114
|
|
3971
4115
|
msgid "Remove one or more host collections from one or more hosts"
|
3972
4116
|
msgstr ""
|
@@ -3993,10 +4137,10 @@ msgid "Remove products from sync plan"
|
|
3993
4137
|
msgstr "Produkte aus Synchronisationsplan entfernen"
|
3994
4138
|
|
3995
4139
|
msgid "Remove subscriptions"
|
3996
|
-
msgstr "
|
4140
|
+
msgstr ""
|
3997
4141
|
|
3998
4142
|
msgid "Remove subscriptions from %s"
|
3999
|
-
msgstr "
|
4143
|
+
msgstr ""
|
4000
4144
|
|
4001
4145
|
msgid "Remove subscriptions from one or more hosts"
|
4002
4146
|
msgstr ""
|
@@ -4004,6 +4148,12 @@ msgstr ""
|
|
4004
4148
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
4005
4149
|
msgstr "Versionen und/oder Umgebungen aus einer Inhaltsansicht entfernen und Systeme und Schlüssel neu zuweisen"
|
4006
4150
|
|
4151
|
+
msgid "Removed component from content view"
|
4152
|
+
msgstr ""
|
4153
|
+
|
4154
|
+
msgid "Removed components from content view"
|
4155
|
+
msgstr ""
|
4156
|
+
|
4007
4157
|
msgid "Removing Package Group..."
|
4008
4158
|
msgstr "Paketgruppe wird entfernt …"
|
4009
4159
|
|
@@ -4011,23 +4161,22 @@ msgid "Removing Package..."
|
|
4011
4161
|
msgstr "Paket wird entfernt …"
|
4012
4162
|
|
4013
4163
|
msgid "Repo Type"
|
4014
|
-
msgstr "
|
4164
|
+
msgstr ""
|
4015
4165
|
|
4166
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
4016
4167
|
msgid "Repositories"
|
4017
4168
|
msgstr "Repositorys"
|
4018
4169
|
|
4019
4170
|
msgid "Repositories from published Content Views are not allowed."
|
4020
4171
|
msgstr "Repositorys aus veröffentlichten Inhaltsansichten sind nicht zulässig."
|
4021
4172
|
|
4173
|
+
# translation auto-copied from project Red Hat Satellite Installation Guide, version 6.0, document Definitions1
|
4022
4174
|
msgid "Repository"
|
4023
4175
|
msgstr "Repository"
|
4024
4176
|
|
4025
4177
|
msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
|
4026
4178
|
msgstr "Repository %s kann nicht gelöscht werden, da es bereits in einer veröffentlichen Inhaltsansicht enthalten ist."
|
4027
4179
|
|
4028
|
-
msgid "Repository %s cannot be deleted since they are Red Hat repositories."
|
4029
|
-
msgstr "Repository %s kann nicht gelöscht werden, da es sich um ein Red Hat Repository handelt."
|
4030
|
-
|
4031
4180
|
msgid "Repository '%(repoName)s' has been disabled."
|
4032
4181
|
msgstr ""
|
4033
4182
|
|
@@ -4038,14 +4187,12 @@ msgid "Repository Id associated with the kickstart repo used for provisioning"
|
|
4038
4187
|
msgstr ""
|
4039
4188
|
|
4040
4189
|
msgid "Repository cannot be deleted since it has already been included in a published Content View. Please delete all Content View versions containing this repository before attempting to delete it."
|
4041
|
-
msgstr "
|
4190
|
+
msgstr ""
|
4042
4191
|
|
4043
4192
|
msgid "Repository cannot be disabled since it has already been promoted."
|
4044
4193
|
msgstr "Repository kann nicht deaktiviert werden, da es bereits übertragen wurde."
|
4045
4194
|
|
4046
|
-
|
4047
|
-
msgstr ""
|
4048
|
-
|
4195
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
4049
4196
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4050
4197
|
msgstr "Repository wurde bereits geklont auf %{cv_name} in der Umgebung %{to_env}"
|
4051
4198
|
|
@@ -4067,6 +4214,7 @@ msgstr "Repository nicht gefunden"
|
|
4067
4214
|
msgid "Repository set name to search on"
|
4068
4215
|
msgstr "Name der zu durchsuchenden Repository-Gruppe"
|
4069
4216
|
|
4217
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
4070
4218
|
msgid "Repository sets are not available for custom products."
|
4071
4219
|
msgstr "Repository-Gruppen stehen nicht für benutzerdefinierte Produkte zur Verfügung."
|
4072
4220
|
|
@@ -4076,6 +4224,9 @@ msgstr ""
|
|
4076
4224
|
msgid "Republish Version Repositories"
|
4077
4225
|
msgstr ""
|
4078
4226
|
|
4227
|
+
msgid "Requirements yaml is invalid!"
|
4228
|
+
msgstr ""
|
4229
|
+
|
4079
4230
|
msgid "Requires Virt-Who"
|
4080
4231
|
msgstr ""
|
4081
4232
|
|
@@ -4086,7 +4237,7 @@ msgid "Resolve traces for one or more hosts"
|
|
4086
4237
|
msgstr ""
|
4087
4238
|
|
4088
4239
|
msgid "Resource"
|
4089
|
-
msgstr "
|
4240
|
+
msgstr ""
|
4090
4241
|
|
4091
4242
|
msgid "Restart Services via Katello interface"
|
4092
4243
|
msgstr ""
|
@@ -4094,11 +4245,12 @@ msgstr ""
|
|
4094
4245
|
msgid "Restrict Composite Content View promotion"
|
4095
4246
|
msgstr ""
|
4096
4247
|
|
4248
|
+
# translation auto-copied from project Red Hat Satellite Installation Guide, version 6.0, document chap-Uninstalling_Red_Hat_Satellite_Server_and_Capsule_Server
|
4097
4249
|
msgid "Result"
|
4098
4250
|
msgstr "Ergebnis"
|
4099
4251
|
|
4100
4252
|
msgid "Retrieve a single errata for a host"
|
4101
|
-
msgstr "
|
4253
|
+
msgstr ""
|
4102
4254
|
|
4103
4255
|
msgid "Return Red Hat (non-custom) products only"
|
4104
4256
|
msgstr ""
|
@@ -4118,9 +4270,6 @@ msgstr ""
|
|
4118
4270
|
msgid "Return errata that are upgradable on one or more hosts"
|
4119
4271
|
msgstr ""
|
4120
4272
|
|
4121
|
-
msgid "Return errata that can be added to the Content View Version via an Incremental Update. Will be removed in Katello 4.1."
|
4122
|
-
msgstr ""
|
4123
|
-
|
4124
4273
|
msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
|
4125
4274
|
msgstr ""
|
4126
4275
|
|
@@ -4146,10 +4295,10 @@ msgid "Return packages that can be added to the specified object. Only the valu
|
|
4146
4295
|
msgstr ""
|
4147
4296
|
|
4148
4297
|
msgid "Return subscriptions that match installed products of the specified host"
|
4149
|
-
msgstr "
|
4298
|
+
msgstr ""
|
4150
4299
|
|
4151
4300
|
msgid "Return subscriptions which do not overlap with a currently-attached subscription"
|
4152
|
-
msgstr "
|
4301
|
+
msgstr ""
|
4153
4302
|
|
4154
4303
|
msgid "Return the content of a Content Credential, used directly by yum"
|
4155
4304
|
msgstr ""
|
@@ -4161,17 +4310,18 @@ msgid "Returns content that can be both added and is currently added to the obje
|
|
4161
4310
|
msgstr ""
|
4162
4311
|
|
4163
4312
|
msgid "Role"
|
4164
|
-
msgstr "
|
4313
|
+
msgstr ""
|
4165
4314
|
|
4166
4315
|
msgid "Role of host"
|
4167
4316
|
msgstr ""
|
4168
4317
|
|
4169
4318
|
msgid "Roles"
|
4170
|
-
msgstr "
|
4319
|
+
msgstr ""
|
4171
4320
|
|
4172
4321
|
msgid "Run Sync Plan:"
|
4173
4322
|
msgstr ""
|
4174
4323
|
|
4324
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
4175
4325
|
msgid "Running"
|
4176
4326
|
msgstr "Läuft"
|
4177
4327
|
|
@@ -4188,13 +4338,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
|
|
4188
4338
|
msgstr ""
|
4189
4339
|
|
4190
4340
|
msgid "Save"
|
4191
|
-
msgstr "
|
4341
|
+
msgstr ""
|
4192
4342
|
|
4193
4343
|
msgid "Schedule errata for installation using katello-agent. %s"
|
4194
4344
|
msgstr ""
|
4195
4345
|
|
4196
4346
|
msgid "Search"
|
4197
|
-
msgstr "
|
4347
|
+
msgstr ""
|
4198
4348
|
|
4199
4349
|
msgid "Search pattern (defaults to '*')"
|
4200
4350
|
msgstr ""
|
@@ -4211,33 +4361,39 @@ msgstr ""
|
|
4211
4361
|
msgid "Search string for hosts to perform an action on"
|
4212
4362
|
msgstr ""
|
4213
4363
|
|
4364
|
+
# translation auto-copied from project Customer Portal Translations, version management_page, document Management_Prototype.html, author hpeters
|
4214
4365
|
msgid "Security"
|
4215
4366
|
msgstr "Sicherheit"
|
4216
4367
|
|
4217
4368
|
msgid "Security errata applicable"
|
4218
|
-
msgstr "
|
4369
|
+
msgstr ""
|
4219
4370
|
|
4220
4371
|
msgid "Security errata installable"
|
4221
4372
|
msgstr ""
|
4222
4373
|
|
4223
4374
|
msgid "Select"
|
4224
|
-
msgstr "
|
4375
|
+
msgstr ""
|
4225
4376
|
|
4377
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
4226
4378
|
msgid "Select All"
|
4227
4379
|
msgstr "Alle auswählen"
|
4228
4380
|
|
4229
4381
|
msgid "Select Content View"
|
4230
4382
|
msgstr "Inhaltsansicht auswählen"
|
4231
4383
|
|
4384
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4232
4385
|
msgid "Select None"
|
4233
4386
|
msgstr "Keine auswählen"
|
4234
4387
|
|
4235
4388
|
msgid "Select Organization"
|
4236
|
-
msgstr "
|
4389
|
+
msgstr ""
|
4237
4390
|
|
4238
4391
|
msgid "Select Value"
|
4239
4392
|
msgstr ""
|
4240
4393
|
|
4394
|
+
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
4395
|
+
msgstr ""
|
4396
|
+
|
4241
4397
|
msgid "Select all rows"
|
4242
4398
|
msgstr ""
|
4243
4399
|
|
@@ -4247,6 +4403,9 @@ msgstr "Organisation wählen"
|
|
4247
4403
|
msgid "Select an organization"
|
4248
4404
|
msgstr ""
|
4249
4405
|
|
4406
|
+
msgid "Select available version of ${cvName} to use"
|
4407
|
+
msgstr ""
|
4408
|
+
|
4250
4409
|
msgid "Select hosts to assign to %s"
|
4251
4410
|
msgstr "Hosts zum Zuweisen zu %s auswählen"
|
4252
4411
|
|
@@ -4257,8 +4416,9 @@ msgid "Select the installation media that will be used to provision this host. C
|
|
4257
4416
|
msgstr ""
|
4258
4417
|
|
4259
4418
|
msgid "Service Level"
|
4260
|
-
msgstr "
|
4419
|
+
msgstr ""
|
4261
4420
|
|
4421
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4262
4422
|
msgid "Service Level %s"
|
4263
4423
|
msgstr "Servicelevel %s"
|
4264
4424
|
|
@@ -4292,6 +4452,7 @@ msgstr ""
|
|
4292
4452
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4293
4453
|
msgstr ""
|
4294
4454
|
|
4455
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello, author jdimanos
|
4295
4456
|
msgid "Severity"
|
4296
4457
|
msgstr "Schweregrad"
|
4297
4458
|
|
@@ -4328,6 +4489,7 @@ msgstr "Synchronisationsplan anzeigen"
|
|
4328
4489
|
msgid "Show an activation key"
|
4329
4490
|
msgstr "Aktivierungsschlüssel anzeigen"
|
4330
4491
|
|
4492
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
4331
4493
|
msgid "Show an environment"
|
4332
4494
|
msgstr "Umgebung anzeigen"
|
4333
4495
|
|
@@ -4350,7 +4512,7 @@ msgid "Show releases available for the content host"
|
|
4350
4512
|
msgstr "Verfügbare Releases für den Inhaltshost anzeigen"
|
4351
4513
|
|
4352
4514
|
msgid "Show the available repository types"
|
4353
|
-
msgstr "
|
4515
|
+
msgstr ""
|
4354
4516
|
|
4355
4517
|
msgid "Shows status of Katello system and it's subcomponents"
|
4356
4518
|
msgstr ""
|
@@ -4370,6 +4532,9 @@ msgstr ""
|
|
4370
4532
|
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4371
4533
|
msgstr ""
|
4372
4534
|
|
4535
|
+
msgid "Single content view consisting of repositories"
|
4536
|
+
msgstr ""
|
4537
|
+
|
4373
4538
|
msgid "Size of file to upload"
|
4374
4539
|
msgstr ""
|
4375
4540
|
|
@@ -4377,11 +4542,15 @@ msgid "Skip metadata check on each repository on the smart proxy"
|
|
4377
4542
|
msgstr ""
|
4378
4543
|
|
4379
4544
|
msgid "Skipped pulp_auth check after failed pulp check"
|
4380
|
-
msgstr "
|
4545
|
+
msgstr ""
|
4381
4546
|
|
4382
4547
|
msgid "Smart proxy IDs"
|
4383
|
-
msgstr "
|
4548
|
+
msgstr ""
|
4384
4549
|
|
4550
|
+
msgid "Smart proxy content source not found!"
|
4551
|
+
msgstr ""
|
4552
|
+
|
4553
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
4385
4554
|
msgid "Sockets: %s"
|
4386
4555
|
msgstr "Sockets: %s"
|
4387
4556
|
|
@@ -4400,6 +4569,21 @@ msgstr ""
|
|
4400
4569
|
msgid "Some services are not properly started. See the About page for more information."
|
4401
4570
|
msgstr ""
|
4402
4571
|
|
4572
|
+
msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
|
4573
|
+
msgstr ""
|
4574
|
+
|
4575
|
+
msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
|
4576
|
+
msgstr ""
|
4577
|
+
|
4578
|
+
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
4579
|
+
msgstr ""
|
4580
|
+
|
4581
|
+
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
4582
|
+
msgstr ""
|
4583
|
+
|
4584
|
+
msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
|
4585
|
+
msgstr ""
|
4586
|
+
|
4403
4587
|
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4404
4588
|
msgstr ""
|
4405
4589
|
|
@@ -4425,7 +4609,7 @@ msgid "Sort field and order, eg. 'id DESC'"
|
|
4425
4609
|
msgstr ""
|
4426
4610
|
|
4427
4611
|
msgid "Source RPM"
|
4428
|
-
msgstr "
|
4612
|
+
msgstr ""
|
4429
4613
|
|
4430
4614
|
msgid "Specify an export chunk size less than 1_000_000 GB"
|
4431
4615
|
msgstr ""
|
@@ -4437,38 +4621,43 @@ msgid "Split the exported content into archives no greater than the specified si
|
|
4437
4621
|
msgstr ""
|
4438
4622
|
|
4439
4623
|
msgid "Stacking ID"
|
4440
|
-
msgstr "
|
4624
|
+
msgstr ""
|
4441
4625
|
|
4626
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
4442
4627
|
msgid "Start Date"
|
4443
4628
|
msgstr "Startdatum"
|
4444
4629
|
|
4630
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4445
4631
|
msgid "Start Date and Time can't be blank"
|
4446
4632
|
msgstr "Startdatum und -zeit dürfen nicht leer sein"
|
4447
4633
|
|
4634
|
+
# translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource, author hpeters
|
4448
4635
|
msgid "Start Time"
|
4449
4636
|
msgstr "Startzeit"
|
4450
4637
|
|
4451
4638
|
msgid "Starts"
|
4452
|
-
msgstr "
|
4639
|
+
msgstr ""
|
4453
4640
|
|
4641
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
4454
4642
|
msgid "Status"
|
4455
4643
|
msgstr "Status"
|
4456
4644
|
|
4457
4645
|
msgid "Storage"
|
4458
|
-
msgstr "
|
4646
|
+
msgstr ""
|
4459
4647
|
|
4460
4648
|
msgid "Stream"
|
4461
|
-
msgstr "
|
4649
|
+
msgstr ""
|
4462
4650
|
|
4463
4651
|
msgid "Streams based on the host based on their status"
|
4464
4652
|
msgstr ""
|
4465
4653
|
|
4466
4654
|
msgid "Submit"
|
4467
|
-
msgstr "
|
4655
|
+
msgstr ""
|
4468
4656
|
|
4469
4657
|
msgid "Subnet IDs"
|
4470
|
-
msgstr "
|
4658
|
+
msgstr ""
|
4471
4659
|
|
4660
|
+
# translation auto-copied from project Red Hat Satellite Installation Guide, version 6.0, document Definitions1
|
4472
4661
|
msgid "Subscription"
|
4473
4662
|
msgstr "Subskription"
|
4474
4663
|
|
@@ -4476,16 +4665,16 @@ msgid "Subscription Allocation"
|
|
4476
4665
|
msgstr ""
|
4477
4666
|
|
4478
4667
|
msgid "Subscription Details"
|
4479
|
-
msgstr "
|
4668
|
+
msgstr ""
|
4480
4669
|
|
4481
4670
|
msgid "Subscription ID"
|
4482
4671
|
msgstr "Subskriptions-ID"
|
4483
4672
|
|
4484
4673
|
msgid "Subscription Info"
|
4485
|
-
msgstr "
|
4674
|
+
msgstr ""
|
4486
4675
|
|
4487
4676
|
msgid "Subscription Manifest"
|
4488
|
-
msgstr "
|
4677
|
+
msgstr ""
|
4489
4678
|
|
4490
4679
|
msgid "Subscription Manifest validity check"
|
4491
4680
|
msgstr ""
|
@@ -4494,7 +4683,7 @@ msgid "Subscription Name"
|
|
4494
4683
|
msgstr ""
|
4495
4684
|
|
4496
4685
|
msgid "Subscription Pool id"
|
4497
|
-
msgstr "
|
4686
|
+
msgstr ""
|
4498
4687
|
|
4499
4688
|
msgid "Subscription Pool uuid"
|
4500
4689
|
msgstr "Subskriptionspool-UUID"
|
@@ -4509,7 +4698,7 @@ msgid "Subscription expiration notification"
|
|
4509
4698
|
msgstr ""
|
4510
4699
|
|
4511
4700
|
msgid "Subscription id is nil."
|
4512
|
-
msgstr "
|
4701
|
+
msgstr ""
|
4513
4702
|
|
4514
4703
|
msgid "Subscription identifier"
|
4515
4704
|
msgstr "Subskriptions-ID"
|
@@ -4530,10 +4719,10 @@ msgid "Subscription was not persisted - %{error_message}"
|
|
4530
4719
|
msgstr ""
|
4531
4720
|
|
4532
4721
|
msgid "Subscriptions"
|
4533
|
-
msgstr "
|
4722
|
+
msgstr ""
|
4534
4723
|
|
4535
4724
|
msgid "Subscriptions Expiring in 120 Days"
|
4536
|
-
msgstr "
|
4725
|
+
msgstr ""
|
4537
4726
|
|
4538
4727
|
msgid "Subscriptions expiring soon"
|
4539
4728
|
msgstr ""
|
@@ -4551,7 +4740,7 @@ msgid "Success"
|
|
4551
4740
|
msgstr "Erfolgreich"
|
4552
4741
|
|
4553
4742
|
msgid "Successfully added %s Host(s)."
|
4554
|
-
msgstr "
|
4743
|
+
msgstr ""
|
4555
4744
|
|
4556
4745
|
msgid "Successfully added %{count} content host(s) to host collection %{host_collection}."
|
4557
4746
|
msgstr "%{count} Inhaltshosts erfolgreich zur Hostsammlung %{host_collection} hinzugefügt."
|
@@ -4563,7 +4752,7 @@ msgid "Successfully initiated removal of %s product(s)"
|
|
4563
4752
|
msgstr "Entfernen von %s Produkten erfolgreich initiiert"
|
4564
4753
|
|
4565
4754
|
msgid "Successfully removed %s Host(s)."
|
4566
|
-
msgstr "
|
4755
|
+
msgstr ""
|
4567
4756
|
|
4568
4757
|
msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
|
4569
4758
|
msgstr "%{count} Inhaltshosts erfolgreich von Hostsammlung %{host_collection} entfernt."
|
@@ -4571,15 +4760,17 @@ msgstr "%{count} Inhaltshosts erfolgreich von Hostsammlung %{host_collection} en
|
|
4571
4760
|
msgid "Successfully synchronized."
|
4572
4761
|
msgstr ""
|
4573
4762
|
|
4763
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
4574
4764
|
msgid "Summary"
|
4575
4765
|
msgstr "Zusammenfassung"
|
4576
4766
|
|
4577
4767
|
msgid "Support Type"
|
4578
|
-
msgstr "
|
4768
|
+
msgstr ""
|
4579
4769
|
|
4580
4770
|
msgid "Supported Content Types"
|
4581
4771
|
msgstr ""
|
4582
4772
|
|
4773
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
4583
4774
|
msgid "Sync Canceled"
|
4584
4775
|
msgstr "Synchronisation abgebrochen"
|
4585
4776
|
|
@@ -4592,15 +4783,17 @@ msgstr ""
|
|
4592
4783
|
msgid "Sync Incomplete"
|
4593
4784
|
msgstr "Synchronisation unvollständig"
|
4594
4785
|
|
4786
|
+
# translation auto-copied from project Red Hat Satellite User Guide, version 6.0, document Using_the_CloudForms_System_Engine_Dashboard
|
4595
4787
|
msgid "Sync Overview"
|
4596
4788
|
msgstr "Synchronisationsübersicht"
|
4597
4789
|
|
4598
4790
|
msgid "Sync Plan"
|
4599
|
-
msgstr "
|
4791
|
+
msgstr ""
|
4600
4792
|
|
4601
4793
|
msgid "Sync Plan: "
|
4602
4794
|
msgstr ""
|
4603
4795
|
|
4796
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4604
4797
|
msgid "Sync Plans"
|
4605
4798
|
msgstr "Synchronisationspläne"
|
4606
4799
|
|
@@ -4610,6 +4803,7 @@ msgstr ""
|
|
4610
4803
|
msgid "Sync Smart Proxies after Content View promotion"
|
4611
4804
|
msgstr ""
|
4612
4805
|
|
4806
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4613
4807
|
msgid "Sync Status"
|
4614
4808
|
msgstr "Synchronisationsstatus"
|
4615
4809
|
|
@@ -4623,11 +4817,12 @@ msgid "Sync a repository"
|
|
4623
4817
|
msgstr "Repository synchronisieren"
|
4624
4818
|
|
4625
4819
|
msgid "Sync all repositories for a product"
|
4626
|
-
msgstr "
|
4820
|
+
msgstr ""
|
4627
4821
|
|
4628
4822
|
msgid "Sync capsule"
|
4629
4823
|
msgstr ""
|
4630
4824
|
|
4825
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4631
4826
|
msgid "Sync complete."
|
4632
4827
|
msgstr "Synchronisation abgeschlossen."
|
4633
4828
|
|
@@ -4652,11 +4847,12 @@ msgstr ""
|
|
4652
4847
|
msgid "Synchronize"
|
4653
4848
|
msgstr "Synchronisieren"
|
4654
4849
|
|
4850
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4655
4851
|
msgid "Synchronize Now"
|
4656
4852
|
msgstr "Jetzt synchronisieren"
|
4657
4853
|
|
4658
4854
|
msgid "Synchronize capsule content"
|
4659
|
-
msgstr "
|
4855
|
+
msgstr ""
|
4660
4856
|
|
4661
4857
|
msgid "Synchronize repository"
|
4662
4858
|
msgstr "Repository synchronisieren"
|
@@ -4683,7 +4879,7 @@ msgid "System Status"
|
|
4683
4879
|
msgstr ""
|
4684
4880
|
|
4685
4881
|
msgid "Tags"
|
4686
|
-
msgstr "
|
4882
|
+
msgstr ""
|
4687
4883
|
|
4688
4884
|
msgid "Task"
|
4689
4885
|
msgstr ""
|
@@ -4698,8 +4894,9 @@ msgid "Task detail"
|
|
4698
4894
|
msgstr ""
|
4699
4895
|
|
4700
4896
|
msgid "Temporary"
|
4701
|
-
msgstr "
|
4897
|
+
msgstr ""
|
4702
4898
|
|
4899
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
4703
4900
|
msgid "The '%s' environment cannot contain a changeset!"
|
4704
4901
|
msgstr "Die \"%s\" Umgebung kann keinen Änderungssatz enthalten!"
|
4705
4902
|
|
@@ -4739,12 +4936,6 @@ msgstr "Die Beschreibung der neu generierten Inhaltsansichtsversionen"
|
|
4739
4936
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4740
4937
|
msgstr ""
|
4741
4938
|
|
4742
|
-
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4743
|
-
msgstr ""
|
4744
|
-
|
4745
|
-
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4746
|
-
msgstr ""
|
4747
|
-
|
4748
4939
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4749
4940
|
msgstr "Das Enddatum der Erratum-Filterregel hat ein ungültiges Format oder einen ungültigen Typ."
|
4750
4941
|
|
@@ -4769,7 +4960,7 @@ msgid ""
|
|
4769
4960
|
msgstr ""
|
4770
4961
|
|
4771
4962
|
msgid "The id of the host to alter"
|
4772
|
-
msgstr "
|
4963
|
+
msgstr ""
|
4773
4964
|
|
4774
4965
|
msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
|
4775
4966
|
msgstr ""
|
@@ -4777,6 +4968,9 @@ msgstr ""
|
|
4777
4968
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
4778
4969
|
msgstr ""
|
4779
4970
|
|
4971
|
+
msgid "The maximum number of versions of each package to keep."
|
4972
|
+
msgstr ""
|
4973
|
+
|
4780
4974
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4781
4975
|
msgstr ""
|
4782
4976
|
|
@@ -4795,7 +4989,7 @@ msgid ""
|
|
4795
4989
|
msgstr ""
|
4796
4990
|
|
4797
4991
|
msgid "The page you are attempting to access requires selecting a specific organization."
|
4798
|
-
msgstr "
|
4992
|
+
msgstr ""
|
4799
4993
|
|
4800
4994
|
msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
|
4801
4995
|
msgstr ""
|
@@ -4859,6 +5053,7 @@ msgstr ""
|
|
4859
5053
|
msgid "There are no errata that need to be applied to registered content hosts."
|
4860
5054
|
msgstr "Es gibt keine Errata, die auf registrierte Inhaltshosts angewendet werden müssen."
|
4861
5055
|
|
5056
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
4862
5057
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
4863
5058
|
msgstr "Es sind keine Produkte oder Repositorys aktiviert. Versuchen Sie eine Aktivierung unter %{custom} oder ${redhat}."
|
4864
5059
|
|
@@ -4878,7 +5073,7 @@ msgid "There was a problem retrieving Activation Key data from the server."
|
|
4878
5073
|
msgstr ""
|
4879
5074
|
|
4880
5075
|
msgid "There was an issue with the backend service %s: "
|
4881
|
-
msgstr "
|
5076
|
+
msgstr ""
|
4882
5077
|
|
4883
5078
|
msgid "There's no running synchronization for this smart proxy."
|
4884
5079
|
msgstr ""
|
@@ -4893,7 +5088,7 @@ msgid "This Organization's subscription manifest has expired. Please import a ne
|
|
4893
5088
|
msgstr ""
|
4894
5089
|
|
4895
5090
|
msgid "This action doesn't support package groups"
|
4896
|
-
msgstr "
|
5091
|
+
msgstr ""
|
4897
5092
|
|
4898
5093
|
msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
|
4899
5094
|
msgstr ""
|
@@ -4916,9 +5111,6 @@ msgstr ""
|
|
4916
5111
|
msgid "This is disabled because a manifest task is in progress"
|
4917
5112
|
msgstr ""
|
4918
5113
|
|
4919
|
-
msgid "This is disabled because disconnected mode is enabled."
|
4920
|
-
msgstr ""
|
4921
|
-
|
4922
5114
|
msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
|
4923
5115
|
msgstr ""
|
4924
5116
|
|
@@ -4953,10 +5145,10 @@ msgid "This subscription is not relevant to the current organization."
|
|
4953
5145
|
msgstr ""
|
4954
5146
|
|
4955
5147
|
msgid "Time in seconds to wait for a Host to finish a remote action"
|
4956
|
-
msgstr "
|
5148
|
+
msgstr ""
|
4957
5149
|
|
4958
5150
|
msgid "Time in seconds to wait for a Host to pickup a remote action"
|
4959
|
-
msgstr "
|
5151
|
+
msgstr ""
|
4960
5152
|
|
4961
5153
|
msgid "Timeout when refreshing a manifest (in seconds)"
|
4962
5154
|
msgstr ""
|
@@ -4964,6 +5156,7 @@ msgstr ""
|
|
4964
5156
|
msgid "Timestamp"
|
4965
5157
|
msgstr ""
|
4966
5158
|
|
5159
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4967
5160
|
msgid "Title"
|
4968
5161
|
msgstr "Titel"
|
4969
5162
|
|
@@ -4983,7 +5176,7 @@ msgid "Traces"
|
|
4983
5176
|
msgstr ""
|
4984
5177
|
|
4985
5178
|
msgid "Trigger an auto-attach of subscriptions"
|
4986
|
-
msgstr "
|
5179
|
+
msgstr ""
|
4987
5180
|
|
4988
5181
|
msgid "Trigger an auto-attach of subscriptions on one or more hosts"
|
4989
5182
|
msgstr ""
|
@@ -4992,7 +5185,7 @@ msgid "Try changing your search settings."
|
|
4992
5185
|
msgstr ""
|
4993
5186
|
|
4994
5187
|
msgid "Trying to cancel the synchronization..."
|
4995
|
-
msgstr "
|
5188
|
+
msgstr ""
|
4996
5189
|
|
4997
5190
|
msgid "Type"
|
4998
5191
|
msgstr ""
|
@@ -5003,11 +5196,14 @@ msgstr ""
|
|
5003
5196
|
msgid "Type of content: \"cert\", \"gpg_key\""
|
5004
5197
|
msgstr ""
|
5005
5198
|
|
5199
|
+
msgid "URL needs to have a trailing /"
|
5200
|
+
msgstr ""
|
5201
|
+
|
5006
5202
|
msgid "UUID"
|
5007
|
-
msgstr "
|
5203
|
+
msgstr ""
|
5008
5204
|
|
5009
5205
|
msgid "UUID of the consumer"
|
5010
|
-
msgstr "
|
5206
|
+
msgstr ""
|
5011
5207
|
|
5012
5208
|
msgid "UUID of the content host"
|
5013
5209
|
msgstr "UUID des Inhaltshosts"
|
@@ -5022,18 +5218,12 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
|
|
5022
5218
|
msgstr ""
|
5023
5219
|
|
5024
5220
|
msgid "Unable to connect. Got: %s"
|
5025
|
-
msgstr "Verbindung fehlgeschlagen: %s"
|
5026
|
-
|
5027
|
-
msgid "Unable to detect pulp storage"
|
5028
|
-
msgstr "Pulp-Speicher nicht gefunden"
|
5029
|
-
|
5030
|
-
msgid "Unable to detect puppet path"
|
5031
5221
|
msgstr ""
|
5032
5222
|
|
5033
|
-
msgid "Unable to
|
5223
|
+
msgid "Unable to detect pulp storage"
|
5034
5224
|
msgstr ""
|
5035
5225
|
|
5036
|
-
msgid "Unable to
|
5226
|
+
msgid "Unable to detect puppet path"
|
5037
5227
|
msgstr ""
|
5038
5228
|
|
5039
5229
|
msgid "Unable to find product '%s' in organization '%s'"
|
@@ -5061,7 +5251,7 @@ msgid "Unable to send errata e-mail notification: %{error}"
|
|
5061
5251
|
msgstr ""
|
5062
5252
|
|
5063
5253
|
msgid "Unable to sync repo. This repository does not have a feed url."
|
5064
|
-
msgstr "
|
5254
|
+
msgstr ""
|
5065
5255
|
|
5066
5256
|
msgid "Unable to synchronize any repository. You either do not have the permission to synchronize or the selected repositories do not have a feed url."
|
5067
5257
|
msgstr "Keine Repositorys konnten synchronisiert werden. Sie haben entweder nicht die Berechtigung zur Synchronisation oder die ausgewählten Repositorys haben keine Feed-URL."
|
@@ -5082,7 +5272,7 @@ msgid "Unattach a subscription"
|
|
5082
5272
|
msgstr "Subskription lösen"
|
5083
5273
|
|
5084
5274
|
msgid "Unentitled"
|
5085
|
-
msgstr "
|
5275
|
+
msgstr ""
|
5086
5276
|
|
5087
5277
|
msgid "Unfiltered params array: %s."
|
5088
5278
|
msgstr ""
|
@@ -5090,6 +5280,7 @@ msgstr ""
|
|
5090
5280
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
5091
5281
|
msgstr ""
|
5092
5282
|
|
5283
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
5093
5284
|
msgid "Unknown"
|
5094
5285
|
msgstr "Unbekannt"
|
5095
5286
|
|
@@ -5097,19 +5288,19 @@ msgid "Unknown Action"
|
|
5097
5288
|
msgstr ""
|
5098
5289
|
|
5099
5290
|
msgid "Unknown errata status"
|
5100
|
-
msgstr "
|
5291
|
+
msgstr ""
|
5101
5292
|
|
5102
5293
|
msgid "Unknown or Unregistered"
|
5103
5294
|
msgstr ""
|
5104
5295
|
|
5105
5296
|
msgid "Unknown subscription status"
|
5106
|
-
msgstr "
|
5297
|
+
msgstr ""
|
5107
5298
|
|
5108
5299
|
msgid "Unknown traces status"
|
5109
5300
|
msgstr ""
|
5110
5301
|
|
5111
5302
|
msgid "Unlimited"
|
5112
|
-
msgstr "
|
5303
|
+
msgstr ""
|
5113
5304
|
|
5114
5305
|
msgid "Unregister host %s before assigning an organization"
|
5115
5306
|
msgstr ""
|
@@ -5126,6 +5317,7 @@ msgstr ""
|
|
5126
5317
|
msgid "Unsubscribed hypervisor"
|
5127
5318
|
msgstr ""
|
5128
5319
|
|
5320
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
5129
5321
|
msgid "Unsupported URL protocol %s."
|
5130
5322
|
msgstr "Nicht unterstütztes URL-Protokoll %s."
|
5131
5323
|
|
@@ -5171,6 +5363,7 @@ msgstr "Synchronisationsplan aktualisieren"
|
|
5171
5363
|
msgid "Update an activation key"
|
5172
5364
|
msgstr "Aktivierungsschlüssel aktualisieren"
|
5173
5365
|
|
5366
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
5174
5367
|
msgid "Update an environment"
|
5175
5368
|
msgstr "Umgebung aktualisieren"
|
5176
5369
|
|
@@ -5184,10 +5377,10 @@ msgid "Update content urls"
|
|
5184
5377
|
msgstr ""
|
5185
5378
|
|
5186
5379
|
msgid "Update for host"
|
5187
|
-
msgstr "
|
5380
|
+
msgstr ""
|
5188
5381
|
|
5189
5382
|
msgid "Update for host %s"
|
5190
|
-
msgstr "
|
5383
|
+
msgstr ""
|
5191
5384
|
|
5192
5385
|
msgid "Update http proxy"
|
5193
5386
|
msgstr ""
|
@@ -5232,7 +5425,7 @@ msgid "Update release version for host %s"
|
|
5232
5425
|
msgstr ""
|
5233
5426
|
|
5234
5427
|
msgid "Update services requiring restart"
|
5235
|
-
msgstr "
|
5428
|
+
msgstr ""
|
5236
5429
|
|
5237
5430
|
msgid "Update the HTTP proxy configuration on the repositories of one or more products."
|
5238
5431
|
msgstr ""
|
@@ -5243,8 +5436,14 @@ msgstr "Informationen über aktivierte Repositorys aktualisieren"
|
|
5243
5436
|
msgid "Update the quantity of one or more subscriptions on an upstream allocation"
|
5244
5437
|
msgstr ""
|
5245
5438
|
|
5439
|
+
msgid "Update version"
|
5440
|
+
msgstr ""
|
5441
|
+
|
5246
5442
|
msgid "Updated"
|
5247
|
-
msgstr "
|
5443
|
+
msgstr ""
|
5444
|
+
|
5445
|
+
msgid "Updated component details"
|
5446
|
+
msgstr ""
|
5248
5447
|
|
5249
5448
|
msgid "Updates"
|
5250
5449
|
msgstr ""
|
@@ -5255,6 +5454,7 @@ msgstr "Aktualisiert ein Produkt"
|
|
5255
5454
|
msgid "Updates all packages on the host(s)"
|
5256
5455
|
msgstr ""
|
5257
5456
|
|
5457
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5258
5458
|
msgid "Updating Package..."
|
5259
5459
|
msgstr "Paket wird aktualisiert …"
|
5260
5460
|
|
@@ -5264,6 +5464,7 @@ msgstr ""
|
|
5264
5464
|
msgid "Updating System Purpose for host %s"
|
5265
5465
|
msgstr ""
|
5266
5466
|
|
5467
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
5267
5468
|
msgid "Updating package group..."
|
5268
5469
|
msgstr "Paketgruppe wird aktualisiert …"
|
5269
5470
|
|
@@ -5285,9 +5486,6 @@ msgstr "Subskriptionsmanifest hochladen"
|
|
5285
5486
|
msgid "Upload content into the repository"
|
5286
5487
|
msgstr "Inhalt in ein Repository hochladen"
|
5287
5488
|
|
5288
|
-
msgid "Upload errata into"
|
5289
|
-
msgstr ""
|
5290
|
-
|
5291
5489
|
msgid "Upload into"
|
5292
5490
|
msgstr "Hochgeladen in"
|
5293
5491
|
|
@@ -5325,7 +5523,7 @@ msgid "Used to determine download concurrency of the repository in pulp3. Use va
|
|
5325
5523
|
msgstr ""
|
5326
5524
|
|
5327
5525
|
msgid "User"
|
5328
|
-
msgstr "
|
5526
|
+
msgstr ""
|
5329
5527
|
|
5330
5528
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5331
5529
|
msgstr "Benutzer \"%s\" hat keine Organisations-ID angegeben und hat keine Standardorganisation."
|
@@ -5334,7 +5532,7 @@ msgid "User '%{user}' does not belong to Organization '%{organization}'."
|
|
5334
5532
|
msgstr "Benutzer \"%{user}\" gehört nicht zur Organisation \"%{organization}\"."
|
5335
5533
|
|
5336
5534
|
msgid "User IDs"
|
5337
|
-
msgstr "
|
5535
|
+
msgstr ""
|
5338
5536
|
|
5339
5537
|
msgid "User must be logged in."
|
5340
5538
|
msgstr "Benutzer muss angemeldet sein."
|
@@ -5346,7 +5544,7 @@ msgid "Username to access URL"
|
|
5346
5544
|
msgstr ""
|
5347
5545
|
|
5348
5546
|
msgid "Valid"
|
5349
|
-
msgstr "
|
5547
|
+
msgstr ""
|
5350
5548
|
|
5351
5549
|
msgid "Value must either be a boolean or 'default' for 'enabled'"
|
5352
5550
|
msgstr ""
|
@@ -5361,20 +5559,28 @@ msgid "Verify checksum of repository contents"
|
|
5361
5559
|
msgstr ""
|
5362
5560
|
|
5363
5561
|
msgid "Version"
|
5364
|
-
msgstr "
|
5562
|
+
msgstr ""
|
5563
|
+
|
5564
|
+
msgid "Version "
|
5565
|
+
msgstr ""
|
5566
|
+
|
5567
|
+
msgid "Version ${item.version}"
|
5568
|
+
msgstr ""
|
5365
5569
|
|
5366
5570
|
msgid "Versions"
|
5367
|
-
msgstr "
|
5571
|
+
msgstr ""
|
5368
5572
|
|
5369
5573
|
msgid "Versions will appear here when the content view is published."
|
5370
5574
|
msgstr ""
|
5371
5575
|
|
5576
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author rgromans
|
5372
5577
|
msgid "View %{view} has not been promoted to %{env}"
|
5373
5578
|
msgstr "Ansicht %{view} wurde bereits übertragen in %{env}"
|
5374
5579
|
|
5375
5580
|
msgid "View a report of the affected hosts"
|
5376
5581
|
msgstr ""
|
5377
5582
|
|
5583
|
+
# translation auto-copied from project nm-applet, version 0.8.1, document nm-applet, author jdimanos
|
5378
5584
|
msgid "Virtual"
|
5379
5585
|
msgstr "Virtuell"
|
5380
5586
|
|
@@ -5385,19 +5591,19 @@ msgid "When registering a host via subscription-manager, force use the specified
|
|
5385
5591
|
msgstr ""
|
5386
5592
|
|
5387
5593
|
msgid "When set to 'True' repository types that are creatable will be returned"
|
5388
|
-
msgstr "
|
5594
|
+
msgstr ""
|
5389
5595
|
|
5390
5596
|
msgid "When unregistering a host via subscription-manager, also delete the host record. Managed resources linked to host such as virtual machines and DNS records may also be deleted."
|
5391
5597
|
msgstr ""
|
5392
5598
|
|
5393
5599
|
msgid "Whether or not the host collection may have unlimited hosts"
|
5394
|
-
msgstr "
|
5600
|
+
msgstr ""
|
5395
5601
|
|
5396
5602
|
msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
|
5397
5603
|
msgstr ""
|
5398
5604
|
|
5399
5605
|
msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
|
5400
|
-
msgstr "
|
5606
|
+
msgstr ""
|
5401
5607
|
|
5402
5608
|
msgid "Whether or not to regenerate the repository on disk. Default: true"
|
5403
5609
|
msgstr ""
|
@@ -5409,10 +5615,10 @@ msgid "Whether or not to sync an external capsule after upload. Default: true"
|
|
5409
5615
|
msgstr ""
|
5410
5616
|
|
5411
5617
|
msgid "Whether to include available content attribute in results"
|
5412
|
-
msgstr "
|
5618
|
+
msgstr ""
|
5413
5619
|
|
5414
5620
|
msgid "Workers"
|
5415
|
-
msgstr "
|
5621
|
+
msgstr ""
|
5416
5622
|
|
5417
5623
|
msgid "Wrong content type submitted."
|
5418
5624
|
msgstr ""
|
@@ -5421,7 +5627,7 @@ msgid "Yay empty state"
|
|
5421
5627
|
msgstr ""
|
5422
5628
|
|
5423
5629
|
msgid "Yes"
|
5424
|
-
msgstr "
|
5630
|
+
msgstr ""
|
5425
5631
|
|
5426
5632
|
msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
|
5427
5633
|
msgstr ""
|
@@ -5436,7 +5642,7 @@ msgid "You can check sync status for repositories only in the library lifecycle
|
|
5436
5642
|
msgstr "Sie können den Synchronisationsstatus für Repositorys nur in der Library-Lebenszyklusumgebung prüfen."
|
5437
5643
|
|
5438
5644
|
msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
|
5439
|
-
msgstr "
|
5645
|
+
msgstr ""
|
5440
5646
|
|
5441
5647
|
msgid "You cannot set an organization's parent. This feature is disabled."
|
5442
5648
|
msgstr "Sie können keine übergeordnete Organisation für diese Organisation festlegen. Diese Funktion ist deaktiviert."
|
@@ -5490,7 +5696,7 @@ msgid "Your search query was invalid. Please revise it and try again. The full e
|
|
5490
5696
|
msgstr ""
|
5491
5697
|
|
5492
5698
|
msgid "Yum Metadata: %s"
|
5493
|
-
msgstr "
|
5699
|
+
msgstr ""
|
5494
5700
|
|
5495
5701
|
msgid "a deb"
|
5496
5702
|
msgstr ""
|
@@ -5535,7 +5741,7 @@ msgid "add all module streams without errata to the included/excluded list. (mod
|
|
5535
5741
|
msgstr ""
|
5536
5742
|
|
5537
5743
|
msgid "add all packages without errata to the included/excluded list. (package filter only)"
|
5538
|
-
msgstr "
|
5744
|
+
msgstr ""
|
5539
5745
|
|
5540
5746
|
msgid "all packages"
|
5541
5747
|
msgstr "alle Pakete"
|
@@ -5561,6 +5767,7 @@ msgstr ""
|
|
5561
5767
|
msgid "an erratum"
|
5562
5768
|
msgstr "ein Erratum"
|
5563
5769
|
|
5770
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
5564
5771
|
msgid "an organization"
|
5565
5772
|
msgstr "eine Organisation"
|
5566
5773
|
|
@@ -5571,7 +5778,7 @@ msgid "are only allowed for Yum repositories."
|
|
5571
5778
|
msgstr ""
|
5572
5779
|
|
5573
5780
|
msgid "attempted to sync without a feed URL"
|
5574
|
-
msgstr "
|
5781
|
+
msgstr ""
|
5575
5782
|
|
5576
5783
|
msgid "auto attach subscriptions upon registration"
|
5577
5784
|
msgstr "Nach Registrierung automatisch mit Subskriptionen verknüpfen"
|
@@ -5619,8 +5826,9 @@ msgid "cannot be set for non-ostree repositories."
|
|
5619
5826
|
msgstr ""
|
5620
5827
|
|
5621
5828
|
msgid "cannot be set for non-yum repositories."
|
5622
|
-
msgstr "
|
5829
|
+
msgstr ""
|
5623
5830
|
|
5831
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5624
5832
|
msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
|
5625
5833
|
msgstr "darf nur ASCII alphanumerische Zeichen, \"_\" und \"-\" enthalten. "
|
5626
5834
|
|
@@ -5633,14 +5841,15 @@ msgstr "darf keine Filter enthalten falls Verbundansicht"
|
|
5633
5841
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5634
5842
|
msgstr "darf keine Filter enthalten, deren Repositorys nicht zu dieser Inhaltsansicht gehören"
|
5635
5843
|
|
5844
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5636
5845
|
msgid "cannot contain more than %s characters"
|
5637
5846
|
msgstr "darf nicht mehr als %s Zeichen enthalten"
|
5638
5847
|
|
5639
5848
|
msgid "checking Candlepin task status"
|
5640
|
-
msgstr "
|
5849
|
+
msgstr ""
|
5641
5850
|
|
5642
5851
|
msgid "checking Pulp task status"
|
5643
|
-
msgstr "
|
5852
|
+
msgstr ""
|
5644
5853
|
|
5645
5854
|
msgid "composite content view identifier"
|
5646
5855
|
msgstr ""
|
@@ -5703,7 +5912,7 @@ msgid "content view versions to compare"
|
|
5703
5912
|
msgstr "Zu vergleichende Inhaltsansichtsversionen"
|
5704
5913
|
|
5705
5914
|
msgid "create a filter for a content view"
|
5706
|
-
msgstr "
|
5915
|
+
msgstr ""
|
5707
5916
|
|
5708
5917
|
msgid "deb Packages"
|
5709
5918
|
msgstr ""
|
@@ -5715,8 +5924,9 @@ msgid "default package names to include in the package group"
|
|
5715
5924
|
msgstr ""
|
5716
5925
|
|
5717
5926
|
msgid "delete a filter"
|
5718
|
-
msgstr "
|
5927
|
+
msgstr ""
|
5719
5928
|
|
5929
|
+
# translation auto-copied from project anaconda, version 19.31.34, document anaconda
|
5720
5930
|
msgid "description"
|
5721
5931
|
msgstr "Beschreibung"
|
5722
5932
|
|
@@ -5778,7 +5988,7 @@ msgid "erratum: id"
|
|
5778
5988
|
msgstr "Erratum: ID"
|
5779
5989
|
|
5780
5990
|
msgid "erratum: search using the 'Issued On' or 'Updated On' column of the errata. Values are 'issued'/'updated'"
|
5781
|
-
msgstr "
|
5991
|
+
msgstr ""
|
5782
5992
|
|
5783
5993
|
msgid "erratum: start date (YYYY-MM-DD)"
|
5784
5994
|
msgstr "Erratum: Startdatum (JJJJ-MM-TT)"
|
@@ -5796,11 +6006,14 @@ msgid "filter by sync date"
|
|
5796
6006
|
msgstr "nach Synchronisationsdatum filtern"
|
5797
6007
|
|
5798
6008
|
msgid "filter content view filters by name"
|
5799
|
-
msgstr "
|
6009
|
+
msgstr ""
|
5800
6010
|
|
5801
6011
|
msgid "filter identifier"
|
5802
6012
|
msgstr "ID filtern"
|
5803
6013
|
|
6014
|
+
msgid "filter identifiers"
|
6015
|
+
msgstr ""
|
6016
|
+
|
5804
6017
|
msgid "filter only environments containing this name"
|
5805
6018
|
msgstr "nur Umgebungen mit diesem Namen filtern"
|
5806
6019
|
|
@@ -5811,17 +6024,18 @@ msgid "force content view promotion and bypass lifecycle environment restriction
|
|
5811
6024
|
msgstr "Übertragung der Inhaltsansicht erzwingen und Einschränkungen der Lebenszyklusumgebung umgehen"
|
5812
6025
|
|
5813
6026
|
msgid "foreman-tasks service not running or is not ready yet"
|
5814
|
-
msgstr "
|
6027
|
+
msgstr ""
|
5815
6028
|
|
5816
6029
|
msgid "has already been taken"
|
5817
6030
|
msgstr "wird bereits verwendet"
|
5818
6031
|
|
5819
6032
|
msgid "has already been taken for a product in this organization."
|
5820
|
-
msgstr "
|
6033
|
+
msgstr ""
|
5821
6034
|
|
5822
6035
|
msgid "has already been taken for this product."
|
5823
6036
|
msgstr "wird bereits verwendet für dieses Produkt."
|
5824
6037
|
|
6038
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
|
5825
6039
|
msgid "here"
|
5826
6040
|
msgstr "hier"
|
5827
6041
|
|
@@ -5831,11 +6045,12 @@ msgstr "Name der Hostsammlung, nach der gefiltert werden soll"
|
|
5831
6045
|
msgid "hosts"
|
5832
6046
|
msgstr ""
|
5833
6047
|
|
6048
|
+
# translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
|
5834
6049
|
msgid "how often synchronization should run"
|
5835
6050
|
msgstr "Häufigkeit der Synchronisation"
|
5836
6051
|
|
5837
6052
|
msgid "id of a host"
|
5838
|
-
msgstr "
|
6053
|
+
msgstr ""
|
5839
6054
|
|
5840
6055
|
msgid "id of host"
|
5841
6056
|
msgstr ""
|
@@ -5856,26 +6071,32 @@ msgid "if true, Katello will verify the upstream url's SSL certifcates are signe
|
|
5856
6071
|
msgstr ""
|
5857
6072
|
|
5858
6073
|
msgid "initiating Candlepin task"
|
5859
|
-
msgstr "
|
6074
|
+
msgstr ""
|
5860
6075
|
|
5861
6076
|
msgid "initiating Pulp task"
|
5862
|
-
msgstr "
|
6077
|
+
msgstr ""
|
5863
6078
|
|
6079
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5864
6080
|
msgid "installing errata..."
|
5865
6081
|
msgstr "Errata werden installiert …"
|
5866
6082
|
|
6083
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5867
6084
|
msgid "installing erratum..."
|
5868
6085
|
msgstr "Erratum wird installiert …"
|
5869
6086
|
|
6087
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5870
6088
|
msgid "installing package group..."
|
5871
6089
|
msgstr "Paketgruppe wird installiert …"
|
5872
6090
|
|
6091
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5873
6092
|
msgid "installing package groups..."
|
5874
6093
|
msgstr "Paketgruppen werden installiert …"
|
5875
6094
|
|
6095
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5876
6096
|
msgid "installing package..."
|
5877
6097
|
msgstr "Paket wird installiert …"
|
5878
6098
|
|
6099
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5879
6100
|
msgid "installing packages..."
|
5880
6101
|
msgstr "Pakete werden installiert …"
|
5881
6102
|
|
@@ -5894,6 +6115,9 @@ msgstr "ist bereits mit der Capsule verknüpft"
|
|
5894
6115
|
msgid "is invalid"
|
5895
6116
|
msgstr "ist ungültig"
|
5896
6117
|
|
6118
|
+
msgid "is not enabled. must be one of the following: %s"
|
6119
|
+
msgstr ""
|
6120
|
+
|
5897
6121
|
msgid "label of the environment"
|
5898
6122
|
msgstr "Kennung der Umgebung"
|
5899
6123
|
|
@@ -5907,7 +6131,7 @@ msgid "limit to only repositories with this download policy"
|
|
5907
6131
|
msgstr ""
|
5908
6132
|
|
5909
6133
|
msgid "list filters"
|
5910
|
-
msgstr "
|
6134
|
+
msgstr ""
|
5911
6135
|
|
5912
6136
|
msgid "list of packages names"
|
5913
6137
|
msgstr "Liste mit Paketnamen"
|
@@ -5922,16 +6146,13 @@ msgid "mandatory package names to include in the package group"
|
|
5922
6146
|
msgstr ""
|
5923
6147
|
|
5924
6148
|
msgid "max_hosts must be given a value if this host collection is not unlimited."
|
5925
|
-
msgstr "
|
6149
|
+
msgstr ""
|
5926
6150
|
|
5927
6151
|
msgid "maximum number of registered content hosts"
|
5928
6152
|
msgstr "Höchstanzahl von registrierten Inhaltshosts"
|
5929
6153
|
|
5930
|
-
msgid "maximum size of each ISO in MB"
|
5931
|
-
msgstr "Maximale Größe der ISO in MB"
|
5932
|
-
|
5933
6154
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5934
|
-
msgstr "
|
6155
|
+
msgstr ""
|
5935
6156
|
|
5936
6157
|
msgid "module stream ids"
|
5937
6158
|
msgstr ""
|
@@ -5954,6 +6175,7 @@ msgstr ""
|
|
5954
6175
|
msgid "must be unique within one organization"
|
5955
6176
|
msgstr "muss innerhalb einer Organisation eindeutig sein"
|
5956
6177
|
|
6178
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
5957
6179
|
msgid "must contain '%s'"
|
5958
6180
|
msgstr "muss \"%s\" enthalten"
|
5959
6181
|
|
@@ -5972,6 +6194,7 @@ msgstr "muss einen gültigen öffentlichen GPG-Schlüssel enthalten"
|
|
5972
6194
|
msgid "must not contain leading or trailing white spaces."
|
5973
6195
|
msgstr "darf keine führenden oder nachfolgenden Leerstellen enthalten."
|
5974
6196
|
|
6197
|
+
# translation auto-copied from project anaconda, version 19.31.34, document anaconda
|
5975
6198
|
msgid "name"
|
5976
6199
|
msgstr "Name"
|
5977
6200
|
|
@@ -6009,7 +6232,7 @@ msgid "new name to be given to the environment"
|
|
6009
6232
|
msgstr "Neuer Name für die Umgebung"
|
6010
6233
|
|
6011
6234
|
msgid "no"
|
6012
|
-
msgstr "
|
6235
|
+
msgstr ""
|
6013
6236
|
|
6014
6237
|
msgid "no global default"
|
6015
6238
|
msgstr ""
|
@@ -6017,6 +6240,7 @@ msgstr ""
|
|
6017
6240
|
msgid "obtain manifest history for subscriptions"
|
6018
6241
|
msgstr "Manifestchronik für Subskriptionen laden"
|
6019
6242
|
|
6243
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author hedda
|
6020
6244
|
msgid "of environment must be unique within one organization"
|
6021
6245
|
msgstr "der Umgebung muss eindeutig innerhalb einer Organisation sein"
|
6022
6246
|
|
@@ -6092,15 +6316,19 @@ msgstr "Numerische ID des Produkts"
|
|
6092
6316
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6093
6317
|
msgstr ""
|
6094
6318
|
|
6319
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6095
6320
|
msgid "removing package group..."
|
6096
6321
|
msgstr "Paketgruppe wird entfernt …"
|
6097
6322
|
|
6323
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6098
6324
|
msgid "removing package groups..."
|
6099
6325
|
msgstr "Paketgruppen werden entfernt …"
|
6100
6326
|
|
6327
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6101
6328
|
msgid "removing package..."
|
6102
6329
|
msgstr "Paket wird entfernt …"
|
6103
6330
|
|
6331
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6104
6332
|
msgid "removing packages..."
|
6105
6333
|
msgstr "Pakete werden entfernt …"
|
6106
6334
|
|
@@ -6150,16 +6378,16 @@ msgid "show archived repositories"
|
|
6150
6378
|
msgstr ""
|
6151
6379
|
|
6152
6380
|
msgid "show filter info"
|
6153
|
-
msgstr "
|
6381
|
+
msgstr ""
|
6154
6382
|
|
6155
6383
|
msgid "show repositories in Library and the default content view"
|
6156
6384
|
msgstr "Repositorys in Library und standardmäßige Inhaltsansicht anzeigen"
|
6157
6385
|
|
6158
6386
|
msgid "some executors are not responding, check %{status_url}"
|
6159
|
-
msgstr "
|
6387
|
+
msgstr ""
|
6160
6388
|
|
6161
6389
|
msgid "source URL is malformed"
|
6162
|
-
msgstr "
|
6390
|
+
msgstr ""
|
6163
6391
|
|
6164
6392
|
msgid "specifies if content should be included or excluded, default: inclusion=false"
|
6165
6393
|
msgstr "Gibt an, ob Inhalt einbezogen oder ausgeschlossen werden soll. Standard: inclusion=false"
|
@@ -6168,7 +6396,7 @@ msgid "start datetime of synchronization"
|
|
6168
6396
|
msgstr "Startdatum und -zeit der Synchronisation"
|
6169
6397
|
|
6170
6398
|
msgid "subscriptions not specified"
|
6171
|
-
msgstr "
|
6399
|
+
msgstr ""
|
6172
6400
|
|
6173
6401
|
msgid "sync plan description"
|
6174
6402
|
msgstr "Beschreibung des Synchronisationsplans"
|
@@ -6180,8 +6408,9 @@ msgid "sync plan numeric identifier"
|
|
6180
6408
|
msgstr "Numerische ID des Synchronisationsplans"
|
6181
6409
|
|
6182
6410
|
msgid "temporarily override feed URL for sync"
|
6183
|
-
msgstr "
|
6411
|
+
msgstr ""
|
6184
6412
|
|
6413
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6185
6414
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6186
6415
|
msgstr "Die folgenden Attribute können nicht für den Red Hat Anbieter aktualisiert werden: [ %s ]"
|
6187
6416
|
|
@@ -6201,26 +6430,30 @@ msgid "type of filter (e.g. rpm, package_group, erratum, docker, modulemd)"
|
|
6201
6430
|
msgstr ""
|
6202
6431
|
|
6203
6432
|
msgid "type of repo"
|
6204
|
-
msgstr ""
|
6433
|
+
msgstr "Typ des Repositorys"
|
6205
6434
|
|
6206
6435
|
msgid "types of filters"
|
6207
6436
|
msgstr ""
|
6208
6437
|
|
6209
6438
|
msgid "unknown permission for %s"
|
6210
|
-
msgstr "
|
6439
|
+
msgstr ""
|
6211
6440
|
|
6212
6441
|
msgid "update a filter"
|
6213
|
-
msgstr "
|
6442
|
+
msgstr ""
|
6214
6443
|
|
6444
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6215
6445
|
msgid "updating package group..."
|
6216
6446
|
msgstr "Paketgruppe wird aktualisiert …"
|
6217
6447
|
|
6448
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6218
6449
|
msgid "updating package groups..."
|
6219
6450
|
msgstr "Paketgruppen werden aktualisiert …"
|
6220
6451
|
|
6452
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6221
6453
|
msgid "updating package..."
|
6222
6454
|
msgstr "Paket wird aktualisiert …"
|
6223
6455
|
|
6456
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6224
6457
|
msgid "updating packages..."
|
6225
6458
|
msgstr "Pakete werden aktualisiert …"
|
6226
6459
|
|
@@ -6228,13 +6461,13 @@ msgid "url not defined."
|
|
6228
6461
|
msgstr "URL nicht definiert"
|
6229
6462
|
|
6230
6463
|
msgid "waiting for Candlepin to finish the task"
|
6231
|
-
msgstr "
|
6464
|
+
msgstr ""
|
6232
6465
|
|
6233
6466
|
msgid "waiting for Pulp to finish the task"
|
6234
|
-
msgstr "
|
6467
|
+
msgstr ""
|
6235
6468
|
|
6236
6469
|
msgid "waiting for Pulp to start the task"
|
6237
|
-
msgstr "
|
6470
|
+
msgstr ""
|
6238
6471
|
|
6239
6472
|
msgid "whitespace-separated list of architectures to be synced from deb-archive"
|
6240
6473
|
msgstr ""
|
@@ -6249,7 +6482,7 @@ msgid "with"
|
|
6249
6482
|
msgstr ""
|
6250
6483
|
|
6251
6484
|
msgid "yes"
|
6252
|
-
msgstr "
|
6485
|
+
msgstr ""
|
6253
6486
|
|
6254
6487
|
msgid "{0} items selected"
|
6255
6488
|
msgstr ""
|