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