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/mr/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
|
+
# sandeeps <sandeeps@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: Marathi (https://www.transifex.com/foreman/teams/114/mr/)\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:23-0400\n"
|
16
|
+
"Last-Translator: sandeeps <sandeeps@fedoraproject.org>\n"
|
17
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
19
18
|
"Language: mr\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,22 @@ msgstr ""
|
|
42
42
|
msgid " RPMs"
|
43
43
|
msgstr ""
|
44
44
|
|
45
|
-
msgid "
|
45
|
+
msgid " View task details "
|
46
46
|
msgstr ""
|
47
47
|
|
48
|
+
msgid " environment cannot be set to an environment already on its path"
|
49
|
+
msgstr "आधिपासूनच मार्गावर असणारे वातावरणाला सेट कऱणे अशक्य"
|
50
|
+
|
48
51
|
msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
|
49
52
|
msgstr ""
|
50
53
|
|
51
54
|
msgid "%s Available"
|
52
55
|
msgstr ""
|
53
56
|
|
57
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
58
|
+
#, fuzzy
|
54
59
|
msgid "%s Errata"
|
55
|
-
msgstr ""
|
60
|
+
msgstr "एराटा"
|
56
61
|
|
57
62
|
msgid "%s Host"
|
58
63
|
msgid_plural "%s Hosts"
|
@@ -62,14 +67,16 @@ msgstr[1] ""
|
|
62
67
|
msgid "%s Used"
|
63
68
|
msgstr ""
|
64
69
|
|
70
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author sandeeps
|
65
71
|
msgid "%s ago"
|
66
72
|
msgstr "%s पूर्वी"
|
67
73
|
|
68
74
|
msgid "%s has already been deleted"
|
69
75
|
msgstr ""
|
70
76
|
|
77
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
71
78
|
msgid "%s is not a valid package name"
|
72
|
-
msgstr ""
|
79
|
+
msgstr "%s वैध संकुल नाव नाही"
|
73
80
|
|
74
81
|
msgid "%s is unreachable. %s"
|
75
82
|
msgstr ""
|
@@ -77,179 +84,236 @@ msgstr ""
|
|
77
84
|
msgid "%s must be an array."
|
78
85
|
msgstr ""
|
79
86
|
|
87
|
+
#, fuzzy
|
80
88
|
msgid "%{errata} (%{total} other errata)"
|
81
|
-
msgstr ""
|
89
|
+
msgstr "%{errata} (%{rest} इतर एराटा)"
|
82
90
|
|
91
|
+
#, fuzzy
|
83
92
|
msgid "%{errata} (%{total} other errata) install canceled"
|
84
|
-
msgstr ""
|
93
|
+
msgstr "%s (%s इतर एराटा) इंस्टॉलेशन रद्द केले"
|
85
94
|
|
95
|
+
#, fuzzy
|
86
96
|
msgid "%{errata} (%{total} other errata) install failed"
|
87
|
-
msgstr ""
|
97
|
+
msgstr "%s (%s इतर एराटा) प्रतिष्ठापन अपयशी"
|
88
98
|
|
99
|
+
#, fuzzy
|
89
100
|
msgid "%{errata} (%{total} other errata) install timed out"
|
90
|
-
msgstr ""
|
101
|
+
msgstr "%s (%s इतर एराटा) प्रतिष्ठापन वेळ समाप्ति"
|
91
102
|
|
103
|
+
#, fuzzy
|
92
104
|
msgid "%{errata} (%{total} other errata) installed"
|
93
|
-
msgstr ""
|
105
|
+
msgstr "%{errata} (%{rest} इतर एराटा)"
|
94
106
|
|
107
|
+
#, fuzzy
|
95
108
|
msgid "%{errata} erratum install canceled"
|
96
|
-
msgstr ""
|
109
|
+
msgstr "%s एराटम इंस्टॉलेशन रद्द केले"
|
97
110
|
|
111
|
+
#, fuzzy
|
98
112
|
msgid "%{errata} erratum install failed"
|
99
|
-
msgstr ""
|
113
|
+
msgstr "%s एराटम प्रतिष्ठापन अपयशी"
|
100
114
|
|
115
|
+
#, fuzzy
|
101
116
|
msgid "%{errata} erratum install timed out"
|
102
|
-
msgstr ""
|
117
|
+
msgstr "%s एराटम प्रतिष्ठापन वेळसमाप्ति"
|
103
118
|
|
119
|
+
#, fuzzy
|
104
120
|
msgid "%{errata} erratum installed"
|
105
|
-
msgstr ""
|
121
|
+
msgstr "%s एराटम प्रतिष्ठापीत केले"
|
106
122
|
|
107
123
|
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
124
|
msgstr ""
|
109
125
|
|
126
|
+
#, fuzzy
|
110
127
|
msgid "%{group} (%{total} other package groups)"
|
111
|
-
msgstr ""
|
128
|
+
msgstr "%{group} (%{rest} इतर संकुल गट)"
|
112
129
|
|
130
|
+
#, fuzzy
|
113
131
|
msgid "%{group} (%{total} other package groups) install canceled"
|
114
|
-
msgstr ""
|
132
|
+
msgstr "%s (%s इतर संकुल गट) इंस्टॉलेशन रद्द केले"
|
115
133
|
|
134
|
+
#, fuzzy
|
116
135
|
msgid "%{group} (%{total} other package groups) install failed"
|
117
|
-
msgstr ""
|
136
|
+
msgstr "%s (%s इतर संकुल गटे) प्रतिष्ठापन अपयशी"
|
118
137
|
|
138
|
+
#, fuzzy
|
119
139
|
msgid "%{group} (%{total} other package groups) install timed out"
|
120
|
-
msgstr ""
|
140
|
+
msgstr "%s (%s इतर संकुल गटे) प्रतिष्ठापन वेळ समाप्ति"
|
121
141
|
|
142
|
+
#, fuzzy
|
122
143
|
msgid "%{group} (%{total} other package groups) installed"
|
123
|
-
msgstr ""
|
144
|
+
msgstr "%s (%s इतर संकुल गटे) प्रतिष्ठापीत"
|
124
145
|
|
146
|
+
#, fuzzy
|
125
147
|
msgid "%{group} (%{total} other package groups) remove canceled"
|
126
|
-
msgstr ""
|
148
|
+
msgstr "%s (%s इतर संकुल गट) काढून टाकणे रद्द केले"
|
127
149
|
|
150
|
+
#, fuzzy
|
128
151
|
msgid "%{group} (%{total} other package groups) remove failed"
|
129
|
-
msgstr ""
|
152
|
+
msgstr "%s (%s इतर संकुल गटे) काढून टाकणे अपयशी"
|
130
153
|
|
154
|
+
#, fuzzy
|
131
155
|
msgid "%{group} (%{total} other package groups) remove timed out"
|
132
|
-
msgstr ""
|
156
|
+
msgstr "%s (%s इतर संकुल गटे) काढून टाकणे वेळसमाप्ति"
|
133
157
|
|
158
|
+
#, fuzzy
|
134
159
|
msgid "%{group} (%{total} other package groups) removed"
|
135
|
-
msgstr ""
|
160
|
+
msgstr "%{group} (%{rest} इतर संकुल गट)"
|
136
161
|
|
162
|
+
#, fuzzy
|
137
163
|
msgid "%{group} (%{total} other package groups) update canceled"
|
138
|
-
msgstr ""
|
164
|
+
msgstr "%s (%s इतर संकुल गट) सुधारणा रद्द केले"
|
139
165
|
|
166
|
+
#, fuzzy
|
140
167
|
msgid "%{group} (%{total} other package groups) update failed"
|
141
|
-
msgstr ""
|
168
|
+
msgstr "%s (%s इतर संकुल गटे) सुधारणा अपयशी"
|
142
169
|
|
170
|
+
#, fuzzy
|
143
171
|
msgid "%{group} (%{total} other package groups) update timed out"
|
144
|
-
msgstr ""
|
172
|
+
msgstr "%s (%s इतर संकुल गटे) सुधारणा वेळसमाप्ति"
|
145
173
|
|
174
|
+
#, fuzzy
|
146
175
|
msgid "%{group} (%{total} other package groups) updated"
|
147
|
-
msgstr ""
|
176
|
+
msgstr "%{group} (%{rest} इतर संकुल गट)"
|
148
177
|
|
178
|
+
#, fuzzy
|
149
179
|
msgid "%{group} package group install canceled"
|
150
|
-
msgstr ""
|
180
|
+
msgstr "%s संकुल गट इंस्टॉलेशन रद्द केले"
|
151
181
|
|
182
|
+
#, fuzzy
|
152
183
|
msgid "%{group} package group install failed"
|
153
|
-
msgstr ""
|
184
|
+
msgstr "%s संकुल गट प्रतिष्ठापन अपयशी"
|
154
185
|
|
186
|
+
#, fuzzy
|
155
187
|
msgid "%{group} package group install timed out"
|
156
|
-
msgstr ""
|
188
|
+
msgstr "%s संकुल गट प्रतिष्ठापन वेळसमाप्ति"
|
157
189
|
|
190
|
+
#, fuzzy
|
158
191
|
msgid "%{group} package group installed"
|
159
|
-
msgstr ""
|
192
|
+
msgstr "%s संकुल गट प्रतिष्ठापीत केले"
|
160
193
|
|
194
|
+
#, fuzzy
|
161
195
|
msgid "%{group} package group remove canceled"
|
162
|
-
msgstr ""
|
196
|
+
msgstr "%s संकुल गट काढून टाकणे रद्द केले"
|
163
197
|
|
198
|
+
#, fuzzy
|
164
199
|
msgid "%{group} package group remove failed"
|
165
|
-
msgstr ""
|
200
|
+
msgstr "%s संकुल गट काढून टाकणे अपयशी"
|
166
201
|
|
202
|
+
#, fuzzy
|
167
203
|
msgid "%{group} package group remove timed out"
|
168
|
-
msgstr ""
|
204
|
+
msgstr "%s संकुल गट काढून टाकणे वेळसमाप्ति"
|
169
205
|
|
206
|
+
#, fuzzy
|
170
207
|
msgid "%{group} package group removed"
|
171
|
-
msgstr ""
|
208
|
+
msgstr "%s संकुल गट काढून टाकले"
|
172
209
|
|
210
|
+
#, fuzzy
|
173
211
|
msgid "%{group} package group update canceled"
|
174
|
-
msgstr ""
|
212
|
+
msgstr "%s संकुल गट सुधारणा रद्द केले"
|
175
213
|
|
214
|
+
#, fuzzy
|
176
215
|
msgid "%{group} package group update failed"
|
177
|
-
msgstr ""
|
216
|
+
msgstr "%s संकुल गट सुधारणा अपयशी"
|
178
217
|
|
218
|
+
#, fuzzy
|
179
219
|
msgid "%{group} package group update timed out"
|
180
|
-
msgstr ""
|
220
|
+
msgstr "%s संकुल गट सुधारणा वेळसमाप्ति"
|
181
221
|
|
222
|
+
#, fuzzy
|
182
223
|
msgid "%{group} package group updated"
|
183
|
-
msgstr ""
|
224
|
+
msgstr "%s संकुल गट सुधारित केले"
|
184
225
|
|
226
|
+
#, fuzzy
|
185
227
|
msgid "%{package} (%{total} other packages)"
|
186
|
-
msgstr ""
|
228
|
+
msgstr "%{package} (%{rest} इतर संकुल)"
|
187
229
|
|
230
|
+
#, fuzzy
|
188
231
|
msgid "%{package} (%{total} other packages) install canceled"
|
189
|
-
msgstr ""
|
232
|
+
msgstr "%s (%s इतर संकुल) इंस्टॉलेशन रद्द केले"
|
190
233
|
|
234
|
+
#, fuzzy
|
191
235
|
msgid "%{package} (%{total} other packages) install failed"
|
192
|
-
msgstr ""
|
236
|
+
msgstr "%s (%s इतर संकुले) प्रतिष्ठापन अपयशी"
|
193
237
|
|
238
|
+
#, fuzzy
|
194
239
|
msgid "%{package} (%{total} other packages) install timed out"
|
195
|
-
msgstr ""
|
240
|
+
msgstr "%s (%s इतर संकुले) प्रतिष्ठापन वेळ समाप्ति"
|
196
241
|
|
242
|
+
#, fuzzy
|
197
243
|
msgid "%{package} (%{total} other packages) installed"
|
198
|
-
msgstr ""
|
244
|
+
msgstr "%{package} (%{rest} इतर संकुल)"
|
199
245
|
|
246
|
+
#, fuzzy
|
200
247
|
msgid "%{package} (%{total} other packages) remove canceled"
|
201
|
-
msgstr ""
|
248
|
+
msgstr "%s (%s इतर संकुल) काढून टाकणे रद्द केले"
|
202
249
|
|
250
|
+
#, fuzzy
|
203
251
|
msgid "%{package} (%{total} other packages) remove failed"
|
204
|
-
msgstr ""
|
252
|
+
msgstr "%s (%s इतर संकुले) काढून टाकणे अपयशी"
|
205
253
|
|
254
|
+
#, fuzzy
|
206
255
|
msgid "%{package} (%{total} other packages) remove timed out"
|
207
|
-
msgstr ""
|
256
|
+
msgstr "%s (%s इतर संकुले) काढून टाकणे वेळसमाप्ति"
|
208
257
|
|
258
|
+
#, fuzzy
|
209
259
|
msgid "%{package} (%{total} other packages) removed"
|
210
|
-
msgstr ""
|
260
|
+
msgstr "%{package} (%{rest} इतर संकुल)"
|
211
261
|
|
262
|
+
#, fuzzy
|
212
263
|
msgid "%{package} (%{total} other packages) update canceled"
|
213
|
-
msgstr ""
|
264
|
+
msgstr "%s (%s इतर संकुल) सुधारणा रद्द केले"
|
214
265
|
|
266
|
+
#, fuzzy
|
215
267
|
msgid "%{package} (%{total} other packages) update failed"
|
216
|
-
msgstr ""
|
268
|
+
msgstr "%s (%s इतर संकुले) सुधारणा अपयशी"
|
217
269
|
|
270
|
+
#, fuzzy
|
218
271
|
msgid "%{package} (%{total} other packages) update timed out"
|
219
|
-
msgstr ""
|
272
|
+
msgstr "%s (%s इतर संकुले) सुधारणा वेळसमाप्ति"
|
220
273
|
|
274
|
+
#, fuzzy
|
221
275
|
msgid "%{package} (%{total} other packages) updated"
|
222
|
-
msgstr ""
|
276
|
+
msgstr "%{package} (%{rest} इतर संकुल)"
|
223
277
|
|
278
|
+
#, fuzzy
|
224
279
|
msgid "%{package} package install canceled"
|
225
|
-
msgstr ""
|
280
|
+
msgstr "%s संकुल इंस्टॉलेशन रद्द केले"
|
226
281
|
|
282
|
+
#, fuzzy
|
227
283
|
msgid "%{package} package install timed out"
|
228
|
-
msgstr ""
|
284
|
+
msgstr "%s संकुल प्रतिष्ठापन वेळसमाप्ति"
|
229
285
|
|
286
|
+
#, fuzzy
|
230
287
|
msgid "%{package} package remove canceled"
|
231
|
-
msgstr ""
|
288
|
+
msgstr "%s संकुल काढून टाकणे रद्द केले"
|
232
289
|
|
290
|
+
#, fuzzy
|
233
291
|
msgid "%{package} package remove failed"
|
234
|
-
msgstr ""
|
292
|
+
msgstr "%s संकुल काढून टाकणे अपयशी"
|
235
293
|
|
294
|
+
#, fuzzy
|
236
295
|
msgid "%{package} package remove timed out"
|
237
|
-
msgstr ""
|
296
|
+
msgstr "%s संकुल काढून टाकणे वेळसमाप्ति"
|
238
297
|
|
298
|
+
#, fuzzy
|
239
299
|
msgid "%{package} package removed"
|
240
|
-
msgstr ""
|
300
|
+
msgstr "%s संकुल काढून टाकले"
|
241
301
|
|
302
|
+
#, fuzzy
|
242
303
|
msgid "%{package} package update canceled"
|
243
|
-
msgstr ""
|
304
|
+
msgstr "%s संकुल सुधारणा रद्द केले"
|
244
305
|
|
306
|
+
#, fuzzy
|
245
307
|
msgid "%{package} package update failed"
|
246
|
-
msgstr ""
|
308
|
+
msgstr "%s संकुल सुधारणा अपयशी"
|
247
309
|
|
310
|
+
#, fuzzy
|
248
311
|
msgid "%{package} package update timed out"
|
249
|
-
msgstr ""
|
312
|
+
msgstr "%s संकुल सुधारणा वेळसमाप्ति"
|
250
313
|
|
314
|
+
#, fuzzy
|
251
315
|
msgid "%{package} package updated"
|
252
|
-
msgstr ""
|
316
|
+
msgstr "%s संकुल सुधारित केले"
|
253
317
|
|
254
318
|
msgid "%{sla}"
|
255
319
|
msgstr ""
|
@@ -275,8 +339,9 @@ msgstr ""
|
|
275
339
|
msgid ", must be unique to major and version id version."
|
276
340
|
msgstr ""
|
277
341
|
|
342
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
278
343
|
msgid ": '%s' is a built-in environment"
|
279
|
-
msgstr ""
|
344
|
+
msgstr ": '%s' बिल्ट-इन वातावरण आहे"
|
280
345
|
|
281
346
|
msgid ":a_resource identifier"
|
282
347
|
msgstr ""
|
@@ -299,8 +364,9 @@ msgstr ""
|
|
299
364
|
msgid "A content view can be added by using the \"New content view\" button below."
|
300
365
|
msgstr ""
|
301
366
|
|
367
|
+
#, fuzzy
|
302
368
|
msgid "A content_type must be provided."
|
303
|
-
msgstr ""
|
369
|
+
msgstr "किनेम पुरवणे आवश्यक"
|
304
370
|
|
305
371
|
msgid "A large number of errata are unapplied in this content view, so only the first 100 are shown."
|
306
372
|
msgstr ""
|
@@ -311,6 +377,9 @@ msgstr ""
|
|
311
377
|
msgid "A list of subscriptions expiring soon"
|
312
378
|
msgstr ""
|
313
379
|
|
380
|
+
msgid "A new version of "
|
381
|
+
msgstr ""
|
382
|
+
|
314
383
|
msgid "A post-promotion summary of hosts with installable errata"
|
315
384
|
msgstr ""
|
316
385
|
|
@@ -320,7 +389,7 @@ msgstr ""
|
|
320
389
|
msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
|
321
390
|
msgstr ""
|
322
391
|
|
323
|
-
msgid "A smart proxy seems to have been refreshed without pulpcore being running.
|
392
|
+
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
393
|
msgstr ""
|
325
394
|
|
326
395
|
msgid "A summary of available and applicable errata for your hosts"
|
@@ -342,7 +411,7 @@ msgid "Account Number"
|
|
342
411
|
msgstr ""
|
343
412
|
|
344
413
|
msgid "Action"
|
345
|
-
msgstr "
|
414
|
+
msgstr ""
|
346
415
|
|
347
416
|
msgid "Action not allowed for the default smart proxy."
|
348
417
|
msgstr ""
|
@@ -356,22 +425,24 @@ msgstr ""
|
|
356
425
|
msgid "Action with sub plans"
|
357
426
|
msgstr ""
|
358
427
|
|
428
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
359
429
|
msgid "Activation Keys"
|
360
|
-
msgstr ""
|
430
|
+
msgstr "ॲक्टिवेशन किज्"
|
361
431
|
|
362
432
|
msgid "Activation key ID"
|
363
433
|
msgstr ""
|
364
434
|
|
365
|
-
msgid "Activation key for subscription-manager client
|
435
|
+
msgid "Activation key for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. For multiple keys use `activation_keys` param instead."
|
366
436
|
msgstr ""
|
367
437
|
|
368
438
|
msgid "Activation key(s) for Subscription Manager."
|
369
439
|
msgstr ""
|
370
440
|
|
371
|
-
|
372
|
-
msgstr ""
|
373
|
-
|
441
|
+
#, fuzzy
|
374
442
|
msgid "Activation keys and subscriptions can be managed"
|
443
|
+
msgstr "ॲक्टिवेशन कि '%s' निर्माण केले."
|
444
|
+
|
445
|
+
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
446
|
msgstr ""
|
376
447
|
|
377
448
|
msgid "Activation keys: "
|
@@ -380,7 +451,12 @@ msgstr ""
|
|
380
451
|
msgid "Active Subscriptions"
|
381
452
|
msgstr ""
|
382
453
|
|
454
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
455
|
+
#, fuzzy
|
383
456
|
msgid "Active only"
|
457
|
+
msgstr "ॲक्टिवेशन किज्"
|
458
|
+
|
459
|
+
msgid "Add"
|
384
460
|
msgstr ""
|
385
461
|
|
386
462
|
msgid "Add Subscriptions"
|
@@ -389,6 +465,9 @@ msgstr ""
|
|
389
465
|
msgid "Add a subscription to a host"
|
390
466
|
msgstr ""
|
391
467
|
|
468
|
+
msgid "Add component"
|
469
|
+
msgstr ""
|
470
|
+
|
392
471
|
msgid "Add components to the content view"
|
393
472
|
msgstr ""
|
394
473
|
|
@@ -431,6 +510,9 @@ msgstr ""
|
|
431
510
|
msgid "Added Content:"
|
432
511
|
msgstr ""
|
433
512
|
|
513
|
+
msgid "Added component to content view"
|
514
|
+
msgstr ""
|
515
|
+
|
434
516
|
msgid "Adding content units"
|
435
517
|
msgstr ""
|
436
518
|
|
@@ -455,6 +537,12 @@ msgstr ""
|
|
455
537
|
msgid "All errata applied"
|
456
538
|
msgstr ""
|
457
539
|
|
540
|
+
msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
|
541
|
+
msgstr ""
|
542
|
+
|
543
|
+
msgid "Allow hosts to re-register themselves only when they are in build mode"
|
544
|
+
msgstr ""
|
545
|
+
|
458
546
|
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
547
|
msgstr ""
|
460
548
|
|
@@ -464,6 +552,9 @@ msgstr ""
|
|
464
552
|
msgid "Always Use Latest (currently %{version})"
|
465
553
|
msgstr ""
|
466
554
|
|
555
|
+
msgid "Always update to latest version"
|
556
|
+
msgstr ""
|
557
|
+
|
467
558
|
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
559
|
msgstr ""
|
469
560
|
|
@@ -573,17 +664,21 @@ msgstr ""
|
|
573
664
|
msgid "At least one Content View Version must be specified"
|
574
665
|
msgstr ""
|
575
666
|
|
667
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
576
668
|
msgid "At least one activation key must be provided"
|
577
|
-
msgstr ""
|
669
|
+
msgstr "किमान एक ॲक्टिवेशन कि पुरवणे आवश्यक आहे"
|
578
670
|
|
579
671
|
msgid "At least one activation key must have a lifecycle environment and content view assigned to it"
|
580
672
|
msgstr ""
|
581
673
|
|
674
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
582
675
|
msgid "At least one organization must exist."
|
583
|
-
msgstr ""
|
676
|
+
msgstr "किमान एक संस्था पुरवणे आवश्यक आहे."
|
584
677
|
|
678
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
679
|
+
#, fuzzy
|
585
680
|
msgid "Attach a subscription"
|
586
|
-
msgstr ""
|
681
|
+
msgstr "जोडलेल्या सबस्क्रिप्शन्स्"
|
587
682
|
|
588
683
|
msgid "Attach subscriptions"
|
589
684
|
msgstr ""
|
@@ -594,8 +689,14 @@ msgstr ""
|
|
594
689
|
msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
|
595
690
|
msgstr ""
|
596
691
|
|
692
|
+
msgid "Auth URL requires Auth token be set."
|
693
|
+
msgstr ""
|
694
|
+
|
695
|
+
msgid "Auth token requires Auth URL be set."
|
696
|
+
msgstr ""
|
697
|
+
|
597
698
|
msgid "Author"
|
598
|
-
msgstr "
|
699
|
+
msgstr ""
|
599
700
|
|
600
701
|
msgid "Auto Publish"
|
601
702
|
msgstr ""
|
@@ -603,8 +704,10 @@ msgstr ""
|
|
603
704
|
msgid "Auto Publish - Triggered by '%s'"
|
604
705
|
msgstr ""
|
605
706
|
|
707
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
708
|
+
#, fuzzy
|
606
709
|
msgid "Auto attach subscriptions"
|
607
|
-
msgstr ""
|
710
|
+
msgstr "जोडलेल्या सबस्क्रिप्शन्स्"
|
608
711
|
|
609
712
|
msgid "Autopublish"
|
610
713
|
msgstr ""
|
@@ -639,8 +742,9 @@ msgstr ""
|
|
639
742
|
msgid "Batch size to sync repositories in."
|
640
743
|
msgstr ""
|
641
744
|
|
745
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
642
746
|
msgid "Beta"
|
643
|
-
msgstr ""
|
747
|
+
msgstr "बिटा"
|
644
748
|
|
645
749
|
msgid "Bind an entitlement to an allocation"
|
646
750
|
msgstr ""
|
@@ -654,11 +758,14 @@ msgstr ""
|
|
654
758
|
msgid "Branches updated"
|
655
759
|
msgstr ""
|
656
760
|
|
761
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
657
762
|
msgid "Bug Fix"
|
658
|
-
msgstr ""
|
763
|
+
msgstr "बग फिक्स्"
|
659
764
|
|
765
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
766
|
+
#, fuzzy
|
660
767
|
msgid "Bugfix"
|
661
|
-
msgstr ""
|
768
|
+
msgstr "बग फिक्स्"
|
662
769
|
|
663
770
|
msgid "Bulk generate applicability for hosts"
|
664
771
|
msgstr ""
|
@@ -666,14 +773,17 @@ msgstr ""
|
|
666
773
|
msgid "CDN SSL version"
|
667
774
|
msgstr ""
|
668
775
|
|
776
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
669
777
|
msgid "CDN loading error: %s not found"
|
670
|
-
msgstr ""
|
778
|
+
msgstr "CDN लोड करतेवेळी त्रुटी: %s आढळले नाही"
|
671
779
|
|
780
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
672
781
|
msgid "CDN loading error: access denied to %s"
|
673
|
-
msgstr ""
|
782
|
+
msgstr "CDN लोड करतेवेळी त्रुटी: %s करीता प्रवेश बंद"
|
674
783
|
|
784
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
675
785
|
msgid "CDN loading error: access forbidden to %s"
|
676
|
-
msgstr ""
|
786
|
+
msgstr "CDN लोडिंग त्रुटी: %s करीता प्रवेश बंद"
|
677
787
|
|
678
788
|
msgid "CVE identifier"
|
679
789
|
msgstr ""
|
@@ -699,9 +809,11 @@ msgstr ""
|
|
699
809
|
msgid "Can only upload to Yum Repositories."
|
700
810
|
msgstr ""
|
701
811
|
|
812
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
702
813
|
msgid "Can't update the '%s' environment"
|
703
|
-
msgstr ""
|
814
|
+
msgstr "'%s' वातावण सुधारणा अशक्य"
|
704
815
|
|
816
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
705
817
|
msgid "Cancel"
|
706
818
|
msgstr "रद्द करा"
|
707
819
|
|
@@ -711,17 +823,22 @@ msgstr ""
|
|
711
823
|
msgid "Cancel running smart proxy synchronization"
|
712
824
|
msgstr ""
|
713
825
|
|
826
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
827
|
+
#, fuzzy
|
714
828
|
msgid "Canceled"
|
715
|
-
msgstr ""
|
829
|
+
msgstr "रद्द केले."
|
716
830
|
|
717
831
|
msgid "Cancelled"
|
718
832
|
msgstr ""
|
719
833
|
|
834
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
835
|
+
#, fuzzy
|
720
836
|
msgid "Cancelled."
|
721
|
-
msgstr ""
|
837
|
+
msgstr "रद्द केले."
|
722
838
|
|
839
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
723
840
|
msgid "Candlepin Event"
|
724
|
-
msgstr ""
|
841
|
+
msgstr "कँडलपिन इव्हेंट"
|
725
842
|
|
726
843
|
msgid "Candlepin ID of pool to add"
|
727
844
|
msgstr ""
|
@@ -762,14 +879,16 @@ msgstr ""
|
|
762
879
|
msgid "Cannot clone into the Default Content View"
|
763
880
|
msgstr ""
|
764
881
|
|
882
|
+
#, fuzzy
|
765
883
|
msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
|
766
|
-
msgstr ""
|
884
|
+
msgstr "चेंजसेट '%s' नष्ट करणे अशक्य कारण ते पुनरावलोकन फेजमध्ये नाही."
|
767
885
|
|
768
886
|
msgid "Cannot delete Red Hat product: %{product}"
|
769
887
|
msgstr ""
|
770
888
|
|
889
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
771
890
|
msgid "Cannot delete from %s, view does not exist there."
|
772
|
-
msgstr ""
|
891
|
+
msgstr "%s पासून नष्ट करणे अशक्य, दृष्य तेथे अस्तित्वात नाही."
|
773
892
|
|
774
893
|
msgid "Cannot delete product with repositories published in a content view. Product: %{product}, %{view_versions}"
|
775
894
|
msgstr ""
|
@@ -786,17 +905,20 @@ msgstr ""
|
|
786
905
|
msgid "Cannot delete the last Location."
|
787
906
|
msgstr ""
|
788
907
|
|
908
|
+
#, fuzzy
|
789
909
|
msgid "Cannot delete version while it is in environment %s"
|
790
|
-
msgstr ""
|
910
|
+
msgstr "दुसरे वातावरण असणारे टेम्प्लेट संपादित करणे अशक्य"
|
791
911
|
|
912
|
+
#, fuzzy
|
792
913
|
msgid "Cannot delete version while it is in environments: %s"
|
793
|
-
msgstr ""
|
914
|
+
msgstr "दुसरे वातावरण असणारे टेम्प्लेट संपादित करणे अशक्य"
|
794
915
|
|
795
916
|
msgid "Cannot delete version while it is in use by composite content views: %s"
|
796
917
|
msgstr ""
|
797
918
|
|
919
|
+
#, fuzzy
|
798
920
|
msgid "Cannot delete view while it exists in environments"
|
799
|
-
msgstr ""
|
921
|
+
msgstr "दुसरे वातावरण असणारे टेम्प्लेट संपादित करणे अशक्य"
|
800
922
|
|
801
923
|
msgid "Cannot import a composite content view"
|
802
924
|
msgstr ""
|
@@ -822,8 +944,9 @@ msgstr ""
|
|
822
944
|
msgid "Cannot publish default content view"
|
823
945
|
msgstr ""
|
824
946
|
|
947
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
825
948
|
msgid "Cannot register a system to the '%s' environment"
|
826
|
-
msgstr ""
|
949
|
+
msgstr "'%s' वातावरणकरीता प्रणालीची नोंदणी अशक्य"
|
827
950
|
|
828
951
|
msgid "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependent}: %{names}."
|
829
952
|
msgstr ""
|
@@ -885,14 +1008,16 @@ msgstr ""
|
|
885
1008
|
msgid "Click here to go to the tasks page for the task."
|
886
1009
|
msgstr ""
|
887
1010
|
|
1011
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
888
1012
|
msgid "Clone"
|
889
1013
|
msgstr "क्लोन"
|
890
1014
|
|
891
1015
|
msgid "Close"
|
892
|
-
msgstr "
|
1016
|
+
msgstr ""
|
893
1017
|
|
1018
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
894
1019
|
msgid "Collapse All"
|
895
|
-
msgstr ""
|
1020
|
+
msgstr "सर्व संक्षिप्त करा"
|
896
1021
|
|
897
1022
|
msgid "Combined Profile Update"
|
898
1023
|
msgstr ""
|
@@ -903,12 +1028,16 @@ msgstr ""
|
|
903
1028
|
msgid "Comma-separated list of tags to sync for Container Image repository"
|
904
1029
|
msgstr ""
|
905
1030
|
|
1031
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
906
1032
|
msgid "Component"
|
907
|
-
msgstr ""
|
1033
|
+
msgstr "घटक"
|
908
1034
|
|
909
1035
|
msgid "Component Content View"
|
910
1036
|
msgstr ""
|
911
1037
|
|
1038
|
+
msgid "Component content view"
|
1039
|
+
msgstr ""
|
1040
|
+
|
912
1041
|
msgid "Composite Content View"
|
913
1042
|
msgstr ""
|
914
1043
|
|
@@ -930,6 +1059,9 @@ msgstr ""
|
|
930
1059
|
msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
|
931
1060
|
msgstr ""
|
932
1061
|
|
1062
|
+
msgid "Consisting of multiple component content views"
|
1063
|
+
msgstr ""
|
1064
|
+
|
933
1065
|
msgid "Consumed"
|
934
1066
|
msgstr ""
|
935
1067
|
|
@@ -955,7 +1087,7 @@ msgid "Container image tag"
|
|
955
1087
|
msgstr ""
|
956
1088
|
|
957
1089
|
msgid "Content"
|
958
|
-
msgstr ""
|
1090
|
+
msgstr "कंटेंट"
|
959
1091
|
|
960
1092
|
msgid "Content Credential ID"
|
961
1093
|
msgstr ""
|
@@ -972,8 +1104,9 @@ msgstr ""
|
|
972
1104
|
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
973
1105
|
msgstr ""
|
974
1106
|
|
1107
|
+
#, fuzzy
|
975
1108
|
msgid "Content Hosts"
|
976
|
-
msgstr ""
|
1109
|
+
msgstr "कंटेंट"
|
977
1110
|
|
978
1111
|
msgid "Content Source"
|
979
1112
|
msgstr ""
|
@@ -984,8 +1117,9 @@ msgstr ""
|
|
984
1117
|
msgid "Content Types"
|
985
1118
|
msgstr ""
|
986
1119
|
|
1120
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
987
1121
|
msgid "Content View"
|
988
|
-
msgstr ""
|
1122
|
+
msgstr "अंतर्भुत माहिती दृष्य"
|
989
1123
|
|
990
1124
|
msgid "Content View %{view}: Versions: %{versions}"
|
991
1125
|
msgstr ""
|
@@ -999,8 +1133,10 @@ msgstr ""
|
|
999
1133
|
msgid "Content View Details"
|
1000
1134
|
msgstr ""
|
1001
1135
|
|
1136
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1137
|
+
#, fuzzy
|
1002
1138
|
msgid "Content View Filter id"
|
1003
|
-
msgstr ""
|
1139
|
+
msgstr "अंतर्भुत माहिती दृष्य अवलोकन"
|
1004
1140
|
|
1005
1141
|
msgid "Content View Filter identifier"
|
1006
1142
|
msgstr ""
|
@@ -1029,8 +1165,9 @@ msgstr ""
|
|
1029
1165
|
msgid "Content View id"
|
1030
1166
|
msgstr ""
|
1031
1167
|
|
1168
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1032
1169
|
msgid "Content Views"
|
1033
|
-
msgstr ""
|
1170
|
+
msgstr "अंतर्भुत माहिती दृष्य"
|
1034
1171
|
|
1035
1172
|
msgid "Content files to upload. Can be a single file or array of files."
|
1036
1173
|
msgstr ""
|
@@ -1050,14 +1187,21 @@ msgstr ""
|
|
1050
1187
|
msgid "Content type"
|
1051
1188
|
msgstr ""
|
1052
1189
|
|
1190
|
+
msgid "Content type %{content_type_string} does not belong to an enabled repo type."
|
1191
|
+
msgstr ""
|
1192
|
+
|
1193
|
+
msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
|
1194
|
+
msgstr ""
|
1195
|
+
|
1053
1196
|
msgid "Content view"
|
1054
1197
|
msgstr ""
|
1055
1198
|
|
1056
1199
|
msgid "Content view ${name} created"
|
1057
1200
|
msgstr ""
|
1058
1201
|
|
1202
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1059
1203
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1060
|
-
msgstr ""
|
1204
|
+
msgstr "अंतर्भुत माहिती दृष्य '%{view}' वातावरण '%{env}' अंतर्गत नाही"
|
1061
1205
|
|
1062
1206
|
msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
|
1063
1207
|
msgstr ""
|
@@ -1104,17 +1248,23 @@ msgstr ""
|
|
1104
1248
|
msgid "Contract Number"
|
1105
1249
|
msgstr ""
|
1106
1250
|
|
1107
|
-
msgid "Copy
|
1251
|
+
msgid "Copy"
|
1108
1252
|
msgstr ""
|
1109
1253
|
|
1254
|
+
#, fuzzy
|
1255
|
+
msgid "Copy an activation key"
|
1256
|
+
msgstr "ॲक्टिवेशन किज्"
|
1257
|
+
|
1110
1258
|
msgid "Copy version units to library"
|
1111
1259
|
msgstr ""
|
1112
1260
|
|
1261
|
+
#, fuzzy
|
1113
1262
|
msgid "Cores: %s"
|
1114
|
-
msgstr ""
|
1263
|
+
msgstr "कारण: %s"
|
1115
1264
|
|
1265
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
1116
1266
|
msgid "Could not delete organization '%s'."
|
1117
|
-
msgstr ""
|
1267
|
+
msgstr "संस्था '%s' नष्ट करणे अशक्य."
|
1118
1268
|
|
1119
1269
|
msgid "Could not find %{content} with id '%{id}' in repository."
|
1120
1270
|
msgstr ""
|
@@ -1155,14 +1305,16 @@ msgstr ""
|
|
1155
1305
|
msgid "Couldn't find %{type} Filter with id %{id}"
|
1156
1306
|
msgstr ""
|
1157
1307
|
|
1308
|
+
#, fuzzy
|
1158
1309
|
msgid "Couldn't find ContentViewFilter with id=%s"
|
1159
|
-
msgstr ""
|
1310
|
+
msgstr "id '%s' सह उत्पादन आढळले नाही"
|
1160
1311
|
|
1161
1312
|
msgid "Couldn't find Organization '%s'."
|
1162
1313
|
msgstr ""
|
1163
1314
|
|
1315
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1164
1316
|
msgid "Couldn't find activation key '%s'"
|
1165
|
-
msgstr ""
|
1317
|
+
msgstr "ॲक्टिवेशन कि '%s' शोधणे अशक्य"
|
1166
1318
|
|
1167
1319
|
msgid "Couldn't find activation key content view id '%s'"
|
1168
1320
|
msgstr ""
|
@@ -1170,8 +1322,9 @@ msgstr ""
|
|
1170
1322
|
msgid "Couldn't find activation key environment '%s'"
|
1171
1323
|
msgstr ""
|
1172
1324
|
|
1325
|
+
#, fuzzy
|
1173
1326
|
msgid "Couldn't find consumer '%s'"
|
1174
|
-
msgstr ""
|
1327
|
+
msgstr "वापरकर्ता '%s' शोधणे अशक्य"
|
1175
1328
|
|
1176
1329
|
msgid "Couldn't find content host content view id '%s'"
|
1177
1330
|
msgstr ""
|
@@ -1179,20 +1332,28 @@ msgstr ""
|
|
1179
1332
|
msgid "Couldn't find content host environment '%s'"
|
1180
1333
|
msgstr ""
|
1181
1334
|
|
1335
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1182
1336
|
msgid "Couldn't find content view '%s'"
|
1183
|
-
msgstr ""
|
1337
|
+
msgstr "अंतर्भुत माहिती दृष्य '%s' शोधणे अशक्य"
|
1184
1338
|
|
1339
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1340
|
+
#, fuzzy
|
1185
1341
|
msgid "Couldn't find content view version '%s'"
|
1186
|
-
msgstr ""
|
1342
|
+
msgstr "अंतर्भुत माहिती दृष्य '%s' शोधणे अशक्य"
|
1187
1343
|
|
1344
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1345
|
+
#, fuzzy
|
1188
1346
|
msgid "Couldn't find content view versions '%s'"
|
1189
|
-
msgstr ""
|
1347
|
+
msgstr "अंतर्भुत माहिती दृष्य '%s' शोधणे अशक्य"
|
1190
1348
|
|
1349
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
1191
1350
|
msgid "Couldn't find environment '%s'"
|
1192
|
-
msgstr ""
|
1351
|
+
msgstr "वातावरण '%s' आढळले नाही"
|
1193
1352
|
|
1353
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1354
|
+
#, fuzzy
|
1194
1355
|
msgid "Couldn't find errata ids '%s'"
|
1195
|
-
msgstr ""
|
1356
|
+
msgstr "संस्था '%s' शोधणे अशक्य"
|
1196
1357
|
|
1197
1358
|
msgid "Couldn't find host collection '%s'"
|
1198
1359
|
msgstr ""
|
@@ -1200,29 +1361,35 @@ msgstr ""
|
|
1200
1361
|
msgid "Couldn't find host with host id '%s'"
|
1201
1362
|
msgstr ""
|
1202
1363
|
|
1364
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1203
1365
|
msgid "Couldn't find organization '%s'"
|
1204
|
-
msgstr ""
|
1366
|
+
msgstr "संस्था '%s' शोधणे अशक्य"
|
1205
1367
|
|
1368
|
+
#, fuzzy
|
1206
1369
|
msgid "Couldn't find prior-environment '%s'"
|
1207
|
-
msgstr ""
|
1370
|
+
msgstr "वातावरण '%s' आढळले नाही"
|
1208
1371
|
|
1372
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1209
1373
|
msgid "Couldn't find product with id '%s'"
|
1210
|
-
msgstr ""
|
1374
|
+
msgstr "id '%s' सह उत्पादन आढळले नाही"
|
1211
1375
|
|
1376
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1212
1377
|
msgid "Couldn't find repository '%s'"
|
1213
|
-
msgstr ""
|
1378
|
+
msgstr "रेपॉजिटरि '%s' शोधणे अशक्य"
|
1214
1379
|
|
1215
1380
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1216
1381
|
msgstr ""
|
1217
1382
|
|
1383
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
1218
1384
|
msgid "Couldn't find subject of synchronization"
|
1219
|
-
msgstr ""
|
1385
|
+
msgstr "सिंक्रोनाइजेशनचा विषय आढळले नाही"
|
1220
1386
|
|
1221
1387
|
msgid "Count"
|
1222
1388
|
msgstr ""
|
1223
1389
|
|
1390
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
1224
1391
|
msgid "Create"
|
1225
|
-
msgstr ""
|
1392
|
+
msgstr "निर्माण करा"
|
1226
1393
|
|
1227
1394
|
msgid "Create Export History"
|
1228
1395
|
msgstr ""
|
@@ -1272,6 +1439,12 @@ msgstr ""
|
|
1272
1439
|
msgid "Create an upload request"
|
1273
1440
|
msgstr ""
|
1274
1441
|
|
1442
|
+
msgid "Create content view"
|
1443
|
+
msgstr ""
|
1444
|
+
|
1445
|
+
msgid "Create filter"
|
1446
|
+
msgstr ""
|
1447
|
+
|
1275
1448
|
msgid "Create organization"
|
1276
1449
|
msgstr ""
|
1277
1450
|
|
@@ -1290,14 +1463,16 @@ msgstr ""
|
|
1290
1463
|
msgid "Current organization not set."
|
1291
1464
|
msgstr ""
|
1292
1465
|
|
1466
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1293
1467
|
msgid "Custom Content Repositories"
|
1294
|
-
msgstr ""
|
1468
|
+
msgstr "पसंतीचे कंटेंट रेपॉजिटरिज्"
|
1295
1469
|
|
1296
1470
|
msgid "Custom cron expression only needs to be set for interval value of custom cron"
|
1297
1471
|
msgstr ""
|
1298
1472
|
|
1473
|
+
#, fuzzy
|
1299
1474
|
msgid "Custom repositories cannot be disabled."
|
1300
|
-
msgstr ""
|
1475
|
+
msgstr "अपरिचीत रेपॉजिटरि लेबल: %s"
|
1301
1476
|
|
1302
1477
|
msgid "Database connection"
|
1303
1478
|
msgstr ""
|
@@ -1305,8 +1480,9 @@ msgstr ""
|
|
1305
1480
|
msgid "Date"
|
1306
1481
|
msgstr ""
|
1307
1482
|
|
1483
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
1308
1484
|
msgid "Date format is incorrect."
|
1309
|
-
msgstr ""
|
1485
|
+
msgstr "दिनांक रूपण अयोग्य आहे."
|
1310
1486
|
|
1311
1487
|
msgid "Days Remaining"
|
1312
1488
|
msgstr ""
|
@@ -1320,8 +1496,9 @@ msgstr ""
|
|
1320
1496
|
msgid "Deb Packages"
|
1321
1497
|
msgstr ""
|
1322
1498
|
|
1499
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
1323
1500
|
msgid "Debug Certificate"
|
1324
|
-
msgstr ""
|
1501
|
+
msgstr "डिबग प्रमाणपत्र"
|
1325
1502
|
|
1326
1503
|
msgid "Debug RPM"
|
1327
1504
|
msgstr ""
|
@@ -1356,8 +1533,9 @@ msgstr ""
|
|
1356
1533
|
msgid "Default Smart Proxy download policy"
|
1357
1534
|
msgstr ""
|
1358
1535
|
|
1536
|
+
#, fuzzy
|
1359
1537
|
msgid "Default System SLA"
|
1360
|
-
msgstr ""
|
1538
|
+
msgstr "प्रणाली गट नष्ट करा"
|
1361
1539
|
|
1362
1540
|
msgid "Default content view versions cannot be promoted"
|
1363
1541
|
msgstr ""
|
@@ -1422,6 +1600,7 @@ msgstr ""
|
|
1422
1600
|
msgid "Default user data for new Operating Systems created from synced content"
|
1423
1601
|
msgstr ""
|
1424
1602
|
|
1603
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author sandeeps
|
1425
1604
|
msgid "Delete"
|
1426
1605
|
msgstr "नष्ट करा"
|
1427
1606
|
|
@@ -1431,11 +1610,13 @@ msgstr ""
|
|
1431
1610
|
msgid "Delete Host upon unregister"
|
1432
1611
|
msgstr ""
|
1433
1612
|
|
1613
|
+
#, fuzzy
|
1434
1614
|
msgid "Delete Lifecycle Environment"
|
1435
|
-
msgstr ""
|
1615
|
+
msgstr "वातावरनांतर्फे"
|
1436
1616
|
|
1617
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1437
1618
|
msgid "Delete Manifest"
|
1438
|
-
msgstr ""
|
1619
|
+
msgstr "मॅनिफेस्ट नष्ट करा"
|
1439
1620
|
|
1440
1621
|
msgid "Delete Package Group"
|
1441
1622
|
msgstr ""
|
@@ -1470,9 +1651,13 @@ msgstr ""
|
|
1470
1651
|
msgid "Delete manifest from Red Hat provider"
|
1471
1652
|
msgstr ""
|
1472
1653
|
|
1473
|
-
msgid "
|
1654
|
+
msgid "Delete multiple filters from a content view"
|
1474
1655
|
msgstr ""
|
1475
1656
|
|
1657
|
+
#, fuzzy
|
1658
|
+
msgid "Deleted consumer '%s'"
|
1659
|
+
msgstr "वापरकर्ता '%s' नष्ट केले"
|
1660
|
+
|
1476
1661
|
msgid "Deleted from %{environment}"
|
1477
1662
|
msgstr ""
|
1478
1663
|
|
@@ -1480,7 +1665,7 @@ msgid "Deleting manifest in '%{subject}' failed."
|
|
1480
1665
|
msgstr ""
|
1481
1666
|
|
1482
1667
|
msgid "Description"
|
1483
|
-
msgstr "
|
1668
|
+
msgstr ""
|
1484
1669
|
|
1485
1670
|
msgid "Description for the content view"
|
1486
1671
|
msgstr ""
|
@@ -1501,7 +1686,7 @@ msgid "Destination Server name"
|
|
1501
1686
|
msgstr ""
|
1502
1687
|
|
1503
1688
|
msgid "Destroy"
|
1504
|
-
msgstr "
|
1689
|
+
msgstr ""
|
1505
1690
|
|
1506
1691
|
msgid "Destroy Content Host"
|
1507
1692
|
msgstr ""
|
@@ -1543,7 +1728,10 @@ msgid "Destroy one or more repositories"
|
|
1543
1728
|
msgstr ""
|
1544
1729
|
|
1545
1730
|
msgid "Details"
|
1546
|
-
msgstr "
|
1731
|
+
msgstr ""
|
1732
|
+
|
1733
|
+
msgid "Determining settings for ${name}"
|
1734
|
+
msgstr ""
|
1547
1735
|
|
1548
1736
|
msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
|
1549
1737
|
msgstr ""
|
@@ -1599,14 +1787,15 @@ msgstr ""
|
|
1599
1787
|
msgid "Duplicate branches specified - %{branches}"
|
1600
1788
|
msgstr ""
|
1601
1789
|
|
1790
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
1602
1791
|
msgid "Duration"
|
1603
|
-
msgstr ""
|
1792
|
+
msgstr "कालावधि"
|
1604
1793
|
|
1605
1794
|
msgid "ERRATA ADVISORY"
|
1606
1795
|
msgstr ""
|
1607
1796
|
|
1608
1797
|
msgid "Edit"
|
1609
|
-
msgstr "
|
1798
|
+
msgstr ""
|
1610
1799
|
|
1611
1800
|
msgid "Editing Entitlements"
|
1612
1801
|
msgstr ""
|
@@ -1614,11 +1803,13 @@ msgstr ""
|
|
1614
1803
|
msgid "Either both parameters 'content_view_id' and 'environment_id' should be specified or neither should be specified"
|
1615
1804
|
msgstr ""
|
1616
1805
|
|
1806
|
+
#, fuzzy
|
1617
1807
|
msgid "Either environments or versions must be specified."
|
1618
|
-
msgstr ""
|
1808
|
+
msgstr "एकतर संस्था ID किंवा वातावरण ID यास निर्देशीत करणे आवश्यक आहे"
|
1619
1809
|
|
1810
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1620
1811
|
msgid "Either organization ID or environment ID needs to be specified"
|
1621
|
-
msgstr ""
|
1812
|
+
msgstr "एकतर संस्था ID किंवा वातावरण ID यास निर्देशीत करणे आवश्यक आहे"
|
1622
1813
|
|
1623
1814
|
msgid "Either packages or groups must be provided"
|
1624
1815
|
msgstr ""
|
@@ -1645,7 +1836,7 @@ msgid "Enable/Disable auto publish of composite view"
|
|
1645
1836
|
msgstr ""
|
1646
1837
|
|
1647
1838
|
msgid "Enabled"
|
1648
|
-
msgstr "
|
1839
|
+
msgstr ""
|
1649
1840
|
|
1650
1841
|
msgid "Enabled Repositories"
|
1651
1842
|
msgstr ""
|
@@ -1659,44 +1850,51 @@ msgstr ""
|
|
1659
1850
|
msgid "Ends"
|
1660
1851
|
msgstr ""
|
1661
1852
|
|
1853
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1662
1854
|
msgid "Enhancement"
|
1663
|
-
msgstr ""
|
1855
|
+
msgstr "सुधारणा"
|
1664
1856
|
|
1665
1857
|
msgid "Entitlements"
|
1666
1858
|
msgstr ""
|
1667
1859
|
|
1860
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
1668
1861
|
msgid "Environment"
|
1669
1862
|
msgstr "वातावरण"
|
1670
1863
|
|
1671
1864
|
msgid "Environment IDs"
|
1672
1865
|
msgstr ""
|
1673
1866
|
|
1867
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
1674
1868
|
msgid "Environment cannot be in its own promotion path"
|
1675
|
-
msgstr ""
|
1869
|
+
msgstr "वातावरण स्वतःच्या प्रमोशन मार्गावर असू शकत नाही"
|
1676
1870
|
|
1677
1871
|
msgid "Environment identifier"
|
1678
1872
|
msgstr ""
|
1679
1873
|
|
1680
1874
|
msgid "Environments"
|
1681
|
-
msgstr "
|
1875
|
+
msgstr ""
|
1682
1876
|
|
1877
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
1683
1878
|
msgid "Errata"
|
1684
|
-
msgstr ""
|
1879
|
+
msgstr "एराटा"
|
1685
1880
|
|
1881
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
1882
|
+
#, fuzzy
|
1686
1883
|
msgid "Errata ID"
|
1687
|
-
msgstr ""
|
1884
|
+
msgstr "एराटा"
|
1688
1885
|
|
1689
1886
|
msgid "Errata Install"
|
1690
|
-
msgstr ""
|
1887
|
+
msgstr "एराटा प्रतिष्ठापन"
|
1691
1888
|
|
1692
1889
|
msgid "Errata Install scheduled by %s"
|
1693
|
-
msgstr ""
|
1890
|
+
msgstr "%s तर्फे एराटा प्रतिष्ठापन क्रमवारित लावले"
|
1694
1891
|
|
1695
1892
|
msgid "Errata id of the erratum (RHSA-2012:108)"
|
1696
1893
|
msgstr ""
|
1697
1894
|
|
1895
|
+
#, fuzzy
|
1698
1896
|
msgid "Errata mail"
|
1699
|
-
msgstr ""
|
1897
|
+
msgstr "एराटा प्रतिष्ठापन"
|
1700
1898
|
|
1701
1899
|
msgid "Errata to exclusively include in the action"
|
1702
1900
|
msgstr ""
|
@@ -1704,21 +1902,25 @@ msgstr ""
|
|
1704
1902
|
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
1903
|
msgstr ""
|
1706
1904
|
|
1905
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
1906
|
+
#, fuzzy
|
1707
1907
|
msgid "Erratum"
|
1708
|
-
msgstr ""
|
1908
|
+
msgstr "एराटा"
|
1709
1909
|
|
1910
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1710
1911
|
msgid "Erratum Install Canceled"
|
1711
|
-
msgstr ""
|
1912
|
+
msgstr "एराटम इंस्टॉलेशन रद्द केले"
|
1712
1913
|
|
1713
1914
|
msgid "Erratum Install Complete"
|
1714
|
-
msgstr ""
|
1915
|
+
msgstr "एराटम प्रतिष्ठापन पूर्ण झाले"
|
1715
1916
|
|
1716
1917
|
msgid "Erratum Install Failed"
|
1717
|
-
msgstr ""
|
1918
|
+
msgstr "एराटम प्रतिष्ठापन अपयशी"
|
1718
1919
|
|
1719
1920
|
msgid "Erratum Install Timed Out"
|
1720
|
-
msgstr ""
|
1921
|
+
msgstr "एराटम प्रतिष्ठापन वेळ समाप्ति"
|
1721
1922
|
|
1923
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
1722
1924
|
msgid "Error"
|
1723
1925
|
msgstr "त्रुटी"
|
1724
1926
|
|
@@ -1746,8 +1948,9 @@ msgstr ""
|
|
1746
1948
|
msgid "Exit"
|
1747
1949
|
msgstr ""
|
1748
1950
|
|
1951
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
1749
1952
|
msgid "Expand All"
|
1750
|
-
msgstr ""
|
1953
|
+
msgstr "सर्व विस्तारित करा"
|
1751
1954
|
|
1752
1955
|
msgid "Expire soon days"
|
1753
1956
|
msgstr ""
|
@@ -1764,24 +1967,20 @@ msgstr ""
|
|
1764
1967
|
msgid "Export Types"
|
1765
1968
|
msgstr ""
|
1766
1969
|
|
1767
|
-
msgid "Export a repository"
|
1768
|
-
msgstr ""
|
1769
|
-
|
1770
1970
|
msgid "Export as CSV"
|
1771
1971
|
msgstr ""
|
1772
1972
|
|
1773
1973
|
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1774
1974
|
msgstr ""
|
1775
1975
|
|
1776
|
-
msgid "Export to ISO format"
|
1777
|
-
msgstr ""
|
1778
|
-
|
1779
1976
|
msgid "Exported version"
|
1780
1977
|
msgstr ""
|
1781
1978
|
|
1979
|
+
#, fuzzy
|
1782
1980
|
msgid "Facts successfully updated."
|
1783
|
-
msgstr ""
|
1981
|
+
msgstr "यशस्वीरित्या निर्माण केले."
|
1784
1982
|
|
1983
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author sandeeps
|
1785
1984
|
msgid "Failed"
|
1786
1985
|
msgstr "अपयशी"
|
1787
1986
|
|
@@ -1841,6 +2040,9 @@ msgstr ""
|
|
1841
2040
|
msgid "Filter composite versions whose publish was triggered by the specified component version"
|
1842
2041
|
msgstr ""
|
1843
2042
|
|
2043
|
+
msgid "Filter created"
|
2044
|
+
msgstr ""
|
2045
|
+
|
1844
2046
|
msgid "Filter only composite content views"
|
1845
2047
|
msgstr ""
|
1846
2048
|
|
@@ -1865,6 +2067,9 @@ msgstr ""
|
|
1865
2067
|
msgid "Filter products by sync plan id"
|
1866
2068
|
msgstr ""
|
1867
2069
|
|
2070
|
+
msgid "Filter successfully deleted"
|
2071
|
+
msgstr ""
|
2072
|
+
|
1868
2073
|
msgid "Filter versions by environment"
|
1869
2074
|
msgstr ""
|
1870
2075
|
|
@@ -1878,7 +2083,10 @@ msgid "Filtered index content"
|
|
1878
2083
|
msgstr ""
|
1879
2084
|
|
1880
2085
|
msgid "Filters"
|
1881
|
-
msgstr "
|
2086
|
+
msgstr ""
|
2087
|
+
|
2088
|
+
msgid "Filters successfully deleted"
|
2089
|
+
msgstr ""
|
1882
2090
|
|
1883
2091
|
msgid "Finish action timeout"
|
1884
2092
|
msgstr ""
|
@@ -1921,8 +2129,9 @@ msgstr ""
|
|
1921
2129
|
msgid "GPG Key URL"
|
1922
2130
|
msgstr ""
|
1923
2131
|
|
2132
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
1924
2133
|
msgid "Generate and Download"
|
1925
|
-
msgstr ""
|
2134
|
+
msgstr "निर्माण व डाऊनलोड करा"
|
1926
2135
|
|
1927
2136
|
msgid "Generate host applicability"
|
1928
2137
|
msgstr ""
|
@@ -1976,11 +2185,12 @@ msgid "Has to be > 0"
|
|
1976
2185
|
msgstr ""
|
1977
2186
|
|
1978
2187
|
msgid "History"
|
1979
|
-
msgstr "
|
2188
|
+
msgstr ""
|
1980
2189
|
|
1981
2190
|
msgid "History will appear here when the content view is published or promoted."
|
1982
2191
|
msgstr ""
|
1983
2192
|
|
2193
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
1984
2194
|
msgid "Host"
|
1985
2195
|
msgstr "यजमान"
|
1986
2196
|
|
@@ -1993,6 +2203,9 @@ msgstr ""
|
|
1993
2203
|
msgid "Host '%{name}' does not belong to an organization"
|
1994
2204
|
msgstr ""
|
1995
2205
|
|
2206
|
+
msgid "Host Can Re-Register Only In Build"
|
2207
|
+
msgstr ""
|
2208
|
+
|
1996
2209
|
msgid "Host Collection name"
|
1997
2210
|
msgstr ""
|
1998
2211
|
|
@@ -2011,6 +2224,9 @@ msgstr ""
|
|
2011
2224
|
msgid "Host Profile Assume"
|
2012
2225
|
msgstr ""
|
2013
2226
|
|
2227
|
+
msgid "Host Profile Can Change In Build"
|
2228
|
+
msgstr ""
|
2229
|
+
|
2014
2230
|
msgid "Host Subscription Status"
|
2015
2231
|
msgstr ""
|
2016
2232
|
|
@@ -2053,7 +2269,7 @@ msgstr ""
|
|
2053
2269
|
msgid "Host id to list applicable packages for"
|
2054
2270
|
msgstr ""
|
2055
2271
|
|
2056
|
-
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this
|
2272
|
+
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
2273
|
msgstr ""
|
2058
2274
|
|
2059
2275
|
msgid "Host with ID %s already exists in the host collection."
|
@@ -2140,11 +2356,9 @@ msgstr ""
|
|
2140
2356
|
msgid "ID of the sync plan"
|
2141
2357
|
msgstr ""
|
2142
2358
|
|
2359
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2143
2360
|
msgid "ID: %s doesn't exist "
|
2144
|
-
msgstr ""
|
2145
|
-
|
2146
|
-
msgid "ISO export must be enabled when specifying ISO size"
|
2147
|
-
msgstr ""
|
2361
|
+
msgstr "ID: %s अस्तित्वात नाही "
|
2148
2362
|
|
2149
2363
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2150
2364
|
msgstr ""
|
@@ -2267,7 +2481,7 @@ msgid "Immediate"
|
|
2267
2481
|
msgstr ""
|
2268
2482
|
|
2269
2483
|
msgid "Import"
|
2270
|
-
msgstr "
|
2484
|
+
msgstr ""
|
2271
2485
|
|
2272
2486
|
msgid "Import Content View Version"
|
2273
2487
|
msgstr ""
|
@@ -2275,8 +2489,9 @@ msgstr ""
|
|
2275
2489
|
msgid "Import Default Content View"
|
2276
2490
|
msgstr ""
|
2277
2491
|
|
2492
|
+
#, fuzzy
|
2278
2493
|
msgid "Import Manifest"
|
2279
|
-
msgstr ""
|
2494
|
+
msgstr "आयात करा"
|
2280
2495
|
|
2281
2496
|
msgid "Import New Manifest"
|
2282
2497
|
msgstr ""
|
@@ -2308,8 +2523,9 @@ msgstr ""
|
|
2308
2523
|
msgid "Import a content view version to the library"
|
2309
2524
|
msgstr ""
|
2310
2525
|
|
2526
|
+
#, fuzzy
|
2311
2527
|
msgid "Import facts"
|
2312
|
-
msgstr ""
|
2528
|
+
msgstr "आयात करा"
|
2313
2529
|
|
2314
2530
|
msgid "Import uploads into a repository"
|
2315
2531
|
msgstr ""
|
@@ -2326,6 +2542,9 @@ msgstr ""
|
|
2326
2542
|
msgid "In Progress"
|
2327
2543
|
msgstr ""
|
2328
2544
|
|
2545
|
+
msgid "In progress"
|
2546
|
+
msgstr ""
|
2547
|
+
|
2329
2548
|
msgid "Include"
|
2330
2549
|
msgstr ""
|
2331
2550
|
|
@@ -2359,8 +2578,9 @@ msgstr ""
|
|
2359
2578
|
msgid "Index content"
|
2360
2579
|
msgstr ""
|
2361
2580
|
|
2581
|
+
#, fuzzy
|
2362
2582
|
msgid "Index errata"
|
2363
|
-
msgstr ""
|
2583
|
+
msgstr "एराटम प्रतिष्ठापीत करत आहे..."
|
2364
2584
|
|
2365
2585
|
msgid "Index module streams"
|
2366
2586
|
msgstr ""
|
@@ -2389,20 +2609,23 @@ msgstr ""
|
|
2389
2609
|
msgid "Install errata via Katello interface"
|
2390
2610
|
msgstr ""
|
2391
2611
|
|
2612
|
+
#, fuzzy
|
2392
2613
|
msgid "Install erratum"
|
2393
|
-
msgstr ""
|
2614
|
+
msgstr "एराटम प्रतिष्ठापीत करत आहे..."
|
2394
2615
|
|
2395
2616
|
msgid "Install erratum for %s"
|
2396
2617
|
msgstr ""
|
2397
2618
|
|
2619
|
+
#, fuzzy
|
2398
2620
|
msgid "Install package"
|
2399
|
-
msgstr ""
|
2621
|
+
msgstr "संकुल प्रतिष्ठापीत करत आहे..."
|
2400
2622
|
|
2401
2623
|
msgid "Install package for %s"
|
2402
2624
|
msgstr ""
|
2403
2625
|
|
2626
|
+
#, fuzzy
|
2404
2627
|
msgid "Install package group"
|
2405
|
-
msgstr ""
|
2628
|
+
msgstr "संकुल गट प्रतिष्ठापीत करत आहे..."
|
2406
2629
|
|
2407
2630
|
msgid "Install package group via Katello interface"
|
2408
2631
|
msgstr ""
|
@@ -2425,17 +2648,21 @@ msgstr ""
|
|
2425
2648
|
msgid "Installation of package(s) requested: %{packages}"
|
2426
2649
|
msgstr ""
|
2427
2650
|
|
2651
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2428
2652
|
msgid "Installed Packages"
|
2429
|
-
msgstr ""
|
2653
|
+
msgstr "इनस्टॉल्ड् संकुले"
|
2430
2654
|
|
2655
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2431
2656
|
msgid "Installing Erratum..."
|
2432
|
-
msgstr ""
|
2657
|
+
msgstr "एराटम प्रतिष्ठापीत करत आहे..."
|
2433
2658
|
|
2659
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2434
2660
|
msgid "Installing Package Group..."
|
2435
|
-
msgstr ""
|
2661
|
+
msgstr "संकुल गट प्रतिष्ठापीत करत आहे..."
|
2436
2662
|
|
2663
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2437
2664
|
msgid "Installing Package..."
|
2438
|
-
msgstr ""
|
2665
|
+
msgstr "संकुल प्रतिष्ठापीत करत आहे..."
|
2439
2666
|
|
2440
2667
|
msgid "Instance update"
|
2441
2668
|
msgstr ""
|
@@ -2461,18 +2688,17 @@ msgstr ""
|
|
2461
2688
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2462
2689
|
msgstr ""
|
2463
2690
|
|
2691
|
+
#, fuzzy
|
2464
2692
|
msgid "Invalid content label: %s"
|
2465
|
-
msgstr ""
|
2693
|
+
msgstr "अवैध स्तर"
|
2466
2694
|
|
2695
|
+
#, fuzzy
|
2467
2696
|
msgid "Invalid content type %s"
|
2468
|
-
msgstr ""
|
2697
|
+
msgstr "अवैध स्तर"
|
2469
2698
|
|
2470
2699
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2471
2700
|
msgstr ""
|
2472
2701
|
|
2473
|
-
msgid "Invalid date provided."
|
2474
|
-
msgstr ""
|
2475
|
-
|
2476
2702
|
msgid "Invalid date range. The erratum filter rule start date must come before the end date"
|
2477
2703
|
msgstr ""
|
2478
2704
|
|
@@ -2482,8 +2708,9 @@ msgstr ""
|
|
2482
2708
|
msgid "Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'"
|
2483
2709
|
msgstr ""
|
2484
2710
|
|
2711
|
+
#, fuzzy
|
2485
2712
|
msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
|
2486
|
-
msgstr ""
|
2713
|
+
msgstr "अवैध स्रोत प्रकार '%{resource_type}'. स्रोत प्रकारे '%{possible_types}' पैकी एक असू शकते"
|
2487
2714
|
|
2488
2715
|
msgid "Invalid event_type %s"
|
2489
2716
|
msgstr ""
|
@@ -2491,11 +2718,13 @@ msgstr ""
|
|
2491
2718
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
2492
2719
|
msgstr ""
|
2493
2720
|
|
2721
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
2494
2722
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2495
|
-
msgstr ""
|
2723
|
+
msgstr "या कार्यकरीता विनंतीमध्ये अवैध घटके पाठवले. कृपया प्रणाली प्रशासकाशी संपर्क करा."
|
2496
2724
|
|
2725
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2497
2726
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2498
|
-
msgstr ""
|
2727
|
+
msgstr "अवैध घटक पाठवले. तुम्ही पत्ता चुकिच्या प्रमाणे टाइप केले. यासह अडचण आढळल्यास, कृपया प्रशासकाशी संपर्क करा."
|
2499
2728
|
|
2500
2729
|
msgid "Invalid params provided - content_type must be one of %s"
|
2501
2730
|
msgstr ""
|
@@ -2581,8 +2810,9 @@ msgstr ""
|
|
2581
2810
|
msgid "Learn more about adding Subscription Manifests"
|
2582
2811
|
msgstr ""
|
2583
2812
|
|
2813
|
+
#, fuzzy
|
2584
2814
|
msgid "Library lifecycle environments may not be deleted."
|
2585
|
-
msgstr ""
|
2815
|
+
msgstr "वातावरण '%s' नष्ट केले."
|
2586
2816
|
|
2587
2817
|
msgid "Library repository id to restrict comparisons to"
|
2588
2818
|
msgstr ""
|
@@ -2602,8 +2832,9 @@ msgstr ""
|
|
2602
2832
|
msgid "Lifecycle Environment ID"
|
2603
2833
|
msgstr ""
|
2604
2834
|
|
2835
|
+
#, fuzzy
|
2605
2836
|
msgid "Lifecycle Environments"
|
2606
|
-
msgstr ""
|
2837
|
+
msgstr "वातावरनांतर्फे"
|
2607
2838
|
|
2608
2839
|
msgid "Lifecycle environment"
|
2609
2840
|
msgstr ""
|
@@ -2713,7 +2944,7 @@ msgstr ""
|
|
2713
2944
|
msgid "List of Errata ids"
|
2714
2945
|
msgstr ""
|
2715
2946
|
|
2716
|
-
msgid "List of Errata ids to install. Will be removed in
|
2947
|
+
msgid "List of Errata ids to install. Will be removed in %s"
|
2717
2948
|
msgstr ""
|
2718
2949
|
|
2719
2950
|
msgid "List of Products for sync plan"
|
@@ -2722,7 +2953,7 @@ msgstr ""
|
|
2722
2953
|
msgid "List of component content view version ids for composite views"
|
2723
2954
|
msgstr ""
|
2724
2955
|
|
2725
|
-
msgid "List of content (e.g. package names, package group names or errata ids)"
|
2956
|
+
msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
|
2726
2957
|
msgstr ""
|
2727
2958
|
|
2728
2959
|
msgid "List of content (e.g. package or package group names)"
|
@@ -2770,7 +3001,7 @@ msgstr ""
|
|
2770
3001
|
msgid "List of hypervisor guest uuids"
|
2771
3002
|
msgstr ""
|
2772
3003
|
|
2773
|
-
msgid "List of package group names"
|
3004
|
+
msgid "List of package group names (Deprecated)"
|
2774
3005
|
msgstr ""
|
2775
3006
|
|
2776
3007
|
msgid "List of package names"
|
@@ -2855,7 +3086,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
|
|
2855
3086
|
msgstr ""
|
2856
3087
|
|
2857
3088
|
msgid "Loading"
|
2858
|
-
msgstr "
|
3089
|
+
msgstr ""
|
2859
3090
|
|
2860
3091
|
msgid "Make copy of a content view"
|
2861
3092
|
msgstr ""
|
@@ -2929,6 +3160,7 @@ msgstr ""
|
|
2929
3160
|
msgid "Medium IDs"
|
2930
3161
|
msgstr ""
|
2931
3162
|
|
3163
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
2932
3164
|
msgid "Message"
|
2933
3165
|
msgstr "संदेश"
|
2934
3166
|
|
@@ -2941,6 +3173,9 @@ msgstr ""
|
|
2941
3173
|
msgid "Mismatched"
|
2942
3174
|
msgstr ""
|
2943
3175
|
|
3176
|
+
msgid "Missing activation key!"
|
3177
|
+
msgstr ""
|
3178
|
+
|
2944
3179
|
msgid "Missing arguments %{substitutions} for %{content_url}"
|
2945
3180
|
msgstr ""
|
2946
3181
|
|
@@ -3011,11 +3246,15 @@ msgstr ""
|
|
3011
3246
|
msgid "Nest"
|
3012
3247
|
msgstr ""
|
3013
3248
|
|
3249
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3250
|
+
#, fuzzy
|
3014
3251
|
msgid "Never Synced"
|
3015
|
-
msgstr ""
|
3252
|
+
msgstr "कधिच तपासले नाही"
|
3016
3253
|
|
3254
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3255
|
+
#, fuzzy
|
3017
3256
|
msgid "New Errata"
|
3018
|
-
msgstr ""
|
3257
|
+
msgstr "शोध एराटा"
|
3019
3258
|
|
3020
3259
|
msgid "New Files: %s"
|
3021
3260
|
msgstr ""
|
@@ -3029,8 +3268,10 @@ msgstr ""
|
|
3029
3268
|
msgid "New host collection name"
|
3030
3269
|
msgstr ""
|
3031
3270
|
|
3271
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3272
|
+
#, fuzzy
|
3032
3273
|
msgid "New name cannot be blank"
|
3033
|
-
msgstr ""
|
3274
|
+
msgstr "रिकामे असणे अशक्य"
|
3034
3275
|
|
3035
3276
|
msgid "New name for the content view"
|
3036
3277
|
msgstr ""
|
@@ -3041,6 +3282,9 @@ msgstr ""
|
|
3041
3282
|
msgid "New version is available: Version ${latestVersion}"
|
3042
3283
|
msgstr ""
|
3043
3284
|
|
3285
|
+
msgid "Newly published"
|
3286
|
+
msgstr ""
|
3287
|
+
|
3044
3288
|
msgid "No"
|
3045
3289
|
msgstr ""
|
3046
3290
|
|
@@ -3050,8 +3294,9 @@ msgstr ""
|
|
3050
3294
|
msgid "No Activation keys to select"
|
3051
3295
|
msgstr ""
|
3052
3296
|
|
3297
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3053
3298
|
msgid "No Content View"
|
3054
|
-
msgstr ""
|
3299
|
+
msgstr "अंतर्भुत माहितीचे दृष्य नाही"
|
3055
3300
|
|
3056
3301
|
msgid "No Content found"
|
3057
3302
|
msgstr ""
|
@@ -3065,8 +3310,9 @@ msgstr ""
|
|
3065
3310
|
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
3311
|
msgstr ""
|
3067
3312
|
|
3313
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3068
3314
|
msgid "No Service Level Preference"
|
3069
|
-
msgstr ""
|
3315
|
+
msgstr "सर्व्हिस स्तर पसंती आढळली नाही"
|
3070
3316
|
|
3071
3317
|
msgid "No URL found for a container registry. Please check the configuration."
|
3072
3318
|
msgstr ""
|
@@ -3080,8 +3326,9 @@ msgstr ""
|
|
3080
3326
|
msgid "No artifacts to show"
|
3081
3327
|
msgstr ""
|
3082
3328
|
|
3329
|
+
#, fuzzy
|
3083
3330
|
msgid "No content has been provided."
|
3084
|
-
msgstr ""
|
3331
|
+
msgstr "किमान एक ॲक्टिवेशन कि पुरवणे आवश्यक आहे"
|
3085
3332
|
|
3086
3333
|
msgid "No content ids provided"
|
3087
3334
|
msgstr ""
|
@@ -3110,8 +3357,9 @@ msgstr ""
|
|
3110
3357
|
msgid "No errata has been specified."
|
3111
3358
|
msgstr ""
|
3112
3359
|
|
3360
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3113
3361
|
msgid "No errors"
|
3114
|
-
msgstr ""
|
3362
|
+
msgstr "त्रुटी आढळली नाही"
|
3115
3363
|
|
3116
3364
|
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3117
3365
|
msgstr ""
|
@@ -3159,19 +3407,20 @@ msgid "No matching version found"
|
|
3159
3407
|
msgstr ""
|
3160
3408
|
|
3161
3409
|
msgid "No new packages installed"
|
3162
|
-
msgstr ""
|
3410
|
+
msgstr "नवीन संकुले प्रतिष्ठापीत झाले नाही"
|
3163
3411
|
|
3412
|
+
#, fuzzy
|
3164
3413
|
msgid "No new packages."
|
3165
|
-
msgstr ""
|
3414
|
+
msgstr "नवीन संकुले प्रतिष्ठापीत झाले नाही"
|
3166
3415
|
|
3167
3416
|
msgid "No package groups have been added to this filter."
|
3168
3417
|
msgstr ""
|
3169
3418
|
|
3170
3419
|
msgid "No packages removed"
|
3171
|
-
msgstr ""
|
3420
|
+
msgstr "संकुले काढून टाकले नाही"
|
3172
3421
|
|
3173
3422
|
msgid "No packages updated"
|
3174
|
-
msgstr ""
|
3423
|
+
msgstr "संकुले सुधारित केले नाही"
|
3175
3424
|
|
3176
3425
|
msgid "No pool IDs were provided."
|
3177
3426
|
msgstr ""
|
@@ -3218,8 +3467,9 @@ msgstr ""
|
|
3218
3467
|
msgid "No services defined, is this class extended?"
|
3219
3468
|
msgstr ""
|
3220
3469
|
|
3470
|
+
#, fuzzy
|
3221
3471
|
msgid "No start time currently available."
|
3222
|
-
msgstr ""
|
3472
|
+
msgstr "वितरणे"
|
3223
3473
|
|
3224
3474
|
msgid "No subscriptions match your search criteria."
|
3225
3475
|
msgstr ""
|
@@ -3236,9 +3486,11 @@ msgstr ""
|
|
3236
3486
|
msgid "Non-security errata installable"
|
3237
3487
|
msgstr ""
|
3238
3488
|
|
3489
|
+
#, fuzzy
|
3239
3490
|
msgid "Non-system event"
|
3240
|
-
msgstr ""
|
3491
|
+
msgstr "प्रणाली"
|
3241
3492
|
|
3493
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3242
3494
|
msgid "None"
|
3243
3495
|
msgstr "काहिच नाही"
|
3244
3496
|
|
@@ -3299,17 +3551,15 @@ msgstr ""
|
|
3299
3551
|
msgid "On Demand"
|
3300
3552
|
msgstr ""
|
3301
3553
|
|
3302
|
-
msgid "On demand repositories cannot be exported."
|
3303
|
-
msgstr ""
|
3304
|
-
|
3305
3554
|
msgid "On-disk location for exported repositories"
|
3306
3555
|
msgstr ""
|
3307
3556
|
|
3308
3557
|
msgid "On-disk location for pulp 3 exported repositories"
|
3309
3558
|
msgstr ""
|
3310
3559
|
|
3560
|
+
#, fuzzy
|
3311
3561
|
msgid "One of parameters [ %s ] required but not specified."
|
3312
|
-
msgstr ""
|
3562
|
+
msgstr "organization_id आवश्यक परंतु निर्देशीत केले नाही."
|
3313
3563
|
|
3314
3564
|
msgid "One of yum or docker"
|
3315
3565
|
msgstr ""
|
@@ -3320,14 +3570,16 @@ msgstr ""
|
|
3320
3570
|
msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
|
3321
3571
|
msgstr ""
|
3322
3572
|
|
3573
|
+
#, fuzzy
|
3323
3574
|
msgid "One or more packages failed to sync properly."
|
3324
|
-
msgstr ""
|
3575
|
+
msgstr "एक किंवा त्यापेक्षा जास्त एराटा पुरवणे आवश्यक"
|
3325
3576
|
|
3326
3577
|
msgid "One or more processes require restarting"
|
3327
3578
|
msgstr ""
|
3328
3579
|
|
3580
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3329
3581
|
msgid "Only one Red Hat provider permitted for an Organization"
|
3330
|
-
msgstr ""
|
3582
|
+
msgstr "संस्थाकरीता फक्त एक Red Hat प्रोव्हाडर स्वीकारले जाते"
|
3331
3583
|
|
3332
3584
|
msgid "Only returns id and quantity fields"
|
3333
3585
|
msgstr ""
|
@@ -3335,9 +3587,7 @@ msgstr ""
|
|
3335
3587
|
msgid "Operators"
|
3336
3588
|
msgstr ""
|
3337
3589
|
|
3338
|
-
|
3339
|
-
msgstr ""
|
3340
|
-
|
3590
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
3341
3591
|
msgid "Organization"
|
3342
3592
|
msgstr "संस्था"
|
3343
3593
|
|
@@ -3353,8 +3603,9 @@ msgstr ""
|
|
3353
3603
|
msgid "Organization Information not provided."
|
3354
3604
|
msgstr ""
|
3355
3605
|
|
3606
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3356
3607
|
msgid "Organization cannot be blank."
|
3357
|
-
msgstr ""
|
3608
|
+
msgstr "संस्था रिकामे असणे अशक्य."
|
3358
3609
|
|
3359
3610
|
msgid "Organization id"
|
3360
3611
|
msgstr ""
|
@@ -3368,11 +3619,13 @@ msgstr ""
|
|
3368
3619
|
msgid "Organization not found"
|
3369
3620
|
msgstr ""
|
3370
3621
|
|
3622
|
+
#, fuzzy
|
3371
3623
|
msgid "Organization required"
|
3372
|
-
msgstr ""
|
3624
|
+
msgstr "संस्था"
|
3373
3625
|
|
3626
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3374
3627
|
msgid "Other"
|
3375
|
-
msgstr ""
|
3628
|
+
msgstr "इतर"
|
3376
3629
|
|
3377
3630
|
msgid "Override content for activation_key"
|
3378
3631
|
msgstr ""
|
@@ -3395,74 +3648,86 @@ msgstr ""
|
|
3395
3648
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3396
3649
|
msgstr ""
|
3397
3650
|
|
3651
|
+
#, fuzzy
|
3398
3652
|
msgid "Package"
|
3399
|
-
msgstr ""
|
3653
|
+
msgstr "संकुले"
|
3400
3654
|
|
3655
|
+
#, fuzzy
|
3401
3656
|
msgid "Package Group"
|
3402
|
-
msgstr ""
|
3657
|
+
msgstr "संकुल गटे"
|
3403
3658
|
|
3404
3659
|
msgid "Package Group Install"
|
3405
|
-
msgstr ""
|
3660
|
+
msgstr "संकुल गट प्रतिष्ठापन"
|
3406
3661
|
|
3662
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3407
3663
|
msgid "Package Group Install Canceled"
|
3408
|
-
msgstr ""
|
3664
|
+
msgstr "संकुल गट इंस्टॉलेशन रद्द केले"
|
3409
3665
|
|
3410
3666
|
msgid "Package Group Install Complete"
|
3411
|
-
msgstr ""
|
3667
|
+
msgstr "संकुल गट प्रतिष्ठापन पूर्ण"
|
3412
3668
|
|
3413
3669
|
msgid "Package Group Install Failed"
|
3414
|
-
msgstr ""
|
3670
|
+
msgstr "संकुल गट प्रतिष्ठापन अपयशी"
|
3415
3671
|
|
3416
3672
|
msgid "Package Group Install Timed Out"
|
3417
|
-
msgstr ""
|
3673
|
+
msgstr "संकुल गट प्रतिष्ठापन वेळ समाप्ति"
|
3418
3674
|
|
3419
3675
|
msgid "Package Group Install scheduled by %s"
|
3420
|
-
msgstr ""
|
3676
|
+
msgstr "%s तर्फे संकुल गट प्रतिष्ठापन क्रमवारित लावले"
|
3421
3677
|
|
3678
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3422
3679
|
msgid "Package Group Remove"
|
3423
|
-
msgstr ""
|
3680
|
+
msgstr "संकुल गट काढून टाकणे"
|
3424
3681
|
|
3682
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3425
3683
|
msgid "Package Group Remove Canceled"
|
3426
|
-
msgstr ""
|
3684
|
+
msgstr "संकुल गट काढून टाकणे रद्द केले"
|
3427
3685
|
|
3686
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3428
3687
|
msgid "Package Group Remove Complete"
|
3429
|
-
msgstr ""
|
3688
|
+
msgstr "संकुल गट काढून टाकणे पूर्ण झाले"
|
3430
3689
|
|
3690
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3431
3691
|
msgid "Package Group Remove Failed"
|
3432
|
-
msgstr ""
|
3692
|
+
msgstr "संकुल गट काढून टाकण्यास अपयशी"
|
3433
3693
|
|
3694
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3434
3695
|
msgid "Package Group Remove Timed Out"
|
3435
|
-
msgstr ""
|
3696
|
+
msgstr "संकुल गट काढून टाकण्यास वेळसमाप्ति"
|
3436
3697
|
|
3698
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3437
3699
|
msgid "Package Group Remove scheduled by %s"
|
3438
|
-
msgstr ""
|
3700
|
+
msgstr "%s तर्फे संकुल गट काढून टाकणे क्रमवारित लावले"
|
3439
3701
|
|
3702
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3440
3703
|
msgid "Package Group Update"
|
3441
|
-
msgstr ""
|
3704
|
+
msgstr "संकुल गट सुधारणा"
|
3442
3705
|
|
3706
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3443
3707
|
msgid "Package Group Update scheduled by %s"
|
3444
|
-
msgstr ""
|
3708
|
+
msgstr "%s तर्फे संकुल गट सुधारणा क्रमवारित लावले"
|
3445
3709
|
|
3446
3710
|
msgid "Package Groups"
|
3447
|
-
msgstr ""
|
3711
|
+
msgstr "संकुल गटे"
|
3448
3712
|
|
3449
3713
|
msgid "Package Install"
|
3450
|
-
msgstr ""
|
3714
|
+
msgstr "संकुल प्रतिष्ठापन"
|
3451
3715
|
|
3716
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3452
3717
|
msgid "Package Install Canceled"
|
3453
|
-
msgstr ""
|
3718
|
+
msgstr "संकुल इंस्टॉलेशन रद्द केले"
|
3454
3719
|
|
3455
3720
|
msgid "Package Install Complete"
|
3456
|
-
msgstr ""
|
3721
|
+
msgstr "संकुल प्रतिष्ठापन पूर्ण"
|
3457
3722
|
|
3458
3723
|
msgid "Package Install Failed"
|
3459
|
-
msgstr ""
|
3724
|
+
msgstr "संकुल प्रतिष्ठापन अपयशी"
|
3460
3725
|
|
3461
3726
|
msgid "Package Install Timed Out"
|
3462
|
-
msgstr ""
|
3727
|
+
msgstr "संकुल प्रतिष्ठापन वेळसमाप्ति"
|
3463
3728
|
|
3464
3729
|
msgid "Package Install scheduled by %s"
|
3465
|
-
msgstr ""
|
3730
|
+
msgstr "%s तर्फे संकुल प्रतिष्ठापन क्रमवारित लावले"
|
3466
3731
|
|
3467
3732
|
msgid "Package Profile Update"
|
3468
3733
|
msgstr ""
|
@@ -3470,53 +3735,69 @@ msgstr ""
|
|
3470
3735
|
msgid "Package Profile Update for %s"
|
3471
3736
|
msgstr ""
|
3472
3737
|
|
3738
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3473
3739
|
msgid "Package Remove"
|
3474
|
-
msgstr ""
|
3740
|
+
msgstr "संकुल काढून टाकणे"
|
3475
3741
|
|
3742
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3476
3743
|
msgid "Package Remove Canceled"
|
3477
|
-
msgstr ""
|
3744
|
+
msgstr "संकुल काढून टाकणे रद्द केले"
|
3478
3745
|
|
3746
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3479
3747
|
msgid "Package Remove Complete"
|
3480
|
-
msgstr ""
|
3748
|
+
msgstr "संकुल काढून टाकणे पूर्ण"
|
3481
3749
|
|
3750
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3482
3751
|
msgid "Package Remove Failed"
|
3483
|
-
msgstr ""
|
3752
|
+
msgstr "संकुल काढून टाकणे अपयशी"
|
3484
3753
|
|
3754
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3485
3755
|
msgid "Package Remove Timed Out"
|
3486
|
-
msgstr ""
|
3756
|
+
msgstr "संकुल काढून टाकणे वेळ समाप्ति"
|
3487
3757
|
|
3758
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3488
3759
|
msgid "Package Remove scheduled by %s"
|
3489
|
-
msgstr ""
|
3760
|
+
msgstr "%s तर्फे संकुल काढून टाकणे क्रमवारित लावले"
|
3490
3761
|
|
3762
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3491
3763
|
msgid "Package Update"
|
3492
|
-
msgstr ""
|
3764
|
+
msgstr "संकुल सुधारणा"
|
3493
3765
|
|
3766
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3494
3767
|
msgid "Package Update Canceled"
|
3495
|
-
msgstr ""
|
3768
|
+
msgstr "संकुल सुधारणा रद्द केले"
|
3496
3769
|
|
3770
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3497
3771
|
msgid "Package Update Complete"
|
3498
|
-
msgstr ""
|
3772
|
+
msgstr "संकुल सुधारमा पूर्ण झाली"
|
3499
3773
|
|
3774
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3500
3775
|
msgid "Package Update Failed"
|
3501
|
-
msgstr ""
|
3776
|
+
msgstr "संकुल सुधारणा अपयशी"
|
3502
3777
|
|
3778
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3503
3779
|
msgid "Package Update Timed Out"
|
3504
|
-
msgstr ""
|
3780
|
+
msgstr "संकुल सुधारणा वेळ समाप्ति"
|
3505
3781
|
|
3782
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3506
3783
|
msgid "Package Update scheduled by %s"
|
3507
|
-
msgstr ""
|
3784
|
+
msgstr "%s तर्फे संकुल काढून टाकणे क्रमवारित लावले"
|
3508
3785
|
|
3786
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3509
3787
|
msgid "Package group update canceled"
|
3510
|
-
msgstr ""
|
3788
|
+
msgstr "संकुल गट सुधारणा रद्द केली"
|
3511
3789
|
|
3790
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3512
3791
|
msgid "Package group update complete"
|
3513
|
-
msgstr ""
|
3792
|
+
msgstr "संकुल गट सुधारणा पूर्ण झाली"
|
3514
3793
|
|
3794
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3515
3795
|
msgid "Package group update failed"
|
3516
|
-
msgstr ""
|
3796
|
+
msgstr "संकुल गट सुधारणा अपयशी"
|
3517
3797
|
|
3798
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3518
3799
|
msgid "Package group update timed out"
|
3519
|
-
msgstr ""
|
3800
|
+
msgstr "संकुल गट सुधारची वेळसमाप्ति"
|
3520
3801
|
|
3521
3802
|
msgid "Package groups"
|
3522
3803
|
msgstr ""
|
@@ -3524,17 +3805,19 @@ msgstr ""
|
|
3524
3805
|
msgid "Package identifiers to filter content by"
|
3525
3806
|
msgstr ""
|
3526
3807
|
|
3808
|
+
#, fuzzy
|
3527
3809
|
msgid "Package install failed: \"%{package}\""
|
3528
|
-
msgstr ""
|
3810
|
+
msgstr "संकुल प्रतिष्ठापन अपयशी"
|
3529
3811
|
|
3812
|
+
#, fuzzy
|
3530
3813
|
msgid "Package installation: \"%{package}\" "
|
3531
|
-
msgstr ""
|
3814
|
+
msgstr "संकुल इंस्टॉलेशन रद्द केले"
|
3532
3815
|
|
3533
3816
|
msgid "Packages"
|
3534
|
-
msgstr ""
|
3817
|
+
msgstr "संकुले"
|
3535
3818
|
|
3536
3819
|
msgid "Packages must be provided"
|
3537
|
-
msgstr ""
|
3820
|
+
msgstr "संकुले पुरवणे आवश्यक आहे"
|
3538
3821
|
|
3539
3822
|
msgid "Page number, starting at 1"
|
3540
3823
|
msgstr ""
|
@@ -3563,8 +3846,10 @@ msgstr ""
|
|
3563
3846
|
msgid "Paused"
|
3564
3847
|
msgstr ""
|
3565
3848
|
|
3849
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3850
|
+
#, fuzzy
|
3566
3851
|
msgid "Pending"
|
3567
|
-
msgstr "
|
3852
|
+
msgstr "चालवत आहे"
|
3568
3853
|
|
3569
3854
|
msgid "Perform a module stream action via Katello interface"
|
3570
3855
|
msgstr ""
|
@@ -3584,11 +3869,13 @@ msgstr ""
|
|
3584
3869
|
msgid "Performs an incremental-export of the repositories in library."
|
3585
3870
|
msgstr ""
|
3586
3871
|
|
3872
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3587
3873
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3588
|
-
msgstr ""
|
3874
|
+
msgstr "परवानगी नकारली. वापरकर्ता '%{user}' कडे संस्था '%{org}' करीता प्रवेशसाठी परवानगी नाही."
|
3589
3875
|
|
3876
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3590
3877
|
msgid "Physical"
|
3591
|
-
msgstr ""
|
3878
|
+
msgstr "फिजिकल"
|
3592
3879
|
|
3593
3880
|
msgid "Plan numeric identifier"
|
3594
3881
|
msgstr ""
|
@@ -3635,8 +3922,9 @@ msgstr ""
|
|
3635
3922
|
msgid "Processing metadata."
|
3636
3923
|
msgstr ""
|
3637
3924
|
|
3925
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3638
3926
|
msgid "Product"
|
3639
|
-
msgstr ""
|
3927
|
+
msgstr "उत्पादन"
|
3640
3928
|
|
3641
3929
|
msgid "Product Content"
|
3642
3930
|
msgstr ""
|
@@ -3679,8 +3967,9 @@ msgstr ""
|
|
3679
3967
|
msgid "Product: '%{product}', Repository: '%{repository}'"
|
3680
3968
|
msgstr ""
|
3681
3969
|
|
3970
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
3682
3971
|
msgid "Products"
|
3683
|
-
msgstr ""
|
3972
|
+
msgstr "उत्पादने"
|
3684
3973
|
|
3685
3974
|
msgid "Profiles"
|
3686
3975
|
msgstr ""
|
@@ -3721,8 +4010,9 @@ msgstr ""
|
|
3721
4010
|
msgid "Public key block in DER encoding or certificate content"
|
3722
4011
|
msgstr ""
|
3723
4012
|
|
4013
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3724
4014
|
msgid "Publish"
|
3725
|
-
msgstr ""
|
4015
|
+
msgstr "प्रकाशीत करा"
|
3726
4016
|
|
3727
4017
|
msgid "Publish Lifecycle Environment Repositories"
|
3728
4018
|
msgstr ""
|
@@ -3730,9 +4020,18 @@ msgstr ""
|
|
3730
4020
|
msgid "Publish a content view"
|
3731
4021
|
msgstr ""
|
3732
4022
|
|
4023
|
+
msgid "Publish new version - "
|
4024
|
+
msgstr ""
|
4025
|
+
|
3733
4026
|
msgid "Published new version"
|
3734
4027
|
msgstr ""
|
3735
4028
|
|
4029
|
+
msgid "Publishing ${name}"
|
4030
|
+
msgstr ""
|
4031
|
+
|
4032
|
+
msgid "Publishing content view"
|
4033
|
+
msgstr ""
|
4034
|
+
|
3736
4035
|
msgid "Pulling remote branches. Downloaded %s units."
|
3737
4036
|
msgstr ""
|
3738
4037
|
|
@@ -3742,7 +4041,7 @@ msgstr ""
|
|
3742
4041
|
msgid "Pulp 3 export destination filepath"
|
3743
4042
|
msgstr ""
|
3744
4043
|
|
3745
|
-
msgid "Pulp
|
4044
|
+
msgid "Pulp 3 is not enabled on Smart proxy!"
|
3746
4045
|
msgstr ""
|
3747
4046
|
|
3748
4047
|
msgid "Pulp Docker registry port"
|
@@ -3832,8 +4131,9 @@ msgstr ""
|
|
3832
4131
|
msgid "RPM name"
|
3833
4132
|
msgstr ""
|
3834
4133
|
|
4134
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3835
4135
|
msgid "RPMs"
|
3836
|
-
msgstr ""
|
4136
|
+
msgstr "RPMs"
|
3837
4137
|
|
3838
4138
|
msgid "Realm IDs"
|
3839
4139
|
msgstr ""
|
@@ -3847,29 +4147,35 @@ msgstr ""
|
|
3847
4147
|
msgid "Recommended Repositories"
|
3848
4148
|
msgstr ""
|
3849
4149
|
|
4150
|
+
#, fuzzy
|
3850
4151
|
msgid "Red Hat CDN URL"
|
3851
|
-
msgstr ""
|
4152
|
+
msgstr "उत्पादने"
|
3852
4153
|
|
3853
4154
|
msgid "Red Hat Provider Details"
|
3854
4155
|
msgstr ""
|
3855
4156
|
|
4157
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3856
4158
|
msgid "Red Hat Repositories"
|
3857
|
-
msgstr ""
|
4159
|
+
msgstr "Red Hat रेपॉजिटरिज्"
|
3858
4160
|
|
4161
|
+
#, fuzzy
|
3859
4162
|
msgid "Red Hat products cannot be manipulated."
|
3860
|
-
msgstr ""
|
4163
|
+
msgstr "Red Hat प्रोव्हाडर नष्ट करणे अशक्य"
|
3861
4164
|
|
4165
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
3862
4166
|
msgid "Red Hat provider can not be deleted"
|
3863
|
-
msgstr ""
|
4167
|
+
msgstr "Red Hat प्रोव्हाडर नष्ट करणे अशक्य"
|
3864
4168
|
|
4169
|
+
#, fuzzy
|
3865
4170
|
msgid "Red Hat repositories cannot be manipulated."
|
3866
|
-
msgstr ""
|
4171
|
+
msgstr "Red Hat प्रोव्हाडर नष्ट करणे अशक्य"
|
3867
4172
|
|
3868
4173
|
msgid "Refresh"
|
3869
4174
|
msgstr ""
|
3870
4175
|
|
4176
|
+
#, fuzzy
|
3871
4177
|
msgid "Refresh Manifest"
|
3872
|
-
msgstr ""
|
4178
|
+
msgstr "रोल्स् नष्ट करा"
|
3873
4179
|
|
3874
4180
|
msgid "Refresh previously imported manifest for Red Hat provider"
|
3875
4181
|
msgstr ""
|
@@ -3916,14 +4222,19 @@ msgstr ""
|
|
3916
4222
|
msgid "Removal of package(s) requested: %{packages}"
|
3917
4223
|
msgstr ""
|
3918
4224
|
|
4225
|
+
msgid "Remove"
|
4226
|
+
msgstr ""
|
4227
|
+
|
3919
4228
|
msgid "Remove Content"
|
3920
4229
|
msgstr ""
|
3921
4230
|
|
4231
|
+
#, fuzzy
|
3922
4232
|
msgid "Remove Version"
|
3923
|
-
msgstr ""
|
4233
|
+
msgstr "रोल्स् परवानगी वाचा"
|
3924
4234
|
|
4235
|
+
#, fuzzy
|
3925
4236
|
msgid "Remove Versions and Associations"
|
3926
|
-
msgstr ""
|
4237
|
+
msgstr "संस्था वाचा"
|
3927
4238
|
|
3928
4239
|
msgid "Remove a content view from an environment"
|
3929
4240
|
msgstr ""
|
@@ -3940,9 +4251,13 @@ msgstr ""
|
|
3940
4251
|
msgid "Remove content view version"
|
3941
4252
|
msgstr ""
|
3942
4253
|
|
3943
|
-
msgid "Remove
|
4254
|
+
msgid "Remove content views"
|
3944
4255
|
msgstr ""
|
3945
4256
|
|
4257
|
+
#, fuzzy
|
4258
|
+
msgid "Remove from Environment"
|
4259
|
+
msgstr "वातावरण वाचा"
|
4260
|
+
|
3946
4261
|
msgid "Remove hosts from the host collection"
|
3947
4262
|
msgstr ""
|
3948
4263
|
|
@@ -3955,14 +4270,16 @@ msgstr ""
|
|
3955
4270
|
msgid "Remove one or more subscriptions from an upstream subscription allocation"
|
3956
4271
|
msgstr ""
|
3957
4272
|
|
4273
|
+
#, fuzzy
|
3958
4274
|
msgid "Remove package"
|
3959
|
-
msgstr ""
|
4275
|
+
msgstr "संकुल '%s' काढून टाकले"
|
3960
4276
|
|
3961
4277
|
msgid "Remove package for %s"
|
3962
4278
|
msgstr ""
|
3963
4279
|
|
4280
|
+
#, fuzzy
|
3964
4281
|
msgid "Remove package group"
|
3965
|
-
msgstr ""
|
4282
|
+
msgstr "संकुल गट '%s' काढून टाकले"
|
3966
4283
|
|
3967
4284
|
msgid "Remove package group via Katello interface"
|
3968
4285
|
msgstr ""
|
@@ -3985,30 +4302,37 @@ msgstr ""
|
|
3985
4302
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
3986
4303
|
msgstr ""
|
3987
4304
|
|
3988
|
-
msgid "
|
4305
|
+
msgid "Removed component from content view"
|
3989
4306
|
msgstr ""
|
3990
4307
|
|
3991
|
-
msgid "
|
4308
|
+
msgid "Removed components from content view"
|
3992
4309
|
msgstr ""
|
3993
4310
|
|
4311
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4312
|
+
msgid "Removing Package Group..."
|
4313
|
+
msgstr "संकुल गट काढून टाकत आहे..."
|
4314
|
+
|
4315
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4316
|
+
msgid "Removing Package..."
|
4317
|
+
msgstr "संकुल काढून टाकत आहे..."
|
4318
|
+
|
3994
4319
|
msgid "Repo Type"
|
3995
4320
|
msgstr ""
|
3996
4321
|
|
4322
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
3997
4323
|
msgid "Repositories"
|
3998
|
-
msgstr ""
|
4324
|
+
msgstr "रेपॉजिटरिज्"
|
3999
4325
|
|
4000
4326
|
msgid "Repositories from published Content Views are not allowed."
|
4001
4327
|
msgstr ""
|
4002
4328
|
|
4329
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4003
4330
|
msgid "Repository"
|
4004
|
-
msgstr ""
|
4331
|
+
msgstr "रेपॉजिटरि"
|
4005
4332
|
|
4006
4333
|
msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
|
4007
4334
|
msgstr ""
|
4008
4335
|
|
4009
|
-
msgid "Repository %s cannot be deleted since they are Red Hat repositories."
|
4010
|
-
msgstr ""
|
4011
|
-
|
4012
4336
|
msgid "Repository '%(repoName)s' has been disabled."
|
4013
4337
|
msgstr ""
|
4014
4338
|
|
@@ -4021,14 +4345,13 @@ msgstr ""
|
|
4021
4345
|
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
4346
|
msgstr ""
|
4023
4347
|
|
4348
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4024
4349
|
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 ""
|
4350
|
+
msgstr "रेपॉजिटरिला आधिपासूनच प्रमोट केल्यामुळे त्यास बंद करणे अशक्य."
|
4029
4351
|
|
4352
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4030
4353
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4031
|
-
msgstr ""
|
4354
|
+
msgstr "रेपॉजिटरिला आधीपासूनच %{cv_name} करिता क्लोन केले आहे, वातावरण %{to_env} मध्ये"
|
4032
4355
|
|
4033
4356
|
msgid "Repository id"
|
4034
4357
|
msgstr ""
|
@@ -4042,14 +4365,16 @@ msgstr ""
|
|
4042
4365
|
msgid "Repository metadata publish"
|
4043
4366
|
msgstr ""
|
4044
4367
|
|
4368
|
+
#, fuzzy
|
4045
4369
|
msgid "Repository not found"
|
4046
|
-
msgstr ""
|
4370
|
+
msgstr "रेपॉजिटरिज्"
|
4047
4371
|
|
4048
4372
|
msgid "Repository set name to search on"
|
4049
4373
|
msgstr ""
|
4050
4374
|
|
4375
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4051
4376
|
msgid "Repository sets are not available for custom products."
|
4052
|
-
msgstr ""
|
4377
|
+
msgstr "पसंतीच्या उत्पादनांकरिता रेपॉजिटरि संच लागू होत नाही."
|
4053
4378
|
|
4054
4379
|
msgid "Republish Repositories of %{name} %{version}"
|
4055
4380
|
msgstr ""
|
@@ -4057,6 +4382,9 @@ msgstr ""
|
|
4057
4382
|
msgid "Republish Version Repositories"
|
4058
4383
|
msgstr ""
|
4059
4384
|
|
4385
|
+
msgid "Requirements yaml is invalid!"
|
4386
|
+
msgstr ""
|
4387
|
+
|
4060
4388
|
msgid "Requires Virt-Who"
|
4061
4389
|
msgstr ""
|
4062
4390
|
|
@@ -4067,7 +4395,7 @@ msgid "Resolve traces for one or more hosts"
|
|
4067
4395
|
msgstr ""
|
4068
4396
|
|
4069
4397
|
msgid "Resource"
|
4070
|
-
msgstr "
|
4398
|
+
msgstr ""
|
4071
4399
|
|
4072
4400
|
msgid "Restart Services via Katello interface"
|
4073
4401
|
msgstr ""
|
@@ -4075,8 +4403,9 @@ msgstr ""
|
|
4075
4403
|
msgid "Restrict Composite Content View promotion"
|
4076
4404
|
msgstr ""
|
4077
4405
|
|
4406
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
4078
4407
|
msgid "Result"
|
4079
|
-
msgstr ""
|
4408
|
+
msgstr "परिणाम"
|
4080
4409
|
|
4081
4410
|
msgid "Retrieve a single errata for a host"
|
4082
4411
|
msgstr ""
|
@@ -4099,9 +4428,6 @@ msgstr ""
|
|
4099
4428
|
msgid "Return errata that are upgradable on one or more hosts"
|
4100
4429
|
msgstr ""
|
4101
4430
|
|
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
4431
|
msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
|
4106
4432
|
msgstr ""
|
4107
4433
|
|
@@ -4142,19 +4468,20 @@ msgid "Returns content that can be both added and is currently added to the obje
|
|
4142
4468
|
msgstr ""
|
4143
4469
|
|
4144
4470
|
msgid "Role"
|
4145
|
-
msgstr "
|
4471
|
+
msgstr ""
|
4146
4472
|
|
4147
4473
|
msgid "Role of host"
|
4148
4474
|
msgstr ""
|
4149
4475
|
|
4150
4476
|
msgid "Roles"
|
4151
|
-
msgstr "
|
4477
|
+
msgstr ""
|
4152
4478
|
|
4153
4479
|
msgid "Run Sync Plan:"
|
4154
4480
|
msgstr ""
|
4155
4481
|
|
4482
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4156
4483
|
msgid "Running"
|
4157
|
-
msgstr ""
|
4484
|
+
msgstr "चालवत आहे"
|
4158
4485
|
|
4159
4486
|
msgid "SKU"
|
4160
4487
|
msgstr ""
|
@@ -4169,13 +4496,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
|
|
4169
4496
|
msgstr ""
|
4170
4497
|
|
4171
4498
|
msgid "Save"
|
4172
|
-
msgstr "
|
4499
|
+
msgstr ""
|
4173
4500
|
|
4174
4501
|
msgid "Schedule errata for installation using katello-agent. %s"
|
4175
4502
|
msgstr ""
|
4176
4503
|
|
4177
4504
|
msgid "Search"
|
4178
|
-
msgstr "
|
4505
|
+
msgstr ""
|
4179
4506
|
|
4180
4507
|
msgid "Search pattern (defaults to '*')"
|
4181
4508
|
msgstr ""
|
@@ -4192,8 +4519,9 @@ msgstr ""
|
|
4192
4519
|
msgid "Search string for hosts to perform an action on"
|
4193
4520
|
msgstr ""
|
4194
4521
|
|
4522
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4195
4523
|
msgid "Security"
|
4196
|
-
msgstr ""
|
4524
|
+
msgstr "सुरक्षा"
|
4197
4525
|
|
4198
4526
|
msgid "Security errata applicable"
|
4199
4527
|
msgstr ""
|
@@ -4204,30 +4532,41 @@ msgstr ""
|
|
4204
4532
|
msgid "Select"
|
4205
4533
|
msgstr ""
|
4206
4534
|
|
4535
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author sandeeps
|
4207
4536
|
msgid "Select All"
|
4208
4537
|
msgstr "सर्व नीवडा"
|
4209
4538
|
|
4539
|
+
#, fuzzy
|
4210
4540
|
msgid "Select Content View"
|
4211
|
-
msgstr ""
|
4541
|
+
msgstr "कंटेंट"
|
4212
4542
|
|
4543
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4213
4544
|
msgid "Select None"
|
4214
|
-
msgstr ""
|
4545
|
+
msgstr "काहिच नीवडू नका"
|
4215
4546
|
|
4216
4547
|
msgid "Select Organization"
|
4217
|
-
msgstr "
|
4548
|
+
msgstr ""
|
4218
4549
|
|
4219
4550
|
msgid "Select Value"
|
4220
4551
|
msgstr ""
|
4221
4552
|
|
4553
|
+
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
4554
|
+
msgstr ""
|
4555
|
+
|
4222
4556
|
msgid "Select all rows"
|
4223
4557
|
msgstr ""
|
4224
4558
|
|
4559
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author sandeeps
|
4560
|
+
#, fuzzy
|
4225
4561
|
msgid "Select an Organization"
|
4226
|
-
msgstr ""
|
4562
|
+
msgstr "संस्था नीवडा"
|
4227
4563
|
|
4228
4564
|
msgid "Select an organization"
|
4229
4565
|
msgstr ""
|
4230
4566
|
|
4567
|
+
msgid "Select available version of ${cvName} to use"
|
4568
|
+
msgstr ""
|
4569
|
+
|
4231
4570
|
msgid "Select hosts to assign to %s"
|
4232
4571
|
msgstr ""
|
4233
4572
|
|
@@ -4240,8 +4579,9 @@ msgstr ""
|
|
4240
4579
|
msgid "Service Level"
|
4241
4580
|
msgstr ""
|
4242
4581
|
|
4582
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4243
4583
|
msgid "Service Level %s"
|
4244
|
-
msgstr ""
|
4584
|
+
msgstr "सर्व्हिस स्तर %s"
|
4245
4585
|
|
4246
4586
|
msgid "Service Level (SLA)"
|
4247
4587
|
msgstr ""
|
@@ -4273,8 +4613,9 @@ msgstr ""
|
|
4273
4613
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4274
4614
|
msgstr ""
|
4275
4615
|
|
4616
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4276
4617
|
msgid "Severity"
|
4277
|
-
msgstr ""
|
4618
|
+
msgstr "तीव्रता"
|
4278
4619
|
|
4279
4620
|
msgid "Show :a_resource"
|
4280
4621
|
msgstr ""
|
@@ -4351,6 +4692,9 @@ msgstr ""
|
|
4351
4692
|
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4352
4693
|
msgstr ""
|
4353
4694
|
|
4695
|
+
msgid "Single content view consisting of repositories"
|
4696
|
+
msgstr ""
|
4697
|
+
|
4354
4698
|
msgid "Size of file to upload"
|
4355
4699
|
msgstr ""
|
4356
4700
|
|
@@ -4363,9 +4707,13 @@ msgstr ""
|
|
4363
4707
|
msgid "Smart proxy IDs"
|
4364
4708
|
msgstr ""
|
4365
4709
|
|
4366
|
-
msgid "
|
4710
|
+
msgid "Smart proxy content source not found!"
|
4367
4711
|
msgstr ""
|
4368
4712
|
|
4713
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4714
|
+
msgid "Sockets: %s"
|
4715
|
+
msgstr "सॉकेट्स्: %s"
|
4716
|
+
|
4369
4717
|
msgid "Solve Dependencies"
|
4370
4718
|
msgstr ""
|
4371
4719
|
|
@@ -4381,6 +4729,21 @@ msgstr ""
|
|
4381
4729
|
msgid "Some services are not properly started. See the About page for more information."
|
4382
4730
|
msgstr ""
|
4383
4731
|
|
4732
|
+
msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
|
4733
|
+
msgstr ""
|
4734
|
+
|
4735
|
+
msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
|
4736
|
+
msgstr ""
|
4737
|
+
|
4738
|
+
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
4739
|
+
msgstr ""
|
4740
|
+
|
4741
|
+
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
4742
|
+
msgstr ""
|
4743
|
+
|
4744
|
+
msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
|
4745
|
+
msgstr ""
|
4746
|
+
|
4384
4747
|
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4385
4748
|
msgstr ""
|
4386
4749
|
|
@@ -4420,23 +4783,27 @@ msgstr ""
|
|
4420
4783
|
msgid "Stacking ID"
|
4421
4784
|
msgstr ""
|
4422
4785
|
|
4786
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4423
4787
|
msgid "Start Date"
|
4424
|
-
msgstr ""
|
4788
|
+
msgstr "प्रारंभ दिनांक"
|
4425
4789
|
|
4790
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4426
4791
|
msgid "Start Date and Time can't be blank"
|
4427
|
-
msgstr ""
|
4792
|
+
msgstr "सुरवात दिनांक व वेळ रिकामे असणे अशक्य"
|
4428
4793
|
|
4794
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
4429
4795
|
msgid "Start Time"
|
4430
|
-
msgstr ""
|
4796
|
+
msgstr "प्रारंभ वेळ"
|
4431
4797
|
|
4432
4798
|
msgid "Starts"
|
4433
4799
|
msgstr ""
|
4434
4800
|
|
4801
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4435
4802
|
msgid "Status"
|
4436
4803
|
msgstr "स्थिती"
|
4437
4804
|
|
4438
4805
|
msgid "Storage"
|
4439
|
-
msgstr "
|
4806
|
+
msgstr ""
|
4440
4807
|
|
4441
4808
|
msgid "Stream"
|
4442
4809
|
msgstr ""
|
@@ -4450,8 +4817,9 @@ msgstr ""
|
|
4450
4817
|
msgid "Subnet IDs"
|
4451
4818
|
msgstr ""
|
4452
4819
|
|
4820
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4453
4821
|
msgid "Subscription"
|
4454
|
-
msgstr ""
|
4822
|
+
msgstr "सबस्क्रिप्शन"
|
4455
4823
|
|
4456
4824
|
msgid "Subscription Allocation"
|
4457
4825
|
msgstr ""
|
@@ -4522,12 +4890,14 @@ msgstr ""
|
|
4522
4890
|
msgid "Subscriptions have been saved and are being updated. "
|
4523
4891
|
msgstr ""
|
4524
4892
|
|
4893
|
+
#, fuzzy
|
4525
4894
|
msgid "Subscriptions information based on selected activation keys:"
|
4526
|
-
msgstr ""
|
4895
|
+
msgstr "ॲक्टिवेशन कि '%s' करीता सबस्क्रिप्शन्स् यशस्वीरित्या समाविष्ट केले."
|
4527
4896
|
|
4528
4897
|
msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
|
4529
4898
|
msgstr ""
|
4530
4899
|
|
4900
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
4531
4901
|
msgid "Success"
|
4532
4902
|
msgstr "यशस्वी"
|
4533
4903
|
|
@@ -4552,8 +4922,9 @@ msgstr ""
|
|
4552
4922
|
msgid "Successfully synchronized."
|
4553
4923
|
msgstr ""
|
4554
4924
|
|
4925
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4555
4926
|
msgid "Summary"
|
4556
|
-
msgstr ""
|
4927
|
+
msgstr "सारांश"
|
4557
4928
|
|
4558
4929
|
msgid "Support Type"
|
4559
4930
|
msgstr ""
|
@@ -4561,8 +4932,9 @@ msgstr ""
|
|
4561
4932
|
msgid "Supported Content Types"
|
4562
4933
|
msgstr ""
|
4563
4934
|
|
4935
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4564
4936
|
msgid "Sync Canceled"
|
4565
|
-
msgstr ""
|
4937
|
+
msgstr "सिंक रद्द केले"
|
4566
4938
|
|
4567
4939
|
msgid "Sync Connection Timeout"
|
4568
4940
|
msgstr ""
|
@@ -4570,11 +4942,14 @@ msgstr ""
|
|
4570
4942
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4571
4943
|
msgstr ""
|
4572
4944
|
|
4945
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4946
|
+
#, fuzzy
|
4573
4947
|
msgid "Sync Incomplete"
|
4574
|
-
msgstr ""
|
4948
|
+
msgstr "सिंक पूर्ण."
|
4575
4949
|
|
4950
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4576
4951
|
msgid "Sync Overview"
|
4577
|
-
msgstr ""
|
4952
|
+
msgstr "सिंक पुनरावलोकन"
|
4578
4953
|
|
4579
4954
|
msgid "Sync Plan"
|
4580
4955
|
msgstr ""
|
@@ -4582,8 +4957,9 @@ msgstr ""
|
|
4582
4957
|
msgid "Sync Plan: "
|
4583
4958
|
msgstr ""
|
4584
4959
|
|
4960
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4585
4961
|
msgid "Sync Plans"
|
4586
|
-
msgstr ""
|
4962
|
+
msgstr "सिंक प्लॅन्स्"
|
4587
4963
|
|
4588
4964
|
msgid "Sync Repository on Smart Proxy(ies)"
|
4589
4965
|
msgstr ""
|
@@ -4591,8 +4967,9 @@ msgstr ""
|
|
4591
4967
|
msgid "Sync Smart Proxies after Content View promotion"
|
4592
4968
|
msgstr ""
|
4593
4969
|
|
4970
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4594
4971
|
msgid "Sync Status"
|
4595
|
-
msgstr ""
|
4972
|
+
msgstr "सिंक स्थिती"
|
4596
4973
|
|
4597
4974
|
msgid "Sync Summary"
|
4598
4975
|
msgstr ""
|
@@ -4609,8 +4986,9 @@ msgstr ""
|
|
4609
4986
|
msgid "Sync capsule"
|
4610
4987
|
msgstr ""
|
4611
4988
|
|
4989
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4612
4990
|
msgid "Sync complete."
|
4613
|
-
msgstr ""
|
4991
|
+
msgstr "सिंक पूर्ण."
|
4614
4992
|
|
4615
4993
|
msgid "Sync errata"
|
4616
4994
|
msgstr ""
|
@@ -4630,11 +5008,13 @@ msgstr ""
|
|
4630
5008
|
msgid "Synced to smart proxy"
|
4631
5009
|
msgstr ""
|
4632
5010
|
|
5011
|
+
#, fuzzy
|
4633
5012
|
msgid "Synchronize"
|
4634
|
-
msgstr ""
|
5013
|
+
msgstr "सिंक्रोनाइजेशन"
|
4635
5014
|
|
5015
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4636
5016
|
msgid "Synchronize Now"
|
4637
|
-
msgstr ""
|
5017
|
+
msgstr "आत्ता समजुळवणी करा"
|
4638
5018
|
|
4639
5019
|
msgid "Synchronize capsule content"
|
4640
5020
|
msgstr ""
|
@@ -4654,8 +5034,10 @@ msgstr ""
|
|
4654
5034
|
msgid "Synchronize: Validate Content"
|
4655
5035
|
msgstr ""
|
4656
5036
|
|
5037
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5038
|
+
#, fuzzy
|
4657
5039
|
msgid "Syncing Complete."
|
4658
|
-
msgstr ""
|
5040
|
+
msgstr "सिंक पूर्ण."
|
4659
5041
|
|
4660
5042
|
msgid "System Purpose"
|
4661
5043
|
msgstr ""
|
@@ -4681,8 +5063,9 @@ msgstr ""
|
|
4681
5063
|
msgid "Temporary"
|
4682
5064
|
msgstr ""
|
4683
5065
|
|
5066
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4684
5067
|
msgid "The '%s' environment cannot contain a changeset!"
|
4685
|
-
msgstr ""
|
5068
|
+
msgstr "'%s' वातावरणात चेंजसेट समाविष्टीत असणे अशक्य!"
|
4686
5069
|
|
4687
5070
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4688
5071
|
msgstr ""
|
@@ -4696,14 +5079,16 @@ msgstr ""
|
|
4696
5079
|
msgid "The actual file contents"
|
4697
5080
|
msgstr ""
|
4698
5081
|
|
5082
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
4699
5083
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
4700
|
-
msgstr ""
|
5084
|
+
msgstr "सध्याची संस्था नष्ट करणे अशक्य. कृपया नष्ट करण्यापूर्वी वेगळ्या संस्थेचा वापर करा."
|
4701
5085
|
|
4702
5086
|
msgid "The default content view cannot be edited, published, or deleted."
|
4703
5087
|
msgstr ""
|
4704
5088
|
|
5089
|
+
#, fuzzy
|
4705
5090
|
msgid "The default content view cannot be promoted"
|
4706
|
-
msgstr ""
|
5091
|
+
msgstr "टेम्पलेटला एकस्पोर्ट करणे अशक्य"
|
4707
5092
|
|
4708
5093
|
msgid "The default dependency solving value for new Content Views."
|
4709
5094
|
msgstr ""
|
@@ -4720,12 +5105,6 @@ msgstr ""
|
|
4720
5105
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4721
5106
|
msgstr ""
|
4722
5107
|
|
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
5108
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4730
5109
|
msgstr ""
|
4731
5110
|
|
@@ -4758,6 +5137,9 @@ msgstr ""
|
|
4758
5137
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
4759
5138
|
msgstr ""
|
4760
5139
|
|
5140
|
+
msgid "The maximum number of versions of each package to keep."
|
5141
|
+
msgstr ""
|
5142
|
+
|
4761
5143
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4762
5144
|
msgstr ""
|
4763
5145
|
|
@@ -4790,8 +5172,9 @@ msgstr ""
|
|
4790
5172
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4791
5173
|
msgstr ""
|
4792
5174
|
|
5175
|
+
#, fuzzy
|
4793
5176
|
msgid "The repository is already enabled"
|
4794
|
-
msgstr ""
|
5177
|
+
msgstr "रेपॉजिटरि '%s' सुरू केले."
|
4795
5178
|
|
4796
5179
|
msgid "The request did not contain any repository information."
|
4797
5180
|
msgstr ""
|
@@ -4840,8 +5223,9 @@ msgstr ""
|
|
4840
5223
|
msgid "There are no errata that need to be applied to registered content hosts."
|
4841
5224
|
msgstr ""
|
4842
5225
|
|
5226
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4843
5227
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
4844
|
-
msgstr ""
|
5228
|
+
msgstr "उत्पादने किंवा रेपॉजिटरिज समर्थीत नाही. %{custom} किंवा %{redhat} तर्फे सुरू करण्याचा प्रयत्न करा."
|
4845
5229
|
|
4846
5230
|
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
5231
|
msgstr ""
|
@@ -4897,9 +5281,6 @@ msgstr ""
|
|
4897
5281
|
msgid "This is disabled because a manifest task is in progress"
|
4898
5282
|
msgstr ""
|
4899
5283
|
|
4900
|
-
msgid "This is disabled because disconnected mode is enabled."
|
4901
|
-
msgstr ""
|
4902
|
-
|
4903
5284
|
msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
|
4904
5285
|
msgstr ""
|
4905
5286
|
|
@@ -4945,8 +5326,9 @@ msgstr ""
|
|
4945
5326
|
msgid "Timestamp"
|
4946
5327
|
msgstr ""
|
4947
5328
|
|
5329
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
|
4948
5330
|
msgid "Title"
|
4949
|
-
msgstr ""
|
5331
|
+
msgstr "शीर्षक"
|
4950
5332
|
|
4951
5333
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
4952
5334
|
msgstr ""
|
@@ -4984,8 +5366,11 @@ msgstr ""
|
|
4984
5366
|
msgid "Type of content: \"cert\", \"gpg_key\""
|
4985
5367
|
msgstr ""
|
4986
5368
|
|
5369
|
+
msgid "URL needs to have a trailing /"
|
5370
|
+
msgstr ""
|
5371
|
+
|
4987
5372
|
msgid "UUID"
|
4988
|
-
msgstr "
|
5373
|
+
msgstr ""
|
4989
5374
|
|
4990
5375
|
msgid "UUID of the consumer"
|
4991
5376
|
msgstr ""
|
@@ -5011,12 +5396,6 @@ msgstr ""
|
|
5011
5396
|
msgid "Unable to detect puppet path"
|
5012
5397
|
msgstr ""
|
5013
5398
|
|
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
5399
|
msgid "Unable to find product '%s' in organization '%s'"
|
5021
5400
|
msgstr ""
|
5022
5401
|
|
@@ -5071,6 +5450,7 @@ msgstr ""
|
|
5071
5450
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
5072
5451
|
msgstr ""
|
5073
5452
|
|
5453
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5074
5454
|
msgid "Unknown"
|
5075
5455
|
msgstr "अपरिचीत"
|
5076
5456
|
|
@@ -5107,12 +5487,14 @@ msgstr ""
|
|
5107
5487
|
msgid "Unsubscribed hypervisor"
|
5108
5488
|
msgstr ""
|
5109
5489
|
|
5490
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5110
5491
|
msgid "Unsupported URL protocol %s."
|
5111
|
-
msgstr ""
|
5492
|
+
msgstr "असमर्थीत URL प्रोटोकॉल %s."
|
5112
5493
|
|
5113
5494
|
msgid "Unsupported event type %{type}. Supported: %{types}"
|
5114
5495
|
msgstr ""
|
5115
5496
|
|
5497
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5116
5498
|
msgid "Update"
|
5117
5499
|
msgstr "सुधारणा"
|
5118
5500
|
|
@@ -5224,8 +5606,14 @@ msgstr ""
|
|
5224
5606
|
msgid "Update the quantity of one or more subscriptions on an upstream allocation"
|
5225
5607
|
msgstr ""
|
5226
5608
|
|
5609
|
+
msgid "Update version"
|
5610
|
+
msgstr ""
|
5611
|
+
|
5227
5612
|
msgid "Updated"
|
5228
|
-
msgstr "
|
5613
|
+
msgstr ""
|
5614
|
+
|
5615
|
+
msgid "Updated component details"
|
5616
|
+
msgstr ""
|
5229
5617
|
|
5230
5618
|
msgid "Updates"
|
5231
5619
|
msgstr ""
|
@@ -5236,8 +5624,9 @@ msgstr ""
|
|
5236
5624
|
msgid "Updates all packages on the host(s)"
|
5237
5625
|
msgstr ""
|
5238
5626
|
|
5627
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5239
5628
|
msgid "Updating Package..."
|
5240
|
-
msgstr ""
|
5629
|
+
msgstr "संकुल सुधारित करत आहे..."
|
5241
5630
|
|
5242
5631
|
msgid "Updating System Purpose for host"
|
5243
5632
|
msgstr ""
|
@@ -5245,8 +5634,9 @@ msgstr ""
|
|
5245
5634
|
msgid "Updating System Purpose for host %s"
|
5246
5635
|
msgstr ""
|
5247
5636
|
|
5637
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5248
5638
|
msgid "Updating package group..."
|
5249
|
-
msgstr ""
|
5639
|
+
msgstr "संकुल गट सुधारित करत आहे..."
|
5250
5640
|
|
5251
5641
|
msgid "Updating repository authentication configuration"
|
5252
5642
|
msgstr ""
|
@@ -5266,11 +5656,10 @@ msgstr ""
|
|
5266
5656
|
msgid "Upload content into the repository"
|
5267
5657
|
msgstr ""
|
5268
5658
|
|
5269
|
-
|
5270
|
-
|
5271
|
-
|
5659
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5660
|
+
#, fuzzy
|
5272
5661
|
msgid "Upload into"
|
5273
|
-
msgstr ""
|
5662
|
+
msgstr "सुधारित करत आहे"
|
5274
5663
|
|
5275
5664
|
msgid "Upload request id"
|
5276
5665
|
msgstr ""
|
@@ -5306,7 +5695,7 @@ msgid "Used to determine download concurrency of the repository in pulp3. Use va
|
|
5306
5695
|
msgstr ""
|
5307
5696
|
|
5308
5697
|
msgid "User"
|
5309
|
-
msgstr "
|
5698
|
+
msgstr ""
|
5310
5699
|
|
5311
5700
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5312
5701
|
msgstr ""
|
@@ -5342,7 +5731,13 @@ msgid "Verify checksum of repository contents"
|
|
5342
5731
|
msgstr ""
|
5343
5732
|
|
5344
5733
|
msgid "Version"
|
5345
|
-
msgstr "
|
5734
|
+
msgstr ""
|
5735
|
+
|
5736
|
+
msgid "Version "
|
5737
|
+
msgstr ""
|
5738
|
+
|
5739
|
+
msgid "Version ${item.version}"
|
5740
|
+
msgstr ""
|
5346
5741
|
|
5347
5742
|
msgid "Versions"
|
5348
5743
|
msgstr ""
|
@@ -5350,14 +5745,15 @@ msgstr ""
|
|
5350
5745
|
msgid "Versions will appear here when the content view is published."
|
5351
5746
|
msgstr ""
|
5352
5747
|
|
5748
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5353
5749
|
msgid "View %{view} has not been promoted to %{env}"
|
5354
|
-
msgstr ""
|
5750
|
+
msgstr "दृष्य %{view} यास %{env} करिता प्रमोट केले नाही"
|
5355
5751
|
|
5356
5752
|
msgid "View a report of the affected hosts"
|
5357
5753
|
msgstr ""
|
5358
5754
|
|
5359
5755
|
msgid "Virtual"
|
5360
|
-
msgstr ""
|
5756
|
+
msgstr "वर्चुअल"
|
5361
5757
|
|
5362
5758
|
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5363
5759
|
msgstr ""
|
@@ -5419,11 +5815,13 @@ msgstr ""
|
|
5419
5815
|
msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
|
5420
5816
|
msgstr ""
|
5421
5817
|
|
5818
|
+
#, fuzzy
|
5422
5819
|
msgid "You cannot set an organization's parent. This feature is disabled."
|
5423
|
-
msgstr ""
|
5820
|
+
msgstr "वापरकर्ता %s करीता पूर्वनिर्धारित संस्था व वातावरण ठरवले नाही."
|
5424
5821
|
|
5822
|
+
#, fuzzy
|
5425
5823
|
msgid "You cannot set an organization's parent_id. This feature is disabled."
|
5426
|
-
msgstr ""
|
5824
|
+
msgstr "वापरकर्ता %s करीता पूर्वनिर्धारित संस्था व वातावरण ठरवले नाही."
|
5427
5825
|
|
5428
5826
|
msgid "You currently don't have any Content Views."
|
5429
5827
|
msgstr ""
|
@@ -5494,11 +5892,13 @@ msgstr ""
|
|
5494
5892
|
msgid "a module stream"
|
5495
5893
|
msgstr ""
|
5496
5894
|
|
5895
|
+
#, fuzzy
|
5497
5896
|
msgid "a package"
|
5498
|
-
msgstr ""
|
5897
|
+
msgstr "सर्व संकुले"
|
5499
5898
|
|
5899
|
+
#, fuzzy
|
5500
5900
|
msgid "a package group"
|
5501
|
-
msgstr ""
|
5901
|
+
msgstr "संकुल गट प्रतिष्ठापीत करत आहे..."
|
5502
5902
|
|
5503
5903
|
msgid "actions not found"
|
5504
5904
|
msgstr ""
|
@@ -5509,8 +5909,9 @@ msgstr ""
|
|
5509
5909
|
msgid "activation key name to filter by"
|
5510
5910
|
msgstr ""
|
5511
5911
|
|
5912
|
+
#, fuzzy
|
5512
5913
|
msgid "activation keys"
|
5513
|
-
msgstr ""
|
5914
|
+
msgstr "ॲक्टिवेशन किज्"
|
5514
5915
|
|
5515
5916
|
msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
|
5516
5917
|
msgstr ""
|
@@ -5519,13 +5920,15 @@ msgid "add all packages without errata to the included/excluded list. (package f
|
|
5519
5920
|
msgstr ""
|
5520
5921
|
|
5521
5922
|
msgid "all packages"
|
5522
|
-
msgstr ""
|
5923
|
+
msgstr "सर्व संकुले"
|
5523
5924
|
|
5925
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5524
5926
|
msgid "all packages update"
|
5525
|
-
msgstr ""
|
5927
|
+
msgstr "सर्व संकुलांची सुधारणा"
|
5526
5928
|
|
5929
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5527
5930
|
msgid "all packages update failed"
|
5528
|
-
msgstr ""
|
5931
|
+
msgstr "सर्व संकुलांची सुधारणा अपयशी झाली"
|
5529
5932
|
|
5530
5933
|
msgid "allow unauthenticed pull of container images"
|
5531
5934
|
msgstr ""
|
@@ -5533,17 +5936,21 @@ msgstr ""
|
|
5533
5936
|
msgid "already belongs to the content view"
|
5534
5937
|
msgstr ""
|
5535
5938
|
|
5939
|
+
#, fuzzy
|
5536
5940
|
msgid "already taken"
|
5537
|
-
msgstr ""
|
5941
|
+
msgstr "आधिपासूनच टेम्पलेटमध्ये समाविष्टीत आहे"
|
5538
5942
|
|
5539
5943
|
msgid "an ansible collection"
|
5540
5944
|
msgstr ""
|
5541
5945
|
|
5946
|
+
#, fuzzy
|
5542
5947
|
msgid "an erratum"
|
5543
|
-
msgstr ""
|
5948
|
+
msgstr "एराटम प्रतिष्ठापीत करत आहे..."
|
5544
5949
|
|
5950
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5951
|
+
#, fuzzy
|
5545
5952
|
msgid "an organization"
|
5546
|
-
msgstr ""
|
5953
|
+
msgstr "संस्था"
|
5547
5954
|
|
5548
5955
|
msgid "an ostree branch"
|
5549
5956
|
msgstr ""
|
@@ -5563,35 +5970,43 @@ msgstr ""
|
|
5563
5970
|
msgid "can the activation key have unlimited hosts"
|
5564
5971
|
msgstr ""
|
5565
5972
|
|
5973
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5566
5974
|
msgid "can't be blank"
|
5567
|
-
msgstr ""
|
5975
|
+
msgstr "रिकामे असणे अशक्य"
|
5568
5976
|
|
5569
5977
|
msgid "cannot add filter to import-only view"
|
5570
5978
|
msgstr ""
|
5571
5979
|
|
5980
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5572
5981
|
msgid "cannot be a binary file."
|
5573
|
-
msgstr ""
|
5982
|
+
msgstr "बाइनरि फाइल असणे अशक्य."
|
5574
5983
|
|
5984
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5575
5985
|
msgid "cannot be blank"
|
5576
|
-
msgstr ""
|
5986
|
+
msgstr "रिकामे असणे अशक्य"
|
5577
5987
|
|
5578
5988
|
msgid "cannot be blank when Repository URL is provided."
|
5579
5989
|
msgstr ""
|
5580
5990
|
|
5991
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5992
|
+
#, fuzzy
|
5581
5993
|
msgid "cannot be changed."
|
5582
|
-
msgstr ""
|
5994
|
+
msgstr "रिकामे असणे अशक्य"
|
5583
5995
|
|
5996
|
+
#, fuzzy
|
5584
5997
|
msgid "cannot be deleted if it has been promoted."
|
5585
|
-
msgstr ""
|
5998
|
+
msgstr "रेपॉजिटरिला आधिपासूनच प्रमोट केल्यामुळे त्यास बंद करणे अशक्य."
|
5586
5999
|
|
5587
6000
|
msgid "cannot be less than one"
|
5588
6001
|
msgstr ""
|
5589
6002
|
|
6003
|
+
#, fuzzy
|
5590
6004
|
msgid "cannot be lower than current usage count (%s)"
|
5591
|
-
msgstr ""
|
6005
|
+
msgstr "सध्याच्या वापर (%s) किंवा अमर्यादितपेक्षा जास्त पाहिजे"
|
5592
6006
|
|
6007
|
+
#, fuzzy
|
5593
6008
|
msgid "cannot be nil"
|
5594
|
-
msgstr ""
|
6009
|
+
msgstr "रिकामे असणे अशक्य"
|
5595
6010
|
|
5596
6011
|
msgid "cannot be set because unlimited hosts is set"
|
5597
6012
|
msgstr ""
|
@@ -5602,20 +6017,23 @@ msgstr ""
|
|
5602
6017
|
msgid "cannot be set for non-yum repositories."
|
5603
6018
|
msgstr ""
|
5604
6019
|
|
6020
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5605
6021
|
msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
|
5606
|
-
msgstr ""
|
6022
|
+
msgstr "ascii अल्फा न्युमेरल्स्, '_', '-' व्यतिरिक्त इतर अक्षरे समाविष्टीत असणे अशक्य. "
|
5607
6023
|
|
5608
6024
|
msgid "cannot contain commas"
|
5609
6025
|
msgstr ""
|
5610
6026
|
|
6027
|
+
#, fuzzy
|
5611
6028
|
msgid "cannot contain filters if composite view"
|
5612
|
-
msgstr ""
|
6029
|
+
msgstr "ASCII मूल्यांऐवजी इतर अक्षरे समाविष्ट करणे अशक्य"
|
5613
6030
|
|
5614
6031
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5615
6032
|
msgstr ""
|
5616
6033
|
|
6034
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5617
6035
|
msgid "cannot contain more than %s characters"
|
5618
|
-
msgstr ""
|
6036
|
+
msgstr "%s अक्षरांपेक्षा जास्त असणे अशक्य"
|
5619
6037
|
|
5620
6038
|
msgid "checking Candlepin task status"
|
5621
6039
|
msgstr ""
|
@@ -5662,11 +6080,13 @@ msgstr ""
|
|
5662
6080
|
msgid "content view numeric identifier"
|
5663
6081
|
msgstr ""
|
5664
6082
|
|
6083
|
+
#, fuzzy
|
5665
6084
|
msgid "content view publish"
|
5666
|
-
msgstr ""
|
6085
|
+
msgstr "कंटेंट"
|
5667
6086
|
|
6087
|
+
#, fuzzy
|
5668
6088
|
msgid "content view refresh"
|
5669
|
-
msgstr ""
|
6089
|
+
msgstr "कंटेंट"
|
5670
6090
|
|
5671
6091
|
msgid "content view to reassign orphaned activation keys to"
|
5672
6092
|
msgstr ""
|
@@ -5737,8 +6157,9 @@ msgstr ""
|
|
5737
6157
|
msgid "environment to reassign orphaned systems to"
|
5738
6158
|
msgstr ""
|
5739
6159
|
|
6160
|
+
#, fuzzy
|
5740
6161
|
msgid "environments"
|
5741
|
-
msgstr ""
|
6162
|
+
msgstr "वातावरणे"
|
5742
6163
|
|
5743
6164
|
msgid "errata_id of the content view filter rule"
|
5744
6165
|
msgstr ""
|
@@ -5782,6 +6203,9 @@ msgstr ""
|
|
5782
6203
|
msgid "filter identifier"
|
5783
6204
|
msgstr ""
|
5784
6205
|
|
6206
|
+
msgid "filter identifiers"
|
6207
|
+
msgstr ""
|
6208
|
+
|
5785
6209
|
msgid "filter only environments containing this name"
|
5786
6210
|
msgstr ""
|
5787
6211
|
|
@@ -5794,8 +6218,9 @@ msgstr ""
|
|
5794
6218
|
msgid "foreman-tasks service not running or is not ready yet"
|
5795
6219
|
msgstr ""
|
5796
6220
|
|
6221
|
+
#, fuzzy
|
5797
6222
|
msgid "has already been taken"
|
5798
|
-
msgstr ""
|
6223
|
+
msgstr "वैधता अपयशी: लेबलचा आधिपासून झाला आहे"
|
5799
6224
|
|
5800
6225
|
msgid "has already been taken for a product in this organization."
|
5801
6226
|
msgstr ""
|
@@ -5842,23 +6267,27 @@ msgstr ""
|
|
5842
6267
|
msgid "initiating Pulp task"
|
5843
6268
|
msgstr ""
|
5844
6269
|
|
6270
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5845
6271
|
msgid "installing errata..."
|
5846
|
-
msgstr ""
|
6272
|
+
msgstr "एराटा प्रतिष्ठापीत करत आहे..."
|
5847
6273
|
|
6274
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5848
6275
|
msgid "installing erratum..."
|
5849
|
-
msgstr ""
|
6276
|
+
msgstr "एराटम प्रतिष्ठापीत करत आहे..."
|
5850
6277
|
|
6278
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5851
6279
|
msgid "installing package group..."
|
5852
|
-
msgstr ""
|
6280
|
+
msgstr "संकुल गट प्रतिष्ठापीत करत आहे..."
|
5853
6281
|
|
5854
6282
|
msgid "installing package groups..."
|
5855
|
-
msgstr ""
|
6283
|
+
msgstr "संकुल गटे प्रतिष्ठापीत करत आहे..."
|
5856
6284
|
|
6285
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5857
6286
|
msgid "installing package..."
|
5858
|
-
msgstr ""
|
6287
|
+
msgstr "संकुल प्रतिष्ठापीत करत आहे..."
|
5859
6288
|
|
5860
6289
|
msgid "installing packages..."
|
5861
|
-
msgstr ""
|
6290
|
+
msgstr "संकुले प्रतिष्ठापीत करत आहे..."
|
5862
6291
|
|
5863
6292
|
msgid "interpret specified object to return only Repositories that can be associated with specified object. Only 'content_view' & 'content_view_version' are supported."
|
5864
6293
|
msgstr ""
|
@@ -5872,9 +6301,13 @@ msgstr ""
|
|
5872
6301
|
msgid "is already attached to the capsule"
|
5873
6302
|
msgstr ""
|
5874
6303
|
|
6304
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author sandeeps
|
5875
6305
|
msgid "is invalid"
|
5876
6306
|
msgstr "अवैध आहे"
|
5877
6307
|
|
6308
|
+
msgid "is not enabled. must be one of the following: %s"
|
6309
|
+
msgstr ""
|
6310
|
+
|
5878
6311
|
msgid "label of the environment"
|
5879
6312
|
msgstr ""
|
5880
6313
|
|
@@ -5908,9 +6341,6 @@ msgstr ""
|
|
5908
6341
|
msgid "maximum number of registered content hosts"
|
5909
6342
|
msgstr ""
|
5910
6343
|
|
5911
|
-
msgid "maximum size of each ISO in MB"
|
5912
|
-
msgstr ""
|
5913
|
-
|
5914
6344
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5915
6345
|
msgstr ""
|
5916
6346
|
|
@@ -5923,8 +6353,9 @@ msgstr ""
|
|
5923
6353
|
msgid "must be %{gpg_key} or %{cert}"
|
5924
6354
|
msgstr ""
|
5925
6355
|
|
6356
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5926
6357
|
msgid "must be a positive integer value."
|
5927
|
-
msgstr ""
|
6358
|
+
msgstr "पॉजिटिव्ह इंटिजर मूल्य पाहिजे."
|
5928
6359
|
|
5929
6360
|
msgid "must be one of the following: %s"
|
5930
6361
|
msgstr ""
|
@@ -5932,17 +6363,21 @@ msgstr ""
|
|
5932
6363
|
msgid "must be one of: %s"
|
5933
6364
|
msgstr ""
|
5934
6365
|
|
6366
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5935
6367
|
msgid "must be unique within one organization"
|
5936
|
-
msgstr ""
|
6368
|
+
msgstr "एक संस्था अंतर्गत एकमेव असायला हवे"
|
5937
6369
|
|
6370
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5938
6371
|
msgid "must contain '%s'"
|
5939
|
-
msgstr ""
|
6372
|
+
msgstr "'%s' समाविष्टीत असणे आवश्यक"
|
5940
6373
|
|
6374
|
+
#, fuzzy
|
5941
6375
|
msgid "must contain GPG Key"
|
5942
|
-
msgstr ""
|
6376
|
+
msgstr "'%s' समाविष्टीत असणे आवश्यक"
|
5943
6377
|
|
6378
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5944
6379
|
msgid "must contain at least %s character"
|
5945
|
-
msgstr ""
|
6380
|
+
msgstr "किमान %s अक्षर समाविष्टीत पाहिजे"
|
5946
6381
|
|
5947
6382
|
msgid "must contain valid Public GPG Key"
|
5948
6383
|
msgstr ""
|
@@ -5950,8 +6385,9 @@ msgstr ""
|
|
5950
6385
|
msgid "must contain valid Public GPG Key"
|
5951
6386
|
msgstr ""
|
5952
6387
|
|
6388
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
5953
6389
|
msgid "must not contain leading or trailing white spaces."
|
5954
|
-
msgstr ""
|
6390
|
+
msgstr "लिडिंग किंवा ट्रेलिंग वाइट स्पेसेस् समाविष्टीत नसावे."
|
5955
6391
|
|
5956
6392
|
msgid "name"
|
5957
6393
|
msgstr ""
|
@@ -5981,7 +6417,7 @@ msgid "name of the subscription"
|
|
5981
6417
|
msgstr ""
|
5982
6418
|
|
5983
6419
|
msgid "name: %s doesn't exist "
|
5984
|
-
msgstr ""
|
6420
|
+
msgstr "नाव: %s अस्तित्वात नाही"
|
5985
6421
|
|
5986
6422
|
msgid "new name for the filter"
|
5987
6423
|
msgstr ""
|
@@ -5998,8 +6434,9 @@ msgstr ""
|
|
5998
6434
|
msgid "obtain manifest history for subscriptions"
|
5999
6435
|
msgstr ""
|
6000
6436
|
|
6437
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6001
6438
|
msgid "of environment must be unique within one organization"
|
6002
|
-
msgstr ""
|
6439
|
+
msgstr "एका संस्थेत वातावरण एकमेव पाहिजे"
|
6003
6440
|
|
6004
6441
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
6005
6442
|
msgstr ""
|
@@ -6073,17 +6510,19 @@ msgstr ""
|
|
6073
6510
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6074
6511
|
msgstr ""
|
6075
6512
|
|
6513
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
6076
6514
|
msgid "removing package group..."
|
6077
|
-
msgstr ""
|
6515
|
+
msgstr "संकुल गट काढून टाकत आहे..."
|
6078
6516
|
|
6079
6517
|
msgid "removing package groups..."
|
6080
|
-
msgstr ""
|
6518
|
+
msgstr "संकुल गटे काढून टाकत आहे..."
|
6081
6519
|
|
6520
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
6082
6521
|
msgid "removing package..."
|
6083
|
-
msgstr ""
|
6522
|
+
msgstr "संकुल काढून टाकत आहे..."
|
6084
6523
|
|
6085
6524
|
msgid "removing packages..."
|
6086
|
-
msgstr ""
|
6525
|
+
msgstr "संकुले काढून टाकत आहे..."
|
6087
6526
|
|
6088
6527
|
msgid "repo label"
|
6089
6528
|
msgstr ""
|
@@ -6163,8 +6602,9 @@ msgstr ""
|
|
6163
6602
|
msgid "temporarily override feed URL for sync"
|
6164
6603
|
msgstr ""
|
6165
6604
|
|
6605
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
6166
6606
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6167
|
-
msgstr ""
|
6607
|
+
msgstr "खालील गुणधर्मांना Red Hat प्रोव्हाइडरकरीता: [ %s ] करीता सुधारित करणे अशक्य"
|
6168
6608
|
|
6169
6609
|
msgid "true if the latest version of the component's content view is desired"
|
6170
6610
|
msgstr ""
|
@@ -6193,17 +6633,19 @@ msgstr ""
|
|
6193
6633
|
msgid "update a filter"
|
6194
6634
|
msgstr ""
|
6195
6635
|
|
6636
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
6196
6637
|
msgid "updating package group..."
|
6197
|
-
msgstr ""
|
6638
|
+
msgstr "संकुल गट सुधारित करत आहे..."
|
6198
6639
|
|
6199
6640
|
msgid "updating package groups..."
|
6200
|
-
msgstr ""
|
6641
|
+
msgstr "संकुल गटे सुधारित करत आहे..."
|
6201
6642
|
|
6643
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
|
6202
6644
|
msgid "updating package..."
|
6203
|
-
msgstr ""
|
6645
|
+
msgstr "संकुल सुधारित करत आहे..."
|
6204
6646
|
|
6205
6647
|
msgid "updating packages..."
|
6206
|
-
msgstr ""
|
6648
|
+
msgstr "संकुले सुधारित करत आहे..."
|
6207
6649
|
|
6208
6650
|
msgid "url not defined."
|
6209
6651
|
msgstr ""
|