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