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