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/kn/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
|
+
# shanky <shanky@fedoraproject.org>, 2013. #zanata
|
8
|
+
# bkearney <bkearney@fedoraproject.org>, 2014. #zanata
|
9
|
+
# shanky <shanky@fedoraproject.org>, 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: Kannada (https://www.transifex.com/foreman/teams/114/kn/)\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 08:38-0400\n"
|
18
|
+
"Last-Translator: shanky <shanky@fedoraproject.org>\n"
|
19
|
+
"Language-Team: LANGUAGE <LL@li.org>\n"
|
19
20
|
"Language: kn\n"
|
20
|
-
"Plural-Forms: nplurals=
|
21
|
+
"Plural-Forms: nplurals=1; plural=0;\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, author shanky
|
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 Satellite6 Katello CLI, version 6.0, document keys
|
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, author shanky
|
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, author shanky
|
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 ಇತರೆ ಎರಾಟ) ಅನುಸ್ಥಾಪನೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
|
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 ಎರಾಟಮ್ ಅನುಸ್ಥಾಪನೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
|
97
113
|
|
114
|
+
#, fuzzy
|
98
115
|
msgid "%{errata} erratum install failed"
|
99
|
-
msgstr ""
|
116
|
+
msgstr "%s ಎರಾಟಮ್ ಅನುಸ್ಥಾಪನೆಯು ವಿಫಲಗೊಂಡಿದೆ"
|
100
117
|
|
118
|
+
#, fuzzy
|
101
119
|
msgid "%{errata} erratum install timed out"
|
102
|
-
msgstr ""
|
120
|
+
msgstr "%s ಎರಾಟಮ್ ಅನುಸ್ಥಾಪನೆಯ ಕಾಲಾವಧಿ ತೀರಿದೆ"
|
103
121
|
|
122
|
+
#, fuzzy
|
104
123
|
msgid "%{errata} erratum installed"
|
105
|
-
msgstr ""
|
124
|
+
msgstr "%s ಎರಾಟಮ್ ಅನುಸ್ಥಾಪನೆ"
|
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 ಇತರೆ ಪ್ಯಾಕೇಜು ಗುಂಪುಗಳು) ಅನುಸ್ಥಾಪನೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
|
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 ಇತರೆ ಪ್ಯಾಕೇಜು ಗುಂಪುಗಳು) ತೆಗೆದುಹಾಕುವಿಕೆಯನ್ನು ರದ್ದುಗೊಳಸಿಲಾಗಿದೆ"
|
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 ಇತರೆ ಪ್ಯಾಕೇಜು ಗುಂಪುಗಳು) ಅಪ್ಡೇಟ್ ಅನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
|
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 ಇತರೆ ಪ್ಯಾಕೇಜುಗಳು) ಅನುಸ್ಥಾಪನೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
|
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 ಇತರೆ ಪ್ಯಾಕೇಜುಗಳು) ತೆಗೆದುಹಾಕುವಿಕೆಯನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
|
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 ಇತರೆ ಪ್ಯಾಕೇಜುಗಳು) ಅಪ್ಡೇಟ್ ಅನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
|
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 shanky
|
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 Satellite6 Katello CLI, version 6.0, document keys
|
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 Satellite6 Katello CLI, version 6.0, document keys
|
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 shanky
|
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 shanky
|
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 shanky
|
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 shanky
|
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 shanky
|
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 shanky
|
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 shanky
|
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 shanky
|
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 shanky
|
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 shanky
|
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 shanky
|
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 Satellite6 Katello CLI, version 6.0, document keys, author shanky
|
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 shanky
|
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 shanky
|
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 shanky
|
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
|
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 "'%s' id ಯನ್ನು ಹೊಂದಿದ ಉತ್ಪನ್ನವು ಕಂಡುಬಂದಿಲ್ಲ"
|
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
|
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
|
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
|
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 "'%s' id ಯನ್ನು ಹೊಂದಿದ ಉತ್ಪನ್ನವು ಕಂಡುಬಂದಿಲ್ಲ"
|
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 shanky
|
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 Satellite6 Katello CLI, version 6.0, document keys
|
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 shanky
|
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 Katello CLI, version 6.0, document keys, author shanky
|
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 Satellite6 Katello CLI, version 6.0, document keys
|
1683
1882
|
msgid "Errata"
|
1684
|
-
msgstr ""
|
1883
|
+
msgstr "ಎರಾಟಾ"
|
1685
1884
|
|
1885
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
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 Satellite6 Katello CLI, version 6.0, document keys
|
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 shanky
|
1710
1918
|
msgid "Erratum Install Canceled"
|
1711
|
-
msgstr ""
|
1919
|
+
msgstr "ಎರಾಟಮ್ ಅನುಸ್ಥಾಪನೆಯನ್ನು ರದ್ದುಗೊಂಡಿದೆ"
|
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 "ಎರಾಟಾ ಅನುಸ್ಥಾಪನೆಯು ಪೂರ್ಣಗೊಂಡಿದೆ"
|
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 "ಎರಾಟಮ್ ಅನುಸ್ಥಾಪನೆಯು ವಿಫಲಗೊಂಡಿದೆ"
|
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 "ಎರಾಟಮ್ ಅನುಸ್ಥಾಪನೆಯ ಕಾಲಾವಧಿ ತೀರಿದೆ"
|
1721
1932
|
|
1933
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
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
|
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 Katello CLI, version 6.0, document keys
|
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 shanky
|
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 "ಎರಾಟಮ್ ಅನ್ನು ಅನುಸ್ಥಾಪಿಲಾಗುತ್ತಿದೆ..."
|
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 "ಎರಾಟಮ್ ಅನ್ನು ಅನುಸ್ಥಾಪಿಲಾಗುತ್ತಿದೆ..."
|
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 shanky
|
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 "ಎರಾಟಮ್ ಅನ್ನು ಅನುಸ್ಥಾಪಿಲಾಗುತ್ತಿದೆ..."
|
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 shanky
|
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 Katello CLI, version 6.0, document keys
|
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 shanky
|
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
|
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
|
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 ""
|
@@ -3111,7 +3368,7 @@ msgid "No errata has been specified."
|
|
3111
3368
|
msgstr ""
|
3112
3369
|
|
3113
3370
|
msgid "No errors"
|
3114
|
-
msgstr ""
|
3371
|
+
msgstr "ಯಾವುದೆ ದೋಷವಿಲ್ಲ"
|
3115
3372
|
|
3116
3373
|
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3117
3374
|
msgstr ""
|
@@ -3158,20 +3415,24 @@ msgstr ""
|
|
3158
3415
|
msgid "No matching version found"
|
3159
3416
|
msgstr ""
|
3160
3417
|
|
3418
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3161
3419
|
msgid "No new packages installed"
|
3162
|
-
msgstr ""
|
3420
|
+
msgstr "ಯಾವುದೆ ಪ್ಯಾಕೇಜನ್ನು ಅನುಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ"
|
3163
3421
|
|
3422
|
+
#, fuzzy
|
3164
3423
|
msgid "No new packages."
|
3165
|
-
msgstr ""
|
3424
|
+
msgstr "ಯಾವುದೆ ಪ್ಯಾಕೇಜನ್ನು ಅನುಸ್ಥಾಪಿಸಲಾಗಿಲ್ಲ"
|
3166
3425
|
|
3167
3426
|
msgid "No package groups have been added to this filter."
|
3168
3427
|
msgstr ""
|
3169
3428
|
|
3429
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3170
3430
|
msgid "No packages removed"
|
3171
|
-
msgstr ""
|
3431
|
+
msgstr "ಯಾವುದೆ ಪ್ಯಾಕೇಜುಗಳನ್ನು ತೆಗೆದುಹಾಕಿಲ್ಲ"
|
3172
3432
|
|
3433
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3173
3434
|
msgid "No packages updated"
|
3174
|
-
msgstr ""
|
3435
|
+
msgstr "ಯಾವುದೇ ಪ್ಯಾಕೇಜುಗಳನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗಿಲ್ಲ"
|
3175
3436
|
|
3176
3437
|
msgid "No pool IDs were provided."
|
3177
3438
|
msgstr ""
|
@@ -3218,8 +3479,9 @@ msgstr ""
|
|
3218
3479
|
msgid "No services defined, is this class extended?"
|
3219
3480
|
msgstr ""
|
3220
3481
|
|
3482
|
+
#, fuzzy
|
3221
3483
|
msgid "No start time currently available."
|
3222
|
-
msgstr ""
|
3484
|
+
msgstr "ವಿತರಣೆಗಳು"
|
3223
3485
|
|
3224
3486
|
msgid "No subscriptions match your search criteria."
|
3225
3487
|
msgstr ""
|
@@ -3236,9 +3498,11 @@ msgstr ""
|
|
3236
3498
|
msgid "Non-security errata installable"
|
3237
3499
|
msgstr ""
|
3238
3500
|
|
3501
|
+
#, fuzzy
|
3239
3502
|
msgid "Non-system event"
|
3240
|
-
msgstr ""
|
3503
|
+
msgstr "ವ್ಯವಸ್ಥೆಗಳು"
|
3241
3504
|
|
3505
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3242
3506
|
msgid "None"
|
3243
3507
|
msgstr "ಯಾವುದೂ ಇಲ್ಲ"
|
3244
3508
|
|
@@ -3299,17 +3563,15 @@ msgstr ""
|
|
3299
3563
|
msgid "On Demand"
|
3300
3564
|
msgstr ""
|
3301
3565
|
|
3302
|
-
msgid "On demand repositories cannot be exported."
|
3303
|
-
msgstr ""
|
3304
|
-
|
3305
3566
|
msgid "On-disk location for exported repositories"
|
3306
3567
|
msgstr ""
|
3307
3568
|
|
3308
3569
|
msgid "On-disk location for pulp 3 exported repositories"
|
3309
3570
|
msgstr ""
|
3310
3571
|
|
3572
|
+
#, fuzzy
|
3311
3573
|
msgid "One of parameters [ %s ] required but not specified."
|
3312
|
-
msgstr ""
|
3574
|
+
msgstr "organization_id ಅಗತ್ಯವಿದೆ ಆದರೆ ಅದನ್ನು ಸೂಚಿಸಲಾಗಿಲ್ಲ."
|
3313
3575
|
|
3314
3576
|
msgid "One of yum or docker"
|
3315
3577
|
msgstr ""
|
@@ -3320,14 +3582,16 @@ msgstr ""
|
|
3320
3582
|
msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
|
3321
3583
|
msgstr ""
|
3322
3584
|
|
3585
|
+
#, fuzzy
|
3323
3586
|
msgid "One or more packages failed to sync properly."
|
3324
|
-
msgstr ""
|
3587
|
+
msgstr "ಒಂದು ಅಥವ ಎರಾಟಾವನ್ನು ಒದಗಿಸಬೇಕಾಗುತ್ತದೆ"
|
3325
3588
|
|
3326
3589
|
msgid "One or more processes require restarting"
|
3327
3590
|
msgstr ""
|
3328
3591
|
|
3592
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3329
3593
|
msgid "Only one Red Hat provider permitted for an Organization"
|
3330
|
-
msgstr ""
|
3594
|
+
msgstr "ಒಂದು ಸಂಸ್ಥೆಗಾಗಿ ಕೇವಲ ಒಂದು Red Hat ಒದಗಿಸುವವರಿಗೆ ಮಾತ್ರ ಅನುಮತಿ ಇದೆ"
|
3331
3595
|
|
3332
3596
|
msgid "Only returns id and quantity fields"
|
3333
3597
|
msgstr ""
|
@@ -3335,9 +3599,7 @@ msgstr ""
|
|
3335
3599
|
msgid "Operators"
|
3336
3600
|
msgstr ""
|
3337
3601
|
|
3338
|
-
|
3339
|
-
msgstr ""
|
3340
|
-
|
3602
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author shanky
|
3341
3603
|
msgid "Organization"
|
3342
3604
|
msgstr "ಸಂಸ್ಥೆ"
|
3343
3605
|
|
@@ -3353,8 +3615,9 @@ msgstr ""
|
|
3353
3615
|
msgid "Organization Information not provided."
|
3354
3616
|
msgstr ""
|
3355
3617
|
|
3618
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3356
3619
|
msgid "Organization cannot be blank."
|
3357
|
-
msgstr ""
|
3620
|
+
msgstr "ಸಂಸ್ಥೆಯು ಖಾಲಿ ಇರುವಂತಿಲ್ಲ."
|
3358
3621
|
|
3359
3622
|
msgid "Organization id"
|
3360
3623
|
msgstr ""
|
@@ -3368,11 +3631,13 @@ msgstr ""
|
|
3368
3631
|
msgid "Organization not found"
|
3369
3632
|
msgstr ""
|
3370
3633
|
|
3634
|
+
#, fuzzy
|
3371
3635
|
msgid "Organization required"
|
3372
|
-
msgstr ""
|
3636
|
+
msgstr "ಸಂಸ್ಥೆ"
|
3373
3637
|
|
3638
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3374
3639
|
msgid "Other"
|
3375
|
-
msgstr ""
|
3640
|
+
msgstr "ಇತರೆ"
|
3376
3641
|
|
3377
3642
|
msgid "Override content for activation_key"
|
3378
3643
|
msgstr ""
|
@@ -3395,74 +3660,99 @@ msgstr ""
|
|
3395
3660
|
msgid "Override value. Provide a boolean value if name is 'enabled'"
|
3396
3661
|
msgstr ""
|
3397
3662
|
|
3663
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3664
|
+
#, fuzzy
|
3398
3665
|
msgid "Package"
|
3399
|
-
msgstr ""
|
3666
|
+
msgstr "ಪ್ಯಾಕೇಜುಗಳು"
|
3400
3667
|
|
3668
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3669
|
+
#, fuzzy
|
3401
3670
|
msgid "Package Group"
|
3402
|
-
msgstr ""
|
3671
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪುಗಳು"
|
3403
3672
|
|
3673
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3404
3674
|
msgid "Package Group Install"
|
3405
|
-
msgstr ""
|
3675
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪಿನ ಅನುಸ್ಥಾಪನೆ"
|
3406
3676
|
|
3677
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3407
3678
|
msgid "Package Group Install Canceled"
|
3408
|
-
msgstr ""
|
3679
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪಿನ ಅನುಸ್ಥಾಪನೆ ವಿಫಲಗೊಂಡಿದೆ"
|
3409
3680
|
|
3681
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3410
3682
|
msgid "Package Group Install Complete"
|
3411
|
-
msgstr ""
|
3683
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪಿನ ಅನುಸ್ಥಾಪನೆಯು ಪೂರ್ಣಗೊಂಡಿದೆ"
|
3412
3684
|
|
3685
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3413
3686
|
msgid "Package Group Install Failed"
|
3414
|
-
msgstr ""
|
3687
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪಿನ ಅನುಸ್ಥಾಪನೆಯು ವಿಫಲಗೊಂಡಿದೆ"
|
3415
3688
|
|
3689
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3416
3690
|
msgid "Package Group Install Timed Out"
|
3417
|
-
msgstr ""
|
3691
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪಿನ ಅನುಸ್ಥಾಪನೆಯ ಕಾಲಾವಧಿ ತೀರಿದೆ"
|
3418
3692
|
|
3693
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3419
3694
|
msgid "Package Group Install scheduled by %s"
|
3420
|
-
msgstr ""
|
3695
|
+
msgstr "ಪ್ಯಾಕೇಜು ಸಮೂಹದ ಅನುಸ್ಥಾಪನೆಯನ್ನು %s ಇಂದ ಅನುಸೂಚಿತಗೊಳಿಸಲಾಗಿದೆ"
|
3421
3696
|
|
3697
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3422
3698
|
msgid "Package Group Remove"
|
3423
|
-
msgstr ""
|
3699
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪನ್ನು ತೆಗೆದುಹಾಕುವಿಕೆ"
|
3424
3700
|
|
3701
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3425
3702
|
msgid "Package Group Remove Canceled"
|
3426
|
-
msgstr ""
|
3703
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪನ್ನು ತೆಗೆದುಹಾಕುವಿಕೆಯನ್ನು ರದ್ದುಗೊಳಿಸಿಲಾಗಿದೆ"
|
3427
3704
|
|
3705
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3428
3706
|
msgid "Package Group Remove Complete"
|
3429
|
-
msgstr ""
|
3707
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪು ತೆಗೆದುಹಾಕುವಿಕೆಯು ಪೂರ್ಣಗೊಂಡಿದೆ"
|
3430
3708
|
|
3709
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3431
3710
|
msgid "Package Group Remove Failed"
|
3432
|
-
msgstr ""
|
3711
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪಿನ ತೆಗೆದುಹಾಕುವಿಕೆಯನ್ನು ವಿಫಲಗೊಂಡಿದೆ"
|
3433
3712
|
|
3713
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3434
3714
|
msgid "Package Group Remove Timed Out"
|
3435
|
-
msgstr ""
|
3715
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪಿನ ತೆಗೆದುಹಾಕುವಿಕೆಯ ಕಾಲಾವಧಿ ತೀರಿದೆ"
|
3436
3716
|
|
3717
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3437
3718
|
msgid "Package Group Remove scheduled by %s"
|
3438
|
-
msgstr ""
|
3719
|
+
msgstr "ಪ್ಯಾಕೇಜು ಸಮೂಹದ ತೆಗೆದು ಹಾಕುವಿಕೆಯನ್ನು %s ಇಂದ ಅನುಸೂಚಿತಗೊಳಿಸಲಾಗಿದೆ"
|
3439
3720
|
|
3721
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3440
3722
|
msgid "Package Group Update"
|
3441
|
-
msgstr ""
|
3723
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡುವಿಕೆ"
|
3442
3724
|
|
3725
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3443
3726
|
msgid "Package Group Update scheduled by %s"
|
3444
|
-
msgstr ""
|
3727
|
+
msgstr "ಪ್ಯಾಕೇಜು ಸಮೂಹದ ಅಪ್ಡೇಟ್ ಮಾಡುವಿಕೆಯನ್ನು %s ಇಂದ ಅನುಸೂಚಿತಗೊಳಿಸಲಾಗಿದೆ"
|
3445
3728
|
|
3729
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3446
3730
|
msgid "Package Groups"
|
3447
|
-
msgstr ""
|
3731
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪುಗಳು"
|
3448
3732
|
|
3733
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3449
3734
|
msgid "Package Install"
|
3450
|
-
msgstr ""
|
3735
|
+
msgstr "ಪ್ಯಾಕೇಜು ಅನುಸ್ಥಾಪನೆ"
|
3451
3736
|
|
3737
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3452
3738
|
msgid "Package Install Canceled"
|
3453
|
-
msgstr ""
|
3739
|
+
msgstr "ಪ್ಯಾಕೇಜಿನ ಅನುಸ್ಥಾಪನೆ ರದ್ದುಗೊಂಡಿದೆ"
|
3454
3740
|
|
3741
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3455
3742
|
msgid "Package Install Complete"
|
3456
|
-
msgstr ""
|
3743
|
+
msgstr "ಪ್ಯಾಕೇಜಿನ ಅನುಸ್ಥಾಪನೆಯು ಪೂರ್ಣಗೊಂಡಿದೆ"
|
3457
3744
|
|
3745
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3458
3746
|
msgid "Package Install Failed"
|
3459
|
-
msgstr ""
|
3747
|
+
msgstr "ಪ್ಯಾಕೇಜು ಅನುಸ್ಥಾಪನೆ ವಿಫಲಗೊಂಡಿದೆ"
|
3460
3748
|
|
3749
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3461
3750
|
msgid "Package Install Timed Out"
|
3462
|
-
msgstr ""
|
3751
|
+
msgstr "ಪ್ಯಾಕೇಜು ಅನುಸ್ಥಾಪನೆಯ ಕಾಲಾವಧಿ ತೀರಿದೆ"
|
3463
3752
|
|
3753
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3464
3754
|
msgid "Package Install scheduled by %s"
|
3465
|
-
msgstr ""
|
3755
|
+
msgstr "ಪ್ಯಾಕೇಜು ಅನುಸ್ಥಾಪನೆಯನ್ನು %s ಇಂದ ಅನುಸೂಚಿತಗೊಳಿಸಲಾಗಿದೆ"
|
3466
3756
|
|
3467
3757
|
msgid "Package Profile Update"
|
3468
3758
|
msgstr ""
|
@@ -3470,53 +3760,69 @@ msgstr ""
|
|
3470
3760
|
msgid "Package Profile Update for %s"
|
3471
3761
|
msgstr ""
|
3472
3762
|
|
3763
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3473
3764
|
msgid "Package Remove"
|
3474
|
-
msgstr ""
|
3765
|
+
msgstr "ಪ್ಯಾಕೇಜು ತೆಗೆದುಹಾಕುವಿಕೆ"
|
3475
3766
|
|
3767
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3476
3768
|
msgid "Package Remove Canceled"
|
3477
|
-
msgstr ""
|
3769
|
+
msgstr "ಪ್ಯಾಕೇಜು ತೆಗೆದುಹಾಕುವಿಕೆಯನ್ನು ರದ್ದುಗೊಳಿಸಿಲಾಗಿದೆ"
|
3478
3770
|
|
3771
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3479
3772
|
msgid "Package Remove Complete"
|
3480
|
-
msgstr ""
|
3773
|
+
msgstr "ಪ್ಯಾಕೇಜು ತೆಗೆದುಹಾಕುವಿಕೆಯು ಪೂರ್ಣಗೊಂಡಿದೆ"
|
3481
3774
|
|
3775
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3482
3776
|
msgid "Package Remove Failed"
|
3483
|
-
msgstr ""
|
3777
|
+
msgstr "ಪ್ಯಾಕೇಜು ತೆಗೆದುಹಾಕುವಿಕೆಯು ವಿಫಲಗೊಂಡಿದೆ"
|
3484
3778
|
|
3779
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3485
3780
|
msgid "Package Remove Timed Out"
|
3486
|
-
msgstr ""
|
3781
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ತೆಗೆದುಹಾಕುವಿಕೆಯ ಕಾಲಾವಧಿ ತೀರಿದೆ"
|
3487
3782
|
|
3783
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3488
3784
|
msgid "Package Remove scheduled by %s"
|
3489
|
-
msgstr ""
|
3785
|
+
msgstr "ಪ್ಯಾಕೇಜು ತೆಗೆದು ಹಾಕುವಿಕೆಯನ್ನು %s ಇಂದ ಅನುಸೂಚಿತಗೊಳಿಸಲಾಗಿದೆ"
|
3490
3786
|
|
3787
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3491
3788
|
msgid "Package Update"
|
3492
|
-
msgstr ""
|
3789
|
+
msgstr "ಪ್ಯಾಕೇಜು ಅಪ್ಡೇಟ್ ಮಾಡುವಿಕೆ"
|
3493
3790
|
|
3791
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3494
3792
|
msgid "Package Update Canceled"
|
3495
|
-
msgstr ""
|
3793
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಅಪ್ಡೇಟ್ ಮಾಡುವಿಕೆ ರದ್ದುಗೊಂಡಿದೆ"
|
3496
3794
|
|
3795
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3497
3796
|
msgid "Package Update Complete"
|
3498
|
-
msgstr ""
|
3797
|
+
msgstr "ಪ್ಯಾಕೇಜು ಅಪ್ಡೇಟ್ ಪೂರ್ಣಗೊಂಡಿದೆ"
|
3499
3798
|
|
3799
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3500
3800
|
msgid "Package Update Failed"
|
3501
|
-
msgstr ""
|
3801
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಅಪ್ಡೇಟ್ ಮಾಡುವಿಕೆಯು ವಿಫಲಗೊಂಡಿದೆ"
|
3502
3802
|
|
3803
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3503
3804
|
msgid "Package Update Timed Out"
|
3504
|
-
msgstr ""
|
3805
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಅಪ್ಡೇಟ್ ಮಾಡುವಿಕೆಯ ಕಾಲಾವಧಿ ತೀರಿದೆ"
|
3505
3806
|
|
3807
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3506
3808
|
msgid "Package Update scheduled by %s"
|
3507
|
-
msgstr ""
|
3809
|
+
msgstr "ಪ್ಯಾಕೇಜು ಅಪ್ಡೇಟ್ ಮಾಡುವಿಕೆಯನ್ನು %s ಇಂದ ಅನುಸೂಚಿತಗೊಳಿಸಲಾಗಿದೆ"
|
3508
3810
|
|
3811
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3509
3812
|
msgid "Package group update canceled"
|
3510
|
-
msgstr ""
|
3813
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪಿನ ಅಪ್ಡೇಟ್ ರದ್ದುಗೊಂಡಿದೆ"
|
3511
3814
|
|
3815
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3512
3816
|
msgid "Package group update complete"
|
3513
|
-
msgstr ""
|
3817
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪಿನ ಅಪ್ಡೇಟ್ ಪೂರ್ಣಗೊಂಡಿದೆ"
|
3514
3818
|
|
3819
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3515
3820
|
msgid "Package group update failed"
|
3516
|
-
msgstr ""
|
3821
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪಿನ ಅಪ್ಡೇಟ್ ಮಾಡುವಿಕೆಯು ವಿಫಲಗೊಂಡಿದೆ"
|
3517
3822
|
|
3823
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3518
3824
|
msgid "Package group update timed out"
|
3519
|
-
msgstr ""
|
3825
|
+
msgstr "ಪ್ಯಾಕೇಜ್ ಗುಂಪಿನ ಅಪ್ಡೇಟ್ ಮಾಡುಕುವಿಕೆಯ ಕಾಲಾವಧಿ ತೀರಿದೆ"
|
3520
3826
|
|
3521
3827
|
msgid "Package groups"
|
3522
3828
|
msgstr ""
|
@@ -3524,17 +3830,21 @@ msgstr ""
|
|
3524
3830
|
msgid "Package identifiers to filter content by"
|
3525
3831
|
msgstr ""
|
3526
3832
|
|
3833
|
+
#, fuzzy
|
3527
3834
|
msgid "Package install failed: \"%{package}\""
|
3528
|
-
msgstr ""
|
3835
|
+
msgstr "ಪ್ಯಾಕೇಜು ಅನುಸ್ಥಾಪನೆ ವಿಫಲಗೊಂಡಿದೆ"
|
3529
3836
|
|
3837
|
+
#, fuzzy
|
3530
3838
|
msgid "Package installation: \"%{package}\" "
|
3531
|
-
msgstr ""
|
3839
|
+
msgstr "ಪ್ಯಾಕೇಜಿನ ಅನುಸ್ಥಾಪನೆ ರದ್ದುಗೊಂಡಿದೆ"
|
3532
3840
|
|
3841
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3533
3842
|
msgid "Packages"
|
3534
|
-
msgstr ""
|
3843
|
+
msgstr "ಪ್ಯಾಕೇಜುಗಳು"
|
3535
3844
|
|
3845
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3536
3846
|
msgid "Packages must be provided"
|
3537
|
-
msgstr ""
|
3847
|
+
msgstr "ಪ್ಯಾಕೇಜುಗಳನ್ನು ಒದಗಿಸುವ ಅಗತ್ಯವಿರುತ್ತದೆ"
|
3538
3848
|
|
3539
3849
|
msgid "Page number, starting at 1"
|
3540
3850
|
msgstr ""
|
@@ -3563,8 +3873,10 @@ msgstr ""
|
|
3563
3873
|
msgid "Paused"
|
3564
3874
|
msgstr ""
|
3565
3875
|
|
3876
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3877
|
+
#, fuzzy
|
3566
3878
|
msgid "Pending"
|
3567
|
-
msgstr "
|
3879
|
+
msgstr "ಚಾಲನೆಯಲ್ಲಿದೆ"
|
3568
3880
|
|
3569
3881
|
msgid "Perform a module stream action via Katello interface"
|
3570
3882
|
msgstr ""
|
@@ -3584,11 +3896,13 @@ msgstr ""
|
|
3584
3896
|
msgid "Performs an incremental-export of the repositories in library."
|
3585
3897
|
msgstr ""
|
3586
3898
|
|
3899
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
3587
3900
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3588
|
-
msgstr ""
|
3901
|
+
msgstr "ಅನುಮತಿಯನ್ನು ನಿರಾಕರಿಸಲಾಗಿದೆ. '%{user}' ಎಂಬ ಬಳಕೆದಾರನು '%{org}' ಸಂಸ್ಥೆಯನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಲು ಅನುಮತಿಗಳನ್ನು ಹೊಂದಿಲ್ಲ."
|
3589
3902
|
|
3903
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3590
3904
|
msgid "Physical"
|
3591
|
-
msgstr ""
|
3905
|
+
msgstr "ಭೌತಿಕ"
|
3592
3906
|
|
3593
3907
|
msgid "Plan numeric identifier"
|
3594
3908
|
msgstr ""
|
@@ -3635,8 +3949,9 @@ msgstr ""
|
|
3635
3949
|
msgid "Processing metadata."
|
3636
3950
|
msgstr ""
|
3637
3951
|
|
3952
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
3638
3953
|
msgid "Product"
|
3639
|
-
msgstr ""
|
3954
|
+
msgstr "ಉತ್ಪನ್ನ"
|
3640
3955
|
|
3641
3956
|
msgid "Product Content"
|
3642
3957
|
msgstr ""
|
@@ -3679,8 +3994,9 @@ msgstr ""
|
|
3679
3994
|
msgid "Product: '%{product}', Repository: '%{repository}'"
|
3680
3995
|
msgstr ""
|
3681
3996
|
|
3997
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3682
3998
|
msgid "Products"
|
3683
|
-
msgstr ""
|
3999
|
+
msgstr "ಉತ್ಪನ್ನಗಳು"
|
3684
4000
|
|
3685
4001
|
msgid "Profiles"
|
3686
4002
|
msgstr ""
|
@@ -3721,8 +4037,9 @@ msgstr ""
|
|
3721
4037
|
msgid "Public key block in DER encoding or certificate content"
|
3722
4038
|
msgstr ""
|
3723
4039
|
|
4040
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3724
4041
|
msgid "Publish"
|
3725
|
-
msgstr ""
|
4042
|
+
msgstr "ಪ್ರಕಟಿಸು"
|
3726
4043
|
|
3727
4044
|
msgid "Publish Lifecycle Environment Repositories"
|
3728
4045
|
msgstr ""
|
@@ -3730,9 +4047,18 @@ msgstr ""
|
|
3730
4047
|
msgid "Publish a content view"
|
3731
4048
|
msgstr ""
|
3732
4049
|
|
4050
|
+
msgid "Publish new version - "
|
4051
|
+
msgstr ""
|
4052
|
+
|
3733
4053
|
msgid "Published new version"
|
3734
4054
|
msgstr ""
|
3735
4055
|
|
4056
|
+
msgid "Publishing ${name}"
|
4057
|
+
msgstr ""
|
4058
|
+
|
4059
|
+
msgid "Publishing content view"
|
4060
|
+
msgstr ""
|
4061
|
+
|
3736
4062
|
msgid "Pulling remote branches. Downloaded %s units."
|
3737
4063
|
msgstr ""
|
3738
4064
|
|
@@ -3742,7 +4068,7 @@ msgstr ""
|
|
3742
4068
|
msgid "Pulp 3 export destination filepath"
|
3743
4069
|
msgstr ""
|
3744
4070
|
|
3745
|
-
msgid "Pulp
|
4071
|
+
msgid "Pulp 3 is not enabled on Smart proxy!"
|
3746
4072
|
msgstr ""
|
3747
4073
|
|
3748
4074
|
msgid "Pulp Docker registry port"
|
@@ -3832,8 +4158,9 @@ msgstr ""
|
|
3832
4158
|
msgid "RPM name"
|
3833
4159
|
msgstr ""
|
3834
4160
|
|
4161
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
3835
4162
|
msgid "RPMs"
|
3836
|
-
msgstr ""
|
4163
|
+
msgstr "RPMಗಳು"
|
3837
4164
|
|
3838
4165
|
msgid "Realm IDs"
|
3839
4166
|
msgstr ""
|
@@ -3847,29 +4174,35 @@ msgstr ""
|
|
3847
4174
|
msgid "Recommended Repositories"
|
3848
4175
|
msgstr ""
|
3849
4176
|
|
4177
|
+
#, fuzzy
|
3850
4178
|
msgid "Red Hat CDN URL"
|
3851
|
-
msgstr ""
|
4179
|
+
msgstr "ಉತ್ಪನ್ನಗಳು"
|
3852
4180
|
|
3853
4181
|
msgid "Red Hat Provider Details"
|
3854
4182
|
msgstr ""
|
3855
4183
|
|
4184
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3856
4185
|
msgid "Red Hat Repositories"
|
3857
|
-
msgstr ""
|
4186
|
+
msgstr "Red Hat ರೆಪೊಸಿಟರಿಗಳು"
|
3858
4187
|
|
4188
|
+
#, fuzzy
|
3859
4189
|
msgid "Red Hat products cannot be manipulated."
|
3860
|
-
msgstr ""
|
4190
|
+
msgstr "Red Hat ಒದಗಿಸುವವರನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ"
|
3861
4191
|
|
4192
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
3862
4193
|
msgid "Red Hat provider can not be deleted"
|
3863
|
-
msgstr ""
|
4194
|
+
msgstr "Red Hat ಒದಗಿಸುವವರನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ"
|
3864
4195
|
|
4196
|
+
#, fuzzy
|
3865
4197
|
msgid "Red Hat repositories cannot be manipulated."
|
3866
|
-
msgstr ""
|
4198
|
+
msgstr "Red Hat ಒದಗಿಸುವವರನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ"
|
3867
4199
|
|
3868
4200
|
msgid "Refresh"
|
3869
4201
|
msgstr ""
|
3870
4202
|
|
4203
|
+
#, fuzzy
|
3871
4204
|
msgid "Refresh Manifest"
|
3872
|
-
msgstr ""
|
4205
|
+
msgstr "ಪಾತ್ರಗಳನ್ನು ಅಳಿಸಿ"
|
3873
4206
|
|
3874
4207
|
msgid "Refresh previously imported manifest for Red Hat provider"
|
3875
4208
|
msgstr ""
|
@@ -3916,14 +4249,19 @@ msgstr ""
|
|
3916
4249
|
msgid "Removal of package(s) requested: %{packages}"
|
3917
4250
|
msgstr ""
|
3918
4251
|
|
4252
|
+
msgid "Remove"
|
4253
|
+
msgstr ""
|
4254
|
+
|
3919
4255
|
msgid "Remove Content"
|
3920
4256
|
msgstr ""
|
3921
4257
|
|
4258
|
+
#, fuzzy
|
3922
4259
|
msgid "Remove Version"
|
3923
|
-
msgstr ""
|
4260
|
+
msgstr "ಪಾತ್ರಗಳನ್ನು ಅನುಮತಿಯನ್ನು ಓದು"
|
3924
4261
|
|
4262
|
+
#, fuzzy
|
3925
4263
|
msgid "Remove Versions and Associations"
|
3926
|
-
msgstr ""
|
4264
|
+
msgstr "ಸಂಸ್ಥೆಯನ್ನು ಓದು"
|
3927
4265
|
|
3928
4266
|
msgid "Remove a content view from an environment"
|
3929
4267
|
msgstr ""
|
@@ -3940,9 +4278,13 @@ msgstr ""
|
|
3940
4278
|
msgid "Remove content view version"
|
3941
4279
|
msgstr ""
|
3942
4280
|
|
3943
|
-
msgid "Remove
|
4281
|
+
msgid "Remove content views"
|
3944
4282
|
msgstr ""
|
3945
4283
|
|
4284
|
+
#, fuzzy
|
4285
|
+
msgid "Remove from Environment"
|
4286
|
+
msgstr "ಪರಿಸರಗಳನ್ನು ಓದು"
|
4287
|
+
|
3946
4288
|
msgid "Remove hosts from the host collection"
|
3947
4289
|
msgstr ""
|
3948
4290
|
|
@@ -3955,14 +4297,16 @@ msgstr ""
|
|
3955
4297
|
msgid "Remove one or more subscriptions from an upstream subscription allocation"
|
3956
4298
|
msgstr ""
|
3957
4299
|
|
4300
|
+
#, fuzzy
|
3958
4301
|
msgid "Remove package"
|
3959
|
-
msgstr ""
|
4302
|
+
msgstr "'%s' ಪ್ಯಾಕೇಜನ್ನು ತೆಗೆದುಹಾಕಲಾಗಿದೆ"
|
3960
4303
|
|
3961
4304
|
msgid "Remove package for %s"
|
3962
4305
|
msgstr ""
|
3963
4306
|
|
4307
|
+
#, fuzzy
|
3964
4308
|
msgid "Remove package group"
|
3965
|
-
msgstr ""
|
4309
|
+
msgstr "'%s' ಎಂಬ ಪ್ಯಾಕೇಜು ಗುಂಪನ್ನು ತೆಗೆದುಹಾಕಲಾಗಿದೆ"
|
3966
4310
|
|
3967
4311
|
msgid "Remove package group via Katello interface"
|
3968
4312
|
msgstr ""
|
@@ -3985,30 +4329,37 @@ msgstr ""
|
|
3985
4329
|
msgid "Remove versions and/or environments from a content view and reassign systems and keys"
|
3986
4330
|
msgstr ""
|
3987
4331
|
|
3988
|
-
msgid "
|
4332
|
+
msgid "Removed component from content view"
|
3989
4333
|
msgstr ""
|
3990
4334
|
|
3991
|
-
msgid "
|
4335
|
+
msgid "Removed components from content view"
|
3992
4336
|
msgstr ""
|
3993
4337
|
|
4338
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4339
|
+
msgid "Removing Package Group..."
|
4340
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪನ್ನು ತೆಗೆದುಹಾಕಲಾಗುತ್ತಿದೆ..."
|
4341
|
+
|
4342
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4343
|
+
msgid "Removing Package..."
|
4344
|
+
msgstr "ಪ್ಯಾಕೇಜನ್ನು ತೆಗೆದುಹಾಕಲಾಗುತ್ತಿದೆ..."
|
4345
|
+
|
3994
4346
|
msgid "Repo Type"
|
3995
4347
|
msgstr ""
|
3996
4348
|
|
4349
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
3997
4350
|
msgid "Repositories"
|
3998
|
-
msgstr ""
|
4351
|
+
msgstr "ರೆಪೊಸಿಟರಿಗಳು"
|
3999
4352
|
|
4000
4353
|
msgid "Repositories from published Content Views are not allowed."
|
4001
4354
|
msgstr ""
|
4002
4355
|
|
4356
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4003
4357
|
msgid "Repository"
|
4004
|
-
msgstr ""
|
4358
|
+
msgstr "ರೆಪೊಸಿಟರಿ"
|
4005
4359
|
|
4006
4360
|
msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
|
4007
4361
|
msgstr ""
|
4008
4362
|
|
4009
|
-
msgid "Repository %s cannot be deleted since they are Red Hat repositories."
|
4010
|
-
msgstr ""
|
4011
|
-
|
4012
4363
|
msgid "Repository '%(repoName)s' has been disabled."
|
4013
4364
|
msgstr ""
|
4014
4365
|
|
@@ -4021,14 +4372,13 @@ msgstr ""
|
|
4021
4372
|
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
4373
|
msgstr ""
|
4023
4374
|
|
4375
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4024
4376
|
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 ""
|
4377
|
+
msgstr "ರೆಪೊಸಿಟರಿಯನ್ನು ಈಗಾಗಲೆ ಮೇಲ್ದರ್ಜೆಗೆ ಏರಿಸಲಾಗಿದ್ದರಿಂದ ಅದನ್ನು ಅಶಕ್ತಗೊಳಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ."
|
4029
4378
|
|
4379
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4030
4380
|
msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
|
4031
|
-
msgstr ""
|
4381
|
+
msgstr "%{to_env} ಪರಿಸರದಲ್ಲಿ %{cv_name} ಗಾಗಿ ರೆಪೋಸಿಟರಿಯನ್ನು ಈಗಾಗಲೆ ತದ್ರೂಪುಗೊಳಿಸಲಾಗಿದೆ"
|
4032
4382
|
|
4033
4383
|
msgid "Repository id"
|
4034
4384
|
msgstr ""
|
@@ -4042,14 +4392,16 @@ msgstr ""
|
|
4042
4392
|
msgid "Repository metadata publish"
|
4043
4393
|
msgstr ""
|
4044
4394
|
|
4395
|
+
#, fuzzy
|
4045
4396
|
msgid "Repository not found"
|
4046
|
-
msgstr ""
|
4397
|
+
msgstr "ರೆಪೊಸಿಟರಿಗಳು"
|
4047
4398
|
|
4048
4399
|
msgid "Repository set name to search on"
|
4049
4400
|
msgstr ""
|
4050
4401
|
|
4402
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4051
4403
|
msgid "Repository sets are not available for custom products."
|
4052
|
-
msgstr ""
|
4404
|
+
msgstr "ಅಗತ್ಯಾನುಗಣವಾದ (ಕಸ್ಟಮ್) ಉತ್ಪನ್ನಗಳಿಗಾಗಿ ರೆಪೊಸಿಟರಿ ಗುಂಪುಗಳು ಲಭ್ಯವಿಲ್ಲ."
|
4053
4405
|
|
4054
4406
|
msgid "Republish Repositories of %{name} %{version}"
|
4055
4407
|
msgstr ""
|
@@ -4057,6 +4409,9 @@ msgstr ""
|
|
4057
4409
|
msgid "Republish Version Repositories"
|
4058
4410
|
msgstr ""
|
4059
4411
|
|
4412
|
+
msgid "Requirements yaml is invalid!"
|
4413
|
+
msgstr ""
|
4414
|
+
|
4060
4415
|
msgid "Requires Virt-Who"
|
4061
4416
|
msgstr ""
|
4062
4417
|
|
@@ -4067,7 +4422,7 @@ msgid "Resolve traces for one or more hosts"
|
|
4067
4422
|
msgstr ""
|
4068
4423
|
|
4069
4424
|
msgid "Resource"
|
4070
|
-
msgstr "
|
4425
|
+
msgstr ""
|
4071
4426
|
|
4072
4427
|
msgid "Restart Services via Katello interface"
|
4073
4428
|
msgstr ""
|
@@ -4075,8 +4430,9 @@ msgstr ""
|
|
4075
4430
|
msgid "Restrict Composite Content View promotion"
|
4076
4431
|
msgstr ""
|
4077
4432
|
|
4433
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4078
4434
|
msgid "Result"
|
4079
|
-
msgstr ""
|
4435
|
+
msgstr "ಫಲಿತಾಂಶ"
|
4080
4436
|
|
4081
4437
|
msgid "Retrieve a single errata for a host"
|
4082
4438
|
msgstr ""
|
@@ -4099,9 +4455,6 @@ msgstr ""
|
|
4099
4455
|
msgid "Return errata that are upgradable on one or more hosts"
|
4100
4456
|
msgstr ""
|
4101
4457
|
|
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
4458
|
msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
|
4106
4459
|
msgstr ""
|
4107
4460
|
|
@@ -4142,19 +4495,20 @@ msgid "Returns content that can be both added and is currently added to the obje
|
|
4142
4495
|
msgstr ""
|
4143
4496
|
|
4144
4497
|
msgid "Role"
|
4145
|
-
msgstr "
|
4498
|
+
msgstr ""
|
4146
4499
|
|
4147
4500
|
msgid "Role of host"
|
4148
4501
|
msgstr ""
|
4149
4502
|
|
4150
4503
|
msgid "Roles"
|
4151
|
-
msgstr "
|
4504
|
+
msgstr ""
|
4152
4505
|
|
4153
4506
|
msgid "Run Sync Plan:"
|
4154
4507
|
msgstr ""
|
4155
4508
|
|
4509
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4156
4510
|
msgid "Running"
|
4157
|
-
msgstr ""
|
4511
|
+
msgstr "ಚಾಲನೆಯಲ್ಲಿದೆ"
|
4158
4512
|
|
4159
4513
|
msgid "SKU"
|
4160
4514
|
msgstr ""
|
@@ -4169,13 +4523,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
|
|
4169
4523
|
msgstr ""
|
4170
4524
|
|
4171
4525
|
msgid "Save"
|
4172
|
-
msgstr "
|
4526
|
+
msgstr ""
|
4173
4527
|
|
4174
4528
|
msgid "Schedule errata for installation using katello-agent. %s"
|
4175
4529
|
msgstr ""
|
4176
4530
|
|
4177
4531
|
msgid "Search"
|
4178
|
-
msgstr "
|
4532
|
+
msgstr ""
|
4179
4533
|
|
4180
4534
|
msgid "Search pattern (defaults to '*')"
|
4181
4535
|
msgstr ""
|
@@ -4192,8 +4546,9 @@ msgstr ""
|
|
4192
4546
|
msgid "Search string for hosts to perform an action on"
|
4193
4547
|
msgstr ""
|
4194
4548
|
|
4549
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4195
4550
|
msgid "Security"
|
4196
|
-
msgstr ""
|
4551
|
+
msgstr "ಸುರಕ್ಷತೆ"
|
4197
4552
|
|
4198
4553
|
msgid "Security errata applicable"
|
4199
4554
|
msgstr ""
|
@@ -4204,30 +4559,41 @@ msgstr ""
|
|
4204
4559
|
msgid "Select"
|
4205
4560
|
msgstr ""
|
4206
4561
|
|
4562
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
4207
4563
|
msgid "Select All"
|
4208
4564
|
msgstr "ಎಲ್ಲವನ್ನೂ ಆರಿಸು"
|
4209
4565
|
|
4566
|
+
#, fuzzy
|
4210
4567
|
msgid "Select Content View"
|
4211
|
-
msgstr ""
|
4568
|
+
msgstr "ಕಂಟೆಂಟ್"
|
4212
4569
|
|
4570
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4213
4571
|
msgid "Select None"
|
4214
|
-
msgstr ""
|
4572
|
+
msgstr "ಏನನ್ನೂ ಆರಿಸಬೇಡ"
|
4215
4573
|
|
4216
4574
|
msgid "Select Organization"
|
4217
|
-
msgstr "
|
4575
|
+
msgstr ""
|
4218
4576
|
|
4219
4577
|
msgid "Select Value"
|
4220
4578
|
msgstr ""
|
4221
4579
|
|
4580
|
+
msgid "Select a lifecycle environment from the available promotion paths to promote new version."
|
4581
|
+
msgstr ""
|
4582
|
+
|
4222
4583
|
msgid "Select all rows"
|
4223
4584
|
msgstr ""
|
4224
4585
|
|
4586
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
4587
|
+
#, fuzzy
|
4225
4588
|
msgid "Select an Organization"
|
4226
|
-
msgstr ""
|
4589
|
+
msgstr "ಸಂಸ್ಥೆಯನ್ನು ಆರಿಸು"
|
4227
4590
|
|
4228
4591
|
msgid "Select an organization"
|
4229
4592
|
msgstr ""
|
4230
4593
|
|
4594
|
+
msgid "Select available version of ${cvName} to use"
|
4595
|
+
msgstr ""
|
4596
|
+
|
4231
4597
|
msgid "Select hosts to assign to %s"
|
4232
4598
|
msgstr ""
|
4233
4599
|
|
@@ -4240,8 +4606,9 @@ msgstr ""
|
|
4240
4606
|
msgid "Service Level"
|
4241
4607
|
msgstr ""
|
4242
4608
|
|
4609
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4243
4610
|
msgid "Service Level %s"
|
4244
|
-
msgstr ""
|
4611
|
+
msgstr "%s ಸೇವಾ ಮಟ್ಟ"
|
4245
4612
|
|
4246
4613
|
msgid "Service Level (SLA)"
|
4247
4614
|
msgstr ""
|
@@ -4273,8 +4640,9 @@ msgstr ""
|
|
4273
4640
|
msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
|
4274
4641
|
msgstr ""
|
4275
4642
|
|
4643
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4276
4644
|
msgid "Severity"
|
4277
|
-
msgstr ""
|
4645
|
+
msgstr "ತೀಕ್ಷ್ಣತೆ"
|
4278
4646
|
|
4279
4647
|
msgid "Show :a_resource"
|
4280
4648
|
msgstr ""
|
@@ -4351,6 +4719,9 @@ msgstr ""
|
|
4351
4719
|
msgid "Simple Content Access has been enabled for '%{subject}'."
|
4352
4720
|
msgstr ""
|
4353
4721
|
|
4722
|
+
msgid "Single content view consisting of repositories"
|
4723
|
+
msgstr ""
|
4724
|
+
|
4354
4725
|
msgid "Size of file to upload"
|
4355
4726
|
msgstr ""
|
4356
4727
|
|
@@ -4363,9 +4734,13 @@ msgstr ""
|
|
4363
4734
|
msgid "Smart proxy IDs"
|
4364
4735
|
msgstr ""
|
4365
4736
|
|
4366
|
-
msgid "
|
4737
|
+
msgid "Smart proxy content source not found!"
|
4367
4738
|
msgstr ""
|
4368
4739
|
|
4740
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
4741
|
+
msgid "Sockets: %s"
|
4742
|
+
msgstr "ಸಾಕೆಟ್ಗಳು: %s"
|
4743
|
+
|
4369
4744
|
msgid "Solve Dependencies"
|
4370
4745
|
msgstr ""
|
4371
4746
|
|
@@ -4381,6 +4756,21 @@ msgstr ""
|
|
4381
4756
|
msgid "Some services are not properly started. See the About page for more information."
|
4382
4757
|
msgstr ""
|
4383
4758
|
|
4759
|
+
msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
|
4760
|
+
msgstr ""
|
4761
|
+
|
4762
|
+
msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
|
4763
|
+
msgstr ""
|
4764
|
+
|
4765
|
+
msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
|
4766
|
+
msgstr ""
|
4767
|
+
|
4768
|
+
msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
|
4769
|
+
msgstr ""
|
4770
|
+
|
4771
|
+
msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
|
4772
|
+
msgstr ""
|
4773
|
+
|
4384
4774
|
msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
|
4385
4775
|
msgstr ""
|
4386
4776
|
|
@@ -4420,23 +4810,27 @@ msgstr ""
|
|
4420
4810
|
msgid "Stacking ID"
|
4421
4811
|
msgstr ""
|
4422
4812
|
|
4813
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4423
4814
|
msgid "Start Date"
|
4424
|
-
msgstr ""
|
4815
|
+
msgstr "ಆರಂಭದ ದಿನ"
|
4425
4816
|
|
4817
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4426
4818
|
msgid "Start Date and Time can't be blank"
|
4427
|
-
msgstr ""
|
4819
|
+
msgstr "ಆರಂಭದ ದಿನಾಂಕ ಹಾಗು ಸಮಯವು ಖಾಲಿ ಇರುವಂತಿಲ್ಲ"
|
4428
4820
|
|
4821
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4429
4822
|
msgid "Start Time"
|
4430
|
-
msgstr ""
|
4823
|
+
msgstr "ಆರಂಭದ ಸಮಯ"
|
4431
4824
|
|
4432
4825
|
msgid "Starts"
|
4433
4826
|
msgstr ""
|
4434
4827
|
|
4828
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4435
4829
|
msgid "Status"
|
4436
4830
|
msgstr "ಸ್ಥಿತಿ"
|
4437
4831
|
|
4438
4832
|
msgid "Storage"
|
4439
|
-
msgstr "
|
4833
|
+
msgstr ""
|
4440
4834
|
|
4441
4835
|
msgid "Stream"
|
4442
4836
|
msgstr ""
|
@@ -4450,8 +4844,9 @@ msgstr ""
|
|
4450
4844
|
msgid "Subnet IDs"
|
4451
4845
|
msgstr ""
|
4452
4846
|
|
4847
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4453
4848
|
msgid "Subscription"
|
4454
|
-
msgstr ""
|
4849
|
+
msgstr "ಚಂದಾದಾರಿಕೆ"
|
4455
4850
|
|
4456
4851
|
msgid "Subscription Allocation"
|
4457
4852
|
msgstr ""
|
@@ -4522,12 +4917,14 @@ msgstr ""
|
|
4522
4917
|
msgid "Subscriptions have been saved and are being updated. "
|
4523
4918
|
msgstr ""
|
4524
4919
|
|
4920
|
+
#, fuzzy
|
4525
4921
|
msgid "Subscriptions information based on selected activation keys:"
|
4526
|
-
msgstr ""
|
4922
|
+
msgstr "'%s' ಎಂಬ ಸಕ್ರಿಯಗೊಳಿಕೆ ಕೀಲಿಗೆ ಚಂದಾದಾರಿಕೆಗಳನ್ನು ಯಶಸ್ವಿಯಾಗಿ ಸೇರಿಸಲಾಗಿದೆ."
|
4527
4923
|
|
4528
4924
|
msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
|
4529
4925
|
msgstr ""
|
4530
4926
|
|
4927
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4531
4928
|
msgid "Success"
|
4532
4929
|
msgstr "ಯಶಸ್ವಿಯಾಗಿದೆ"
|
4533
4930
|
|
@@ -4552,8 +4949,9 @@ msgstr ""
|
|
4552
4949
|
msgid "Successfully synchronized."
|
4553
4950
|
msgstr ""
|
4554
4951
|
|
4952
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4555
4953
|
msgid "Summary"
|
4556
|
-
msgstr ""
|
4954
|
+
msgstr "ಸಾರಾಂಶ"
|
4557
4955
|
|
4558
4956
|
msgid "Support Type"
|
4559
4957
|
msgstr ""
|
@@ -4561,8 +4959,9 @@ msgstr ""
|
|
4561
4959
|
msgid "Supported Content Types"
|
4562
4960
|
msgstr ""
|
4563
4961
|
|
4962
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
4564
4963
|
msgid "Sync Canceled"
|
4565
|
-
msgstr ""
|
4964
|
+
msgstr "ಸಿಂಕ್ ಅನ್ನು ರದ್ದುಗೊಳಿಸಲಾಗಿದೆ"
|
4566
4965
|
|
4567
4966
|
msgid "Sync Connection Timeout"
|
4568
4967
|
msgstr ""
|
@@ -4570,11 +4969,14 @@ msgstr ""
|
|
4570
4969
|
msgid "Sync Content View on Smart Proxy(ies)"
|
4571
4970
|
msgstr ""
|
4572
4971
|
|
4972
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4973
|
+
#, fuzzy
|
4573
4974
|
msgid "Sync Incomplete"
|
4574
|
-
msgstr ""
|
4975
|
+
msgstr "ಸಿಂಕ್ ಪೂರ್ಣಗೊಂಡಿದೆ."
|
4575
4976
|
|
4977
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4576
4978
|
msgid "Sync Overview"
|
4577
|
-
msgstr ""
|
4979
|
+
msgstr "ಸಿಂಕ್ ಅವಲೋಕನ"
|
4578
4980
|
|
4579
4981
|
msgid "Sync Plan"
|
4580
4982
|
msgstr ""
|
@@ -4582,8 +4984,9 @@ msgstr ""
|
|
4582
4984
|
msgid "Sync Plan: "
|
4583
4985
|
msgstr ""
|
4584
4986
|
|
4987
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4585
4988
|
msgid "Sync Plans"
|
4586
|
-
msgstr ""
|
4989
|
+
msgstr "ಸಿಂಕ್ ಯೋಜನೆ"
|
4587
4990
|
|
4588
4991
|
msgid "Sync Repository on Smart Proxy(ies)"
|
4589
4992
|
msgstr ""
|
@@ -4591,8 +4994,9 @@ msgstr ""
|
|
4591
4994
|
msgid "Sync Smart Proxies after Content View promotion"
|
4592
4995
|
msgstr ""
|
4593
4996
|
|
4997
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4594
4998
|
msgid "Sync Status"
|
4595
|
-
msgstr ""
|
4999
|
+
msgstr "ಸಿಂಕ್ ಸ್ಥಿತಿ"
|
4596
5000
|
|
4597
5001
|
msgid "Sync Summary"
|
4598
5002
|
msgstr ""
|
@@ -4609,8 +5013,9 @@ msgstr ""
|
|
4609
5013
|
msgid "Sync capsule"
|
4610
5014
|
msgstr ""
|
4611
5015
|
|
5016
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4612
5017
|
msgid "Sync complete."
|
4613
|
-
msgstr ""
|
5018
|
+
msgstr "ಸಿಂಕ್ ಪೂರ್ಣಗೊಂಡಿದೆ."
|
4614
5019
|
|
4615
5020
|
msgid "Sync errata"
|
4616
5021
|
msgstr ""
|
@@ -4630,11 +5035,13 @@ msgstr ""
|
|
4630
5035
|
msgid "Synced to smart proxy"
|
4631
5036
|
msgstr ""
|
4632
5037
|
|
5038
|
+
#, fuzzy
|
4633
5039
|
msgid "Synchronize"
|
4634
|
-
msgstr ""
|
5040
|
+
msgstr "ಹೊಂದಿಸುವಿಕೆ"
|
4635
5041
|
|
5042
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4636
5043
|
msgid "Synchronize Now"
|
4637
|
-
msgstr ""
|
5044
|
+
msgstr "ಈಗಲೆ ಮೇಳೈಸಿ"
|
4638
5045
|
|
4639
5046
|
msgid "Synchronize capsule content"
|
4640
5047
|
msgstr ""
|
@@ -4654,8 +5061,10 @@ msgstr ""
|
|
4654
5061
|
msgid "Synchronize: Validate Content"
|
4655
5062
|
msgstr ""
|
4656
5063
|
|
5064
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5065
|
+
#, fuzzy
|
4657
5066
|
msgid "Syncing Complete."
|
4658
|
-
msgstr ""
|
5067
|
+
msgstr "ಸಿಂಕ್ ಪೂರ್ಣಗೊಂಡಿದೆ."
|
4659
5068
|
|
4660
5069
|
msgid "System Purpose"
|
4661
5070
|
msgstr ""
|
@@ -4681,8 +5090,9 @@ msgstr ""
|
|
4681
5090
|
msgid "Temporary"
|
4682
5091
|
msgstr ""
|
4683
5092
|
|
5093
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
4684
5094
|
msgid "The '%s' environment cannot contain a changeset!"
|
4685
|
-
msgstr ""
|
5095
|
+
msgstr "'%s' ಪರಿಸರವು ಯಾವುದೆ ಚೇಂಜ್ಸೆಟ್ ಅನ್ನು ಹೊಂದಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ!"
|
4686
5096
|
|
4687
5097
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4688
5098
|
msgstr ""
|
@@ -4696,14 +5106,16 @@ msgstr ""
|
|
4696
5106
|
msgid "The actual file contents"
|
4697
5107
|
msgstr ""
|
4698
5108
|
|
5109
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4699
5110
|
msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
|
4700
|
-
msgstr ""
|
5111
|
+
msgstr "ಪ್ರಸಕ್ತ ಸಂಸ್ಥೆಯನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ. ದಯವಿಟ್ಟು ಅಳಿಸುವ ಮೊದಲು ಒಂದು ಪ್ರತ್ಯೇಕ ಸಂಸ್ಥೆಗೆ ಬದಲಾಯಿಸಿ."
|
4701
5112
|
|
4702
5113
|
msgid "The default content view cannot be edited, published, or deleted."
|
4703
5114
|
msgstr ""
|
4704
5115
|
|
5116
|
+
#, fuzzy
|
4705
5117
|
msgid "The default content view cannot be promoted"
|
4706
|
-
msgstr ""
|
5118
|
+
msgstr "ಸಿದ್ಧಮಾದರಿಯನ್ನು ರಫ್ತು ಮಾಡಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ"
|
4707
5119
|
|
4708
5120
|
msgid "The default dependency solving value for new Content Views."
|
4709
5121
|
msgstr ""
|
@@ -4720,12 +5132,6 @@ msgstr ""
|
|
4720
5132
|
msgid "The email notification will include subscriptions expiring in this number of days or fewer."
|
4721
5133
|
msgstr ""
|
4722
5134
|
|
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
5135
|
msgid "The erratum filter rule end date is in an invalid format or type."
|
4730
5136
|
msgstr ""
|
4731
5137
|
|
@@ -4758,6 +5164,9 @@ msgstr ""
|
|
4758
5164
|
msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
|
4759
5165
|
msgstr ""
|
4760
5166
|
|
5167
|
+
msgid "The maximum number of versions of each package to keep."
|
5168
|
+
msgstr ""
|
5169
|
+
|
4761
5170
|
msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
|
4762
5171
|
msgstr ""
|
4763
5172
|
|
@@ -4790,8 +5199,9 @@ msgstr ""
|
|
4790
5199
|
msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
|
4791
5200
|
msgstr ""
|
4792
5201
|
|
5202
|
+
#, fuzzy
|
4793
5203
|
msgid "The repository is already enabled"
|
4794
|
-
msgstr ""
|
5204
|
+
msgstr "'%s' ರೆಪೊಸಿಟರಿಯನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ"
|
4795
5205
|
|
4796
5206
|
msgid "The request did not contain any repository information."
|
4797
5207
|
msgstr ""
|
@@ -4840,8 +5250,9 @@ msgstr ""
|
|
4840
5250
|
msgid "There are no errata that need to be applied to registered content hosts."
|
4841
5251
|
msgstr ""
|
4842
5252
|
|
5253
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
4843
5254
|
msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
|
4844
|
-
msgstr ""
|
5255
|
+
msgstr "ಯಾವುದೆ ಉತ್ಪನ್ನಗಳು ಅಥವ ರೆಪೊಸಿಟರಿಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿಲ್ಲ. %{custom} ಮೂಲಕ ಅಥವ %{redhat} ಮೂಲಕ ಸಕ್ರಿಯಗೊಳಿಸಲು ಪ್ರಯತ್ನಿಸಿ."
|
4845
5256
|
|
4846
5257
|
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
5258
|
msgstr ""
|
@@ -4897,9 +5308,6 @@ msgstr ""
|
|
4897
5308
|
msgid "This is disabled because a manifest task is in progress"
|
4898
5309
|
msgstr ""
|
4899
5310
|
|
4900
|
-
msgid "This is disabled because disconnected mode is enabled."
|
4901
|
-
msgstr ""
|
4902
|
-
|
4903
5311
|
msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
|
4904
5312
|
msgstr ""
|
4905
5313
|
|
@@ -4945,8 +5353,9 @@ msgstr ""
|
|
4945
5353
|
msgid "Timestamp"
|
4946
5354
|
msgstr ""
|
4947
5355
|
|
5356
|
+
# translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
|
4948
5357
|
msgid "Title"
|
4949
|
-
msgstr ""
|
5358
|
+
msgstr "ಶೀರ್ಷಿಕೆ"
|
4950
5359
|
|
4951
5360
|
msgid "Toggling Simple Content Access will refresh your manifest."
|
4952
5361
|
msgstr ""
|
@@ -4984,8 +5393,11 @@ msgstr ""
|
|
4984
5393
|
msgid "Type of content: \"cert\", \"gpg_key\""
|
4985
5394
|
msgstr ""
|
4986
5395
|
|
5396
|
+
msgid "URL needs to have a trailing /"
|
5397
|
+
msgstr ""
|
5398
|
+
|
4987
5399
|
msgid "UUID"
|
4988
|
-
msgstr "
|
5400
|
+
msgstr ""
|
4989
5401
|
|
4990
5402
|
msgid "UUID of the consumer"
|
4991
5403
|
msgstr ""
|
@@ -5011,12 +5423,6 @@ msgstr ""
|
|
5011
5423
|
msgid "Unable to detect puppet path"
|
5012
5424
|
msgstr ""
|
5013
5425
|
|
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
5426
|
msgid "Unable to find product '%s' in organization '%s'"
|
5021
5427
|
msgstr ""
|
5022
5428
|
|
@@ -5071,6 +5477,7 @@ msgstr ""
|
|
5071
5477
|
msgid "Uninstall packages remotely using katello-agent. %s"
|
5072
5478
|
msgstr ""
|
5073
5479
|
|
5480
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author shanky
|
5074
5481
|
msgid "Unknown"
|
5075
5482
|
msgstr "ಅಜ್ಞಾತ"
|
5076
5483
|
|
@@ -5107,12 +5514,14 @@ msgstr ""
|
|
5107
5514
|
msgid "Unsubscribed hypervisor"
|
5108
5515
|
msgstr ""
|
5109
5516
|
|
5517
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5110
5518
|
msgid "Unsupported URL protocol %s."
|
5111
|
-
msgstr ""
|
5519
|
+
msgstr "ಬೆಂಬಲವಿಲ್ಲದ URL ಪ್ರೊಟೊಕಾಲ್ %s."
|
5112
5520
|
|
5113
5521
|
msgid "Unsupported event type %{type}. Supported: %{types}"
|
5114
5522
|
msgstr ""
|
5115
5523
|
|
5524
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5116
5525
|
msgid "Update"
|
5117
5526
|
msgstr "ಅಪ್ಡೇಟ್ ಮಾಡು"
|
5118
5527
|
|
@@ -5224,8 +5633,14 @@ msgstr ""
|
|
5224
5633
|
msgid "Update the quantity of one or more subscriptions on an upstream allocation"
|
5225
5634
|
msgstr ""
|
5226
5635
|
|
5636
|
+
msgid "Update version"
|
5637
|
+
msgstr ""
|
5638
|
+
|
5227
5639
|
msgid "Updated"
|
5228
|
-
msgstr "
|
5640
|
+
msgstr ""
|
5641
|
+
|
5642
|
+
msgid "Updated component details"
|
5643
|
+
msgstr ""
|
5229
5644
|
|
5230
5645
|
msgid "Updates"
|
5231
5646
|
msgstr ""
|
@@ -5236,8 +5651,9 @@ msgstr ""
|
|
5236
5651
|
msgid "Updates all packages on the host(s)"
|
5237
5652
|
msgstr ""
|
5238
5653
|
|
5654
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5239
5655
|
msgid "Updating Package..."
|
5240
|
-
msgstr ""
|
5656
|
+
msgstr "ಪ್ಯಾಕೇಜನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
5241
5657
|
|
5242
5658
|
msgid "Updating System Purpose for host"
|
5243
5659
|
msgstr ""
|
@@ -5245,8 +5661,9 @@ msgstr ""
|
|
5245
5661
|
msgid "Updating System Purpose for host %s"
|
5246
5662
|
msgstr ""
|
5247
5663
|
|
5664
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5248
5665
|
msgid "Updating package group..."
|
5249
|
-
msgstr ""
|
5666
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
5250
5667
|
|
5251
5668
|
msgid "Updating repository authentication configuration"
|
5252
5669
|
msgstr ""
|
@@ -5266,11 +5683,10 @@ msgstr ""
|
|
5266
5683
|
msgid "Upload content into the repository"
|
5267
5684
|
msgstr ""
|
5268
5685
|
|
5269
|
-
|
5270
|
-
|
5271
|
-
|
5686
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5687
|
+
#, fuzzy
|
5272
5688
|
msgid "Upload into"
|
5273
|
-
msgstr ""
|
5689
|
+
msgstr "ಅಪ್ಲೋಡ್ ಮಾಡಲಾಗುತ್ತಿದೆ"
|
5274
5690
|
|
5275
5691
|
msgid "Upload request id"
|
5276
5692
|
msgstr ""
|
@@ -5306,7 +5722,7 @@ msgid "Used to determine download concurrency of the repository in pulp3. Use va
|
|
5306
5722
|
msgstr ""
|
5307
5723
|
|
5308
5724
|
msgid "User"
|
5309
|
-
msgstr "
|
5725
|
+
msgstr ""
|
5310
5726
|
|
5311
5727
|
msgid "User '%s' did not specify an organization ID and does not have a default organization."
|
5312
5728
|
msgstr ""
|
@@ -5342,7 +5758,13 @@ msgid "Verify checksum of repository contents"
|
|
5342
5758
|
msgstr ""
|
5343
5759
|
|
5344
5760
|
msgid "Version"
|
5345
|
-
msgstr "
|
5761
|
+
msgstr ""
|
5762
|
+
|
5763
|
+
msgid "Version "
|
5764
|
+
msgstr ""
|
5765
|
+
|
5766
|
+
msgid "Version ${item.version}"
|
5767
|
+
msgstr ""
|
5346
5768
|
|
5347
5769
|
msgid "Versions"
|
5348
5770
|
msgstr ""
|
@@ -5350,14 +5772,16 @@ msgstr ""
|
|
5350
5772
|
msgid "Versions will appear here when the content view is published."
|
5351
5773
|
msgstr ""
|
5352
5774
|
|
5775
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5353
5776
|
msgid "View %{view} has not been promoted to %{env}"
|
5354
|
-
msgstr ""
|
5777
|
+
msgstr "%{view} ನೋಟವನ್ನು %{env} ಗೆ ಮೇಲೇರಿಸಲಾಗಿದೆ"
|
5355
5778
|
|
5356
5779
|
msgid "View a report of the affected hosts"
|
5357
5780
|
msgstr ""
|
5358
5781
|
|
5782
|
+
# translation auto-copied from project Subscription Manager, version 1.8.X, document keys
|
5359
5783
|
msgid "Virtual"
|
5360
|
-
msgstr ""
|
5784
|
+
msgstr "ವರ್ಚುವಲ್"
|
5361
5785
|
|
5362
5786
|
msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
|
5363
5787
|
msgstr ""
|
@@ -5419,11 +5843,13 @@ msgstr ""
|
|
5419
5843
|
msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
|
5420
5844
|
msgstr ""
|
5421
5845
|
|
5846
|
+
#, fuzzy
|
5422
5847
|
msgid "You cannot set an organization's parent. This feature is disabled."
|
5423
|
-
msgstr ""
|
5848
|
+
msgstr "%s ಬಳಕೆದಾರನಿಗಾಗಿ ನೀವು ಪೂರ್ವನಿಯೋಜಿತ ಸಂಸ್ಥೆ ಮತ್ತು ಪರಿಸರವನ್ನು ಹೊಂದಿಸಿಲ್ಲ."
|
5424
5849
|
|
5850
|
+
#, fuzzy
|
5425
5851
|
msgid "You cannot set an organization's parent_id. This feature is disabled."
|
5426
|
-
msgstr ""
|
5852
|
+
msgstr "%s ಬಳಕೆದಾರನಿಗಾಗಿ ನೀವು ಪೂರ್ವನಿಯೋಜಿತ ಸಂಸ್ಥೆ ಮತ್ತು ಪರಿಸರವನ್ನು ಹೊಂದಿಸಿಲ್ಲ."
|
5427
5853
|
|
5428
5854
|
msgid "You currently don't have any Content Views."
|
5429
5855
|
msgstr ""
|
@@ -5494,11 +5920,14 @@ msgstr ""
|
|
5494
5920
|
msgid "a module stream"
|
5495
5921
|
msgstr ""
|
5496
5922
|
|
5923
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5924
|
+
#, fuzzy
|
5497
5925
|
msgid "a package"
|
5498
|
-
msgstr ""
|
5926
|
+
msgstr "ಎಲ್ಲಾ ಪ್ಯಾಕೇಜುಗಳು"
|
5499
5927
|
|
5928
|
+
#, fuzzy
|
5500
5929
|
msgid "a package group"
|
5501
|
-
msgstr ""
|
5930
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪನ್ನು ಅನುಸ್ಥಾಪಿಸುವಿಕೆ..."
|
5502
5931
|
|
5503
5932
|
msgid "actions not found"
|
5504
5933
|
msgstr ""
|
@@ -5509,8 +5938,9 @@ msgstr ""
|
|
5509
5938
|
msgid "activation key name to filter by"
|
5510
5939
|
msgstr ""
|
5511
5940
|
|
5941
|
+
#, fuzzy
|
5512
5942
|
msgid "activation keys"
|
5513
|
-
msgstr ""
|
5943
|
+
msgstr "ಸಕ್ರಿಯಗೊಳಿಕೆ ಕೀಲಿಗಳು"
|
5514
5944
|
|
5515
5945
|
msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
|
5516
5946
|
msgstr ""
|
@@ -5518,14 +5948,17 @@ msgstr ""
|
|
5518
5948
|
msgid "add all packages without errata to the included/excluded list. (package filter only)"
|
5519
5949
|
msgstr ""
|
5520
5950
|
|
5951
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5521
5952
|
msgid "all packages"
|
5522
|
-
msgstr ""
|
5953
|
+
msgstr "ಎಲ್ಲಾ ಪ್ಯಾಕೇಜುಗಳು"
|
5523
5954
|
|
5955
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5524
5956
|
msgid "all packages update"
|
5525
|
-
msgstr ""
|
5957
|
+
msgstr "ಎಲ್ಲಾ ಪ್ಯಾಕೇಜುಗಳ ಅಪ್ಡೇಟ್"
|
5526
5958
|
|
5959
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5527
5960
|
msgid "all packages update failed"
|
5528
|
-
msgstr ""
|
5961
|
+
msgstr "ಎಲ್ಲಾ ಪ್ಯಾಕೇಜುಗಳ ಅಪ್ಡೇಟ್ ವಿಫಲಗೊಂಡಿದೆ"
|
5529
5962
|
|
5530
5963
|
msgid "allow unauthenticed pull of container images"
|
5531
5964
|
msgstr ""
|
@@ -5533,17 +5966,21 @@ msgstr ""
|
|
5533
5966
|
msgid "already belongs to the content view"
|
5534
5967
|
msgstr ""
|
5535
5968
|
|
5969
|
+
#, fuzzy
|
5536
5970
|
msgid "already taken"
|
5537
|
-
msgstr ""
|
5971
|
+
msgstr "ಇದು ಈಗಾಗಲೆ ಸಿದ್ಧಮಾದರಿಯಲ್ಲಿದೆ"
|
5538
5972
|
|
5539
5973
|
msgid "an ansible collection"
|
5540
5974
|
msgstr ""
|
5541
5975
|
|
5976
|
+
#, fuzzy
|
5542
5977
|
msgid "an erratum"
|
5543
|
-
msgstr ""
|
5978
|
+
msgstr "ಎರಾಟಮ್ ಅನ್ನು ಅನುಸ್ಥಾಪಿಲಾಗುತ್ತಿದೆ..."
|
5544
5979
|
|
5980
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author shanky
|
5981
|
+
#, fuzzy
|
5545
5982
|
msgid "an organization"
|
5546
|
-
msgstr ""
|
5983
|
+
msgstr "ಸಂಸ್ಥೆ"
|
5547
5984
|
|
5548
5985
|
msgid "an ostree branch"
|
5549
5986
|
msgstr ""
|
@@ -5563,35 +6000,43 @@ msgstr ""
|
|
5563
6000
|
msgid "can the activation key have unlimited hosts"
|
5564
6001
|
msgstr ""
|
5565
6002
|
|
6003
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5566
6004
|
msgid "can't be blank"
|
5567
|
-
msgstr ""
|
6005
|
+
msgstr "ಖಾಲಿ ಇರುವಂತಿಲ್ಲ"
|
5568
6006
|
|
5569
6007
|
msgid "cannot add filter to import-only view"
|
5570
6008
|
msgstr ""
|
5571
6009
|
|
6010
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5572
6011
|
msgid "cannot be a binary file."
|
5573
|
-
msgstr ""
|
6012
|
+
msgstr "ಬೈನರಿ ಕಡತವಾಗಿರುವಂತಿಲ್ಲ."
|
5574
6013
|
|
6014
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
5575
6015
|
msgid "cannot be blank"
|
5576
|
-
msgstr ""
|
6016
|
+
msgstr "ಖಾಲಿ ಇರುವಂತಿಲ್ಲ"
|
5577
6017
|
|
5578
6018
|
msgid "cannot be blank when Repository URL is provided."
|
5579
6019
|
msgstr ""
|
5580
6020
|
|
6021
|
+
# translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
|
6022
|
+
#, fuzzy
|
5581
6023
|
msgid "cannot be changed."
|
5582
|
-
msgstr ""
|
6024
|
+
msgstr "ಖಾಲಿ ಇರುವಂತಿಲ್ಲ"
|
5583
6025
|
|
6026
|
+
#, fuzzy
|
5584
6027
|
msgid "cannot be deleted if it has been promoted."
|
5585
|
-
msgstr ""
|
6028
|
+
msgstr "ರೆಪೊಸಿಟರಿಯನ್ನು ಈಗಾಗಲೆ ಮೇಲ್ದರ್ಜೆಗೆ ಏರಿಸಲಾಗಿದ್ದರಿಂದ ಅದನ್ನು ಅಶಕ್ತಗೊಳಿಸಲು ಸಾಧ್ಯವಿರುವುದಿಲ್ಲ."
|
5586
6029
|
|
5587
6030
|
msgid "cannot be less than one"
|
5588
6031
|
msgstr ""
|
5589
6032
|
|
6033
|
+
#, fuzzy
|
5590
6034
|
msgid "cannot be lower than current usage count (%s)"
|
5591
|
-
msgstr ""
|
6035
|
+
msgstr "ಪ್ರಸಕ್ತ ಬಳಕೆ (%s) ಅಥವ ಅನಿಯಮಿತಕ್ಕಿಂತ ಹೆಚ್ಚಾಗಿರಬೇಕು"
|
5592
6036
|
|
6037
|
+
#, fuzzy
|
5593
6038
|
msgid "cannot be nil"
|
5594
|
-
msgstr ""
|
6039
|
+
msgstr "ಖಾಲಿ ಇರುವಂತಿಲ್ಲ"
|
5595
6040
|
|
5596
6041
|
msgid "cannot be set because unlimited hosts is set"
|
5597
6042
|
msgstr ""
|
@@ -5602,20 +6047,23 @@ msgstr ""
|
|
5602
6047
|
msgid "cannot be set for non-yum repositories."
|
5603
6048
|
msgstr ""
|
5604
6049
|
|
6050
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5605
6051
|
msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
|
5606
|
-
msgstr ""
|
6052
|
+
msgstr "ascii ಅಕ್ಷರ ಅಂಕೆ, '_', '-' ಅನ್ನು ಹೊರತುಪಡಿಸಿ ಬೇರೆ ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿರುವಂತಿಲ್ಲ. "
|
5607
6053
|
|
5608
6054
|
msgid "cannot contain commas"
|
5609
6055
|
msgstr ""
|
5610
6056
|
|
6057
|
+
#, fuzzy
|
5611
6058
|
msgid "cannot contain filters if composite view"
|
5612
|
-
msgstr ""
|
6059
|
+
msgstr "ASCII ಮೌಲ್ಯಗಳನ್ನು ಹೊರತುಪಡಿಸಿ ಯಾವುದೆ ಅಕ್ಷರಗಳು ಇರುವಂತಿಲ್ಲ"
|
5613
6060
|
|
5614
6061
|
msgid "cannot contain filters whose repositories do not belong to this content view"
|
5615
6062
|
msgstr ""
|
5616
6063
|
|
6064
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5617
6065
|
msgid "cannot contain more than %s characters"
|
5618
|
-
msgstr ""
|
6066
|
+
msgstr "%s ಗಿಂತ ಹೆಚ್ಚು ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿರುವಂತಿಲ್ಲ."
|
5619
6067
|
|
5620
6068
|
msgid "checking Candlepin task status"
|
5621
6069
|
msgstr ""
|
@@ -5662,11 +6110,13 @@ msgstr ""
|
|
5662
6110
|
msgid "content view numeric identifier"
|
5663
6111
|
msgstr ""
|
5664
6112
|
|
6113
|
+
#, fuzzy
|
5665
6114
|
msgid "content view publish"
|
5666
|
-
msgstr ""
|
6115
|
+
msgstr "ಕಂಟೆಂಟ್"
|
5667
6116
|
|
6117
|
+
#, fuzzy
|
5668
6118
|
msgid "content view refresh"
|
5669
|
-
msgstr ""
|
6119
|
+
msgstr "ಕಂಟೆಂಟ್"
|
5670
6120
|
|
5671
6121
|
msgid "content view to reassign orphaned activation keys to"
|
5672
6122
|
msgstr ""
|
@@ -5737,8 +6187,9 @@ msgstr ""
|
|
5737
6187
|
msgid "environment to reassign orphaned systems to"
|
5738
6188
|
msgstr ""
|
5739
6189
|
|
6190
|
+
#, fuzzy
|
5740
6191
|
msgid "environments"
|
5741
|
-
msgstr ""
|
6192
|
+
msgstr "ಪರಿಸರಗಳು"
|
5742
6193
|
|
5743
6194
|
msgid "errata_id of the content view filter rule"
|
5744
6195
|
msgstr ""
|
@@ -5782,6 +6233,9 @@ msgstr ""
|
|
5782
6233
|
msgid "filter identifier"
|
5783
6234
|
msgstr ""
|
5784
6235
|
|
6236
|
+
msgid "filter identifiers"
|
6237
|
+
msgstr ""
|
6238
|
+
|
5785
6239
|
msgid "filter only environments containing this name"
|
5786
6240
|
msgstr ""
|
5787
6241
|
|
@@ -5794,8 +6248,9 @@ msgstr ""
|
|
5794
6248
|
msgid "foreman-tasks service not running or is not ready yet"
|
5795
6249
|
msgstr ""
|
5796
6250
|
|
6251
|
+
#, fuzzy
|
5797
6252
|
msgid "has already been taken"
|
5798
|
-
msgstr ""
|
6253
|
+
msgstr "ಮಾನ್ಯಗೊಳಿಕೆಯು ವಿಫಲಗೊಂಡಿದೆ: ಲೇಬಲ್ ಅನ್ನು ಈಗಾಗಲೆ ತೆಗೆದುಕೊಳ್ಳಲಾಗಿದೆ"
|
5799
6254
|
|
5800
6255
|
msgid "has already been taken for a product in this organization."
|
5801
6256
|
msgstr ""
|
@@ -5842,23 +6297,29 @@ msgstr ""
|
|
5842
6297
|
msgid "initiating Pulp task"
|
5843
6298
|
msgstr ""
|
5844
6299
|
|
6300
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5845
6301
|
msgid "installing errata..."
|
5846
|
-
msgstr ""
|
6302
|
+
msgstr "ಎರಾಟವನ್ನು ಅನುಸ್ಥಾಪಿಲಾಗುತ್ತಿದೆ..."
|
5847
6303
|
|
6304
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5848
6305
|
msgid "installing erratum..."
|
5849
|
-
msgstr ""
|
6306
|
+
msgstr "ಎರಾಟಮ್ ಅನ್ನು ಅನುಸ್ಥಾಪಿಲಾಗುತ್ತಿದೆ..."
|
5850
6307
|
|
6308
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5851
6309
|
msgid "installing package group..."
|
5852
|
-
msgstr ""
|
6310
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪನ್ನು ಅನುಸ್ಥಾಪಿಸುವಿಕೆ..."
|
5853
6311
|
|
6312
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5854
6313
|
msgid "installing package groups..."
|
5855
|
-
msgstr ""
|
6314
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪುಗಳನ್ನು ಅನುಸ್ಥಾಪಿಲಾಗುತ್ತಿದೆ..."
|
5856
6315
|
|
6316
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5857
6317
|
msgid "installing package..."
|
5858
|
-
msgstr ""
|
6318
|
+
msgstr "ಪ್ಯಾಕೇಜನ್ನು ಅನುಸ್ಥಾಪಿಲಾಗುತ್ತಿದೆ..."
|
5859
6319
|
|
6320
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5860
6321
|
msgid "installing packages..."
|
5861
|
-
msgstr ""
|
6322
|
+
msgstr "ಪ್ಯಾಕೇಜುಗಳನ್ನು ಅನುಸ್ಥಾಪಿಲಾಗುತ್ತಿದೆ..."
|
5862
6323
|
|
5863
6324
|
msgid "interpret specified object to return only Repositories that can be associated with specified object. Only 'content_view' & 'content_view_version' are supported."
|
5864
6325
|
msgstr ""
|
@@ -5872,9 +6333,13 @@ msgstr ""
|
|
5872
6333
|
msgid "is already attached to the capsule"
|
5873
6334
|
msgstr ""
|
5874
6335
|
|
6336
|
+
# translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
|
5875
6337
|
msgid "is invalid"
|
5876
6338
|
msgstr "ಇದು ಅಸಿಂಧುವಾಗಿದೆ"
|
5877
6339
|
|
6340
|
+
msgid "is not enabled. must be one of the following: %s"
|
6341
|
+
msgstr ""
|
6342
|
+
|
5878
6343
|
msgid "label of the environment"
|
5879
6344
|
msgstr ""
|
5880
6345
|
|
@@ -5908,9 +6373,6 @@ msgstr ""
|
|
5908
6373
|
msgid "maximum number of registered content hosts"
|
5909
6374
|
msgstr ""
|
5910
6375
|
|
5911
|
-
msgid "maximum size of each ISO in MB"
|
5912
|
-
msgstr ""
|
5913
|
-
|
5914
6376
|
msgid "may not be less than the number of hosts associated with the host collection."
|
5915
6377
|
msgstr ""
|
5916
6378
|
|
@@ -5923,8 +6385,9 @@ msgstr ""
|
|
5923
6385
|
msgid "must be %{gpg_key} or %{cert}"
|
5924
6386
|
msgstr ""
|
5925
6387
|
|
6388
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5926
6389
|
msgid "must be a positive integer value."
|
5927
|
-
msgstr ""
|
6390
|
+
msgstr "ಒಂದು ಧನ ಪೂರ್ಣಾಂಕವಾಗಿರಬೇಕು."
|
5928
6391
|
|
5929
6392
|
msgid "must be one of the following: %s"
|
5930
6393
|
msgstr ""
|
@@ -5932,17 +6395,21 @@ msgstr ""
|
|
5932
6395
|
msgid "must be one of: %s"
|
5933
6396
|
msgstr ""
|
5934
6397
|
|
6398
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5935
6399
|
msgid "must be unique within one organization"
|
5936
|
-
msgstr ""
|
6400
|
+
msgstr "ಒಂದು ಸಂಸ್ಥೆಯ ಒಳಗೆ ವಿಶಿಷ್ಟ ರೀತಿಯದ್ದಾಗಿರಬೇಕು"
|
5937
6401
|
|
6402
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
5938
6403
|
msgid "must contain '%s'"
|
5939
|
-
msgstr ""
|
6404
|
+
msgstr "'%s' ಅನ್ನು ಹೊಂದಿರಲೇಬೇಕು."
|
5940
6405
|
|
6406
|
+
#, fuzzy
|
5941
6407
|
msgid "must contain GPG Key"
|
5942
|
-
msgstr ""
|
6408
|
+
msgstr "'%s' ಅನ್ನು ಹೊಂದಿರಲೇಬೇಕು."
|
5943
6409
|
|
6410
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
5944
6411
|
msgid "must contain at least %s character"
|
5945
|
-
msgstr ""
|
6412
|
+
msgstr "ಕನಿಷ್ಟ %s ಅಕ್ಷರವನ್ನು ಹೊಂದಿರಬೇಕು"
|
5946
6413
|
|
5947
6414
|
msgid "must contain valid Public GPG Key"
|
5948
6415
|
msgstr ""
|
@@ -5950,8 +6417,9 @@ msgstr ""
|
|
5950
6417
|
msgid "must contain valid Public GPG Key"
|
5951
6418
|
msgstr ""
|
5952
6419
|
|
6420
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5953
6421
|
msgid "must not contain leading or trailing white spaces."
|
5954
|
-
msgstr ""
|
6422
|
+
msgstr "ಮುಂದೆ ಅಥವ ಹಿಂದೆ ಖಾಲಿ ಸ್ಥಳಗಳನ್ನು ಹೊಂದಿರಬಾರದು"
|
5955
6423
|
|
5956
6424
|
msgid "name"
|
5957
6425
|
msgstr ""
|
@@ -5981,7 +6449,7 @@ msgid "name of the subscription"
|
|
5981
6449
|
msgstr ""
|
5982
6450
|
|
5983
6451
|
msgid "name: %s doesn't exist "
|
5984
|
-
msgstr ""
|
6452
|
+
msgstr "ಹೆಸರು: %s ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ"
|
5985
6453
|
|
5986
6454
|
msgid "new name for the filter"
|
5987
6455
|
msgstr ""
|
@@ -5998,8 +6466,9 @@ msgstr ""
|
|
5998
6466
|
msgid "obtain manifest history for subscriptions"
|
5999
6467
|
msgstr ""
|
6000
6468
|
|
6469
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app, author shanky
|
6001
6470
|
msgid "of environment must be unique within one organization"
|
6002
|
-
msgstr ""
|
6471
|
+
msgstr "ಪರಿಸರದ ಸಂಸ್ಥೆಯ ಒಳಗೆ ವಿಶಿಷ್ಟ ರೀತಿಯದ್ದಾಗಿರಬೇಕು"
|
6003
6472
|
|
6004
6473
|
msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
|
6005
6474
|
msgstr ""
|
@@ -6073,17 +6542,21 @@ msgstr ""
|
|
6073
6542
|
msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
|
6074
6543
|
msgstr ""
|
6075
6544
|
|
6545
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6076
6546
|
msgid "removing package group..."
|
6077
|
-
msgstr ""
|
6547
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪನ್ನು ತೆಗೆದುಹಾಕಲಾಗುತ್ತಿದೆ..."
|
6078
6548
|
|
6549
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6079
6550
|
msgid "removing package groups..."
|
6080
|
-
msgstr ""
|
6551
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪುಗಳನ್ನು ತೆಗೆದುಹಾಕಲಾಗುತ್ತಿದೆ..."
|
6081
6552
|
|
6553
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6082
6554
|
msgid "removing package..."
|
6083
|
-
msgstr ""
|
6555
|
+
msgstr "ಪ್ಯಾಕೇಜನ್ನು ತೆಗೆದುಹಾಕಲಾಗುತ್ತಿದೆ..."
|
6084
6556
|
|
6557
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6085
6558
|
msgid "removing packages..."
|
6086
|
-
msgstr ""
|
6559
|
+
msgstr "ಪ್ಯಾಕೇಜುಗಳನ್ನು ತೆಗೆದುಹಾಕಲಾಗುತ್ತಿದೆ..."
|
6087
6560
|
|
6088
6561
|
msgid "repo label"
|
6089
6562
|
msgstr ""
|
@@ -6163,8 +6636,9 @@ msgstr ""
|
|
6163
6636
|
msgid "temporarily override feed URL for sync"
|
6164
6637
|
msgstr ""
|
6165
6638
|
|
6639
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6166
6640
|
msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
|
6167
|
-
msgstr ""
|
6641
|
+
msgstr "Red Hat ಒದಗಿಸುವವರಿಗೆ ಈ ಕೆಳಗಿನ ಗುಣವಿಶೇಷಗಳನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲು ಸಾಧ್ಯವಾಗಿಲ್ಲ: [ %s ]"
|
6168
6642
|
|
6169
6643
|
msgid "true if the latest version of the component's content view is desired"
|
6170
6644
|
msgstr ""
|
@@ -6193,17 +6667,21 @@ msgstr ""
|
|
6193
6667
|
msgid "update a filter"
|
6194
6668
|
msgstr ""
|
6195
6669
|
|
6670
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6196
6671
|
msgid "updating package group..."
|
6197
|
-
msgstr ""
|
6672
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
6198
6673
|
|
6674
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6199
6675
|
msgid "updating package groups..."
|
6200
|
-
msgstr ""
|
6676
|
+
msgstr "ಪ್ಯಾಕೇಜು ಗುಂಪುಗಳನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
6201
6677
|
|
6678
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6202
6679
|
msgid "updating package..."
|
6203
|
-
msgstr ""
|
6680
|
+
msgstr "ಪ್ಯಾಕೇಜನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
6204
6681
|
|
6682
|
+
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6205
6683
|
msgid "updating packages..."
|
6206
|
-
msgstr ""
|
6684
|
+
msgstr "ಪ್ಯಾಕೇಜುಗಳನ್ನು ಅಪ್ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ..."
|
6207
6685
|
|
6208
6686
|
msgid "url not defined."
|
6209
6687
|
msgstr ""
|