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/te/katello.po
CHANGED
@@ -1,23 +1,23 @@
|
|
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
|
-
#
|
6
|
+
# Miroslav Suchy <msuchy@redhat.com>, 2012-2013.
|
7
|
+
# kkrothap <kkrothap@fedoraproject.org>, 2013. #zanata
|
9
8
|
msgid ""
|
10
9
|
msgstr ""
|
11
|
-
"Project-Id-Version:
|
10
|
+
"Project-Id-Version: version 0.0.1\n"
|
12
11
|
"Report-Msgid-Bugs-To: \n"
|
13
|
-
"PO-Revision-Date: 2017-12-19 20:14+0000\n"
|
14
|
-
"Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2021\n"
|
15
|
-
"Language-Team: Telugu (https://www.transifex.com/foreman/teams/114/te/)\n"
|
16
12
|
"MIME-Version: 1.0\n"
|
17
13
|
"Content-Type: text/plain; charset=UTF-8\n"
|
18
14
|
"Content-Transfer-Encoding: 8bit\n"
|
15
|
+
"PO-Revision-Date: 2013-07-09 04:29-0400\n"
|
16
|
+
"Last-Translator: kkrothap <kkrothap@fedoraproject.org>\n"
|
17
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
19
18
|
"Language: te\n"
|
20
19
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
20
|
+
"X-Generator: Zanata 3.6.2\n"
|
21
21
|
|
22
22
|
msgid ""
|
23
23
|
"\n"
|
@@ -33,7 +33,7 @@ msgstr ""
|
|
33
33
|
msgid " %{package_count} Package(s)"
|
34
34
|
msgstr ""
|
35
35
|
|
36
|
-
msgid " Content view updated
|
36
|
+
msgid " Content view updated"
|
37
37
|
msgstr ""
|
38
38
|
|
39
39
|
msgid " Either select the latest content view or the content view version. Cannot set both."
|
@@ -42,17 +42,23 @@ msgstr ""
|
|
42
42
|
msgid " RPMs"
|
43
43
|
msgstr ""
|
44
44
|
|
45
|
-
msgid "
|
45
|
+
msgid " View task details "
|
46
46
|
msgstr ""
|
47
47
|
|
48
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
49
|
+
msgid " environment cannot be set to an environment already on its path"
|
50
|
+
msgstr "దాని మార్గంలో వున్న యెన్విరాన్మెంట్కు యెన్విరాన్మెంట్ అమర్చలేదు"
|
51
|
+
|
48
52
|
msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
|
49
53
|
msgstr ""
|
50
54
|
|
51
55
|
msgid "%s Available"
|
52
56
|
msgstr ""
|
53
57
|
|
58
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
59
|
+
#, fuzzy
|
54
60
|
msgid "%s Errata"
|
55
|
-
msgstr ""
|
61
|
+
msgstr "ఎర్రాటా"
|
56
62
|
|
57
63
|
msgid "%s Host"
|
58
64
|
msgid_plural "%s Hosts"
|
@@ -62,14 +68,16 @@ msgstr[1] ""
|
|
62
68
|
msgid "%s Used"
|
63
69
|
msgstr ""
|
64
70
|
|
71
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
65
72
|
msgid "%s ago"
|
66
73
|
msgstr "%s పూర్వం"
|
67
74
|
|
68
75
|
msgid "%s has already been deleted"
|
69
76
|
msgstr ""
|
70
77
|
|
78
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
71
79
|
msgid "%s is not a valid package name"
|
72
|
-
msgstr ""
|
80
|
+
msgstr "%s చెల్లునటువంటి ప్యాకేజీ పేరు కాదు"
|
73
81
|
|
74
82
|
msgid "%s is unreachable. %s"
|
75
83
|
msgstr ""
|
@@ -77,179 +85,236 @@ msgstr ""
|
|
77
85
|
msgid "%s must be an array."
|
78
86
|
msgstr ""
|
79
87
|
|
88
|
+
#, fuzzy
|
80
89
|
msgid "%{errata} (%{total} other errata)"
|
81
|
-
msgstr ""
|
90
|
+
msgstr "%{errata} (%{rest} ఇతర యెర్రాటా)"
|
82
91
|
|
92
|
+
#, fuzzy
|
83
93
|
msgid "%{errata} (%{total} other errata) install canceled"
|
84
|
-
msgstr ""
|
94
|
+
msgstr "%s (%s ఇతర యెర్రాటా) సంస్థాపన రద్దైనది"
|
85
95
|
|
96
|
+
#, fuzzy
|
86
97
|
msgid "%{errata} (%{total} other errata) install failed"
|
87
|
-
msgstr ""
|
98
|
+
msgstr "%s (%s ఇతర యెర్రాటా) సంస్థాపన విఫలమైంది"
|
88
99
|
|
100
|
+
#, fuzzy
|
89
101
|
msgid "%{errata} (%{total} other errata) install timed out"
|
90
|
-
msgstr ""
|
102
|
+
msgstr "%s (%s ఇతర యెర్రాటా) సంస్థాపన సమయం మించెను"
|
91
103
|
|
104
|
+
#, fuzzy
|
92
105
|
msgid "%{errata} (%{total} other errata) installed"
|
93
|
-
msgstr ""
|
106
|
+
msgstr "%{errata} (%{rest} ఇతర యెర్రాటా)"
|
94
107
|
|
108
|
+
#, fuzzy
|
95
109
|
msgid "%{errata} erratum install canceled"
|
96
|
-
msgstr ""
|
110
|
+
msgstr "%s ఎర్రాటమ్ సంస్థాపన రద్దైనది"
|
97
111
|
|
112
|
+
#, fuzzy
|
98
113
|
msgid "%{errata} erratum install failed"
|
99
|
-
msgstr ""
|
114
|
+
msgstr "%s యెర్రాటమ్ సంస్థాపన విఫలమైంది"
|
100
115
|
|
116
|
+
#, fuzzy
|
101
117
|
msgid "%{errata} erratum install timed out"
|
102
|
-
msgstr ""
|
118
|
+
msgstr "%s యెర్రాటమ్ సంస్థాపన సమయం మించెను"
|
103
119
|
|
120
|
+
#, fuzzy
|
104
121
|
msgid "%{errata} erratum installed"
|
105
|
-
msgstr ""
|
122
|
+
msgstr "%s erratum సంస్థాపించబడెను"
|
106
123
|
|
107
124
|
msgid "%{expiring_subs} subscriptions in %{subject} are going to expire in less than %{days} days. Please renew them before they expire to guarantee your hosts will continue receiving content."
|
108
125
|
msgstr ""
|
109
126
|
|
127
|
+
#, fuzzy
|
110
128
|
msgid "%{group} (%{total} other package groups)"
|
111
|
-
msgstr ""
|
129
|
+
msgstr "%{group} (%{rest} ఇతర ప్యాకేజీ సమూహాలు)"
|
112
130
|
|
131
|
+
#, fuzzy
|
113
132
|
msgid "%{group} (%{total} other package groups) install canceled"
|
114
|
-
msgstr ""
|
133
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) సంస్థాపన రద్దైనది"
|
115
134
|
|
135
|
+
#, fuzzy
|
116
136
|
msgid "%{group} (%{total} other package groups) install failed"
|
117
|
-
msgstr ""
|
137
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) సంస్థాపన విఫలమైంది"
|
118
138
|
|
139
|
+
#, fuzzy
|
119
140
|
msgid "%{group} (%{total} other package groups) install timed out"
|
120
|
-
msgstr ""
|
141
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) సంస్థాపన సమయం మించెను"
|
121
142
|
|
143
|
+
#, fuzzy
|
122
144
|
msgid "%{group} (%{total} other package groups) installed"
|
123
|
-
msgstr ""
|
145
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) సంస్థాపించబడెను"
|
124
146
|
|
147
|
+
#, fuzzy
|
125
148
|
msgid "%{group} (%{total} other package groups) remove canceled"
|
126
|
-
msgstr ""
|
149
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) తీసివేత రద్దైనది"
|
127
150
|
|
151
|
+
#, fuzzy
|
128
152
|
msgid "%{group} (%{total} other package groups) remove failed"
|
129
|
-
msgstr ""
|
153
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) తీసివేత విఫలమైంది"
|
130
154
|
|
155
|
+
#, fuzzy
|
131
156
|
msgid "%{group} (%{total} other package groups) remove timed out"
|
132
|
-
msgstr ""
|
157
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) తీసివేత సమయం మించెను"
|
133
158
|
|
159
|
+
#, fuzzy
|
134
160
|
msgid "%{group} (%{total} other package groups) removed"
|
135
|
-
msgstr ""
|
161
|
+
msgstr "%{group} (%{rest} ఇతర ప్యాకేజీ సమూహాలు)"
|
136
162
|
|
163
|
+
#, fuzzy
|
137
164
|
msgid "%{group} (%{total} other package groups) update canceled"
|
138
|
-
msgstr ""
|
165
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) నవీకరణ రద్దైనది"
|
139
166
|
|
167
|
+
#, fuzzy
|
140
168
|
msgid "%{group} (%{total} other package groups) update failed"
|
141
|
-
msgstr ""
|
169
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) నవీకరణ విఫలమైంది"
|
142
170
|
|
171
|
+
#, fuzzy
|
143
172
|
msgid "%{group} (%{total} other package groups) update timed out"
|
144
|
-
msgstr ""
|
173
|
+
msgstr "%s (%s ఇతర ప్యాకేజీ సమూహాలు) నవీకరణ సమయం మించినది"
|
145
174
|
|
175
|
+
#, fuzzy
|
146
176
|
msgid "%{group} (%{total} other package groups) updated"
|
147
|
-
msgstr ""
|
177
|
+
msgstr "%{group} (%{rest} ఇతర ప్యాకేజీ సమూహాలు)"
|
148
178
|
|
179
|
+
#, fuzzy
|
149
180
|
msgid "%{group} package group install canceled"
|
150
|
-
msgstr ""
|
181
|
+
msgstr "%s ప్యాకేజీ సమూహం సంస్థాపన రద్దైనది"
|
151
182
|
|
183
|
+
#, fuzzy
|
152
184
|
msgid "%{group} package group install failed"
|
153
|
-
msgstr ""
|
185
|
+
msgstr "%s ప్యాకేజీ సమూహ సంస్థాపన విఫలమైంది"
|
154
186
|
|
187
|
+
#, fuzzy
|
155
188
|
msgid "%{group} package group install timed out"
|
156
|
-
msgstr ""
|
189
|
+
msgstr "%s ప్యాకేజీ సమూహ సంస్థాపన సమయం మించినది"
|
157
190
|
|
191
|
+
#, fuzzy
|
158
192
|
msgid "%{group} package group installed"
|
159
|
-
msgstr ""
|
193
|
+
msgstr "%s ప్యాకేజీ సమూహం సంస్థాపించబడెను"
|
160
194
|
|
195
|
+
#, fuzzy
|
161
196
|
msgid "%{group} package group remove canceled"
|
162
|
-
msgstr ""
|
197
|
+
msgstr "%s ప్యాకేజీ సమూహం తీసివేత రద్దైనది"
|
163
198
|
|
199
|
+
#, fuzzy
|
164
200
|
msgid "%{group} package group remove failed"
|
165
|
-
msgstr ""
|
201
|
+
msgstr "%s ప్యాకేజీ సమూహ తీసివేత విఫలమైంది"
|
166
202
|
|
203
|
+
#, fuzzy
|
167
204
|
msgid "%{group} package group remove timed out"
|
168
|
-
msgstr ""
|
205
|
+
msgstr "%s ప్యాకేజీ సమూహ తీసివేత సమయం మించినది"
|
169
206
|
|
207
|
+
#, fuzzy
|
170
208
|
msgid "%{group} package group removed"
|
171
|
-
msgstr ""
|
209
|
+
msgstr "%s ప్యాకేజీ సమూహం తీసివేయబడెను"
|
172
210
|
|
211
|
+
#, fuzzy
|
173
212
|
msgid "%{group} package group update canceled"
|
174
|
-
msgstr ""
|
213
|
+
msgstr "%s ప్యాకేజీ సమూహం నవీకరణ రద్దైనది"
|
175
214
|
|
215
|
+
#, fuzzy
|
176
216
|
msgid "%{group} package group update failed"
|
177
|
-
msgstr ""
|
217
|
+
msgstr "%s ప్యాకేజీ సమూహ నవీకరణ విఫలమైంది"
|
178
218
|
|
219
|
+
#, fuzzy
|
179
220
|
msgid "%{group} package group update timed out"
|
180
|
-
msgstr ""
|
221
|
+
msgstr "%s ప్యాకేజీ సమూహ నవీకరణ సమయం మించినది"
|
181
222
|
|
223
|
+
#, fuzzy
|
182
224
|
msgid "%{group} package group updated"
|
183
|
-
msgstr ""
|
225
|
+
msgstr "%s ప్యాకేజీ సమూహం నవీకరించబడెను"
|
184
226
|
|
227
|
+
#, fuzzy
|
185
228
|
msgid "%{package} (%{total} other packages)"
|
186
|
-
msgstr ""
|
229
|
+
msgstr "%{package} (%{rest} ఇతర ప్యాకేజీలు)"
|
187
230
|
|
231
|
+
#, fuzzy
|
188
232
|
msgid "%{package} (%{total} other packages) install canceled"
|
189
|
-
msgstr ""
|
233
|
+
msgstr "%s (%s ఇతర ప్యాకేజీలు) సంస్థాపన రద్దైనది"
|
190
234
|
|
235
|
+
#, fuzzy
|
191
236
|
msgid "%{package} (%{total} other packages) install failed"
|
192
|
-
msgstr ""
|
237
|
+
msgstr "%s (%s ఇతర ప్యాకేజీలు) సంస్థాపన విఫలమైంది"
|
193
238
|
|
239
|
+
#, fuzzy
|
194
240
|
msgid "%{package} (%{total} other packages) install timed out"
|
195
|
-
msgstr ""
|
241
|
+
msgstr "%s (%s ఇతర ప్యాకేజీలు) సంస్థాపన సమయం మించెను"
|
196
242
|
|
243
|
+
#, fuzzy
|
197
244
|
msgid "%{package} (%{total} other packages) installed"
|
198
|
-
msgstr ""
|
245
|
+
msgstr "%{package} (%{rest} ఇతర ప్యాకేజీలు)"
|
199
246
|
|
247
|
+
#, fuzzy
|
200
248
|
msgid "%{package} (%{total} other packages) remove canceled"
|
201
|
-
msgstr ""
|
249
|
+
msgstr "%s (%s ఇతర ప్యాకేజీలు) తీసివేత రద్దైనది"
|
202
250
|
|
251
|
+
#, fuzzy
|
203
252
|
msgid "%{package} (%{total} other packages) remove failed"
|
204
|
-
msgstr ""
|
253
|
+
msgstr "%s (%s ఇతర ప్యాకేజీలు) తీసివేత విఫలమైంది"
|
205
254
|
|
255
|
+
#, fuzzy
|
206
256
|
msgid "%{package} (%{total} other packages) remove timed out"
|
207
|
-
msgstr ""
|
257
|
+
msgstr "%s (%s ఇతర ప్యాకేజీలు) తీసివేత సమయం మించెను"
|
208
258
|
|
259
|
+
#, fuzzy
|
209
260
|
msgid "%{package} (%{total} other packages) removed"
|
210
|
-
msgstr ""
|
261
|
+
msgstr "%{package} (%{rest} ఇతర ప్యాకేజీలు)"
|
211
262
|
|
263
|
+
#, fuzzy
|
212
264
|
msgid "%{package} (%{total} other packages) update canceled"
|
213
|
-
msgstr ""
|
265
|
+
msgstr "%s (%s ఇతర ప్యాకేజీలు) నవీకరణ రద్దైనది"
|
214
266
|
|
267
|
+
#, fuzzy
|
215
268
|
msgid "%{package} (%{total} other packages) update failed"
|
216
|
-
msgstr ""
|
269
|
+
msgstr "%s (%s ఇతర ప్యాకేజీలు) నవీకరణ విఫలమైంది"
|
217
270
|
|
271
|
+
#, fuzzy
|
218
272
|
msgid "%{package} (%{total} other packages) update timed out"
|
219
|
-
msgstr ""
|
273
|
+
msgstr "%s (%s ఇతర ప్యాకేజీలు) నవీకరణ సమయం మించెను"
|
220
274
|
|
275
|
+
#, fuzzy
|
221
276
|
msgid "%{package} (%{total} other packages) updated"
|
222
|
-
msgstr ""
|
277
|
+
msgstr "%{package} (%{rest} ఇతర ప్యాకేజీలు)"
|
223
278
|
|
279
|
+
#, fuzzy
|
224
280
|
msgid "%{package} package install canceled"
|
225
|
-
msgstr ""
|
281
|
+
msgstr "%s ప్యాకేజీ సంస్థాపన రద్దైనది"
|
226
282
|
|
283
|
+
#, fuzzy
|
227
284
|
msgid "%{package} package install timed out"
|
228
|
-
msgstr ""
|
285
|
+
msgstr "%s ప్యాకేజీ సంస్థాపన సమయం మించినది"
|
229
286
|
|
287
|
+
#, fuzzy
|
230
288
|
msgid "%{package} package remove canceled"
|
231
|
-
msgstr ""
|
289
|
+
msgstr "%s ప్యాకేజీ తీసివేత రద్దైనది"
|
232
290
|
|
291
|
+
#, fuzzy
|
233
292
|
msgid "%{package} package remove failed"
|
234
|
-
msgstr ""
|
293
|
+
msgstr "%s ప్యాకేజీ తీసివేత విఫలమైంది"
|
235
294
|
|
295
|
+
#, fuzzy
|
236
296
|
msgid "%{package} package remove timed out"
|
237
|
-
msgstr ""
|
297
|
+
msgstr "%s ప్యాకేజీ తీసివేత సమయం మించినది"
|
238
298
|
|
299
|
+
#, fuzzy
|
239
300
|
msgid "%{package} package removed"
|
240
|
-
msgstr ""
|
301
|
+
msgstr "%s ప్యాకేజీ తీసివేయబడెను"
|
241
302
|
|
303
|
+
#, fuzzy
|
242
304
|
msgid "%{package} package update canceled"
|
243
|
-
msgstr ""
|
305
|
+
msgstr "%s ప్యాకేజీ నవీకరణ రద్దైనది"
|
244
306
|
|
307
|
+
#, fuzzy
|
245
308
|
msgid "%{package} package update failed"
|
246
|
-
msgstr ""
|
309
|
+
msgstr "%s ప్యాకేజీ నవీకరణ విఫలమైంది"
|
247
310
|
|
311
|
+
#, fuzzy
|
248
312
|
msgid "%{package} package update timed out"
|
249
|
-
msgstr ""
|
313
|
+
msgstr "%s ప్యాకేజీ నవీకరణ సమయం మించినది"
|
250
314
|
|
315
|
+
#, fuzzy
|
251
316
|
msgid "%{package} package updated"
|
252
|
-
msgstr ""
|
317
|
+
msgstr "%s ప్యాకేజీ నవీకరించబడెను"
|
253
318
|
|
254
319
|
msgid "%{sla}"
|
255
320
|
msgstr ""
|
@@ -275,8 +340,9 @@ msgstr ""
|
|
275
340
|
msgid ", must be unique to major and version id version."
|
276
341
|
msgstr ""
|
277
342
|
|
343
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
278
344
|
msgid ": '%s' is a built-in environment"
|
279
|
-
msgstr ""
|
345
|
+
msgstr ": '%s' అనునది అంతర-నిర్మిత యెన్విరాన్మెంట్"
|
280
346
|
|
281
347
|
msgid ":a_resource identifier"
|
282
348
|
msgstr ""
|
@@ -299,8 +365,9 @@ msgstr ""
|
|
299
365
|
msgid "A content view can be added by using the \"New content view\" button below."
|
300
366
|
msgstr ""
|
301
367
|
|
368
|
+
#, fuzzy
|
302
369
|
msgid "A content_type must be provided."
|
303
|
-
msgstr ""
|
370
|
+
msgstr "ఒక కీపేరు తప్పక యివ్వాలి"
|
304
371
|
|
305
372
|
msgid "A large number of errata are unapplied in this content view, so only the first 100 are shown."
|
306
373
|
msgstr ""
|
@@ -311,6 +378,9 @@ msgstr ""
|
|
311
378
|
msgid "A list of subscriptions expiring soon"
|
312
379
|
msgstr ""
|
313
380
|
|
381
|
+
msgid "A new version of "
|
382
|
+
msgstr ""
|
383
|
+
|
314
384
|
msgid "A post-promotion summary of hosts with installable errata"
|
315
385
|
msgstr ""
|
316
386
|
|
@@ -320,7 +390,7 @@ msgstr ""
|
|
320
390
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
321
391
|
msgstr ""
|
322
392
|
|
323
|
-
msgid "A smart proxy seems to have been refreshed without pulpcore being running.
|
393
|
+
msgid "A smart proxy seems to have been refreshed without pulpcore being running. Please refresh the smart proxy after ensuring that pulpcore services are running."
|
324
394
|
msgstr ""
|
325
395
|
|
326
396
|
msgid "A summary of available and applicable errata for your hosts"
|
@@ -342,7 +412,7 @@ msgid "Account Number"
|
|
342
412
|
msgstr ""
|
343
413
|
|
344
414
|
msgid "Action"
|
345
|
-
msgstr "
|
415
|
+
msgstr ""
|
346
416
|
|
347
417
|
msgid "Action not allowed for the default smart proxy."
|
348
418
|
msgstr ""
|
@@ -356,22 +426,24 @@ msgstr ""
|
|
356
426
|
msgid "Action with sub plans"
|
357
427
|
msgstr ""
|
358
428
|
|
429
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
359
430
|
msgid "Activation Keys"
|
360
|
-
msgstr ""
|
431
|
+
msgstr "క్రియాశీలపు కీలు"
|
361
432
|
|
362
433
|
msgid "Activation key ID"
|
363
434
|
msgstr ""
|
364
435
|
|
365
|
-
msgid "Activation key for subscription-manager client
|
436
|
+
msgid "Activation key for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. For multiple keys use `activation_keys` param instead."
|
366
437
|
msgstr ""
|
367
438
|
|
368
439
|
msgid "Activation key(s) for Subscription Manager."
|
369
440
|
msgstr ""
|
370
441
|
|
371
|
-
|
372
|
-
msgstr ""
|
373
|
-
|
442
|
+
#, fuzzy
|
374
443
|
msgid "Activation keys and subscriptions can be managed"
|
444
|
+
msgstr "క్రియాశీల కీ '%s' సృష్టించబడెను."
|
445
|
+
|
446
|
+
msgid "Activation keys for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys."
|
375
447
|
msgstr ""
|
376
448
|
|
377
449
|
msgid "Activation keys: "
|
@@ -380,7 +452,12 @@ msgstr ""
|
|
380
452
|
msgid "Active Subscriptions"
|
381
453
|
msgstr ""
|
382
454
|
|
455
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
456
|
+
#, fuzzy
|
383
457
|
msgid "Active only"
|
458
|
+
msgstr "క్రియాశీలపు కీలు"
|
459
|
+
|
460
|
+
msgid "Add"
|
384
461
|
msgstr ""
|
385
462
|
|
386
463
|
msgid "Add Subscriptions"
|
@@ -389,6 +466,9 @@ msgstr ""
|
|
389
466
|
msgid "Add a subscription to a host"
|
390
467
|
msgstr ""
|
391
468
|
|
469
|
+
msgid "Add component"
|
470
|
+
msgstr ""
|
471
|
+
|
392
472
|
msgid "Add components to the content view"
|
393
473
|
msgstr ""
|
394
474
|
|
@@ -431,6 +511,9 @@ msgstr ""
|
|
431
511
|
msgid "Added Content:"
|
432
512
|
msgstr ""
|
433
513
|
|
514
|
+
msgid "Added component to content view"
|
515
|
+
msgstr ""
|
516
|
+
|
434
517
|
msgid "Adding content units"
|
435
518
|
msgstr ""
|
436
519
|
|
@@ -455,6 +538,12 @@ msgstr ""
|
|
455
538
|
msgid "All errata applied"
|
456
539
|
msgstr ""
|
457
540
|
|
541
|
+
msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
542
|
+
msgstr ""
|
543
|
+
|
544
|
+
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
545
|
+
msgstr ""
|
546
|
+
|
458
547
|
msgid "Allow new Host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
|
459
548
|
msgstr ""
|
460
549
|
|
@@ -464,6 +553,9 @@ msgstr ""
|
|
464
553
|
msgid "Always Use Latest (currently %{version})"
|
465
554
|
msgstr ""
|
466
555
|
|
556
|
+
msgid "Always update to latest version"
|
557
|
+
msgstr ""
|
558
|
+
|
467
559
|
msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
|
468
560
|
msgstr ""
|
469
561
|
|
@@ -573,17 +665,21 @@ msgstr ""
|
|
573
665
|
msgid "At least one Content View Version must be specified"
|
574
666
|
msgstr ""
|
575
667
|
|
668
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
576
669
|
msgid "At least one activation key must be provided"
|
577
|
-
msgstr ""
|
670
|
+
msgstr "కనీసం వొక క్రియాశీలపు కీ తప్పక అందించాలి"
|
578
671
|
|
579
672
|
msgid "At least one activation key must have a lifecycle environment and content view assigned to it"
|
580
673
|
msgstr ""
|
581
674
|
|
675
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
582
676
|
msgid "At least one organization must exist."
|
583
|
-
msgstr ""
|
677
|
+
msgstr "కనీసం వొక సంస్థ తప్పక వుండాలి."
|
584
678
|
|
679
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
680
|
+
#, fuzzy
|
585
681
|
msgid "Attach a subscription"
|
586
|
-
msgstr ""
|
682
|
+
msgstr "అనుబందించిన సబ్స్క్రిప్షన్లు"
|
587
683
|
|
588
684
|
msgid "Attach subscriptions"
|
589
685
|
msgstr ""
|
@@ -594,8 +690,14 @@ msgstr ""
|
|
594
690
|
msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
|
595
691
|
msgstr ""
|
596
692
|
|
693
|
+
msgid "Auth URL requires Auth token be set."
|
694
|
+
msgstr ""
|
695
|
+
|
696
|
+
msgid "Auth token requires Auth URL be set."
|
697
|
+
msgstr ""
|
698
|
+
|
597
699
|
msgid "Author"
|
598
|
-
msgstr "
|
700
|
+
msgstr ""
|
599
701
|
|
600
702
|
msgid "Auto Publish"
|
601
703
|
msgstr ""
|
@@ -603,8 +705,10 @@ msgstr ""
|
|
603
705
|
msgid "Auto Publish - Triggered by '%s'"
|
604
706
|
msgstr ""
|
605
707
|
|
708
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
709
|
+
#, fuzzy
|
606
710
|
msgid "Auto attach subscriptions"
|
607
|
-
msgstr ""
|
711
|
+
msgstr "అనుబందించిన సబ్స్క్రిప్షన్లు"
|
608
712
|
|
609
713
|
msgid "Autopublish"
|
610
714
|
msgstr ""
|
@@ -639,8 +743,9 @@ msgstr ""
|
|
639
743
|
msgid "Batch size to sync repositories in."
|
640
744
|
msgstr ""
|
641
745
|
|
746
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
642
747
|
msgid "Beta"
|
643
|
-
msgstr ""
|
748
|
+
msgstr "బీటా"
|
644
749
|
|
645
750
|
msgid "Bind an entitlement to an allocation"
|
646
751
|
msgstr ""
|
@@ -654,11 +759,14 @@ msgstr ""
|
|
654
759
|
msgid "Branches updated"
|
655
760
|
msgstr ""
|
656
761
|
|
762
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
657
763
|
msgid "Bug Fix"
|
658
|
-
msgstr ""
|
764
|
+
msgstr "బగ్ పరిష్కారం"
|
659
765
|
|
766
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
767
|
+
#, fuzzy
|
660
768
|
msgid "Bugfix"
|
661
|
-
msgstr ""
|
769
|
+
msgstr "బగ్ పరిష్కారం"
|
662
770
|
|
663
771
|
msgid "Bulk generate applicability for hosts"
|
664
772
|
msgstr ""
|
@@ -666,14 +774,17 @@ msgstr ""
|
|
666
774
|
msgid "CDN SSL version"
|
667
775
|
msgstr ""
|
668
776
|
|
777
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
669
778
|
msgid "CDN loading error: %s not found"
|
670
|
-
msgstr ""
|
779
|
+
msgstr "CDN లోడింగ్ దోషం: %s కనుగొనలేదు"
|
671
780
|
|
781
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
672
782
|
msgid "CDN loading error: access denied to %s"
|
673
|
-
msgstr ""
|
783
|
+
msgstr "CDN లోడింగ్ దోషం: యాక్సెస్ %s కు తిరస్కరించబడెను"
|
674
784
|
|
785
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
675
786
|
msgid "CDN loading error: access forbidden to %s"
|
676
|
-
msgstr ""
|
787
|
+
msgstr "CDN లోడింగ్ దోషం: %s కు యాక్సెస్ దాచివుంది"
|
677
788
|
|
678
789
|
msgid "CVE identifier"
|
679
790
|
msgstr ""
|
@@ -699,9 +810,11 @@ msgstr ""
|
|
699
810
|
msgid "Can only upload to Yum Repositories."
|
700
811
|
msgstr ""
|
701
812
|
|
813
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
702
814
|
msgid "Can't update the '%s' environment"
|
703
|
-
msgstr ""
|
815
|
+
msgstr "'%s' యెన్విరాన్మెంట్ను నవీకరించలేదు"
|
704
816
|
|
817
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
705
818
|
msgid "Cancel"
|
706
819
|
msgstr "రద్దు"
|
707
820
|
|
@@ -711,17 +824,22 @@ msgstr ""
|
|
711
824
|
msgid "Cancel running smart proxy synchronization"
|
712
825
|
msgstr ""
|
713
826
|
|
827
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
828
|
+
#, fuzzy
|
714
829
|
msgid "Canceled"
|
715
|
-
msgstr ""
|
830
|
+
msgstr "రద్దైను."
|
716
831
|
|
717
832
|
msgid "Cancelled"
|
718
833
|
msgstr ""
|
719
834
|
|
835
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
836
|
+
#, fuzzy
|
720
837
|
msgid "Cancelled."
|
721
|
-
msgstr ""
|
838
|
+
msgstr "రద్దైను."
|
722
839
|
|
840
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
723
841
|
msgid "Candlepin Event"
|
724
|
-
msgstr ""
|
842
|
+
msgstr "కాండిల్పిన్ ఘటన"
|
725
843
|
|
726
844
|
msgid "Candlepin ID of pool to add"
|
727
845
|
msgstr ""
|
@@ -762,14 +880,16 @@ msgstr ""
|
|
762
880
|
msgid "Cannot clone into the Default Content View"
|
763
881
|
msgstr ""
|
764
882
|
|
883
|
+
#, fuzzy
|
765
884
|
msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
|
766
|
-
msgstr ""
|
885
|
+
msgstr "చేంజ్సెట్ '%s' పునఃపరిశీలన దశనందు వున్నది కావున దానిని తొలగించలేము."
|
767
886
|
|
768
887
|
msgid "Cannot delete Red Hat product: %{product}"
|
769
888
|
msgstr ""
|
770
889
|
|
890
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
771
891
|
msgid "Cannot delete from %s, view does not exist there."
|
772
|
-
msgstr ""
|
892
|
+
msgstr "%s నుండి తొలగించలేదు, అక్కడ దర్శనం లేదు."
|
773
893
|
|
774
894
|
msgid "Cannot delete product with repositories published in a content view. Product: %{product}, %{view_versions}"
|
775
895
|
msgstr ""
|
@@ -786,17 +906,20 @@ msgstr ""
|
|
786
906
|
msgid "Cannot delete the last Location."
|
787
907
|
msgstr ""
|
788
908
|
|
909
|
+
#, fuzzy
|
789
910
|
msgid "Cannot delete version while it is in environment %s"
|
790
|
-
msgstr ""
|
911
|
+
msgstr "వేరే యెన్విరాన్మెంట్ అయిన టెంప్లేట్ను సవరించలేము"
|
791
912
|
|
913
|
+
#, fuzzy
|
792
914
|
msgid "Cannot delete version while it is in environments: %s"
|
793
|
-
msgstr ""
|
915
|
+
msgstr "వేరే యెన్విరాన్మెంట్ అయిన టెంప్లేట్ను సవరించలేము"
|
794
916
|
|
795
917
|
msgid "Cannot delete version while it is in use by composite content views: %s"
|
796
918
|
msgstr ""
|
797
919
|
|
920
|
+
#, fuzzy
|
798
921
|
msgid "Cannot delete view while it exists in environments"
|
799
|
-
msgstr ""
|
922
|
+
msgstr "వేరే యెన్విరాన్మెంట్ అయిన టెంప్లేట్ను సవరించలేము"
|
800
923
|
|
801
924
|
msgid "Cannot import a composite content view"
|
802
925
|
msgstr ""
|
@@ -822,8 +945,9 @@ msgstr ""
|
|
822
945
|
msgid "Cannot publish default content view"
|
823
946
|
msgstr ""
|
824
947
|
|
948
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
825
949
|
msgid "Cannot register a system to the '%s' environment"
|
826
|
-
msgstr ""
|
950
|
+
msgstr "'%s' యెన్విరాన్మెంట్కు వ్యవస్థను నమోదు చేయలేదు"
|
827
951
|
|
828
952
|
msgid "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependent}: %{names}."
|
829
953
|
msgstr ""
|
@@ -885,14 +1009,16 @@ msgstr ""
|
|
885
1009
|
msgid "Click here to go to the tasks page for the task."
|
886
1010
|
msgstr ""
|
887
1011
|
|
1012
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
888
1013
|
msgid "Clone"
|
889
1014
|
msgstr "క్లోన్"
|
890
1015
|
|
891
1016
|
msgid "Close"
|
892
|
-
msgstr "
|
1017
|
+
msgstr ""
|
893
1018
|
|
1019
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
894
1020
|
msgid "Collapse All"
|
895
|
-
msgstr ""
|
1021
|
+
msgstr "అన్నిటినీ కూల్చు"
|
896
1022
|
|
897
1023
|
msgid "Combined Profile Update"
|
898
1024
|
msgstr ""
|
@@ -903,12 +1029,16 @@ msgstr ""
|
|
903
1029
|
msgid "Comma-separated list of tags to sync for Container Image repository"
|
904
1030
|
msgstr ""
|
905
1031
|
|
1032
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
906
1033
|
msgid "Component"
|
907
|
-
msgstr ""
|
1034
|
+
msgstr "మూలకం"
|
908
1035
|
|
909
1036
|
msgid "Component Content View"
|
910
1037
|
msgstr ""
|
911
1038
|
|
1039
|
+
msgid "Component content view"
|
1040
|
+
msgstr ""
|
1041
|
+
|
912
1042
|
msgid "Composite Content View"
|
913
1043
|
msgstr ""
|
914
1044
|
|
@@ -930,6 +1060,9 @@ msgstr ""
|
|
930
1060
|
msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
|
931
1061
|
msgstr ""
|
932
1062
|
|
1063
|
+
msgid "Consisting of multiple component content views"
|
1064
|
+
msgstr ""
|
1065
|
+
|
933
1066
|
msgid "Consumed"
|
934
1067
|
msgstr ""
|
935
1068
|
|
@@ -955,7 +1088,7 @@ msgid "Container image tag"
|
|
955
1088
|
msgstr ""
|
956
1089
|
|
957
1090
|
msgid "Content"
|
958
|
-
msgstr ""
|
1091
|
+
msgstr "కాంటెంట్"
|
959
1092
|
|
960
1093
|
msgid "Content Credential ID"
|
961
1094
|
msgstr ""
|
@@ -972,8 +1105,9 @@ msgstr ""
|
|
972
1105
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
973
1106
|
msgstr ""
|
974
1107
|
|
1108
|
+
#, fuzzy
|
975
1109
|
msgid "Content Hosts"
|
976
|
-
msgstr ""
|
1110
|
+
msgstr "కాంటెంట్"
|
977
1111
|
|
978
1112
|
msgid "Content Source"
|
979
1113
|
msgstr ""
|
@@ -984,8 +1118,9 @@ msgstr ""
|
|
984
1118
|
msgid "Content Types"
|
985
1119
|
msgstr ""
|
986
1120
|
|
1121
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
987
1122
|
msgid "Content View"
|
988
|
-
msgstr ""
|
1123
|
+
msgstr "కాంటెంట్ దర్శనం"
|
989
1124
|
|
990
1125
|
msgid "Content View %{view}: Versions: %{versions}"
|
991
1126
|
msgstr ""
|
@@ -999,8 +1134,10 @@ msgstr ""
|
|
999
1134
|
msgid "Content View Details"
|
1000
1135
|
msgstr ""
|
1001
1136
|
|
1137
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1138
|
+
#, fuzzy
|
1002
1139
|
msgid "Content View Filter id"
|
1003
|
-
msgstr ""
|
1140
|
+
msgstr "కాంటెంట్ దర్శనాల అవలోకనం"
|
1004
1141
|
|
1005
1142
|
msgid "Content View Filter identifier"
|
1006
1143
|
msgstr ""
|
@@ -1029,8 +1166,9 @@ msgstr ""
|
|
1029
1166
|
msgid "Content View id"
|
1030
1167
|
msgstr ""
|
1031
1168
|
|
1169
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1032
1170
|
msgid "Content Views"
|
1033
|
-
msgstr ""
|
1171
|
+
msgstr "కాంటెంట్ దర్శనాలు"
|
1034
1172
|
|
1035
1173
|
msgid "Content files to upload. Can be a single file or array of files."
|
1036
1174
|
msgstr ""
|
@@ -1050,14 +1188,21 @@ msgstr ""
|
|
1050
1188
|
msgid "Content type"
|
1051
1189
|
msgstr ""
|
1052
1190
|
|
1191
|
+
msgid "Content type %{content_type_string} does not belong to an enabled repo type."
|
1192
|
+
msgstr ""
|
1193
|
+
|
1194
|
+
msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
|
1195
|
+
msgstr ""
|
1196
|
+
|
1053
1197
|
msgid "Content view"
|
1054
1198
|
msgstr ""
|
1055
1199
|
|
1056
1200
|
msgid "Content view ${name} created"
|
1057
1201
|
msgstr ""
|
1058
1202
|
|
1203
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1059
1204
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1060
|
-
msgstr ""
|
1205
|
+
msgstr "కాంటెంట్ దర్శనం '%{view}' ఎన్విరాన్మెంట్ '%{env}' నందు లేదు"
|
1061
1206
|
|
1062
1207
|
msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
|
1063
1208
|
msgstr ""
|
@@ -1104,17 +1249,23 @@ msgstr ""
|
|
1104
1249
|
msgid "Contract Number"
|
1105
1250
|
msgstr ""
|
1106
1251
|
|
1107
|
-
msgid "Copy
|
1252
|
+
msgid "Copy"
|
1108
1253
|
msgstr ""
|
1109
1254
|
|
1255
|
+
#, fuzzy
|
1256
|
+
msgid "Copy an activation key"
|
1257
|
+
msgstr "క్రియాశీలపు కీలు"
|
1258
|
+
|
1110
1259
|
msgid "Copy version units to library"
|
1111
1260
|
msgstr ""
|
1112
1261
|
|
1262
|
+
#, fuzzy
|
1113
1263
|
msgid "Cores: %s"
|
1114
|
-
msgstr ""
|
1264
|
+
msgstr "కారణం: %s"
|
1115
1265
|
|
1266
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1116
1267
|
msgid "Could not delete organization '%s'."
|
1117
|
-
msgstr ""
|
1268
|
+
msgstr "సంస్థ '%s' ను తొలగించలేక పోయింది."
|
1118
1269
|
|
1119
1270
|
msgid "Could not find %{content} with id '%{id}' in repository."
|
1120
1271
|
msgstr ""
|
@@ -1155,14 +1306,16 @@ msgstr ""
|
|
1155
1306
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1156
1307
|
msgstr ""
|
1157
1308
|
|
1309
|
+
#, fuzzy
|
1158
1310
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1159
|
-
msgstr ""
|
1311
|
+
msgstr "ఐడి '%s' తో వుత్పత్తిని కనుగొనలేక పోయింది"
|
1160
1312
|
|
1161
1313
|
msgid "Couldn't find Organization '%s'."
|
1162
1314
|
msgstr ""
|
1163
1315
|
|
1316
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1164
1317
|
msgid "Couldn't find activation key '%s'"
|
1165
|
-
msgstr ""
|
1318
|
+
msgstr "క్రియాశీల కీ '%s' కనుగొనలేక పోయింది"
|
1166
1319
|
|
1167
1320
|
msgid "Couldn't find activation key content view id '%s'"
|
1168
1321
|
msgstr ""
|
@@ -1170,8 +1323,9 @@ msgstr ""
|
|
1170
1323
|
msgid "Couldn't find activation key environment '%s'"
|
1171
1324
|
msgstr ""
|
1172
1325
|
|
1326
|
+
#, fuzzy
|
1173
1327
|
msgid "Couldn't find consumer '%s'"
|
1174
|
-
msgstr ""
|
1328
|
+
msgstr "మాదిరి '%s' ను కనుగొనలేక పోయింది"
|
1175
1329
|
|
1176
1330
|
msgid "Couldn't find content host content view id '%s'"
|
1177
1331
|
msgstr ""
|
@@ -1179,20 +1333,28 @@ msgstr ""
|
|
1179
1333
|
msgid "Couldn't find content host environment '%s'"
|
1180
1334
|
msgstr ""
|
1181
1335
|
|
1336
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1182
1337
|
msgid "Couldn't find content view '%s'"
|
1183
|
-
msgstr ""
|
1338
|
+
msgstr "కాంటెంట్ దర్శనం '%s' కనుగొనలేక పోయింది"
|
1184
1339
|
|
1340
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1341
|
+
#, fuzzy
|
1185
1342
|
msgid "Couldn't find content view version '%s'"
|
1186
|
-
msgstr ""
|
1343
|
+
msgstr "కాంటెంట్ దర్శనం '%s' కనుగొనలేక పోయింది"
|
1187
1344
|
|
1345
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1346
|
+
#, fuzzy
|
1188
1347
|
msgid "Couldn't find content view versions '%s'"
|
1189
|
-
msgstr ""
|
1348
|
+
msgstr "కాంటెంట్ దర్శనం '%s' కనుగొనలేక పోయింది"
|
1190
1349
|
|
1350
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1191
1351
|
msgid "Couldn't find environment '%s'"
|
1192
|
-
msgstr ""
|
1352
|
+
msgstr "ఎన్విరాన్మెంట్ '%s' కనుగొనలేక పోయింది"
|
1193
1353
|
|
1354
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1355
|
+
#, fuzzy
|
1194
1356
|
msgid "Couldn't find errata ids '%s'"
|
1195
|
-
msgstr ""
|
1357
|
+
msgstr "సంస్థ '%s' కనుగొనలేక పోయింది"
|
1196
1358
|
|
1197
1359
|
msgid "Couldn't find host collection '%s'"
|
1198
1360
|
msgstr ""
|
@@ -1200,29 +1362,35 @@ msgstr ""
|
|
1200
1362
|
msgid "Couldn't find host with host id '%s'"
|
1201
1363
|
msgstr ""
|
1202
1364
|
|
1365
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1203
1366
|
msgid "Couldn't find organization '%s'"
|
1204
|
-
msgstr ""
|
1367
|
+
msgstr "సంస్థ '%s' కనుగొనలేక పోయింది"
|
1205
1368
|
|
1369
|
+
#, fuzzy
|
1206
1370
|
msgid "Couldn't find prior-environment '%s'"
|
1207
|
-
msgstr ""
|
1371
|
+
msgstr "ఎన్విరాన్మెంట్ '%s' కనుగొనలేక పోయింది"
|
1208
1372
|
|
1373
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1209
1374
|
msgid "Couldn't find product with id '%s'"
|
1210
|
-
msgstr ""
|
1375
|
+
msgstr "ఐడి '%s' తో వుత్పత్తిని కనుగొనలేక పోయింది"
|
1211
1376
|
|
1377
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1212
1378
|
msgid "Couldn't find repository '%s'"
|
1213
|
-
msgstr ""
|
1379
|
+
msgstr "రిపోజిటరీ '%s' ను కనుగొనలేక పోయింది"
|
1214
1380
|
|
1215
1381
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1216
1382
|
msgstr ""
|
1217
1383
|
|
1384
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1218
1385
|
msgid "Couldn't find subject of synchronization"
|
1219
|
-
msgstr ""
|
1386
|
+
msgstr "సింక్రొనైజేషన్ సబ్జక్టును కనుగొనలేక పోయింది"
|
1220
1387
|
|
1221
1388
|
msgid "Count"
|
1222
1389
|
msgstr ""
|
1223
1390
|
|
1391
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1224
1392
|
msgid "Create"
|
1225
|
-
msgstr ""
|
1393
|
+
msgstr "సృష్టించు"
|
1226
1394
|
|
1227
1395
|
msgid "Create Export History"
|
1228
1396
|
msgstr ""
|
@@ -1272,6 +1440,12 @@ msgstr ""
|
|
1272
1440
|
msgid "Create an upload request"
|
1273
1441
|
msgstr ""
|
1274
1442
|
|
1443
|
+
msgid "Create content view"
|
1444
|
+
msgstr ""
|
1445
|
+
|
1446
|
+
msgid "Create filter"
|
1447
|
+
msgstr ""
|
1448
|
+
|
1275
1449
|
msgid "Create organization"
|
1276
1450
|
msgstr ""
|
1277
1451
|
|
@@ -1290,14 +1464,16 @@ msgstr ""
|
|
1290
1464
|
msgid "Current organization not set."
|
1291
1465
|
msgstr ""
|
1292
1466
|
|
1467
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1293
1468
|
msgid "Custom Content Repositories"
|
1294
|
-
msgstr ""
|
1469
|
+
msgstr "వినియోగదారి విషయ రిపోజిటరీలు"
|
1295
1470
|
|
1296
1471
|
msgid "Custom cron expression only needs to be set for interval value of custom cron"
|
1297
1472
|
msgstr ""
|
1298
1473
|
|
1474
|
+
#, fuzzy
|
1299
1475
|
msgid "Custom repositories cannot be disabled."
|
1300
|
-
msgstr ""
|
1476
|
+
msgstr "తెలియని రిపోజిటరీ లేబుల్: %s"
|
1301
1477
|
|
1302
1478
|
msgid "Database connection"
|
1303
1479
|
msgstr ""
|
@@ -1305,8 +1481,9 @@ msgstr ""
|
|
1305
1481
|
msgid "Date"
|
1306
1482
|
msgstr ""
|
1307
1483
|
|
1484
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1308
1485
|
msgid "Date format is incorrect."
|
1309
|
-
msgstr ""
|
1486
|
+
msgstr "తేదీ ఫార్మాట్ సరిగాలేదు."
|
1310
1487
|
|
1311
1488
|
msgid "Days Remaining"
|
1312
1489
|
msgstr ""
|
@@ -1320,8 +1497,9 @@ msgstr ""
|
|
1320
1497
|
msgid "Deb Packages"
|
1321
1498
|
msgstr ""
|
1322
1499
|
|
1500
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1323
1501
|
msgid "Debug Certificate"
|
1324
|
-
msgstr ""
|
1502
|
+
msgstr "డీబగ్ ధృవీకరణపత్రం"
|
1325
1503
|
|
1326
1504
|
msgid "Debug RPM"
|
1327
1505
|
msgstr ""
|
@@ -1356,8 +1534,9 @@ msgstr ""
|
|
1356
1534
|
msgid "Default Smart Proxy download policy"
|
1357
1535
|
msgstr ""
|
1358
1536
|
|
1537
|
+
#, fuzzy
|
1359
1538
|
msgid "Default System SLA"
|
1360
|
-
msgstr ""
|
1539
|
+
msgstr "వ్యవస్థ సమూహం తొలగించు"
|
1361
1540
|
|
1362
1541
|
msgid "Default content view versions cannot be promoted"
|
1363
1542
|
msgstr ""
|
@@ -1422,6 +1601,7 @@ msgstr ""
|
|
1422
1601
|
msgid "Default user data for new Operating Systems created from synced content"
|
1423
1602
|
msgstr ""
|
1424
1603
|
|
1604
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
1425
1605
|
msgid "Delete"
|
1426
1606
|
msgstr "తొలగించు"
|
1427
1607
|
|
@@ -1431,11 +1611,13 @@ msgstr ""
|
|
1431
1611
|
msgid "Delete Host upon unregister"
|
1432
1612
|
msgstr ""
|
1433
1613
|
|
1614
|
+
#, fuzzy
|
1434
1615
|
msgid "Delete Lifecycle Environment"
|
1435
|
-
msgstr ""
|
1616
|
+
msgstr "ఎన్విరాన్మెంట్స్"
|
1436
1617
|
|
1618
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1437
1619
|
msgid "Delete Manifest"
|
1438
|
-
msgstr ""
|
1620
|
+
msgstr "మానిఫెస్ట్ తొలగించు"
|
1439
1621
|
|
1440
1622
|
msgid "Delete Package Group"
|
1441
1623
|
msgstr ""
|
@@ -1470,9 +1652,13 @@ msgstr ""
|
|
1470
1652
|
msgid "Delete manifest from Red Hat provider"
|
1471
1653
|
msgstr ""
|
1472
1654
|
|
1473
|
-
msgid "
|
1655
|
+
msgid "Delete multiple filters from a content view"
|
1474
1656
|
msgstr ""
|
1475
1657
|
|
1658
|
+
#, fuzzy
|
1659
|
+
msgid "Deleted consumer '%s'"
|
1660
|
+
msgstr "వాడుకరి '%s' తొలగించెను"
|
1661
|
+
|
1476
1662
|
msgid "Deleted from %{environment}"
|
1477
1663
|
msgstr ""
|
1478
1664
|
|
@@ -1480,7 +1666,7 @@ msgid "Deleting manifest in '%{subject}' failed."
|
|
1480
1666
|
msgstr ""
|
1481
1667
|
|
1482
1668
|
msgid "Description"
|
1483
|
-
msgstr "
|
1669
|
+
msgstr ""
|
1484
1670
|
|
1485
1671
|
msgid "Description for the content view"
|
1486
1672
|
msgstr ""
|
@@ -1501,7 +1687,7 @@ msgid "Destination Server name"
|
|
1501
1687
|
msgstr ""
|
1502
1688
|
|
1503
1689
|
msgid "Destroy"
|
1504
|
-
msgstr "
|
1690
|
+
msgstr ""
|
1505
1691
|
|
1506
1692
|
msgid "Destroy Content Host"
|
1507
1693
|
msgstr ""
|
@@ -1543,7 +1729,10 @@ msgid "Destroy one or more repositories"
|
|
1543
1729
|
msgstr ""
|
1544
1730
|
|
1545
1731
|
msgid "Details"
|
1546
|
-
msgstr "
|
1732
|
+
msgstr ""
|
1733
|
+
|
1734
|
+
msgid "Determining settings for ${name}"
|
1735
|
+
msgstr ""
|
1547
1736
|
|
1548
1737
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1549
1738
|
msgstr ""
|
@@ -1599,14 +1788,15 @@ msgstr ""
|
|
1599
1788
|
msgid "Duplicate branches specified - %{branches}"
|
1600
1789
|
msgstr ""
|
1601
1790
|
|
1791
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
1602
1792
|
msgid "Duration"
|
1603
|
-
msgstr ""
|
1793
|
+
msgstr "నిడివి"
|
1604
1794
|
|
1605
1795
|
msgid "ERRATA ADVISORY"
|
1606
1796
|
msgstr ""
|
1607
1797
|
|
1608
1798
|
msgid "Edit"
|
1609
|
-
msgstr "
|
1799
|
+
msgstr ""
|
1610
1800
|
|
1611
1801
|
msgid "Editing Entitlements"
|
1612
1802
|
msgstr ""
|
@@ -1614,11 +1804,13 @@ msgstr ""
|
|
1614
1804
|
msgid "Either both parameters 'content_view_id' and 'environment_id' should be specified or neither should be specified"
|
1615
1805
|
msgstr ""
|
1616
1806
|
|
1807
|
+
#, fuzzy
|
1617
1808
|
msgid "Either environments or versions must be specified."
|
1618
|
-
msgstr ""
|
1809
|
+
msgstr "సంస్థ ఐడి లేదా యెన్విరాన్మెంట్ ఐడి తెలుపవలసి వుంటుంది"
|
1619
1810
|
|
1811
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1620
1812
|
msgid "Either organization ID or environment ID needs to be specified"
|
1621
|
-
msgstr ""
|
1813
|
+
msgstr "సంస్థ ఐడి లేదా యెన్విరాన్మెంట్ ఐడి తెలుపవలసి వుంటుంది"
|
1622
1814
|
|
1623
1815
|
msgid "Either packages or groups must be provided"
|
1624
1816
|
msgstr ""
|
@@ -1645,7 +1837,7 @@ msgid "Enable/Disable auto publish of composite view"
|
|
1645
1837
|
msgstr ""
|
1646
1838
|
|
1647
1839
|
msgid "Enabled"
|
1648
|
-
msgstr "
|
1840
|
+
msgstr ""
|
1649
1841
|
|
1650
1842
|
msgid "Enabled Repositories"
|
1651
1843
|
msgstr ""
|
@@ -1659,44 +1851,54 @@ msgstr ""
|
|
1659
1851
|
msgid "Ends"
|
1660
1852
|
msgstr ""
|
1661
1853
|
|
1854
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1662
1855
|
msgid "Enhancement"
|
1663
|
-
msgstr ""
|
1856
|
+
msgstr "విస్తరింపు"
|
1664
1857
|
|
1665
1858
|
msgid "Entitlements"
|
1666
1859
|
msgstr ""
|
1667
1860
|
|
1861
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
1668
1862
|
msgid "Environment"
|
1669
1863
|
msgstr "ఎన్విరాన్మెంట్"
|
1670
1864
|
|
1671
1865
|
msgid "Environment IDs"
|
1672
1866
|
msgstr ""
|
1673
1867
|
|
1868
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1674
1869
|
msgid "Environment cannot be in its own promotion path"
|
1675
|
-
msgstr ""
|
1870
|
+
msgstr "ఎన్విరాన్మెంట్ దాని స్వంత ప్రొమోషన్ పాత్ నందు వుండలేదు"
|
1676
1871
|
|
1677
1872
|
msgid "Environment identifier"
|
1678
1873
|
msgstr ""
|
1679
1874
|
|
1680
1875
|
msgid "Environments"
|
1681
|
-
msgstr "
|
1876
|
+
msgstr ""
|
1682
1877
|
|
1878
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
1683
1879
|
msgid "Errata"
|
1684
|
-
msgstr ""
|
1880
|
+
msgstr "ఎర్రాటా"
|
1685
1881
|
|
1882
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
1883
|
+
#, fuzzy
|
1686
1884
|
msgid "Errata ID"
|
1687
|
-
msgstr ""
|
1885
|
+
msgstr "ఎర్రాటా"
|
1688
1886
|
|
1887
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1689
1888
|
msgid "Errata Install"
|
1690
|
-
msgstr ""
|
1889
|
+
msgstr "ఎర్రాటా సంస్థాపన"
|
1691
1890
|
|
1891
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1692
1892
|
msgid "Errata Install scheduled by %s"
|
1693
|
-
msgstr ""
|
1893
|
+
msgstr "ఎర్రాటా సంస్థాపన %s చేత ప్రణాళిక చేయబడెను"
|
1694
1894
|
|
1695
1895
|
msgid "Errata id of the erratum (RHSA-2012:108)"
|
1696
1896
|
msgstr ""
|
1697
1897
|
|
1898
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1899
|
+
#, fuzzy
|
1698
1900
|
msgid "Errata mail"
|
1699
|
-
msgstr ""
|
1901
|
+
msgstr "ఎర్రాటా సంస్థాపన"
|
1700
1902
|
|
1701
1903
|
msgid "Errata to exclusively include in the action"
|
1702
1904
|
msgstr ""
|
@@ -1704,21 +1906,28 @@ msgstr ""
|
|
1704
1906
|
msgid "Errata to explicitly exclude in the action. All other applicable errata will be included in the action, unless an included parameter is passed as well."
|
1705
1907
|
msgstr ""
|
1706
1908
|
|
1909
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
1910
|
+
#, fuzzy
|
1707
1911
|
msgid "Erratum"
|
1708
|
-
msgstr ""
|
1912
|
+
msgstr "ఎర్రాటా"
|
1709
1913
|
|
1914
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1710
1915
|
msgid "Erratum Install Canceled"
|
1711
|
-
msgstr ""
|
1916
|
+
msgstr "ఎర్రాటమ్ సంస్థాపన రద్దైనది"
|
1712
1917
|
|
1918
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1713
1919
|
msgid "Erratum Install Complete"
|
1714
|
-
msgstr ""
|
1920
|
+
msgstr "ఎర్రాటమ్ సంస్థాపన విఫలమైంది"
|
1715
1921
|
|
1922
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1716
1923
|
msgid "Erratum Install Failed"
|
1717
|
-
msgstr ""
|
1924
|
+
msgstr "ఎర్రాటమ్ సంస్థాపన విఫలమైంది"
|
1718
1925
|
|
1926
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1719
1927
|
msgid "Erratum Install Timed Out"
|
1720
|
-
msgstr ""
|
1928
|
+
msgstr "ఎర్రాటమ్ సంస్థాపన సమయం ముగిసినది"
|
1721
1929
|
|
1930
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
1722
1931
|
msgid "Error"
|
1723
1932
|
msgstr "దోషం"
|
1724
1933
|
|
@@ -1746,8 +1955,9 @@ msgstr ""
|
|
1746
1955
|
msgid "Exit"
|
1747
1956
|
msgstr ""
|
1748
1957
|
|
1958
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
1749
1959
|
msgid "Expand All"
|
1750
|
-
msgstr ""
|
1960
|
+
msgstr "అన్నిటినీ విస్తరింపు"
|
1751
1961
|
|
1752
1962
|
msgid "Expire soon days"
|
1753
1963
|
msgstr ""
|
@@ -1764,24 +1974,20 @@ msgstr ""
|
|
1764
1974
|
msgid "Export Types"
|
1765
1975
|
msgstr ""
|
1766
1976
|
|
1767
|
-
msgid "Export a repository"
|
1768
|
-
msgstr ""
|
1769
|
-
|
1770
1977
|
msgid "Export as CSV"
|
1771
1978
|
msgstr ""
|
1772
1979
|
|
1773
1980
|
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1774
1981
|
msgstr ""
|
1775
1982
|
|
1776
|
-
msgid "Export to ISO format"
|
1777
|
-
msgstr ""
|
1778
|
-
|
1779
1983
|
msgid "Exported version"
|
1780
1984
|
msgstr ""
|
1781
1985
|
|
1986
|
+
#, fuzzy
|
1782
1987
|
msgid "Facts successfully updated."
|
1783
|
-
msgstr ""
|
1988
|
+
msgstr "విజయవంతంగా సృష్టించబడెను."
|
1784
1989
|
|
1990
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
1785
1991
|
msgid "Failed"
|
1786
1992
|
msgstr "విఫలమైంది"
|
1787
1993
|
|
@@ -1841,6 +2047,9 @@ msgstr ""
|
|
1841
2047
|
msgid "Filter composite versions whose publish was triggered by the specified component version"
|
1842
2048
|
msgstr ""
|
1843
2049
|
|
2050
|
+
msgid "Filter created"
|
2051
|
+
msgstr ""
|
2052
|
+
|
1844
2053
|
msgid "Filter only composite content views"
|
1845
2054
|
msgstr ""
|
1846
2055
|
|
@@ -1865,6 +2074,9 @@ msgstr ""
|
|
1865
2074
|
msgid "Filter products by sync plan id"
|
1866
2075
|
msgstr ""
|
1867
2076
|
|
2077
|
+
msgid "Filter successfully deleted"
|
2078
|
+
msgstr ""
|
2079
|
+
|
1868
2080
|
msgid "Filter versions by environment"
|
1869
2081
|
msgstr ""
|
1870
2082
|
|
@@ -1878,7 +2090,10 @@ msgid "Filtered index content"
|
|
1878
2090
|
msgstr ""
|
1879
2091
|
|
1880
2092
|
msgid "Filters"
|
1881
|
-
msgstr "
|
2093
|
+
msgstr ""
|
2094
|
+
|
2095
|
+
msgid "Filters successfully deleted"
|
2096
|
+
msgstr ""
|
1882
2097
|
|
1883
2098
|
msgid "Finish action timeout"
|
1884
2099
|
msgstr ""
|
@@ -1921,8 +2136,9 @@ msgstr ""
|
|
1921
2136
|
msgid "GPG Key URL"
|
1922
2137
|
msgstr ""
|
1923
2138
|
|
2139
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1924
2140
|
msgid "Generate and Download"
|
1925
|
-
msgstr ""
|
2141
|
+
msgstr "జనియింపచేయి మరియు దింపు"
|
1926
2142
|
|
1927
2143
|
msgid "Generate host applicability"
|
1928
2144
|
msgstr ""
|
@@ -1976,11 +2192,12 @@ msgid "Has to be > 0"
|
|
1976
2192
|
msgstr ""
|
1977
2193
|
|
1978
2194
|
msgid "History"
|
1979
|
-
msgstr "
|
2195
|
+
msgstr ""
|
1980
2196
|
|
1981
2197
|
msgid "History will appear here when the content view is published or promoted."
|
1982
2198
|
msgstr ""
|
1983
2199
|
|
2200
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
1984
2201
|
msgid "Host"
|
1985
2202
|
msgstr "అతిథేయ"
|
1986
2203
|
|
@@ -1993,6 +2210,9 @@ msgstr ""
|
|
1993
2210
|
msgid "Host '%{name}' does not belong to an organization"
|
1994
2211
|
msgstr ""
|
1995
2212
|
|
2213
|
+
msgid "Host Can Re-Register Only In Build"
|
2214
|
+
msgstr ""
|
2215
|
+
|
1996
2216
|
msgid "Host Collection name"
|
1997
2217
|
msgstr ""
|
1998
2218
|
|
@@ -2011,6 +2231,9 @@ msgstr ""
|
|
2011
2231
|
msgid "Host Profile Assume"
|
2012
2232
|
msgstr ""
|
2013
2233
|
|
2234
|
+
msgid "Host Profile Can Change In Build"
|
2235
|
+
msgstr ""
|
2236
|
+
|
2014
2237
|
msgid "Host Subscription Status"
|
2015
2238
|
msgstr ""
|
2016
2239
|
|
@@ -2053,7 +2276,7 @@ msgstr ""
|
|
2053
2276
|
msgid "Host id to list applicable packages for"
|
2054
2277
|
msgstr ""
|
2055
2278
|
|
2056
|
-
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this
|
2279
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
|
2057
2280
|
msgstr ""
|
2058
2281
|
|
2059
2282
|
msgid "Host with ID %s already exists in the host collection."
|
@@ -2140,11 +2363,9 @@ msgstr ""
|
|
2140
2363
|
msgid "ID of the sync plan"
|
2141
2364
|
msgstr ""
|
2142
2365
|
|
2366
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2143
2367
|
msgid "ID: %s doesn't exist "
|
2144
|
-
msgstr ""
|
2145
|
-
|
2146
|
-
msgid "ISO export must be enabled when specifying ISO size"
|
2147
|
-
msgstr ""
|
2368
|
+
msgstr "ఐడి: %s లేదు"
|
2148
2369
|
|
2149
2370
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2150
2371
|
msgstr ""
|
@@ -2267,7 +2488,7 @@ msgid "Immediate"
|
|
2267
2488
|
msgstr ""
|
2268
2489
|
|
2269
2490
|
msgid "Import"
|
2270
|
-
msgstr "
|
2491
|
+
msgstr ""
|
2271
2492
|
|
2272
2493
|
msgid "Import Content View Version"
|
2273
2494
|
msgstr ""
|
@@ -2275,8 +2496,9 @@ msgstr ""
|
|
2275
2496
|
msgid "Import Default Content View"
|
2276
2497
|
msgstr ""
|
2277
2498
|
|
2499
|
+
#, fuzzy
|
2278
2500
|
msgid "Import Manifest"
|
2279
|
-
msgstr ""
|
2501
|
+
msgstr "దిగుమతిచేయి"
|
2280
2502
|
|
2281
2503
|
msgid "Import New Manifest"
|
2282
2504
|
msgstr ""
|
@@ -2308,8 +2530,9 @@ msgstr ""
|
|
2308
2530
|
msgid "Import a content view version to the library"
|
2309
2531
|
msgstr ""
|
2310
2532
|
|
2533
|
+
#, fuzzy
|
2311
2534
|
msgid "Import facts"
|
2312
|
-
msgstr ""
|
2535
|
+
msgstr "దిగుమతిచేయి"
|
2313
2536
|
|
2314
2537
|
msgid "Import uploads into a repository"
|
2315
2538
|
msgstr ""
|
@@ -2326,6 +2549,9 @@ msgstr ""
|
|
2326
2549
|
msgid "In Progress"
|
2327
2550
|
msgstr ""
|
2328
2551
|
|
2552
|
+
msgid "In progress"
|
2553
|
+
msgstr ""
|
2554
|
+
|
2329
2555
|
msgid "Include"
|
2330
2556
|
msgstr ""
|
2331
2557
|
|
@@ -2359,8 +2585,9 @@ msgstr ""
|
|
2359
2585
|
msgid "Index content"
|
2360
2586
|
msgstr ""
|
2361
2587
|
|
2588
|
+
#, fuzzy
|
2362
2589
|
msgid "Index errata"
|
2363
|
-
msgstr ""
|
2590
|
+
msgstr "ఎర్రాటమ్ సంస్థాపిస్తోంది..."
|
2364
2591
|
|
2365
2592
|
msgid "Index module streams"
|
2366
2593
|
msgstr ""
|
@@ -2389,20 +2616,23 @@ msgstr ""
|
|
2389
2616
|
msgid "Install errata via Katello interface"
|
2390
2617
|
msgstr ""
|
2391
2618
|
|
2619
|
+
#, fuzzy
|
2392
2620
|
msgid "Install erratum"
|
2393
|
-
msgstr ""
|
2621
|
+
msgstr "ఎర్రాటమ్ సంస్థాపిస్తోంది..."
|
2394
2622
|
|
2395
2623
|
msgid "Install erratum for %s"
|
2396
2624
|
msgstr ""
|
2397
2625
|
|
2626
|
+
#, fuzzy
|
2398
2627
|
msgid "Install package"
|
2399
|
-
msgstr ""
|
2628
|
+
msgstr "ప్యాకేజీ సంస్థాపించుచున్నది..."
|
2400
2629
|
|
2401
2630
|
msgid "Install package for %s"
|
2402
2631
|
msgstr ""
|
2403
2632
|
|
2633
|
+
#, fuzzy
|
2404
2634
|
msgid "Install package group"
|
2405
|
-
msgstr ""
|
2635
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపిస్తోంది..."
|
2406
2636
|
|
2407
2637
|
msgid "Install package group via Katello interface"
|
2408
2638
|
msgstr ""
|
@@ -2425,17 +2655,21 @@ msgstr ""
|
|
2425
2655
|
msgid "Installation of package(s) requested: %{packages}"
|
2426
2656
|
msgstr ""
|
2427
2657
|
|
2658
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2428
2659
|
msgid "Installed Packages"
|
2429
|
-
msgstr ""
|
2660
|
+
msgstr "సంస్థాపిత ప్యాకేజీలు"
|
2430
2661
|
|
2662
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2431
2663
|
msgid "Installing Erratum..."
|
2432
|
-
msgstr ""
|
2664
|
+
msgstr "ఎర్రాటమ్ సంస్థాపించుచున్నది..."
|
2433
2665
|
|
2666
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2434
2667
|
msgid "Installing Package Group..."
|
2435
|
-
msgstr ""
|
2668
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపించుచున్నది..."
|
2436
2669
|
|
2670
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2437
2671
|
msgid "Installing Package..."
|
2438
|
-
msgstr ""
|
2672
|
+
msgstr "ప్యాకేజీ సంస్థాపించుచున్నది..."
|
2439
2673
|
|
2440
2674
|
msgid "Instance update"
|
2441
2675
|
msgstr ""
|
@@ -2461,18 +2695,17 @@ msgstr ""
|
|
2461
2695
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2462
2696
|
msgstr ""
|
2463
2697
|
|
2698
|
+
#, fuzzy
|
2464
2699
|
msgid "Invalid content label: %s"
|
2465
|
-
msgstr ""
|
2700
|
+
msgstr "చెల్లని స్థితి"
|
2466
2701
|
|
2702
|
+
#, fuzzy
|
2467
2703
|
msgid "Invalid content type %s"
|
2468
|
-
msgstr ""
|
2704
|
+
msgstr "చెల్లని స్థితి"
|
2469
2705
|
|
2470
2706
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2471
2707
|
msgstr ""
|
2472
2708
|
|
2473
|
-
msgid "Invalid date provided."
|
2474
|
-
msgstr ""
|
2475
|
-
|
2476
2709
|
msgid "Invalid date range. The erratum filter rule start date must come before the end date"
|
2477
2710
|
msgstr ""
|
2478
2711
|
|
@@ -2482,8 +2715,9 @@ msgstr ""
|
|
2482
2715
|
msgid "Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'"
|
2483
2716
|
msgstr ""
|
2484
2717
|
|
2718
|
+
#, fuzzy
|
2485
2719
|
msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
|
2486
|
-
msgstr ""
|
2720
|
+
msgstr "చెల్లని వనరు రకం '%{resource_type}'. వనరు రకాలు '%{possible_types}' లో వొకటి కాగలవు"
|
2487
2721
|
|
2488
2722
|
msgid "Invalid event_type %s"
|
2489
2723
|
msgstr ""
|
@@ -2491,11 +2725,13 @@ msgstr ""
|
|
2491
2725
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
2492
2726
|
msgstr ""
|
2493
2727
|
|
2728
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
2494
2729
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2495
|
-
msgstr ""
|
2730
|
+
msgstr "ఈ ఆపరేషన్ కొరకు అభ్యర్ధననందు చెల్లని పారామితులు పంపబడెను. దయచేసి వ్యవస్థ నిర్వహణాధికారిని సంప్రదించండి."
|
2496
2731
|
|
2732
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2497
2733
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2498
|
-
msgstr ""
|
2734
|
+
msgstr "చెల్లని పారామితులు పంపబడెను. మీరు చిరునామాను తప్పుగా టైపుచేసివుంటారు. దీనితో మీరు సమస్యను కలిగివుంటే, దయచేసి నిర్వహణాధికారిని సంప్రదించండి."
|
2499
2735
|
|
2500
2736
|
msgid "Invalid params provided - content_type must be one of %s"
|
2501
2737
|
msgstr ""
|
@@ -2581,8 +2817,9 @@ msgstr ""
|
|
2581
2817
|
msgid "Learn more about adding Subscription Manifests"
|
2582
2818
|
msgstr ""
|
2583
2819
|
|
2820
|
+
#, fuzzy
|
2584
2821
|
msgid "Library lifecycle environments may not be deleted."
|
2585
|
-
msgstr ""
|
2822
|
+
msgstr "ఎన్విరాన్మెంట్ '%s' తొలగించబడెను."
|
2586
2823
|
|
2587
2824
|
msgid "Library repository id to restrict comparisons to"
|
2588
2825
|
msgstr ""
|
@@ -2602,8 +2839,9 @@ msgstr ""
|
|
2602
2839
|
msgid "Lifecycle Environment ID"
|
2603
2840
|
msgstr ""
|
2604
2841
|
|
2842
|
+
#, fuzzy
|
2605
2843
|
msgid "Lifecycle Environments"
|
2606
|
-
msgstr ""
|
2844
|
+
msgstr "ఎన్విరాన్మెంట్స్"
|
2607
2845
|
|
2608
2846
|
msgid "Lifecycle environment"
|
2609
2847
|
msgstr ""
|
@@ -2713,7 +2951,7 @@ msgstr ""
|
|
2713
2951
|
msgid "List of Errata ids"
|
2714
2952
|
msgstr ""
|
2715
2953
|
|
2716
|
-
msgid "List of Errata ids to install. Will be removed in
|
2954
|
+
msgid "List of Errata ids to install. Will be removed in %s"
|
2717
2955
|
msgstr ""
|
2718
2956
|
|
2719
2957
|
msgid "List of Products for sync plan"
|
@@ -2722,7 +2960,7 @@ msgstr ""
|
|
2722
2960
|
msgid "List of component content view version ids for composite views"
|
2723
2961
|
msgstr ""
|
2724
2962
|
|
2725
|
-
msgid "List of content (e.g. package names, package group names or errata ids)"
|
2963
|
+
msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
|
2726
2964
|
msgstr ""
|
2727
2965
|
|
2728
2966
|
msgid "List of content (e.g. package or package group names)"
|
@@ -2770,7 +3008,7 @@ msgstr ""
|
|
2770
3008
|
msgid "List of hypervisor guest uuids"
|
2771
3009
|
msgstr ""
|
2772
3010
|
|
2773
|
-
msgid "List of package group names"
|
3011
|
+
msgid "List of package group names (Deprecated)"
|
2774
3012
|
msgstr ""
|
2775
3013
|
|
2776
3014
|
msgid "List of package names"
|
@@ -2855,7 +3093,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
|
|
2855
3093
|
msgstr ""
|
2856
3094
|
|
2857
3095
|
msgid "Loading"
|
2858
|
-
msgstr "
|
3096
|
+
msgstr ""
|
2859
3097
|
|
2860
3098
|
msgid "Make copy of a content view"
|
2861
3099
|
msgstr ""
|
@@ -2929,6 +3167,7 @@ msgstr ""
|
|
2929
3167
|
msgid "Medium IDs"
|
2930
3168
|
msgstr ""
|
2931
3169
|
|
3170
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
2932
3171
|
msgid "Message"
|
2933
3172
|
msgstr "సందేశం"
|
2934
3173
|
|
@@ -2941,6 +3180,9 @@ msgstr ""
|
|
2941
3180
|
msgid "Mismatched"
|
2942
3181
|
msgstr ""
|
2943
3182
|
|
3183
|
+
msgid "Missing activation key!"
|
3184
|
+
msgstr ""
|
3185
|
+
|
2944
3186
|
msgid "Missing arguments %{substitutions} for %{content_url}"
|
2945
3187
|
msgstr ""
|
2946
3188
|
|
@@ -3011,11 +3253,15 @@ msgstr ""
|
|
3011
3253
|
msgid "Nest"
|
3012
3254
|
msgstr ""
|
3013
3255
|
|
3256
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3257
|
+
#, fuzzy
|
3014
3258
|
msgid "Never Synced"
|
3015
|
-
msgstr ""
|
3259
|
+
msgstr "ఎప్పుడూ చెక్ కాలేదు"
|
3016
3260
|
|
3261
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3262
|
+
#, fuzzy
|
3017
3263
|
msgid "New Errata"
|
3018
|
-
msgstr ""
|
3264
|
+
msgstr "ఎర్రాటా అన్వేషించు"
|
3019
3265
|
|
3020
3266
|
msgid "New Files: %s"
|
3021
3267
|
msgstr ""
|
@@ -3029,8 +3275,10 @@ msgstr ""
|
|
3029
3275
|
msgid "New host collection name"
|
3030
3276
|
msgstr ""
|
3031
3277
|
|
3278
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3279
|
+
#, fuzzy
|
3032
3280
|
msgid "New name cannot be blank"
|
3033
|
-
msgstr ""
|
3281
|
+
msgstr "ఖాళీ కాలేదు"
|
3034
3282
|
|
3035
3283
|
msgid "New name for the content view"
|
3036
3284
|
msgstr ""
|
@@ -3041,6 +3289,9 @@ msgstr ""
|
|
3041
3289
|
msgid "New version is available: Version ${latestVersion}"
|
3042
3290
|
msgstr ""
|
3043
3291
|
|
3292
|
+
msgid "Newly published"
|
3293
|
+
msgstr ""
|
3294
|
+
|
3044
3295
|
msgid "No"
|
3045
3296
|
msgstr ""
|
3046
3297
|
|
@@ -3050,8 +3301,9 @@ msgstr ""
|
|
3050
3301
|
msgid "No Activation keys to select"
|
3051
3302
|
msgstr ""
|
3052
3303
|
|
3304
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3053
3305
|
msgid "No Content View"
|
3054
|
-
msgstr ""
|
3306
|
+
msgstr "కాంటెంట్ దర్శనం లేదు"
|
3055
3307
|
|
3056
3308
|
msgid "No Content found"
|
3057
3309
|
msgstr ""
|
@@ -3065,8 +3317,9 @@ msgstr ""
|
|
3065
3317
|
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."
|
3066
3318
|
msgstr ""
|
3067
3319
|
|
3320
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3068
3321
|
msgid "No Service Level Preference"
|
3069
|
-
msgstr ""
|
3322
|
+
msgstr "ఏ సేవా స్థాయి అభీష్టం లేదు"
|
3070
3323
|
|
3071
3324
|
msgid "No URL found for a container registry. Please check the configuration."
|
3072
3325
|
msgstr ""
|
@@ -3080,8 +3333,9 @@ msgstr ""
|
|
3080
3333
|
msgid "No artifacts to show"
|
3081
3334
|
msgstr ""
|
3082
3335
|
|
3336
|
+
#, fuzzy
|
3083
3337
|
msgid "No content has been provided."
|
3084
|
-
msgstr ""
|
3338
|
+
msgstr "కనీసం వొక క్రియాశీలపు కీ తప్పక అందించాలి"
|
3085
3339
|
|
3086
3340
|
msgid "No content ids provided"
|
3087
3341
|
msgstr ""
|
@@ -3110,8 +3364,9 @@ msgstr ""
|
|
3110
3364
|
msgid "No errata has been specified."
|
3111
3365
|
msgstr ""
|
3112
3366
|
|
3367
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3113
3368
|
msgid "No errors"
|
3114
|
-
msgstr ""
|
3369
|
+
msgstr "దోషాలు లేవు"
|
3115
3370
|
|
3116
3371
|
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3117
3372
|
msgstr ""
|
@@ -3158,20 +3413,24 @@ msgstr ""
|
|
3158
3413
|
msgid "No matching version found"
|
3159
3414
|
msgstr ""
|
3160
3415
|
|
3416
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3161
3417
|
msgid "No new packages installed"
|
3162
|
-
msgstr ""
|
3418
|
+
msgstr "ఏ కొత్త ప్యాకేజీలు సంస్థాపించబడిలేవు"
|
3163
3419
|
|
3420
|
+
#, fuzzy
|
3164
3421
|
msgid "No new packages."
|
3165
|
-
msgstr ""
|
3422
|
+
msgstr "ఏ కొత్త ప్యాకేజీలు సంస్థాపించబడిలేవు"
|
3166
3423
|
|
3167
3424
|
msgid "No package groups have been added to this filter."
|
3168
3425
|
msgstr ""
|
3169
3426
|
|
3427
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3170
3428
|
msgid "No packages removed"
|
3171
|
-
msgstr ""
|
3429
|
+
msgstr "ఏ ప్యాకేజీలు తొలగించబడలేదు"
|
3172
3430
|
|
3431
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3173
3432
|
msgid "No packages updated"
|
3174
|
-
msgstr ""
|
3433
|
+
msgstr "ఏ ప్యాకేజీలు నవీకరించబడలేదు"
|
3175
3434
|
|
3176
3435
|
msgid "No pool IDs were provided."
|
3177
3436
|
msgstr ""
|
@@ -3218,8 +3477,9 @@ msgstr ""
|
|
3218
3477
|
msgid "No services defined, is this class extended?"
|
3219
3478
|
msgstr ""
|
3220
3479
|
|
3480
|
+
#, fuzzy
|
3221
3481
|
msgid "No start time currently available."
|
3222
|
-
msgstr ""
|
3482
|
+
msgstr "పంపిణీలు"
|
3223
3483
|
|
3224
3484
|
msgid "No subscriptions match your search criteria."
|
3225
3485
|
msgstr ""
|
@@ -3236,9 +3496,11 @@ msgstr ""
|
|
3236
3496
|
msgid "Non-security errata installable"
|
3237
3497
|
msgstr ""
|
3238
3498
|
|
3499
|
+
#, fuzzy
|
3239
3500
|
msgid "Non-system event"
|
3240
|
-
msgstr ""
|
3501
|
+
msgstr "వ్యవస్థలు"
|
3241
3502
|
|
3503
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3242
3504
|
msgid "None"
|
3243
3505
|
msgstr "ఏదీకాదు"
|
3244
3506
|
|
@@ -3299,17 +3561,15 @@ msgstr ""
|
|
3299
3561
|
msgid "On Demand"
|
3300
3562
|
msgstr ""
|
3301
3563
|
|
3302
|
-
msgid "On demand repositories cannot be exported."
|
3303
|
-
msgstr ""
|
3304
|
-
|
3305
3564
|
msgid "On-disk location for exported repositories"
|
3306
3565
|
msgstr ""
|
3307
3566
|
|
3308
3567
|
msgid "On-disk location for pulp 3 exported repositories"
|
3309
3568
|
msgstr ""
|
3310
3569
|
|
3570
|
+
#, fuzzy
|
3311
3571
|
msgid "One of parameters [ %s ] required but not specified."
|
3312
|
-
msgstr ""
|
3572
|
+
msgstr "సంస్థ ఐడి కావాలి కాని తెలుపలేదు (_i)."
|
3313
3573
|
|
3314
3574
|
msgid "One of yum or docker"
|
3315
3575
|
msgstr ""
|
@@ -3320,14 +3580,16 @@ msgstr ""
|
|
3320
3580
|
msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
|
3321
3581
|
msgstr ""
|
3322
3582
|
|
3583
|
+
#, fuzzy
|
3323
3584
|
msgid "One or more packages failed to sync properly."
|
3324
|
-
msgstr ""
|
3585
|
+
msgstr "ఒకటి లేదా అంతకన్నా యెక్కువ యెర్రాటా తప్పక అందించాలి"
|
3325
3586
|
|
3326
3587
|
msgid "One or more processes require restarting"
|
3327
3588
|
msgstr ""
|
3328
3589
|
|
3590
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3329
3591
|
msgid "Only one Red Hat provider permitted for an Organization"
|
3330
|
-
msgstr ""
|
3592
|
+
msgstr "ఒక సంస్థకు వొక Red Hat సమర్పకులు మాత్రమే అనుమతించుబడును"
|
3331
3593
|
|
3332
3594
|
msgid "Only returns id and quantity fields"
|
3333
3595
|
msgstr ""
|
@@ -3335,9 +3597,7 @@ msgstr ""
|
|
3335
3597
|
msgid "Operators"
|
3336
3598
|
msgstr ""
|
3337
3599
|
|
3338
|
-
|
3339
|
-
msgstr ""
|
3340
|
-
|
3600
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
3341
3601
|
msgid "Organization"
|
3342
3602
|
msgstr "సంస్థ"
|
3343
3603
|
|
@@ -3353,8 +3613,9 @@ msgstr ""
|
|
3353
3613
|
msgid "Organization Information not provided."
|
3354
3614
|
msgstr ""
|
3355
3615
|
|
3616
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3356
3617
|
msgid "Organization cannot be blank."
|
3357
|
-
msgstr ""
|
3618
|
+
msgstr "సంస్థ ఖాళీగా వుండరాదు."
|
3358
3619
|
|
3359
3620
|
msgid "Organization id"
|
3360
3621
|
msgstr ""
|
@@ -3368,11 +3629,13 @@ msgstr ""
|
|
3368
3629
|
msgid "Organization not found"
|
3369
3630
|
msgstr ""
|
3370
3631
|
|
3632
|
+
#, fuzzy
|
3371
3633
|
msgid "Organization required"
|
3372
|
-
msgstr ""
|
3634
|
+
msgstr "సంస్థ"
|
3373
3635
|
|
3636
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3374
3637
|
msgid "Other"
|
3375
|
-
msgstr ""
|
3638
|
+
msgstr "ఇతర"
|
3376
3639
|
|
3377
3640
|
msgid "Override content for activation_key"
|
3378
3641
|
msgstr ""
|
@@ -3395,74 +3658,99 @@ msgstr ""
|
|
3395
3658
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3396
3659
|
msgstr ""
|
3397
3660
|
|
3661
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
3662
|
+
#, fuzzy
|
3398
3663
|
msgid "Package"
|
3399
|
-
msgstr ""
|
3664
|
+
msgstr "ప్యాకేజీలు"
|
3400
3665
|
|
3666
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
3667
|
+
#, fuzzy
|
3401
3668
|
msgid "Package Group"
|
3402
|
-
msgstr ""
|
3669
|
+
msgstr "ప్యాకేజీ సమూహాలు"
|
3403
3670
|
|
3671
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3404
3672
|
msgid "Package Group Install"
|
3405
|
-
msgstr ""
|
3673
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపన"
|
3406
3674
|
|
3675
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3407
3676
|
msgid "Package Group Install Canceled"
|
3408
|
-
msgstr ""
|
3677
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపన రద్దైనది"
|
3409
3678
|
|
3679
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3410
3680
|
msgid "Package Group Install Complete"
|
3411
|
-
msgstr ""
|
3681
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపన పూర్తైనది"
|
3412
3682
|
|
3683
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3413
3684
|
msgid "Package Group Install Failed"
|
3414
|
-
msgstr ""
|
3685
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపన విఫలమైంది"
|
3415
3686
|
|
3687
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3416
3688
|
msgid "Package Group Install Timed Out"
|
3417
|
-
msgstr ""
|
3689
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపన గడువు ముగిసెను"
|
3418
3690
|
|
3691
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3419
3692
|
msgid "Package Group Install scheduled by %s"
|
3420
|
-
msgstr ""
|
3693
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపన %s చేత ప్రణాళిక వేయబడెను"
|
3421
3694
|
|
3695
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3422
3696
|
msgid "Package Group Remove"
|
3423
|
-
msgstr ""
|
3697
|
+
msgstr "ప్యాకేజీ సమూహం తొలగింపు"
|
3424
3698
|
|
3699
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3425
3700
|
msgid "Package Group Remove Canceled"
|
3426
|
-
msgstr ""
|
3701
|
+
msgstr "ప్యాకేజీ సమూహం తీసివేత రద్దైనది"
|
3427
3702
|
|
3703
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3428
3704
|
msgid "Package Group Remove Complete"
|
3429
|
-
msgstr ""
|
3705
|
+
msgstr "ప్యాకేజీ సమూహం తీసివేత ముగిసినది"
|
3430
3706
|
|
3707
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3431
3708
|
msgid "Package Group Remove Failed"
|
3432
|
-
msgstr ""
|
3709
|
+
msgstr "ప్యాకేజీ సమూహం తీసివేత విఫలమైంది"
|
3433
3710
|
|
3711
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3434
3712
|
msgid "Package Group Remove Timed Out"
|
3435
|
-
msgstr ""
|
3713
|
+
msgstr "ప్యాకేజీ సమూహం తీసివేత సమయం ముగిసినది"
|
3436
3714
|
|
3715
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3437
3716
|
msgid "Package Group Remove scheduled by %s"
|
3438
|
-
msgstr ""
|
3717
|
+
msgstr "ప్యాకేజీ సమూహం తొలగింపు %s చేత ప్రణాళిక వేయబడెను"
|
3439
3718
|
|
3719
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3440
3720
|
msgid "Package Group Update"
|
3441
|
-
msgstr ""
|
3721
|
+
msgstr "ప్యాకేజీ సమూహం నవీకరణ"
|
3442
3722
|
|
3723
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3443
3724
|
msgid "Package Group Update scheduled by %s"
|
3444
|
-
msgstr ""
|
3725
|
+
msgstr "ప్యాకేజీ సమూహం నవీకరణ %s చేత ప్రణాళిక వేయబడెను"
|
3445
3726
|
|
3727
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
3446
3728
|
msgid "Package Groups"
|
3447
|
-
msgstr ""
|
3729
|
+
msgstr "ప్యాకేజీ సమూహాలు"
|
3448
3730
|
|
3731
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3449
3732
|
msgid "Package Install"
|
3450
|
-
msgstr ""
|
3733
|
+
msgstr "ప్యాకేజీ సంస్థాపన"
|
3451
3734
|
|
3735
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3452
3736
|
msgid "Package Install Canceled"
|
3453
|
-
msgstr ""
|
3737
|
+
msgstr "ప్యాకేజీ సంస్థాపన రద్దైనది"
|
3454
3738
|
|
3739
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3455
3740
|
msgid "Package Install Complete"
|
3456
|
-
msgstr ""
|
3741
|
+
msgstr "ప్యాకేజీ సంస్థాపన పూర్తైనది"
|
3457
3742
|
|
3743
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3458
3744
|
msgid "Package Install Failed"
|
3459
|
-
msgstr ""
|
3745
|
+
msgstr "ప్యాకేజీ సంస్థాపన విఫలమైంది"
|
3460
3746
|
|
3747
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3461
3748
|
msgid "Package Install Timed Out"
|
3462
|
-
msgstr ""
|
3749
|
+
msgstr "ప్యాకేజీ సంస్థాపన గడువు ముగిసెను"
|
3463
3750
|
|
3751
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3464
3752
|
msgid "Package Install scheduled by %s"
|
3465
|
-
msgstr ""
|
3753
|
+
msgstr "ప్యాకేజీ సంస్థాపన %s చేత ప్రణాళిక వేయబడెను"
|
3466
3754
|
|
3467
3755
|
msgid "Package Profile Update"
|
3468
3756
|
msgstr ""
|
@@ -3470,53 +3758,69 @@ msgstr ""
|
|
3470
3758
|
msgid "Package Profile Update for %s"
|
3471
3759
|
msgstr ""
|
3472
3760
|
|
3761
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3473
3762
|
msgid "Package Remove"
|
3474
|
-
msgstr ""
|
3763
|
+
msgstr "ప్యాకేజీ తీసివేత"
|
3475
3764
|
|
3765
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3476
3766
|
msgid "Package Remove Canceled"
|
3477
|
-
msgstr ""
|
3767
|
+
msgstr "ప్యాకేజీ తీసివేత రద్దైనది"
|
3478
3768
|
|
3769
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3479
3770
|
msgid "Package Remove Complete"
|
3480
|
-
msgstr ""
|
3771
|
+
msgstr "ప్యాకేజీ తీసివేత ముగిసినది"
|
3481
3772
|
|
3773
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3482
3774
|
msgid "Package Remove Failed"
|
3483
|
-
msgstr ""
|
3775
|
+
msgstr "ప్యాకేజీ తీసివేత విఫలమైంది"
|
3484
3776
|
|
3777
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3485
3778
|
msgid "Package Remove Timed Out"
|
3486
|
-
msgstr ""
|
3779
|
+
msgstr "ప్యాకేజీ తీసివేత సమయం ముగిసినది"
|
3487
3780
|
|
3781
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3488
3782
|
msgid "Package Remove scheduled by %s"
|
3489
|
-
msgstr ""
|
3783
|
+
msgstr "%s చేత ప్యాకేజీ తీసివేత ప్రణాళిక వేయబడెను"
|
3490
3784
|
|
3785
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3491
3786
|
msgid "Package Update"
|
3492
|
-
msgstr ""
|
3787
|
+
msgstr "ప్యాకేజీ నవీకరణ"
|
3493
3788
|
|
3789
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3494
3790
|
msgid "Package Update Canceled"
|
3495
|
-
msgstr ""
|
3791
|
+
msgstr "ప్యాకేజీ నవీకరణ రద్దైనది"
|
3496
3792
|
|
3793
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3497
3794
|
msgid "Package Update Complete"
|
3498
|
-
msgstr ""
|
3795
|
+
msgstr "ప్యాకేజీ నవీకరణ పూర్తైనది"
|
3499
3796
|
|
3797
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3500
3798
|
msgid "Package Update Failed"
|
3501
|
-
msgstr ""
|
3799
|
+
msgstr "ప్యాకేజీ నవీకరణ విఫలమైంది"
|
3502
3800
|
|
3801
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3503
3802
|
msgid "Package Update Timed Out"
|
3504
|
-
msgstr ""
|
3803
|
+
msgstr "ప్యాకేజీ నవీకరణ సమయం ముగిసినది"
|
3505
3804
|
|
3805
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3506
3806
|
msgid "Package Update scheduled by %s"
|
3507
|
-
msgstr ""
|
3807
|
+
msgstr "ప్యాకేజీ నవీకరణ %s చేత ప్రణాళిక వేయబడెను"
|
3508
3808
|
|
3809
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3509
3810
|
msgid "Package group update canceled"
|
3510
|
-
msgstr ""
|
3811
|
+
msgstr "ప్యాకేజీ సమూహం నవీకరణ రద్దైనది"
|
3511
3812
|
|
3813
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3512
3814
|
msgid "Package group update complete"
|
3513
|
-
msgstr ""
|
3815
|
+
msgstr "ప్యాకేజీ సమూహం నవీకరణ పూర్తైనది"
|
3514
3816
|
|
3817
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3515
3818
|
msgid "Package group update failed"
|
3516
|
-
msgstr ""
|
3819
|
+
msgstr "ప్యాకేజీ సమూహం నవీకరణ విఫలమైంది"
|
3517
3820
|
|
3821
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3518
3822
|
msgid "Package group update timed out"
|
3519
|
-
msgstr ""
|
3823
|
+
msgstr "ప్యాకేజీ సమూహం నవీకరణ సమయం దాటినది"
|
3520
3824
|
|
3521
3825
|
msgid "Package groups"
|
3522
3826
|
msgstr ""
|
@@ -3524,17 +3828,21 @@ msgstr ""
|
|
3524
3828
|
msgid "Package identifiers to filter content by"
|
3525
3829
|
msgstr ""
|
3526
3830
|
|
3831
|
+
#, fuzzy
|
3527
3832
|
msgid "Package install failed: \"%{package}\""
|
3528
|
-
msgstr ""
|
3833
|
+
msgstr "ప్యాకేజీ సంస్థాపన విఫలమైంది"
|
3529
3834
|
|
3835
|
+
#, fuzzy
|
3530
3836
|
msgid "Package installation: \"%{package}\" "
|
3531
|
-
msgstr ""
|
3837
|
+
msgstr "ప్యాకేజీ సంస్థాపన రద్దైనది"
|
3532
3838
|
|
3839
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
3533
3840
|
msgid "Packages"
|
3534
|
-
msgstr ""
|
3841
|
+
msgstr "ప్యాకేజీలు"
|
3535
3842
|
|
3843
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3536
3844
|
msgid "Packages must be provided"
|
3537
|
-
msgstr ""
|
3845
|
+
msgstr "ప్యాకేజీలు తప్పక అందించబడాలి"
|
3538
3846
|
|
3539
3847
|
msgid "Page number, starting at 1"
|
3540
3848
|
msgstr ""
|
@@ -3563,8 +3871,10 @@ msgstr ""
|
|
3563
3871
|
msgid "Paused"
|
3564
3872
|
msgstr ""
|
3565
3873
|
|
3874
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3875
|
+
#, fuzzy
|
3566
3876
|
msgid "Pending"
|
3567
|
-
msgstr "
|
3877
|
+
msgstr "నడుచుచున్నది"
|
3568
3878
|
|
3569
3879
|
msgid "Perform a module stream action via Katello interface"
|
3570
3880
|
msgstr ""
|
@@ -3584,11 +3894,12 @@ msgstr ""
|
|
3584
3894
|
msgid "Performs an incremental-export of the repositories in library."
|
3585
3895
|
msgstr ""
|
3586
3896
|
|
3897
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3587
3898
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3588
|
-
msgstr ""
|
3899
|
+
msgstr "అనుమతి తిరస్కరించబడెను. వాడుకరి '%{user}' సంస్థ '%{org}' యాక్సెస్ చేయుటకు అనుమతులు కలిగిలేరు."
|
3589
3900
|
|
3590
3901
|
msgid "Physical"
|
3591
|
-
msgstr ""
|
3902
|
+
msgstr "భౌతిక"
|
3592
3903
|
|
3593
3904
|
msgid "Plan numeric identifier"
|
3594
3905
|
msgstr ""
|
@@ -3635,8 +3946,9 @@ msgstr ""
|
|
3635
3946
|
msgid "Processing metadata."
|
3636
3947
|
msgstr ""
|
3637
3948
|
|
3949
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3638
3950
|
msgid "Product"
|
3639
|
-
msgstr ""
|
3951
|
+
msgstr "ఉత్పత్తి"
|
3640
3952
|
|
3641
3953
|
msgid "Product Content"
|
3642
3954
|
msgstr ""
|
@@ -3679,8 +3991,9 @@ msgstr ""
|
|
3679
3991
|
msgid "Product: '%{product}', Repository: '%{repository}'"
|
3680
3992
|
msgstr ""
|
3681
3993
|
|
3994
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
3682
3995
|
msgid "Products"
|
3683
|
-
msgstr ""
|
3996
|
+
msgstr "ఉత్పత్తులు"
|
3684
3997
|
|
3685
3998
|
msgid "Profiles"
|
3686
3999
|
msgstr ""
|
@@ -3721,8 +4034,9 @@ msgstr ""
|
|
3721
4034
|
msgid "Public key block in DER encoding or certificate content"
|
3722
4035
|
msgstr ""
|
3723
4036
|
|
4037
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3724
4038
|
msgid "Publish"
|
3725
|
-
msgstr ""
|
4039
|
+
msgstr "ప్రచురించు"
|
3726
4040
|
|
3727
4041
|
msgid "Publish Lifecycle Environment Repositories"
|
3728
4042
|
msgstr ""
|
@@ -3730,9 +4044,18 @@ msgstr ""
|
|
3730
4044
|
msgid "Publish a content view"
|
3731
4045
|
msgstr ""
|
3732
4046
|
|
4047
|
+
msgid "Publish new version - "
|
4048
|
+
msgstr ""
|
4049
|
+
|
3733
4050
|
msgid "Published new version"
|
3734
4051
|
msgstr ""
|
3735
4052
|
|
4053
|
+
msgid "Publishing ${name}"
|
4054
|
+
msgstr ""
|
4055
|
+
|
4056
|
+
msgid "Publishing content view"
|
4057
|
+
msgstr ""
|
4058
|
+
|
3736
4059
|
msgid "Pulling remote branches. Downloaded %s units."
|
3737
4060
|
msgstr ""
|
3738
4061
|
|
@@ -3742,7 +4065,7 @@ msgstr ""
|
|
3742
4065
|
msgid "Pulp 3 export destination filepath"
|
3743
4066
|
msgstr ""
|
3744
4067
|
|
3745
|
-
msgid "Pulp
|
4068
|
+
msgid "Pulp 3 is not enabled on Smart proxy!"
|
3746
4069
|
msgstr ""
|
3747
4070
|
|
3748
4071
|
msgid "Pulp Docker registry port"
|
@@ -3832,8 +4155,9 @@ msgstr ""
|
|
3832
4155
|
msgid "RPM name"
|
3833
4156
|
msgstr ""
|
3834
4157
|
|
4158
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3835
4159
|
msgid "RPMs"
|
3836
|
-
msgstr ""
|
4160
|
+
msgstr "RPMs"
|
3837
4161
|
|
3838
4162
|
msgid "Realm IDs"
|
3839
4163
|
msgstr ""
|
@@ -3847,29 +4171,35 @@ msgstr ""
|
|
3847
4171
|
msgid "Recommended Repositories"
|
3848
4172
|
msgstr ""
|
3849
4173
|
|
4174
|
+
#, fuzzy
|
3850
4175
|
msgid "Red Hat CDN URL"
|
3851
|
-
msgstr ""
|
4176
|
+
msgstr "ఉత్పత్తులు"
|
3852
4177
|
|
3853
4178
|
msgid "Red Hat Provider Details"
|
3854
4179
|
msgstr ""
|
3855
4180
|
|
4181
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3856
4182
|
msgid "Red Hat Repositories"
|
3857
|
-
msgstr ""
|
4183
|
+
msgstr "Red Hat రిపోజిటరీలు"
|
3858
4184
|
|
4185
|
+
#, fuzzy
|
3859
4186
|
msgid "Red Hat products cannot be manipulated."
|
3860
|
-
msgstr ""
|
4187
|
+
msgstr "Red Hat సమర్పకులు తొలగించలేరు"
|
3861
4188
|
|
4189
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
3862
4190
|
msgid "Red Hat provider can not be deleted"
|
3863
|
-
msgstr ""
|
4191
|
+
msgstr "Red Hat సమర్పకులు తొలగించలేరు"
|
3864
4192
|
|
4193
|
+
#, fuzzy
|
3865
4194
|
msgid "Red Hat repositories cannot be manipulated."
|
3866
|
-
msgstr ""
|
4195
|
+
msgstr "Red Hat సమర్పకులు తొలగించలేరు"
|
3867
4196
|
|
3868
4197
|
msgid "Refresh"
|
3869
4198
|
msgstr ""
|
3870
4199
|
|
4200
|
+
#, fuzzy
|
3871
4201
|
msgid "Refresh Manifest"
|
3872
|
-
msgstr ""
|
4202
|
+
msgstr "పాత్రలు తొలగించు"
|
3873
4203
|
|
3874
4204
|
msgid "Refresh previously imported manifest for Red Hat provider"
|
3875
4205
|
msgstr ""
|
@@ -3916,14 +4246,19 @@ msgstr ""
|
|
3916
4246
|
msgid "Removal of package(s) requested: %{packages}"
|
3917
4247
|
msgstr ""
|
3918
4248
|
|
4249
|
+
msgid "Remove"
|
4250
|
+
msgstr ""
|
4251
|
+
|
3919
4252
|
msgid "Remove Content"
|
3920
4253
|
msgstr ""
|
3921
4254
|
|
4255
|
+
#, fuzzy
|
3922
4256
|
msgid "Remove Version"
|
3923
|
-
msgstr ""
|
4257
|
+
msgstr "పాత్రల అనుమతిని చదువు"
|
3924
4258
|
|
4259
|
+
#, fuzzy
|
3925
4260
|
msgid "Remove Versions and Associations"
|
3926
|
-
msgstr ""
|
4261
|
+
msgstr "సంస్థను చదువు"
|
3927
4262
|
|
3928
4263
|
msgid "Remove a content view from an environment"
|
3929
4264
|
msgstr ""
|
@@ -3940,9 +4275,13 @@ msgstr ""
|
|
3940
4275
|
msgid "Remove content view version"
|
3941
4276
|
msgstr ""
|
3942
4277
|
|
3943
|
-
msgid "Remove
|
4278
|
+
msgid "Remove content views"
|
3944
4279
|
msgstr ""
|
3945
4280
|
|
4281
|
+
#, fuzzy
|
4282
|
+
msgid "Remove from Environment"
|
4283
|
+
msgstr "ఎన్విరాన్మెంట్స్ చదువు"
|
4284
|
+
|
3946
4285
|
msgid "Remove hosts from the host collection"
|
3947
4286
|
msgstr ""
|
3948
4287
|
|
@@ -3955,14 +4294,16 @@ msgstr ""
|
|
3955
4294
|
msgid "Remove one or more subscriptions from an upstream subscription allocation"
|
3956
4295
|
msgstr ""
|
3957
4296
|
|
4297
|
+
#, fuzzy
|
3958
4298
|
msgid "Remove package"
|
3959
|
-
msgstr ""
|
4299
|
+
msgstr "ప్యాకేజీ '%s' తీసివేసెను"
|
3960
4300
|
|
3961
4301
|
msgid "Remove package for %s"
|
3962
4302
|
msgstr ""
|
3963
4303
|
|
4304
|
+
#, fuzzy
|
3964
4305
|
msgid "Remove package group"
|
3965
|
-
msgstr ""
|
4306
|
+
msgstr "ప్యాకేజీ సమూహం '%s' తీసివేసెను"
|
3966
4307
|
|
3967
4308
|
msgid "Remove package group via Katello interface"
|
3968
4309
|
msgstr ""
|
@@ -3985,30 +4326,37 @@ msgstr ""
|
|
3985
4326
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
3986
4327
|
msgstr ""
|
3987
4328
|
|
3988
|
-
msgid "
|
4329
|
+
msgid "Removed component from content view"
|
3989
4330
|
msgstr ""
|
3990
4331
|
|
3991
|
-
msgid "
|
4332
|
+
msgid "Removed components from content view"
|
3992
4333
|
msgstr ""
|
3993
4334
|
|
4335
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4336
|
+
msgid "Removing Package Group..."
|
4337
|
+
msgstr "ప్యాకేజీ సమూహం తీసివేస్తున్నది..."
|
4338
|
+
|
4339
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4340
|
+
msgid "Removing Package..."
|
4341
|
+
msgstr "ప్యాకేజీ తీసివేస్తోంది..."
|
4342
|
+
|
3994
4343
|
msgid "Repo Type"
|
3995
4344
|
msgstr ""
|
3996
4345
|
|
4346
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
3997
4347
|
msgid "Repositories"
|
3998
|
-
msgstr ""
|
4348
|
+
msgstr "రిపోజిటరీలు"
|
3999
4349
|
|
4000
4350
|
msgid "Repositories from published Content Views are not allowed."
|
4001
4351
|
msgstr ""
|
4002
4352
|
|
4353
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4003
4354
|
msgid "Repository"
|
4004
|
-
msgstr ""
|
4355
|
+
msgstr "రిపోజిటరీ"
|
4005
4356
|
|
4006
4357
|
msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
|
4007
4358
|
msgstr ""
|
4008
4359
|
|
4009
|
-
msgid "Repository %s cannot be deleted since they are Red Hat repositories."
|
4010
|
-
msgstr ""
|
4011
|
-
|
4012
4360
|
msgid "Repository '%(repoName)s' has been disabled."
|
4013
4361
|
msgstr ""
|
4014
4362
|
|
@@ -4021,14 +4369,13 @@ msgstr ""
|
|
4021
4369
|
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."
|
4022
4370
|
msgstr ""
|
4023
4371
|
|
4372
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4024
4373
|
msgid "Repository cannot be disabled since it has already been promoted."
|
4025
|
-
msgstr ""
|
4026
|
-
|
4027
|
-
msgid "Repository content type must be 'yum' to export."
|
4028
|
-
msgstr ""
|
4374
|
+
msgstr "రిపోజిటరీ యిప్పటికే వున్నతి చెందిన కారణంగా దానిని అచేతనం చేయలేము."
|
4029
4375
|
|
4376
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4030
4377
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4031
|
-
msgstr ""
|
4378
|
+
msgstr "ఎన్విరాన్మెంట్ %{to_evn} నందు రిపోజిటరీ యిప్పటికే %{cv_name} కు క్లోన్ చేయబడెను"
|
4032
4379
|
|
4033
4380
|
msgid "Repository id"
|
4034
4381
|
msgstr ""
|
@@ -4042,14 +4389,16 @@ msgstr ""
|
|
4042
4389
|
msgid "Repository metadata publish"
|
4043
4390
|
msgstr ""
|
4044
4391
|
|
4392
|
+
#, fuzzy
|
4045
4393
|
msgid "Repository not found"
|
4046
|
-
msgstr ""
|
4394
|
+
msgstr "రిపోజిటరీలు"
|
4047
4395
|
|
4048
4396
|
msgid "Repository set name to search on"
|
4049
4397
|
msgstr ""
|
4050
4398
|
|
4399
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4051
4400
|
msgid "Repository sets are not available for custom products."
|
4052
|
-
msgstr ""
|
4401
|
+
msgstr "వినియోగదారి వుత్పత్తుల కొరకు రిపోజిటరీ సమితులు అందుబాటులోలేవు."
|
4053
4402
|
|
4054
4403
|
msgid "Republish Repositories of %{name} %{version}"
|
4055
4404
|
msgstr ""
|
@@ -4057,6 +4406,9 @@ msgstr ""
|
|
4057
4406
|
msgid "Republish Version Repositories"
|
4058
4407
|
msgstr ""
|
4059
4408
|
|
4409
|
+
msgid "Requirements yaml is invalid!"
|
4410
|
+
msgstr ""
|
4411
|
+
|
4060
4412
|
msgid "Requires Virt-Who"
|
4061
4413
|
msgstr ""
|
4062
4414
|
|
@@ -4067,7 +4419,7 @@ msgid "Resolve traces for one or more hosts"
|
|
4067
4419
|
msgstr ""
|
4068
4420
|
|
4069
4421
|
msgid "Resource"
|
4070
|
-
msgstr "
|
4422
|
+
msgstr ""
|
4071
4423
|
|
4072
4424
|
msgid "Restart Services via Katello interface"
|
4073
4425
|
msgstr ""
|
@@ -4075,8 +4427,9 @@ msgstr ""
|
|
4075
4427
|
msgid "Restrict Composite Content View promotion"
|
4076
4428
|
msgstr ""
|
4077
4429
|
|
4430
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
4078
4431
|
msgid "Result"
|
4079
|
-
msgstr ""
|
4432
|
+
msgstr "ఫలితం"
|
4080
4433
|
|
4081
4434
|
msgid "Retrieve a single errata for a host"
|
4082
4435
|
msgstr ""
|
@@ -4099,9 +4452,6 @@ msgstr ""
|
|
4099
4452
|
msgid "Return errata that are upgradable on one or more hosts"
|
4100
4453
|
msgstr ""
|
4101
4454
|
|
4102
|
-
msgid "Return errata that can be added to the Content View Version via an Incremental Update. Will be removed in Katello 4.1."
|
4103
|
-
msgstr ""
|
4104
|
-
|
4105
4455
|
msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
|
4106
4456
|
msgstr ""
|
4107
4457
|
|
@@ -4142,19 +4492,20 @@ msgid "Returns content that can be both added and is currently added to the obje
|
|
4142
4492
|
msgstr ""
|
4143
4493
|
|
4144
4494
|
msgid "Role"
|
4145
|
-
msgstr "
|
4495
|
+
msgstr ""
|
4146
4496
|
|
4147
4497
|
msgid "Role of host"
|
4148
4498
|
msgstr ""
|
4149
4499
|
|
4150
4500
|
msgid "Roles"
|
4151
|
-
msgstr "
|
4501
|
+
msgstr ""
|
4152
4502
|
|
4153
4503
|
msgid "Run Sync Plan:"
|
4154
4504
|
msgstr ""
|
4155
4505
|
|
4506
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4156
4507
|
msgid "Running"
|
4157
|
-
msgstr ""
|
4508
|
+
msgstr "నడుచుచున్నది"
|
4158
4509
|
|
4159
4510
|
msgid "SKU"
|
4160
4511
|
msgstr ""
|
@@ -4169,13 +4520,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
|
|
4169
4520
|
msgstr ""
|
4170
4521
|
|
4171
4522
|
msgid "Save"
|
4172
|
-
msgstr "
|
4523
|
+
msgstr ""
|
4173
4524
|
|
4174
4525
|
msgid "Schedule errata for installation using katello-agent. %s"
|
4175
4526
|
msgstr ""
|
4176
4527
|
|
4177
4528
|
msgid "Search"
|
4178
|
-
msgstr "
|
4529
|
+
msgstr ""
|
4179
4530
|
|
4180
4531
|
msgid "Search pattern (defaults to '*')"
|
4181
4532
|
msgstr ""
|
@@ -4192,8 +4543,9 @@ msgstr ""
|
|
4192
4543
|
msgid "Search string for hosts to perform an action on"
|
4193
4544
|
msgstr ""
|
4194
4545
|
|
4546
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4195
4547
|
msgid "Security"
|
4196
|
-
msgstr ""
|
4548
|
+
msgstr "రక్షణ"
|
4197
4549
|
|
4198
4550
|
msgid "Security errata applicable"
|
4199
4551
|
msgstr ""
|
@@ -4204,30 +4556,41 @@ msgstr ""
|
|
4204
4556
|
msgid "Select"
|
4205
4557
|
msgstr ""
|
4206
4558
|
|
4559
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
4207
4560
|
msgid "Select All"
|
4208
4561
|
msgstr "అన్నిటినీ యెంపికచేయి"
|
4209
4562
|
|
4563
|
+
#, fuzzy
|
4210
4564
|
msgid "Select Content View"
|
4211
|
-
msgstr ""
|
4565
|
+
msgstr "కాంటెంట్"
|
4212
4566
|
|
4567
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4213
4568
|
msgid "Select None"
|
4214
|
-
msgstr ""
|
4569
|
+
msgstr "దేనిని యెంపికచేయవద్దు"
|
4215
4570
|
|
4216
4571
|
msgid "Select Organization"
|
4217
|
-
msgstr "
|
4572
|
+
msgstr ""
|
4218
4573
|
|
4219
4574
|
msgid "Select Value"
|
4220
4575
|
msgstr ""
|
4221
4576
|
|
4577
|
+
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
4578
|
+
msgstr ""
|
4579
|
+
|
4222
4580
|
msgid "Select all rows"
|
4223
4581
|
msgstr ""
|
4224
4582
|
|
4583
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
4584
|
+
#, fuzzy
|
4225
4585
|
msgid "Select an Organization"
|
4226
|
-
msgstr ""
|
4586
|
+
msgstr "సంస్థ యెంపికచేయి"
|
4227
4587
|
|
4228
4588
|
msgid "Select an organization"
|
4229
4589
|
msgstr ""
|
4230
4590
|
|
4591
|
+
msgid "Select available version of ${cvName} to use"
|
4592
|
+
msgstr ""
|
4593
|
+
|
4231
4594
|
msgid "Select hosts to assign to %s"
|
4232
4595
|
msgstr ""
|
4233
4596
|
|
@@ -4240,8 +4603,9 @@ msgstr ""
|
|
4240
4603
|
msgid "Service Level"
|
4241
4604
|
msgstr ""
|
4242
4605
|
|
4606
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4243
4607
|
msgid "Service Level %s"
|
4244
|
-
msgstr ""
|
4608
|
+
msgstr "సేవా స్థాయి %s"
|
4245
4609
|
|
4246
4610
|
msgid "Service Level (SLA)"
|
4247
4611
|
msgstr ""
|
@@ -4273,8 +4637,9 @@ msgstr ""
|
|
4273
4637
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4274
4638
|
msgstr ""
|
4275
4639
|
|
4640
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4276
4641
|
msgid "Severity"
|
4277
|
-
msgstr ""
|
4642
|
+
msgstr "తీవ్రత"
|
4278
4643
|
|
4279
4644
|
msgid "Show :a_resource"
|
4280
4645
|
msgstr ""
|
@@ -4351,6 +4716,9 @@ msgstr ""
|
|
4351
4716
|
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4352
4717
|
msgstr ""
|
4353
4718
|
|
4719
|
+
msgid "Single content view consisting of repositories"
|
4720
|
+
msgstr ""
|
4721
|
+
|
4354
4722
|
msgid "Size of file to upload"
|
4355
4723
|
msgstr ""
|
4356
4724
|
|
@@ -4363,9 +4731,13 @@ msgstr ""
|
|
4363
4731
|
msgid "Smart proxy IDs"
|
4364
4732
|
msgstr ""
|
4365
4733
|
|
4366
|
-
msgid "
|
4734
|
+
msgid "Smart proxy content source not found!"
|
4367
4735
|
msgstr ""
|
4368
4736
|
|
4737
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4738
|
+
msgid "Sockets: %s"
|
4739
|
+
msgstr "సాకెట్లు: %s"
|
4740
|
+
|
4369
4741
|
msgid "Solve Dependencies"
|
4370
4742
|
msgstr ""
|
4371
4743
|
|
@@ -4381,6 +4753,21 @@ msgstr ""
|
|
4381
4753
|
msgid "Some services are not properly started. See the About page for more information."
|
4382
4754
|
msgstr ""
|
4383
4755
|
|
4756
|
+
msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
|
4757
|
+
msgstr ""
|
4758
|
+
|
4759
|
+
msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
|
4760
|
+
msgstr ""
|
4761
|
+
|
4762
|
+
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
4763
|
+
msgstr ""
|
4764
|
+
|
4765
|
+
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
4766
|
+
msgstr ""
|
4767
|
+
|
4768
|
+
msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
|
4769
|
+
msgstr ""
|
4770
|
+
|
4384
4771
|
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4385
4772
|
msgstr ""
|
4386
4773
|
|
@@ -4420,23 +4807,27 @@ msgstr ""
|
|
4420
4807
|
msgid "Stacking ID"
|
4421
4808
|
msgstr ""
|
4422
4809
|
|
4810
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4423
4811
|
msgid "Start Date"
|
4424
|
-
msgstr ""
|
4812
|
+
msgstr "ప్రారంభ తేది"
|
4425
4813
|
|
4814
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4426
4815
|
msgid "Start Date and Time can't be blank"
|
4427
|
-
msgstr ""
|
4816
|
+
msgstr "ప్రారంభం తేదీ మరియు సమయం ఖాళీగా వుంచలేము"
|
4428
4817
|
|
4818
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
4429
4819
|
msgid "Start Time"
|
4430
|
-
msgstr ""
|
4820
|
+
msgstr "ప్రారంభ సమయం"
|
4431
4821
|
|
4432
4822
|
msgid "Starts"
|
4433
4823
|
msgstr ""
|
4434
4824
|
|
4825
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4435
4826
|
msgid "Status"
|
4436
4827
|
msgstr "స్థితి"
|
4437
4828
|
|
4438
4829
|
msgid "Storage"
|
4439
|
-
msgstr "
|
4830
|
+
msgstr ""
|
4440
4831
|
|
4441
4832
|
msgid "Stream"
|
4442
4833
|
msgstr ""
|
@@ -4450,8 +4841,9 @@ msgstr ""
|
|
4450
4841
|
msgid "Subnet IDs"
|
4451
4842
|
msgstr ""
|
4452
4843
|
|
4844
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4453
4845
|
msgid "Subscription"
|
4454
|
-
msgstr ""
|
4846
|
+
msgstr "సబ్స్క్రిప్షన్"
|
4455
4847
|
|
4456
4848
|
msgid "Subscription Allocation"
|
4457
4849
|
msgstr ""
|
@@ -4522,12 +4914,14 @@ msgstr ""
|
|
4522
4914
|
msgid "Subscriptions have been saved and are being updated. "
|
4523
4915
|
msgstr ""
|
4524
4916
|
|
4917
|
+
#, fuzzy
|
4525
4918
|
msgid "Subscriptions information based on selected activation keys:"
|
4526
|
-
msgstr ""
|
4919
|
+
msgstr "క్రియాశీలపు కీ '%s'నకు సబ్స్క్రిప్షన్లు విజయవంతంగా జతచేయబడెను."
|
4527
4920
|
|
4528
4921
|
msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
|
4529
4922
|
msgstr ""
|
4530
4923
|
|
4924
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
4531
4925
|
msgid "Success"
|
4532
4926
|
msgstr "సఫలం"
|
4533
4927
|
|
@@ -4552,8 +4946,9 @@ msgstr ""
|
|
4552
4946
|
msgid "Successfully synchronized."
|
4553
4947
|
msgstr ""
|
4554
4948
|
|
4949
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4555
4950
|
msgid "Summary"
|
4556
|
-
msgstr ""
|
4951
|
+
msgstr "సారాంశం"
|
4557
4952
|
|
4558
4953
|
msgid "Support Type"
|
4559
4954
|
msgstr ""
|
@@ -4561,8 +4956,9 @@ msgstr ""
|
|
4561
4956
|
msgid "Supported Content Types"
|
4562
4957
|
msgstr ""
|
4563
4958
|
|
4959
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4564
4960
|
msgid "Sync Canceled"
|
4565
|
-
msgstr ""
|
4961
|
+
msgstr "సింక్ రద్దైను"
|
4566
4962
|
|
4567
4963
|
msgid "Sync Connection Timeout"
|
4568
4964
|
msgstr ""
|
@@ -4570,11 +4966,14 @@ msgstr ""
|
|
4570
4966
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4571
4967
|
msgstr ""
|
4572
4968
|
|
4969
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4970
|
+
#, fuzzy
|
4573
4971
|
msgid "Sync Incomplete"
|
4574
|
-
msgstr ""
|
4972
|
+
msgstr "సింక్ పూర్తి."
|
4575
4973
|
|
4974
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4576
4975
|
msgid "Sync Overview"
|
4577
|
-
msgstr ""
|
4976
|
+
msgstr "సింక్ స్థూలదృష్టి"
|
4578
4977
|
|
4579
4978
|
msgid "Sync Plan"
|
4580
4979
|
msgstr ""
|
@@ -4582,8 +4981,9 @@ msgstr ""
|
|
4582
4981
|
msgid "Sync Plan: "
|
4583
4982
|
msgstr ""
|
4584
4983
|
|
4984
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4585
4985
|
msgid "Sync Plans"
|
4586
|
-
msgstr ""
|
4986
|
+
msgstr "సింక్ ప్లాన్స్"
|
4587
4987
|
|
4588
4988
|
msgid "Sync Repository on Smart Proxy(ies)"
|
4589
4989
|
msgstr ""
|
@@ -4591,8 +4991,9 @@ msgstr ""
|
|
4591
4991
|
msgid "Sync Smart Proxies after Content View promotion"
|
4592
4992
|
msgstr ""
|
4593
4993
|
|
4994
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4594
4995
|
msgid "Sync Status"
|
4595
|
-
msgstr ""
|
4996
|
+
msgstr "సింక్ స్థితి"
|
4596
4997
|
|
4597
4998
|
msgid "Sync Summary"
|
4598
4999
|
msgstr ""
|
@@ -4609,8 +5010,9 @@ msgstr ""
|
|
4609
5010
|
msgid "Sync capsule"
|
4610
5011
|
msgstr ""
|
4611
5012
|
|
5013
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4612
5014
|
msgid "Sync complete."
|
4613
|
-
msgstr ""
|
5015
|
+
msgstr "సింక్ పూర్తి."
|
4614
5016
|
|
4615
5017
|
msgid "Sync errata"
|
4616
5018
|
msgstr ""
|
@@ -4630,11 +5032,13 @@ msgstr ""
|
|
4630
5032
|
msgid "Synced to smart proxy"
|
4631
5033
|
msgstr ""
|
4632
5034
|
|
5035
|
+
#, fuzzy
|
4633
5036
|
msgid "Synchronize"
|
4634
|
-
msgstr ""
|
5037
|
+
msgstr "సింక్రొనైజేషన్"
|
4635
5038
|
|
5039
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4636
5040
|
msgid "Synchronize Now"
|
4637
|
-
msgstr ""
|
5041
|
+
msgstr "ఇప్పుడు సింక్రొనైజ్ చేయి"
|
4638
5042
|
|
4639
5043
|
msgid "Synchronize capsule content"
|
4640
5044
|
msgstr ""
|
@@ -4654,8 +5058,10 @@ msgstr ""
|
|
4654
5058
|
msgid "Synchronize: Validate Content"
|
4655
5059
|
msgstr ""
|
4656
5060
|
|
5061
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5062
|
+
#, fuzzy
|
4657
5063
|
msgid "Syncing Complete."
|
4658
|
-
msgstr ""
|
5064
|
+
msgstr "సింక్ పూర్తి."
|
4659
5065
|
|
4660
5066
|
msgid "System Purpose"
|
4661
5067
|
msgstr ""
|
@@ -4681,8 +5087,9 @@ msgstr ""
|
|
4681
5087
|
msgid "Temporary"
|
4682
5088
|
msgstr ""
|
4683
5089
|
|
5090
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4684
5091
|
msgid "The '%s' environment cannot contain a changeset!"
|
4685
|
-
msgstr ""
|
5092
|
+
msgstr "'%s' యెన్విరాన్మెంట్ అనునది చేంజ్సెట్ను కలిగివుండలేదు!"
|
4686
5093
|
|
4687
5094
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4688
5095
|
msgstr ""
|
@@ -4696,14 +5103,16 @@ msgstr ""
|
|
4696
5103
|
msgid "The actual file contents"
|
4697
5104
|
msgstr ""
|
4698
5105
|
|
5106
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
4699
5107
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
4700
|
-
msgstr ""
|
5108
|
+
msgstr "ప్రస్తుత సంస్థ తొలగించబడలేదు. తొలగించుటకు ముందుగా వేరే సంస్థకు దయచేసి మారండి."
|
4701
5109
|
|
4702
5110
|
msgid "The default content view cannot be edited, published, or deleted."
|
4703
5111
|
msgstr ""
|
4704
5112
|
|
5113
|
+
#, fuzzy
|
4705
5114
|
msgid "The default content view cannot be promoted"
|
4706
|
-
msgstr ""
|
5115
|
+
msgstr "మాదిరి యెక్సుపోర్టు కాలేదు"
|
4707
5116
|
|
4708
5117
|
msgid "The default dependency solving value for new Content Views."
|
4709
5118
|
msgstr ""
|
@@ -4720,12 +5129,6 @@ msgstr ""
|
|
4720
5129
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4721
5130
|
msgstr ""
|
4722
5131
|
|
4723
|
-
msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
|
4724
|
-
msgstr ""
|
4725
|
-
|
4726
|
-
msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
|
4727
|
-
msgstr ""
|
4728
|
-
|
4729
5132
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4730
5133
|
msgstr ""
|
4731
5134
|
|
@@ -4758,6 +5161,9 @@ msgstr ""
|
|
4758
5161
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
4759
5162
|
msgstr ""
|
4760
5163
|
|
5164
|
+
msgid "The maximum number of versions of each package to keep."
|
5165
|
+
msgstr ""
|
5166
|
+
|
4761
5167
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4762
5168
|
msgstr ""
|
4763
5169
|
|
@@ -4790,8 +5196,9 @@ msgstr ""
|
|
4790
5196
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4791
5197
|
msgstr ""
|
4792
5198
|
|
5199
|
+
#, fuzzy
|
4793
5200
|
msgid "The repository is already enabled"
|
4794
|
-
msgstr ""
|
5201
|
+
msgstr "రిపోజిటరీ '%s' చేతనంచేసెను."
|
4795
5202
|
|
4796
5203
|
msgid "The request did not contain any repository information."
|
4797
5204
|
msgstr ""
|
@@ -4840,8 +5247,9 @@ msgstr ""
|
|
4840
5247
|
msgid "There are no errata that need to be applied to registered content hosts."
|
4841
5248
|
msgstr ""
|
4842
5249
|
|
5250
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4843
5251
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
4844
|
-
msgstr ""
|
5252
|
+
msgstr "అక్కడ ఏ వుత్పత్తులు లేదా రిపోజిటరీలు చేతనమైలేవు. %{custom} లేదా %{redhat} ద్వారా చేతనం చేయుటకు ప్రయత్నించు."
|
4845
5253
|
|
4846
5254
|
msgid "There either were no environments nor versions specified or there were invalid environments/versions specified. Please check environment_ids and content_view_version_ids parameters."
|
4847
5255
|
msgstr ""
|
@@ -4897,9 +5305,6 @@ msgstr ""
|
|
4897
5305
|
msgid "This is disabled because a manifest task is in progress"
|
4898
5306
|
msgstr ""
|
4899
5307
|
|
4900
|
-
msgid "This is disabled because disconnected mode is enabled."
|
4901
|
-
msgstr ""
|
4902
|
-
|
4903
5308
|
msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
|
4904
5309
|
msgstr ""
|
4905
5310
|
|
@@ -4945,8 +5350,9 @@ msgstr ""
|
|
4945
5350
|
msgid "Timestamp"
|
4946
5351
|
msgstr ""
|
4947
5352
|
|
5353
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author kkrothap
|
4948
5354
|
msgid "Title"
|
4949
|
-
msgstr ""
|
5355
|
+
msgstr "శీర్షిక"
|
4950
5356
|
|
4951
5357
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
4952
5358
|
msgstr ""
|
@@ -4984,8 +5390,11 @@ msgstr ""
|
|
4984
5390
|
msgid "Type of content: \"cert\", \"gpg_key\""
|
4985
5391
|
msgstr ""
|
4986
5392
|
|
5393
|
+
msgid "URL needs to have a trailing /"
|
5394
|
+
msgstr ""
|
5395
|
+
|
4987
5396
|
msgid "UUID"
|
4988
|
-
msgstr "
|
5397
|
+
msgstr ""
|
4989
5398
|
|
4990
5399
|
msgid "UUID of the consumer"
|
4991
5400
|
msgstr ""
|
@@ -5011,12 +5420,6 @@ msgstr ""
|
|
5011
5420
|
msgid "Unable to detect puppet path"
|
5012
5421
|
msgstr ""
|
5013
5422
|
|
5014
|
-
msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
|
5015
|
-
msgstr ""
|
5016
|
-
|
5017
|
-
msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
|
5018
|
-
msgstr ""
|
5019
|
-
|
5020
5423
|
msgid "Unable to find product '%s' in organization '%s'"
|
5021
5424
|
msgstr ""
|
5022
5425
|
|
@@ -5071,6 +5474,7 @@ msgstr ""
|
|
5071
5474
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
5072
5475
|
msgstr ""
|
5073
5476
|
|
5477
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
5074
5478
|
msgid "Unknown"
|
5075
5479
|
msgstr "తెలియని"
|
5076
5480
|
|
@@ -5107,12 +5511,14 @@ msgstr ""
|
|
5107
5511
|
msgid "Unsubscribed hypervisor"
|
5108
5512
|
msgstr ""
|
5109
5513
|
|
5514
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5110
5515
|
msgid "Unsupported URL protocol %s."
|
5111
|
-
msgstr ""
|
5516
|
+
msgstr "తోడ్పాటులేని URL ప్రొటోకాల్ %s."
|
5112
5517
|
|
5113
5518
|
msgid "Unsupported event type %{type}. Supported: %{types}"
|
5114
5519
|
msgstr ""
|
5115
5520
|
|
5521
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5116
5522
|
msgid "Update"
|
5117
5523
|
msgstr "నవీకరణ"
|
5118
5524
|
|
@@ -5224,8 +5630,14 @@ msgstr ""
|
|
5224
5630
|
msgid "Update the quantity of one or more subscriptions on an upstream allocation"
|
5225
5631
|
msgstr ""
|
5226
5632
|
|
5633
|
+
msgid "Update version"
|
5634
|
+
msgstr ""
|
5635
|
+
|
5227
5636
|
msgid "Updated"
|
5228
|
-
msgstr "
|
5637
|
+
msgstr ""
|
5638
|
+
|
5639
|
+
msgid "Updated component details"
|
5640
|
+
msgstr ""
|
5229
5641
|
|
5230
5642
|
msgid "Updates"
|
5231
5643
|
msgstr ""
|
@@ -5236,8 +5648,9 @@ msgstr ""
|
|
5236
5648
|
msgid "Updates all packages on the host(s)"
|
5237
5649
|
msgstr ""
|
5238
5650
|
|
5651
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5239
5652
|
msgid "Updating Package..."
|
5240
|
-
msgstr ""
|
5653
|
+
msgstr "ప్యాకేజీను నవీకరించుచున్నది..."
|
5241
5654
|
|
5242
5655
|
msgid "Updating System Purpose for host"
|
5243
5656
|
msgstr ""
|
@@ -5245,8 +5658,9 @@ msgstr ""
|
|
5245
5658
|
msgid "Updating System Purpose for host %s"
|
5246
5659
|
msgstr ""
|
5247
5660
|
|
5661
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5248
5662
|
msgid "Updating package group..."
|
5249
|
-
msgstr ""
|
5663
|
+
msgstr "ప్యాకేజీ సమూహం నవీకరిస్తోంది..."
|
5250
5664
|
|
5251
5665
|
msgid "Updating repository authentication configuration"
|
5252
5666
|
msgstr ""
|
@@ -5266,11 +5680,10 @@ msgstr ""
|
|
5266
5680
|
msgid "Upload content into the repository"
|
5267
5681
|
msgstr ""
|
5268
5682
|
|
5269
|
-
|
5270
|
-
|
5271
|
-
|
5683
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5684
|
+
#, fuzzy
|
5272
5685
|
msgid "Upload into"
|
5273
|
-
msgstr ""
|
5686
|
+
msgstr "అప్లోడింగ్"
|
5274
5687
|
|
5275
5688
|
msgid "Upload request id"
|
5276
5689
|
msgstr ""
|
@@ -5306,7 +5719,7 @@ msgid "Used to determine download concurrency of the repository in pulp3. Use va
|
|
5306
5719
|
msgstr ""
|
5307
5720
|
|
5308
5721
|
msgid "User"
|
5309
|
-
msgstr "
|
5722
|
+
msgstr ""
|
5310
5723
|
|
5311
5724
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5312
5725
|
msgstr ""
|
@@ -5342,7 +5755,13 @@ msgid "Verify checksum of repository contents"
|
|
5342
5755
|
msgstr ""
|
5343
5756
|
|
5344
5757
|
msgid "Version"
|
5345
|
-
msgstr "
|
5758
|
+
msgstr ""
|
5759
|
+
|
5760
|
+
msgid "Version "
|
5761
|
+
msgstr ""
|
5762
|
+
|
5763
|
+
msgid "Version ${item.version}"
|
5764
|
+
msgstr ""
|
5346
5765
|
|
5347
5766
|
msgid "Versions"
|
5348
5767
|
msgstr ""
|
@@ -5350,14 +5769,16 @@ msgstr ""
|
|
5350
5769
|
msgid "Versions will appear here when the content view is published."
|
5351
5770
|
msgstr ""
|
5352
5771
|
|
5772
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5353
5773
|
msgid "View %{view} has not been promoted to %{env}"
|
5354
|
-
msgstr ""
|
5774
|
+
msgstr "దర్శనం %{view} అనునది %{env} కు ప్రమోట్ కాలేదు"
|
5355
5775
|
|
5356
5776
|
msgid "View a report of the affected hosts"
|
5357
5777
|
msgstr ""
|
5358
5778
|
|
5779
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
5359
5780
|
msgid "Virtual"
|
5360
|
-
msgstr ""
|
5781
|
+
msgstr "వర్చ్యువల్"
|
5361
5782
|
|
5362
5783
|
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5363
5784
|
msgstr ""
|
@@ -5419,11 +5840,13 @@ msgstr ""
|
|
5419
5840
|
msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
|
5420
5841
|
msgstr ""
|
5421
5842
|
|
5843
|
+
#, fuzzy
|
5422
5844
|
msgid "You cannot set an organization's parent. This feature is disabled."
|
5423
|
-
msgstr ""
|
5845
|
+
msgstr "వాడుకరి %s పైన మీరు అప్రమేయ సంస్థ మరియు యెన్విరాన్మెంటును అమర్చలేదు."
|
5424
5846
|
|
5847
|
+
#, fuzzy
|
5425
5848
|
msgid "You cannot set an organization's parent_id. This feature is disabled."
|
5426
|
-
msgstr ""
|
5849
|
+
msgstr "వాడుకరి %s పైన మీరు అప్రమేయ సంస్థ మరియు యెన్విరాన్మెంటును అమర్చలేదు."
|
5427
5850
|
|
5428
5851
|
msgid "You currently don't have any Content Views."
|
5429
5852
|
msgstr ""
|
@@ -5494,11 +5917,14 @@ msgstr ""
|
|
5494
5917
|
msgid "a module stream"
|
5495
5918
|
msgstr ""
|
5496
5919
|
|
5920
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5921
|
+
#, fuzzy
|
5497
5922
|
msgid "a package"
|
5498
|
-
msgstr ""
|
5923
|
+
msgstr "అన్ని ప్యాకేజీలు"
|
5499
5924
|
|
5925
|
+
#, fuzzy
|
5500
5926
|
msgid "a package group"
|
5501
|
-
msgstr ""
|
5927
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపిస్తోంది..."
|
5502
5928
|
|
5503
5929
|
msgid "actions not found"
|
5504
5930
|
msgstr ""
|
@@ -5509,8 +5935,9 @@ msgstr ""
|
|
5509
5935
|
msgid "activation key name to filter by"
|
5510
5936
|
msgstr ""
|
5511
5937
|
|
5938
|
+
#, fuzzy
|
5512
5939
|
msgid "activation keys"
|
5513
|
-
msgstr ""
|
5940
|
+
msgstr "క్రియాశీలపు కీలు"
|
5514
5941
|
|
5515
5942
|
msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
|
5516
5943
|
msgstr ""
|
@@ -5518,14 +5945,17 @@ msgstr ""
|
|
5518
5945
|
msgid "add all packages without errata to the included/excluded list. (package filter only)"
|
5519
5946
|
msgstr ""
|
5520
5947
|
|
5948
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5521
5949
|
msgid "all packages"
|
5522
|
-
msgstr ""
|
5950
|
+
msgstr "అన్ని ప్యాకేజీలు"
|
5523
5951
|
|
5952
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5524
5953
|
msgid "all packages update"
|
5525
|
-
msgstr ""
|
5954
|
+
msgstr "అన్ని ప్యాకేజీలు నవీకరించు"
|
5526
5955
|
|
5956
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5527
5957
|
msgid "all packages update failed"
|
5528
|
-
msgstr ""
|
5958
|
+
msgstr "అన్ని ప్యాకేజీల నవీకరణ విఫలమైంది"
|
5529
5959
|
|
5530
5960
|
msgid "allow unauthenticed pull of container images"
|
5531
5961
|
msgstr ""
|
@@ -5533,17 +5963,21 @@ msgstr ""
|
|
5533
5963
|
msgid "already belongs to the content view"
|
5534
5964
|
msgstr ""
|
5535
5965
|
|
5966
|
+
#, fuzzy
|
5536
5967
|
msgid "already taken"
|
5537
|
-
msgstr ""
|
5968
|
+
msgstr "టెంప్లేట్ నందు యిప్పటికే వుందా"
|
5538
5969
|
|
5539
5970
|
msgid "an ansible collection"
|
5540
5971
|
msgstr ""
|
5541
5972
|
|
5973
|
+
#, fuzzy
|
5542
5974
|
msgid "an erratum"
|
5543
|
-
msgstr ""
|
5975
|
+
msgstr "ఎర్రాటమ్ సంస్థాపిస్తోంది..."
|
5544
5976
|
|
5977
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
5978
|
+
#, fuzzy
|
5545
5979
|
msgid "an organization"
|
5546
|
-
msgstr ""
|
5980
|
+
msgstr "సంస్థ"
|
5547
5981
|
|
5548
5982
|
msgid "an ostree branch"
|
5549
5983
|
msgstr ""
|
@@ -5563,35 +5997,43 @@ msgstr ""
|
|
5563
5997
|
msgid "can the activation key have unlimited hosts"
|
5564
5998
|
msgstr ""
|
5565
5999
|
|
6000
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5566
6001
|
msgid "can't be blank"
|
5567
|
-
msgstr ""
|
6002
|
+
msgstr "ఖాళీ గా వుంచలేము"
|
5568
6003
|
|
5569
6004
|
msgid "cannot add filter to import-only view"
|
5570
6005
|
msgstr ""
|
5571
6006
|
|
6007
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5572
6008
|
msgid "cannot be a binary file."
|
5573
|
-
msgstr ""
|
6009
|
+
msgstr "బైనరీ ఫైలు కాలేదు."
|
5574
6010
|
|
6011
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5575
6012
|
msgid "cannot be blank"
|
5576
|
-
msgstr ""
|
6013
|
+
msgstr "ఖాళీ కాలేదు"
|
5577
6014
|
|
5578
6015
|
msgid "cannot be blank when Repository URL is provided."
|
5579
6016
|
msgstr ""
|
5580
6017
|
|
6018
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
6019
|
+
#, fuzzy
|
5581
6020
|
msgid "cannot be changed."
|
5582
|
-
msgstr ""
|
6021
|
+
msgstr "ఖాళీ కాలేదు"
|
5583
6022
|
|
6023
|
+
#, fuzzy
|
5584
6024
|
msgid "cannot be deleted if it has been promoted."
|
5585
|
-
msgstr ""
|
6025
|
+
msgstr "రిపోజిటరీ యిప్పటికే వున్నతి చెందిన కారణంగా దానిని అచేతనం చేయలేము."
|
5586
6026
|
|
5587
6027
|
msgid "cannot be less than one"
|
5588
6028
|
msgstr ""
|
5589
6029
|
|
6030
|
+
#, fuzzy
|
5590
6031
|
msgid "cannot be lower than current usage count (%s)"
|
5591
|
-
msgstr ""
|
6032
|
+
msgstr "ప్రస్తుత వినియోగం (%s) కన్నా యెక్కువ లేదా అపరిమితం కావాలి"
|
5592
6033
|
|
6034
|
+
#, fuzzy
|
5593
6035
|
msgid "cannot be nil"
|
5594
|
-
msgstr ""
|
6036
|
+
msgstr "ఖాళీ గా వుంచలేము"
|
5595
6037
|
|
5596
6038
|
msgid "cannot be set because unlimited hosts is set"
|
5597
6039
|
msgstr ""
|
@@ -5602,20 +6044,23 @@ msgstr ""
|
|
5602
6044
|
msgid "cannot be set for non-yum repositories."
|
5603
6045
|
msgstr ""
|
5604
6046
|
|
6047
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5605
6048
|
msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
|
5606
|
-
msgstr ""
|
6049
|
+
msgstr "ascii alpha numerals, '_', '-' తప్పించి వేరే అక్షరాలు కలిగివుండలేదు. "
|
5607
6050
|
|
5608
6051
|
msgid "cannot contain commas"
|
5609
6052
|
msgstr ""
|
5610
6053
|
|
6054
|
+
#, fuzzy
|
5611
6055
|
msgid "cannot contain filters if composite view"
|
5612
|
-
msgstr ""
|
6056
|
+
msgstr "ASCII విలువలు కాక వేరే అక్షరాలు కలిగివుండలేదు"
|
5613
6057
|
|
5614
6058
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5615
6059
|
msgstr ""
|
5616
6060
|
|
6061
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5617
6062
|
msgid "cannot contain more than %s characters"
|
5618
|
-
msgstr ""
|
6063
|
+
msgstr "%s అక్షరాలకన్నా యెక్కువ కలిగి వుండలేదు"
|
5619
6064
|
|
5620
6065
|
msgid "checking Candlepin task status"
|
5621
6066
|
msgstr ""
|
@@ -5662,11 +6107,13 @@ msgstr ""
|
|
5662
6107
|
msgid "content view numeric identifier"
|
5663
6108
|
msgstr ""
|
5664
6109
|
|
6110
|
+
#, fuzzy
|
5665
6111
|
msgid "content view publish"
|
5666
|
-
msgstr ""
|
6112
|
+
msgstr "కాంటెంట్"
|
5667
6113
|
|
6114
|
+
#, fuzzy
|
5668
6115
|
msgid "content view refresh"
|
5669
|
-
msgstr ""
|
6116
|
+
msgstr "కాంటెంట్"
|
5670
6117
|
|
5671
6118
|
msgid "content view to reassign orphaned activation keys to"
|
5672
6119
|
msgstr ""
|
@@ -5737,8 +6184,9 @@ msgstr ""
|
|
5737
6184
|
msgid "environment to reassign orphaned systems to"
|
5738
6185
|
msgstr ""
|
5739
6186
|
|
6187
|
+
#, fuzzy
|
5740
6188
|
msgid "environments"
|
5741
|
-
msgstr ""
|
6189
|
+
msgstr "ఎన్విరాన్మెంట్స్"
|
5742
6190
|
|
5743
6191
|
msgid "errata_id of the content view filter rule"
|
5744
6192
|
msgstr ""
|
@@ -5782,6 +6230,9 @@ msgstr ""
|
|
5782
6230
|
msgid "filter identifier"
|
5783
6231
|
msgstr ""
|
5784
6232
|
|
6233
|
+
msgid "filter identifiers"
|
6234
|
+
msgstr ""
|
6235
|
+
|
5785
6236
|
msgid "filter only environments containing this name"
|
5786
6237
|
msgstr ""
|
5787
6238
|
|
@@ -5794,8 +6245,9 @@ msgstr ""
|
|
5794
6245
|
msgid "foreman-tasks service not running or is not ready yet"
|
5795
6246
|
msgstr ""
|
5796
6247
|
|
6248
|
+
#, fuzzy
|
5797
6249
|
msgid "has already been taken"
|
5798
|
-
msgstr ""
|
6250
|
+
msgstr "సక్రమమనే నిర్ధారణ విఫలమైంది: లేబుల్ యిప్పటికే తీసుకొనబడెను"
|
5799
6251
|
|
5800
6252
|
msgid "has already been taken for a product in this organization."
|
5801
6253
|
msgstr ""
|
@@ -5842,23 +6294,29 @@ msgstr ""
|
|
5842
6294
|
msgid "initiating Pulp task"
|
5843
6295
|
msgstr ""
|
5844
6296
|
|
6297
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5845
6298
|
msgid "installing errata..."
|
5846
|
-
msgstr ""
|
6299
|
+
msgstr "ఎర్రాటా సంస్థాపిస్తోంది..."
|
5847
6300
|
|
6301
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5848
6302
|
msgid "installing erratum..."
|
5849
|
-
msgstr ""
|
6303
|
+
msgstr "ఎర్రాటమ్ సంస్థాపిస్తోంది..."
|
5850
6304
|
|
6305
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5851
6306
|
msgid "installing package group..."
|
5852
|
-
msgstr ""
|
6307
|
+
msgstr "ప్యాకేజీ సమూహం సంస్థాపిస్తోంది..."
|
5853
6308
|
|
6309
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5854
6310
|
msgid "installing package groups..."
|
5855
|
-
msgstr ""
|
6311
|
+
msgstr "ప్యాకేజీ సమూహాలను సంస్థాపిస్తోంది..."
|
5856
6312
|
|
6313
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5857
6314
|
msgid "installing package..."
|
5858
|
-
msgstr ""
|
6315
|
+
msgstr "ప్యాకేజీ సంస్థాపిస్తోంది..."
|
5859
6316
|
|
6317
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5860
6318
|
msgid "installing packages..."
|
5861
|
-
msgstr ""
|
6319
|
+
msgstr "ప్యాకేజీలను సంస్థాపిస్తోంది..."
|
5862
6320
|
|
5863
6321
|
msgid "interpret specified object to return only Repositories that can be associated with specified object. Only 'content_view' & 'content_view_version' are supported."
|
5864
6322
|
msgstr ""
|
@@ -5872,9 +6330,13 @@ msgstr ""
|
|
5872
6330
|
msgid "is already attached to the capsule"
|
5873
6331
|
msgstr ""
|
5874
6332
|
|
6333
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author kkrothap
|
5875
6334
|
msgid "is invalid"
|
5876
6335
|
msgstr "చెల్లనిదా"
|
5877
6336
|
|
6337
|
+
msgid "is not enabled. must be one of the following: %s"
|
6338
|
+
msgstr ""
|
6339
|
+
|
5878
6340
|
msgid "label of the environment"
|
5879
6341
|
msgstr ""
|
5880
6342
|
|
@@ -5908,9 +6370,6 @@ msgstr ""
|
|
5908
6370
|
msgid "maximum number of registered content hosts"
|
5909
6371
|
msgstr ""
|
5910
6372
|
|
5911
|
-
msgid "maximum size of each ISO in MB"
|
5912
|
-
msgstr ""
|
5913
|
-
|
5914
6373
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5915
6374
|
msgstr ""
|
5916
6375
|
|
@@ -5923,8 +6382,9 @@ msgstr ""
|
|
5923
6382
|
msgid "must be %{gpg_key} or %{cert}"
|
5924
6383
|
msgstr ""
|
5925
6384
|
|
6385
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5926
6386
|
msgid "must be a positive integer value."
|
5927
|
-
msgstr ""
|
6387
|
+
msgstr "తప్పక ధన పూర్ణాంకం అయివుండాలి."
|
5928
6388
|
|
5929
6389
|
msgid "must be one of the following: %s"
|
5930
6390
|
msgstr ""
|
@@ -5932,17 +6392,21 @@ msgstr ""
|
|
5932
6392
|
msgid "must be one of: %s"
|
5933
6393
|
msgstr ""
|
5934
6394
|
|
6395
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5935
6396
|
msgid "must be unique within one organization"
|
5936
|
-
msgstr ""
|
6397
|
+
msgstr "సంస్థ నందు తప్పక విశిష్టంగా వుండాలి"
|
5937
6398
|
|
6399
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5938
6400
|
msgid "must contain '%s'"
|
5939
|
-
msgstr ""
|
6401
|
+
msgstr "తప్పక '%s' కలిగివుండాలి"
|
5940
6402
|
|
6403
|
+
#, fuzzy
|
5941
6404
|
msgid "must contain GPG Key"
|
5942
|
-
msgstr ""
|
6405
|
+
msgstr "తప్పక '%s' కలిగివుండాలి"
|
5943
6406
|
|
6407
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5944
6408
|
msgid "must contain at least %s character"
|
5945
|
-
msgstr ""
|
6409
|
+
msgstr "కనీసం %s అక్షరం కలిగివుండాలి"
|
5946
6410
|
|
5947
6411
|
msgid "must contain valid Public GPG Key"
|
5948
6412
|
msgstr ""
|
@@ -5950,8 +6414,9 @@ msgstr ""
|
|
5950
6414
|
msgid "must contain valid Public GPG Key"
|
5951
6415
|
msgstr ""
|
5952
6416
|
|
6417
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5953
6418
|
msgid "must not contain leading or trailing white spaces."
|
5954
|
-
msgstr ""
|
6419
|
+
msgstr "లీడింగ్ లేదా ట్రైలింగ్ వైట్ స్పేసులను కలిగివుండ కూడదు."
|
5955
6420
|
|
5956
6421
|
msgid "name"
|
5957
6422
|
msgstr ""
|
@@ -5980,8 +6445,9 @@ msgstr ""
|
|
5980
6445
|
msgid "name of the subscription"
|
5981
6446
|
msgstr ""
|
5982
6447
|
|
6448
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
5983
6449
|
msgid "name: %s doesn't exist "
|
5984
|
-
msgstr ""
|
6450
|
+
msgstr "పేరు: %s లేదు"
|
5985
6451
|
|
5986
6452
|
msgid "new name for the filter"
|
5987
6453
|
msgstr ""
|
@@ -5998,8 +6464,9 @@ msgstr ""
|
|
5998
6464
|
msgid "obtain manifest history for subscriptions"
|
5999
6465
|
msgstr ""
|
6000
6466
|
|
6467
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6001
6468
|
msgid "of environment must be unique within one organization"
|
6002
|
-
msgstr ""
|
6469
|
+
msgstr "ఒక సంస్థ లోపల యెన్విరాన్మెంట్ తప్పక విశిష్టంగా వుండాలి"
|
6003
6470
|
|
6004
6471
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
6005
6472
|
msgstr ""
|
@@ -6073,17 +6540,21 @@ msgstr ""
|
|
6073
6540
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6074
6541
|
msgstr ""
|
6075
6542
|
|
6543
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
6076
6544
|
msgid "removing package group..."
|
6077
|
-
msgstr ""
|
6545
|
+
msgstr "ప్యాకేజీ సమూహం తీసివేస్తోంది..."
|
6078
6546
|
|
6547
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
6079
6548
|
msgid "removing package groups..."
|
6080
|
-
msgstr ""
|
6549
|
+
msgstr "ప్యాకేజీ సమూహాలను తీసివేస్తోంది..."
|
6081
6550
|
|
6551
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
6082
6552
|
msgid "removing package..."
|
6083
|
-
msgstr ""
|
6553
|
+
msgstr "ప్యాకేజీ తీసివేస్తోంది..."
|
6084
6554
|
|
6555
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
6085
6556
|
msgid "removing packages..."
|
6086
|
-
msgstr ""
|
6557
|
+
msgstr "ప్యాకేజీలను తీసివేస్తోంది..."
|
6087
6558
|
|
6088
6559
|
msgid "repo label"
|
6089
6560
|
msgstr ""
|
@@ -6163,8 +6634,9 @@ msgstr ""
|
|
6163
6634
|
msgid "temporarily override feed URL for sync"
|
6164
6635
|
msgstr ""
|
6165
6636
|
|
6637
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
6166
6638
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6167
|
-
msgstr ""
|
6639
|
+
msgstr "Red Hat సమర్పకులు: [ %s ] కొరకు కింది యాట్రిబ్యూట్స్ నవీకరించబడలేవు"
|
6168
6640
|
|
6169
6641
|
msgid "true if the latest version of the component's content view is desired"
|
6170
6642
|
msgstr ""
|
@@ -6193,17 +6665,21 @@ msgstr ""
|
|
6193
6665
|
msgid "update a filter"
|
6194
6666
|
msgstr ""
|
6195
6667
|
|
6668
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
6196
6669
|
msgid "updating package group..."
|
6197
|
-
msgstr ""
|
6670
|
+
msgstr "ప్యాకేజీ సమూహం నవీకరించుతోంది..."
|
6198
6671
|
|
6672
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
6199
6673
|
msgid "updating package groups..."
|
6200
|
-
msgstr ""
|
6674
|
+
msgstr "ప్యాకేజీ సమూహాలను నవీకరించుతోంది..."
|
6201
6675
|
|
6676
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
6202
6677
|
msgid "updating package..."
|
6203
|
-
msgstr ""
|
6678
|
+
msgstr "ప్యాకేజీ నవీకరించుతోంది..."
|
6204
6679
|
|
6680
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author kkrothap
|
6205
6681
|
msgid "updating packages..."
|
6206
|
-
msgstr ""
|
6682
|
+
msgstr "ప్యాకేజీలను నవీకరించుతోంది..."
|
6207
6683
|
|
6208
6684
|
msgid "url not defined."
|
6209
6685
|
msgstr ""
|