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/bn/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
|
+
# Runa Bhattacharjee <runab@fedoraproject.org>, 2013. #zanata
|
8
|
+
# bnin <sray@redhat.com>, 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: Bryan Kearney <bryan.kearney@gmail.com>, 2020\n"
|
15
|
-
"Language-Team: Bengali (https://www.transifex.com/foreman/teams/114/bn/)\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"
|
19
|
-
"
|
16
|
+
"PO-Revision-Date: 2014-03-21 03:28-0400\n"
|
17
|
+
"Last-Translator: bnin <sray@redhat.com>\n"
|
18
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
19
|
+
"Language: bn-IN\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,6 +43,10 @@ msgstr ""
|
|
42
43
|
msgid " RPMs"
|
43
44
|
msgstr ""
|
44
45
|
|
46
|
+
msgid " View task details "
|
47
|
+
msgstr ""
|
48
|
+
|
49
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
45
50
|
msgid " environment cannot be set to an environment already on its path"
|
46
51
|
msgstr "পাথের মধ্যে উপস্থিত এনভায়রনমেন্টের জন্য এনভায়রনমেন্ট নির্ধারণ করা যায়নি"
|
47
52
|
|
@@ -51,8 +56,10 @@ msgstr ""
|
|
51
56
|
msgid "%s Available"
|
52
57
|
msgstr ""
|
53
58
|
|
59
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
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,12 +69,14 @@ 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 Runa Bhattacharjee
|
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 Runa Bhattacharjee
|
71
80
|
msgid "%s is not a valid package name"
|
72
81
|
msgstr "%s-টি বৈধ প্যাকেজের নাম নয়"
|
73
82
|
|
@@ -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,6 +341,7 @@ 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, author Runa Bhattacharjee
|
278
345
|
msgid ": '%s' is a built-in environment"
|
279
346
|
msgstr ": '%s' একটি বিল্ট-ইন পরিবেশ"
|
280
347
|
|
@@ -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 "একটি keyname উল্লেখ করা আবশ্যক"
|
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"
|
@@ -356,22 +427,24 @@ msgstr ""
|
|
356
427
|
msgid "Action with sub plans"
|
357
428
|
msgstr ""
|
358
429
|
|
430
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
359
431
|
msgid "Activation Keys"
|
360
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 CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
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 Runa Bhattacharjee
|
576
670
|
msgid "At least one activation key must be provided"
|
577
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 Runa Bhattacharjee
|
582
677
|
msgid "At least one organization must exist."
|
583
678
|
msgstr "অন্তত একটি প্রতিষ্ঠান উপস্থিত থাকা আবশ্যক।"
|
584
679
|
|
680
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
681
|
+
#, fuzzy
|
585
682
|
msgid "Attach a subscription"
|
586
|
-
msgstr ""
|
683
|
+
msgstr "সংযুক্ত সাবস্ক্রিপশন"
|
587
684
|
|
588
685
|
msgid "Attach subscriptions"
|
589
686
|
msgstr ""
|
@@ -594,6 +691,12 @@ 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
701
|
msgstr ""
|
599
702
|
|
@@ -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, author Runa Bhattacharjee
|
710
|
+
#, fuzzy
|
606
711
|
msgid "Auto attach subscriptions"
|
607
|
-
msgstr ""
|
712
|
+
msgstr "সংযুক্ত সাবস্ক্রিপশন"
|
608
713
|
|
609
714
|
msgid "Autopublish"
|
610
715
|
msgstr ""
|
@@ -639,6 +744,7 @@ 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, author bnin
|
642
748
|
msgid "Beta"
|
643
749
|
msgstr "বিটা"
|
644
750
|
|
@@ -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
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,12 +775,15 @@ 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 Runa Bhattacharjee
|
669
779
|
msgid "CDN loading error: %s not found"
|
670
780
|
msgstr "CDN লোড করতে ত্রুটি: %s পাওয়া যায়নি"
|
671
781
|
|
782
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
672
783
|
msgid "CDN loading error: access denied to %s"
|
673
784
|
msgstr "CDN লোড করতে ত্রুটি: %s ব্যবহারের অনুমতি প্রত্যাখ্যান করা হয়েছে"
|
674
785
|
|
786
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
675
787
|
msgid "CDN loading error: access forbidden to %s"
|
676
788
|
msgstr "CDN লোড করতে ত্রুটি: %s-র ব্যবহার নিষেধ"
|
677
789
|
|
@@ -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, author Runa Bhattacharjee
|
702
815
|
msgid "Can't update the '%s' environment"
|
703
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,15 +825,20 @@ 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, author Runa Bhattacharjee
|
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, author Runa Bhattacharjee
|
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 Runa Bhattacharjee
|
723
842
|
msgid "Candlepin Event"
|
724
843
|
msgstr "Candlepin-র ইভেন্ট"
|
725
844
|
|
@@ -762,12 +881,14 @@ 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' changeset মুছে ফেলা যাবে না"
|
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, author bnin
|
771
892
|
msgid "Cannot delete from %s, view does not exist there."
|
772
893
|
msgstr "%s থেকে মোছা যাবে না, সেখানে রূপের অস্তিত্ব নেই।"
|
773
894
|
|
@@ -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,6 +946,7 @@ 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, author Runa Bhattacharjee
|
825
950
|
msgid "Cannot register a system to the '%s' environment"
|
826
951
|
msgstr "'%s' পরিবেশে সিস্টেম নিবন্ধন করা যাবে না"
|
827
952
|
|
@@ -885,12 +1010,14 @@ 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, author bnin
|
888
1014
|
msgid "Clone"
|
889
1015
|
msgstr "ক্লোন করুন"
|
890
1016
|
|
891
1017
|
msgid "Close"
|
892
1018
|
msgstr ""
|
893
1019
|
|
1020
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
894
1021
|
msgid "Collapse All"
|
895
1022
|
msgstr "সকল সংকুচন করুন"
|
896
1023
|
|
@@ -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, author Runa Bhattacharjee
|
906
1034
|
msgid "Component"
|
907
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,6 +1088,7 @@ msgstr ""
|
|
954
1088
|
msgid "Container image tag"
|
955
1089
|
msgstr ""
|
956
1090
|
|
1091
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys, author Runa Bhattacharjee
|
957
1092
|
msgid "Content"
|
958
1093
|
msgstr "তথ্য"
|
959
1094
|
|
@@ -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,6 +1120,7 @@ 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, author bnin
|
987
1124
|
msgid "Content View"
|
988
1125
|
msgstr "তথ্য রূপ"
|
989
1126
|
|
@@ -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, author bnin
|
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,6 +1168,7 @@ 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, author bnin
|
1032
1172
|
msgid "Content Views"
|
1033
1173
|
msgstr "বিষয়বস্তুর রূপ"
|
1034
1174
|
|
@@ -1050,12 +1190,19 @@ 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, author bnin
|
1059
1206
|
msgid "Content view '%{view}' is not in environment '%{env}'"
|
1060
1207
|
msgstr "বিষয়বস্তুর রূপ '%{view}' '%{env}' এনভায়রনমেন্টে নেই"
|
1061
1208
|
|
@@ -1104,15 +1251,21 @@ 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 Runa Bhattacharjee
|
1116
1269
|
msgid "Could not delete organization '%s'."
|
1117
1270
|
msgstr "'%s' প্রতিষ্ঠান মুছে ফেলা যায়নি।"
|
1118
1271
|
|
@@ -1155,12 +1308,14 @@ 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 "'%s' id বিশিষ্ট উৎপাদন পাওয়া যায়নি"
|
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
1320
|
msgstr "'%s' অ্যাক্টিভেশন-কি পাওয়া যায়নি"
|
1166
1321
|
|
@@ -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, author bnin
|
1182
1339
|
msgid "Couldn't find content view '%s'"
|
1183
1340
|
msgstr "বিষয়বস্তুর রূপ '%s' খুঁজে পাওয়া গেল না"
|
1184
1341
|
|
1342
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
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, author bnin
|
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 Runa Bhattacharjee
|
1191
1353
|
msgid "Couldn't find environment '%s'"
|
1192
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,27 +1364,33 @@ 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
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
1377
|
msgstr "'%s' id বিশিষ্ট উৎপাদন পাওয়া যায়নি"
|
1211
1378
|
|
1379
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1212
1380
|
msgid "Couldn't find repository '%s'"
|
1213
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 Runa Bhattacharjee
|
1218
1387
|
msgid "Couldn't find subject of synchronization"
|
1219
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 Runa Bhattacharjee
|
1224
1394
|
msgid "Create"
|
1225
1395
|
msgstr "নির্মাণ করুন"
|
1226
1396
|
|
@@ -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 Runa Bhattacharjee
|
1293
1470
|
msgid "Custom Content Repositories"
|
1294
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,6 +1483,7 @@ msgstr ""
|
|
1305
1483
|
msgid "Date"
|
1306
1484
|
msgstr ""
|
1307
1485
|
|
1486
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1308
1487
|
msgid "Date format is incorrect."
|
1309
1488
|
msgstr "তারিখের বিন্যাস সঠিক নয়।"
|
1310
1489
|
|
@@ -1320,6 +1499,7 @@ 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 Runa Bhattacharjee
|
1323
1503
|
msgid "Debug Certificate"
|
1324
1504
|
msgstr "সার্টিফিকেট ডিবাগ করুন"
|
1325
1505
|
|
@@ -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 Runa Bhattacharjee
|
1425
1607
|
msgid "Delete"
|
1426
1608
|
msgstr "মুছে ফেলুন"
|
1427
1609
|
|
@@ -1431,9 +1613,11 @@ 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, author Runa Bhattacharjee
|
1437
1621
|
msgid "Delete Manifest"
|
1438
1622
|
msgstr "ম্যানিফেস্ট মুছে ফেলুন"
|
1439
1623
|
|
@@ -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
|
|
@@ -1545,6 +1733,9 @@ msgstr ""
|
|
1545
1733
|
msgid "Details"
|
1546
1734
|
msgstr ""
|
1547
1735
|
|
1736
|
+
msgid "Determining settings for ${name}"
|
1737
|
+
msgstr ""
|
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 ""
|
1550
1741
|
|
@@ -1599,6 +1790,7 @@ msgstr ""
|
|
1599
1790
|
msgid "Duplicate branches specified - %{branches}"
|
1600
1791
|
msgstr ""
|
1601
1792
|
|
1793
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1602
1794
|
msgid "Duration"
|
1603
1795
|
msgstr "অবকাল"
|
1604
1796
|
|
@@ -1614,9 +1806,11 @@ 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, author Runa Bhattacharjee
|
1620
1814
|
msgid "Either organization ID or environment ID needs to be specified"
|
1621
1815
|
msgstr "প্রতিষ্ঠানের ID অথবা এনভায়রনমেন্টের ID উল্লেখ করা আবশ্যক"
|
1622
1816
|
|
@@ -1659,6 +1853,7 @@ 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
1858
|
msgstr "উন্নত বৈশিষ্ট্য"
|
1664
1859
|
|
@@ -1671,6 +1866,7 @@ msgstr "এনভায়রনমেন্ট"
|
|
1671
1866
|
msgid "Environment IDs"
|
1672
1867
|
msgstr ""
|
1673
1868
|
|
1869
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1674
1870
|
msgid "Environment cannot be in its own promotion path"
|
1675
1871
|
msgstr "এনভায়রনমেন্টের প্রোমোশনের পাথের মধ্যে এনভায়রনমেন্ট স্থাপন করা সম্ভব নয়"
|
1676
1872
|
|
@@ -1680,23 +1876,30 @@ msgstr ""
|
|
1680
1876
|
msgid "Environments"
|
1681
1877
|
msgstr ""
|
1682
1878
|
|
1879
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1683
1880
|
msgid "Errata"
|
1684
1881
|
msgstr "ত্রুটি-বিচ্যুতি"
|
1685
1882
|
|
1883
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1884
|
+
#, fuzzy
|
1686
1885
|
msgid "Errata ID"
|
1687
|
-
msgstr ""
|
1886
|
+
msgstr "ত্রুটি-বিচ্যুতি"
|
1688
1887
|
|
1888
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1689
1889
|
msgid "Errata Install"
|
1690
1890
|
msgstr "ত্রুটি-বিচ্যুতি ইনস্টলেশন"
|
1691
1891
|
|
1892
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1692
1893
|
msgid "Errata Install scheduled by %s"
|
1693
1894
|
msgstr "%s দ্বারা নির্ধারিত ত্রুটি-বিচ্যুতির ইনস্টলেশন"
|
1694
1895
|
|
1695
1896
|
msgid "Errata id of the erratum (RHSA-2012:108)"
|
1696
1897
|
msgstr ""
|
1697
1898
|
|
1899
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1900
|
+
#, fuzzy
|
1698
1901
|
msgid "Errata mail"
|
1699
|
-
msgstr ""
|
1902
|
+
msgstr "ত্রুটি-বিচ্যুতি ইনস্টলেশন"
|
1700
1903
|
|
1701
1904
|
msgid "Errata to exclusively include in the action"
|
1702
1905
|
msgstr ""
|
@@ -1704,21 +1907,28 @@ msgstr ""
|
|
1704
1907
|
msgid "Errata to explicitly exclude in the action. All other applicable errata will be included in the action, unless an included parameter is passed as well."
|
1705
1908
|
msgstr ""
|
1706
1909
|
|
1910
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1911
|
+
#, fuzzy
|
1707
1912
|
msgid "Erratum"
|
1708
|
-
msgstr ""
|
1913
|
+
msgstr "ত্রুটি-বিচ্যুতি"
|
1709
1914
|
|
1915
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1710
1916
|
msgid "Erratum Install Canceled"
|
1711
1917
|
msgstr "ত্রুটি-বিচ্যুতির ইনস্টলেশন বাতিল করা হয়েছে"
|
1712
1918
|
|
1919
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1713
1920
|
msgid "Erratum Install Complete"
|
1714
1921
|
msgstr "ত্রুটি-বিচ্যুতি ইনস্টলেশন সমাপ্ত হয়েছে"
|
1715
1922
|
|
1923
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1716
1924
|
msgid "Erratum Install Failed"
|
1717
1925
|
msgstr "ত্রুটি-বিচ্যুতি ইনস্টলেশন বিফল হয়েছে"
|
1718
1926
|
|
1927
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1719
1928
|
msgid "Erratum Install Timed Out"
|
1720
1929
|
msgstr "ত্রুটি-বিচ্যুতি ইনস্টলেশনের সময়সীমা উত্তীর্ণ হয়েছে"
|
1721
1930
|
|
1931
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Runa Bhattacharjee
|
1722
1932
|
msgid "Error"
|
1723
1933
|
msgstr "ত্রুটি"
|
1724
1934
|
|
@@ -1746,6 +1956,7 @@ msgstr ""
|
|
1746
1956
|
msgid "Exit"
|
1747
1957
|
msgstr ""
|
1748
1958
|
|
1959
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
1749
1960
|
msgid "Expand All"
|
1750
1961
|
msgstr "সকল প্রসারিত করুন"
|
1751
1962
|
|
@@ -1764,24 +1975,20 @@ msgstr ""
|
|
1764
1975
|
msgid "Export Types"
|
1765
1976
|
msgstr ""
|
1766
1977
|
|
1767
|
-
msgid "Export a repository"
|
1768
|
-
msgstr ""
|
1769
|
-
|
1770
1978
|
msgid "Export as CSV"
|
1771
1979
|
msgstr ""
|
1772
1980
|
|
1773
1981
|
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1774
1982
|
msgstr ""
|
1775
1983
|
|
1776
|
-
msgid "Export to ISO format"
|
1777
|
-
msgstr ""
|
1778
|
-
|
1779
1984
|
msgid "Exported version"
|
1780
1985
|
msgstr ""
|
1781
1986
|
|
1987
|
+
#, fuzzy
|
1782
1988
|
msgid "Facts successfully updated."
|
1783
|
-
msgstr ""
|
1989
|
+
msgstr "সাফল্যের সাথে নির্মিত হয়েছে।"
|
1784
1990
|
|
1991
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Runa Bhattacharjee
|
1785
1992
|
msgid "Failed"
|
1786
1993
|
msgstr "বিফল"
|
1787
1994
|
|
@@ -1841,6 +2048,9 @@ msgstr ""
|
|
1841
2048
|
msgid "Filter composite versions whose publish was triggered by the specified component version"
|
1842
2049
|
msgstr ""
|
1843
2050
|
|
2051
|
+
msgid "Filter created"
|
2052
|
+
msgstr ""
|
2053
|
+
|
1844
2054
|
msgid "Filter only composite content views"
|
1845
2055
|
msgstr ""
|
1846
2056
|
|
@@ -1865,6 +2075,9 @@ msgstr ""
|
|
1865
2075
|
msgid "Filter products by sync plan id"
|
1866
2076
|
msgstr ""
|
1867
2077
|
|
2078
|
+
msgid "Filter successfully deleted"
|
2079
|
+
msgstr ""
|
2080
|
+
|
1868
2081
|
msgid "Filter versions by environment"
|
1869
2082
|
msgstr ""
|
1870
2083
|
|
@@ -1880,6 +2093,9 @@ msgstr ""
|
|
1880
2093
|
msgid "Filters"
|
1881
2094
|
msgstr ""
|
1882
2095
|
|
2096
|
+
msgid "Filters successfully deleted"
|
2097
|
+
msgstr ""
|
2098
|
+
|
1883
2099
|
msgid "Finish action timeout"
|
1884
2100
|
msgstr ""
|
1885
2101
|
|
@@ -1921,6 +2137,7 @@ msgstr ""
|
|
1921
2137
|
msgid "GPG Key URL"
|
1922
2138
|
msgstr ""
|
1923
2139
|
|
2140
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
1924
2141
|
msgid "Generate and Download"
|
1925
2142
|
msgstr "প্রস্তুত করুন এবং ডাউনলোড করুন"
|
1926
2143
|
|
@@ -1981,6 +2198,7 @@ msgstr ""
|
|
1981
2198
|
msgid "History will appear here when the content view is published or promoted."
|
1982
2199
|
msgstr ""
|
1983
2200
|
|
2201
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Runa Bhattacharjee
|
1984
2202
|
msgid "Host"
|
1985
2203
|
msgstr "হোস্ট"
|
1986
2204
|
|
@@ -1993,6 +2211,9 @@ msgstr ""
|
|
1993
2211
|
msgid "Host '%{name}' does not belong to an organization"
|
1994
2212
|
msgstr ""
|
1995
2213
|
|
2214
|
+
msgid "Host Can Re-Register Only In Build"
|
2215
|
+
msgstr ""
|
2216
|
+
|
1996
2217
|
msgid "Host Collection name"
|
1997
2218
|
msgstr ""
|
1998
2219
|
|
@@ -2011,6 +2232,9 @@ msgstr ""
|
|
2011
2232
|
msgid "Host Profile Assume"
|
2012
2233
|
msgstr ""
|
2013
2234
|
|
2235
|
+
msgid "Host Profile Can Change In Build"
|
2236
|
+
msgstr ""
|
2237
|
+
|
2014
2238
|
msgid "Host Subscription Status"
|
2015
2239
|
msgstr ""
|
2016
2240
|
|
@@ -2053,7 +2277,7 @@ msgstr ""
|
|
2053
2277
|
msgid "Host id to list applicable packages for"
|
2054
2278
|
msgstr ""
|
2055
2279
|
|
2056
|
-
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this
|
2280
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
|
2057
2281
|
msgstr ""
|
2058
2282
|
|
2059
2283
|
msgid "Host with ID %s already exists in the host collection."
|
@@ -2140,12 +2364,10 @@ msgstr ""
|
|
2140
2364
|
msgid "ID of the sync plan"
|
2141
2365
|
msgstr ""
|
2142
2366
|
|
2367
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
2143
2368
|
msgid "ID: %s doesn't exist "
|
2144
2369
|
msgstr "ID: %s উপস্থিত নেই"
|
2145
2370
|
|
2146
|
-
msgid "ISO export must be enabled when specifying ISO size"
|
2147
|
-
msgstr ""
|
2148
|
-
|
2149
2371
|
msgid "Id of a deb package to find repositories that contain the deb"
|
2150
2372
|
msgstr ""
|
2151
2373
|
|
@@ -2275,8 +2497,9 @@ msgstr ""
|
|
2275
2497
|
msgid "Import Default Content View"
|
2276
2498
|
msgstr ""
|
2277
2499
|
|
2500
|
+
#, fuzzy
|
2278
2501
|
msgid "Import Manifest"
|
2279
|
-
msgstr ""
|
2502
|
+
msgstr "ইম্পোর্ট করুন"
|
2280
2503
|
|
2281
2504
|
msgid "Import New Manifest"
|
2282
2505
|
msgstr ""
|
@@ -2308,8 +2531,9 @@ msgstr ""
|
|
2308
2531
|
msgid "Import a content view version to the library"
|
2309
2532
|
msgstr ""
|
2310
2533
|
|
2534
|
+
#, fuzzy
|
2311
2535
|
msgid "Import facts"
|
2312
|
-
msgstr ""
|
2536
|
+
msgstr "ইম্পোর্ট করুন"
|
2313
2537
|
|
2314
2538
|
msgid "Import uploads into a repository"
|
2315
2539
|
msgstr ""
|
@@ -2326,6 +2550,9 @@ msgstr ""
|
|
2326
2550
|
msgid "In Progress"
|
2327
2551
|
msgstr ""
|
2328
2552
|
|
2553
|
+
msgid "In progress"
|
2554
|
+
msgstr ""
|
2555
|
+
|
2329
2556
|
msgid "Include"
|
2330
2557
|
msgstr ""
|
2331
2558
|
|
@@ -2359,8 +2586,9 @@ msgstr ""
|
|
2359
2586
|
msgid "Index content"
|
2360
2587
|
msgstr ""
|
2361
2588
|
|
2589
|
+
#, fuzzy
|
2362
2590
|
msgid "Index errata"
|
2363
|
-
msgstr ""
|
2591
|
+
msgstr "ত্রুটি-বিচ্যুতি ইনস্টল করা হচ্ছে..."
|
2364
2592
|
|
2365
2593
|
msgid "Index module streams"
|
2366
2594
|
msgstr ""
|
@@ -2389,20 +2617,23 @@ msgstr ""
|
|
2389
2617
|
msgid "Install errata via Katello interface"
|
2390
2618
|
msgstr ""
|
2391
2619
|
|
2620
|
+
#, fuzzy
|
2392
2621
|
msgid "Install erratum"
|
2393
|
-
msgstr ""
|
2622
|
+
msgstr "ত্রুটি-বিচ্যুতি ইনস্টল করা হচ্ছে..."
|
2394
2623
|
|
2395
2624
|
msgid "Install erratum for %s"
|
2396
2625
|
msgstr ""
|
2397
2626
|
|
2627
|
+
#, fuzzy
|
2398
2628
|
msgid "Install package"
|
2399
|
-
msgstr ""
|
2629
|
+
msgstr "প্যাকেজ ইনস্টল করা হচ্ছে..."
|
2400
2630
|
|
2401
2631
|
msgid "Install package for %s"
|
2402
2632
|
msgstr ""
|
2403
2633
|
|
2634
|
+
#, fuzzy
|
2404
2635
|
msgid "Install package group"
|
2405
|
-
msgstr ""
|
2636
|
+
msgstr "প্যাকেজ সংকলন ইনস্টল করা হচ্ছে..."
|
2406
2637
|
|
2407
2638
|
msgid "Install package group via Katello interface"
|
2408
2639
|
msgstr ""
|
@@ -2425,15 +2656,19 @@ msgstr ""
|
|
2425
2656
|
msgid "Installation of package(s) requested: %{packages}"
|
2426
2657
|
msgstr ""
|
2427
2658
|
|
2659
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
2428
2660
|
msgid "Installed Packages"
|
2429
2661
|
msgstr "ইনস্টল করা প্যাকেজ"
|
2430
2662
|
|
2663
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
2431
2664
|
msgid "Installing Erratum..."
|
2432
2665
|
msgstr "ত্রুটি-বিচ্যুতি ইনস্টল করা হচ্ছে..."
|
2433
2666
|
|
2667
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
2434
2668
|
msgid "Installing Package Group..."
|
2435
2669
|
msgstr "প্যাকেজ সংকলন ইনস্টল করা হচ্ছে..."
|
2436
2670
|
|
2671
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
2437
2672
|
msgid "Installing Package..."
|
2438
2673
|
msgstr "প্যাকেজ ইনস্টল করা হচ্ছে..."
|
2439
2674
|
|
@@ -2461,18 +2696,17 @@ msgstr ""
|
|
2461
2696
|
msgid "Invalid association of the content view id. Content View must match the content view version being saved"
|
2462
2697
|
msgstr ""
|
2463
2698
|
|
2699
|
+
#, fuzzy
|
2464
2700
|
msgid "Invalid content label: %s"
|
2465
|
-
msgstr ""
|
2701
|
+
msgstr "অবৈধ অবস্থা"
|
2466
2702
|
|
2703
|
+
#, fuzzy
|
2467
2704
|
msgid "Invalid content type %s"
|
2468
|
-
msgstr ""
|
2705
|
+
msgstr "অবৈধ অবস্থা"
|
2469
2706
|
|
2470
2707
|
msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
|
2471
2708
|
msgstr ""
|
2472
2709
|
|
2473
|
-
msgid "Invalid date provided."
|
2474
|
-
msgstr ""
|
2475
|
-
|
2476
2710
|
msgid "Invalid date range. The erratum filter rule start date must come before the end date"
|
2477
2711
|
msgstr ""
|
2478
2712
|
|
@@ -2482,8 +2716,9 @@ msgstr ""
|
|
2482
2716
|
msgid "Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'"
|
2483
2717
|
msgstr ""
|
2484
2718
|
|
2719
|
+
#, fuzzy
|
2485
2720
|
msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
|
2486
|
-
msgstr ""
|
2721
|
+
msgstr "অবৈধ ধরনের রিসোর্স '%{resource_type}'। রিসোর্সের ধরন এর মধ্যে একটি হবে '%{possible_types}'"
|
2487
2722
|
|
2488
2723
|
msgid "Invalid event_type %s"
|
2489
2724
|
msgstr ""
|
@@ -2491,9 +2726,11 @@ msgstr ""
|
|
2491
2726
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
2492
2727
|
msgstr ""
|
2493
2728
|
|
2729
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
2494
2730
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2495
2731
|
msgstr "এই কাজের অনুরোধের সাথে প্রেরিত পরামিতি বৈধ নয়। অনুগ্রহ করে সিস্টেম অ্যাডমিনিস্ট্রেটরের সাথে যোগাযোগ করুন।"
|
2496
2732
|
|
2733
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
2497
2734
|
msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
|
2498
2735
|
msgstr "অবৈধ পরামিতি পাঠানো হয়েছে। ঠিকানাটি সম্ভবত ভুল লেখা হয়েছে। এই বিষয়ে সমস্যা পুনরায় দেখা দিলে, অনুগ্রহ করে অ্যাডমিনিস্ট্রেটরের সাথে যোগাযোগ করুন।"
|
2499
2736
|
|
@@ -2581,8 +2818,9 @@ msgstr ""
|
|
2581
2818
|
msgid "Learn more about adding Subscription Manifests"
|
2582
2819
|
msgstr ""
|
2583
2820
|
|
2821
|
+
#, fuzzy
|
2584
2822
|
msgid "Library lifecycle environments may not be deleted."
|
2585
|
-
msgstr ""
|
2823
|
+
msgstr "'%s' এনভায়রনমেন্ট মুছে ফেলা হয়েছে।"
|
2586
2824
|
|
2587
2825
|
msgid "Library repository id to restrict comparisons to"
|
2588
2826
|
msgstr ""
|
@@ -2602,8 +2840,9 @@ msgstr ""
|
|
2602
2840
|
msgid "Lifecycle Environment ID"
|
2603
2841
|
msgstr ""
|
2604
2842
|
|
2843
|
+
#, fuzzy
|
2605
2844
|
msgid "Lifecycle Environments"
|
2606
|
-
msgstr ""
|
2845
|
+
msgstr "এনভায়রনমেন্ট অনুযায়ী"
|
2607
2846
|
|
2608
2847
|
msgid "Lifecycle environment"
|
2609
2848
|
msgstr ""
|
@@ -2713,7 +2952,7 @@ msgstr ""
|
|
2713
2952
|
msgid "List of Errata ids"
|
2714
2953
|
msgstr ""
|
2715
2954
|
|
2716
|
-
msgid "List of Errata ids to install. Will be removed in
|
2955
|
+
msgid "List of Errata ids to install. Will be removed in %s"
|
2717
2956
|
msgstr ""
|
2718
2957
|
|
2719
2958
|
msgid "List of Products for sync plan"
|
@@ -2722,7 +2961,7 @@ msgstr ""
|
|
2722
2961
|
msgid "List of component content view version ids for composite views"
|
2723
2962
|
msgstr ""
|
2724
2963
|
|
2725
|
-
msgid "List of content (e.g. package names, package group names or errata ids)"
|
2964
|
+
msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
|
2726
2965
|
msgstr ""
|
2727
2966
|
|
2728
2967
|
msgid "List of content (e.g. package or package group names)"
|
@@ -2770,7 +3009,7 @@ msgstr ""
|
|
2770
3009
|
msgid "List of hypervisor guest uuids"
|
2771
3010
|
msgstr ""
|
2772
3011
|
|
2773
|
-
msgid "List of package group names"
|
3012
|
+
msgid "List of package group names (Deprecated)"
|
2774
3013
|
msgstr ""
|
2775
3014
|
|
2776
3015
|
msgid "List of package names"
|
@@ -2929,6 +3168,7 @@ msgstr ""
|
|
2929
3168
|
msgid "Medium IDs"
|
2930
3169
|
msgstr ""
|
2931
3170
|
|
3171
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Runa Bhattacharjee
|
2932
3172
|
msgid "Message"
|
2933
3173
|
msgstr "বার্তা"
|
2934
3174
|
|
@@ -2941,6 +3181,9 @@ msgstr ""
|
|
2941
3181
|
msgid "Mismatched"
|
2942
3182
|
msgstr ""
|
2943
3183
|
|
3184
|
+
msgid "Missing activation key!"
|
3185
|
+
msgstr ""
|
3186
|
+
|
2944
3187
|
msgid "Missing arguments %{substitutions} for %{content_url}"
|
2945
3188
|
msgstr ""
|
2946
3189
|
|
@@ -3011,11 +3254,15 @@ msgstr ""
|
|
3011
3254
|
msgid "Nest"
|
3012
3255
|
msgstr ""
|
3013
3256
|
|
3257
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3258
|
+
#, fuzzy
|
3014
3259
|
msgid "Never Synced"
|
3015
|
-
msgstr ""
|
3260
|
+
msgstr "কখনো চেক-ইন করা হয়নি।"
|
3016
3261
|
|
3262
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3263
|
+
#, fuzzy
|
3017
3264
|
msgid "New Errata"
|
3018
|
-
msgstr ""
|
3265
|
+
msgstr "ত্রুটি-বিচ্যুতি অনুসন্ধান করুন"
|
3019
3266
|
|
3020
3267
|
msgid "New Files: %s"
|
3021
3268
|
msgstr ""
|
@@ -3029,8 +3276,10 @@ msgstr ""
|
|
3029
3276
|
msgid "New host collection name"
|
3030
3277
|
msgstr ""
|
3031
3278
|
|
3279
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
3280
|
+
#, fuzzy
|
3032
3281
|
msgid "New name cannot be blank"
|
3033
|
-
msgstr ""
|
3282
|
+
msgstr "খালি রাখলে চলবে না"
|
3034
3283
|
|
3035
3284
|
msgid "New name for the content view"
|
3036
3285
|
msgstr ""
|
@@ -3041,6 +3290,9 @@ msgstr ""
|
|
3041
3290
|
msgid "New version is available: Version ${latestVersion}"
|
3042
3291
|
msgstr ""
|
3043
3292
|
|
3293
|
+
msgid "Newly published"
|
3294
|
+
msgstr ""
|
3295
|
+
|
3044
3296
|
msgid "No"
|
3045
3297
|
msgstr ""
|
3046
3298
|
|
@@ -3050,6 +3302,7 @@ msgstr ""
|
|
3050
3302
|
msgid "No Activation keys to select"
|
3051
3303
|
msgstr ""
|
3052
3304
|
|
3305
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
3053
3306
|
msgid "No Content View"
|
3054
3307
|
msgstr "কোনো বিষয়বস্তু রূপ নেই"
|
3055
3308
|
|
@@ -3065,6 +3318,7 @@ msgstr ""
|
|
3065
3318
|
msgid "No Red Hat products currently exist, please import a manifest %(anchorBegin)s here %(anchorEnd)s to receive Red Hat content. No repository sets available."
|
3066
3319
|
msgstr ""
|
3067
3320
|
|
3321
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3068
3322
|
msgid "No Service Level Preference"
|
3069
3323
|
msgstr "সিস্টেমের পরিসেবা স্তরের চুক্তি সংক্রান্ত পছন্দ অনুপস্থিত"
|
3070
3324
|
|
@@ -3080,8 +3334,9 @@ msgstr ""
|
|
3080
3334
|
msgid "No artifacts to show"
|
3081
3335
|
msgstr ""
|
3082
3336
|
|
3337
|
+
#, fuzzy
|
3083
3338
|
msgid "No content has been provided."
|
3084
|
-
msgstr ""
|
3339
|
+
msgstr "অন্তত একটি অ্যাক্টিভেশন-কি উপলব্ধ করা আবশ্যক"
|
3085
3340
|
|
3086
3341
|
msgid "No content ids provided"
|
3087
3342
|
msgstr ""
|
@@ -3110,6 +3365,7 @@ msgstr ""
|
|
3110
3365
|
msgid "No errata has been specified."
|
3111
3366
|
msgstr ""
|
3112
3367
|
|
3368
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3113
3369
|
msgid "No errors"
|
3114
3370
|
msgstr "কোনো ত্রুটি নেই"
|
3115
3371
|
|
@@ -3158,18 +3414,22 @@ msgstr ""
|
|
3158
3414
|
msgid "No matching version found"
|
3159
3415
|
msgstr ""
|
3160
3416
|
|
3417
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3161
3418
|
msgid "No new packages installed"
|
3162
3419
|
msgstr "কোনো নতুন প্যাকেজ ইনস্টল করা হয়নি"
|
3163
3420
|
|
3421
|
+
#, fuzzy
|
3164
3422
|
msgid "No new packages."
|
3165
|
-
msgstr ""
|
3423
|
+
msgstr "কোনো নতুন প্যাকেজ ইনস্টল করা হয়নি"
|
3166
3424
|
|
3167
3425
|
msgid "No package groups have been added to this filter."
|
3168
3426
|
msgstr ""
|
3169
3427
|
|
3428
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3170
3429
|
msgid "No packages removed"
|
3171
3430
|
msgstr "কোনো প্যাকেজ মুছে ফেলা হয়নি"
|
3172
3431
|
|
3432
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3173
3433
|
msgid "No packages updated"
|
3174
3434
|
msgstr "কোনো প্যাকেজ আপডেট করা হয়নি"
|
3175
3435
|
|
@@ -3218,8 +3478,9 @@ msgstr ""
|
|
3218
3478
|
msgid "No services defined, is this class extended?"
|
3219
3479
|
msgstr ""
|
3220
3480
|
|
3481
|
+
#, fuzzy
|
3221
3482
|
msgid "No start time currently available."
|
3222
|
-
msgstr ""
|
3483
|
+
msgstr "ডিস্ট্রিবিউশন"
|
3223
3484
|
|
3224
3485
|
msgid "No subscriptions match your search criteria."
|
3225
3486
|
msgstr ""
|
@@ -3236,9 +3497,11 @@ msgstr ""
|
|
3236
3497
|
msgid "Non-security errata installable"
|
3237
3498
|
msgstr ""
|
3238
3499
|
|
3500
|
+
#, fuzzy
|
3239
3501
|
msgid "Non-system event"
|
3240
|
-
msgstr ""
|
3502
|
+
msgstr "সিস্টেম"
|
3241
3503
|
|
3504
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Runa Bhattacharjee
|
3242
3505
|
msgid "None"
|
3243
3506
|
msgstr "শূণ্য"
|
3244
3507
|
|
@@ -3299,17 +3562,15 @@ msgstr ""
|
|
3299
3562
|
msgid "On Demand"
|
3300
3563
|
msgstr ""
|
3301
3564
|
|
3302
|
-
msgid "On demand repositories cannot be exported."
|
3303
|
-
msgstr ""
|
3304
|
-
|
3305
3565
|
msgid "On-disk location for exported repositories"
|
3306
3566
|
msgstr ""
|
3307
3567
|
|
3308
3568
|
msgid "On-disk location for pulp 3 exported repositories"
|
3309
3569
|
msgstr ""
|
3310
3570
|
|
3571
|
+
#, fuzzy
|
3311
3572
|
msgid "One of parameters [ %s ] required but not specified."
|
3312
|
-
msgstr ""
|
3573
|
+
msgstr "organization_id আবশ্যক কিন্তু উল্লেখ করা হয়নি।"
|
3313
3574
|
|
3314
3575
|
msgid "One of yum or docker"
|
3315
3576
|
msgstr ""
|
@@ -3320,12 +3581,14 @@ 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 Runa Bhattacharjee
|
3329
3592
|
msgid "Only one Red Hat provider permitted for an Organization"
|
3330
3593
|
msgstr "একটি প্রতিষ্ঠানের জন্য শুধুমাত্র একটি Red Hat উপলব্ধকারী ব্যবহার করা যাবে"
|
3331
3594
|
|
@@ -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 Runa Bhattacharjee
|
3341
3602
|
msgid "Organization"
|
3342
3603
|
msgstr "প্রতিষ্ঠান"
|
3343
3604
|
|
@@ -3353,6 +3614,7 @@ 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 Runa Bhattacharjee
|
3356
3618
|
msgid "Organization cannot be blank."
|
3357
3619
|
msgstr "প্রতিষ্ঠানের নাম ফাঁকা রাখা চলবে না।"
|
3358
3620
|
|
@@ -3368,9 +3630,11 @@ 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, author bnin
|
3374
3638
|
msgid "Other"
|
3375
3639
|
msgstr "অন্যান্য"
|
3376
3640
|
|
@@ -3395,72 +3659,97 @@ msgstr ""
|
|
3395
3659
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3396
3660
|
msgstr ""
|
3397
3661
|
|
3662
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3663
|
+
#, fuzzy
|
3398
3664
|
msgid "Package"
|
3399
|
-
msgstr ""
|
3665
|
+
msgstr "প্যাকেজ"
|
3400
3666
|
|
3667
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
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 Runa Bhattacharjee
|
3404
3673
|
msgid "Package Group Install"
|
3405
3674
|
msgstr "প্যাকেজ সংকলন ইনস্টলেশন"
|
3406
3675
|
|
3676
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3407
3677
|
msgid "Package Group Install Canceled"
|
3408
3678
|
msgstr "প্যাকেজ সংকলন ইনস্টলেশন বাতিল করা হয়েছে"
|
3409
3679
|
|
3680
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3410
3681
|
msgid "Package Group Install Complete"
|
3411
3682
|
msgstr "প্যাকেজ সংকলন ইনস্টলেশন সমাপ্ত"
|
3412
3683
|
|
3684
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3413
3685
|
msgid "Package Group Install Failed"
|
3414
3686
|
msgstr "প্যাকেজ সংকলন ইনস্টলেশন বিফল"
|
3415
3687
|
|
3688
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3416
3689
|
msgid "Package Group Install Timed Out"
|
3417
3690
|
msgstr "প্যাকেজ সংকলন ইনস্টলেশনের সময়সীমা অতিক্রান্ত হয়েছে"
|
3418
3691
|
|
3692
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3419
3693
|
msgid "Package Group Install scheduled by %s"
|
3420
3694
|
msgstr "%s দ্বারা নির্ধারিত প্যাকেজ সংকলন ইনস্টলেশন"
|
3421
3695
|
|
3696
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3422
3697
|
msgid "Package Group Remove"
|
3423
3698
|
msgstr "প্যকােজ সংকলন অপসারণ"
|
3424
3699
|
|
3700
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3425
3701
|
msgid "Package Group Remove Canceled"
|
3426
3702
|
msgstr "প্যাকেজ সংকলন মুছে ফেলার কাজ বাতিল করা হয়েছে"
|
3427
3703
|
|
3704
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3428
3705
|
msgid "Package Group Remove Complete"
|
3429
3706
|
msgstr "প্যাকেজ সংকলন মুছে ফেলার কাজ সমাপ্ত হয়েছে"
|
3430
3707
|
|
3708
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3431
3709
|
msgid "Package Group Remove Failed"
|
3432
3710
|
msgstr "প্যাকেজ সংকলন মুছে ফেলতে ব্যর্থ"
|
3433
3711
|
|
3712
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3434
3713
|
msgid "Package Group Remove Timed Out"
|
3435
3714
|
msgstr "প্যাকেজ সংকলন অপসারণের সময়সীমা উত্তীর্ণ হয়েছে"
|
3436
3715
|
|
3716
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3437
3717
|
msgid "Package Group Remove scheduled by %s"
|
3438
3718
|
msgstr "%s দ্বারা নির্ধারিত প্যাকেজ সংকলন অপসারণ"
|
3439
3719
|
|
3720
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3440
3721
|
msgid "Package Group Update"
|
3441
3722
|
msgstr "প্যাকেজ সংকলন আপডেট"
|
3442
3723
|
|
3724
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3443
3725
|
msgid "Package Group Update scheduled by %s"
|
3444
3726
|
msgstr "%s দ্বারা নির্ধারিত প্যাকেজ সংকলন আপডেট"
|
3445
3727
|
|
3728
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3446
3729
|
msgid "Package Groups"
|
3447
3730
|
msgstr "প্যাকেজ সংকলন"
|
3448
3731
|
|
3732
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3449
3733
|
msgid "Package Install"
|
3450
3734
|
msgstr "প্যাকেজ ইনস্টলেশন"
|
3451
3735
|
|
3736
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3452
3737
|
msgid "Package Install Canceled"
|
3453
3738
|
msgstr "প্যাকেজ ইনস্টলেশন বাতিল করা হয়েছে"
|
3454
3739
|
|
3740
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3455
3741
|
msgid "Package Install Complete"
|
3456
3742
|
msgstr "প্যাকেজ ইনস্টলেশন সমাপ্ত"
|
3457
3743
|
|
3744
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3458
3745
|
msgid "Package Install Failed"
|
3459
3746
|
msgstr "প্যাকেজ ইনস্টলেশন বিফল"
|
3460
3747
|
|
3748
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3461
3749
|
msgid "Package Install Timed Out"
|
3462
3750
|
msgstr "প্যাকেজ ইনস্টলেশনের সময়সীমা অতিক্রান্ত হয়েছে"
|
3463
3751
|
|
3752
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3464
3753
|
msgid "Package Install scheduled by %s"
|
3465
3754
|
msgstr "%s দ্বারা নির্ধারিত প্যাকেজ ইনস্টলেশন"
|
3466
3755
|
|
@@ -3470,51 +3759,67 @@ 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 Runa Bhattacharjee
|
3473
3763
|
msgid "Package Remove"
|
3474
3764
|
msgstr "প্যাকেজ অপসারণ"
|
3475
3765
|
|
3766
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3476
3767
|
msgid "Package Remove Canceled"
|
3477
3768
|
msgstr "প্যাকেজ মুছে ফেলার কাজ বাতিল করা হয়েছে"
|
3478
3769
|
|
3770
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3479
3771
|
msgid "Package Remove Complete"
|
3480
3772
|
msgstr "প্যাকেজ মুছে ফেলার কাজ সমাপ্ত হয়েছে"
|
3481
3773
|
|
3774
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3482
3775
|
msgid "Package Remove Failed"
|
3483
3776
|
msgstr "প্যাকেজ মুছে ফেলতে ব্যর্থ"
|
3484
3777
|
|
3778
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3485
3779
|
msgid "Package Remove Timed Out"
|
3486
3780
|
msgstr "প্যাকেজ অপসারণের সময়সীমা উত্তীর্ণ হয়েছে"
|
3487
3781
|
|
3782
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3488
3783
|
msgid "Package Remove scheduled by %s"
|
3489
3784
|
msgstr "%s দ্বারা নির্ধারিত প্যাকেজ অপসারণ"
|
3490
3785
|
|
3786
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3491
3787
|
msgid "Package Update"
|
3492
3788
|
msgstr "প্যাকেজ আপডেট"
|
3493
3789
|
|
3790
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3494
3791
|
msgid "Package Update Canceled"
|
3495
3792
|
msgstr "প্যাকেজ আপডেটের কাজ বাতিল"
|
3496
3793
|
|
3794
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3497
3795
|
msgid "Package Update Complete"
|
3498
3796
|
msgstr "প্যাকেজ আপডেট সমাপ্ত"
|
3499
3797
|
|
3798
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3500
3799
|
msgid "Package Update Failed"
|
3501
3800
|
msgstr "প্যাকেজ আপডেট বিফল"
|
3502
3801
|
|
3802
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3503
3803
|
msgid "Package Update Timed Out"
|
3504
3804
|
msgstr "প্যাকেজ আপডেটের সময়সীমা উত্তীর্ণ হয়েছে"
|
3505
3805
|
|
3806
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3506
3807
|
msgid "Package Update scheduled by %s"
|
3507
3808
|
msgstr "%s দ্বারা নির্ধারিত প্যাকেজ আপডেট"
|
3508
3809
|
|
3810
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
3509
3811
|
msgid "Package group update canceled"
|
3510
3812
|
msgstr "প্যাকেজ সংকলন আপডেট বাতিল করা হয়েছে"
|
3511
3813
|
|
3814
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
3512
3815
|
msgid "Package group update complete"
|
3513
3816
|
msgstr "প্যাকেজ সংকলন আপডেট সম্পন্ন হয়েছে"
|
3514
3817
|
|
3818
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
3515
3819
|
msgid "Package group update failed"
|
3516
3820
|
msgstr "প্যাকেজ সংকলন আপডেট বিফল হয়েছে"
|
3517
3821
|
|
3822
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
3518
3823
|
msgid "Package group update timed out"
|
3519
3824
|
msgstr "প্যাকেজ সংকলন আপডেটের সময়সীমা উত্তীর্ণ হয়েছে"
|
3520
3825
|
|
@@ -3524,15 +3829,19 @@ msgstr ""
|
|
3524
3829
|
msgid "Package identifiers to filter content by"
|
3525
3830
|
msgstr ""
|
3526
3831
|
|
3832
|
+
#, fuzzy
|
3527
3833
|
msgid "Package install failed: \"%{package}\""
|
3528
|
-
msgstr ""
|
3834
|
+
msgstr "প্যাকেজ ইনস্টলেশন বিফল"
|
3529
3835
|
|
3836
|
+
#, fuzzy
|
3530
3837
|
msgid "Package installation: \"%{package}\" "
|
3531
|
-
msgstr ""
|
3838
|
+
msgstr "প্যাকেজ ইনস্টলেশন বাতিল করা হয়েছে"
|
3532
3839
|
|
3840
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3533
3841
|
msgid "Packages"
|
3534
3842
|
msgstr "প্যাকেজ"
|
3535
3843
|
|
3844
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3536
3845
|
msgid "Packages must be provided"
|
3537
3846
|
msgstr "প্যাকেজগুলি উপলব্ধ করা আবশ্যক"
|
3538
3847
|
|
@@ -3563,8 +3872,10 @@ msgstr ""
|
|
3563
3872
|
msgid "Paused"
|
3564
3873
|
msgstr ""
|
3565
3874
|
|
3875
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3876
|
+
#, fuzzy
|
3566
3877
|
msgid "Pending"
|
3567
|
-
msgstr ""
|
3878
|
+
msgstr "চলমান"
|
3568
3879
|
|
3569
3880
|
msgid "Perform a module stream action via Katello interface"
|
3570
3881
|
msgstr ""
|
@@ -3584,11 +3895,13 @@ msgstr ""
|
|
3584
3895
|
msgid "Performs an incremental-export of the repositories in library."
|
3585
3896
|
msgstr ""
|
3586
3897
|
|
3898
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3587
3899
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3588
3900
|
msgstr "অনুমতি প্রত্যাখ্যান করা হয়েছে। '%{org}' প্রতিষ্ঠানে প্রবেশ করার অধিকার '%{user}' ব্যবহারকারীর নেই।"
|
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,6 +3948,7 @@ 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
3953
|
msgstr "উৎপাদন"
|
3640
3954
|
|
@@ -3679,6 +3993,7 @@ msgstr ""
|
|
3679
3993
|
msgid "Product: '%{product}', Repository: '%{repository}'"
|
3680
3994
|
msgstr ""
|
3681
3995
|
|
3996
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3682
3997
|
msgid "Products"
|
3683
3998
|
msgstr "উৎপাদন"
|
3684
3999
|
|
@@ -3721,6 +4036,7 @@ 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, author bnin
|
3724
4040
|
msgid "Publish"
|
3725
4041
|
msgstr "প্রকাশ করুন"
|
3726
4042
|
|
@@ -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,6 +4157,7 @@ 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, author bnin
|
3835
4161
|
msgid "RPMs"
|
3836
4162
|
msgstr "RPMs"
|
3837
4163
|
|
@@ -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 Runa Bhattacharjee
|
3856
4184
|
msgid "Red Hat Repositories"
|
3857
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 Runa Bhattacharjee
|
3862
4192
|
msgid "Red Hat provider can not be deleted"
|
3863
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
|
|
4331
|
+
msgid "Removed component from content view"
|
4332
|
+
msgstr ""
|
4333
|
+
|
4334
|
+
msgid "Removed components from content view"
|
4335
|
+
msgstr ""
|
4336
|
+
|
4337
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3988
4338
|
msgid "Removing Package Group..."
|
3989
4339
|
msgstr "প্যাকেজ সংকলন অপসারণ..."
|
3990
4340
|
|
4341
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3991
4342
|
msgid "Removing Package..."
|
3992
4343
|
msgstr "প্যাকেজ মুছে ফেলুন..."
|
3993
4344
|
|
3994
4345
|
msgid "Repo Type"
|
3995
4346
|
msgstr ""
|
3996
4347
|
|
4348
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
3997
4349
|
msgid "Repositories"
|
3998
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 Runa Bhattacharjee
|
4003
4356
|
msgid "Repository"
|
4004
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,12 +4371,11 @@ 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 Runa Bhattacharjee
|
4024
4375
|
msgid "Repository cannot be disabled since it has already been promoted."
|
4025
4376
|
msgstr "সংগ্রহস্থলটি প্রোমোট করা হয়েছে এবং এর ফলে এটি নিষ্ক্রিয় করা যাবে না।"
|
4026
4377
|
|
4027
|
-
|
4028
|
-
msgstr ""
|
4029
|
-
|
4378
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
4030
4379
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4031
4380
|
msgstr "সংগ্রহস্থল ইতিমধ্যেই %{to_env} এনভায়রনমেন্টে %{cv_name} এ ক্লোন করা হয়েছে"
|
4032
4381
|
|
@@ -4042,12 +4391,14 @@ 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, author bnin
|
4051
4402
|
msgid "Repository sets are not available for custom products."
|
4052
4403
|
msgstr "সংগ্রহস্থলের সেট কাস্টম প্রোডাক্টের ক্ষেত্রে উপলব্ধ নয়।"
|
4053
4404
|
|
@@ -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
|
|
@@ -4075,6 +4429,7 @@ msgstr ""
|
|
4075
4429
|
msgid "Restrict Composite Content View promotion"
|
4076
4430
|
msgstr ""
|
4077
4431
|
|
4432
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
4078
4433
|
msgid "Result"
|
4079
4434
|
msgstr "ফলাফল"
|
4080
4435
|
|
@@ -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
|
|
@@ -4153,6 +4505,7 @@ msgstr ""
|
|
4153
4505
|
msgid "Run Sync Plan:"
|
4154
4506
|
msgstr ""
|
4155
4507
|
|
4508
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4156
4509
|
msgid "Running"
|
4157
4510
|
msgstr "চলমান"
|
4158
4511
|
|
@@ -4192,6 +4545,7 @@ 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
4550
|
msgstr "নিরাপত্তা"
|
4197
4551
|
|
@@ -4204,12 +4558,15 @@ msgstr ""
|
|
4204
4558
|
msgid "Select"
|
4205
4559
|
msgstr ""
|
4206
4560
|
|
4561
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Runa Bhattacharjee
|
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 Runa Bhattacharjee
|
4213
4570
|
msgid "Select None"
|
4214
4571
|
msgstr "কিছুই নির্বাচন করা হবে না"
|
4215
4572
|
|
@@ -4219,15 +4576,23 @@ msgstr ""
|
|
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 Runa Bhattacharjee
|
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,6 +4605,7 @@ 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
4610
|
msgstr "পরিসেবার স্তর %s"
|
4245
4611
|
|
@@ -4273,6 +4639,7 @@ 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 Runa Bhattacharjee
|
4276
4643
|
msgid "Severity"
|
4277
4644
|
msgstr "গুরুত্বের মাত্রা"
|
4278
4645
|
|
@@ -4351,6 +4718,9 @@ msgstr ""
|
|
4351
4718
|
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4352
4719
|
msgstr ""
|
4353
4720
|
|
4721
|
+
msgid "Single content view consisting of repositories"
|
4722
|
+
msgstr ""
|
4723
|
+
|
4354
4724
|
msgid "Size of file to upload"
|
4355
4725
|
msgstr ""
|
4356
4726
|
|
@@ -4363,9 +4733,13 @@ msgstr ""
|
|
4363
4733
|
msgid "Smart proxy IDs"
|
4364
4734
|
msgstr ""
|
4365
4735
|
|
4366
|
-
msgid "
|
4736
|
+
msgid "Smart proxy content source not found!"
|
4367
4737
|
msgstr ""
|
4368
4738
|
|
4739
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
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,18 +4809,22 @@ msgstr ""
|
|
4420
4809
|
msgid "Stacking ID"
|
4421
4810
|
msgstr ""
|
4422
4811
|
|
4812
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
4423
4813
|
msgid "Start Date"
|
4424
4814
|
msgstr "আরম্ভের তারিখ"
|
4425
4815
|
|
4816
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
4426
4817
|
msgid "Start Date and Time can't be blank"
|
4427
4818
|
msgstr "আরম্ভের তারিখ ও সময় ফাঁকা রাখা চলবে না"
|
4428
4819
|
|
4820
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
4429
4821
|
msgid "Start Time"
|
4430
4822
|
msgstr "আরম্ভের সময়"
|
4431
4823
|
|
4432
4824
|
msgid "Starts"
|
4433
4825
|
msgstr ""
|
4434
4826
|
|
4827
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
4435
4828
|
msgid "Status"
|
4436
4829
|
msgstr "অবস্থা"
|
4437
4830
|
|
@@ -4450,6 +4843,7 @@ msgstr ""
|
|
4450
4843
|
msgid "Subnet IDs"
|
4451
4844
|
msgstr ""
|
4452
4845
|
|
4846
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
4453
4847
|
msgid "Subscription"
|
4454
4848
|
msgstr "সাবস্ক্রিপশন"
|
4455
4849
|
|
@@ -4522,12 +4916,14 @@ msgstr ""
|
|
4522
4916
|
msgid "Subscriptions have been saved and are being updated. "
|
4523
4917
|
msgstr ""
|
4524
4918
|
|
4919
|
+
#, fuzzy
|
4525
4920
|
msgid "Subscriptions information based on selected activation keys:"
|
4526
|
-
msgstr ""
|
4921
|
+
msgstr "'%s' অ্যাক্টিভেশন-কি-র জন্য সাফল্যের সাথে সাবস্ক্রিপশন যোগ করা হয়েছে।"
|
4527
4922
|
|
4528
4923
|
msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
|
4529
4924
|
msgstr ""
|
4530
4925
|
|
4926
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Runa Bhattacharjee
|
4531
4927
|
msgid "Success"
|
4532
4928
|
msgstr "সাফল্য"
|
4533
4929
|
|
@@ -4552,6 +4948,7 @@ 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 Runa Bhattacharjee
|
4555
4952
|
msgid "Summary"
|
4556
4953
|
msgstr "সংক্ষিপ্ত তথ্য"
|
4557
4954
|
|
@@ -4561,6 +4958,7 @@ msgstr ""
|
|
4561
4958
|
msgid "Supported Content Types"
|
4562
4959
|
msgstr ""
|
4563
4960
|
|
4961
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
4564
4962
|
msgid "Sync Canceled"
|
4565
4963
|
msgstr "সুসংগতির কাজ বাতিল করা হয়েছে"
|
4566
4964
|
|
@@ -4570,9 +4968,12 @@ 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 Runa Bhattacharjee
|
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 Runa Bhattacharjee
|
4576
4977
|
msgid "Sync Overview"
|
4577
4978
|
msgstr "সুসংগতি ব্যবস্থার সংক্ষিপ্ত বর্ণনা"
|
4578
4979
|
|
@@ -4582,6 +4983,7 @@ 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 Runa Bhattacharjee
|
4585
4987
|
msgid "Sync Plans"
|
4586
4988
|
msgstr "সুসংগতির পরিকল্পনা"
|
4587
4989
|
|
@@ -4591,6 +4993,7 @@ 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 Runa Bhattacharjee
|
4594
4997
|
msgid "Sync Status"
|
4595
4998
|
msgstr "সুসংগতির অবস্থা"
|
4596
4999
|
|
@@ -4609,6 +5012,7 @@ 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 Runa Bhattacharjee
|
4612
5016
|
msgid "Sync complete."
|
4613
5017
|
msgstr "সুসংগতির কাজ সমাপ্ত হয়েছে।"
|
4614
5018
|
|
@@ -4630,9 +5034,11 @@ 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 Runa Bhattacharjee
|
4636
5042
|
msgid "Synchronize Now"
|
4637
5043
|
msgstr "অবলিম্বে সুসংগত করা হবে"
|
4638
5044
|
|
@@ -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 Runa Bhattacharjee
|
5064
|
+
#, fuzzy
|
4657
5065
|
msgid "Syncing Complete."
|
4658
|
-
msgstr ""
|
5066
|
+
msgstr "সুসংগতির কাজ সমাপ্ত হয়েছে।"
|
4659
5067
|
|
4660
5068
|
msgid "System Purpose"
|
4661
5069
|
msgstr ""
|
@@ -4681,6 +5089,7 @@ msgstr ""
|
|
4681
5089
|
msgid "Temporary"
|
4682
5090
|
msgstr ""
|
4683
5091
|
|
5092
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
4684
5093
|
msgid "The '%s' environment cannot contain a changeset!"
|
4685
5094
|
msgstr "'%s' পরিবেশের মধ্যে changeset উপস্থিত থাকা চলবে না!"
|
4686
5095
|
|
@@ -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 Runa Bhattacharjee
|
4699
5109
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
4700
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,6 +5249,7 @@ 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 bnin
|
4843
5253
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
4844
5254
|
msgstr "কোনো প্রোডাক্ট বা সংগ্রহস্থল সক্ষম করা নেই। %{custom} বা %{redhat} মারফত সক্ষম করার চেষ্টা করুন।"
|
4845
5255
|
|
@@ -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,6 +5352,7 @@ msgstr ""
|
|
4945
5352
|
msgid "Timestamp"
|
4946
5353
|
msgstr ""
|
4947
5354
|
|
5355
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
4948
5356
|
msgid "Title"
|
4949
5357
|
msgstr "শিরোনাম"
|
4950
5358
|
|
@@ -4984,6 +5392,9 @@ 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
5399
|
msgstr ""
|
4989
5400
|
|
@@ -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 Runa Bhattacharjee
|
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 bnin
|
5110
5517
|
msgid "Unsupported URL protocol %s."
|
5111
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,9 +5632,15 @@ 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
5639
|
msgstr ""
|
5229
5640
|
|
5641
|
+
msgid "Updated component details"
|
5642
|
+
msgstr ""
|
5643
|
+
|
5230
5644
|
msgid "Updates"
|
5231
5645
|
msgstr ""
|
5232
5646
|
|
@@ -5236,6 +5650,7 @@ 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 Runa Bhattacharjee
|
5239
5654
|
msgid "Updating Package..."
|
5240
5655
|
msgstr "প্যাকেজ আপডেট করা হচ্ছে..."
|
5241
5656
|
|
@@ -5245,6 +5660,7 @@ 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 bnin
|
5248
5664
|
msgid "Updating package group..."
|
5249
5665
|
msgstr "প্যাকেজ গ্রুপ আপডেট করা হচ্ছে..."
|
5250
5666
|
|
@@ -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 Runa Bhattacharjee
|
5686
|
+
#, fuzzy
|
5272
5687
|
msgid "Upload into"
|
5273
|
-
msgstr ""
|
5688
|
+
msgstr "আপলোড করা হচ্ছে"
|
5274
5689
|
|
5275
5690
|
msgid "Upload request id"
|
5276
5691
|
msgstr ""
|
@@ -5344,20 +5759,28 @@ msgstr ""
|
|
5344
5759
|
msgid "Version"
|
5345
5760
|
msgstr ""
|
5346
5761
|
|
5762
|
+
msgid "Version "
|
5763
|
+
msgstr ""
|
5764
|
+
|
5765
|
+
msgid "Version ${item.version}"
|
5766
|
+
msgstr ""
|
5767
|
+
|
5347
5768
|
msgid "Versions"
|
5348
5769
|
msgstr ""
|
5349
5770
|
|
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, author bnin
|
5353
5775
|
msgid "View %{view} has not been promoted to %{env}"
|
5354
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 Runa Bhattacharjee
|
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,12 +5947,15 @@ 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 Runa Bhattacharjee
|
5521
5951
|
msgid "all packages"
|
5522
5952
|
msgstr "সকল প্যাকেজ"
|
5523
5953
|
|
5954
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5524
5955
|
msgid "all packages update"
|
5525
5956
|
msgstr "সকল প্যাকেজ আপডেট"
|
5526
5957
|
|
5958
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5527
5959
|
msgid "all packages update failed"
|
5528
5960
|
msgstr "সকল প্যাকেজ আপডেট বিফল হয়েছে"
|
5529
5961
|
|
@@ -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 Runa Bhattacharjee
|
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 Runa Bhattacharjee
|
5566
6003
|
msgid "can't be blank"
|
5567
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 Runa Bhattacharjee
|
5572
6010
|
msgid "cannot be a binary file."
|
5573
6011
|
msgstr "বাইনারি ফাইল হওয়া চলবে না"
|
5574
6012
|
|
6013
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author bnin
|
5575
6014
|
msgid "cannot be blank"
|
5576
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, author bnin
|
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,18 +6046,21 @@ 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
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 Runa Bhattacharjee
|
5617
6064
|
msgid "cannot contain more than %s characters"
|
5618
6065
|
msgstr "%s থেকে বেশি অক্ষর উপস্থিত থাকা চলবে না"
|
5619
6066
|
|
@@ -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,21 +6296,27 @@ 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 Runa Bhattacharjee
|
5845
6300
|
msgid "installing errata..."
|
5846
6301
|
msgstr "ত্রুটি-বিচ্যুতি ইনস্টল করা হচ্ছে..."
|
5847
6302
|
|
6303
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5848
6304
|
msgid "installing erratum..."
|
5849
6305
|
msgstr "ত্রুটি-বিচ্যুতি ইনস্টল করা হচ্ছে..."
|
5850
6306
|
|
6307
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5851
6308
|
msgid "installing package group..."
|
5852
6309
|
msgstr "প্যাকেজ সংকলন ইনস্টল করা হচ্ছে..."
|
5853
6310
|
|
6311
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5854
6312
|
msgid "installing package groups..."
|
5855
6313
|
msgstr "প্যাকেজ সংকলন ইনস্টল করা হচ্ছে..."
|
5856
6314
|
|
6315
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5857
6316
|
msgid "installing package..."
|
5858
6317
|
msgstr "প্যাকেজ ইনস্টল করা হচ্ছে..."
|
5859
6318
|
|
6319
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5860
6320
|
msgid "installing packages..."
|
5861
6321
|
msgstr "প্যাকেজ ইনস্টল করা হচ্ছে..."
|
5862
6322
|
|
@@ -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 Runa Bhattacharjee
|
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,6 +6384,7 @@ 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 Runa Bhattacharjee
|
5926
6388
|
msgid "must be a positive integer value."
|
5927
6389
|
msgstr "শূণ্য থেকে অধিক পূর্ণসংখ্যা মান হওয়া আবশ্যক।"
|
5928
6390
|
|
@@ -5932,15 +6394,19 @@ 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 Runa Bhattacharjee
|
5935
6398
|
msgid "must be unique within one organization"
|
5936
6399
|
msgstr "একটি প্রতিষ্ঠানের মধ্যে স্বতন্ত্র মান হওয়া আবশ্যক"
|
5937
6400
|
|
6401
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5938
6402
|
msgid "must contain '%s'"
|
5939
6403
|
msgstr "'%s' উপস্থিত থাকা আবশ্যক"
|
5940
6404
|
|
6405
|
+
#, fuzzy
|
5941
6406
|
msgid "must contain GPG Key"
|
5942
|
-
msgstr ""
|
6407
|
+
msgstr "GPG-কি"
|
5943
6408
|
|
6409
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
5944
6410
|
msgid "must contain at least %s character"
|
5945
6411
|
msgstr "অন্তত %s অক্ষর উপস্থিত থাকা আবশ্যক"
|
5946
6412
|
|
@@ -5950,6 +6416,7 @@ 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 Runa Bhattacharjee
|
5953
6420
|
msgid "must not contain leading or trailing white spaces."
|
5954
6421
|
msgstr "প্রারম্ভে অথবা শেষে শূণ্যস্থান থাকা চলবে না।"
|
5955
6422
|
|
@@ -5980,6 +6447,7 @@ 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 Runa Bhattacharjee
|
5983
6451
|
msgid "name: %s doesn't exist "
|
5984
6452
|
msgstr "নাম: %s উপস্থিত নেই"
|
5985
6453
|
|
@@ -5998,6 +6466,7 @@ 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 Runa Bhattacharjee
|
6001
6470
|
msgid "of environment must be unique within one organization"
|
6002
6471
|
msgstr "পরিবেশের ক্ষেত্রে, প্রতিষ্ঠানের মধ্যে অদ্বিতীয় মান ব্যবহার করা আবশ্যক"
|
6003
6472
|
|
@@ -6073,15 +6542,19 @@ 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 Runa Bhattacharjee
|
6076
6546
|
msgid "removing package group..."
|
6077
6547
|
msgstr "প্যাকেজ সংকলন অপসারণ..."
|
6078
6548
|
|
6549
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
6079
6550
|
msgid "removing package groups..."
|
6080
6551
|
msgstr "প্যাকেজ সংকলন অপসারণ..."
|
6081
6552
|
|
6553
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
6082
6554
|
msgid "removing package..."
|
6083
6555
|
msgstr "প্যাকেজ অপসারণ..."
|
6084
6556
|
|
6557
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
6085
6558
|
msgid "removing packages..."
|
6086
6559
|
msgstr "প্যাকেজ অপসারণ..."
|
6087
6560
|
|
@@ -6163,6 +6636,7 @@ 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 Runa Bhattacharjee
|
6166
6640
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6167
6641
|
msgstr "Red Hat উপলব্ধকারী: [ %s ]-র জন্য নিম্নলিখিত বৈশিষ্ট্যগুলি আপডেট করা সম্ভব নয়"
|
6168
6642
|
|
@@ -6193,15 +6667,19 @@ 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 Runa Bhattacharjee
|
6196
6671
|
msgid "updating package group..."
|
6197
6672
|
msgstr "প্যাকেজ সংকলন আপডেট..."
|
6198
6673
|
|
6674
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
6199
6675
|
msgid "updating package groups..."
|
6200
6676
|
msgstr "প্যাকেজ সংকলন আপডেট..."
|
6201
6677
|
|
6678
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
6202
6679
|
msgid "updating package..."
|
6203
6680
|
msgstr "প্যাকেজ আপডেট..."
|
6204
6681
|
|
6682
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author Runa Bhattacharjee
|
6205
6683
|
msgid "updating packages..."
|
6206
6684
|
msgstr "প্যাকেজ আপডেট..."
|
6207
6685
|
|