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/hi/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
|
+
# rajesh <rajesh@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: Hindi (https://www.transifex.com/foreman/teams/114/hi/)\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:14-0400\n"
|
16
|
+
"Last-Translator: rajesh <rajesh@fedoraproject.org>\n"
|
17
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
19
18
|
"Language: hi\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 rajesh
|
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 CFSE, version sam-1.2, document app, author rajesh
|
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 rajesh
|
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 rajesh
|
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 इरेटा संस्थापित"
|
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, author rajesh
|
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 CFSE, version sam-1.2, document app, author rajesh
|
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 CFSE, version sam-1.2, document app, author rajesh
|
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 rajesh
|
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 rajesh
|
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, author rajesh
|
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, author rajesh
|
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 rajesh
|
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 rajesh
|
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, author rajesh
|
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, author rajesh
|
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, author rajesh
|
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, author rajesh
|
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 rajesh
|
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, author rajesh
|
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 rajesh
|
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, author rajesh
|
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
|
|
@@ -954,8 +1087,9 @@ msgstr ""
|
|
954
1087
|
msgid "Container image tag"
|
955
1088
|
msgstr ""
|
956
1089
|
|
1090
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys, author rajesh
|
957
1091
|
msgid "Content"
|
958
|
-
msgstr ""
|
1092
|
+
msgstr "सामग्री"
|
959
1093
|
|
960
1094
|
msgid "Content Credential ID"
|
961
1095
|
msgstr ""
|
@@ -972,8 +1106,9 @@ msgstr ""
|
|
972
1106
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
973
1107
|
msgstr ""
|
974
1108
|
|
1109
|
+
#, fuzzy
|
975
1110
|
msgid "Content Hosts"
|
976
|
-
msgstr ""
|
1111
|
+
msgstr "सामग्री"
|
977
1112
|
|
978
1113
|
msgid "Content Source"
|
979
1114
|
msgstr ""
|
@@ -984,8 +1119,9 @@ msgstr ""
|
|
984
1119
|
msgid "Content Types"
|
985
1120
|
msgstr ""
|
986
1121
|
|
1122
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
987
1123
|
msgid "Content View"
|
988
|
-
msgstr ""
|
1124
|
+
msgstr "विषयवस्तु दृश्य"
|
989
1125
|
|
990
1126
|
msgid "Content View %{view}: Versions: %{versions}"
|
991
1127
|
msgstr ""
|
@@ -999,8 +1135,10 @@ msgstr ""
|
|
999
1135
|
msgid "Content View Details"
|
1000
1136
|
msgstr ""
|
1001
1137
|
|
1138
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1139
|
+
#, fuzzy
|
1002
1140
|
msgid "Content View Filter id"
|
1003
|
-
msgstr ""
|
1141
|
+
msgstr "सामग्री दृश्य सार"
|
1004
1142
|
|
1005
1143
|
msgid "Content View Filter identifier"
|
1006
1144
|
msgstr ""
|
@@ -1029,8 +1167,9 @@ msgstr ""
|
|
1029
1167
|
msgid "Content View id"
|
1030
1168
|
msgstr ""
|
1031
1169
|
|
1170
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1032
1171
|
msgid "Content Views"
|
1033
|
-
msgstr ""
|
1172
|
+
msgstr "सामग्री दृश्य"
|
1034
1173
|
|
1035
1174
|
msgid "Content files to upload. Can be a single file or array of files."
|
1036
1175
|
msgstr ""
|
@@ -1050,14 +1189,21 @@ msgstr ""
|
|
1050
1189
|
msgid "Content type"
|
1051
1190
|
msgstr ""
|
1052
1191
|
|
1192
|
+
msgid "Content type %{content_type_string} does not belong to an enabled repo type."
|
1193
|
+
msgstr ""
|
1194
|
+
|
1195
|
+
msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
|
1196
|
+
msgstr ""
|
1197
|
+
|
1053
1198
|
msgid "Content view"
|
1054
1199
|
msgstr ""
|
1055
1200
|
|
1056
1201
|
msgid "Content view ${name} created"
|
1057
1202
|
msgstr ""
|
1058
1203
|
|
1204
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1059
1205
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1060
|
-
msgstr ""
|
1206
|
+
msgstr "कंटेंट दृश्य '%{view}' पहले से वातावरण '%{env}' में नहीं है"
|
1061
1207
|
|
1062
1208
|
msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
|
1063
1209
|
msgstr ""
|
@@ -1104,17 +1250,23 @@ msgstr ""
|
|
1104
1250
|
msgid "Contract Number"
|
1105
1251
|
msgstr ""
|
1106
1252
|
|
1107
|
-
msgid "Copy
|
1253
|
+
msgid "Copy"
|
1108
1254
|
msgstr ""
|
1109
1255
|
|
1256
|
+
#, fuzzy
|
1257
|
+
msgid "Copy an activation key"
|
1258
|
+
msgstr "सक्रियकरण कुंजी"
|
1259
|
+
|
1110
1260
|
msgid "Copy version units to library"
|
1111
1261
|
msgstr ""
|
1112
1262
|
|
1263
|
+
#, fuzzy
|
1113
1264
|
msgid "Cores: %s"
|
1114
|
-
msgstr ""
|
1265
|
+
msgstr "कारण: %s"
|
1115
1266
|
|
1267
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1116
1268
|
msgid "Could not delete organization '%s'."
|
1117
|
-
msgstr ""
|
1269
|
+
msgstr "'%s' संगठन मिटा नहीं सका."
|
1118
1270
|
|
1119
1271
|
msgid "Could not find %{content} with id '%{id}' in repository."
|
1120
1272
|
msgstr ""
|
@@ -1155,14 +1307,16 @@ msgstr ""
|
|
1155
1307
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1156
1308
|
msgstr ""
|
1157
1309
|
|
1310
|
+
#, fuzzy
|
1158
1311
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1159
|
-
msgstr ""
|
1312
|
+
msgstr "आईडी '%s' के साथ उत्पाद नहीं ढूँढ़ सका"
|
1160
1313
|
|
1161
1314
|
msgid "Couldn't find Organization '%s'."
|
1162
1315
|
msgstr ""
|
1163
1316
|
|
1317
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1164
1318
|
msgid "Couldn't find activation key '%s'"
|
1165
|
-
msgstr ""
|
1319
|
+
msgstr "सक्रियकरण कुँजी '%s' नहीं ढूँढ़ सका"
|
1166
1320
|
|
1167
1321
|
msgid "Couldn't find activation key content view id '%s'"
|
1168
1322
|
msgstr ""
|
@@ -1170,8 +1324,9 @@ msgstr ""
|
|
1170
1324
|
msgid "Couldn't find activation key environment '%s'"
|
1171
1325
|
msgstr ""
|
1172
1326
|
|
1327
|
+
#, fuzzy
|
1173
1328
|
msgid "Couldn't find consumer '%s'"
|
1174
|
-
msgstr ""
|
1329
|
+
msgstr "उपयोक्ता '%s' नहीं ढूँढ़ सका"
|
1175
1330
|
|
1176
1331
|
msgid "Couldn't find content host content view id '%s'"
|
1177
1332
|
msgstr ""
|
@@ -1179,20 +1334,28 @@ msgstr ""
|
|
1179
1334
|
msgid "Couldn't find content host environment '%s'"
|
1180
1335
|
msgstr ""
|
1181
1336
|
|
1337
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1182
1338
|
msgid "Couldn't find content view '%s'"
|
1183
|
-
msgstr ""
|
1339
|
+
msgstr "कंटेंट दृश्य '%s' को नहीं ढूँढ़ सका"
|
1184
1340
|
|
1341
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1342
|
+
#, fuzzy
|
1185
1343
|
msgid "Couldn't find content view version '%s'"
|
1186
|
-
msgstr ""
|
1344
|
+
msgstr "कंटेंट दृश्य '%s' को नहीं ढूँढ़ सका"
|
1187
1345
|
|
1346
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1347
|
+
#, fuzzy
|
1188
1348
|
msgid "Couldn't find content view versions '%s'"
|
1189
|
-
msgstr ""
|
1349
|
+
msgstr "कंटेंट दृश्य '%s' को नहीं ढूँढ़ सका"
|
1190
1350
|
|
1351
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1191
1352
|
msgid "Couldn't find environment '%s'"
|
1192
|
-
msgstr ""
|
1353
|
+
msgstr "वातावऱण '%s' नहीं मिल सका"
|
1193
1354
|
|
1355
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1356
|
+
#, fuzzy
|
1194
1357
|
msgid "Couldn't find errata ids '%s'"
|
1195
|
-
msgstr ""
|
1358
|
+
msgstr "संगठन '%s' नहीं ढूँढ़ सका"
|
1196
1359
|
|
1197
1360
|
msgid "Couldn't find host collection '%s'"
|
1198
1361
|
msgstr ""
|
@@ -1200,29 +1363,35 @@ msgstr ""
|
|
1200
1363
|
msgid "Couldn't find host with host id '%s'"
|
1201
1364
|
msgstr ""
|
1202
1365
|
|
1366
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1203
1367
|
msgid "Couldn't find organization '%s'"
|
1204
|
-
msgstr ""
|
1368
|
+
msgstr "संगठन '%s' नहीं ढूँढ़ सका"
|
1205
1369
|
|
1370
|
+
#, fuzzy
|
1206
1371
|
msgid "Couldn't find prior-environment '%s'"
|
1207
|
-
msgstr ""
|
1372
|
+
msgstr "वातावऱण '%s' नहीं मिल सका"
|
1208
1373
|
|
1374
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1209
1375
|
msgid "Couldn't find product with id '%s'"
|
1210
|
-
msgstr ""
|
1376
|
+
msgstr "आईडी '%s' के साथ उत्पाद नहीं ढूँढ़ सका"
|
1211
1377
|
|
1378
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1212
1379
|
msgid "Couldn't find repository '%s'"
|
1213
|
-
msgstr ""
|
1380
|
+
msgstr "'%s' रिपोजिटरी नहीं ढूँढ़ सका"
|
1214
1381
|
|
1215
1382
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1216
1383
|
msgstr ""
|
1217
1384
|
|
1385
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1218
1386
|
msgid "Couldn't find subject of synchronization"
|
1219
|
-
msgstr ""
|
1387
|
+
msgstr "तुल्यकालन का विषय नहीं मिल सका"
|
1220
1388
|
|
1221
1389
|
msgid "Count"
|
1222
1390
|
msgstr ""
|
1223
1391
|
|
1392
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1224
1393
|
msgid "Create"
|
1225
|
-
msgstr ""
|
1394
|
+
msgstr "बनाएँ"
|
1226
1395
|
|
1227
1396
|
msgid "Create Export History"
|
1228
1397
|
msgstr ""
|
@@ -1272,6 +1441,12 @@ msgstr ""
|
|
1272
1441
|
msgid "Create an upload request"
|
1273
1442
|
msgstr ""
|
1274
1443
|
|
1444
|
+
msgid "Create content view"
|
1445
|
+
msgstr ""
|
1446
|
+
|
1447
|
+
msgid "Create filter"
|
1448
|
+
msgstr ""
|
1449
|
+
|
1275
1450
|
msgid "Create organization"
|
1276
1451
|
msgstr ""
|
1277
1452
|
|
@@ -1290,14 +1465,16 @@ msgstr ""
|
|
1290
1465
|
msgid "Current organization not set."
|
1291
1466
|
msgstr ""
|
1292
1467
|
|
1468
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1293
1469
|
msgid "Custom Content Repositories"
|
1294
|
-
msgstr ""
|
1470
|
+
msgstr "पसंदीदा अंतर्वस्तु रिपोजिटरी"
|
1295
1471
|
|
1296
1472
|
msgid "Custom cron expression only needs to be set for interval value of custom cron"
|
1297
1473
|
msgstr ""
|
1298
1474
|
|
1475
|
+
#, fuzzy
|
1299
1476
|
msgid "Custom repositories cannot be disabled."
|
1300
|
-
msgstr ""
|
1477
|
+
msgstr "अज्ञात रिपोजिटरी स्तर: %s"
|
1301
1478
|
|
1302
1479
|
msgid "Database connection"
|
1303
1480
|
msgstr ""
|
@@ -1305,8 +1482,9 @@ msgstr ""
|
|
1305
1482
|
msgid "Date"
|
1306
1483
|
msgstr ""
|
1307
1484
|
|
1485
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1308
1486
|
msgid "Date format is incorrect."
|
1309
|
-
msgstr ""
|
1487
|
+
msgstr "तिथि प्रारूप गलत है."
|
1310
1488
|
|
1311
1489
|
msgid "Days Remaining"
|
1312
1490
|
msgstr ""
|
@@ -1320,8 +1498,9 @@ msgstr ""
|
|
1320
1498
|
msgid "Deb Packages"
|
1321
1499
|
msgstr ""
|
1322
1500
|
|
1501
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1323
1502
|
msgid "Debug Certificate"
|
1324
|
-
msgstr ""
|
1503
|
+
msgstr "प्रमाणपत्र डिबग करें"
|
1325
1504
|
|
1326
1505
|
msgid "Debug RPM"
|
1327
1506
|
msgstr ""
|
@@ -1356,8 +1535,9 @@ msgstr ""
|
|
1356
1535
|
msgid "Default Smart Proxy download policy"
|
1357
1536
|
msgstr ""
|
1358
1537
|
|
1538
|
+
#, fuzzy
|
1359
1539
|
msgid "Default System SLA"
|
1360
|
-
msgstr ""
|
1540
|
+
msgstr "तंत्र समूह का विलोपन"
|
1361
1541
|
|
1362
1542
|
msgid "Default content view versions cannot be promoted"
|
1363
1543
|
msgstr ""
|
@@ -1422,6 +1602,7 @@ msgstr ""
|
|
1422
1602
|
msgid "Default user data for new Operating Systems created from synced content"
|
1423
1603
|
msgstr ""
|
1424
1604
|
|
1605
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
1425
1606
|
msgid "Delete"
|
1426
1607
|
msgstr "मिटाएँ"
|
1427
1608
|
|
@@ -1431,11 +1612,13 @@ msgstr ""
|
|
1431
1612
|
msgid "Delete Host upon unregister"
|
1432
1613
|
msgstr ""
|
1433
1614
|
|
1615
|
+
#, fuzzy
|
1434
1616
|
msgid "Delete Lifecycle Environment"
|
1435
|
-
msgstr ""
|
1617
|
+
msgstr "वातावरण द्वारा"
|
1436
1618
|
|
1619
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1437
1620
|
msgid "Delete Manifest"
|
1438
|
-
msgstr ""
|
1621
|
+
msgstr "मेनिफेस्ट मिटाएँ"
|
1439
1622
|
|
1440
1623
|
msgid "Delete Package Group"
|
1441
1624
|
msgstr ""
|
@@ -1470,9 +1653,13 @@ msgstr ""
|
|
1470
1653
|
msgid "Delete manifest from Red Hat provider"
|
1471
1654
|
msgstr ""
|
1472
1655
|
|
1473
|
-
msgid "
|
1656
|
+
msgid "Delete multiple filters from a content view"
|
1474
1657
|
msgstr ""
|
1475
1658
|
|
1659
|
+
#, fuzzy
|
1660
|
+
msgid "Deleted consumer '%s'"
|
1661
|
+
msgstr "उपयोक्ता '%s' मिटाया"
|
1662
|
+
|
1476
1663
|
msgid "Deleted from %{environment}"
|
1477
1664
|
msgstr ""
|
1478
1665
|
|
@@ -1480,7 +1667,7 @@ msgid "Deleting manifest in '%{subject}' failed."
|
|
1480
1667
|
msgstr ""
|
1481
1668
|
|
1482
1669
|
msgid "Description"
|
1483
|
-
msgstr "
|
1670
|
+
msgstr ""
|
1484
1671
|
|
1485
1672
|
msgid "Description for the content view"
|
1486
1673
|
msgstr ""
|
@@ -1501,7 +1688,7 @@ msgid "Destination Server name"
|
|
1501
1688
|
msgstr ""
|
1502
1689
|
|
1503
1690
|
msgid "Destroy"
|
1504
|
-
msgstr "
|
1691
|
+
msgstr ""
|
1505
1692
|
|
1506
1693
|
msgid "Destroy Content Host"
|
1507
1694
|
msgstr ""
|
@@ -1543,7 +1730,10 @@ msgid "Destroy one or more repositories"
|
|
1543
1730
|
msgstr ""
|
1544
1731
|
|
1545
1732
|
msgid "Details"
|
1546
|
-
msgstr "
|
1733
|
+
msgstr ""
|
1734
|
+
|
1735
|
+
msgid "Determining settings for ${name}"
|
1736
|
+
msgstr ""
|
1547
1737
|
|
1548
1738
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1549
1739
|
msgstr ""
|
@@ -1599,14 +1789,15 @@ msgstr ""
|
|
1599
1789
|
msgid "Duplicate branches specified - %{branches}"
|
1600
1790
|
msgstr ""
|
1601
1791
|
|
1792
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1602
1793
|
msgid "Duration"
|
1603
|
-
msgstr ""
|
1794
|
+
msgstr "अवधि"
|
1604
1795
|
|
1605
1796
|
msgid "ERRATA ADVISORY"
|
1606
1797
|
msgstr ""
|
1607
1798
|
|
1608
1799
|
msgid "Edit"
|
1609
|
-
msgstr "
|
1800
|
+
msgstr ""
|
1610
1801
|
|
1611
1802
|
msgid "Editing Entitlements"
|
1612
1803
|
msgstr ""
|
@@ -1614,11 +1805,13 @@ msgstr ""
|
|
1614
1805
|
msgid "Either both parameters 'content_view_id' and 'environment_id' should be specified or neither should be specified"
|
1615
1806
|
msgstr ""
|
1616
1807
|
|
1808
|
+
#, fuzzy
|
1617
1809
|
msgid "Either environments or versions must be specified."
|
1618
|
-
msgstr ""
|
1810
|
+
msgstr "संगठन आईडी या वातावरण आईडी में से किसी को निर्दिष्ट किया जाना चाहिए"
|
1619
1811
|
|
1812
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1620
1813
|
msgid "Either organization ID or environment ID needs to be specified"
|
1621
|
-
msgstr ""
|
1814
|
+
msgstr "संगठन आईडी या वातावरण आईडी में से किसी को निर्दिष्ट किया जाना चाहिए"
|
1622
1815
|
|
1623
1816
|
msgid "Either packages or groups must be provided"
|
1624
1817
|
msgstr ""
|
@@ -1645,7 +1838,7 @@ msgid "Enable/Disable auto publish of composite view"
|
|
1645
1838
|
msgstr ""
|
1646
1839
|
|
1647
1840
|
msgid "Enabled"
|
1648
|
-
msgstr "
|
1841
|
+
msgstr ""
|
1649
1842
|
|
1650
1843
|
msgid "Enabled Repositories"
|
1651
1844
|
msgstr ""
|
@@ -1659,44 +1852,54 @@ msgstr ""
|
|
1659
1852
|
msgid "Ends"
|
1660
1853
|
msgstr ""
|
1661
1854
|
|
1855
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1662
1856
|
msgid "Enhancement"
|
1663
|
-
msgstr ""
|
1857
|
+
msgstr "संवर्द्धन"
|
1664
1858
|
|
1665
1859
|
msgid "Entitlements"
|
1666
1860
|
msgstr ""
|
1667
1861
|
|
1862
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
1668
1863
|
msgid "Environment"
|
1669
1864
|
msgstr "वातावरण"
|
1670
1865
|
|
1671
1866
|
msgid "Environment IDs"
|
1672
1867
|
msgstr ""
|
1673
1868
|
|
1869
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1674
1870
|
msgid "Environment cannot be in its own promotion path"
|
1675
|
-
msgstr ""
|
1871
|
+
msgstr "वातावरण को अपनी पदोन्नति के रास्ते में नहीं हो सकता है"
|
1676
1872
|
|
1677
1873
|
msgid "Environment identifier"
|
1678
1874
|
msgstr ""
|
1679
1875
|
|
1680
1876
|
msgid "Environments"
|
1681
|
-
msgstr "
|
1877
|
+
msgstr ""
|
1682
1878
|
|
1879
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1683
1880
|
msgid "Errata"
|
1684
|
-
msgstr ""
|
1881
|
+
msgstr "इरेटा"
|
1685
1882
|
|
1883
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1884
|
+
#, fuzzy
|
1686
1885
|
msgid "Errata ID"
|
1687
|
-
msgstr ""
|
1886
|
+
msgstr "इरेटा"
|
1688
1887
|
|
1888
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1689
1889
|
msgid "Errata Install"
|
1690
|
-
msgstr ""
|
1890
|
+
msgstr "इरेटा संस्थापन"
|
1691
1891
|
|
1892
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1692
1893
|
msgid "Errata Install scheduled by %s"
|
1693
|
-
msgstr ""
|
1894
|
+
msgstr "इरेटा संस्थापन %s के द्वारा नियत"
|
1694
1895
|
|
1695
1896
|
msgid "Errata id of the erratum (RHSA-2012:108)"
|
1696
1897
|
msgstr ""
|
1697
1898
|
|
1899
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1900
|
+
#, fuzzy
|
1698
1901
|
msgid "Errata mail"
|
1699
|
-
msgstr ""
|
1902
|
+
msgstr "इरेटा संस्थापन"
|
1700
1903
|
|
1701
1904
|
msgid "Errata to exclusively include in the action"
|
1702
1905
|
msgstr ""
|
@@ -1704,21 +1907,28 @@ msgstr ""
|
|
1704
1907
|
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
1908
|
msgstr ""
|
1706
1909
|
|
1910
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1911
|
+
#, fuzzy
|
1707
1912
|
msgid "Erratum"
|
1708
|
-
msgstr ""
|
1913
|
+
msgstr "इरेटा"
|
1709
1914
|
|
1915
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1710
1916
|
msgid "Erratum Install Canceled"
|
1711
|
-
msgstr ""
|
1917
|
+
msgstr "इरेटा संस्थापन रद्द"
|
1712
1918
|
|
1919
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1713
1920
|
msgid "Erratum Install Complete"
|
1714
|
-
msgstr ""
|
1921
|
+
msgstr "इरेटा संस्थापन पूर्ण"
|
1715
1922
|
|
1923
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1716
1924
|
msgid "Erratum Install Failed"
|
1717
|
-
msgstr ""
|
1925
|
+
msgstr "इरेटा संस्थापन विफल"
|
1718
1926
|
|
1927
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1719
1928
|
msgid "Erratum Install Timed Out"
|
1720
|
-
msgstr ""
|
1929
|
+
msgstr "इरेटा संस्थापन का समय समाप्त"
|
1721
1930
|
|
1931
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
1722
1932
|
msgid "Error"
|
1723
1933
|
msgstr "त्रुटि"
|
1724
1934
|
|
@@ -1746,8 +1956,9 @@ msgstr ""
|
|
1746
1956
|
msgid "Exit"
|
1747
1957
|
msgstr ""
|
1748
1958
|
|
1959
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
1749
1960
|
msgid "Expand All"
|
1750
|
-
msgstr ""
|
1961
|
+
msgstr "सभी फैलाएँ"
|
1751
1962
|
|
1752
1963
|
msgid "Expire soon days"
|
1753
1964
|
msgstr ""
|
@@ -1764,24 +1975,20 @@ msgstr ""
|
|
1764
1975
|
msgid "Export Types"
|
1765
1976
|
msgstr ""
|
1766
1977
|
|
1767
|
-
msgid "Export a repository"
|
1768
|
-
msgstr ""
|
1769
|
-
|
1770
1978
|
msgid "Export as CSV"
|
1771
1979
|
msgstr ""
|
1772
1980
|
|
1773
1981
|
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1774
1982
|
msgstr ""
|
1775
1983
|
|
1776
|
-
msgid "Export to ISO format"
|
1777
|
-
msgstr ""
|
1778
|
-
|
1779
1984
|
msgid "Exported version"
|
1780
1985
|
msgstr ""
|
1781
1986
|
|
1987
|
+
#, fuzzy
|
1782
1988
|
msgid "Facts successfully updated."
|
1783
|
-
msgstr ""
|
1989
|
+
msgstr "सफलतापूर्वक बनाया गया."
|
1784
1990
|
|
1991
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
1785
1992
|
msgid "Failed"
|
1786
1993
|
msgstr "विफल"
|
1787
1994
|
|
@@ -1841,6 +2048,9 @@ msgstr ""
|
|
1841
2048
|
msgid "Filter composite versions whose publish was triggered by the specified component version"
|
1842
2049
|
msgstr ""
|
1843
2050
|
|
2051
|
+
msgid "Filter created"
|
2052
|
+
msgstr ""
|
2053
|
+
|
1844
2054
|
msgid "Filter only composite content views"
|
1845
2055
|
msgstr ""
|
1846
2056
|
|
@@ -1865,6 +2075,9 @@ msgstr ""
|
|
1865
2075
|
msgid "Filter products by sync plan id"
|
1866
2076
|
msgstr ""
|
1867
2077
|
|
2078
|
+
msgid "Filter successfully deleted"
|
2079
|
+
msgstr ""
|
2080
|
+
|
1868
2081
|
msgid "Filter versions by environment"
|
1869
2082
|
msgstr ""
|
1870
2083
|
|
@@ -1878,7 +2091,10 @@ msgid "Filtered index content"
|
|
1878
2091
|
msgstr ""
|
1879
2092
|
|
1880
2093
|
msgid "Filters"
|
1881
|
-
msgstr "
|
2094
|
+
msgstr ""
|
2095
|
+
|
2096
|
+
msgid "Filters successfully deleted"
|
2097
|
+
msgstr ""
|
1882
2098
|
|
1883
2099
|
msgid "Finish action timeout"
|
1884
2100
|
msgstr ""
|
@@ -1921,8 +2137,9 @@ msgstr ""
|
|
1921
2137
|
msgid "GPG Key URL"
|
1922
2138
|
msgstr ""
|
1923
2139
|
|
2140
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1924
2141
|
msgid "Generate and Download"
|
1925
|
-
msgstr ""
|
2142
|
+
msgstr "उत्पन्न करें और डाउनलोड़ करें"
|
1926
2143
|
|
1927
2144
|
msgid "Generate host applicability"
|
1928
2145
|
msgstr ""
|
@@ -1976,11 +2193,12 @@ msgid "Has to be > 0"
|
|
1976
2193
|
msgstr ""
|
1977
2194
|
|
1978
2195
|
msgid "History"
|
1979
|
-
msgstr "
|
2196
|
+
msgstr ""
|
1980
2197
|
|
1981
2198
|
msgid "History will appear here when the content view is published or promoted."
|
1982
2199
|
msgstr ""
|
1983
2200
|
|
2201
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
1984
2202
|
msgid "Host"
|
1985
2203
|
msgstr "मेजबान"
|
1986
2204
|
|
@@ -1993,6 +2211,9 @@ msgstr ""
|
|
1993
2211
|
msgid "Host '%{name}' does not belong to an organization"
|
1994
2212
|
msgstr ""
|
1995
2213
|
|
2214
|
+
msgid "Host Can Re-Register Only In Build"
|
2215
|
+
msgstr ""
|
2216
|
+
|
1996
2217
|
msgid "Host Collection name"
|
1997
2218
|
msgstr ""
|
1998
2219
|
|
@@ -2011,6 +2232,9 @@ msgstr ""
|
|
2011
2232
|
msgid "Host Profile Assume"
|
2012
2233
|
msgstr ""
|
2013
2234
|
|
2235
|
+
msgid "Host Profile Can Change In Build"
|
2236
|
+
msgstr ""
|
2237
|
+
|
2014
2238
|
msgid "Host Subscription Status"
|
2015
2239
|
msgstr ""
|
2016
2240
|
|
@@ -2053,7 +2277,7 @@ msgstr ""
|
|
2053
2277
|
msgid "Host id to list applicable packages for"
|
2054
2278
|
msgstr ""
|
2055
2279
|
|
2056
|
-
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this
|
2280
|
+
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
2281
|
msgstr ""
|
2058
2282
|
|
2059
2283
|
msgid "Host with ID %s already exists in the host collection."
|
@@ -2140,11 +2364,9 @@ msgstr ""
|
|
2140
2364
|
msgid "ID of the sync plan"
|
2141
2365
|
msgstr ""
|
2142
2366
|
|
2367
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
2143
2368
|
msgid "ID: %s doesn't exist "
|
2144
|
-
msgstr ""
|
2145
|
-
|
2146
|
-
msgid "ISO export must be enabled when specifying ISO size"
|
2147
|
-
msgstr ""
|
2369
|
+
msgstr "ID: %s मौजूद नहीं है"
|
2148
2370
|
|
2149
2371
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2150
2372
|
msgstr ""
|
@@ -2267,7 +2489,7 @@ msgid "Immediate"
|
|
2267
2489
|
msgstr ""
|
2268
2490
|
|
2269
2491
|
msgid "Import"
|
2270
|
-
msgstr "
|
2492
|
+
msgstr ""
|
2271
2493
|
|
2272
2494
|
msgid "Import Content View Version"
|
2273
2495
|
msgstr ""
|
@@ -2275,8 +2497,9 @@ msgstr ""
|
|
2275
2497
|
msgid "Import Default Content View"
|
2276
2498
|
msgstr ""
|
2277
2499
|
|
2500
|
+
#, fuzzy
|
2278
2501
|
msgid "Import Manifest"
|
2279
|
-
msgstr ""
|
2502
|
+
msgstr "आयात करें"
|
2280
2503
|
|
2281
2504
|
msgid "Import New Manifest"
|
2282
2505
|
msgstr ""
|
@@ -2308,8 +2531,9 @@ msgstr ""
|
|
2308
2531
|
msgid "Import a content view version to the library"
|
2309
2532
|
msgstr ""
|
2310
2533
|
|
2534
|
+
#, fuzzy
|
2311
2535
|
msgid "Import facts"
|
2312
|
-
msgstr ""
|
2536
|
+
msgstr "आयात करें"
|
2313
2537
|
|
2314
2538
|
msgid "Import uploads into a repository"
|
2315
2539
|
msgstr ""
|
@@ -2326,6 +2550,9 @@ msgstr ""
|
|
2326
2550
|
msgid "In Progress"
|
2327
2551
|
msgstr ""
|
2328
2552
|
|
2553
|
+
msgid "In progress"
|
2554
|
+
msgstr ""
|
2555
|
+
|
2329
2556
|
msgid "Include"
|
2330
2557
|
msgstr ""
|
2331
2558
|
|
@@ -2359,8 +2586,9 @@ msgstr ""
|
|
2359
2586
|
msgid "Index content"
|
2360
2587
|
msgstr ""
|
2361
2588
|
|
2589
|
+
#, fuzzy
|
2362
2590
|
msgid "Index errata"
|
2363
|
-
msgstr ""
|
2591
|
+
msgstr "इरेटा संस्थापित कर रहा है..."
|
2364
2592
|
|
2365
2593
|
msgid "Index module streams"
|
2366
2594
|
msgstr ""
|
@@ -2389,20 +2617,23 @@ msgstr ""
|
|
2389
2617
|
msgid "Install errata via Katello interface"
|
2390
2618
|
msgstr ""
|
2391
2619
|
|
2620
|
+
#, fuzzy
|
2392
2621
|
msgid "Install erratum"
|
2393
|
-
msgstr ""
|
2622
|
+
msgstr "इरेटा संस्थापित कर रहा है..."
|
2394
2623
|
|
2395
2624
|
msgid "Install erratum for %s"
|
2396
2625
|
msgstr ""
|
2397
2626
|
|
2627
|
+
#, fuzzy
|
2398
2628
|
msgid "Install package"
|
2399
|
-
msgstr ""
|
2629
|
+
msgstr "संकुल संस्थापित कर रहा है..."
|
2400
2630
|
|
2401
2631
|
msgid "Install package for %s"
|
2402
2632
|
msgstr ""
|
2403
2633
|
|
2634
|
+
#, fuzzy
|
2404
2635
|
msgid "Install package group"
|
2405
|
-
msgstr ""
|
2636
|
+
msgstr "संकुल समूह संस्थापित कर रहा है..."
|
2406
2637
|
|
2407
2638
|
msgid "Install package group via Katello interface"
|
2408
2639
|
msgstr ""
|
@@ -2425,17 +2656,21 @@ msgstr ""
|
|
2425
2656
|
msgid "Installation of package(s) requested: %{packages}"
|
2426
2657
|
msgstr ""
|
2427
2658
|
|
2659
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
2428
2660
|
msgid "Installed Packages"
|
2429
|
-
msgstr ""
|
2661
|
+
msgstr "संस्थापित संकुल"
|
2430
2662
|
|
2663
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2431
2664
|
msgid "Installing Erratum..."
|
2432
|
-
msgstr ""
|
2665
|
+
msgstr "इरेटा संस्थापित कर रहा है..."
|
2433
2666
|
|
2667
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2434
2668
|
msgid "Installing Package Group..."
|
2435
|
-
msgstr ""
|
2669
|
+
msgstr "संकुल समूह संस्थापित कर रहा है..."
|
2436
2670
|
|
2671
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2437
2672
|
msgid "Installing Package..."
|
2438
|
-
msgstr ""
|
2673
|
+
msgstr "संकुल संस्थापित कर रहा है..."
|
2439
2674
|
|
2440
2675
|
msgid "Instance update"
|
2441
2676
|
msgstr ""
|
@@ -2461,18 +2696,17 @@ msgstr ""
|
|
2461
2696
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2462
2697
|
msgstr ""
|
2463
2698
|
|
2699
|
+
#, fuzzy
|
2464
2700
|
msgid "Invalid content label: %s"
|
2465
|
-
msgstr ""
|
2701
|
+
msgstr "अमान्य स्थिति"
|
2466
2702
|
|
2703
|
+
#, fuzzy
|
2467
2704
|
msgid "Invalid content type %s"
|
2468
|
-
msgstr ""
|
2705
|
+
msgstr "अमान्य स्थिति"
|
2469
2706
|
|
2470
2707
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2471
2708
|
msgstr ""
|
2472
2709
|
|
2473
|
-
msgid "Invalid date provided."
|
2474
|
-
msgstr ""
|
2475
|
-
|
2476
2710
|
msgid "Invalid date range. The erratum filter rule start date must come before the end date"
|
2477
2711
|
msgstr ""
|
2478
2712
|
|
@@ -2482,8 +2716,9 @@ msgstr ""
|
|
2482
2716
|
msgid "Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'"
|
2483
2717
|
msgstr ""
|
2484
2718
|
|
2719
|
+
#, fuzzy
|
2485
2720
|
msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
|
2486
|
-
msgstr ""
|
2721
|
+
msgstr "अवैध संसाधन प्रकार '%{resource_type}'. संसाधन प्रकार '%{possible_types}' में से एक हो सकता है"
|
2487
2722
|
|
2488
2723
|
msgid "Invalid event_type %s"
|
2489
2724
|
msgstr ""
|
@@ -2491,11 +2726,13 @@ msgstr ""
|
|
2491
2726
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
2492
2727
|
msgstr ""
|
2493
2728
|
|
2729
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
2494
2730
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2495
|
-
msgstr ""
|
2731
|
+
msgstr "इस ऑपरेशन के लिए आग्रह में अवैध पैरामीटर प्रेषित. किसी तंत्र प्रशासक को संपर्क करें."
|
2496
2732
|
|
2733
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
2497
2734
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2498
|
-
msgstr ""
|
2735
|
+
msgstr "अवैध पैरामीटर प्रेषित. आपने पता को गलत टाइप कर दिया है. यदि आपको इससे समस्या है तो आप प्रशासक से संपर्क करें."
|
2499
2736
|
|
2500
2737
|
msgid "Invalid params provided - content_type must be one of %s"
|
2501
2738
|
msgstr ""
|
@@ -2581,8 +2818,9 @@ msgstr ""
|
|
2581
2818
|
msgid "Learn more about adding Subscription Manifests"
|
2582
2819
|
msgstr ""
|
2583
2820
|
|
2821
|
+
#, fuzzy
|
2584
2822
|
msgid "Library lifecycle environments may not be deleted."
|
2585
|
-
msgstr ""
|
2823
|
+
msgstr "वातावरण '%s' मिटाया गया था."
|
2586
2824
|
|
2587
2825
|
msgid "Library repository id to restrict comparisons to"
|
2588
2826
|
msgstr ""
|
@@ -2602,8 +2840,9 @@ msgstr ""
|
|
2602
2840
|
msgid "Lifecycle Environment ID"
|
2603
2841
|
msgstr ""
|
2604
2842
|
|
2843
|
+
#, fuzzy
|
2605
2844
|
msgid "Lifecycle Environments"
|
2606
|
-
msgstr ""
|
2845
|
+
msgstr "वातावरण द्वारा"
|
2607
2846
|
|
2608
2847
|
msgid "Lifecycle environment"
|
2609
2848
|
msgstr ""
|
@@ -2713,7 +2952,7 @@ msgstr ""
|
|
2713
2952
|
msgid "List of Errata ids"
|
2714
2953
|
msgstr ""
|
2715
2954
|
|
2716
|
-
msgid "List of Errata ids to install. Will be removed in
|
2955
|
+
msgid "List of Errata ids to install. Will be removed in %s"
|
2717
2956
|
msgstr ""
|
2718
2957
|
|
2719
2958
|
msgid "List of Products for sync plan"
|
@@ -2722,7 +2961,7 @@ msgstr ""
|
|
2722
2961
|
msgid "List of component content view version ids for composite views"
|
2723
2962
|
msgstr ""
|
2724
2963
|
|
2725
|
-
msgid "List of content (e.g. package names, package group names or errata ids)"
|
2964
|
+
msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
|
2726
2965
|
msgstr ""
|
2727
2966
|
|
2728
2967
|
msgid "List of content (e.g. package or package group names)"
|
@@ -2770,7 +3009,7 @@ msgstr ""
|
|
2770
3009
|
msgid "List of hypervisor guest uuids"
|
2771
3010
|
msgstr ""
|
2772
3011
|
|
2773
|
-
msgid "List of package group names"
|
3012
|
+
msgid "List of package group names (Deprecated)"
|
2774
3013
|
msgstr ""
|
2775
3014
|
|
2776
3015
|
msgid "List of package names"
|
@@ -2855,7 +3094,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
|
|
2855
3094
|
msgstr ""
|
2856
3095
|
|
2857
3096
|
msgid "Loading"
|
2858
|
-
msgstr "
|
3097
|
+
msgstr ""
|
2859
3098
|
|
2860
3099
|
msgid "Make copy of a content view"
|
2861
3100
|
msgstr ""
|
@@ -2929,6 +3168,7 @@ msgstr ""
|
|
2929
3168
|
msgid "Medium IDs"
|
2930
3169
|
msgstr ""
|
2931
3170
|
|
3171
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
2932
3172
|
msgid "Message"
|
2933
3173
|
msgstr "संदेश"
|
2934
3174
|
|
@@ -2941,6 +3181,9 @@ msgstr ""
|
|
2941
3181
|
msgid "Mismatched"
|
2942
3182
|
msgstr ""
|
2943
3183
|
|
3184
|
+
msgid "Missing activation key!"
|
3185
|
+
msgstr ""
|
3186
|
+
|
2944
3187
|
msgid "Missing arguments %{substitutions} for %{content_url}"
|
2945
3188
|
msgstr ""
|
2946
3189
|
|
@@ -3011,11 +3254,15 @@ msgstr ""
|
|
3011
3254
|
msgid "Nest"
|
3012
3255
|
msgstr ""
|
3013
3256
|
|
3257
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3258
|
+
#, fuzzy
|
3014
3259
|
msgid "Never Synced"
|
3015
|
-
msgstr ""
|
3260
|
+
msgstr "कभी चेकइन नहीं"
|
3016
3261
|
|
3262
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3263
|
+
#, fuzzy
|
3017
3264
|
msgid "New Errata"
|
3018
|
-
msgstr ""
|
3265
|
+
msgstr "इरेटा खोजें"
|
3019
3266
|
|
3020
3267
|
msgid "New Files: %s"
|
3021
3268
|
msgstr ""
|
@@ -3029,8 +3276,10 @@ msgstr ""
|
|
3029
3276
|
msgid "New host collection name"
|
3030
3277
|
msgstr ""
|
3031
3278
|
|
3279
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3280
|
+
#, fuzzy
|
3032
3281
|
msgid "New name cannot be blank"
|
3033
|
-
msgstr ""
|
3282
|
+
msgstr "खाली नहीं हो सकता है"
|
3034
3283
|
|
3035
3284
|
msgid "New name for the content view"
|
3036
3285
|
msgstr ""
|
@@ -3041,6 +3290,9 @@ msgstr ""
|
|
3041
3290
|
msgid "New version is available: Version ${latestVersion}"
|
3042
3291
|
msgstr ""
|
3043
3292
|
|
3293
|
+
msgid "Newly published"
|
3294
|
+
msgstr ""
|
3295
|
+
|
3044
3296
|
msgid "No"
|
3045
3297
|
msgstr ""
|
3046
3298
|
|
@@ -3050,8 +3302,9 @@ msgstr ""
|
|
3050
3302
|
msgid "No Activation keys to select"
|
3051
3303
|
msgstr ""
|
3052
3304
|
|
3305
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3053
3306
|
msgid "No Content View"
|
3054
|
-
msgstr ""
|
3307
|
+
msgstr "कोई विषयवस्तु दृश्य नहीं"
|
3055
3308
|
|
3056
3309
|
msgid "No Content found"
|
3057
3310
|
msgstr ""
|
@@ -3065,8 +3318,9 @@ msgstr ""
|
|
3065
3318
|
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
3319
|
msgstr ""
|
3067
3320
|
|
3321
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3068
3322
|
msgid "No Service Level Preference"
|
3069
|
-
msgstr ""
|
3323
|
+
msgstr "कोई सेवा स्तरीय प्रदर्शन नहीं"
|
3070
3324
|
|
3071
3325
|
msgid "No URL found for a container registry. Please check the configuration."
|
3072
3326
|
msgstr ""
|
@@ -3080,8 +3334,9 @@ msgstr ""
|
|
3080
3334
|
msgid "No artifacts to show"
|
3081
3335
|
msgstr ""
|
3082
3336
|
|
3337
|
+
#, fuzzy
|
3083
3338
|
msgid "No content has been provided."
|
3084
|
-
msgstr ""
|
3339
|
+
msgstr "कम-से कम एक सक्रियकरण कुंजी प्रदान किया जाना चाहिए"
|
3085
3340
|
|
3086
3341
|
msgid "No content ids provided"
|
3087
3342
|
msgstr ""
|
@@ -3110,8 +3365,9 @@ msgstr ""
|
|
3110
3365
|
msgid "No errata has been specified."
|
3111
3366
|
msgstr ""
|
3112
3367
|
|
3368
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3113
3369
|
msgid "No errors"
|
3114
|
-
msgstr ""
|
3370
|
+
msgstr "कोई त्रुटि नहीं"
|
3115
3371
|
|
3116
3372
|
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3117
3373
|
msgstr ""
|
@@ -3158,20 +3414,24 @@ msgstr ""
|
|
3158
3414
|
msgid "No matching version found"
|
3159
3415
|
msgstr ""
|
3160
3416
|
|
3417
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3161
3418
|
msgid "No new packages installed"
|
3162
|
-
msgstr ""
|
3419
|
+
msgstr "कोई नया संकुल संस्थापित नहीं किया गया"
|
3163
3420
|
|
3421
|
+
#, fuzzy
|
3164
3422
|
msgid "No new packages."
|
3165
|
-
msgstr ""
|
3423
|
+
msgstr "कोई नया संकुल संस्थापित नहीं किया गया"
|
3166
3424
|
|
3167
3425
|
msgid "No package groups have been added to this filter."
|
3168
3426
|
msgstr ""
|
3169
3427
|
|
3428
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3170
3429
|
msgid "No packages removed"
|
3171
|
-
msgstr ""
|
3430
|
+
msgstr "कोई संकुल नहीं हटाया गया"
|
3172
3431
|
|
3432
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3173
3433
|
msgid "No packages updated"
|
3174
|
-
msgstr ""
|
3434
|
+
msgstr "कोई संकुल अद्यतन नहीं किया गया"
|
3175
3435
|
|
3176
3436
|
msgid "No pool IDs were provided."
|
3177
3437
|
msgstr ""
|
@@ -3218,8 +3478,9 @@ msgstr ""
|
|
3218
3478
|
msgid "No services defined, is this class extended?"
|
3219
3479
|
msgstr ""
|
3220
3480
|
|
3481
|
+
#, fuzzy
|
3221
3482
|
msgid "No start time currently available."
|
3222
|
-
msgstr ""
|
3483
|
+
msgstr "वितरण"
|
3223
3484
|
|
3224
3485
|
msgid "No subscriptions match your search criteria."
|
3225
3486
|
msgstr ""
|
@@ -3236,9 +3497,11 @@ msgstr ""
|
|
3236
3497
|
msgid "Non-security errata installable"
|
3237
3498
|
msgstr ""
|
3238
3499
|
|
3500
|
+
#, fuzzy
|
3239
3501
|
msgid "Non-system event"
|
3240
|
-
msgstr ""
|
3502
|
+
msgstr "सिस्टम"
|
3241
3503
|
|
3504
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
3242
3505
|
msgid "None"
|
3243
3506
|
msgstr "कोई नहीं"
|
3244
3507
|
|
@@ -3299,17 +3562,15 @@ msgstr ""
|
|
3299
3562
|
msgid "On Demand"
|
3300
3563
|
msgstr ""
|
3301
3564
|
|
3302
|
-
msgid "On demand repositories cannot be exported."
|
3303
|
-
msgstr ""
|
3304
|
-
|
3305
3565
|
msgid "On-disk location for exported repositories"
|
3306
3566
|
msgstr ""
|
3307
3567
|
|
3308
3568
|
msgid "On-disk location for pulp 3 exported repositories"
|
3309
3569
|
msgstr ""
|
3310
3570
|
|
3571
|
+
#, fuzzy
|
3311
3572
|
msgid "One of parameters [ %s ] required but not specified."
|
3312
|
-
msgstr ""
|
3573
|
+
msgstr "organization_id जरूरी लेकिन निर्दिष्ट नहीं."
|
3313
3574
|
|
3314
3575
|
msgid "One of yum or docker"
|
3315
3576
|
msgstr ""
|
@@ -3320,14 +3581,16 @@ msgstr ""
|
|
3320
3581
|
msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
|
3321
3582
|
msgstr ""
|
3322
3583
|
|
3584
|
+
#, fuzzy
|
3323
3585
|
msgid "One or more packages failed to sync properly."
|
3324
|
-
msgstr ""
|
3586
|
+
msgstr "एक या अधिक इरेटा जरूर दिया जाना चाहिए."
|
3325
3587
|
|
3326
3588
|
msgid "One or more processes require restarting"
|
3327
3589
|
msgstr ""
|
3328
3590
|
|
3591
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3329
3592
|
msgid "Only one Red Hat provider permitted for an Organization"
|
3330
|
-
msgstr ""
|
3593
|
+
msgstr "किसी संगठन के लिए केवल एक Red Hat प्रदाता को अनुमति है"
|
3331
3594
|
|
3332
3595
|
msgid "Only returns id and quantity fields"
|
3333
3596
|
msgstr ""
|
@@ -3335,9 +3598,7 @@ msgstr ""
|
|
3335
3598
|
msgid "Operators"
|
3336
3599
|
msgstr ""
|
3337
3600
|
|
3338
|
-
|
3339
|
-
msgstr ""
|
3340
|
-
|
3601
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
3341
3602
|
msgid "Organization"
|
3342
3603
|
msgstr "संगठन"
|
3343
3604
|
|
@@ -3353,8 +3614,9 @@ msgstr ""
|
|
3353
3614
|
msgid "Organization Information not provided."
|
3354
3615
|
msgstr ""
|
3355
3616
|
|
3617
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3356
3618
|
msgid "Organization cannot be blank."
|
3357
|
-
msgstr ""
|
3619
|
+
msgstr "संगठन खाली नहीं हो सकता है."
|
3358
3620
|
|
3359
3621
|
msgid "Organization id"
|
3360
3622
|
msgstr ""
|
@@ -3368,11 +3630,13 @@ msgstr ""
|
|
3368
3630
|
msgid "Organization not found"
|
3369
3631
|
msgstr ""
|
3370
3632
|
|
3633
|
+
#, fuzzy
|
3371
3634
|
msgid "Organization required"
|
3372
|
-
msgstr ""
|
3635
|
+
msgstr "संगठन"
|
3373
3636
|
|
3637
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3374
3638
|
msgid "Other"
|
3375
|
-
msgstr ""
|
3639
|
+
msgstr "अन्य"
|
3376
3640
|
|
3377
3641
|
msgid "Override content for activation_key"
|
3378
3642
|
msgstr ""
|
@@ -3395,74 +3659,99 @@ msgstr ""
|
|
3395
3659
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3396
3660
|
msgstr ""
|
3397
3661
|
|
3662
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3663
|
+
#, fuzzy
|
3398
3664
|
msgid "Package"
|
3399
|
-
msgstr ""
|
3665
|
+
msgstr "संकुल"
|
3400
3666
|
|
3667
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3668
|
+
#, fuzzy
|
3401
3669
|
msgid "Package Group"
|
3402
|
-
msgstr ""
|
3670
|
+
msgstr "संकुल समूह"
|
3403
3671
|
|
3672
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3404
3673
|
msgid "Package Group Install"
|
3405
|
-
msgstr ""
|
3674
|
+
msgstr "संकुल समूह संस्थापन"
|
3406
3675
|
|
3676
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3407
3677
|
msgid "Package Group Install Canceled"
|
3408
|
-
msgstr ""
|
3678
|
+
msgstr "संकुल समूह संस्थापन रद्द"
|
3409
3679
|
|
3680
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3410
3681
|
msgid "Package Group Install Complete"
|
3411
|
-
msgstr ""
|
3682
|
+
msgstr "संकुल समूह संस्थापन पूर्ण"
|
3412
3683
|
|
3684
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3413
3685
|
msgid "Package Group Install Failed"
|
3414
|
-
msgstr ""
|
3686
|
+
msgstr "संकुल समूह संस्थापन विफल"
|
3415
3687
|
|
3688
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3416
3689
|
msgid "Package Group Install Timed Out"
|
3417
|
-
msgstr ""
|
3690
|
+
msgstr "संकुल समूह संस्थापन समय समाप्त"
|
3418
3691
|
|
3692
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3419
3693
|
msgid "Package Group Install scheduled by %s"
|
3420
|
-
msgstr ""
|
3694
|
+
msgstr "संकुल समूह संस्थापन %s के द्वारा नियत"
|
3421
3695
|
|
3696
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3422
3697
|
msgid "Package Group Remove"
|
3423
|
-
msgstr ""
|
3698
|
+
msgstr "संकुल समूह हटाना"
|
3424
3699
|
|
3700
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3425
3701
|
msgid "Package Group Remove Canceled"
|
3426
|
-
msgstr ""
|
3702
|
+
msgstr "संकुल समूह हटाना रद्द"
|
3427
3703
|
|
3704
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3428
3705
|
msgid "Package Group Remove Complete"
|
3429
|
-
msgstr ""
|
3706
|
+
msgstr "संकुल समूह हटाना संपन्न"
|
3430
3707
|
|
3708
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3431
3709
|
msgid "Package Group Remove Failed"
|
3432
|
-
msgstr ""
|
3710
|
+
msgstr "संकुल समूह हटाना विफल"
|
3433
3711
|
|
3712
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3434
3713
|
msgid "Package Group Remove Timed Out"
|
3435
|
-
msgstr ""
|
3714
|
+
msgstr "संकुल समूह हटाने की समय समाप्ति"
|
3436
3715
|
|
3716
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3437
3717
|
msgid "Package Group Remove scheduled by %s"
|
3438
|
-
msgstr ""
|
3718
|
+
msgstr "संकुल समूह विस्थापन %s के द्वारा नियत"
|
3439
3719
|
|
3720
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3440
3721
|
msgid "Package Group Update"
|
3441
|
-
msgstr ""
|
3722
|
+
msgstr "संकुल समूह अद्यतन"
|
3442
3723
|
|
3724
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3443
3725
|
msgid "Package Group Update scheduled by %s"
|
3444
|
-
msgstr ""
|
3726
|
+
msgstr "संकुल समूह अद्यतन %s के द्वारा नियत"
|
3445
3727
|
|
3728
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3446
3729
|
msgid "Package Groups"
|
3447
|
-
msgstr ""
|
3730
|
+
msgstr "संकुल समूह"
|
3448
3731
|
|
3732
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3449
3733
|
msgid "Package Install"
|
3450
|
-
msgstr ""
|
3734
|
+
msgstr "संकुल संस्थापन"
|
3451
3735
|
|
3736
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3452
3737
|
msgid "Package Install Canceled"
|
3453
|
-
msgstr ""
|
3738
|
+
msgstr "संकुल संस्थापन रद्द"
|
3454
3739
|
|
3740
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3455
3741
|
msgid "Package Install Complete"
|
3456
|
-
msgstr ""
|
3742
|
+
msgstr "संकुल संस्थापन पूर्ण"
|
3457
3743
|
|
3744
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3458
3745
|
msgid "Package Install Failed"
|
3459
|
-
msgstr ""
|
3746
|
+
msgstr "संकुल संस्थापन विफल"
|
3460
3747
|
|
3748
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3461
3749
|
msgid "Package Install Timed Out"
|
3462
|
-
msgstr ""
|
3750
|
+
msgstr "संकुल संस्थापन समय समाप्त"
|
3463
3751
|
|
3752
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3464
3753
|
msgid "Package Install scheduled by %s"
|
3465
|
-
msgstr ""
|
3754
|
+
msgstr "संकुल संस्थापन %s के द्वारा नियत"
|
3466
3755
|
|
3467
3756
|
msgid "Package Profile Update"
|
3468
3757
|
msgstr ""
|
@@ -3470,53 +3759,69 @@ msgstr ""
|
|
3470
3759
|
msgid "Package Profile Update for %s"
|
3471
3760
|
msgstr ""
|
3472
3761
|
|
3762
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3473
3763
|
msgid "Package Remove"
|
3474
|
-
msgstr ""
|
3764
|
+
msgstr "संकुल हटाना"
|
3475
3765
|
|
3766
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3476
3767
|
msgid "Package Remove Canceled"
|
3477
|
-
msgstr ""
|
3768
|
+
msgstr "संकुल हटाना रद्द"
|
3478
3769
|
|
3770
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3479
3771
|
msgid "Package Remove Complete"
|
3480
|
-
msgstr ""
|
3772
|
+
msgstr "संकुल हटाना संपन्न"
|
3481
3773
|
|
3774
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3482
3775
|
msgid "Package Remove Failed"
|
3483
|
-
msgstr ""
|
3776
|
+
msgstr "संकुल हटाना विफल"
|
3484
3777
|
|
3778
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3485
3779
|
msgid "Package Remove Timed Out"
|
3486
|
-
msgstr ""
|
3780
|
+
msgstr "संकुल हटाने की समय समाप्ति"
|
3487
3781
|
|
3782
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3488
3783
|
msgid "Package Remove scheduled by %s"
|
3489
|
-
msgstr ""
|
3784
|
+
msgstr "संकुल विस्थापन %s के द्वारा नियत"
|
3490
3785
|
|
3786
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3491
3787
|
msgid "Package Update"
|
3492
|
-
msgstr ""
|
3788
|
+
msgstr "संकुल अद्यतन"
|
3493
3789
|
|
3790
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3494
3791
|
msgid "Package Update Canceled"
|
3495
|
-
msgstr ""
|
3792
|
+
msgstr "संकुल अद्यतन रद्द"
|
3496
3793
|
|
3794
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3497
3795
|
msgid "Package Update Complete"
|
3498
|
-
msgstr ""
|
3796
|
+
msgstr "संकुल अद्यतन संपन्न"
|
3499
3797
|
|
3798
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3500
3799
|
msgid "Package Update Failed"
|
3501
|
-
msgstr ""
|
3800
|
+
msgstr "संकुल अद्यतन विफल"
|
3502
3801
|
|
3802
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3503
3803
|
msgid "Package Update Timed Out"
|
3504
|
-
msgstr ""
|
3804
|
+
msgstr "संकुल अद्यतन समय समाप्त"
|
3505
3805
|
|
3806
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3506
3807
|
msgid "Package Update scheduled by %s"
|
3507
|
-
msgstr ""
|
3808
|
+
msgstr "संकुल अद्यतन %s के द्वारा नियत"
|
3508
3809
|
|
3810
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3509
3811
|
msgid "Package group update canceled"
|
3510
|
-
msgstr ""
|
3812
|
+
msgstr "संकुल समूह अद्यतन रद्द"
|
3511
3813
|
|
3814
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3512
3815
|
msgid "Package group update complete"
|
3513
|
-
msgstr ""
|
3816
|
+
msgstr "संकुल समूह अद्यतन संपन्न"
|
3514
3817
|
|
3818
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3515
3819
|
msgid "Package group update failed"
|
3516
|
-
msgstr ""
|
3820
|
+
msgstr "संकुल समूह अद्यतन विफल"
|
3517
3821
|
|
3822
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3518
3823
|
msgid "Package group update timed out"
|
3519
|
-
msgstr ""
|
3824
|
+
msgstr "संकुल समूह अद्यतन की समय समाप्ति"
|
3520
3825
|
|
3521
3826
|
msgid "Package groups"
|
3522
3827
|
msgstr ""
|
@@ -3524,17 +3829,21 @@ msgstr ""
|
|
3524
3829
|
msgid "Package identifiers to filter content by"
|
3525
3830
|
msgstr ""
|
3526
3831
|
|
3832
|
+
#, fuzzy
|
3527
3833
|
msgid "Package install failed: \"%{package}\""
|
3528
|
-
msgstr ""
|
3834
|
+
msgstr "संकुल संस्थापन विफल"
|
3529
3835
|
|
3836
|
+
#, fuzzy
|
3530
3837
|
msgid "Package installation: \"%{package}\" "
|
3531
|
-
msgstr ""
|
3838
|
+
msgstr "संकुल संस्थापन रद्द"
|
3532
3839
|
|
3840
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3533
3841
|
msgid "Packages"
|
3534
|
-
msgstr ""
|
3842
|
+
msgstr "संकुल"
|
3535
3843
|
|
3844
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3536
3845
|
msgid "Packages must be provided"
|
3537
|
-
msgstr ""
|
3846
|
+
msgstr "संकुलों को जरूर दिया जाना चाहिए"
|
3538
3847
|
|
3539
3848
|
msgid "Page number, starting at 1"
|
3540
3849
|
msgstr ""
|
@@ -3563,8 +3872,10 @@ msgstr ""
|
|
3563
3872
|
msgid "Paused"
|
3564
3873
|
msgstr ""
|
3565
3874
|
|
3875
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3876
|
+
#, fuzzy
|
3566
3877
|
msgid "Pending"
|
3567
|
-
msgstr "
|
3878
|
+
msgstr "कार्यशील"
|
3568
3879
|
|
3569
3880
|
msgid "Perform a module stream action via Katello interface"
|
3570
3881
|
msgstr ""
|
@@ -3584,11 +3895,13 @@ msgstr ""
|
|
3584
3895
|
msgid "Performs an incremental-export of the repositories in library."
|
3585
3896
|
msgstr ""
|
3586
3897
|
|
3898
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3587
3899
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3588
|
-
msgstr ""
|
3900
|
+
msgstr "अनुमति की मनाही. उपयोक्ता '%{user}' के पास संगठन '%{org}' की पहुँच की अनुमति नहीं थी."
|
3589
3901
|
|
3902
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3590
3903
|
msgid "Physical"
|
3591
|
-
msgstr ""
|
3904
|
+
msgstr "भौतिक"
|
3592
3905
|
|
3593
3906
|
msgid "Plan numeric identifier"
|
3594
3907
|
msgstr ""
|
@@ -3635,8 +3948,9 @@ msgstr ""
|
|
3635
3948
|
msgid "Processing metadata."
|
3636
3949
|
msgstr ""
|
3637
3950
|
|
3951
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3638
3952
|
msgid "Product"
|
3639
|
-
msgstr ""
|
3953
|
+
msgstr "उत्पाद"
|
3640
3954
|
|
3641
3955
|
msgid "Product Content"
|
3642
3956
|
msgstr ""
|
@@ -3679,8 +3993,9 @@ msgstr ""
|
|
3679
3993
|
msgid "Product: '%{product}', Repository: '%{repository}'"
|
3680
3994
|
msgstr ""
|
3681
3995
|
|
3996
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3682
3997
|
msgid "Products"
|
3683
|
-
msgstr ""
|
3998
|
+
msgstr "उत्पाद"
|
3684
3999
|
|
3685
4000
|
msgid "Profiles"
|
3686
4001
|
msgstr ""
|
@@ -3721,8 +4036,9 @@ msgstr ""
|
|
3721
4036
|
msgid "Public key block in DER encoding or certificate content"
|
3722
4037
|
msgstr ""
|
3723
4038
|
|
4039
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3724
4040
|
msgid "Publish"
|
3725
|
-
msgstr ""
|
4041
|
+
msgstr "प्रकाशित करें"
|
3726
4042
|
|
3727
4043
|
msgid "Publish Lifecycle Environment Repositories"
|
3728
4044
|
msgstr ""
|
@@ -3730,9 +4046,18 @@ msgstr ""
|
|
3730
4046
|
msgid "Publish a content view"
|
3731
4047
|
msgstr ""
|
3732
4048
|
|
4049
|
+
msgid "Publish new version - "
|
4050
|
+
msgstr ""
|
4051
|
+
|
3733
4052
|
msgid "Published new version"
|
3734
4053
|
msgstr ""
|
3735
4054
|
|
4055
|
+
msgid "Publishing ${name}"
|
4056
|
+
msgstr ""
|
4057
|
+
|
4058
|
+
msgid "Publishing content view"
|
4059
|
+
msgstr ""
|
4060
|
+
|
3736
4061
|
msgid "Pulling remote branches. Downloaded %s units."
|
3737
4062
|
msgstr ""
|
3738
4063
|
|
@@ -3742,7 +4067,7 @@ msgstr ""
|
|
3742
4067
|
msgid "Pulp 3 export destination filepath"
|
3743
4068
|
msgstr ""
|
3744
4069
|
|
3745
|
-
msgid "Pulp
|
4070
|
+
msgid "Pulp 3 is not enabled on Smart proxy!"
|
3746
4071
|
msgstr ""
|
3747
4072
|
|
3748
4073
|
msgid "Pulp Docker registry port"
|
@@ -3832,8 +4157,9 @@ msgstr ""
|
|
3832
4157
|
msgid "RPM name"
|
3833
4158
|
msgstr ""
|
3834
4159
|
|
4160
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3835
4161
|
msgid "RPMs"
|
3836
|
-
msgstr ""
|
4162
|
+
msgstr "RPMs"
|
3837
4163
|
|
3838
4164
|
msgid "Realm IDs"
|
3839
4165
|
msgstr ""
|
@@ -3847,29 +4173,35 @@ msgstr ""
|
|
3847
4173
|
msgid "Recommended Repositories"
|
3848
4174
|
msgstr ""
|
3849
4175
|
|
4176
|
+
#, fuzzy
|
3850
4177
|
msgid "Red Hat CDN URL"
|
3851
|
-
msgstr ""
|
4178
|
+
msgstr "उत्पाद"
|
3852
4179
|
|
3853
4180
|
msgid "Red Hat Provider Details"
|
3854
4181
|
msgstr ""
|
3855
4182
|
|
4183
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3856
4184
|
msgid "Red Hat Repositories"
|
3857
|
-
msgstr ""
|
4185
|
+
msgstr "Red Hat रिपॉजिटरी"
|
3858
4186
|
|
4187
|
+
#, fuzzy
|
3859
4188
|
msgid "Red Hat products cannot be manipulated."
|
3860
|
-
msgstr ""
|
4189
|
+
msgstr "Red Hat प्रदाता को हटाया नहीं जा सकता"
|
3861
4190
|
|
4191
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3862
4192
|
msgid "Red Hat provider can not be deleted"
|
3863
|
-
msgstr ""
|
4193
|
+
msgstr "Red Hat प्रदाता को हटाया नहीं जा सकता"
|
3864
4194
|
|
4195
|
+
#, fuzzy
|
3865
4196
|
msgid "Red Hat repositories cannot be manipulated."
|
3866
|
-
msgstr ""
|
4197
|
+
msgstr "Red Hat प्रदाता को हटाया नहीं जा सकता"
|
3867
4198
|
|
3868
4199
|
msgid "Refresh"
|
3869
4200
|
msgstr ""
|
3870
4201
|
|
4202
|
+
#, fuzzy
|
3871
4203
|
msgid "Refresh Manifest"
|
3872
|
-
msgstr ""
|
4204
|
+
msgstr "भूमिकाएँ हटाएँ"
|
3873
4205
|
|
3874
4206
|
msgid "Refresh previously imported manifest for Red Hat provider"
|
3875
4207
|
msgstr ""
|
@@ -3916,14 +4248,19 @@ msgstr ""
|
|
3916
4248
|
msgid "Removal of package(s) requested: %{packages}"
|
3917
4249
|
msgstr ""
|
3918
4250
|
|
4251
|
+
msgid "Remove"
|
4252
|
+
msgstr ""
|
4253
|
+
|
3919
4254
|
msgid "Remove Content"
|
3920
4255
|
msgstr ""
|
3921
4256
|
|
4257
|
+
#, fuzzy
|
3922
4258
|
msgid "Remove Version"
|
3923
|
-
msgstr ""
|
4259
|
+
msgstr "भूमिका अनुमति पढ़ें"
|
3924
4260
|
|
4261
|
+
#, fuzzy
|
3925
4262
|
msgid "Remove Versions and Associations"
|
3926
|
-
msgstr ""
|
4263
|
+
msgstr "संगठन पढ़ें"
|
3927
4264
|
|
3928
4265
|
msgid "Remove a content view from an environment"
|
3929
4266
|
msgstr ""
|
@@ -3940,9 +4277,13 @@ msgstr ""
|
|
3940
4277
|
msgid "Remove content view version"
|
3941
4278
|
msgstr ""
|
3942
4279
|
|
3943
|
-
msgid "Remove
|
4280
|
+
msgid "Remove content views"
|
3944
4281
|
msgstr ""
|
3945
4282
|
|
4283
|
+
#, fuzzy
|
4284
|
+
msgid "Remove from Environment"
|
4285
|
+
msgstr "वातावरण पढ़ें"
|
4286
|
+
|
3946
4287
|
msgid "Remove hosts from the host collection"
|
3947
4288
|
msgstr ""
|
3948
4289
|
|
@@ -3955,14 +4296,16 @@ msgstr ""
|
|
3955
4296
|
msgid "Remove one or more subscriptions from an upstream subscription allocation"
|
3956
4297
|
msgstr ""
|
3957
4298
|
|
4299
|
+
#, fuzzy
|
3958
4300
|
msgid "Remove package"
|
3959
|
-
msgstr ""
|
4301
|
+
msgstr "संकुल '%s' हटाया"
|
3960
4302
|
|
3961
4303
|
msgid "Remove package for %s"
|
3962
4304
|
msgstr ""
|
3963
4305
|
|
4306
|
+
#, fuzzy
|
3964
4307
|
msgid "Remove package group"
|
3965
|
-
msgstr ""
|
4308
|
+
msgstr "संकुल समूह '%s' हटाया"
|
3966
4309
|
|
3967
4310
|
msgid "Remove package group via Katello interface"
|
3968
4311
|
msgstr ""
|
@@ -3985,30 +4328,37 @@ msgstr ""
|
|
3985
4328
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
3986
4329
|
msgstr ""
|
3987
4330
|
|
3988
|
-
msgid "
|
4331
|
+
msgid "Removed component from content view"
|
3989
4332
|
msgstr ""
|
3990
4333
|
|
3991
|
-
msgid "
|
4334
|
+
msgid "Removed components from content view"
|
3992
4335
|
msgstr ""
|
3993
4336
|
|
4337
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4338
|
+
msgid "Removing Package Group..."
|
4339
|
+
msgstr "संकुल समूह हटा रहा है"
|
4340
|
+
|
4341
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4342
|
+
msgid "Removing Package..."
|
4343
|
+
msgstr "संकुल समूह हटा रहा है..."
|
4344
|
+
|
3994
4345
|
msgid "Repo Type"
|
3995
4346
|
msgstr ""
|
3996
4347
|
|
4348
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
3997
4349
|
msgid "Repositories"
|
3998
|
-
msgstr ""
|
4350
|
+
msgstr "रिपॉजिटरी"
|
3999
4351
|
|
4000
4352
|
msgid "Repositories from published Content Views are not allowed."
|
4001
4353
|
msgstr ""
|
4002
4354
|
|
4355
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4003
4356
|
msgid "Repository"
|
4004
|
-
msgstr ""
|
4357
|
+
msgstr "रिपॉजिटरी"
|
4005
4358
|
|
4006
4359
|
msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
|
4007
4360
|
msgstr ""
|
4008
4361
|
|
4009
|
-
msgid "Repository %s cannot be deleted since they are Red Hat repositories."
|
4010
|
-
msgstr ""
|
4011
|
-
|
4012
4362
|
msgid "Repository '%(repoName)s' has been disabled."
|
4013
4363
|
msgstr ""
|
4014
4364
|
|
@@ -4021,14 +4371,13 @@ msgstr ""
|
|
4021
4371
|
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
4372
|
msgstr ""
|
4023
4373
|
|
4374
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4024
4375
|
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 ""
|
4376
|
+
msgstr "रिपोजिटरी को निष्क्रिय नहीं किया जा सकता है जबसे यह पहले ही प्रोन्नत किया गया है."
|
4029
4377
|
|
4378
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4030
4379
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4031
|
-
msgstr ""
|
4380
|
+
msgstr "रिपोजिटरी को %{cv_name} में %{to_env} वातावरण में क्लोन किया जा सकता है"
|
4032
4381
|
|
4033
4382
|
msgid "Repository id"
|
4034
4383
|
msgstr ""
|
@@ -4042,14 +4391,16 @@ msgstr ""
|
|
4042
4391
|
msgid "Repository metadata publish"
|
4043
4392
|
msgstr ""
|
4044
4393
|
|
4394
|
+
#, fuzzy
|
4045
4395
|
msgid "Repository not found"
|
4046
|
-
msgstr ""
|
4396
|
+
msgstr "रिपॉजिटरी"
|
4047
4397
|
|
4048
4398
|
msgid "Repository set name to search on"
|
4049
4399
|
msgstr ""
|
4050
4400
|
|
4401
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4051
4402
|
msgid "Repository sets are not available for custom products."
|
4052
|
-
msgstr ""
|
4403
|
+
msgstr "मनपसंद उत्पाद के लिए रिपोजिटरी सेट उपलब्ध नहीं है."
|
4053
4404
|
|
4054
4405
|
msgid "Republish Repositories of %{name} %{version}"
|
4055
4406
|
msgstr ""
|
@@ -4057,6 +4408,9 @@ msgstr ""
|
|
4057
4408
|
msgid "Republish Version Repositories"
|
4058
4409
|
msgstr ""
|
4059
4410
|
|
4411
|
+
msgid "Requirements yaml is invalid!"
|
4412
|
+
msgstr ""
|
4413
|
+
|
4060
4414
|
msgid "Requires Virt-Who"
|
4061
4415
|
msgstr ""
|
4062
4416
|
|
@@ -4067,7 +4421,7 @@ msgid "Resolve traces for one or more hosts"
|
|
4067
4421
|
msgstr ""
|
4068
4422
|
|
4069
4423
|
msgid "Resource"
|
4070
|
-
msgstr "
|
4424
|
+
msgstr ""
|
4071
4425
|
|
4072
4426
|
msgid "Restart Services via Katello interface"
|
4073
4427
|
msgstr ""
|
@@ -4075,8 +4429,9 @@ msgstr ""
|
|
4075
4429
|
msgid "Restrict Composite Content View promotion"
|
4076
4430
|
msgstr ""
|
4077
4431
|
|
4432
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4078
4433
|
msgid "Result"
|
4079
|
-
msgstr ""
|
4434
|
+
msgstr "परिणाम"
|
4080
4435
|
|
4081
4436
|
msgid "Retrieve a single errata for a host"
|
4082
4437
|
msgstr ""
|
@@ -4099,9 +4454,6 @@ msgstr ""
|
|
4099
4454
|
msgid "Return errata that are upgradable on one or more hosts"
|
4100
4455
|
msgstr ""
|
4101
4456
|
|
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
4457
|
msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
|
4106
4458
|
msgstr ""
|
4107
4459
|
|
@@ -4142,19 +4494,20 @@ msgid "Returns content that can be both added and is currently added to the obje
|
|
4142
4494
|
msgstr ""
|
4143
4495
|
|
4144
4496
|
msgid "Role"
|
4145
|
-
msgstr "
|
4497
|
+
msgstr ""
|
4146
4498
|
|
4147
4499
|
msgid "Role of host"
|
4148
4500
|
msgstr ""
|
4149
4501
|
|
4150
4502
|
msgid "Roles"
|
4151
|
-
msgstr "
|
4503
|
+
msgstr ""
|
4152
4504
|
|
4153
4505
|
msgid "Run Sync Plan:"
|
4154
4506
|
msgstr ""
|
4155
4507
|
|
4508
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4156
4509
|
msgid "Running"
|
4157
|
-
msgstr ""
|
4510
|
+
msgstr "कार्यशील"
|
4158
4511
|
|
4159
4512
|
msgid "SKU"
|
4160
4513
|
msgstr ""
|
@@ -4169,13 +4522,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
|
|
4169
4522
|
msgstr ""
|
4170
4523
|
|
4171
4524
|
msgid "Save"
|
4172
|
-
msgstr "
|
4525
|
+
msgstr ""
|
4173
4526
|
|
4174
4527
|
msgid "Schedule errata for installation using katello-agent. %s"
|
4175
4528
|
msgstr ""
|
4176
4529
|
|
4177
4530
|
msgid "Search"
|
4178
|
-
msgstr "
|
4531
|
+
msgstr ""
|
4179
4532
|
|
4180
4533
|
msgid "Search pattern (defaults to '*')"
|
4181
4534
|
msgstr ""
|
@@ -4192,8 +4545,9 @@ msgstr ""
|
|
4192
4545
|
msgid "Search string for hosts to perform an action on"
|
4193
4546
|
msgstr ""
|
4194
4547
|
|
4548
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4195
4549
|
msgid "Security"
|
4196
|
-
msgstr ""
|
4550
|
+
msgstr "सुरक्षा"
|
4197
4551
|
|
4198
4552
|
msgid "Security errata applicable"
|
4199
4553
|
msgstr ""
|
@@ -4204,30 +4558,41 @@ msgstr ""
|
|
4204
4558
|
msgid "Select"
|
4205
4559
|
msgstr ""
|
4206
4560
|
|
4561
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
4207
4562
|
msgid "Select All"
|
4208
4563
|
msgstr "सभी का चयन करें"
|
4209
4564
|
|
4565
|
+
#, fuzzy
|
4210
4566
|
msgid "Select Content View"
|
4211
|
-
msgstr ""
|
4567
|
+
msgstr "सामग्री"
|
4212
4568
|
|
4569
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4213
4570
|
msgid "Select None"
|
4214
|
-
msgstr ""
|
4571
|
+
msgstr "कुछ नहीं चुनें"
|
4215
4572
|
|
4216
4573
|
msgid "Select Organization"
|
4217
|
-
msgstr "
|
4574
|
+
msgstr ""
|
4218
4575
|
|
4219
4576
|
msgid "Select Value"
|
4220
4577
|
msgstr ""
|
4221
4578
|
|
4579
|
+
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
4580
|
+
msgstr ""
|
4581
|
+
|
4222
4582
|
msgid "Select all rows"
|
4223
4583
|
msgstr ""
|
4224
4584
|
|
4585
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
4586
|
+
#, fuzzy
|
4225
4587
|
msgid "Select an Organization"
|
4226
|
-
msgstr ""
|
4588
|
+
msgstr "संगठन चुनें"
|
4227
4589
|
|
4228
4590
|
msgid "Select an organization"
|
4229
4591
|
msgstr ""
|
4230
4592
|
|
4593
|
+
msgid "Select available version of ${cvName} to use"
|
4594
|
+
msgstr ""
|
4595
|
+
|
4231
4596
|
msgid "Select hosts to assign to %s"
|
4232
4597
|
msgstr ""
|
4233
4598
|
|
@@ -4240,8 +4605,9 @@ msgstr ""
|
|
4240
4605
|
msgid "Service Level"
|
4241
4606
|
msgstr ""
|
4242
4607
|
|
4608
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4243
4609
|
msgid "Service Level %s"
|
4244
|
-
msgstr ""
|
4610
|
+
msgstr "सेवा स्तर %s"
|
4245
4611
|
|
4246
4612
|
msgid "Service Level (SLA)"
|
4247
4613
|
msgstr ""
|
@@ -4273,8 +4639,9 @@ msgstr ""
|
|
4273
4639
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4274
4640
|
msgstr ""
|
4275
4641
|
|
4642
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4276
4643
|
msgid "Severity"
|
4277
|
-
msgstr ""
|
4644
|
+
msgstr "गंभीरता"
|
4278
4645
|
|
4279
4646
|
msgid "Show :a_resource"
|
4280
4647
|
msgstr ""
|
@@ -4351,6 +4718,9 @@ msgstr ""
|
|
4351
4718
|
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4352
4719
|
msgstr ""
|
4353
4720
|
|
4721
|
+
msgid "Single content view consisting of repositories"
|
4722
|
+
msgstr ""
|
4723
|
+
|
4354
4724
|
msgid "Size of file to upload"
|
4355
4725
|
msgstr ""
|
4356
4726
|
|
@@ -4363,9 +4733,13 @@ msgstr ""
|
|
4363
4733
|
msgid "Smart proxy IDs"
|
4364
4734
|
msgstr ""
|
4365
4735
|
|
4366
|
-
msgid "
|
4736
|
+
msgid "Smart proxy content source not found!"
|
4367
4737
|
msgstr ""
|
4368
4738
|
|
4739
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4740
|
+
msgid "Sockets: %s"
|
4741
|
+
msgstr "सॉकेट: %s"
|
4742
|
+
|
4369
4743
|
msgid "Solve Dependencies"
|
4370
4744
|
msgstr ""
|
4371
4745
|
|
@@ -4381,6 +4755,21 @@ msgstr ""
|
|
4381
4755
|
msgid "Some services are not properly started. See the About page for more information."
|
4382
4756
|
msgstr ""
|
4383
4757
|
|
4758
|
+
msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
|
4759
|
+
msgstr ""
|
4760
|
+
|
4761
|
+
msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
|
4762
|
+
msgstr ""
|
4763
|
+
|
4764
|
+
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
4765
|
+
msgstr ""
|
4766
|
+
|
4767
|
+
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
4768
|
+
msgstr ""
|
4769
|
+
|
4770
|
+
msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
|
4771
|
+
msgstr ""
|
4772
|
+
|
4384
4773
|
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4385
4774
|
msgstr ""
|
4386
4775
|
|
@@ -4420,23 +4809,27 @@ msgstr ""
|
|
4420
4809
|
msgid "Stacking ID"
|
4421
4810
|
msgstr ""
|
4422
4811
|
|
4812
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
4423
4813
|
msgid "Start Date"
|
4424
|
-
msgstr ""
|
4814
|
+
msgstr "आरंभ तिथि"
|
4425
4815
|
|
4816
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4426
4817
|
msgid "Start Date and Time can't be blank"
|
4427
|
-
msgstr ""
|
4818
|
+
msgstr "प्रारंभ दिनांक और समय रिक्त नहीं हो सकता है"
|
4428
4819
|
|
4820
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4429
4821
|
msgid "Start Time"
|
4430
|
-
msgstr ""
|
4822
|
+
msgstr "प्रारंभ समय"
|
4431
4823
|
|
4432
4824
|
msgid "Starts"
|
4433
4825
|
msgstr ""
|
4434
4826
|
|
4827
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
4435
4828
|
msgid "Status"
|
4436
4829
|
msgstr "प्रस्थिति"
|
4437
4830
|
|
4438
4831
|
msgid "Storage"
|
4439
|
-
msgstr "
|
4832
|
+
msgstr ""
|
4440
4833
|
|
4441
4834
|
msgid "Stream"
|
4442
4835
|
msgstr ""
|
@@ -4450,8 +4843,9 @@ msgstr ""
|
|
4450
4843
|
msgid "Subnet IDs"
|
4451
4844
|
msgstr ""
|
4452
4845
|
|
4846
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
4453
4847
|
msgid "Subscription"
|
4454
|
-
msgstr ""
|
4848
|
+
msgstr "सदस्यता"
|
4455
4849
|
|
4456
4850
|
msgid "Subscription Allocation"
|
4457
4851
|
msgstr ""
|
@@ -4522,12 +4916,14 @@ msgstr ""
|
|
4522
4916
|
msgid "Subscriptions have been saved and are being updated. "
|
4523
4917
|
msgstr ""
|
4524
4918
|
|
4919
|
+
#, fuzzy
|
4525
4920
|
msgid "Subscriptions information based on selected activation keys:"
|
4526
|
-
msgstr ""
|
4921
|
+
msgstr "सक्रियकरण कुंजी '%s' में सदस्यता सफलतापूर्वक जोड़ा गया."
|
4527
4922
|
|
4528
4923
|
msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
|
4529
4924
|
msgstr ""
|
4530
4925
|
|
4926
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
4531
4927
|
msgid "Success"
|
4532
4928
|
msgstr "सफल"
|
4533
4929
|
|
@@ -4552,8 +4948,9 @@ msgstr ""
|
|
4552
4948
|
msgid "Successfully synchronized."
|
4553
4949
|
msgstr ""
|
4554
4950
|
|
4951
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4555
4952
|
msgid "Summary"
|
4556
|
-
msgstr ""
|
4953
|
+
msgstr "सारांश"
|
4557
4954
|
|
4558
4955
|
msgid "Support Type"
|
4559
4956
|
msgstr ""
|
@@ -4561,8 +4958,9 @@ msgstr ""
|
|
4561
4958
|
msgid "Supported Content Types"
|
4562
4959
|
msgstr ""
|
4563
4960
|
|
4961
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4564
4962
|
msgid "Sync Canceled"
|
4565
|
-
msgstr ""
|
4963
|
+
msgstr "सिंक रद्द"
|
4566
4964
|
|
4567
4965
|
msgid "Sync Connection Timeout"
|
4568
4966
|
msgstr ""
|
@@ -4570,11 +4968,14 @@ msgstr ""
|
|
4570
4968
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4571
4969
|
msgstr ""
|
4572
4970
|
|
4971
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4972
|
+
#, fuzzy
|
4573
4973
|
msgid "Sync Incomplete"
|
4574
|
-
msgstr ""
|
4974
|
+
msgstr "सिंक संपन्न."
|
4575
4975
|
|
4976
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4576
4977
|
msgid "Sync Overview"
|
4577
|
-
msgstr ""
|
4978
|
+
msgstr "सिंक अवलोकन"
|
4578
4979
|
|
4579
4980
|
msgid "Sync Plan"
|
4580
4981
|
msgstr ""
|
@@ -4582,8 +4983,9 @@ msgstr ""
|
|
4582
4983
|
msgid "Sync Plan: "
|
4583
4984
|
msgstr ""
|
4584
4985
|
|
4986
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4585
4987
|
msgid "Sync Plans"
|
4586
|
-
msgstr ""
|
4988
|
+
msgstr "सिंक योजनाएँ"
|
4587
4989
|
|
4588
4990
|
msgid "Sync Repository on Smart Proxy(ies)"
|
4589
4991
|
msgstr ""
|
@@ -4591,8 +4993,9 @@ msgstr ""
|
|
4591
4993
|
msgid "Sync Smart Proxies after Content View promotion"
|
4592
4994
|
msgstr ""
|
4593
4995
|
|
4996
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4594
4997
|
msgid "Sync Status"
|
4595
|
-
msgstr ""
|
4998
|
+
msgstr "सिंक स्थिति"
|
4596
4999
|
|
4597
5000
|
msgid "Sync Summary"
|
4598
5001
|
msgstr ""
|
@@ -4609,8 +5012,9 @@ msgstr ""
|
|
4609
5012
|
msgid "Sync capsule"
|
4610
5013
|
msgstr ""
|
4611
5014
|
|
5015
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4612
5016
|
msgid "Sync complete."
|
4613
|
-
msgstr ""
|
5017
|
+
msgstr "सिंक संपन्न."
|
4614
5018
|
|
4615
5019
|
msgid "Sync errata"
|
4616
5020
|
msgstr ""
|
@@ -4630,11 +5034,13 @@ msgstr ""
|
|
4630
5034
|
msgid "Synced to smart proxy"
|
4631
5035
|
msgstr ""
|
4632
5036
|
|
5037
|
+
#, fuzzy
|
4633
5038
|
msgid "Synchronize"
|
4634
|
-
msgstr ""
|
5039
|
+
msgstr "तुल्यकालन"
|
4635
5040
|
|
5041
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4636
5042
|
msgid "Synchronize Now"
|
4637
|
-
msgstr ""
|
5043
|
+
msgstr "अभी तुल्यकालित करें."
|
4638
5044
|
|
4639
5045
|
msgid "Synchronize capsule content"
|
4640
5046
|
msgstr ""
|
@@ -4654,8 +5060,10 @@ msgstr ""
|
|
4654
5060
|
msgid "Synchronize: Validate Content"
|
4655
5061
|
msgstr ""
|
4656
5062
|
|
5063
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5064
|
+
#, fuzzy
|
4657
5065
|
msgid "Syncing Complete."
|
4658
|
-
msgstr ""
|
5066
|
+
msgstr "सिंक संपन्न."
|
4659
5067
|
|
4660
5068
|
msgid "System Purpose"
|
4661
5069
|
msgstr ""
|
@@ -4681,8 +5089,9 @@ msgstr ""
|
|
4681
5089
|
msgid "Temporary"
|
4682
5090
|
msgstr ""
|
4683
5091
|
|
5092
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4684
5093
|
msgid "The '%s' environment cannot contain a changeset!"
|
4685
|
-
msgstr ""
|
5094
|
+
msgstr "'%s' वातावरण में चेंजसेट समाहित नहीं हो सकता है!"
|
4686
5095
|
|
4687
5096
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4688
5097
|
msgstr ""
|
@@ -4696,14 +5105,16 @@ msgstr ""
|
|
4696
5105
|
msgid "The actual file contents"
|
4697
5106
|
msgstr ""
|
4698
5107
|
|
5108
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
4699
5109
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
4700
|
-
msgstr ""
|
5110
|
+
msgstr "वर्तमान संगठन को हटाया नहीं जा सकता. हटाने से पहले एक अलग संगठन के लिए स्विच करें."
|
4701
5111
|
|
4702
5112
|
msgid "The default content view cannot be edited, published, or deleted."
|
4703
5113
|
msgstr ""
|
4704
5114
|
|
5115
|
+
#, fuzzy
|
4705
5116
|
msgid "The default content view cannot be promoted"
|
4706
|
-
msgstr ""
|
5117
|
+
msgstr "नमूना को निर्यात नहीं किया जा सकता है"
|
4707
5118
|
|
4708
5119
|
msgid "The default dependency solving value for new Content Views."
|
4709
5120
|
msgstr ""
|
@@ -4720,12 +5131,6 @@ msgstr ""
|
|
4720
5131
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4721
5132
|
msgstr ""
|
4722
5133
|
|
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
5134
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4730
5135
|
msgstr ""
|
4731
5136
|
|
@@ -4758,6 +5163,9 @@ msgstr ""
|
|
4758
5163
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
4759
5164
|
msgstr ""
|
4760
5165
|
|
5166
|
+
msgid "The maximum number of versions of each package to keep."
|
5167
|
+
msgstr ""
|
5168
|
+
|
4761
5169
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4762
5170
|
msgstr ""
|
4763
5171
|
|
@@ -4790,8 +5198,9 @@ msgstr ""
|
|
4790
5198
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4791
5199
|
msgstr ""
|
4792
5200
|
|
5201
|
+
#, fuzzy
|
4793
5202
|
msgid "The repository is already enabled"
|
4794
|
-
msgstr ""
|
5203
|
+
msgstr "रिपॉजिटरी '%s' सक्रिय किया गया."
|
4795
5204
|
|
4796
5205
|
msgid "The request did not contain any repository information."
|
4797
5206
|
msgstr ""
|
@@ -4840,8 +5249,9 @@ msgstr ""
|
|
4840
5249
|
msgid "There are no errata that need to be applied to registered content hosts."
|
4841
5250
|
msgstr ""
|
4842
5251
|
|
5252
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4843
5253
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
4844
|
-
msgstr ""
|
5254
|
+
msgstr "कोई उत्पाद या रिपोजिटरी सक्रिय नहीं है. %{custom} या %{redhat} के द्वारा सक्रिय करने की कोशिश करें."
|
4845
5255
|
|
4846
5256
|
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
5257
|
msgstr ""
|
@@ -4897,9 +5307,6 @@ msgstr ""
|
|
4897
5307
|
msgid "This is disabled because a manifest task is in progress"
|
4898
5308
|
msgstr ""
|
4899
5309
|
|
4900
|
-
msgid "This is disabled because disconnected mode is enabled."
|
4901
|
-
msgstr ""
|
4902
|
-
|
4903
5310
|
msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
|
4904
5311
|
msgstr ""
|
4905
5312
|
|
@@ -4945,8 +5352,9 @@ msgstr ""
|
|
4945
5352
|
msgid "Timestamp"
|
4946
5353
|
msgstr ""
|
4947
5354
|
|
5355
|
+
# translation auto-copied from project Fedora Installation Guide, version f17-alt, document DiskEncryptionUserGuide
|
4948
5356
|
msgid "Title"
|
4949
|
-
msgstr ""
|
5357
|
+
msgstr "शीर्षक"
|
4950
5358
|
|
4951
5359
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
4952
5360
|
msgstr ""
|
@@ -4984,8 +5392,11 @@ msgstr ""
|
|
4984
5392
|
msgid "Type of content: \"cert\", \"gpg_key\""
|
4985
5393
|
msgstr ""
|
4986
5394
|
|
5395
|
+
msgid "URL needs to have a trailing /"
|
5396
|
+
msgstr ""
|
5397
|
+
|
4987
5398
|
msgid "UUID"
|
4988
|
-
msgstr "
|
5399
|
+
msgstr ""
|
4989
5400
|
|
4990
5401
|
msgid "UUID of the consumer"
|
4991
5402
|
msgstr ""
|
@@ -5011,12 +5422,6 @@ msgstr ""
|
|
5011
5422
|
msgid "Unable to detect puppet path"
|
5012
5423
|
msgstr ""
|
5013
5424
|
|
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
5425
|
msgid "Unable to find product '%s' in organization '%s'"
|
5021
5426
|
msgstr ""
|
5022
5427
|
|
@@ -5071,6 +5476,7 @@ msgstr ""
|
|
5071
5476
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
5072
5477
|
msgstr ""
|
5073
5478
|
|
5479
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
5074
5480
|
msgid "Unknown"
|
5075
5481
|
msgstr "अज्ञात"
|
5076
5482
|
|
@@ -5107,12 +5513,14 @@ msgstr ""
|
|
5107
5513
|
msgid "Unsubscribed hypervisor"
|
5108
5514
|
msgstr ""
|
5109
5515
|
|
5516
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5110
5517
|
msgid "Unsupported URL protocol %s."
|
5111
|
-
msgstr ""
|
5518
|
+
msgstr "असमर्थित URL प्रोटोकॉल %s."
|
5112
5519
|
|
5113
5520
|
msgid "Unsupported event type %{type}. Supported: %{types}"
|
5114
5521
|
msgstr ""
|
5115
5522
|
|
5523
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5116
5524
|
msgid "Update"
|
5117
5525
|
msgstr "अद्यतन"
|
5118
5526
|
|
@@ -5224,8 +5632,14 @@ msgstr ""
|
|
5224
5632
|
msgid "Update the quantity of one or more subscriptions on an upstream allocation"
|
5225
5633
|
msgstr ""
|
5226
5634
|
|
5635
|
+
msgid "Update version"
|
5636
|
+
msgstr ""
|
5637
|
+
|
5227
5638
|
msgid "Updated"
|
5228
|
-
msgstr "
|
5639
|
+
msgstr ""
|
5640
|
+
|
5641
|
+
msgid "Updated component details"
|
5642
|
+
msgstr ""
|
5229
5643
|
|
5230
5644
|
msgid "Updates"
|
5231
5645
|
msgstr ""
|
@@ -5236,8 +5650,9 @@ msgstr ""
|
|
5236
5650
|
msgid "Updates all packages on the host(s)"
|
5237
5651
|
msgstr ""
|
5238
5652
|
|
5653
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5239
5654
|
msgid "Updating Package..."
|
5240
|
-
msgstr ""
|
5655
|
+
msgstr "संकुल अद्यतन कर रहा है..."
|
5241
5656
|
|
5242
5657
|
msgid "Updating System Purpose for host"
|
5243
5658
|
msgstr ""
|
@@ -5245,8 +5660,9 @@ msgstr ""
|
|
5245
5660
|
msgid "Updating System Purpose for host %s"
|
5246
5661
|
msgstr ""
|
5247
5662
|
|
5663
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5248
5664
|
msgid "Updating package group..."
|
5249
|
-
msgstr ""
|
5665
|
+
msgstr "संकुल समूह अद्यतन कर रहा है..."
|
5250
5666
|
|
5251
5667
|
msgid "Updating repository authentication configuration"
|
5252
5668
|
msgstr ""
|
@@ -5266,11 +5682,10 @@ msgstr ""
|
|
5266
5682
|
msgid "Upload content into the repository"
|
5267
5683
|
msgstr ""
|
5268
5684
|
|
5269
|
-
|
5270
|
-
|
5271
|
-
|
5685
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5686
|
+
#, fuzzy
|
5272
5687
|
msgid "Upload into"
|
5273
|
-
msgstr ""
|
5688
|
+
msgstr "अपलोड कर रहा है"
|
5274
5689
|
|
5275
5690
|
msgid "Upload request id"
|
5276
5691
|
msgstr ""
|
@@ -5306,7 +5721,7 @@ msgid "Used to determine download concurrency of the repository in pulp3. Use va
|
|
5306
5721
|
msgstr ""
|
5307
5722
|
|
5308
5723
|
msgid "User"
|
5309
|
-
msgstr "
|
5724
|
+
msgstr ""
|
5310
5725
|
|
5311
5726
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5312
5727
|
msgstr ""
|
@@ -5342,7 +5757,13 @@ msgid "Verify checksum of repository contents"
|
|
5342
5757
|
msgstr ""
|
5343
5758
|
|
5344
5759
|
msgid "Version"
|
5345
|
-
msgstr "
|
5760
|
+
msgstr ""
|
5761
|
+
|
5762
|
+
msgid "Version "
|
5763
|
+
msgstr ""
|
5764
|
+
|
5765
|
+
msgid "Version ${item.version}"
|
5766
|
+
msgstr ""
|
5346
5767
|
|
5347
5768
|
msgid "Versions"
|
5348
5769
|
msgstr ""
|
@@ -5350,14 +5771,16 @@ msgstr ""
|
|
5350
5771
|
msgid "Versions will appear here when the content view is published."
|
5351
5772
|
msgstr ""
|
5352
5773
|
|
5774
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5353
5775
|
msgid "View %{view} has not been promoted to %{env}"
|
5354
|
-
msgstr ""
|
5776
|
+
msgstr "दृश्य %{view} को %{env} में प्रोन्नत किया गया है"
|
5355
5777
|
|
5356
5778
|
msgid "View a report of the affected hosts"
|
5357
5779
|
msgstr ""
|
5358
5780
|
|
5781
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
5359
5782
|
msgid "Virtual"
|
5360
|
-
msgstr ""
|
5783
|
+
msgstr "आभासी"
|
5361
5784
|
|
5362
5785
|
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5363
5786
|
msgstr ""
|
@@ -5419,11 +5842,13 @@ msgstr ""
|
|
5419
5842
|
msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
|
5420
5843
|
msgstr ""
|
5421
5844
|
|
5845
|
+
#, fuzzy
|
5422
5846
|
msgid "You cannot set an organization's parent. This feature is disabled."
|
5423
|
-
msgstr ""
|
5847
|
+
msgstr "आपके पास उपयोक्ता %s के लिए तयशुदा संगठन और वातावरण नहीं है."
|
5424
5848
|
|
5849
|
+
#, fuzzy
|
5425
5850
|
msgid "You cannot set an organization's parent_id. This feature is disabled."
|
5426
|
-
msgstr ""
|
5851
|
+
msgstr "आपके पास उपयोक्ता %s के लिए तयशुदा संगठन और वातावरण नहीं है."
|
5427
5852
|
|
5428
5853
|
msgid "You currently don't have any Content Views."
|
5429
5854
|
msgstr ""
|
@@ -5494,11 +5919,14 @@ msgstr ""
|
|
5494
5919
|
msgid "a module stream"
|
5495
5920
|
msgstr ""
|
5496
5921
|
|
5922
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5923
|
+
#, fuzzy
|
5497
5924
|
msgid "a package"
|
5498
|
-
msgstr ""
|
5925
|
+
msgstr "सभी संकुल"
|
5499
5926
|
|
5927
|
+
#, fuzzy
|
5500
5928
|
msgid "a package group"
|
5501
|
-
msgstr ""
|
5929
|
+
msgstr "संकुल समूह संस्थापित कर रहा है..."
|
5502
5930
|
|
5503
5931
|
msgid "actions not found"
|
5504
5932
|
msgstr ""
|
@@ -5509,8 +5937,9 @@ msgstr ""
|
|
5509
5937
|
msgid "activation key name to filter by"
|
5510
5938
|
msgstr ""
|
5511
5939
|
|
5940
|
+
#, fuzzy
|
5512
5941
|
msgid "activation keys"
|
5513
|
-
msgstr ""
|
5942
|
+
msgstr "सक्रियकरण कुंजी"
|
5514
5943
|
|
5515
5944
|
msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
|
5516
5945
|
msgstr ""
|
@@ -5518,14 +5947,17 @@ msgstr ""
|
|
5518
5947
|
msgid "add all packages without errata to the included/excluded list. (package filter only)"
|
5519
5948
|
msgstr ""
|
5520
5949
|
|
5950
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5521
5951
|
msgid "all packages"
|
5522
|
-
msgstr ""
|
5952
|
+
msgstr "सभी संकुल"
|
5523
5953
|
|
5954
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5524
5955
|
msgid "all packages update"
|
5525
|
-
msgstr ""
|
5956
|
+
msgstr "सभी संकुल अद्यतन"
|
5526
5957
|
|
5958
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5527
5959
|
msgid "all packages update failed"
|
5528
|
-
msgstr ""
|
5960
|
+
msgstr "सभी संकुल अद्यतन विफल"
|
5529
5961
|
|
5530
5962
|
msgid "allow unauthenticed pull of container images"
|
5531
5963
|
msgstr ""
|
@@ -5533,17 +5965,21 @@ msgstr ""
|
|
5533
5965
|
msgid "already belongs to the content view"
|
5534
5966
|
msgstr ""
|
5535
5967
|
|
5968
|
+
#, fuzzy
|
5536
5969
|
msgid "already taken"
|
5537
|
-
msgstr ""
|
5970
|
+
msgstr "नमूना में पहले से ही है"
|
5538
5971
|
|
5539
5972
|
msgid "an ansible collection"
|
5540
5973
|
msgstr ""
|
5541
5974
|
|
5975
|
+
#, fuzzy
|
5542
5976
|
msgid "an erratum"
|
5543
|
-
msgstr ""
|
5977
|
+
msgstr "इरेटा संस्थापित कर रहा है..."
|
5544
5978
|
|
5979
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
5980
|
+
#, fuzzy
|
5545
5981
|
msgid "an organization"
|
5546
|
-
msgstr ""
|
5982
|
+
msgstr "संगठन"
|
5547
5983
|
|
5548
5984
|
msgid "an ostree branch"
|
5549
5985
|
msgstr ""
|
@@ -5563,35 +5999,43 @@ msgstr ""
|
|
5563
5999
|
msgid "can the activation key have unlimited hosts"
|
5564
6000
|
msgstr ""
|
5565
6001
|
|
6002
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5566
6003
|
msgid "can't be blank"
|
5567
|
-
msgstr ""
|
6004
|
+
msgstr "रिक्त नहीं हो सकता"
|
5568
6005
|
|
5569
6006
|
msgid "cannot add filter to import-only view"
|
5570
6007
|
msgstr ""
|
5571
6008
|
|
6009
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5572
6010
|
msgid "cannot be a binary file."
|
5573
|
-
msgstr ""
|
6011
|
+
msgstr "एक द्विपदीय फ़ाइल नहीं हो सकता है."
|
5574
6012
|
|
6013
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5575
6014
|
msgid "cannot be blank"
|
5576
|
-
msgstr ""
|
6015
|
+
msgstr "खाली नहीं हो सकता है"
|
5577
6016
|
|
5578
6017
|
msgid "cannot be blank when Repository URL is provided."
|
5579
6018
|
msgstr ""
|
5580
6019
|
|
6020
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
6021
|
+
#, fuzzy
|
5581
6022
|
msgid "cannot be changed."
|
5582
|
-
msgstr ""
|
6023
|
+
msgstr "खाली नहीं हो सकता है"
|
5583
6024
|
|
6025
|
+
#, fuzzy
|
5584
6026
|
msgid "cannot be deleted if it has been promoted."
|
5585
|
-
msgstr ""
|
6027
|
+
msgstr "रिपोजिटरी को निष्क्रिय नहीं किया जा सकता है जबसे यह पहले ही प्रोन्नत किया गया है."
|
5586
6028
|
|
5587
6029
|
msgid "cannot be less than one"
|
5588
6030
|
msgstr ""
|
5589
6031
|
|
6032
|
+
#, fuzzy
|
5590
6033
|
msgid "cannot be lower than current usage count (%s)"
|
5591
|
-
msgstr ""
|
6034
|
+
msgstr "मौजूदा प्रयोग (%s) या असीमित से उच्चतर हो सकता है"
|
5592
6035
|
|
6036
|
+
#, fuzzy
|
5593
6037
|
msgid "cannot be nil"
|
5594
|
-
msgstr ""
|
6038
|
+
msgstr "रिक्त नहीं हो सकता"
|
5595
6039
|
|
5596
6040
|
msgid "cannot be set because unlimited hosts is set"
|
5597
6041
|
msgstr ""
|
@@ -5602,20 +6046,23 @@ msgstr ""
|
|
5602
6046
|
msgid "cannot be set for non-yum repositories."
|
5603
6047
|
msgstr ""
|
5604
6048
|
|
6049
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5605
6050
|
msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
|
5606
|
-
msgstr ""
|
6051
|
+
msgstr "एस्की वर्णांकिक, स्थान, '_', '-' के अलावे वर्णों को समाहित नहीं कर सकता है. "
|
5607
6052
|
|
5608
6053
|
msgid "cannot contain commas"
|
5609
6054
|
msgstr ""
|
5610
6055
|
|
6056
|
+
#, fuzzy
|
5611
6057
|
msgid "cannot contain filters if composite view"
|
5612
|
-
msgstr ""
|
6058
|
+
msgstr "ASCII मान के अलावे वर्ण समाहित नहीं कर सकता है"
|
5613
6059
|
|
5614
6060
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5615
6061
|
msgstr ""
|
5616
6062
|
|
6063
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5617
6064
|
msgid "cannot contain more than %s characters"
|
5618
|
-
msgstr ""
|
6065
|
+
msgstr "%s वर्ण से अधिक समाहित नहीं कर सकता है"
|
5619
6066
|
|
5620
6067
|
msgid "checking Candlepin task status"
|
5621
6068
|
msgstr ""
|
@@ -5662,11 +6109,13 @@ msgstr ""
|
|
5662
6109
|
msgid "content view numeric identifier"
|
5663
6110
|
msgstr ""
|
5664
6111
|
|
6112
|
+
#, fuzzy
|
5665
6113
|
msgid "content view publish"
|
5666
|
-
msgstr ""
|
6114
|
+
msgstr "सामग्री"
|
5667
6115
|
|
6116
|
+
#, fuzzy
|
5668
6117
|
msgid "content view refresh"
|
5669
|
-
msgstr ""
|
6118
|
+
msgstr "सामग्री"
|
5670
6119
|
|
5671
6120
|
msgid "content view to reassign orphaned activation keys to"
|
5672
6121
|
msgstr ""
|
@@ -5737,8 +6186,9 @@ msgstr ""
|
|
5737
6186
|
msgid "environment to reassign orphaned systems to"
|
5738
6187
|
msgstr ""
|
5739
6188
|
|
6189
|
+
#, fuzzy
|
5740
6190
|
msgid "environments"
|
5741
|
-
msgstr ""
|
6191
|
+
msgstr "वातावरण"
|
5742
6192
|
|
5743
6193
|
msgid "errata_id of the content view filter rule"
|
5744
6194
|
msgstr ""
|
@@ -5782,6 +6232,9 @@ msgstr ""
|
|
5782
6232
|
msgid "filter identifier"
|
5783
6233
|
msgstr ""
|
5784
6234
|
|
6235
|
+
msgid "filter identifiers"
|
6236
|
+
msgstr ""
|
6237
|
+
|
5785
6238
|
msgid "filter only environments containing this name"
|
5786
6239
|
msgstr ""
|
5787
6240
|
|
@@ -5794,8 +6247,9 @@ msgstr ""
|
|
5794
6247
|
msgid "foreman-tasks service not running or is not ready yet"
|
5795
6248
|
msgstr ""
|
5796
6249
|
|
6250
|
+
#, fuzzy
|
5797
6251
|
msgid "has already been taken"
|
5798
|
-
msgstr ""
|
6252
|
+
msgstr "नमूना में पहले से ही है"
|
5799
6253
|
|
5800
6254
|
msgid "has already been taken for a product in this organization."
|
5801
6255
|
msgstr ""
|
@@ -5842,23 +6296,29 @@ msgstr ""
|
|
5842
6296
|
msgid "initiating Pulp task"
|
5843
6297
|
msgstr ""
|
5844
6298
|
|
6299
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5845
6300
|
msgid "installing errata..."
|
5846
|
-
msgstr ""
|
6301
|
+
msgstr "इरेटा संस्थापित कर रहा है..."
|
5847
6302
|
|
6303
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5848
6304
|
msgid "installing erratum..."
|
5849
|
-
msgstr ""
|
6305
|
+
msgstr "इरेटा संस्थापित कर रहा है..."
|
5850
6306
|
|
6307
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5851
6308
|
msgid "installing package group..."
|
5852
|
-
msgstr ""
|
6309
|
+
msgstr "संकुल समूह संस्थापित कर रहा है..."
|
5853
6310
|
|
6311
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5854
6312
|
msgid "installing package groups..."
|
5855
|
-
msgstr ""
|
6313
|
+
msgstr "संकुल समूहों को संस्थापित कर रहा है..."
|
5856
6314
|
|
6315
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5857
6316
|
msgid "installing package..."
|
5858
|
-
msgstr ""
|
6317
|
+
msgstr "संकुल संस्थापित कर रहा है..."
|
5859
6318
|
|
6319
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5860
6320
|
msgid "installing packages..."
|
5861
|
-
msgstr ""
|
6321
|
+
msgstr "संकुलों को संस्थापित कर रहा है..."
|
5862
6322
|
|
5863
6323
|
msgid "interpret specified object to return only Repositories that can be associated with specified object. Only 'content_view' & 'content_view_version' are supported."
|
5864
6324
|
msgstr ""
|
@@ -5872,9 +6332,13 @@ msgstr ""
|
|
5872
6332
|
msgid "is already attached to the capsule"
|
5873
6333
|
msgstr ""
|
5874
6334
|
|
6335
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author rajesh
|
5875
6336
|
msgid "is invalid"
|
5876
6337
|
msgstr "अमान्य है"
|
5877
6338
|
|
6339
|
+
msgid "is not enabled. must be one of the following: %s"
|
6340
|
+
msgstr ""
|
6341
|
+
|
5878
6342
|
msgid "label of the environment"
|
5879
6343
|
msgstr ""
|
5880
6344
|
|
@@ -5908,9 +6372,6 @@ msgstr ""
|
|
5908
6372
|
msgid "maximum number of registered content hosts"
|
5909
6373
|
msgstr ""
|
5910
6374
|
|
5911
|
-
msgid "maximum size of each ISO in MB"
|
5912
|
-
msgstr ""
|
5913
|
-
|
5914
6375
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5915
6376
|
msgstr ""
|
5916
6377
|
|
@@ -5923,8 +6384,9 @@ msgstr ""
|
|
5923
6384
|
msgid "must be %{gpg_key} or %{cert}"
|
5924
6385
|
msgstr ""
|
5925
6386
|
|
6387
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5926
6388
|
msgid "must be a positive integer value."
|
5927
|
-
msgstr ""
|
6389
|
+
msgstr "धनात्मक पूर्णांक मान जरूर होना चाहिए."
|
5928
6390
|
|
5929
6391
|
msgid "must be one of the following: %s"
|
5930
6392
|
msgstr ""
|
@@ -5932,17 +6394,21 @@ msgstr ""
|
|
5932
6394
|
msgid "must be one of: %s"
|
5933
6395
|
msgstr ""
|
5934
6396
|
|
6397
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5935
6398
|
msgid "must be unique within one organization"
|
5936
|
-
msgstr ""
|
6399
|
+
msgstr "एक संगठन के भीतर अद्वितीय होना चाहिए"
|
5937
6400
|
|
6401
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5938
6402
|
msgid "must contain '%s'"
|
5939
|
-
msgstr ""
|
6403
|
+
msgstr "'%s' को जरूर समाहित होना चाहिए"
|
5940
6404
|
|
6405
|
+
#, fuzzy
|
5941
6406
|
msgid "must contain GPG Key"
|
5942
|
-
msgstr ""
|
6407
|
+
msgstr "जीपीजी कुंजी"
|
5943
6408
|
|
6409
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5944
6410
|
msgid "must contain at least %s character"
|
5945
|
-
msgstr ""
|
6411
|
+
msgstr "कम से कम %s वर्ण जरूर समाहित करना चाहिए"
|
5946
6412
|
|
5947
6413
|
msgid "must contain valid Public GPG Key"
|
5948
6414
|
msgstr ""
|
@@ -5950,8 +6416,9 @@ msgstr ""
|
|
5950
6416
|
msgid "must contain valid Public GPG Key"
|
5951
6417
|
msgstr ""
|
5952
6418
|
|
6419
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5953
6420
|
msgid "must not contain leading or trailing white spaces."
|
5954
|
-
msgstr ""
|
6421
|
+
msgstr "अग्रणी या पश्चगामी रिक्त स्थान शामिल नहीं करना चाहिए."
|
5955
6422
|
|
5956
6423
|
msgid "name"
|
5957
6424
|
msgstr ""
|
@@ -5980,8 +6447,9 @@ msgstr ""
|
|
5980
6447
|
msgid "name of the subscription"
|
5981
6448
|
msgstr ""
|
5982
6449
|
|
6450
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
5983
6451
|
msgid "name: %s doesn't exist "
|
5984
|
-
msgstr ""
|
6452
|
+
msgstr "नाम: %s मौजूद नहीं है"
|
5985
6453
|
|
5986
6454
|
msgid "new name for the filter"
|
5987
6455
|
msgstr ""
|
@@ -5998,8 +6466,9 @@ msgstr ""
|
|
5998
6466
|
msgid "obtain manifest history for subscriptions"
|
5999
6467
|
msgstr ""
|
6000
6468
|
|
6469
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
6001
6470
|
msgid "of environment must be unique within one organization"
|
6002
|
-
msgstr ""
|
6471
|
+
msgstr "उस वातावरण का जिसे किसी एक संगठन के अंतर्गत जरूर अद्वितीय होना चाहिए"
|
6003
6472
|
|
6004
6473
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
6005
6474
|
msgstr ""
|
@@ -6073,17 +6542,21 @@ msgstr ""
|
|
6073
6542
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6074
6543
|
msgstr ""
|
6075
6544
|
|
6545
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
6076
6546
|
msgid "removing package group..."
|
6077
|
-
msgstr ""
|
6547
|
+
msgstr "संकुल समूह हटा रहा है..."
|
6078
6548
|
|
6549
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
6079
6550
|
msgid "removing package groups..."
|
6080
|
-
msgstr ""
|
6551
|
+
msgstr "संकुल समूहों को हटा रहा है..."
|
6081
6552
|
|
6553
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
6082
6554
|
msgid "removing package..."
|
6083
|
-
msgstr ""
|
6555
|
+
msgstr "संकुल हटा रहा है..."
|
6084
6556
|
|
6557
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
6085
6558
|
msgid "removing packages..."
|
6086
|
-
msgstr ""
|
6559
|
+
msgstr "संकुलों को हटा रहा है..."
|
6087
6560
|
|
6088
6561
|
msgid "repo label"
|
6089
6562
|
msgstr ""
|
@@ -6164,7 +6637,7 @@ msgid "temporarily override feed URL for sync"
|
|
6164
6637
|
msgstr ""
|
6165
6638
|
|
6166
6639
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6167
|
-
msgstr ""
|
6640
|
+
msgstr "निम्नलिखित विशेषताओं को Red Hat प्रदाता के लिए अद्यतन नहीं कर सकते हैं: [%s]"
|
6168
6641
|
|
6169
6642
|
msgid "true if the latest version of the component's content view is desired"
|
6170
6643
|
msgstr ""
|
@@ -6193,17 +6666,21 @@ msgstr ""
|
|
6193
6666
|
msgid "update a filter"
|
6194
6667
|
msgstr ""
|
6195
6668
|
|
6669
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
6196
6670
|
msgid "updating package group..."
|
6197
|
-
msgstr ""
|
6671
|
+
msgstr "संकुल समूह अद्यतन कर रहा है..."
|
6198
6672
|
|
6673
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
6199
6674
|
msgid "updating package groups..."
|
6200
|
-
msgstr ""
|
6675
|
+
msgstr "संकुल समूहों को अद्यतन कर रहा है..."
|
6201
6676
|
|
6677
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
6202
6678
|
msgid "updating package..."
|
6203
|
-
msgstr ""
|
6679
|
+
msgstr "संकुल अद्यतन कर रहा है..."
|
6204
6680
|
|
6681
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author rajesh
|
6205
6682
|
msgid "updating packages..."
|
6206
|
-
msgstr ""
|
6683
|
+
msgstr "संकुलों को अद्यतन कर रहा है..."
|
6207
6684
|
|
6208
6685
|
msgid "url not defined."
|
6209
6686
|
msgstr ""
|