katello 4.3.0 → 4.4.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.

Files changed (337) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/katello/common/vendor.js +0 -1
  3. data/app/controllers/katello/api/v2/api_controller.rb +13 -4
  4. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +3 -0
  5. data/app/controllers/katello/api/v2/content_views_controller.rb +46 -0
  6. data/app/controllers/katello/api/v2/host_packages_controller.rb +21 -1
  7. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +30 -1
  8. data/app/controllers/katello/api/v2/organizations_controller.rb +10 -6
  9. data/app/controllers/katello/api/v2/packages_controller.rb +4 -0
  10. data/app/controllers/katello/api/v2/repositories_controller.rb +17 -7
  11. data/app/controllers/katello/api/v2/repository_sets_controller.rb +7 -0
  12. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +3 -0
  13. data/app/controllers/katello/concerns/hosts_controller_extensions.rb +32 -0
  14. data/app/controllers/katello/remote_execution_controller.rb +5 -4
  15. data/app/helpers/katello/content_source_helper.rb +43 -0
  16. data/app/helpers/katello/hosts_and_hostgroups_helper.rb +4 -0
  17. data/app/lib/actions/katello/cdn_configuration/update.rb +5 -7
  18. data/app/lib/actions/katello/content_view/publish.rb +5 -0
  19. data/app/lib/actions/katello/content_view_version/incremental_update.rb +17 -3
  20. data/app/lib/actions/katello/repository/discover.rb +1 -14
  21. data/app/lib/actions/katello/repository/filtered_index_content.rb +1 -1
  22. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -0
  23. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +7 -5
  24. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  25. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -0
  26. data/app/lib/katello/concerns/base_template_scope_extensions.rb +11 -0
  27. data/app/lib/katello/errors.rb +3 -3
  28. data/app/lib/katello/logging.rb +6 -1
  29. data/app/lib/katello/repo_discovery.rb +27 -19
  30. data/app/lib/katello/resources/cdn/katello_cdn.rb +41 -3
  31. data/app/lib/katello/resources/cdn.rb +4 -2
  32. data/app/lib/katello/util/deduplication_migrator.rb +105 -0
  33. data/app/models/katello/candlepin/repository_mapper.rb +1 -1
  34. data/app/models/katello/cdn_configuration.rb +38 -6
  35. data/app/models/katello/concerns/host_managed_extensions.rb +23 -1
  36. data/app/models/katello/concerns/organization_extensions.rb +5 -1
  37. data/app/models/katello/concerns/pulp_database_unit.rb +59 -173
  38. data/app/models/katello/concerns/remote_execution_proxy_selector_extensions.rb +11 -0
  39. data/app/models/katello/concerns/smart_proxy_extensions.rb +1 -1
  40. data/app/models/katello/content_view.rb +4 -4
  41. data/app/models/katello/content_view_filter.rb +1 -1
  42. data/app/models/katello/content_view_history.rb +1 -1
  43. data/app/models/katello/content_view_version.rb +6 -2
  44. data/app/models/katello/content_view_version_export_history.rb +1 -1
  45. data/app/models/katello/deb.rb +1 -3
  46. data/app/models/katello/docker_meta_tag.rb +1 -1
  47. data/app/models/katello/erratum.rb +0 -15
  48. data/app/models/katello/glue/pulp/repos.rb +1 -1
  49. data/app/models/katello/host/content_facet.rb +2 -27
  50. data/app/models/katello/host/info_provider.rb +9 -0
  51. data/app/models/katello/host/subscription_facet.rb +2 -2
  52. data/app/models/katello/hostgroup/content_facet.rb +2 -2
  53. data/app/models/katello/product.rb +1 -1
  54. data/app/models/katello/product_content.rb +2 -2
  55. data/app/models/katello/repository.rb +10 -9
  56. data/app/models/katello/root_repository.rb +24 -13
  57. data/app/models/katello/rpm.rb +8 -2
  58. data/app/models/setting/content.rb +6 -3
  59. data/app/services/cert/rhsm_client.rb +1 -5
  60. data/app/services/katello/content_unit_indexer.rb +166 -0
  61. data/app/services/katello/organization_creator.rb +12 -4
  62. data/app/services/katello/pulp/repository/docker.rb +1 -1
  63. data/app/services/katello/pulp/repository/yum.rb +0 -54
  64. data/app/services/katello/pulp/repository.rb +0 -6
  65. data/app/services/katello/pulp3/ansible_collection.rb +26 -10
  66. data/app/services/katello/pulp3/api/apt.rb +7 -0
  67. data/app/services/katello/pulp3/content_view_version/import.rb +11 -2
  68. data/app/services/katello/pulp3/deb.rb +10 -9
  69. data/app/services/katello/pulp3/docker_manifest.rb +6 -5
  70. data/app/services/katello/pulp3/docker_manifest_list.rb +23 -6
  71. data/app/services/katello/pulp3/docker_tag.rb +16 -7
  72. data/app/services/katello/pulp3/erratum.rb +51 -56
  73. data/app/services/katello/pulp3/file_unit.rb +9 -6
  74. data/app/services/katello/pulp3/generic_content_unit.rb +11 -12
  75. data/app/services/katello/pulp3/module_stream.rb +76 -30
  76. data/app/services/katello/pulp3/package_group.rb +5 -5
  77. data/app/services/katello/pulp3/pulp_content_unit.rb +19 -11
  78. data/app/services/katello/pulp3/repository/apt.rb +5 -3
  79. data/app/services/katello/pulp3/repository/docker.rb +14 -7
  80. data/app/services/katello/pulp3/repository/generic.rb +1 -1
  81. data/app/services/katello/pulp3/repository/yum.rb +10 -12
  82. data/app/services/katello/pulp3/repository.rb +26 -7
  83. data/app/services/katello/pulp3/repository_mirror.rb +18 -5
  84. data/app/services/katello/pulp3/rpm.rb +13 -13
  85. data/app/services/katello/pulp3/srpm.rb +10 -9
  86. data/app/services/katello/repository_type.rb +15 -4
  87. data/app/services/katello/repository_type_manager.rb +1 -1
  88. data/app/services/katello/ui_notifications/subscriptions/manifest_expired_warning.rb +1 -1
  89. data/app/services/katello/upstream_connection_checker.rb +2 -2
  90. data/app/views/foreman/job_templates/change_content_source.erb +1 -31
  91. data/app/views/foreman/job_templates/install_errata.erb +6 -9
  92. data/app/views/foreman/job_templates/install_errata_by_search_query.erb +26 -0
  93. data/app/views/foreman/job_templates/install_packages_by_search_query.erb +19 -0
  94. data/app/views/katello/api/v2/cdn_configurations/show.json.rabl +1 -1
  95. data/app/views/katello/api/v2/environments/show.json.rabl +9 -0
  96. data/app/views/katello/api/v2/repositories/show.json.rabl +2 -0
  97. data/app/views/katello/layouts/react.html.erb +0 -1
  98. data/app/views/katello/sync_management/_repo.html.erb +36 -25
  99. data/config/initializers/monkeys.rb +0 -1
  100. data/config/routes/api/v2.rb +1 -0
  101. data/config/routes/overrides.rb +3 -0
  102. data/config/routes.rb +2 -0
  103. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  104. data/db/migrate/20180612164926_add_content_org_id.rb +2 -2
  105. data/db/migrate/20211201154845_add_unique_indexes.rb +20 -0
  106. data/db/migrate/20211208034230_add_content_view_and_lifecycle_environment.rb +6 -0
  107. data/db/migrate/20211220185935_clean_duplicate_content_units.rb +144 -0
  108. data/db/migrate/20220110223754_update_disconnected_settings.rb +20 -0
  109. data/db/migrate/20220120163252_fix_docker_download_policy.rb +11 -0
  110. data/db/migrate/20220124191056_add_type_to_cdn_configuration.rb +22 -0
  111. data/db/migrate/20220127120843_fix_debian_download_policy.rb +11 -0
  112. data/db/migrate/20220204171908_rename_docker_tags_whitelist_and_add_exclude_tags.rb +8 -0
  113. data/db/migrate/20220207140355_change_deb_attributes_size_limit.rb +7 -0
  114. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  115. data/engines/bastion/app/views/bastion/layouts/application.html.erb +0 -1
  116. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +0 -1
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/content-credentials.controller.js +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-products.controller.js +1 -1
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-credentials/details/content-credential-repositories.controller.js +1 -1
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-traces-modal.html +1 -1
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/environments/details/views/environment.html +26 -1
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +212 -152
  123. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/packages/packages.controller.js +1 -0
  124. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +20 -8
  125. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-manage-content.controller.js +2 -3
  126. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +8 -3
  127. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +34 -30
  128. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +16 -2
  129. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +35 -15
  130. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/discovery/discovery.controller.js +5 -4
  131. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/products.routes.js +4 -3
  132. data/lib/katello/engine.rb +4 -0
  133. data/lib/katello/permission_creator.rb +1 -1
  134. data/lib/katello/permissions/host_permissions.rb +3 -1
  135. data/lib/katello/plugin.rb +4 -1
  136. data/lib/katello/repository_types/deb.rb +0 -1
  137. data/lib/katello/repository_types/docker.rb +4 -4
  138. data/lib/katello/repository_types/file.rb +0 -1
  139. data/lib/katello/repository_types/ostree.rb +4 -0
  140. data/lib/katello/repository_types/python.rb +5 -1
  141. data/lib/katello/repository_types/yum.rb +2 -9
  142. data/lib/katello/tasks/content_view_import_only.rake +34 -0
  143. data/lib/katello/tasks/import_applicability.rake +1 -1
  144. data/lib/katello/tasks/jenkins.rake +0 -2
  145. data/lib/katello/tasks/repository.rake +4 -1
  146. data/lib/katello/tasks/upgrades/4.4/publish_import_cvvs.rake +17 -0
  147. data/lib/katello/version.rb +1 -1
  148. data/locale/action_names.rb +8 -7
  149. data/locale/bn/katello.po +1402 -650
  150. data/locale/cs/katello.po +1217 -96
  151. data/locale/de/katello.po +2359 -1347
  152. data/locale/en/katello.po +1216 -94
  153. data/locale/es/katello.po +2201 -1172
  154. data/locale/fr/katello.po +2601 -1615
  155. data/locale/gu/katello.po +1564 -814
  156. data/locale/hi/katello.po +1563 -810
  157. data/locale/it/katello.po +1311 -282
  158. data/locale/ja/katello.po +2534 -1518
  159. data/locale/katello.pot +3430 -1326
  160. data/locale/kn/katello.po +1564 -812
  161. data/locale/ko/katello.po +1441 -409
  162. data/locale/mr/katello.po +1564 -776
  163. data/locale/or/katello.po +1565 -813
  164. data/locale/pa/katello.po +1559 -792
  165. data/locale/pt/katello.po +1314 -277
  166. data/locale/pt_BR/katello.po +2226 -1181
  167. data/locale/ru/katello.po +1587 -563
  168. data/locale/ta/katello.po +1373 -619
  169. data/locale/te/katello.po +1564 -810
  170. data/locale/zh_CN/katello.po +2936 -1890
  171. data/locale/zh_TW/katello.po +1508 -606
  172. data/webpack/__mocks__/foremanReact/{redux/actions/toasts.js → components/ToastsList/index.js} +3 -2
  173. data/webpack/components/ActionableDetail.js +35 -21
  174. data/webpack/components/Content/Details/__tests__/ContentDetailInfo.test.js +0 -2
  175. data/webpack/components/Content/Details/__tests__/ContentDetailRepositories.test.js +0 -2
  176. data/webpack/components/Content/Details/__tests__/ContentDetails.test.js +0 -2
  177. data/webpack/components/Content/__tests__/ContentPage.test.js +0 -2
  178. data/webpack/components/Content/__tests__/ContentTable.test.js +0 -2
  179. data/webpack/components/EditableSwitch.js +8 -2
  180. data/webpack/components/EditableTextInput/EditableTextInput.js +44 -86
  181. data/webpack/components/EditableTextInput/__tests__/editableTextInput.test.js +3 -3
  182. data/webpack/components/Errata/index.js +19 -11
  183. data/webpack/components/Packages/index.js +1 -1
  184. data/webpack/components/Search/Search.js +5 -2
  185. data/webpack/components/Search/__tests__/search.test.js +2 -3
  186. data/webpack/components/SelectOrg/SetOrganization.js +1 -1
  187. data/webpack/components/Table/PageControls.js +3 -6
  188. data/webpack/components/Table/TableHooks.js +46 -7
  189. data/webpack/components/Table/TableWrapper.js +14 -3
  190. data/webpack/components/TypeAhead/TypeAhead.js +5 -1
  191. data/webpack/components/TypeAhead/pf4Search/TypeAheadInput.js +4 -1
  192. data/webpack/components/TypeAhead/pf4Search/TypeAheadSearch.js +2 -1
  193. data/webpack/components/extensions/HostDetails/Cards/ContentViewDetailsCard.js +1 -1
  194. data/webpack/components/extensions/HostDetails/Cards/ErrataOverviewCard.js +3 -4
  195. data/webpack/components/extensions/HostDetails/HostDetailsActions.js +2 -0
  196. data/webpack/components/extensions/HostDetails/HostPackages/HostPackagesActions.js +18 -2
  197. data/webpack/components/extensions/HostDetails/HostPackages/HostPackagesConstants.js +12 -0
  198. data/webpack/components/extensions/HostDetails/Tabs/ContentTab/SecondaryTabsRoutes.js +1 -1
  199. data/webpack/components/extensions/HostDetails/Tabs/{ErrataTab.js → ErrataTab/ErrataTab.js} +30 -21
  200. data/webpack/components/extensions/HostDetails/Tabs/{ErrataTab.scss → ErrataTab/ErrataTab.scss} +0 -0
  201. data/webpack/components/extensions/HostDetails/Tabs/{ErratumExpansionContents.js → ErrataTab/ErratumExpansionContents.js} +0 -0
  202. data/webpack/components/extensions/HostDetails/Tabs/{ErratumExpansionDetail.js → ErrataTab/ErratumExpansionDetail.js} +0 -0
  203. data/webpack/components/extensions/HostDetails/{HostErrata → Tabs/ErrataTab}/HostErrataActions.js +3 -3
  204. data/webpack/components/extensions/HostDetails/{HostErrata → Tabs/ErrataTab}/HostErrataConstants.js +11 -0
  205. data/webpack/components/extensions/HostDetails/{HostErrata → Tabs/ErrataTab}/HostErrataSelectors.js +0 -0
  206. data/webpack/components/extensions/HostDetails/Tabs/PackageInstallModal.js +279 -0
  207. data/webpack/components/extensions/HostDetails/Tabs/PackageInstallModal.scss +3 -0
  208. data/webpack/components/extensions/HostDetails/Tabs/PackagesTab.js +125 -8
  209. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionActions.js +27 -4
  210. data/webpack/components/extensions/HostDetails/Tabs/RemoteExecutionConstants.js +2 -1
  211. data/webpack/components/extensions/HostDetails/Tabs/RepositorySetsTab/RepositorySetsTab.js +6 -3
  212. data/webpack/components/extensions/HostDetails/Tabs/{EnableTracerEmptyState.js → TracesTab/EnableTracerEmptyState.js} +0 -0
  213. data/webpack/components/extensions/HostDetails/Tabs/{EnableTracerModal.js → TracesTab/EnableTracerModal.js} +3 -2
  214. data/webpack/components/extensions/HostDetails/Tabs/{HostTracesActions.js → TracesTab/HostTracesActions.js} +2 -2
  215. data/webpack/components/extensions/HostDetails/Tabs/{HostTracesConstants.js → TracesTab/HostTracesConstants.js} +0 -0
  216. data/webpack/components/extensions/HostDetails/Tabs/{HostTracesSelectors.js → TracesTab/HostTracesSelectors.js} +0 -0
  217. data/webpack/components/extensions/HostDetails/Tabs/{TracesTab.js → TracesTab/TracesTab.js} +8 -5
  218. data/webpack/components/extensions/HostDetails/Tabs/{TracesTab.scss → TracesTab/TracesTab.scss} +0 -0
  219. data/webpack/components/extensions/HostDetails/Tabs/__tests__/errataTab.test.js +17 -18
  220. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packageInstallModal.test.js +385 -0
  221. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packages.fixtures.json +1 -1
  222. data/webpack/components/extensions/HostDetails/Tabs/__tests__/packagesTab.test.js +58 -7
  223. data/webpack/components/extensions/HostDetails/Tabs/__tests__/repositorySetsTab.test.js +2 -2
  224. data/webpack/components/extensions/HostDetails/Tabs/__tests__/tracesTab.test.js +4 -4
  225. data/webpack/components/extensions/HostDetails/Tabs/__tests__/yumInstallablePackages.fixtures.json +72 -0
  226. data/webpack/components/extensions/HostDetails/Tabs/customizedRexUrlHelpers.js +12 -5
  227. data/webpack/components/extensions/HostDetails/YumInstallablePackages/YumInstallablePackagesActions.js +18 -0
  228. data/webpack/components/extensions/HostDetails/YumInstallablePackages/YumInstallablePackagesConstants.js +3 -0
  229. data/webpack/components/extensions/HostDetails/YumInstallablePackages/YumInstallablePackagesSelectors.js +16 -0
  230. data/webpack/components/extensions/HostDetails/hostDetailsHelpers.js +19 -0
  231. data/webpack/components/pf3Table/components/Table.js +2 -3
  232. data/webpack/components/pf3Table/components/Table.test.js +0 -3
  233. data/webpack/components/pf3Table/components/__snapshots__/Table.test.js.snap +9 -8
  234. data/webpack/containers/Application/config.js +5 -0
  235. data/webpack/global_index.js +1 -1
  236. data/webpack/global_test_setup.js +1 -1
  237. data/webpack/index.js +7 -0
  238. data/webpack/scenes/AnsibleCollections/Details/__tests__/AnsibleCollectionDetails.test.js +0 -2
  239. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionPage.test.js +0 -2
  240. data/webpack/scenes/AnsibleCollections/__tests__/AnsibleCollectionsTable.test.js +0 -2
  241. data/webpack/scenes/Content/ContentConfig.js +55 -5
  242. data/webpack/scenes/Content/ContentPage.js +1 -1
  243. data/webpack/scenes/Content/Details/ContentDetails.js +1 -1
  244. data/webpack/scenes/Content/Details/ContentInfo.js +1 -1
  245. data/webpack/scenes/Content/Details/ContentRepositories.js +1 -1
  246. data/webpack/scenes/Content/Details/__tests__/contentDetail.test.js +4 -4
  247. data/webpack/scenes/Content/Table/ContentTable.js +1 -1
  248. data/webpack/scenes/Content/__tests__/contentTable.test.js +3 -3
  249. data/webpack/scenes/ContentViews/ContentViewsConstants.js +2 -1
  250. data/webpack/scenes/ContentViews/Delete/__tests__/contentViewDelete.test.js +6 -6
  251. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +2 -2
  252. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +21 -27
  253. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +5 -5
  254. data/webpack/scenes/ContentViews/Details/ContentViewInfo.js +8 -3
  255. data/webpack/scenes/ContentViews/Details/DetailsContainer.js +11 -16
  256. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +2 -2
  257. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetailsHeader.js +14 -8
  258. data/webpack/scenes/ContentViews/Details/Filters/MatchContentModal/__tests__/CVRpmMatchContentModal.test.js +2 -2
  259. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVContainerImageFilterContent.test.js +2 -3
  260. data/webpack/scenes/ContentViews/Details/Filters/__tests__/CVRpmFilterContent.test.js +2 -9
  261. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilterDetails.test.js +3 -5
  262. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +2 -10
  263. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvErrataIDFilter.test.js +2 -3
  264. data/webpack/scenes/ContentViews/Details/Filters/__tests__/cvModuleStreamFilter.test.js +2 -3
  265. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +2 -2
  266. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +1 -1
  267. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +23 -2
  268. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +11 -5
  269. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersionContent.js +16 -17
  270. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +1 -1
  271. data/webpack/scenes/ContentViews/Details/Versions/Delete/__tests__/cvVersionRemove.test.js +6 -6
  272. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailConfig.js +30 -34
  273. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetails.js +9 -8
  274. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionDetailsHeader.js +13 -15
  275. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/ContentViewVersionRepositoryCell.js +1 -1
  276. data/webpack/scenes/ContentViews/Details/Versions/VersionDetails/__tests__/ContentViewVersionDetails.test.js +4 -4
  277. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +3 -3
  278. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +5 -3
  279. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  280. data/webpack/scenes/Hosts/ChangeContentSource/actions.js +43 -0
  281. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceForm.js +87 -0
  282. data/webpack/scenes/Hosts/ChangeContentSource/components/ContentSourceTemplate.js +90 -0
  283. data/webpack/scenes/Hosts/ChangeContentSource/components/FormField.js +43 -0
  284. data/webpack/scenes/Hosts/ChangeContentSource/constants.js +3 -0
  285. data/webpack/scenes/Hosts/ChangeContentSource/helpers.js +27 -0
  286. data/webpack/scenes/Hosts/ChangeContentSource/index.js +126 -0
  287. data/webpack/scenes/Hosts/ChangeContentSource/selectors.js +42 -0
  288. data/webpack/scenes/Hosts/ChangeContentSource/styles.scss +11 -0
  289. data/webpack/scenes/ModuleStreams/Details/Profiles/__tests__/ModuleStreamDetailProfiles.test.js +0 -1
  290. data/webpack/scenes/ModuleStreams/Details/__tests__/ModuleStreamDetails.test.js +0 -2
  291. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamPage.test.js +0 -2
  292. data/webpack/scenes/ModuleStreams/__tests__/ModuleStreamsTable.test.js +0 -2
  293. data/webpack/scenes/Organizations/OrganizationActions.js +5 -1
  294. data/webpack/scenes/RedHatRepositories/RedHatRepositoriesPage.js +31 -1
  295. data/webpack/scenes/RedHatRepositories/__tests__/RedHatRepositoriesPage.test.js +16 -0
  296. data/webpack/scenes/RedHatRepositories/__tests__/__snapshots__/RedHatRepositoriesPage.test.js.snap +11 -2
  297. data/webpack/scenes/RedHatRepositories/helpers.js +5 -5
  298. data/webpack/scenes/RedHatRepositories/index.js +11 -3
  299. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/AirGappedTypeForm.js +81 -0
  300. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnConfigurationConstants.js +13 -0
  301. data/webpack/scenes/Subscriptions/Manifest/{CdnConfigurationForm.scss → CdnConfigurationTab/CdnConfigurationForm.scss} +0 -0
  302. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/CdnTypeForm.js +106 -0
  303. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/UpstreamServerTypeForm.js +259 -0
  304. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/AirGappedTypeForm.test.js +44 -0
  305. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/__tests__/CdnTypeForm.test.js +67 -0
  306. data/webpack/scenes/Subscriptions/Manifest/{__tests__/CdnConfigurationForm.test.js → CdnConfigurationTab/__tests__/UpstreamServerTypeForm.test.js} +46 -17
  307. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationTab/index.js +97 -0
  308. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +6 -1
  309. data/webpack/scenes/Subscriptions/UpstreamSubscriptions/__tests__/UpstreamSubscriptionsPage.test.js +0 -1
  310. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -1
  311. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsActions.test.js.snap +3 -2
  312. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/SubscriptionsTable.test.js +4 -0
  313. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +9 -0
  314. data/webpack/scenes/Tasks/TaskActions.js +1 -1
  315. data/webpack/scenes/Tasks/__tests__/__snapshots__/TaskActions.test.js.snap +3 -2
  316. data/webpack/services/api/testHelpers.js +5 -3
  317. data/webpack/utils/helpers.js +6 -3
  318. metadata +81 -58
  319. data/app/services/katello/pulp/deb.rb +0 -55
  320. data/app/services/katello/pulp/distribution.rb +0 -7
  321. data/app/services/katello/pulp/docker_blob.rb +0 -7
  322. data/app/services/katello/pulp/docker_manifest.rb +0 -13
  323. data/app/services/katello/pulp/docker_manifest_list.rb +0 -14
  324. data/app/services/katello/pulp/docker_tag.rb +0 -14
  325. data/app/services/katello/pulp/erratum.rb +0 -129
  326. data/app/services/katello/pulp/file_unit.rb +0 -21
  327. data/app/services/katello/pulp/module_stream.rb +0 -39
  328. data/app/services/katello/pulp/package_category.rb +0 -7
  329. data/app/services/katello/pulp/package_group.rb +0 -20
  330. data/app/services/katello/pulp/pulp_content_unit.rb +0 -156
  331. data/app/services/katello/pulp/rpm.rb +0 -57
  332. data/app/services/katello/pulp/srpm.rb +0 -29
  333. data/app/services/katello/pulp/yum_metadata_file.rb +0 -30
  334. data/lib/monkeys/pulp3_13_checksumfix.rb +0 -17
  335. data/webpack/__mocks__/foremanReact/components/Pagination/PaginationHooks.js +0 -2
  336. data/webpack/__mocks__/foremanReact/components/Pagination/PaginationWrapper.js +0 -2
  337. data/webpack/scenes/Subscriptions/Manifest/CdnConfigurationForm.js +0 -185
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 PACKAGE package.
3
+ # This file is distributed under the same license as the katello package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
4
5
  #
5
6
  # Translators:
6
- # Miroslav Suchy <msuchy@redhat.com>, 2012.
7
- # ifelix <ifelix@redhat.com>, 2013. #zanata
7
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2020
8
+ #
8
9
  msgid ""
9
10
  msgstr ""
10
- "Project-Id-Version: version 0.0.1\n"
11
+ "Project-Id-Version: katello 2.5.0\n"
11
12
  "Report-Msgid-Bugs-To: \n"
13
+ "PO-Revision-Date: 2017-12-19 20:14+0000\n"
14
+ "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2020\n"
15
+ "Language-Team: Tamil (https://www.transifex.com/foreman/teams/114/ta/)\n"
12
16
  "MIME-Version: 1.0\n"
13
17
  "Content-Type: text/plain; charset=UTF-8\n"
14
18
  "Content-Transfer-Encoding: 8bit\n"
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"
19
+ "Language: ta\n"
19
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
- "X-Generator: Zanata 3.6.2\n"
21
21
 
22
22
  msgid ""
23
23
  "\n"
@@ -45,20 +45,56 @@ msgstr ""
45
45
  msgid " View task details "
46
46
  msgstr ""
47
47
 
48
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
48
+ msgid " ago"
49
+ msgstr ""
50
+
51
+ msgid " ago."
52
+ msgstr ""
53
+
54
+ msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
55
+ msgstr ""
56
+
57
+ msgid " content view is used in listed component content views. For more information, "
58
+ msgstr ""
59
+
60
+ msgid " content view is used in listed composite content views."
61
+ msgstr ""
62
+
49
63
  msgid " environment cannot be set to an environment already on its path"
50
64
  msgstr "ஒரு சூழலை ஏற்கனவே அதனுடைய பாதைகளில் சூழலை அமைக்க முடியவில்லை"
51
65
 
66
+ msgid " found."
67
+ msgstr ""
68
+
69
+ msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
70
+ msgstr ""
71
+
72
+ msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
73
+ msgstr ""
74
+
75
+ msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
76
+ msgstr ""
77
+
78
+ msgid "${pluralize(hostResponse.length, 'host')} will be moved to content view ${selectedCVNameForHosts} in "
79
+ msgstr ""
80
+
81
+ msgid "${pluralize(versionCount, 'content view version')} in the environments below will be removed when content view is deleted"
82
+ msgstr ""
83
+
84
+ msgid "${selectedContentType}"
85
+ msgstr ""
86
+
87
+ msgid "${selectedContentType} will appear here when created."
88
+ msgstr ""
89
+
52
90
  msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
53
91
  msgstr ""
54
92
 
55
93
  msgid "%s Available"
56
94
  msgstr ""
57
95
 
58
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
59
- #, fuzzy
60
96
  msgid "%s Errata"
61
- msgstr "பிழை"
97
+ msgstr ""
62
98
 
63
99
  msgid "%s Host"
64
100
  msgid_plural "%s Hosts"
@@ -68,253 +104,197 @@ msgstr[1] ""
68
104
  msgid "%s Used"
69
105
  msgstr ""
70
106
 
71
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
72
107
  msgid "%s ago"
73
108
  msgstr "%s முன்"
74
109
 
75
110
  msgid "%s has already been deleted"
76
111
  msgstr ""
77
112
 
78
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
79
113
  msgid "%s is not a valid package name"
80
114
  msgstr "%s ஒரு சரியான தொகுப்பு பெயர் இல்லை"
81
115
 
116
+ msgid "%s is required"
117
+ msgstr ""
118
+
82
119
  msgid "%s is unreachable. %s"
83
120
  msgstr ""
84
121
 
85
122
  msgid "%s must be an array."
86
123
  msgstr ""
87
124
 
88
- #, fuzzy
89
125
  msgid "%{errata} (%{total} other errata)"
90
- msgstr "%{errata} (%{rest} மற்ற பிழைகள்)"
126
+ msgstr ""
91
127
 
92
- #, fuzzy
93
128
  msgid "%{errata} (%{total} other errata) install canceled"
94
- msgstr "%s (%s மற்ற பிழை) நிறுவல் ரத்துசெய்யப்பட்டது"
129
+ msgstr ""
95
130
 
96
- #, fuzzy
97
131
  msgid "%{errata} (%{total} other errata) install failed"
98
- msgstr "%s (%s மற்ற பிழை) நிறுவல் தோல்வி"
132
+ msgstr ""
99
133
 
100
- #, fuzzy
101
134
  msgid "%{errata} (%{total} other errata) install timed out"
102
- msgstr "%s (%s மற்ற பிழை) நிறுவல் நேரம் முடிந்தது"
135
+ msgstr ""
103
136
 
104
- #, fuzzy
105
137
  msgid "%{errata} (%{total} other errata) installed"
106
- msgstr "%{errata} (%{rest} மற்ற பிழைகள்)"
138
+ msgstr ""
107
139
 
108
- #, fuzzy
109
140
  msgid "%{errata} erratum install canceled"
110
- msgstr "%s erratum நிறுவல் ரத்துசெய்யப்பட்டது"
141
+ msgstr ""
111
142
 
112
- #, fuzzy
113
143
  msgid "%{errata} erratum install failed"
114
- msgstr "%s erratum நிறுவல் தோல்வி"
144
+ msgstr ""
115
145
 
116
- #, fuzzy
117
146
  msgid "%{errata} erratum install timed out"
118
- msgstr "%s erratum நிறுவல் நேரம் முடிந்தது"
147
+ msgstr ""
119
148
 
120
- #, fuzzy
121
149
  msgid "%{errata} erratum installed"
122
- msgstr "%s erratum நிறுவப்பட்டது"
150
+ msgstr ""
123
151
 
124
152
  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."
125
153
  msgstr ""
126
154
 
127
- #, fuzzy
128
155
  msgid "%{group} (%{total} other package groups)"
129
- msgstr "%{group} (%{rest} மற்ற தொகுப்பு குழுக்கள்)"
156
+ msgstr ""
130
157
 
131
- #, fuzzy
132
158
  msgid "%{group} (%{total} other package groups) install canceled"
133
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) நிறுவல் ரத்துசெய்யப்பட்டது"
159
+ msgstr ""
134
160
 
135
- #, fuzzy
136
161
  msgid "%{group} (%{total} other package groups) install failed"
137
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) நிறுவல் தோல்வி"
162
+ msgstr ""
138
163
 
139
- #, fuzzy
140
164
  msgid "%{group} (%{total} other package groups) install timed out"
141
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) நிறுவல் நேரம் முடிந்தது"
165
+ msgstr ""
142
166
 
143
- #, fuzzy
144
167
  msgid "%{group} (%{total} other package groups) installed"
145
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) நிறுவப்பட்டன"
168
+ msgstr ""
146
169
 
147
- #, fuzzy
148
170
  msgid "%{group} (%{total} other package groups) remove canceled"
149
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) நீக்கல் ரத்துசெய்யப்பட்டது"
171
+ msgstr ""
150
172
 
151
- #, fuzzy
152
173
  msgid "%{group} (%{total} other package groups) remove failed"
153
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) நீக்கல் தோல்வி"
174
+ msgstr ""
154
175
 
155
- #, fuzzy
156
176
  msgid "%{group} (%{total} other package groups) remove timed out"
157
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) நீக்கல் நேரம் முடிந்தது"
177
+ msgstr ""
158
178
 
159
- #, fuzzy
160
179
  msgid "%{group} (%{total} other package groups) removed"
161
- msgstr "%{group} (%{rest} மற்ற தொகுப்பு குழுக்கள்)"
180
+ msgstr ""
162
181
 
163
- #, fuzzy
164
182
  msgid "%{group} (%{total} other package groups) update canceled"
165
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) புதுப்பித்தல் ரத்துசெய்யப்பட்டது"
183
+ msgstr ""
166
184
 
167
- #, fuzzy
168
185
  msgid "%{group} (%{total} other package groups) update failed"
169
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) புதுப்பித்தல் தோல்வி"
186
+ msgstr ""
170
187
 
171
- #, fuzzy
172
188
  msgid "%{group} (%{total} other package groups) update timed out"
173
- msgstr "%s (%s மற்ற தொகுப்பு குழுக்கள்) புதுப்பித்தல் நேரம் முடிந்தது"
189
+ msgstr ""
174
190
 
175
- #, fuzzy
176
191
  msgid "%{group} (%{total} other package groups) updated"
177
- msgstr "%{group} (%{rest} மற்ற தொகுப்பு குழுக்கள்)"
192
+ msgstr ""
178
193
 
179
- #, fuzzy
180
194
  msgid "%{group} package group install canceled"
181
- msgstr "%s தொகுப்பு குழு நிறுவல் ரத்துசெய்யப்பட்டது"
195
+ msgstr ""
182
196
 
183
- #, fuzzy
184
197
  msgid "%{group} package group install failed"
185
- msgstr "%s தொகுப்பு குழு நிறுவல் தோல்வி"
198
+ msgstr ""
186
199
 
187
- #, fuzzy
188
200
  msgid "%{group} package group install timed out"
189
- msgstr "%s சேர்த்தல் தொகுப்பு குழு நிறுவல் நேரம் முடிந்தது"
201
+ msgstr ""
190
202
 
191
- #, fuzzy
192
203
  msgid "%{group} package group installed"
193
- msgstr "%s தொகுப்பு குழு நிறுவப்பட்டது"
204
+ msgstr ""
194
205
 
195
- #, fuzzy
196
206
  msgid "%{group} package group remove canceled"
197
- msgstr "%s தொகுப்பு குழு நீக்கல் ரத்துசெய்யப்பட்டது"
207
+ msgstr ""
198
208
 
199
- #, fuzzy
200
209
  msgid "%{group} package group remove failed"
201
- msgstr "%s தொகுப்பு குழு நீக்கல் தோல்வி"
210
+ msgstr ""
202
211
 
203
- #, fuzzy
204
212
  msgid "%{group} package group remove timed out"
205
- msgstr "%s சேர்த்தல் தொகுப்பு குழு நேரம் முடிந்தது"
213
+ msgstr ""
206
214
 
207
- #, fuzzy
208
215
  msgid "%{group} package group removed"
209
- msgstr "%s தொகுப்பு குழு நீக்கப்பட்டது"
216
+ msgstr ""
210
217
 
211
- #, fuzzy
212
218
  msgid "%{group} package group update canceled"
213
- msgstr "%s தொகுப்பு குழு புதுப்பித்தல் ரத்துசெய்யப்பட்டது"
219
+ msgstr ""
214
220
 
215
- #, fuzzy
216
221
  msgid "%{group} package group update failed"
217
- msgstr "%s தொகுப்பு குழு புதுப்பித்தல் தோல்வி"
222
+ msgstr ""
218
223
 
219
- #, fuzzy
220
224
  msgid "%{group} package group update timed out"
221
- msgstr "%s சேர்த்தல் தொகுப்பு குழு புதுப்பித்தல் நேரம் முடிந்தது"
225
+ msgstr ""
222
226
 
223
- #, fuzzy
224
227
  msgid "%{group} package group updated"
225
- msgstr "%s தொகுப்பு குழு புதுப்பிக்கப்பட்டது"
228
+ msgstr ""
226
229
 
227
- #, fuzzy
228
230
  msgid "%{package} (%{total} other packages)"
229
- msgstr "%{package} (%{rest} மற்ற தொகுப்புகள்)"
231
+ msgstr ""
230
232
 
231
- #, fuzzy
232
233
  msgid "%{package} (%{total} other packages) install canceled"
233
- msgstr "%s (%s மற்ற தொகுப்புகள்) நிறுவல் ரத்துசெய்யப்பட்டது"
234
+ msgstr ""
234
235
 
235
- #, fuzzy
236
236
  msgid "%{package} (%{total} other packages) install failed"
237
- msgstr "%s (%s மற்ற தொகுப்புகள்) நிறுவல் தோல்வி"
237
+ msgstr ""
238
238
 
239
- #, fuzzy
240
239
  msgid "%{package} (%{total} other packages) install timed out"
241
- msgstr "%s (%s மற்ற தொகுப்புகள்) நிறுவல் நேரம் முடிந்தது"
240
+ msgstr ""
242
241
 
243
- #, fuzzy
244
242
  msgid "%{package} (%{total} other packages) installed"
245
- msgstr "%{package} (%{rest} மற்ற தொகுப்புகள்)"
243
+ msgstr ""
246
244
 
247
- #, fuzzy
248
245
  msgid "%{package} (%{total} other packages) remove canceled"
249
- msgstr "%s (%s மற்ற தொகுப்புகள்) நீக்கல் ரத்துசெய்யப்பட்டது"
246
+ msgstr ""
250
247
 
251
- #, fuzzy
252
248
  msgid "%{package} (%{total} other packages) remove failed"
253
- msgstr "%s (%s மற்ற தொகுப்புகள்) நீக்கல் தோல்வி"
249
+ msgstr ""
254
250
 
255
- #, fuzzy
256
251
  msgid "%{package} (%{total} other packages) remove timed out"
257
- msgstr "%s (%s மற்ற தொகுப்புகள்) நீக்கல் நேரம் முடிந்தது"
252
+ msgstr ""
258
253
 
259
- #, fuzzy
260
254
  msgid "%{package} (%{total} other packages) removed"
261
- msgstr "%{package} (%{rest} மற்ற தொகுப்புகள்)"
255
+ msgstr ""
262
256
 
263
- #, fuzzy
264
257
  msgid "%{package} (%{total} other packages) update canceled"
265
- msgstr "%s (%s மற்ற தொகுப்புகள்) புதுப்பித்தல் ரத்துசெய்யப்பட்டது"
258
+ msgstr ""
266
259
 
267
- #, fuzzy
268
260
  msgid "%{package} (%{total} other packages) update failed"
269
- msgstr "%s (%s மற்ற தொகுப்புகள்) புதுப்பித்தல் தோல்வி"
261
+ msgstr ""
270
262
 
271
- #, fuzzy
272
263
  msgid "%{package} (%{total} other packages) update timed out"
273
- msgstr "%s (%s மற்ற தொகுப்புகள்) புதுப்பித்தல் நேரம் முடிந்தது"
264
+ msgstr ""
274
265
 
275
- #, fuzzy
276
266
  msgid "%{package} (%{total} other packages) updated"
277
- msgstr "%{package} (%{rest} மற்ற தொகுப்புகள்)"
267
+ msgstr ""
278
268
 
279
- #, fuzzy
280
269
  msgid "%{package} package install canceled"
281
- msgstr "%s தொகுப்பு நிறுவல் ரத்துசெய்யப்பட்டது"
270
+ msgstr ""
282
271
 
283
- #, fuzzy
284
272
  msgid "%{package} package install timed out"
285
- msgstr "%s சேர்த்தல் தொகுப்பு நிறுவல் நேரம் முடிந்தது"
273
+ msgstr ""
286
274
 
287
- #, fuzzy
288
275
  msgid "%{package} package remove canceled"
289
- msgstr "%s தொகுப்பு நீக்கல் ரத்துசெய்யப்பட்டது"
276
+ msgstr ""
290
277
 
291
- #, fuzzy
292
278
  msgid "%{package} package remove failed"
293
- msgstr "%s தொகுப்பு நீக்கல் தோல்வி"
279
+ msgstr ""
294
280
 
295
- #, fuzzy
296
281
  msgid "%{package} package remove timed out"
297
- msgstr "%s தொகுப்பு நீக்கல் நேரம் முடிந்தது"
282
+ msgstr ""
298
283
 
299
- #, fuzzy
300
284
  msgid "%{package} package removed"
301
- msgstr "%s தொகுப்பு நீக்கப்பட்டது"
285
+ msgstr ""
302
286
 
303
- #, fuzzy
304
287
  msgid "%{package} package update canceled"
305
- msgstr "%s தொகுப்பு புதுப்பித்தல் ரத்துசெய்யப்பட்டது"
288
+ msgstr ""
306
289
 
307
- #, fuzzy
308
290
  msgid "%{package} package update failed"
309
- msgstr "%s தொகுப்பு புதுப்பித்தல் தோல்வி"
291
+ msgstr ""
310
292
 
311
- #, fuzzy
312
293
  msgid "%{package} package update timed out"
313
- msgstr "%s தொகுப்பு புதுப்பித்தல் நேரம் முடிந்தது"
294
+ msgstr ""
314
295
 
315
- #, fuzzy
316
296
  msgid "%{package} package updated"
317
- msgstr "%s தொகுப்பு புதுப்பிக்கப்பட்டது"
297
+ msgstr ""
318
298
 
319
299
  msgid "%{sla}"
320
300
  msgstr ""
@@ -340,7 +320,6 @@ msgstr ""
340
320
  msgid ", must be unique to major and version id version."
341
321
  msgstr ""
342
322
 
343
- # translation auto-copied from project CFSE, version sam-1.2, document app
344
323
  msgid ": '%s' is a built-in environment"
345
324
  msgstr ": '%s' என்பது ஒரு உள்ளமைந்த சுழலாகும்"
346
325
 
@@ -365,9 +344,8 @@ msgstr ""
365
344
  msgid "A content view can be added by using the \"Create content view\" button above."
366
345
  msgstr ""
367
346
 
368
- #, fuzzy
369
347
  msgid "A content_type must be provided."
370
- msgstr "விசைப் பெயர் வழங்கப்பட வேண்டும்"
348
+ msgstr ""
371
349
 
372
350
  msgid "A large number of errata are unapplied in this content view, so only the first 100 are shown."
373
351
  msgstr ""
@@ -399,6 +377,9 @@ msgstr ""
399
377
  msgid "A summary of new errata after a repository is synchronized"
400
378
  msgstr ""
401
379
 
380
+ msgid "ANY"
381
+ msgstr ""
382
+
402
383
  msgid "About page"
403
384
  msgstr ""
404
385
 
@@ -426,7 +407,9 @@ msgstr ""
426
407
  msgid "Action with sub plans"
427
408
  msgstr ""
428
409
 
429
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
410
+ msgid "Actions"
411
+ msgstr ""
412
+
430
413
  msgid "Activation Keys"
431
414
  msgstr "செயல்பாட்டு விசைகள்"
432
415
 
@@ -439,9 +422,11 @@ msgstr ""
439
422
  msgid "Activation key(s) for Subscription Manager."
440
423
  msgstr ""
441
424
 
442
- #, fuzzy
425
+ msgid "Activation keys"
426
+ msgstr ""
427
+
443
428
  msgid "Activation keys and subscriptions can be managed"
444
- msgstr "செயல்பாட்டு விசை '%s' உருவாக்கப்பட்டது"
429
+ msgstr ""
445
430
 
446
431
  msgid "Activation keys for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys."
447
432
  msgstr ""
@@ -452,14 +437,18 @@ msgstr ""
452
437
  msgid "Active Subscriptions"
453
438
  msgstr ""
454
439
 
455
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
456
- #, fuzzy
457
440
  msgid "Active only"
458
- msgstr "செயல்பாட்டு விசைகள்"
441
+ msgstr ""
459
442
 
460
443
  msgid "Add"
461
444
  msgstr ""
462
445
 
446
+ msgid "Add Bookmark"
447
+ msgstr ""
448
+
449
+ msgid "Add RPM rule"
450
+ msgstr ""
451
+
463
452
  msgid "Add Subscriptions"
464
453
  msgstr ""
465
454
 
@@ -469,12 +458,24 @@ msgstr ""
469
458
  msgid "Add component"
470
459
  msgstr ""
471
460
 
461
+ msgid "Add component content views"
462
+ msgstr ""
463
+
472
464
  msgid "Add components to the content view"
473
465
  msgstr ""
474
466
 
467
+ msgid "Add content views"
468
+ msgstr ""
469
+
475
470
  msgid "Add custom cron logic for sync plan"
476
471
  msgstr ""
477
472
 
473
+ msgid "Add errata"
474
+ msgstr ""
475
+
476
+ msgid "Add filter rule"
477
+ msgstr ""
478
+
478
479
  msgid "Add filters using the 'Add filter' button above."
479
480
  msgstr ""
480
481
 
@@ -484,6 +485,9 @@ msgstr ""
484
485
  msgid "Add lifecycle environments to the smart proxy"
485
486
  msgstr ""
486
487
 
488
+ msgid "Add new bookmark"
489
+ msgstr ""
490
+
487
491
  msgid "Add one or more host collections to one or more hosts"
488
492
  msgstr ""
489
493
 
@@ -493,28 +497,37 @@ msgstr ""
493
497
  msgid "Add products to sync plan"
494
498
  msgstr ""
495
499
 
500
+ msgid "Add repositories"
501
+ msgstr ""
502
+
503
+ msgid "Add rule"
504
+ msgstr ""
505
+
496
506
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
497
507
  msgstr ""
498
508
 
499
509
  msgid "Add subscriptions to one or more hosts"
500
510
  msgstr ""
501
511
 
502
- msgid "Add to this filter using the 'Add RPM' button."
512
+ msgid "Add to this filter using the 'Add RPM rule' button."
503
513
  msgstr ""
504
514
 
505
- msgid "Add to this filter using the 'Add package group' button."
515
+ msgid "Add to this filter using the 'Add filter rule' button."
516
+ msgstr ""
517
+
518
+ msgid "Add traces by applying updates on this host."
506
519
  msgstr ""
507
520
 
508
521
  msgid "Added"
509
522
  msgstr ""
510
523
 
511
- msgid "Added Content:"
524
+ msgid "Added %s"
512
525
  msgstr ""
513
526
 
514
- msgid "Added component to content view"
527
+ msgid "Added Content:"
515
528
  msgstr ""
516
529
 
517
- msgid "Adding content units"
530
+ msgid "Added component to content view"
518
531
  msgstr ""
519
532
 
520
533
  msgid "Additional content"
@@ -523,30 +536,51 @@ msgstr ""
523
536
  msgid "Addons"
524
537
  msgstr ""
525
538
 
539
+ msgid "Affected repositories"
540
+ msgstr ""
541
+
526
542
  msgid "After generating the incremental update, apply the changes to the specified hosts. Only Errata are supported currently."
527
543
  msgstr ""
528
544
 
529
545
  msgid "Agent action"
530
546
  msgstr ""
531
547
 
548
+ msgid "All"
549
+ msgstr ""
550
+
532
551
  msgid "All Media"
533
552
  msgstr ""
534
553
 
554
+ msgid "All Repositories"
555
+ msgstr ""
556
+
535
557
  msgid "All available architectures for this repo are enabled."
536
558
  msgstr ""
537
559
 
538
560
  msgid "All errata applied"
539
561
  msgstr ""
540
562
 
563
+ msgid "All versions"
564
+ msgstr ""
565
+
566
+ msgid "All versions will be removed from these environments"
567
+ msgstr ""
568
+
541
569
  msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
542
570
  msgstr ""
543
571
 
572
+ msgid "Allow Katello to update host installed packages, enabled repos, and module inventory directly instead of wrapped in Dynflow tasks (try turning off if Puma processes are using too much memory)"
573
+ msgstr ""
574
+
544
575
  msgid "Allow hosts to re-register themselves only when they are in build mode"
545
576
  msgstr ""
546
577
 
547
578
  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."
548
579
  msgstr ""
549
580
 
581
+ msgid "Also include the latest upgradable package version for each host package"
582
+ msgstr ""
583
+
550
584
  msgid "Alter a hosts host collections"
551
585
  msgstr ""
552
586
 
@@ -570,6 +604,11 @@ msgid ""
570
604
  "%{error_message}"
571
605
  msgstr ""
572
606
 
607
+ msgid ""
608
+ "An error occurred during upload \n"
609
+ "%{error_message}"
610
+ msgstr ""
611
+
573
612
  msgid "Another component already includes content view with ID %s"
574
613
  msgstr ""
575
614
 
@@ -582,9 +621,42 @@ msgstr ""
582
621
  msgid "Ansible Collections"
583
622
  msgstr ""
584
623
 
624
+ msgid "Ansible collection"
625
+ msgstr ""
626
+
627
+ msgid "Ansible collections"
628
+ msgstr ""
629
+
585
630
  msgid "Applicability Batch Size"
586
631
  msgstr ""
587
632
 
633
+ msgid "Applicable Content Hosts"
634
+ msgstr ""
635
+
636
+ msgid "Application"
637
+ msgstr ""
638
+
639
+ msgid "Apply"
640
+ msgstr ""
641
+
642
+ msgid "Apply Erratum"
643
+ msgstr ""
644
+
645
+ msgid "Apply to all repositories in the CV"
646
+ msgstr ""
647
+
648
+ msgid "Apply to subset of repositories"
649
+ msgstr ""
650
+
651
+ msgid "Apply via Katello agent"
652
+ msgstr ""
653
+
654
+ msgid "Apply via customized remote execution"
655
+ msgstr ""
656
+
657
+ msgid "Apply via remote execution"
658
+ msgstr ""
659
+
588
660
  msgid "Arch"
589
661
  msgstr ""
590
662
 
@@ -597,6 +669,9 @@ msgstr ""
597
669
  msgid "Architecture(s)"
598
670
  msgstr ""
599
671
 
672
+ msgid "Are you sure you want to delete %(entitlementCount)s subscription(s)? This action will remove the subscription(s) and refresh your manifest. All systems using these subscription(s) will lose them and also may lose access to updates and Errata."
673
+ msgstr ""
674
+
600
675
  msgid "Are you sure you want to delete the manifest?"
601
676
  msgstr ""
602
677
 
@@ -665,21 +740,20 @@ msgstr ""
665
740
  msgid "At least one Content View Version must be specified"
666
741
  msgstr ""
667
742
 
668
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
669
743
  msgid "At least one activation key must be provided"
670
744
  msgstr "குறைந்தது ஒரு செயல்பாட்டு விசையாவது கொடுக்க வேண்டும்"
671
745
 
672
746
  msgid "At least one activation key must have a lifecycle environment and content view assigned to it"
673
747
  msgstr ""
674
748
 
675
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
676
749
  msgid "At least one organization must exist."
677
750
  msgstr "குறைந்தது ஒரு நிறுவனம் இருக்க வேண்டும்"
678
751
 
679
- # translation auto-copied from project CFSE, version sam-1.2, document app
680
- #, fuzzy
752
+ msgid "Atleast one errata type needs to be selected."
753
+ msgstr ""
754
+
681
755
  msgid "Attach a subscription"
682
- msgstr "இணைக்கப்பட்டுள்ள சந்தாக்கள்"
756
+ msgstr ""
683
757
 
684
758
  msgid "Attach subscriptions"
685
759
  msgstr ""
@@ -693,22 +767,17 @@ msgstr ""
693
767
  msgid "Auth URL requires Auth token be set."
694
768
  msgstr ""
695
769
 
696
- msgid "Auth token requires Auth URL be set."
697
- msgstr ""
698
-
699
770
  msgid "Author"
700
771
  msgstr ""
701
772
 
702
- msgid "Auto Publish"
703
- msgstr ""
704
-
705
773
  msgid "Auto Publish - Triggered by '%s'"
706
774
  msgstr ""
707
775
 
708
- # translation auto-copied from project CFSE, version sam-1.2, document app
709
- #, fuzzy
710
776
  msgid "Auto attach subscriptions"
711
- msgstr "இணைக்கப்பட்டுள்ள சந்தாக்கள்"
777
+ msgstr ""
778
+
779
+ msgid "Auto publish"
780
+ msgstr ""
712
781
 
713
782
  msgid "Autopublish"
714
783
  msgstr ""
@@ -725,10 +794,10 @@ msgstr ""
725
794
  msgid "Available Repositories"
726
795
  msgstr ""
727
796
 
728
- msgid "Backend System Status"
797
+ msgid "Available Schema Versions"
729
798
  msgstr ""
730
799
 
731
- msgid "Background"
800
+ msgid "Backend System Status"
732
801
  msgstr ""
733
802
 
734
803
  msgid "Base URL to perform repo discovery on"
@@ -743,7 +812,9 @@ msgstr ""
743
812
  msgid "Batch size to sync repositories in."
744
813
  msgstr ""
745
814
 
746
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
815
+ msgid "Below are the repository sets currently available for this content host. For Red Hat subscriptions, additional content can be made available through the {rhrp}. Changing default settings requires subscription-manager 1.10 or newer to be installed on this host."
816
+ msgstr ""
817
+
747
818
  msgid "Beta"
748
819
  msgstr "பீட்டா"
749
820
 
@@ -753,42 +824,57 @@ msgstr ""
753
824
  msgid "Bind entitlements to an allocation"
754
825
  msgstr ""
755
826
 
756
- msgid "Both major and minor parameters have to be used to override a CV version"
827
+ msgid "Bookmark this search"
828
+ msgstr ""
829
+
830
+ msgid "Bookmarks marked as public are available to all users"
757
831
  msgstr ""
758
832
 
759
- msgid "Branches updated"
833
+ msgid "Both major and minor parameters have to be used to override a CV version"
760
834
  msgstr ""
761
835
 
762
- # translation auto-copied from project CFSE, version sam-1.2, document app
763
836
  msgid "Bug Fix"
764
837
  msgstr "வழு நீக்கல்"
765
838
 
766
- # translation auto-copied from project CFSE, version sam-1.2, document app
767
- #, fuzzy
768
839
  msgid "Bugfix"
769
- msgstr "வழு நீக்கல்"
840
+ msgstr ""
841
+
842
+ msgid "Bugs"
843
+ msgstr ""
844
+
845
+ msgid "Bulk generate applicability for host %s"
846
+ msgstr ""
770
847
 
771
848
  msgid "Bulk generate applicability for hosts"
772
849
  msgstr ""
773
850
 
851
+ msgid "CDN Configuration"
852
+ msgstr ""
853
+
854
+ msgid "CDN Configuration for Red Hat Content"
855
+ msgstr ""
856
+
857
+ msgid "CDN Configuration updated."
858
+ msgstr ""
859
+
774
860
  msgid "CDN SSL version"
775
861
  msgstr ""
776
862
 
777
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
778
863
  msgid "CDN loading error: %s not found"
779
864
  msgstr "CDN ஏற்றும் பிழை: %s காணவில்லை"
780
865
 
781
- # translation auto-copied from project CFSE, version sam-1.2, document app
782
866
  msgid "CDN loading error: access denied to %s"
783
867
  msgstr "CDN ஏற்றுதல் பிழை: %s க்கான அணுகல் மறுக்கப்பட்டது"
784
868
 
785
- # translation auto-copied from project CFSE, version sam-1.2, document app
786
869
  msgid "CDN loading error: access forbidden to %s"
787
870
  msgstr "CDN ஏற்றுதல் பிழை: %s க்கான அணுகல் தடுக்கப்பட்டது"
788
871
 
789
872
  msgid "CVE identifier"
790
873
  msgstr ""
791
874
 
875
+ msgid "CVEs"
876
+ msgstr ""
877
+
792
878
  msgid "Calculate Applicable Errata based on a particular Content View"
793
879
  msgstr ""
794
880
 
@@ -810,11 +896,9 @@ msgstr ""
810
896
  msgid "Can only upload to Yum Repositories."
811
897
  msgstr ""
812
898
 
813
- # translation auto-copied from project CFSE, version sam-1.2, document app
814
899
  msgid "Can't update the '%s' environment"
815
900
  msgstr "'%s' சூழலைப் புதுப்பிக்க முடியாது"
816
901
 
817
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
818
902
  msgid "Cancel"
819
903
  msgstr "ரத்து"
820
904
 
@@ -824,20 +908,12 @@ msgstr ""
824
908
  msgid "Cancel running smart proxy synchronization"
825
909
  msgstr ""
826
910
 
827
- # translation auto-copied from project CFSE, version sam-1.2, document app
828
- #, fuzzy
829
911
  msgid "Canceled"
830
- msgstr "ரத்து செய்யப்பட்டது."
831
-
832
- msgid "Cancelled"
833
912
  msgstr ""
834
913
 
835
- # translation auto-copied from project CFSE, version sam-1.2, document app
836
- #, fuzzy
837
914
  msgid "Cancelled."
838
- msgstr "ரத்து செய்யப்பட்டது."
915
+ msgstr ""
839
916
 
840
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
841
917
  msgid "Candlepin Event"
842
918
  msgstr "Candlepin நிகழ்வு"
843
919
 
@@ -880,14 +956,12 @@ msgstr ""
880
956
  msgid "Cannot clone into the Default Content View"
881
957
  msgstr ""
882
958
 
883
- #, fuzzy
884
959
  msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
885
- msgstr "changeset '%s' ஐ நீக்க முடியாது, ஏனெனில் அது மறுபார்வை கட்டத்தில் இல்லை."
960
+ msgstr ""
886
961
 
887
962
  msgid "Cannot delete Red Hat product: %{product}"
888
963
  msgstr ""
889
964
 
890
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
891
965
  msgid "Cannot delete from %s, view does not exist there."
892
966
  msgstr "%s இலிருந்து அழிக்க முடியவில்லை, அங்கு காட்சி இல்லை."
893
967
 
@@ -906,20 +980,17 @@ msgstr ""
906
980
  msgid "Cannot delete the last Location."
907
981
  msgstr ""
908
982
 
909
- #, fuzzy
910
983
  msgid "Cannot delete version while it is in environment %s"
911
- msgstr "மற்றொரு சூழலில் ஒரு மாதிரிஉருவை மாற்றியமைக்க முடியவில்லை"
984
+ msgstr ""
912
985
 
913
- #, fuzzy
914
986
  msgid "Cannot delete version while it is in environments: %s"
915
- msgstr "மற்றொரு சூழலில் ஒரு மாதிரிஉருவை மாற்றியமைக்க முடியவில்லை"
987
+ msgstr ""
916
988
 
917
989
  msgid "Cannot delete version while it is in use by composite content views: %s"
918
990
  msgstr ""
919
991
 
920
- #, fuzzy
921
992
  msgid "Cannot delete view while it exists in environments"
922
- msgstr "மற்றொரு சூழலில் ஒரு மாதிரிஉருவை மாற்றியமைக்க முடியவில்லை"
993
+ msgstr ""
923
994
 
924
995
  msgid "Cannot import a composite content view"
925
996
  msgstr ""
@@ -945,7 +1016,6 @@ msgstr ""
945
1016
  msgid "Cannot publish default content view"
946
1017
  msgstr ""
947
1018
 
948
- # translation auto-copied from project CFSE, version sam-1.2, document app
949
1019
  msgid "Cannot register a system to the '%s' environment"
950
1020
  msgstr "கணினியை ஒரு '%s' சூழலுக்குப் பதிவு செய்ய முடியாது"
951
1021
 
@@ -976,6 +1046,9 @@ msgstr ""
976
1046
  msgid "Cannot sync file:// repositories with the On Demand Download Policy"
977
1047
  msgstr ""
978
1048
 
1049
+ msgid "Cannot upload Ansible collections."
1050
+ msgstr ""
1051
+
979
1052
  msgid "Cannot upload Container Image content."
980
1053
  msgstr ""
981
1054
 
@@ -1009,14 +1082,12 @@ msgstr ""
1009
1082
  msgid "Click here to go to the tasks page for the task."
1010
1083
  msgstr ""
1011
1084
 
1012
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1013
1085
  msgid "Clone"
1014
1086
  msgstr "குளோன்"
1015
1087
 
1016
1088
  msgid "Close"
1017
1089
  msgstr ""
1018
1090
 
1019
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1020
1091
  msgid "Collapse All"
1021
1092
  msgstr "அனைத்தையும் நிலைகுலை"
1022
1093
 
@@ -1029,7 +1100,6 @@ msgstr ""
1029
1100
  msgid "Comma-separated list of tags to sync for Container Image repository"
1030
1101
  msgstr ""
1031
1102
 
1032
- # translation auto-copied from project CFSE, version sam-1.2, document app
1033
1103
  msgid "Component"
1034
1104
  msgstr "கூறு"
1035
1105
 
@@ -1039,6 +1109,15 @@ msgstr ""
1039
1109
  msgid "Component content view"
1040
1110
  msgstr ""
1041
1111
 
1112
+ msgid "Component content views"
1113
+ msgstr ""
1114
+
1115
+ msgid "Components"
1116
+ msgstr ""
1117
+
1118
+ msgid "Composite"
1119
+ msgstr ""
1120
+
1042
1121
  msgid "Composite Content View"
1043
1122
  msgstr ""
1044
1123
 
@@ -1048,6 +1127,9 @@ msgstr ""
1048
1127
  msgid "Composite content view"
1049
1128
  msgstr ""
1050
1129
 
1130
+ msgid "Composite content views"
1131
+ msgstr ""
1132
+
1051
1133
  msgid "Compute resource IDs"
1052
1134
  msgstr ""
1053
1135
 
@@ -1063,6 +1145,12 @@ msgstr ""
1063
1145
  msgid "Consisting of multiple component content views"
1064
1146
  msgstr ""
1065
1147
 
1148
+ msgid "Consists of content views"
1149
+ msgstr ""
1150
+
1151
+ msgid "Consists of repositories"
1152
+ msgstr ""
1153
+
1066
1154
  msgid "Consumed"
1067
1155
  msgstr ""
1068
1156
 
@@ -1087,28 +1175,44 @@ msgstr ""
1087
1175
  msgid "Container image tag"
1088
1176
  msgstr ""
1089
1177
 
1090
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
1178
+ msgid "Container image tags"
1179
+ msgstr ""
1180
+
1181
+ msgid "Container manifest lists"
1182
+ msgstr ""
1183
+
1184
+ msgid "Container manifests"
1185
+ msgstr ""
1186
+
1091
1187
  msgid "Content"
1092
1188
  msgstr "உள்ளடக்கம்"
1093
1189
 
1190
+ msgid "Content Count"
1191
+ msgstr ""
1192
+
1094
1193
  msgid "Content Credential ID"
1095
1194
  msgstr ""
1096
1195
 
1097
1196
  msgid "Content Credential numeric identifier"
1098
1197
  msgstr ""
1099
1198
 
1199
+ msgid "Content Credential to use for SSL CA"
1200
+ msgstr ""
1201
+
1100
1202
  msgid "Content Credentials"
1101
1203
  msgstr ""
1102
1204
 
1205
+ msgid "Content Details"
1206
+ msgstr ""
1207
+
1103
1208
  msgid "Content Download URL"
1104
1209
  msgstr ""
1105
1210
 
1106
1211
  msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
1107
1212
  msgstr ""
1108
1213
 
1109
- #, fuzzy
1110
1214
  msgid "Content Hosts"
1111
- msgstr "உள்ளடக்கம்"
1215
+ msgstr ""
1112
1216
 
1113
1217
  msgid "Content Source"
1114
1218
  msgstr ""
@@ -1119,26 +1223,20 @@ msgstr ""
1119
1223
  msgid "Content Types"
1120
1224
  msgstr ""
1121
1225
 
1122
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1123
1226
  msgid "Content View"
1124
1227
  msgstr "உள்ளடக்க பார்வை"
1125
1228
 
1126
1229
  msgid "Content View %{view}: Versions: %{versions}"
1127
1230
  msgstr ""
1128
1231
 
1129
- msgid "Content View Dependency Solving Algorithm"
1130
- msgstr ""
1131
-
1132
1232
  msgid "Content View Dependency Solving Default"
1133
1233
  msgstr ""
1134
1234
 
1135
1235
  msgid "Content View Details"
1136
1236
  msgstr ""
1137
1237
 
1138
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1139
- #, fuzzy
1140
1238
  msgid "Content View Filter id"
1141
- msgstr "உள்ளடக்கக் காட்சிகள் மேலோட்டப் பார்வை"
1239
+ msgstr ""
1142
1240
 
1143
1241
  msgid "Content View Filter identifier"
1144
1242
  msgstr ""
@@ -1146,6 +1244,12 @@ msgstr ""
1146
1244
  msgid "Content View ID"
1147
1245
  msgstr ""
1148
1246
 
1247
+ msgid "Content View Label"
1248
+ msgstr ""
1249
+
1250
+ msgid "Content View Name"
1251
+ msgstr ""
1252
+
1149
1253
  msgid "Content View Version %{id} not in all specified environments %{envs}"
1150
1254
  msgstr ""
1151
1255
 
@@ -1167,7 +1271,6 @@ msgstr ""
1167
1271
  msgid "Content View id"
1168
1272
  msgstr ""
1169
1273
 
1170
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1171
1274
  msgid "Content Views"
1172
1275
  msgstr "உள்ளடக்கக் காட்சிகள்"
1173
1276
 
@@ -1177,9 +1280,15 @@ msgstr ""
1177
1280
  msgid "Content host must be unregistered before performing this action."
1178
1281
  msgstr ""
1179
1282
 
1283
+ msgid "Content hosts"
1284
+ msgstr ""
1285
+
1180
1286
  msgid "Content imported from %{path} into content view '%{name}' by %{user}"
1181
1287
  msgstr ""
1182
1288
 
1289
+ msgid "Content not uploaded to pulp"
1290
+ msgstr ""
1291
+
1183
1292
  msgid "Content source ID"
1184
1293
  msgstr ""
1185
1294
 
@@ -1201,7 +1310,6 @@ msgstr ""
1201
1310
  msgid "Content view ${name} created"
1202
1311
  msgstr ""
1203
1312
 
1204
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1205
1313
  msgid "Content view '%{view}' is not in environment '%{env}'"
1206
1314
  msgstr "உள்ளடக்கக் காட்சி '%{view}' சூழல் '%{env}' இல் இல்லை"
1207
1315
 
@@ -1211,6 +1319,9 @@ msgstr ""
1211
1319
  msgid "Content view ID"
1212
1320
  msgstr ""
1213
1321
 
1322
+ msgid "Content view details"
1323
+ msgstr ""
1324
+
1214
1325
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1215
1326
  msgstr ""
1216
1327
 
@@ -1220,6 +1331,9 @@ msgstr ""
1220
1331
  msgid "Content view label"
1221
1332
  msgstr ""
1222
1333
 
1334
+ msgid "Content view name"
1335
+ msgstr ""
1336
+
1223
1337
  msgid "Content view not provided in the metadata"
1224
1338
  msgstr ""
1225
1339
 
@@ -1235,6 +1349,9 @@ msgstr ""
1235
1349
  msgid "Content view version import history identifier"
1236
1350
  msgstr ""
1237
1351
 
1352
+ msgid "Content views"
1353
+ msgstr ""
1354
+
1238
1355
  msgid "Content_Host_Status"
1239
1356
  msgstr ""
1240
1357
 
@@ -1253,18 +1370,18 @@ msgstr ""
1253
1370
  msgid "Copy"
1254
1371
  msgstr ""
1255
1372
 
1256
- #, fuzzy
1257
1373
  msgid "Copy an activation key"
1258
- msgstr "செயல்பாட்டு விசைகள்"
1374
+ msgstr ""
1375
+
1376
+ msgid "Copy content view"
1377
+ msgstr ""
1259
1378
 
1260
1379
  msgid "Copy version units to library"
1261
1380
  msgstr ""
1262
1381
 
1263
- #, fuzzy
1264
1382
  msgid "Cores: %s"
1265
- msgstr "காரணம்: %s"
1383
+ msgstr ""
1266
1384
 
1267
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1268
1385
  msgid "Could not delete organization '%s'."
1269
1386
  msgstr "நிறுவனம் '%s'ஐ அழிக்க முடியாது."
1270
1387
 
@@ -1301,20 +1418,21 @@ msgstr ""
1301
1418
  msgid "Could not remove the lifecycle environment from the smart proxy"
1302
1419
  msgstr ""
1303
1420
 
1421
+ msgid "Couldn't establish a connection to %s"
1422
+ msgstr ""
1423
+
1304
1424
  msgid "Couldn't find %{content_type} with id '%{id}'"
1305
1425
  msgstr ""
1306
1426
 
1307
1427
  msgid "Couldn't find %{type} Filter with id %{id}"
1308
1428
  msgstr ""
1309
1429
 
1310
- #, fuzzy
1311
1430
  msgid "Couldn't find ContentViewFilter with id=%s"
1312
- msgstr "'%s' என்ற ஐடி கொண்ட தயாரிப்பைக் கண்டறிய முடியவில்லை"
1431
+ msgstr ""
1313
1432
 
1314
1433
  msgid "Couldn't find Organization '%s'."
1315
1434
  msgstr ""
1316
1435
 
1317
- # translation auto-copied from project CFSE, version sam-1.2, document app
1318
1436
  msgid "Couldn't find activation key '%s'"
1319
1437
  msgstr "செயல்படுத்தல் விசை '%s' ஐக் கண்டறிய முடியவில்லை"
1320
1438
 
@@ -1324,9 +1442,8 @@ msgstr ""
1324
1442
  msgid "Couldn't find activation key environment '%s'"
1325
1443
  msgstr ""
1326
1444
 
1327
- #, fuzzy
1328
1445
  msgid "Couldn't find consumer '%s'"
1329
- msgstr "பயனர் '%s' ஐக் கண்டறிய முடியவில்லை"
1446
+ msgstr ""
1330
1447
 
1331
1448
  msgid "Couldn't find content host content view id '%s'"
1332
1449
  msgstr ""
@@ -1334,27 +1451,23 @@ msgstr ""
1334
1451
  msgid "Couldn't find content host environment '%s'"
1335
1452
  msgstr ""
1336
1453
 
1337
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1338
1454
  msgid "Couldn't find content view '%s'"
1339
1455
  msgstr "உள்ளடக்கக் காட்சி '%s' ஐக் கன்டறிய முடியவில்லை"
1340
1456
 
1341
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1342
- #, fuzzy
1343
1457
  msgid "Couldn't find content view version '%s'"
1344
- msgstr "உள்ளடக்கக் காட்சி '%s' ஐக் கன்டறிய முடியவில்லை"
1458
+ msgstr ""
1345
1459
 
1346
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
1347
- #, fuzzy
1348
1460
  msgid "Couldn't find content view versions '%s'"
1349
- msgstr "உள்ளடக்கக் காட்சி '%s' ஐக் கன்டறிய முடியவில்லை"
1461
+ msgstr ""
1462
+
1463
+ msgid "Couldn't find content view with id: '%s'"
1464
+ msgstr ""
1350
1465
 
1351
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1352
1466
  msgid "Couldn't find environment '%s'"
1353
1467
  msgstr "சூழலை '%s' தேட முடியவில்லை"
1354
1468
 
1355
- #, fuzzy
1356
1469
  msgid "Couldn't find errata ids '%s'"
1357
- msgstr "நிறுவனம் '%s' ஐக் கண்டறிய முடியவில்லை"
1470
+ msgstr ""
1358
1471
 
1359
1472
  msgid "Couldn't find host collection '%s'"
1360
1473
  msgstr ""
@@ -1365,29 +1478,24 @@ msgstr ""
1365
1478
  msgid "Couldn't find organization '%s'"
1366
1479
  msgstr "நிறுவனம் '%s' ஐக் கண்டறிய முடியவில்லை"
1367
1480
 
1368
- #, fuzzy
1369
1481
  msgid "Couldn't find prior-environment '%s'"
1370
- msgstr "சூழலை '%s' தேட முடியவில்லை"
1482
+ msgstr ""
1371
1483
 
1372
- # translation auto-copied from project CFSE, version sam-1.2, document app
1373
1484
  msgid "Couldn't find product with id '%s'"
1374
1485
  msgstr "'%s' என்ற ஐடி கொண்ட தயாரிப்பைக் கண்டறிய முடியவில்லை"
1375
1486
 
1376
- # translation auto-copied from project CFSE, version sam-1.2, document app
1377
1487
  msgid "Couldn't find repository '%s'"
1378
1488
  msgstr "தொகுப்பதிவகம் '%s' ஐ கண்டறிய முடியவில்லை"
1379
1489
 
1380
1490
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1381
1491
  msgstr ""
1382
1492
 
1383
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1384
1493
  msgid "Couldn't find subject of synchronization"
1385
1494
  msgstr "ஒத்திசைவிற்கான பொருளை தேட முடியவில்லை"
1386
1495
 
1387
1496
  msgid "Count"
1388
1497
  msgstr ""
1389
1498
 
1390
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1391
1499
  msgid "Create"
1392
1500
  msgstr "உருவாக்கு"
1393
1501
 
@@ -1448,7 +1556,7 @@ msgstr ""
1448
1556
  msgid "Create organization"
1449
1557
  msgstr ""
1450
1558
 
1451
- msgid "Creating local repository"
1559
+ msgid "Critical"
1452
1560
  msgstr ""
1453
1561
 
1454
1562
  msgid "Cron expression is not valid!"
@@ -1463,16 +1571,14 @@ msgstr ""
1463
1571
  msgid "Current organization not set."
1464
1572
  msgstr ""
1465
1573
 
1466
- # translation auto-copied from project CFSE, version sam-1.2, document app
1467
1574
  msgid "Custom Content Repositories"
1468
1575
  msgstr "தனிப்பயன் உள்ளடக்க தொகுப்பதிவகங்கள்"
1469
1576
 
1470
1577
  msgid "Custom cron expression only needs to be set for interval value of custom cron"
1471
1578
  msgstr ""
1472
1579
 
1473
- #, fuzzy
1474
1580
  msgid "Custom repositories cannot be disabled."
1475
- msgstr "தெரியாத தொகுப்பதிவக லேபிள்: %s"
1581
+ msgstr ""
1476
1582
 
1477
1583
  msgid "Database connection"
1478
1584
  msgstr ""
@@ -1480,7 +1586,6 @@ msgstr ""
1480
1586
  msgid "Date"
1481
1587
  msgstr ""
1482
1588
 
1483
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1484
1589
  msgid "Date format is incorrect."
1485
1590
  msgstr "தேதி வடிவம் தவறானது."
1486
1591
 
@@ -1496,7 +1601,12 @@ msgstr ""
1496
1601
  msgid "Deb Packages"
1497
1602
  msgstr ""
1498
1603
 
1499
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1604
+ msgid "Deb package identifiers to filter content by"
1605
+ msgstr ""
1606
+
1607
+ msgid "Deb packages"
1608
+ msgstr ""
1609
+
1500
1610
  msgid "Debug Certificate"
1501
1611
  msgstr "பிழைதிருத்த சான்றிதழ்"
1502
1612
 
@@ -1533,20 +1643,19 @@ msgstr ""
1533
1643
  msgid "Default Smart Proxy download policy"
1534
1644
  msgstr ""
1535
1645
 
1536
- #, fuzzy
1537
1646
  msgid "Default System SLA"
1538
- msgstr "கணினி குழுவை நீக்கு"
1647
+ msgstr ""
1539
1648
 
1540
1649
  msgid "Default content view versions cannot be promoted"
1541
1650
  msgstr ""
1542
1651
 
1543
- msgid "Default download policy for Smart Proxy syncs (either 'inherit', immediate', 'on_demand', or 'background')"
1652
+ msgid "Default download policy for Smart Proxy syncs (either 'inherit', immediate', or 'on_demand')"
1544
1653
  msgstr ""
1545
1654
 
1546
- msgid "Default download policy for custom repositories (either 'immediate', 'on_demand', or 'background')"
1655
+ msgid "Default download policy for custom repositories (either 'immediate' or 'on_demand')"
1547
1656
  msgstr ""
1548
1657
 
1549
- msgid "Default download policy for enabled Red Hat repositories (either 'immediate', 'on_demand', or 'background')"
1658
+ msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
1550
1659
  msgstr ""
1551
1660
 
1552
1661
  msgid "Default finish template for new Operating Systems created from synced content"
@@ -1600,7 +1709,6 @@ msgstr ""
1600
1709
  msgid "Default user data for new Operating Systems created from synced content"
1601
1710
  msgstr ""
1602
1711
 
1603
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
1604
1712
  msgid "Delete"
1605
1713
  msgstr "நீக்கு"
1606
1714
 
@@ -1610,11 +1718,9 @@ msgstr ""
1610
1718
  msgid "Delete Host upon unregister"
1611
1719
  msgstr ""
1612
1720
 
1613
- #, fuzzy
1614
1721
  msgid "Delete Lifecycle Environment"
1615
- msgstr "சூழல்களால்"
1722
+ msgstr ""
1616
1723
 
1617
- # translation auto-copied from project CFSE, version sam-1.2, document app
1618
1724
  msgid "Delete Manifest"
1619
1725
  msgstr "மேனிஃபெஸ்ட்டை நீக்கு"
1620
1726
 
@@ -1627,6 +1733,9 @@ msgstr ""
1627
1733
  msgid "Delete Upstream Subscription"
1628
1734
  msgstr ""
1629
1735
 
1736
+ msgid "Delete Version"
1737
+ msgstr ""
1738
+
1630
1739
  msgid "Delete a content view"
1631
1740
  msgstr ""
1632
1741
 
@@ -1648,19 +1757,30 @@ msgstr ""
1648
1757
  msgid "Delete an upload request"
1649
1758
  msgstr ""
1650
1759
 
1760
+ msgid "Delete content view"
1761
+ msgstr ""
1762
+
1651
1763
  msgid "Delete manifest from Red Hat provider"
1652
1764
  msgstr ""
1653
1765
 
1654
1766
  msgid "Delete multiple filters from a content view"
1655
1767
  msgstr ""
1656
1768
 
1657
- #, fuzzy
1769
+ msgid "Delete version"
1770
+ msgstr ""
1771
+
1658
1772
  msgid "Deleted consumer '%s'"
1659
- msgstr "பயனர் '%s' அழிக்கப்பட்டது"
1773
+ msgstr ""
1774
+
1775
+ msgid "Deleted from "
1776
+ msgstr ""
1660
1777
 
1661
1778
  msgid "Deleted from %{environment}"
1662
1779
  msgstr ""
1663
1780
 
1781
+ msgid "Deleting content view : "
1782
+ msgstr ""
1783
+
1664
1784
  msgid "Deleting manifest in '%{subject}' failed."
1665
1785
  msgstr ""
1666
1786
 
@@ -1754,6 +1874,9 @@ msgstr ""
1754
1874
  msgid "Disable simple content access for a manifest"
1755
1875
  msgstr ""
1756
1876
 
1877
+ msgid "Disabled"
1878
+ msgstr ""
1879
+
1757
1880
  msgid "Disabling Simple Content Access failed for '%{subject}'."
1758
1881
  msgstr ""
1759
1882
 
@@ -1775,6 +1898,9 @@ msgstr ""
1775
1898
  msgid "Do not wait for the update action to finish. Default: true"
1776
1899
  msgstr ""
1777
1900
 
1901
+ msgid "Docker Tags"
1902
+ msgstr ""
1903
+
1778
1904
  msgid "Domain IDs"
1779
1905
  msgstr ""
1780
1906
 
@@ -1784,10 +1910,9 @@ msgstr ""
1784
1910
  msgid "Download a debug certificate"
1785
1911
  msgstr ""
1786
1912
 
1787
- msgid "Duplicate branches specified - %{branches}"
1913
+ msgid "Duplicate artifact detected"
1788
1914
  msgstr ""
1789
1915
 
1790
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
1791
1916
  msgid "Duration"
1792
1917
  msgstr "காலஇடைவெளி"
1793
1918
 
@@ -1797,17 +1922,24 @@ msgstr ""
1797
1922
  msgid "Edit"
1798
1923
  msgstr ""
1799
1924
 
1925
+ msgid "Edit RPM rule"
1926
+ msgstr ""
1927
+
1928
+ msgid "Edit filter rule"
1929
+ msgstr ""
1930
+
1931
+ msgid "Edit rule"
1932
+ msgstr ""
1933
+
1800
1934
  msgid "Editing Entitlements"
1801
1935
  msgstr ""
1802
1936
 
1803
1937
  msgid "Either both parameters 'content_view_id' and 'environment_id' should be specified or neither should be specified"
1804
1938
  msgstr ""
1805
1939
 
1806
- #, fuzzy
1807
1940
  msgid "Either environments or versions must be specified."
1808
- msgstr "நிறுவன ID அல்லது சூழல் ID குறிப்பிடப்பட வேண்டும்"
1941
+ msgstr ""
1809
1942
 
1810
- # translation auto-copied from project CFSE, version sam-1.2, document app
1811
1943
  msgid "Either organization ID or environment ID needs to be specified"
1812
1944
  msgstr "நிறுவன ID அல்லது சூழல் ID குறிப்பிடப்பட வேண்டும்"
1813
1945
 
@@ -1826,6 +1958,12 @@ msgstr ""
1826
1958
  msgid "Enable Simple Content Access"
1827
1959
  msgstr ""
1828
1960
 
1961
+ msgid "Enable Tracer"
1962
+ msgstr ""
1963
+
1964
+ msgid "Enable Traces"
1965
+ msgstr ""
1966
+
1829
1967
  msgid "Enable a repository from the set"
1830
1968
  msgstr ""
1831
1969
 
@@ -1844,27 +1982,30 @@ msgstr ""
1844
1982
  msgid "Enabling Simple Content Access failed for '%{subject}'."
1845
1983
  msgstr ""
1846
1984
 
1985
+ msgid "Enabling will install the katello-host-tools-tracer package on the host."
1986
+ msgstr ""
1987
+
1847
1988
  msgid "End Date"
1848
1989
  msgstr ""
1849
1990
 
1850
1991
  msgid "Ends"
1851
1992
  msgstr ""
1852
1993
 
1853
- # translation auto-copied from project CFSE, version sam-1.2, document app
1854
1994
  msgid "Enhancement"
1855
1995
  msgstr "மேம்படுத்தல்"
1856
1996
 
1997
+ msgid "Enter a name"
1998
+ msgstr ""
1999
+
1857
2000
  msgid "Entitlements"
1858
2001
  msgstr ""
1859
2002
 
1860
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
1861
2003
  msgid "Environment"
1862
2004
  msgstr "சூழல்"
1863
2005
 
1864
2006
  msgid "Environment IDs"
1865
2007
  msgstr ""
1866
2008
 
1867
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1868
2009
  msgid "Environment cannot be in its own promotion path"
1869
2010
  msgstr "சூழல் உள்ளடக்கம் அதனுடைய சொந்த முன்னேற்ற பார்வை இருக்காது"
1870
2011
 
@@ -1874,30 +2015,29 @@ msgstr ""
1874
2015
  msgid "Environments"
1875
2016
  msgstr ""
1876
2017
 
1877
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
2018
+ msgid "Equal to"
2019
+ msgstr ""
2020
+
1878
2021
  msgid "Errata"
1879
2022
  msgstr "பிழை"
1880
2023
 
1881
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
1882
- #, fuzzy
2024
+ msgid "Errata - by date range"
2025
+ msgstr ""
2026
+
1883
2027
  msgid "Errata ID"
1884
- msgstr "பிழை"
2028
+ msgstr ""
1885
2029
 
1886
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1887
2030
  msgid "Errata Install"
1888
2031
  msgstr "பிழை நிறுவல்"
1889
2032
 
1890
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1891
2033
  msgid "Errata Install scheduled by %s"
1892
2034
  msgstr "பிழை நிறுவல் %s-ஆல் திட்டமிடப்பட்டது"
1893
2035
 
1894
2036
  msgid "Errata id of the erratum (RHSA-2012:108)"
1895
2037
  msgstr ""
1896
2038
 
1897
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1898
- #, fuzzy
1899
2039
  msgid "Errata mail"
1900
- msgstr "பிழை நிறுவல்"
2040
+ msgstr ""
1901
2041
 
1902
2042
  msgid "Errata to exclusively include in the action"
1903
2043
  msgstr ""
@@ -1905,28 +2045,24 @@ msgstr ""
1905
2045
  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."
1906
2046
  msgstr ""
1907
2047
 
1908
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
1909
- #, fuzzy
2048
+ msgid "Errata type"
2049
+ msgstr ""
2050
+
1910
2051
  msgid "Erratum"
1911
- msgstr "பிழை"
2052
+ msgstr ""
1912
2053
 
1913
- # translation auto-copied from project CFSE, version sam-1.2, document app
1914
2054
  msgid "Erratum Install Canceled"
1915
2055
  msgstr "Erratum நிறுவல் ரத்துசெய்யப்பட்டது"
1916
2056
 
1917
- # translation auto-copied from project CFSE, version sam-1.2, document app
1918
2057
  msgid "Erratum Install Complete"
1919
2058
  msgstr "Erratum நிறுவல் முடிவடைந்தது"
1920
2059
 
1921
- # translation auto-copied from project CFSE, version sam-1.2, document app
1922
2060
  msgid "Erratum Install Failed"
1923
2061
  msgstr "Erratum நிறுவல் தோல்வி"
1924
2062
 
1925
- # translation auto-copied from project CFSE, version sam-1.2, document app
1926
2063
  msgid "Erratum Install Timed Out"
1927
2064
  msgstr "Erratum நிறுவல் நேரம் முடிந்தது"
1928
2065
 
1929
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
1930
2066
  msgid "Error"
1931
2067
  msgstr "பிழை"
1932
2068
 
@@ -1948,13 +2084,27 @@ msgstr ""
1948
2084
  msgid "Exclude"
1949
2085
  msgstr ""
1950
2086
 
2087
+ msgid "Exclude all Module Streams with no errata."
2088
+ msgstr ""
2089
+
2090
+ msgid "Exclude all RPMs with no errata."
2091
+ msgstr ""
2092
+
2093
+ msgid "Exclude filter"
2094
+ msgstr ""
2095
+
1951
2096
  msgid "Excluded"
1952
2097
  msgstr ""
1953
2098
 
2099
+ msgid "Excluded errata"
2100
+ msgstr ""
2101
+
2102
+ msgid "Excludes"
2103
+ msgstr ""
2104
+
1954
2105
  msgid "Exit"
1955
2106
  msgstr ""
1956
2107
 
1957
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
1958
2108
  msgid "Expand All"
1959
2109
  msgstr "அனைத்து விரிவாக்கு"
1960
2110
 
@@ -1979,20 +2129,18 @@ msgstr ""
1979
2129
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1980
2130
  msgstr ""
1981
2131
 
2132
+ msgid "Exported content view"
2133
+ msgstr ""
2134
+
1982
2135
  msgid "Exported version"
1983
2136
  msgstr ""
1984
2137
 
1985
- #, fuzzy
1986
2138
  msgid "Facts successfully updated."
1987
- msgstr "வெற்றிகரமாக உருவாக்கப்பட்டது"
2139
+ msgstr ""
1988
2140
 
1989
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
1990
2141
  msgid "Failed"
1991
2142
  msgstr "தோல்வியுற்றது"
1992
2143
 
1993
- msgid "Failed indexing errata, maximum retries encountered"
1994
- msgstr ""
1995
-
1996
2144
  msgid "Failed to delete %{host}: %{errors}"
1997
2145
  msgstr ""
1998
2146
 
@@ -2034,6 +2182,9 @@ msgstr ""
2034
2182
  msgid "File contents"
2035
2183
  msgstr ""
2036
2184
 
2185
+ msgid "Filename"
2186
+ msgstr ""
2187
+
2037
2188
  msgid "Files"
2038
2189
  msgstr ""
2039
2190
 
@@ -2049,6 +2200,12 @@ msgstr ""
2049
2200
  msgid "Filter created"
2050
2201
  msgstr ""
2051
2202
 
2203
+ msgid "Filter deleted"
2204
+ msgstr ""
2205
+
2206
+ msgid "Filter edited"
2207
+ msgstr ""
2208
+
2052
2209
  msgid "Filter only composite content views"
2053
2210
  msgstr ""
2054
2211
 
@@ -2073,7 +2230,19 @@ msgstr ""
2073
2230
  msgid "Filter products by sync plan id"
2074
2231
  msgstr ""
2075
2232
 
2076
- msgid "Filter successfully deleted"
2233
+ msgid "Filter rule added"
2234
+ msgstr ""
2235
+
2236
+ msgid "Filter rule edited"
2237
+ msgstr ""
2238
+
2239
+ msgid "Filter rule removed"
2240
+ msgstr ""
2241
+
2242
+ msgid "Filter rules added"
2243
+ msgstr ""
2244
+
2245
+ msgid "Filter rules deleted"
2077
2246
  msgstr ""
2078
2247
 
2079
2248
  msgid "Filter versions by environment"
@@ -2091,7 +2260,10 @@ msgstr ""
2091
2260
  msgid "Filters"
2092
2261
  msgstr ""
2093
2262
 
2094
- msgid "Filters successfully deleted"
2263
+ msgid "Filters deleted"
2264
+ msgstr ""
2265
+
2266
+ msgid "Finish"
2095
2267
  msgstr ""
2096
2268
 
2097
2269
  msgid "Finish action timeout"
@@ -2114,6 +2286,18 @@ msgstr ""
2114
2286
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
2115
2287
  msgstr ""
2116
2288
 
2289
+ msgid "Force delete the repository by removing it from all content view versions"
2290
+ msgstr ""
2291
+
2292
+ msgid "Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy"
2293
+ msgstr ""
2294
+
2295
+ msgid "Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy."
2296
+ msgstr ""
2297
+
2298
+ msgid "Force promotion"
2299
+ msgstr ""
2300
+
2117
2301
  msgid "Force regenerate applicability."
2118
2302
  msgstr ""
2119
2303
 
@@ -2129,13 +2313,15 @@ msgstr ""
2129
2313
  msgid "Forces a republish of the version's repositories' metadata"
2130
2314
  msgstr ""
2131
2315
 
2316
+ msgid "Full description"
2317
+ msgstr ""
2318
+
2132
2319
  msgid "Fully entitled"
2133
2320
  msgstr ""
2134
2321
 
2135
2322
  msgid "GPG Key URL"
2136
2323
  msgstr ""
2137
2324
 
2138
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
2139
2325
  msgid "Generate and Download"
2140
2326
  msgstr "உருவாக்கிப் பதிவிறக்கவும்"
2141
2327
 
@@ -2148,7 +2334,7 @@ msgstr ""
2148
2334
  msgid "Get all content available, not just that provided by subscriptions"
2149
2335
  msgstr ""
2150
2336
 
2151
- msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
2337
+ msgid "Get all content available, not just that provided by subscriptions."
2152
2338
  msgstr ""
2153
2339
 
2154
2340
  msgid "Get content and overrides for the host"
@@ -2172,9 +2358,21 @@ msgstr ""
2172
2358
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2173
2359
  msgstr ""
2174
2360
 
2361
+ msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2362
+ msgstr ""
2363
+
2364
+ msgid "Given criteria doesn't match any activation keys. Try changing your rule."
2365
+ msgstr ""
2366
+
2367
+ msgid "Given criteria doesn't match any hosts. Try changing your rule."
2368
+ msgstr ""
2369
+
2175
2370
  msgid "Go to task page"
2176
2371
  msgstr ""
2177
2372
 
2373
+ msgid "Greater than"
2374
+ msgstr ""
2375
+
2178
2376
  msgid "Group %{id} already created."
2179
2377
  msgstr ""
2180
2378
 
@@ -2190,13 +2388,18 @@ msgstr ""
2190
2388
  msgid "Has to be > 0"
2191
2389
  msgstr ""
2192
2390
 
2391
+ msgid "Helper"
2392
+ msgstr ""
2393
+
2394
+ msgid "Hide description"
2395
+ msgstr ""
2396
+
2193
2397
  msgid "History"
2194
2398
  msgstr ""
2195
2399
 
2196
2400
  msgid "History will appear here when the content view is published or promoted."
2197
2401
  msgstr ""
2198
2402
 
2199
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
2200
2403
  msgid "Host"
2201
2404
  msgstr "புரவலன்"
2202
2405
 
@@ -2269,6 +2472,9 @@ msgstr ""
2269
2472
  msgid "Host has not been registered with subscription-manager."
2270
2473
  msgstr ""
2271
2474
 
2475
+ msgid "Host id to list applicable deb packages for"
2476
+ msgstr ""
2477
+
2272
2478
  msgid "Host id to list applicable errata for"
2273
2479
  msgstr ""
2274
2480
 
@@ -2287,6 +2493,9 @@ msgstr ""
2287
2493
  msgid "Host with ID %s not found."
2288
2494
  msgstr ""
2289
2495
 
2496
+ msgid "Hosts"
2497
+ msgstr ""
2498
+
2290
2499
  msgid "Hosts with Installable Errata"
2291
2500
  msgstr ""
2292
2501
 
@@ -2296,9 +2505,6 @@ msgstr ""
2296
2505
  msgid "How many repositories should be synced concurrently on the capsule. A smaller number may lead to longer sync times. A larger number will increase dynflow load."
2297
2506
  msgstr ""
2298
2507
 
2299
- msgid "How the logic of solving dependencies in a Content View is managed. Conservative will only add packages to solve the dependencies if the package needed doesn't exist. Greedy will pull in the latest package to solve a dependency even if it already does exist in the repository."
2300
- msgstr ""
2301
-
2302
2508
  msgid "How to order the sorted results (e.g. ASC for ascending)"
2303
2509
  msgstr ""
2304
2510
 
@@ -2362,7 +2568,6 @@ msgstr ""
2362
2568
  msgid "ID of the sync plan"
2363
2569
  msgstr ""
2364
2570
 
2365
- # translation auto-copied from project CFSE, version sam-1.2, document app
2366
2571
  msgid "ID: %s doesn't exist "
2367
2572
  msgstr "ID: %s இல்லை "
2368
2573
 
@@ -2381,10 +2586,10 @@ msgstr ""
2381
2586
  msgid "Id of an erratum to find repositories that contain the erratum"
2382
2587
  msgstr ""
2383
2588
 
2384
- msgid "Id of an ostree branch to find repositories that contain that branch"
2589
+ msgid "Id of the content host"
2385
2590
  msgstr ""
2386
2591
 
2387
- msgid "Id of the content host"
2592
+ msgid "Id of the content view to limit the synchronization on"
2388
2593
  msgstr ""
2389
2594
 
2390
2595
  msgid "Id of the environment to limit the synchronization on"
@@ -2405,6 +2610,9 @@ msgstr ""
2405
2610
  msgid "Id of the organization to limit environments on"
2406
2611
  msgstr ""
2407
2612
 
2613
+ msgid "Id of the repository to limit the synchronization on"
2614
+ msgstr ""
2615
+
2408
2616
  msgid "Id of the smart proxy"
2409
2617
  msgstr ""
2410
2618
 
@@ -2441,16 +2649,16 @@ msgstr ""
2441
2649
  msgid "If hosts fail to register because of duplicate DMI UUIDs add their comma-separated values here. Subsequent registrations will generate a unique DMI UUID for the affected hosts."
2442
2650
  msgstr ""
2443
2651
 
2444
- msgid "If set to true, a composite content view may not be published or promoted, unless the component content view versions that it includes exist in the target environment."
2652
+ msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2445
2653
  msgstr ""
2446
2654
 
2447
- msgid "If set to true, use remote execution instead of katello-agent for remote actions"
2655
+ msgid "If this is enabled, a composite content view may not be published or promoted, unless the component content view versions that it includes exist in the target environment."
2448
2656
  msgstr ""
2449
2657
 
2450
- msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2658
+ msgid "If this is enabled, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
2451
2659
  msgstr ""
2452
2660
 
2453
- msgid "If true, and register_hostname_fact is set and provided, registration will look for a new host by name only using that fact, and will skip all hostname matching"
2661
+ msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
2454
2662
  msgstr ""
2455
2663
 
2456
2664
  msgid "If true, only return repository sets that are associated with an active subscriptions"
@@ -2495,14 +2703,10 @@ msgstr ""
2495
2703
  msgid "Import Default Content View"
2496
2704
  msgstr ""
2497
2705
 
2498
- #, fuzzy
2499
2706
  msgid "Import Manifest"
2500
- msgstr "இறக்குமதிசெய்"
2501
-
2502
- msgid "Import New Manifest"
2503
2707
  msgstr ""
2504
2708
 
2505
- msgid "Import Only"
2709
+ msgid "Import New Manifest"
2506
2710
  msgstr ""
2507
2711
 
2508
2712
  msgid "Import Puppet classes"
@@ -2529,9 +2733,11 @@ msgstr ""
2529
2733
  msgid "Import a content view version to the library"
2530
2734
  msgstr ""
2531
2735
 
2532
- #, fuzzy
2533
2736
  msgid "Import facts"
2534
- msgstr "இறக்குமதிசெய்"
2737
+ msgstr ""
2738
+
2739
+ msgid "Import only"
2740
+ msgstr ""
2535
2741
 
2536
2742
  msgid "Import uploads into a repository"
2537
2743
  msgstr ""
@@ -2542,6 +2748,9 @@ msgstr ""
2542
2748
  msgid "Import-only content views can not be published directly"
2543
2749
  msgstr ""
2544
2750
 
2751
+ msgid "Important"
2752
+ msgstr ""
2753
+
2545
2754
  msgid "Importing manifest into '%{subject}' failed."
2546
2755
  msgstr ""
2547
2756
 
@@ -2554,9 +2763,24 @@ msgstr ""
2554
2763
  msgid "Include"
2555
2764
  msgstr ""
2556
2765
 
2766
+ msgid "Include all Module Streams with no errata."
2767
+ msgstr ""
2768
+
2769
+ msgid "Include all RPMs with no errata."
2770
+ msgstr ""
2771
+
2772
+ msgid "Include filter"
2773
+ msgstr ""
2774
+
2557
2775
  msgid "Included"
2558
2776
  msgstr ""
2559
2777
 
2778
+ msgid "Included errata"
2779
+ msgstr ""
2780
+
2781
+ msgid "Includes"
2782
+ msgstr ""
2783
+
2560
2784
  msgid "Includes associated content view filter ids in response"
2561
2785
  msgstr ""
2562
2786
 
@@ -2575,6 +2799,9 @@ msgstr ""
2575
2799
  msgid "Incremental Update of %{content_view_count} Content View Version(s) "
2576
2800
  msgstr ""
2577
2801
 
2802
+ msgid "Incremental update"
2803
+ msgstr ""
2804
+
2578
2805
  msgid "Incremental update requires at least one content unit"
2579
2806
  msgstr ""
2580
2807
 
@@ -2584,9 +2811,8 @@ msgstr ""
2584
2811
  msgid "Index content"
2585
2812
  msgstr ""
2586
2813
 
2587
- #, fuzzy
2588
2814
  msgid "Index errata"
2589
- msgstr "பிழையை நிறுவுகிறது..."
2815
+ msgstr ""
2590
2816
 
2591
2817
  msgid "Index module streams"
2592
2818
  msgstr ""
@@ -2615,23 +2841,20 @@ msgstr ""
2615
2841
  msgid "Install errata via Katello interface"
2616
2842
  msgstr ""
2617
2843
 
2618
- #, fuzzy
2619
2844
  msgid "Install erratum"
2620
- msgstr "பிழையை நிறுவுகிறது..."
2845
+ msgstr ""
2621
2846
 
2622
2847
  msgid "Install erratum for %s"
2623
2848
  msgstr ""
2624
2849
 
2625
- #, fuzzy
2626
2850
  msgid "Install package"
2627
- msgstr "தொகுப்பை நிறுவுகிறது..."
2851
+ msgstr ""
2628
2852
 
2629
2853
  msgid "Install package for %s"
2630
2854
  msgstr ""
2631
2855
 
2632
- #, fuzzy
2633
2856
  msgid "Install package group"
2634
- msgstr "தொகுப்பு குழுவை நிறுவுகிறது..."
2857
+ msgstr ""
2635
2858
 
2636
2859
  msgid "Install package group via Katello interface"
2637
2860
  msgstr ""
@@ -2642,9 +2865,18 @@ msgstr ""
2642
2865
  msgid "Install packages remotely using katello-agent. %s"
2643
2866
  msgstr ""
2644
2867
 
2868
+ msgid "Installable"
2869
+ msgstr ""
2870
+
2871
+ msgid "Installable Errata"
2872
+ msgstr ""
2873
+
2645
2874
  msgid "Installable errata from Content View"
2646
2875
  msgstr ""
2647
2876
 
2877
+ msgid "Installable errata will appear here when available."
2878
+ msgstr ""
2879
+
2648
2880
  msgid "Installation of errata requested: %{errata}"
2649
2881
  msgstr ""
2650
2882
 
@@ -2654,19 +2886,18 @@ msgstr ""
2654
2886
  msgid "Installation of package(s) requested: %{packages}"
2655
2887
  msgstr ""
2656
2888
 
2657
- # translation auto-copied from project CFSE, version sam-1.2, document app
2658
2889
  msgid "Installed Packages"
2659
2890
  msgstr "நிறுவப்பட்ட தொகுப்புகள்"
2660
2891
 
2661
- # translation auto-copied from project CFSE, version sam-1.2, document app
2892
+ msgid "Installed Version"
2893
+ msgstr ""
2894
+
2662
2895
  msgid "Installing Erratum..."
2663
2896
  msgstr "Erratum ஐ நிறுவுகிறது..."
2664
2897
 
2665
- # translation auto-copied from project CFSE, version sam-1.2, document app
2666
2898
  msgid "Installing Package Group..."
2667
2899
  msgstr "தொகுப்பு குழுவை நிறுவுகிறது..."
2668
2900
 
2669
- # translation auto-copied from project CFSE, version sam-1.2, document app
2670
2901
  msgid "Installing Package..."
2671
2902
  msgstr "தொகுப்பை நிறுவுகிறது..."
2672
2903
 
@@ -2691,16 +2922,17 @@ msgstr ""
2691
2922
  msgid "Invalid"
2692
2923
  msgstr ""
2693
2924
 
2925
+ msgid "Invalid SSL CA certificate given for CDN"
2926
+ msgstr ""
2927
+
2694
2928
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
2695
2929
  msgstr ""
2696
2930
 
2697
- #, fuzzy
2698
2931
  msgid "Invalid content label: %s"
2699
- msgstr "தவறான நிலை"
2932
+ msgstr ""
2700
2933
 
2701
- #, fuzzy
2702
2934
  msgid "Invalid content type %s"
2703
- msgstr "தவறான நிலை"
2935
+ msgstr ""
2704
2936
 
2705
2937
  msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
2706
2938
  msgstr ""
@@ -2714,9 +2946,8 @@ msgstr ""
2714
2946
  msgid "Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'"
2715
2947
  msgstr ""
2716
2948
 
2717
- #, fuzzy
2718
2949
  msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
2719
- msgstr "தவறான மறுமூல வகை '%{resource_type}'. மறுமூல வகைகள் '%{possible_types}' ஒன்று இருக்க முடியாது"
2950
+ msgstr ""
2720
2951
 
2721
2952
  msgid "Invalid event_type %s"
2722
2953
  msgstr ""
@@ -2724,11 +2955,12 @@ msgstr ""
2724
2955
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2725
2956
  msgstr ""
2726
2957
 
2727
- # translation auto-copied from project CFSE, version sam-1.2, document app
2958
+ msgid "Invalid mirroring policy for repository type %{type}, only %{policies} are valid."
2959
+ msgstr ""
2960
+
2728
2961
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2729
2962
  msgstr "இந்த செயலுக்கான கோரிக்கையில் தவறான அளவுருக்கள் அனுப்பப்பட்டன. கணினி நிர்வாகி ஒருவரைத் தொடர்பு கொள்ளவும்."
2730
2963
 
2731
- # translation auto-copied from project CFSE, version sam-1.2, document app
2732
2964
  msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
2733
2965
  msgstr "தவறான அளவுருக்கள் அனுப்பப்பட்டது. நீங்கள் முகவரியை தட்டச்சு செய்ததில் பிழை இருக்கலாம். தொடர்ந்து இந்த சிக்கல் இருந்தால், நிர்வாகி ஒருவரைத் தொடர்பு கொள்ளவும்."
2734
2966
 
@@ -2747,6 +2979,9 @@ msgstr ""
2747
2979
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2748
2980
  msgstr ""
2749
2981
 
2982
+ msgid "Issued"
2983
+ msgstr ""
2984
+
2750
2985
  msgid "Katello ID of local pool to update"
2751
2986
  msgstr ""
2752
2987
 
@@ -2768,6 +3003,9 @@ msgstr ""
2768
3003
  msgid "Katello: Remove Package Group"
2769
3004
  msgstr ""
2770
3005
 
3006
+ msgid "Katello: Resolve Traces"
3007
+ msgstr ""
3008
+
2771
3009
  msgid "Katello: Service Restart"
2772
3010
  msgstr ""
2773
3011
 
@@ -2816,9 +3054,17 @@ msgstr ""
2816
3054
  msgid "Learn more about adding Subscription Manifests"
2817
3055
  msgstr ""
2818
3056
 
2819
- #, fuzzy
3057
+ msgid "Leave blank if consuming Red Hat Content from the Default Content View or CDN "
3058
+ msgstr ""
3059
+
3060
+ msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
3061
+ msgstr ""
3062
+
3063
+ msgid "Less than"
3064
+ msgstr ""
3065
+
2820
3066
  msgid "Library lifecycle environments may not be deleted."
2821
- msgstr "சூழல் '%s' அழிக்கப்பட்டது."
3067
+ msgstr ""
2822
3068
 
2823
3069
  msgid "Library repository id to restrict comparisons to"
2824
3070
  msgstr ""
@@ -2838,9 +3084,11 @@ msgstr ""
2838
3084
  msgid "Lifecycle Environment ID"
2839
3085
  msgstr ""
2840
3086
 
2841
- #, fuzzy
3087
+ msgid "Lifecycle Environment Label"
3088
+ msgstr ""
3089
+
2842
3090
  msgid "Lifecycle Environments"
2843
- msgstr "சூழல்களால்"
3091
+ msgstr ""
2844
3092
 
2845
3093
  msgid "Lifecycle environment"
2846
3094
  msgstr ""
@@ -2863,15 +3111,24 @@ msgstr ""
2863
3111
  msgid "Limit content to just that available in the activation key's content view version"
2864
3112
  msgstr ""
2865
3113
 
2866
- msgid "Limit content to just that available in the activation key's content view version. Relevant for Activation Keys only"
3114
+ msgid "Limit content to just that available in the host's content view version"
2867
3115
  msgstr ""
2868
3116
 
2869
- msgid "Limit content to just that available in the host's content view version"
3117
+ msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3118
+ msgstr ""
3119
+
3120
+ msgid "Limit to environment"
2870
3121
  msgstr ""
2871
3122
 
2872
3123
  msgid "Limits"
2873
3124
  msgstr ""
2874
3125
 
3126
+ msgid "List %s"
3127
+ msgstr ""
3128
+
3129
+ msgid "List :resource"
3130
+ msgstr ""
3131
+
2875
3132
  msgid "List :resource_id"
2876
3133
  msgstr ""
2877
3134
 
@@ -2908,6 +3165,9 @@ msgstr ""
2908
3165
  msgid "List content views"
2909
3166
  msgstr ""
2910
3167
 
3168
+ msgid "List deb packages"
3169
+ msgstr ""
3170
+
2911
3171
  msgid "List deb packages installed on the host"
2912
3172
  msgstr ""
2913
3173
 
@@ -3094,6 +3354,9 @@ msgstr ""
3094
3354
  msgid "Loading"
3095
3355
  msgstr ""
3096
3356
 
3357
+ msgid "Loading versions"
3358
+ msgstr ""
3359
+
3097
3360
  msgid "Make copy of a content view"
3098
3361
  msgstr ""
3099
3362
 
@@ -3142,6 +3405,9 @@ msgstr ""
3142
3405
  msgid "Matched"
3143
3406
  msgstr ""
3144
3407
 
3408
+ msgid "Matching content"
3409
+ msgstr ""
3410
+
3145
3411
  msgid "Max %(maxQuantity)s"
3146
3412
  msgstr ""
3147
3413
 
@@ -3154,6 +3420,9 @@ msgstr ""
3154
3420
  msgid "Maximum number of hosts in the host collection"
3155
3421
  msgstr ""
3156
3422
 
3423
+ msgid "Maximum version"
3424
+ msgstr ""
3425
+
3157
3426
  msgid "May not add a type or date range rule to a filter that has existing rules."
3158
3427
  msgstr ""
3159
3428
 
@@ -3166,16 +3435,21 @@ msgstr ""
3166
3435
  msgid "Medium IDs"
3167
3436
  msgstr ""
3168
3437
 
3169
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
3170
3438
  msgid "Message"
3171
3439
  msgstr "செய்தி"
3172
3440
 
3173
3441
  msgid "Messaging connection"
3174
3442
  msgstr ""
3175
3443
 
3444
+ msgid "Metadata republishing must be forced because it is a dangerous operation."
3445
+ msgstr ""
3446
+
3176
3447
  msgid "Metadata taken from the upstream export history for this Content View Version"
3177
3448
  msgstr ""
3178
3449
 
3450
+ msgid "Minimum version"
3451
+ msgstr ""
3452
+
3179
3453
  msgid "Mismatched"
3180
3454
  msgstr ""
3181
3455
 
@@ -3185,6 +3459,12 @@ msgstr ""
3185
3459
  msgid "Missing arguments %{substitutions} for %{content_url}"
3186
3460
  msgstr ""
3187
3461
 
3462
+ msgid "Moderate"
3463
+ msgstr ""
3464
+
3465
+ msgid "Modular"
3466
+ msgstr ""
3467
+
3188
3468
  msgid "Module Stream"
3189
3469
  msgstr ""
3190
3470
 
@@ -3197,6 +3477,9 @@ msgstr ""
3197
3477
  msgid "Module stream"
3198
3478
  msgstr ""
3199
3479
 
3480
+ msgid "Module streams"
3481
+ msgstr ""
3482
+
3200
3483
  msgid "Multi-entitlement"
3201
3484
  msgstr ""
3202
3485
 
@@ -3252,15 +3535,11 @@ msgstr ""
3252
3535
  msgid "Nest"
3253
3536
  msgstr ""
3254
3537
 
3255
- # translation auto-copied from project CFSE, version sam-1.2, document app
3256
- #, fuzzy
3257
3538
  msgid "Never Synced"
3258
- msgstr "ஒருபோதும் செக் இன் செய்யவில்லை"
3539
+ msgstr ""
3259
3540
 
3260
- # translation auto-copied from project CFSE, version sam-1.2, document app
3261
- #, fuzzy
3262
3541
  msgid "New Errata"
3263
- msgstr "Errata வைத் தேடு"
3542
+ msgstr ""
3264
3543
 
3265
3544
  msgid "New Files: %s"
3266
3545
  msgstr ""
@@ -3274,10 +3553,8 @@ msgstr ""
3274
3553
  msgid "New host collection name"
3275
3554
  msgstr ""
3276
3555
 
3277
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
3278
- #, fuzzy
3279
3556
  msgid "New name cannot be blank"
3280
- msgstr "காலியாக இருக்கக்கூடாது"
3557
+ msgstr ""
3281
3558
 
3282
3559
  msgid "New name for the content view"
3283
3560
  msgstr ""
@@ -3300,7 +3577,6 @@ msgstr ""
3300
3577
  msgid "No Activation keys to select"
3301
3578
  msgstr ""
3302
3579
 
3303
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
3304
3580
  msgid "No Content View"
3305
3581
  msgstr "உள்ளடக்கக் காட்சி இல்லை"
3306
3582
 
@@ -3316,7 +3592,6 @@ msgstr ""
3316
3592
  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."
3317
3593
  msgstr ""
3318
3594
 
3319
- # translation auto-copied from project CFSE, version sam-1.2, document app
3320
3595
  msgid "No Service Level Preference"
3321
3596
  msgstr "சேவை நிலை விருப்பத்தேர்வுகள் இல்லை"
3322
3597
 
@@ -3326,15 +3601,23 @@ msgstr ""
3326
3601
  msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
3327
3602
  msgstr ""
3328
3603
 
3604
+ msgid "No applicable errata"
3605
+ msgstr ""
3606
+
3329
3607
  msgid "No applicable errata for %s, skipping"
3330
3608
  msgstr ""
3331
3609
 
3332
3610
  msgid "No artifacts to show"
3333
3611
  msgstr ""
3334
3612
 
3335
- #, fuzzy
3613
+ msgid "No content"
3614
+ msgstr ""
3615
+
3616
+ msgid "No content added."
3617
+ msgstr ""
3618
+
3336
3619
  msgid "No content has been provided."
3337
- msgstr "குறைந்தது ஒரு செயல்பாட்டு விசையாவது கொடுக்க வேண்டும்"
3620
+ msgstr ""
3338
3621
 
3339
3622
  msgid "No content ids provided"
3340
3623
  msgstr ""
@@ -3342,6 +3625,9 @@ msgstr ""
3342
3625
  msgid "No content view history events found."
3343
3626
  msgstr ""
3344
3627
 
3628
+ msgid "No content views available"
3629
+ msgstr ""
3630
+
3345
3631
  msgid "No content views belong to ${label}"
3346
3632
  msgstr ""
3347
3633
 
@@ -3360,10 +3646,12 @@ msgstr ""
3360
3646
  msgid "No environments"
3361
3647
  msgstr ""
3362
3648
 
3363
- msgid "No errata has been specified."
3649
+ msgid "No errata available for this content view."
3650
+ msgstr ""
3651
+
3652
+ msgid "No errata available to add to this filter."
3364
3653
  msgstr ""
3365
3654
 
3366
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3367
3655
  msgid "No errors"
3368
3656
  msgstr "பிழைகள் இல்லை"
3369
3657
 
@@ -3385,49 +3673,75 @@ msgstr ""
3385
3673
  msgid "No installed packages and/or enabled repositories have been reported by %s."
3386
3674
  msgstr ""
3387
3675
 
3676
+ msgid "No items have been specified."
3677
+ msgstr ""
3678
+
3388
3679
  msgid "No manifest file uploaded"
3389
3680
  msgstr ""
3390
3681
 
3391
3682
  msgid "No manifest found. Import a manifest with the appropriate subscriptions before importing content."
3392
3683
  msgstr ""
3393
3684
 
3685
+ msgid "No matching "
3686
+ msgstr ""
3687
+
3688
+ msgid "No matching ${selectedContentType} found"
3689
+ msgstr ""
3690
+
3691
+ msgid "No matching RPM found."
3692
+ msgstr ""
3693
+
3694
+ msgid "No matching activation keys found."
3695
+ msgstr ""
3696
+
3394
3697
  msgid "No matching content views found"
3395
3698
  msgstr ""
3396
3699
 
3700
+ msgid "No matching errata found"
3701
+ msgstr ""
3702
+
3703
+ msgid "No matching filter rules found."
3704
+ msgstr ""
3705
+
3397
3706
  msgid "No matching filters found"
3398
3707
  msgstr ""
3399
3708
 
3400
3709
  msgid "No matching history record found"
3401
3710
  msgstr ""
3402
3711
 
3403
- msgid "No matching package groups found."
3712
+ msgid "No matching hosts found."
3713
+ msgstr ""
3714
+
3715
+ msgid "No matching packages found"
3404
3716
  msgstr ""
3405
3717
 
3406
3718
  msgid "No matching repositories found"
3407
3719
  msgstr ""
3408
3720
 
3721
+ msgid "No matching repository sets found"
3722
+ msgstr ""
3723
+
3409
3724
  msgid "No matching rules found."
3410
3725
  msgstr ""
3411
3726
 
3727
+ msgid "No matching traces found"
3728
+ msgstr ""
3729
+
3412
3730
  msgid "No matching version found"
3413
3731
  msgstr ""
3414
3732
 
3415
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3416
3733
  msgid "No new packages installed"
3417
3734
  msgstr "புதிய தொகுப்புகள் எதுவும் நிறுவப்படவில்லை"
3418
3735
 
3419
- #, fuzzy
3420
3736
  msgid "No new packages."
3421
- msgstr "புதிய தொகுப்புகள் எதுவும் நிறுவப்படவில்லை"
3737
+ msgstr ""
3422
3738
 
3423
- msgid "No package groups have been added to this filter."
3739
+ msgid "No packages"
3424
3740
  msgstr ""
3425
3741
 
3426
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3427
3742
  msgid "No packages removed"
3428
3743
  msgstr "தொகுப்புகள் எதுவும் நீக்கப்படவில்லை"
3429
3744
 
3430
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3431
3745
  msgid "No packages updated"
3432
3746
  msgstr "தொகுப்புகள் எதுவும் புதுப்பிக்கப்படவில்லை"
3433
3747
 
@@ -3452,6 +3766,12 @@ msgstr ""
3452
3766
  msgid "No pulp workers running."
3453
3767
  msgstr ""
3454
3768
 
3769
+ msgid "No pulpcore content apps are running at %s."
3770
+ msgstr ""
3771
+
3772
+ msgid "No pulpcore workers are running at %s."
3773
+ msgstr ""
3774
+
3455
3775
  msgid "No recently synced products"
3456
3776
  msgstr ""
3457
3777
 
@@ -3464,21 +3784,26 @@ msgstr ""
3464
3784
  msgid "No repositories enabled."
3465
3785
  msgstr ""
3466
3786
 
3787
+ msgid "No repositories selected."
3788
+ msgstr ""
3789
+
3467
3790
  msgid "No repositories to show"
3468
3791
  msgstr ""
3469
3792
 
3470
3793
  msgid "No repository sets match your search criteria."
3471
3794
  msgstr ""
3472
3795
 
3796
+ msgid "No repository sets to show."
3797
+ msgstr ""
3798
+
3473
3799
  msgid "No rules have been added to this filter."
3474
3800
  msgstr ""
3475
3801
 
3476
3802
  msgid "No services defined, is this class extended?"
3477
3803
  msgstr ""
3478
3804
 
3479
- #, fuzzy
3480
3805
  msgid "No start time currently available."
3481
- msgstr "விநியோகங்கள்"
3806
+ msgstr ""
3482
3807
 
3483
3808
  msgid "No subscriptions match your search criteria."
3484
3809
  msgstr ""
@@ -3495,11 +3820,9 @@ msgstr ""
3495
3820
  msgid "Non-security errata installable"
3496
3821
  msgstr ""
3497
3822
 
3498
- #, fuzzy
3499
3823
  msgid "Non-system event"
3500
- msgstr "சிஸ்டம்கள்"
3824
+ msgstr ""
3501
3825
 
3502
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
3503
3826
  msgid "None"
3504
3827
  msgstr "ஒன்றுமில்லாத"
3505
3828
 
@@ -3524,6 +3847,9 @@ msgstr ""
3524
3847
  msgid "Not yet published"
3525
3848
  msgstr ""
3526
3849
 
3850
+ msgid "Note: Deleting a subscription manifest is STRONGLY discouraged. Deleting a manifest will:"
3851
+ msgstr ""
3852
+
3527
3853
  msgid "Note: The number in parentheses reflects all applicable errata from the Library environment that are unavailable to the host. You will need to promote this content to the relevant content view in order to make it available."
3528
3854
  msgstr ""
3529
3855
 
@@ -3542,16 +3868,19 @@ msgstr ""
3542
3868
  msgid "Number to Allocate"
3543
3869
  msgstr ""
3544
3870
 
3545
- msgid "OSTree"
3871
+ msgid "OSTree Branch"
3546
3872
  msgstr ""
3547
3873
 
3548
- msgid "OSTree Branch"
3874
+ msgid "OSTree Ref"
3875
+ msgstr ""
3876
+
3877
+ msgid "OSTree Refs"
3549
3878
  msgstr ""
3550
3879
 
3551
- msgid "OSTree Branches"
3880
+ msgid "OSTree ref"
3552
3881
  msgstr ""
3553
3882
 
3554
- msgid "OSTree Repositories cannot be unprotected."
3883
+ msgid "OSTree refs"
3555
3884
  msgstr ""
3556
3885
 
3557
3886
  msgid "Object to show subscriptions available for, either 'host' or 'activation_key'"
@@ -3566,9 +3895,8 @@ msgstr ""
3566
3895
  msgid "On-disk location for pulp 3 exported repositories"
3567
3896
  msgstr ""
3568
3897
 
3569
- #, fuzzy
3570
3898
  msgid "One of parameters [ %s ] required but not specified."
3571
- msgstr "organization_id அவசியம், ஆனால் குறிப்பிடப்படவில்லை."
3899
+ msgstr ""
3572
3900
 
3573
3901
  msgid "One of yum or docker"
3574
3902
  msgstr ""
@@ -3579,14 +3907,18 @@ msgstr ""
3579
3907
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
3580
3908
  msgstr ""
3581
3909
 
3582
- #, fuzzy
3583
3910
  msgid "One or more packages failed to sync properly."
3584
- msgstr "ஒன்று அல்லது மேற்பட்ட errata வழங்கப்பட வேன்டும்"
3911
+ msgstr ""
3585
3912
 
3586
3913
  msgid "One or more processes require restarting"
3587
3914
  msgstr ""
3588
3915
 
3589
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3916
+ msgid "Only On Demand repositories may have space reclaimed."
3917
+ msgstr ""
3918
+
3919
+ msgid "Only On Demand smart proxies may have space reclaimed."
3920
+ msgstr ""
3921
+
3590
3922
  msgid "Only one Red Hat provider permitted for an Organization"
3591
3923
  msgstr "ஒரு நிறுவனத்திற்காக ஒரே ஒரு Red Hat வழங்குநர் மட்டும் அனுமதிக்கப்பட்டனர்"
3592
3924
 
@@ -3596,7 +3928,6 @@ msgstr ""
3596
3928
  msgid "Operators"
3597
3929
  msgstr ""
3598
3930
 
3599
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
3600
3931
  msgid "Organization"
3601
3932
  msgstr "நிறுவனம்"
3602
3933
 
@@ -3612,7 +3943,9 @@ msgstr ""
3612
3943
  msgid "Organization Information not provided."
3613
3944
  msgstr ""
3614
3945
 
3615
- # translation auto-copied from project CFSE, version sam-1.2, document app
3946
+ msgid "Organization Label"
3947
+ msgstr ""
3948
+
3616
3949
  msgid "Organization cannot be blank."
3617
3950
  msgstr "நிறுவனம் காலியாக இருக்காது."
3618
3951
 
@@ -3628,14 +3961,21 @@ msgstr ""
3628
3961
  msgid "Organization not found"
3629
3962
  msgstr ""
3630
3963
 
3631
- #, fuzzy
3632
3964
  msgid "Organization required"
3633
- msgstr "நிறுவனம்"
3965
+ msgstr ""
3966
+
3967
+ msgid "Orphaned Content Protection Time"
3968
+ msgstr ""
3634
3969
 
3635
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
3636
3970
  msgid "Other"
3637
3971
  msgstr "மற்றவை"
3638
3972
 
3973
+ msgid "Other Content Types"
3974
+ msgstr ""
3975
+
3976
+ msgid "Overridden"
3977
+ msgstr ""
3978
+
3639
3979
  msgid "Override content for activation_key"
3640
3980
  msgstr ""
3641
3981
 
@@ -3654,100 +3994,81 @@ msgstr ""
3654
3994
  msgid "Override to a boolean value or 'default'"
3655
3995
  msgstr ""
3656
3996
 
3997
+ msgid "Override to disabled"
3998
+ msgstr ""
3999
+
4000
+ msgid "Override to enabled"
4001
+ msgstr ""
4002
+
3657
4003
  msgid "Override value. Provide a boolean value if name is 'enabled'"
3658
4004
  msgstr ""
3659
4005
 
3660
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
3661
- #, fuzzy
3662
4006
  msgid "Package"
3663
- msgstr "தொகுப்புகள்"
4007
+ msgstr ""
3664
4008
 
3665
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
3666
- #, fuzzy
3667
4009
  msgid "Package Group"
3668
- msgstr "தொகுப்பு குழுக்கள்"
4010
+ msgstr ""
3669
4011
 
3670
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3671
4012
  msgid "Package Group Install"
3672
4013
  msgstr "தொகுப்பு குழு நிறுவல்"
3673
4014
 
3674
- # translation auto-copied from project CFSE, version sam-1.2, document app
3675
4015
  msgid "Package Group Install Canceled"
3676
4016
  msgstr "தொகுப்பு குழு நிறுவல் ரத்துசெய்யப்பட்டது"
3677
4017
 
3678
- # translation auto-copied from project CFSE, version sam-1.2, document app
3679
4018
  msgid "Package Group Install Complete"
3680
4019
  msgstr "தொகுப்பு குழு நிறுவல் முடிவடைந்தது"
3681
4020
 
3682
- # translation auto-copied from project CFSE, version sam-1.2, document app
3683
4021
  msgid "Package Group Install Failed"
3684
4022
  msgstr "தொகுப்பு குழு நிறுவல் தோல்வி"
3685
4023
 
3686
- # translation auto-copied from project CFSE, version sam-1.2, document app
3687
4024
  msgid "Package Group Install Timed Out"
3688
4025
  msgstr "தொகுப்பு குழு நிறுவல் நேரம் முடிந்தது"
3689
4026
 
3690
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3691
4027
  msgid "Package Group Install scheduled by %s"
3692
4028
  msgstr "தொகுப்பு குழு நிறுவல் %s-ஆல் திட்டமிடப்பட்டது"
3693
4029
 
3694
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3695
4030
  msgid "Package Group Remove"
3696
4031
  msgstr "தொகுப்பு குழு நீக்கல்"
3697
4032
 
3698
- # translation auto-copied from project CFSE, version sam-1.2, document app
3699
4033
  msgid "Package Group Remove Canceled"
3700
4034
  msgstr "தொகுப்பு குழு நீக்கல் ரத்துசெய்யப்பட்டது"
3701
4035
 
3702
- # translation auto-copied from project CFSE, version sam-1.2, document app
3703
4036
  msgid "Package Group Remove Complete"
3704
4037
  msgstr "தொகுப்பு குழு நீக்கல் முடிவடைந்தது"
3705
4038
 
3706
- # translation auto-copied from project CFSE, version sam-1.2, document app
3707
4039
  msgid "Package Group Remove Failed"
3708
4040
  msgstr "தொகுப்பு குழு நீக்கல் தோல்வி"
3709
4041
 
3710
- # translation auto-copied from project CFSE, version sam-1.2, document app
3711
4042
  msgid "Package Group Remove Timed Out"
3712
4043
  msgstr "தொகுப்பு குழுவை நீக்க நேரம் முடிந்தது"
3713
4044
 
3714
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3715
4045
  msgid "Package Group Remove scheduled by %s"
3716
4046
  msgstr "தொகுப்பு குழு நீக்கல் %s-ஆல் திட்டமிடப்பட்டது"
3717
4047
 
3718
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3719
4048
  msgid "Package Group Update"
3720
4049
  msgstr "தொகுப்பு குழு புதுப்பித்தல்"
3721
4050
 
3722
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3723
4051
  msgid "Package Group Update scheduled by %s"
3724
4052
  msgstr "தொகுப்பு குழு புதுப்பித்தல் %s-ஆல் திட்டமிடப்பட்டது"
3725
4053
 
3726
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
3727
4054
  msgid "Package Groups"
3728
4055
  msgstr "தொகுப்பு குழுக்கள்"
3729
4056
 
3730
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3731
4057
  msgid "Package Install"
3732
4058
  msgstr "தொகுப்பு நிறுவல்"
3733
4059
 
3734
- # translation auto-copied from project CFSE, version sam-1.2, document app
3735
4060
  msgid "Package Install Canceled"
3736
4061
  msgstr "தொகுப்பு நிறுவல் ரத்துசெய்யப்பட்டது"
3737
4062
 
3738
- # translation auto-copied from project CFSE, version sam-1.2, document app
3739
4063
  msgid "Package Install Complete"
3740
4064
  msgstr "தொகுப்பு நிறுவல் முடிவடைந்தது"
3741
4065
 
3742
- # translation auto-copied from project CFSE, version sam-1.2, document app
3743
4066
  msgid "Package Install Failed"
3744
4067
  msgstr "தொகுப்பு நிறுவல் தோல்வி"
3745
4068
 
3746
- # translation auto-copied from project CFSE, version sam-1.2, document app
3747
4069
  msgid "Package Install Timed Out"
3748
4070
  msgstr "தொகுப்பு நிறுவல் நேரம் முடிந்தது"
3749
4071
 
3750
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3751
4072
  msgid "Package Install scheduled by %s"
3752
4073
  msgstr "தொகுப்பு நிறுவல் %s-ஆல் திட்டமிடப்பட்டது"
3753
4074
 
@@ -3757,67 +4078,57 @@ msgstr ""
3757
4078
  msgid "Package Profile Update for %s"
3758
4079
  msgstr ""
3759
4080
 
3760
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3761
4081
  msgid "Package Remove"
3762
4082
  msgstr "தொகுப்பு நீக்கல்"
3763
4083
 
3764
- # translation auto-copied from project CFSE, version sam-1.2, document app
3765
4084
  msgid "Package Remove Canceled"
3766
4085
  msgstr "தொகுப்பு நீக்கல் ரத்துசெய்யப்பட்டது"
3767
4086
 
3768
- # translation auto-copied from project CFSE, version sam-1.2, document app
3769
4087
  msgid "Package Remove Complete"
3770
4088
  msgstr "தொகுப்பு நீக்கல் முடிவடைந்தது"
3771
4089
 
3772
- # translation auto-copied from project CFSE, version sam-1.2, document app
3773
4090
  msgid "Package Remove Failed"
3774
4091
  msgstr "தொகுப்பு நீக்கல் தோல்வி"
3775
4092
 
3776
- # translation auto-copied from project CFSE, version sam-1.2, document app
3777
4093
  msgid "Package Remove Timed Out"
3778
4094
  msgstr "தொகுப்பு நீக்கல் நேரம் முடிந்தது"
3779
4095
 
3780
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3781
4096
  msgid "Package Remove scheduled by %s"
3782
4097
  msgstr "தொகுப்பு நீக்கல் %s-ஆல் திட்டமிடப்பட்டது"
3783
4098
 
3784
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4099
+ msgid "Package Type"
4100
+ msgstr ""
4101
+
4102
+ msgid "Package Types"
4103
+ msgstr ""
4104
+
3785
4105
  msgid "Package Update"
3786
4106
  msgstr "தொகுப்பு புதுப்பித்தல்"
3787
4107
 
3788
- # translation auto-copied from project CFSE, version sam-1.2, document app
3789
4108
  msgid "Package Update Canceled"
3790
4109
  msgstr "தொகுப்பு புதுப்பித்தல் ரத்துசெய்யப்பட்டது"
3791
4110
 
3792
- # translation auto-copied from project CFSE, version sam-1.2, document app
3793
4111
  msgid "Package Update Complete"
3794
4112
  msgstr "தொகுப்பு புதுப்பித்தல் முடிவடைந்தது"
3795
4113
 
3796
- # translation auto-copied from project CFSE, version sam-1.2, document app
3797
4114
  msgid "Package Update Failed"
3798
4115
  msgstr "தொகுப்பு புதுப்பித்தல் தோல்வி"
3799
4116
 
3800
- # translation auto-copied from project CFSE, version sam-1.2, document app
3801
4117
  msgid "Package Update Timed Out"
3802
4118
  msgstr "தொகுப்பு புதுப்பித்தல் நேரம் முடிந்தது"
3803
4119
 
3804
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
3805
4120
  msgid "Package Update scheduled by %s"
3806
4121
  msgstr "தொகுப்பு புதுப்பித்தல் %s-ஆல் திட்டமிடப்பட்டது"
3807
4122
 
3808
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
3809
4123
  msgid "Package group update canceled"
3810
4124
  msgstr "தொகுப்பு குழு புதுப்பிப்பு ரத்துசெய்யப்பட்டது"
3811
4125
 
3812
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
3813
4126
  msgid "Package group update complete"
3814
4127
  msgstr "தொகுப்பு குழு புதுப்பித்தல் முடிவடைந்தது"
3815
4128
 
3816
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
3817
4129
  msgid "Package group update failed"
3818
4130
  msgstr "தொகுப்பு குழு புதுப்பிப்பு தோல்வி"
3819
4131
 
3820
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
3821
4132
  msgid "Package group update timed out"
3822
4133
  msgstr "தொகுப்பு குழுவை புதுப்பிக்க நேரம் முடிந்தது"
3823
4134
 
@@ -3827,22 +4138,27 @@ msgstr ""
3827
4138
  msgid "Package identifiers to filter content by"
3828
4139
  msgstr ""
3829
4140
 
3830
- #, fuzzy
3831
4141
  msgid "Package install failed: \"%{package}\""
3832
- msgstr "தொகுப்பு நிறுவல் தோல்வி"
4142
+ msgstr ""
3833
4143
 
3834
- #, fuzzy
3835
4144
  msgid "Package installation: \"%{package}\" "
3836
- msgstr "தொகுப்பு நிறுவல் ரத்துசெய்யப்பட்டது"
4145
+ msgstr ""
4146
+
4147
+ msgid "Package types to sync for Python content, separated by comma. Leave empty to get every package type. Package types are: bdist_dmg, bdist_dumb, bdist_egg, bdist_msi, bdist_rpm, bdist_wheel, bdist_wininst, sdist."
4148
+ msgstr ""
3837
4149
 
3838
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
3839
4150
  msgid "Packages"
3840
4151
  msgstr "தொகுப்புகள்"
3841
4152
 
3842
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4153
+ msgid "Packages management functionality on this page is incomplete"
4154
+ msgstr ""
4155
+
3843
4156
  msgid "Packages must be provided"
3844
4157
  msgstr "தொகுப்புகள் வழங்கப்பட வேண்டும்"
3845
4158
 
4159
+ msgid "Packages will appear here when available."
4160
+ msgstr ""
4161
+
3846
4162
  msgid "Page number, starting at 1"
3847
4163
  msgstr ""
3848
4164
 
@@ -3855,12 +4171,24 @@ msgstr ""
3855
4171
  msgid "Partition template IDs"
3856
4172
  msgstr ""
3857
4173
 
4174
+ msgid "Password"
4175
+ msgstr ""
4176
+
4177
+ msgid "Password for authentication"
4178
+ msgstr ""
4179
+
4180
+ msgid "Password of the upstream authentication token."
4181
+ msgstr ""
4182
+
3858
4183
  msgid "Password of the upstream repository user used for authentication"
3859
4184
  msgstr ""
3860
4185
 
3861
4186
  msgid "Password to access URL"
3862
4187
  msgstr ""
3863
4188
 
4189
+ msgid "Path"
4190
+ msgstr ""
4191
+
3864
4192
  msgid "Path for ssl cert used for pulp server auth"
3865
4193
  msgstr ""
3866
4194
 
@@ -3870,10 +4198,8 @@ msgstr ""
3870
4198
  msgid "Paused"
3871
4199
  msgstr ""
3872
4200
 
3873
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
3874
- #, fuzzy
3875
4201
  msgid "Pending"
3876
- msgstr "இயங்குகிறது"
4202
+ msgstr ""
3877
4203
 
3878
4204
  msgid "Perform a module stream action via Katello interface"
3879
4205
  msgstr ""
@@ -3893,13 +4219,11 @@ msgstr ""
3893
4219
  msgid "Performs an incremental-export of the repositories in library."
3894
4220
  msgstr ""
3895
4221
 
3896
- # translation auto-copied from project CFSE, version sam-1.2, document app
3897
4222
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3898
4223
  msgstr "அனுமதி மறுக்கப்பட்டது. பயனர் '%{user}' க்கு நிறுவனம் '%{org}' ஐ அணுக அனுமதிகள் இல்லை."
3899
4224
 
3900
- # translation auto-copied from project Subscription Manager, version 1.8.X, document keys
3901
4225
  msgid "Physical"
3902
- msgstr "பருநிலை"
4226
+ msgstr ""
3903
4227
 
3904
4228
  msgid "Plan numeric identifier"
3905
4229
  msgstr ""
@@ -3937,6 +4261,12 @@ msgstr ""
3937
4261
  msgid "Please select one from the list below and you will be redirected."
3938
4262
  msgstr ""
3939
4263
 
4264
+ msgid "Please wait while the task starts.."
4265
+ msgstr ""
4266
+
4267
+ msgid "Policy to set for mirroring content. Must be one of %s."
4268
+ msgstr ""
4269
+
3940
4270
  msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3941
4271
  msgstr ""
3942
4272
 
@@ -3946,7 +4276,6 @@ msgstr ""
3946
4276
  msgid "Processing metadata."
3947
4277
  msgstr ""
3948
4278
 
3949
- # translation auto-copied from project Subscription Manager, version 1.8.X, document keys
3950
4279
  msgid "Product"
3951
4280
  msgstr "தயாரிப்பு"
3952
4281
 
@@ -3959,6 +4288,9 @@ msgstr ""
3959
4288
  msgid "Product ID"
3960
4289
  msgstr ""
3961
4290
 
4291
+ msgid "Product Name"
4292
+ msgstr ""
4293
+
3962
4294
  msgid "Product and Repositories"
3963
4295
  msgstr ""
3964
4296
 
@@ -3991,7 +4323,6 @@ msgstr ""
3991
4323
  msgid "Product: '%{product}', Repository: '%{repository}'"
3992
4324
  msgstr ""
3993
4325
 
3994
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
3995
4326
  msgid "Products"
3996
4327
  msgstr "தயாரிப்புகள்"
3997
4328
 
@@ -4007,6 +4338,12 @@ msgstr ""
4007
4338
  msgid "Promote errata"
4008
4339
  msgstr ""
4009
4340
 
4341
+ msgid "Promote version ${versionNameToPromote}"
4342
+ msgstr ""
4343
+
4344
+ msgid "Promoted to "
4345
+ msgstr ""
4346
+
4010
4347
  msgid "Promoted to %{environment}"
4011
4348
  msgstr ""
4012
4349
 
@@ -4031,10 +4368,12 @@ msgstr ""
4031
4368
  msgid "Proxies"
4032
4369
  msgstr ""
4033
4370
 
4371
+ msgid "Public"
4372
+ msgstr ""
4373
+
4034
4374
  msgid "Public key block in DER encoding or certificate content"
4035
4375
  msgstr ""
4036
4376
 
4037
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
4038
4377
  msgid "Publish"
4039
4378
  msgstr "வெளியிடு"
4040
4379
 
@@ -4044,9 +4383,15 @@ msgstr ""
4044
4383
  msgid "Publish a content view"
4045
4384
  msgstr ""
4046
4385
 
4386
+ msgid "Publish new version"
4387
+ msgstr ""
4388
+
4047
4389
  msgid "Publish new version - "
4048
4390
  msgstr ""
4049
4391
 
4392
+ msgid "Published date"
4393
+ msgstr ""
4394
+
4050
4395
  msgid "Published new version"
4051
4396
  msgstr ""
4052
4397
 
@@ -4056,9 +4401,6 @@ msgstr ""
4056
4401
  msgid "Publishing content view"
4057
4402
  msgstr ""
4058
4403
 
4059
- msgid "Pulling remote branches. Downloaded %s units."
4060
- msgstr ""
4061
-
4062
4404
  msgid "Pulp"
4063
4405
  msgstr ""
4064
4406
 
@@ -4119,7 +4461,22 @@ msgstr ""
4119
4461
  msgid "Pulp task error"
4120
4462
  msgstr ""
4121
4463
 
4122
- msgid "Pulpcore"
4464
+ msgid "Python Package"
4465
+ msgstr ""
4466
+
4467
+ msgid "Python Packages"
4468
+ msgstr ""
4469
+
4470
+ msgid "Python package"
4471
+ msgstr ""
4472
+
4473
+ msgid "Python packages"
4474
+ msgstr ""
4475
+
4476
+ msgid "Python packages to exclude from the upstream URL, names separated by newline. You may also specify versions, for example: django~=2.0."
4477
+ msgstr ""
4478
+
4479
+ msgid "Python packages to include from the upstream URL, names separated by newline. You may also specify versions, for example: django~=2.0. Leave empty to include every package."
4123
4480
  msgstr ""
4124
4481
 
4125
4482
  msgid "Quantity"
@@ -4152,58 +4509,87 @@ msgstr ""
4152
4509
  msgid "RPM"
4153
4510
  msgstr ""
4154
4511
 
4512
+ msgid "RPM Package Groups"
4513
+ msgstr ""
4514
+
4515
+ msgid "RPM Packages"
4516
+ msgstr ""
4517
+
4155
4518
  msgid "RPM name"
4156
4519
  msgstr ""
4157
4520
 
4158
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
4159
4521
  msgid "RPMs"
4160
4522
  msgstr "RPMகள்"
4161
4523
 
4524
+ msgid "Range"
4525
+ msgstr ""
4526
+
4162
4527
  msgid "Realm IDs"
4163
4528
  msgstr ""
4164
4529
 
4530
+ msgid "Reassign affected activation keys"
4531
+ msgstr ""
4532
+
4533
+ msgid "Reassign affected hosts"
4534
+ msgstr ""
4535
+
4165
4536
  msgid "Reboot required"
4166
4537
  msgstr ""
4167
4538
 
4539
+ msgid "Recalculate"
4540
+ msgstr ""
4541
+
4168
4542
  msgid "Recently Expired Subscriptions"
4169
4543
  msgstr ""
4170
4544
 
4545
+ msgid "Reclaim Space"
4546
+ msgstr ""
4547
+
4548
+ msgid "Reclaim space from On Demand repositories"
4549
+ msgstr ""
4550
+
4551
+ msgid "Reclaim space from all On Demand repositories on a smart proxy"
4552
+ msgstr ""
4553
+
4554
+ msgid "Reclaim space from an On Demand repository"
4555
+ msgstr ""
4556
+
4171
4557
  msgid "Recommended Repositories"
4172
4558
  msgstr ""
4173
4559
 
4174
- #, fuzzy
4175
4560
  msgid "Red Hat CDN URL"
4176
- msgstr "தயாரிப்புகள்"
4177
-
4178
- msgid "Red Hat Provider Details"
4179
4561
  msgstr ""
4180
4562
 
4181
- # translation auto-copied from project CFSE, version sam-1.2, document app
4182
4563
  msgid "Red Hat Repositories"
4183
4564
  msgstr "Red Hat தொகுப்பதிவகங்கள்"
4184
4565
 
4185
- #, fuzzy
4566
+ msgid "Red Hat Repositories page"
4567
+ msgstr ""
4568
+
4186
4569
  msgid "Red Hat products cannot be manipulated."
4187
- msgstr "Red Hat வழங்குநரை சேர்க்க முடியவில்லை"
4570
+ msgstr ""
4188
4571
 
4189
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4190
4572
  msgid "Red Hat provider can not be deleted"
4191
4573
  msgstr "Red Hat வழங்குநரை சேர்க்க முடியவில்லை"
4192
4574
 
4193
- #, fuzzy
4194
4575
  msgid "Red Hat repositories cannot be manipulated."
4195
- msgstr "Red Hat வழங்குநரை சேர்க்க முடியவில்லை"
4576
+ msgstr ""
4196
4577
 
4197
4578
  msgid "Refresh"
4198
4579
  msgstr ""
4199
4580
 
4200
- #, fuzzy
4581
+ msgid "Refresh Content Host Statuses for %s"
4582
+ msgstr ""
4583
+
4201
4584
  msgid "Refresh Manifest"
4202
- msgstr "பங்குகளை அழிக்கவும்"
4585
+ msgstr ""
4203
4586
 
4204
4587
  msgid "Refresh previously imported manifest for Red Hat provider"
4205
4588
  msgstr ""
4206
4589
 
4590
+ msgid "Refresh_Content_Host_Status"
4591
+ msgstr ""
4592
+
4207
4593
  msgid "Register a host with subscription and information"
4208
4594
  msgstr ""
4209
4595
 
@@ -4222,6 +4608,24 @@ msgstr ""
4222
4608
  msgid "Reindex subscriptions"
4223
4609
  msgstr ""
4224
4610
 
4611
+ msgid "Related component content views"
4612
+ msgstr ""
4613
+
4614
+ msgid "Related component cvs: "
4615
+ msgstr ""
4616
+
4617
+ msgid "Related composite content views"
4618
+ msgstr ""
4619
+
4620
+ msgid "Related composite cvs: "
4621
+ msgstr ""
4622
+
4623
+ msgid "Related content views will appear here when created."
4624
+ msgstr ""
4625
+
4626
+ msgid "Release"
4627
+ msgstr ""
4628
+
4225
4629
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
4226
4630
  msgstr ""
4227
4631
 
@@ -4252,13 +4656,11 @@ msgstr ""
4252
4656
  msgid "Remove Content"
4253
4657
  msgstr ""
4254
4658
 
4255
- #, fuzzy
4256
4659
  msgid "Remove Version"
4257
- msgstr "பங்குகள் அனுமதிகளை வாசிக்கவும்"
4660
+ msgstr ""
4258
4661
 
4259
- #, fuzzy
4260
4662
  msgid "Remove Versions and Associations"
4261
- msgstr "நிறுவனத்தை வாசிக்கவும்"
4663
+ msgstr ""
4262
4664
 
4263
4665
  msgid "Remove a content view from an environment"
4264
4666
  msgstr ""
@@ -4275,12 +4677,14 @@ msgstr ""
4275
4677
  msgid "Remove content view version"
4276
4678
  msgstr ""
4277
4679
 
4278
- msgid "Remove content views"
4680
+ msgid "Remove from Environment"
4279
4681
  msgstr ""
4280
4682
 
4281
- #, fuzzy
4282
- msgid "Remove from Environment"
4283
- msgstr "சூழல்களை வாசிக்கவும்"
4683
+ msgid "Remove from environment"
4684
+ msgstr ""
4685
+
4686
+ msgid "Remove from environments"
4687
+ msgstr ""
4284
4688
 
4285
4689
  msgid "Remove hosts from the host collection"
4286
4690
  msgstr ""
@@ -4294,16 +4698,14 @@ msgstr ""
4294
4698
  msgid "Remove one or more subscriptions from an upstream subscription allocation"
4295
4699
  msgstr ""
4296
4700
 
4297
- #, fuzzy
4298
4701
  msgid "Remove package"
4299
- msgstr "தொகுப்பு '%s' நீக்கப்பட்டது"
4702
+ msgstr ""
4300
4703
 
4301
4704
  msgid "Remove package for %s"
4302
4705
  msgstr ""
4303
4706
 
4304
- #, fuzzy
4305
4707
  msgid "Remove package group"
4306
- msgstr "தொகுப்பு குழு '%s' நீக்கப்பட்டது"
4708
+ msgstr ""
4307
4709
 
4308
4710
  msgid "Remove package group via Katello interface"
4309
4711
  msgstr ""
@@ -4326,31 +4728,33 @@ msgstr ""
4326
4728
  msgid "Remove versions and/or environments from a content view and reassign systems and keys"
4327
4729
  msgstr ""
4328
4730
 
4731
+ msgid "Remove versions from environments"
4732
+ msgstr ""
4733
+
4329
4734
  msgid "Removed component from content view"
4330
4735
  msgstr ""
4331
4736
 
4332
4737
  msgid "Removed components from content view"
4333
4738
  msgstr ""
4334
4739
 
4335
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4336
4740
  msgid "Removing Package Group..."
4337
4741
  msgstr "தொகுப்பு குழுவை நீக்குகிறது..."
4338
4742
 
4339
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4340
4743
  msgid "Removing Package..."
4341
4744
  msgstr "பயனரை நீக்கவும்"
4342
4745
 
4746
+ msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
4747
+ msgstr ""
4748
+
4343
4749
  msgid "Repo Type"
4344
4750
  msgstr ""
4345
4751
 
4346
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
4347
4752
  msgid "Repositories"
4348
4753
  msgstr "தொகுப்பதிவகங்கள்"
4349
4754
 
4350
4755
  msgid "Repositories from published Content Views are not allowed."
4351
4756
  msgstr ""
4352
4757
 
4353
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4354
4758
  msgid "Repository"
4355
4759
  msgstr "தொகுப்பதிவகம்"
4356
4760
 
@@ -4369,11 +4773,9 @@ msgstr ""
4369
4773
  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."
4370
4774
  msgstr ""
4371
4775
 
4372
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4373
4776
  msgid "Repository cannot be disabled since it has already been promoted."
4374
4777
  msgstr "ஏற்கனவே முன்னேற்றப்பட்டிருந்தால் தொகுப்பதிவகத்தை செயல்நீக்க முடியாது."
4375
4778
 
4376
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
4377
4779
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
4378
4780
  msgstr "தொகுப்பதிவகம் ஏற்கனவே %{to_env} சூழலில் உள்ள %{cv_name} க்கு குளோன் செய்யப்பட்டது"
4379
4781
 
@@ -4389,45 +4791,99 @@ msgstr ""
4389
4791
  msgid "Repository metadata publish"
4390
4792
  msgstr ""
4391
4793
 
4392
- #, fuzzy
4393
4794
  msgid "Repository not found"
4394
- msgstr "தொகுப்பதிவகங்கள்"
4795
+ msgstr ""
4796
+
4797
+ msgid "Repository path"
4798
+ msgstr ""
4799
+
4800
+ msgid "Repository set disabled"
4801
+ msgstr ""
4802
+
4803
+ msgid "Repository set enabled"
4804
+ msgstr ""
4395
4805
 
4396
4806
  msgid "Repository set name to search on"
4397
4807
  msgstr ""
4398
4808
 
4399
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
4809
+ msgid "Repository set reset to default"
4810
+ msgstr ""
4811
+
4812
+ msgid "Repository sets"
4813
+ msgstr ""
4814
+
4400
4815
  msgid "Repository sets are not available for custom products."
4401
4816
  msgstr "தனிப்பயன் தயாரிப்புகளுக்கு தொகுப்பதிவகத் தொகுப்புகள் இல்லை."
4402
4817
 
4818
+ msgid "Repository sets disabled"
4819
+ msgstr ""
4820
+
4821
+ msgid "Repository sets enabled"
4822
+ msgstr ""
4823
+
4824
+ msgid "Repository sets reset to default"
4825
+ msgstr ""
4826
+
4827
+ msgid "Repository sets will appear here when available."
4828
+ msgstr ""
4829
+
4830
+ msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
4831
+ msgstr ""
4832
+
4403
4833
  msgid "Republish Repositories of %{name} %{version}"
4404
4834
  msgstr ""
4405
4835
 
4406
4836
  msgid "Republish Version Repositories"
4407
4837
  msgstr ""
4408
4838
 
4409
- msgid "Requirements yaml is invalid!"
4839
+ msgid "Require you to upload the subscription-manifest and re-attach subscriptions to hosts and activation keys."
4840
+ msgstr ""
4841
+
4842
+ msgid "Requirements is not valid yaml."
4843
+ msgstr ""
4844
+
4845
+ msgid "Requirements yaml should be a key-value pair structure."
4846
+ msgstr ""
4847
+
4848
+ msgid "Requirements yaml should have a 'collections' key"
4410
4849
  msgstr ""
4411
4850
 
4412
4851
  msgid "Requires Virt-Who"
4413
4852
  msgstr ""
4414
4853
 
4415
- msgid "Resolve Traces"
4854
+ msgid "Reset filters"
4855
+ msgstr ""
4856
+
4857
+ msgid "Reset to default"
4858
+ msgstr ""
4859
+
4860
+ msgid "Resolve traces"
4416
4861
  msgstr ""
4417
4862
 
4418
4863
  msgid "Resolve traces for one or more hosts"
4419
4864
  msgstr ""
4420
4865
 
4866
+ msgid "Resolve traces via Katello interface"
4867
+ msgstr ""
4868
+
4421
4869
  msgid "Resource"
4422
4870
  msgstr ""
4423
4871
 
4424
4872
  msgid "Restart Services via Katello interface"
4425
4873
  msgstr ""
4426
4874
 
4875
+ msgid "Restart app"
4876
+ msgstr ""
4877
+
4878
+ msgid "Restart via customized remote execution"
4879
+ msgstr ""
4880
+
4881
+ msgid "Restart via remote execution"
4882
+ msgstr ""
4883
+
4427
4884
  msgid "Restrict Composite Content View promotion"
4428
4885
  msgstr ""
4429
4886
 
4430
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
4431
4887
  msgid "Result"
4432
4888
  msgstr "முடிவு"
4433
4889
 
@@ -4443,12 +4899,24 @@ msgstr ""
4443
4899
  msgid "Return custom products only"
4444
4900
  msgstr ""
4445
4901
 
4902
+ msgid "Return deb packages that are applicable to one or more hosts (defaults to true if host_id is specified)"
4903
+ msgstr ""
4904
+
4905
+ msgid "Return deb packages that are upgradable on one or more hosts"
4906
+ msgstr ""
4907
+
4908
+ msgid "Return deb packages that can be added to the specified object. Only the value 'content_view_version' is supported."
4909
+ msgstr ""
4910
+
4446
4911
  msgid "Return enabled products only"
4447
4912
  msgstr ""
4448
4913
 
4449
4914
  msgid "Return errata that are applicable to one or more hosts (defaults to true if host_id is specified)"
4450
4915
  msgstr ""
4451
4916
 
4917
+ msgid "Return errata that are applicable to this host. Defaults to false)"
4918
+ msgstr ""
4919
+
4452
4920
  msgid "Return errata that are upgradable on one or more hosts"
4453
4921
  msgstr ""
4454
4922
 
@@ -4458,6 +4926,15 @@ msgstr ""
4458
4926
  msgid "Return name and stream information only)"
4459
4927
  msgstr ""
4460
4928
 
4929
+ msgid "Return only errata of a particular severity (None, Low, Moderate, Important, Critical)"
4930
+ msgstr ""
4931
+
4932
+ msgid "Return only errata of a particular type (security, bugfix, enhancement)"
4933
+ msgstr ""
4934
+
4935
+ msgid "Return only packages of a particular status (upgradable or up-to-date)"
4936
+ msgstr ""
4937
+
4461
4938
  msgid "Return only subscriptions which can be attached to the upstream allocation"
4462
4939
  msgstr ""
4463
4940
 
@@ -4488,9 +4965,21 @@ msgstr ""
4488
4965
  msgid "Return the content of a repo gpg key, used directly by yum"
4489
4966
  msgstr ""
4490
4967
 
4968
+ msgid "Return the enabled content types"
4969
+ msgstr ""
4970
+
4491
4971
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
4492
4972
  msgstr ""
4493
4973
 
4974
+ msgid "Review Details"
4975
+ msgstr ""
4976
+
4977
+ msgid "Review details"
4978
+ msgstr ""
4979
+
4980
+ msgid "Review your currently selected changes for "
4981
+ msgstr ""
4982
+
4494
4983
  msgid "Role"
4495
4984
  msgstr ""
4496
4985
 
@@ -4500,10 +4989,15 @@ msgstr ""
4500
4989
  msgid "Roles"
4501
4990
  msgstr ""
4502
4991
 
4992
+ msgid "Rpm packages"
4993
+ msgstr ""
4994
+
4995
+ msgid "Rules to be added"
4996
+ msgstr ""
4997
+
4503
4998
  msgid "Run Sync Plan:"
4504
4999
  msgstr ""
4505
5000
 
4506
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
4507
5001
  msgid "Running"
4508
5002
  msgstr "இயங்குகிறது"
4509
5003
 
@@ -4513,6 +5007,9 @@ msgstr ""
4513
5007
  msgid "SRPM details"
4514
5008
  msgstr ""
4515
5009
 
5010
+ msgid "SSL CA Content Credential"
5011
+ msgstr ""
5012
+
4516
5013
  msgid "SSL version used to communicate with the CDN"
4517
5014
  msgstr ""
4518
5015
 
@@ -4525,9 +5022,18 @@ msgstr ""
4525
5022
  msgid "Schedule errata for installation using katello-agent. %s"
4526
5023
  msgstr ""
4527
5024
 
5025
+ msgid "Schema Version 1"
5026
+ msgstr ""
5027
+
5028
+ msgid "Schema Version 2"
5029
+ msgstr ""
5030
+
4528
5031
  msgid "Search"
4529
5032
  msgstr ""
4530
5033
 
5034
+ msgid "Search Query"
5035
+ msgstr ""
5036
+
4531
5037
  msgid "Search pattern (defaults to '*')"
4532
5038
  msgstr ""
4533
5039
 
@@ -4543,7 +5049,6 @@ msgstr ""
4543
5049
  msgid "Search string for hosts to perform an action on"
4544
5050
  msgstr ""
4545
5051
 
4546
- # translation auto-copied from project CFSE, version sam-1.2, document app
4547
5052
  msgid "Security"
4548
5053
  msgstr "பாதுகாப்பு"
4549
5054
 
@@ -4556,15 +5061,12 @@ msgstr ""
4556
5061
  msgid "Select"
4557
5062
  msgstr ""
4558
5063
 
4559
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
4560
5064
  msgid "Select All"
4561
5065
  msgstr "அனைத்தையும் தேர்ந்தெடு"
4562
5066
 
4563
- #, fuzzy
4564
5067
  msgid "Select Content View"
4565
- msgstr "உள்ளடக்கம்"
5068
+ msgstr ""
4566
5069
 
4567
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4568
5070
  msgid "Select None"
4569
5071
  msgstr "ஒன்றுமில்லாததை தேர்ந்தெடு"
4570
5072
 
@@ -4574,16 +5076,23 @@ msgstr ""
4574
5076
  msgid "Select Value"
4575
5077
  msgstr ""
4576
5078
 
5079
+ msgid "Select a content view"
5080
+ msgstr ""
5081
+
4577
5082
  msgid "Select a lifecycle environment from the available promotion paths to promote new version."
4578
5083
  msgstr ""
4579
5084
 
5085
+ msgid "Select a provider to install katello-host-tools-tracer"
5086
+ msgstr ""
5087
+
5088
+ msgid "Select all"
5089
+ msgstr ""
5090
+
4580
5091
  msgid "Select all rows"
4581
5092
  msgstr ""
4582
5093
 
4583
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
4584
- #, fuzzy
4585
5094
  msgid "Select an Organization"
4586
- msgstr "நிறுவனத்தை தேர்ந்தெடு"
5095
+ msgstr ""
4587
5096
 
4588
5097
  msgid "Select an organization"
4589
5098
  msgstr ""
@@ -4591,19 +5100,45 @@ msgstr ""
4591
5100
  msgid "Select available version of ${cvName} to use"
4592
5101
  msgstr ""
4593
5102
 
5103
+ msgid "Select available version of components to use"
5104
+ msgstr ""
5105
+
5106
+ msgid "Select content view"
5107
+ msgstr ""
5108
+
4594
5109
  msgid "Select hosts to assign to %s"
4595
5110
  msgstr ""
4596
5111
 
5112
+ msgid "Select lifecycle environment"
5113
+ msgstr ""
5114
+
5115
+ msgid "Select none"
5116
+ msgstr ""
5117
+
5118
+ msgid "Select one"
5119
+ msgstr ""
5120
+
5121
+ msgid "Select page"
5122
+ msgstr ""
5123
+
4597
5124
  msgid "Select row"
4598
5125
  msgstr ""
4599
5126
 
4600
5127
  msgid "Select the installation media that will be used to provision this host. Choose 'Synced Content' for Synced Kickstart Repositories or 'All Media' for other media."
4601
5128
  msgstr ""
4602
5129
 
5130
+ msgid "Selected environment "
5131
+ msgstr ""
5132
+
5133
+ msgid "Selected environments "
5134
+ msgstr ""
5135
+
5136
+ msgid "Sending a list of included IDs is not allowed when all items are being selected."
5137
+ msgstr ""
5138
+
4603
5139
  msgid "Service Level"
4604
5140
  msgstr ""
4605
5141
 
4606
- # translation auto-copied from project CFSE, version sam-1.2, document app
4607
5142
  msgid "Service Level %s"
4608
5143
  msgstr "சேவை நிலை %s"
4609
5144
 
@@ -4637,10 +5172,15 @@ msgstr ""
4637
5172
  msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
4638
5173
  msgstr ""
4639
5174
 
4640
- # translation auto-copied from project CFSE, version sam-1.2, document app
4641
5175
  msgid "Severity"
4642
5176
  msgstr "தீவிரம்"
4643
5177
 
5178
+ msgid "Severity must be one of: %s"
5179
+ msgstr ""
5180
+
5181
+ msgid "Show %s"
5182
+ msgstr ""
5183
+
4644
5184
  msgid "Show :a_resource"
4645
5185
  msgstr ""
4646
5186
 
@@ -4671,6 +5211,9 @@ msgstr ""
4671
5211
  msgid "Show a sync plan"
4672
5212
  msgstr ""
4673
5213
 
5214
+ msgid "Show all"
5215
+ msgstr ""
5216
+
4674
5217
  msgid "Show an activation key"
4675
5218
  msgstr ""
4676
5219
 
@@ -4686,6 +5229,9 @@ msgstr ""
4686
5229
  msgid "Show filter rule info"
4687
5230
  msgstr ""
4688
5231
 
5232
+ msgid "Show full description"
5233
+ msgstr ""
5234
+
4689
5235
  msgid "Show organization"
4690
5236
  msgstr ""
4691
5237
 
@@ -4716,7 +5262,7 @@ msgstr ""
4716
5262
  msgid "Simple Content Access has been enabled for '%{subject}'."
4717
5263
  msgstr ""
4718
5264
 
4719
- msgid "Single content view consisting of repositories"
5265
+ msgid "Single content view consisting of e.g. repositories"
4720
5266
  msgstr ""
4721
5267
 
4722
5268
  msgid "Size of file to upload"
@@ -4734,11 +5280,10 @@ msgstr ""
4734
5280
  msgid "Smart proxy content source not found!"
4735
5281
  msgstr ""
4736
5282
 
4737
- # translation auto-copied from project CFSE, version sam-1.2, document app
4738
5283
  msgid "Sockets: %s"
4739
- msgstr "சாக்கெட்டுகள்: %s"
5284
+ msgstr ""
4740
5285
 
4741
- msgid "Solve Dependencies"
5286
+ msgid "Solution"
4742
5287
  msgstr ""
4743
5288
 
4744
5289
  msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
@@ -4753,21 +5298,78 @@ msgstr ""
4753
5298
  msgid "Some services are not properly started. See the About page for more information."
4754
5299
  msgstr ""
4755
5300
 
5301
+ msgid "Something went wrong while adding a bookmark: ${getBookmarkErrorMsgs(error.response)}"
5302
+ msgstr ""
5303
+
5304
+ msgid "Something went wrong while adding a filter rule! ${getResponseErrorMsgs(error.response)}"
5305
+ msgstr ""
5306
+
4756
5307
  msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
4757
5308
  msgstr ""
4758
5309
 
5310
+ msgid "Something went wrong while adding filter rules! ${getResponseErrorMsgs(error.response)}"
5311
+ msgstr ""
5312
+
4759
5313
  msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
4760
5314
  msgstr ""
4761
5315
 
5316
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5317
+ msgstr ""
5318
+
4762
5319
  msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
4763
5320
  msgstr ""
4764
5321
 
4765
5322
  msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
4766
5323
  msgstr ""
4767
5324
 
5325
+ msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
5326
+ msgstr ""
5327
+
5328
+ msgid "Something went wrong while editing the filter! ${getResponseErrorMsgs(error.response)}"
5329
+ msgstr ""
5330
+
5331
+ msgid "Something went wrong while editing version details. ${getResponseErrorMsgs(error.response)}"
5332
+ msgstr ""
5333
+
5334
+ msgid "Something went wrong while fetching ${lowerCase(pluralLabel)}! ${getResponseErrorMsgs(error.response)}"
5335
+ msgstr ""
5336
+
5337
+ msgid "Something went wrong while fetching files! ${getResponseErrorMsgs(error.response)}"
5338
+ msgstr ""
5339
+
5340
+ msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
5341
+ msgstr ""
5342
+
5343
+ msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5344
+ msgstr ""
5345
+
5346
+ msgid "Something went wrong while getting docker tags! ${getResponseErrorMsgs(error.response)}"
5347
+ msgstr ""
5348
+
5349
+ msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
5350
+ msgstr ""
5351
+
5352
+ msgid "Something went wrong while getting module streams! ${getResponseErrorMsgs(error.response)}"
5353
+ msgstr ""
5354
+
5355
+ msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
5356
+ msgstr ""
5357
+
5358
+ msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
5359
+ msgstr ""
5360
+
5361
+ msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
5362
+ msgstr ""
5363
+
4768
5364
  msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
4769
5365
  msgstr ""
4770
5366
 
5367
+ msgid "Something went wrong while retrieving package groups! ${getResponseErrorMsgs(error.response)}"
5368
+ msgstr ""
5369
+
5370
+ msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
5371
+ msgstr ""
5372
+
4771
5373
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
4772
5374
  msgstr ""
4773
5375
 
@@ -4786,15 +5388,24 @@ msgstr ""
4786
5388
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
4787
5389
  msgstr ""
4788
5390
 
5391
+ msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5392
+ msgstr ""
5393
+
4789
5394
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
4790
5395
  msgstr ""
4791
5396
 
5397
+ msgid "Something went wrong! Please check server logs!"
5398
+ msgstr ""
5399
+
4792
5400
  msgid "Sort field and order, eg. 'id DESC'"
4793
5401
  msgstr ""
4794
5402
 
4795
5403
  msgid "Source RPM"
4796
5404
  msgstr ""
4797
5405
 
5406
+ msgid "Source RPMs"
5407
+ msgstr ""
5408
+
4798
5409
  msgid "Specify an export chunk size less than 1_000_000 GB"
4799
5410
  msgstr ""
4800
5411
 
@@ -4807,25 +5418,24 @@ msgstr ""
4807
5418
  msgid "Stacking ID"
4808
5419
  msgstr ""
4809
5420
 
4810
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
4811
5421
  msgid "Start Date"
4812
5422
  msgstr "துவக்க தேதி"
4813
5423
 
4814
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4815
5424
  msgid "Start Date and Time can't be blank"
4816
5425
  msgstr "துக்க தேதி மற்றும் நேரம் காலியாக இருக்காது"
4817
5426
 
4818
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
4819
5427
  msgid "Start Time"
4820
5428
  msgstr "துவக்க நேரம்"
4821
5429
 
4822
5430
  msgid "Starts"
4823
5431
  msgstr ""
4824
5432
 
4825
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
4826
5433
  msgid "Status"
4827
5434
  msgstr "நிலை"
4828
5435
 
5436
+ msgid "Status must be one of: %s"
5437
+ msgstr ""
5438
+
4829
5439
  msgid "Storage"
4830
5440
  msgstr ""
4831
5441
 
@@ -4841,7 +5451,6 @@ msgstr ""
4841
5451
  msgid "Subnet IDs"
4842
5452
  msgstr ""
4843
5453
 
4844
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
4845
5454
  msgid "Subscription"
4846
5455
  msgstr "சந்தாபடுத்தல்"
4847
5456
 
@@ -4914,14 +5523,12 @@ msgstr ""
4914
5523
  msgid "Subscriptions have been saved and are being updated. "
4915
5524
  msgstr ""
4916
5525
 
4917
- #, fuzzy
4918
5526
  msgid "Subscriptions information based on selected activation keys:"
4919
- msgstr "சந்தா செயல்பாட்டு விசை '%s'க்கு வெற்றிகரமாக சேர்க்கப்பட்டது"
5527
+ msgstr ""
4920
5528
 
4921
5529
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
4922
5530
  msgstr ""
4923
5531
 
4924
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
4925
5532
  msgid "Success"
4926
5533
  msgstr "வெற்றி"
4927
5534
 
@@ -4946,7 +5553,6 @@ msgstr ""
4946
5553
  msgid "Successfully synchronized."
4947
5554
  msgstr ""
4948
5555
 
4949
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4950
5556
  msgid "Summary"
4951
5557
  msgstr "சுருக்கம்"
4952
5558
 
@@ -4956,7 +5562,6 @@ msgstr ""
4956
5562
  msgid "Supported Content Types"
4957
5563
  msgstr ""
4958
5564
 
4959
- # translation auto-copied from project CFSE, version sam-1.2, document app
4960
5565
  msgid "Sync Canceled"
4961
5566
  msgstr "ஒத்திசைவு ரத்து செய்யப்பட்டது"
4962
5567
 
@@ -4966,12 +5571,9 @@ msgstr ""
4966
5571
  msgid "Sync Content View on Smart Proxy(ies)"
4967
5572
  msgstr ""
4968
5573
 
4969
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4970
- #, fuzzy
4971
5574
  msgid "Sync Incomplete"
4972
- msgstr "ஒத்திசைவு முடிந்தது."
5575
+ msgstr ""
4973
5576
 
4974
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4975
5577
  msgid "Sync Overview"
4976
5578
  msgstr "மேற்பார்வையை ஒத்திசை"
4977
5579
 
@@ -4981,7 +5583,6 @@ msgstr ""
4981
5583
  msgid "Sync Plan: "
4982
5584
  msgstr ""
4983
5585
 
4984
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4985
5586
  msgid "Sync Plans"
4986
5587
  msgstr "திட்டங்களை ஒத்திசை"
4987
5588
 
@@ -4991,7 +5592,6 @@ msgstr ""
4991
5592
  msgid "Sync Smart Proxies after Content View promotion"
4992
5593
  msgstr ""
4993
5594
 
4994
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
4995
5595
  msgid "Sync Status"
4996
5596
  msgstr "நிலையை ஒத்திசை"
4997
5597
 
@@ -5010,7 +5610,6 @@ msgstr ""
5010
5610
  msgid "Sync capsule"
5011
5611
  msgstr ""
5012
5612
 
5013
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
5014
5613
  msgid "Sync complete."
5015
5614
  msgstr "ஒத்திசைவு முடிந்தது."
5016
5615
 
@@ -5026,17 +5625,18 @@ msgstr ""
5026
5625
  msgid "Sync state"
5027
5626
  msgstr ""
5028
5627
 
5628
+ msgid "Synced "
5629
+ msgstr ""
5630
+
5029
5631
  msgid "Synced Content"
5030
5632
  msgstr ""
5031
5633
 
5032
5634
  msgid "Synced to smart proxy"
5033
5635
  msgstr ""
5034
5636
 
5035
- #, fuzzy
5036
5637
  msgid "Synchronize"
5037
- msgstr "ஒத்திசைவு"
5638
+ msgstr ""
5038
5639
 
5039
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
5040
5640
  msgid "Synchronize Now"
5041
5641
  msgstr "இப்போது ஒத்திசைக்கவும்"
5042
5642
 
@@ -5058,10 +5658,11 @@ msgstr ""
5058
5658
  msgid "Synchronize: Validate Content"
5059
5659
  msgstr ""
5060
5660
 
5061
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
5062
- #, fuzzy
5063
5661
  msgid "Syncing Complete."
5064
- msgstr "ஒத்திசைவு முடிந்தது."
5662
+ msgstr ""
5663
+
5664
+ msgid "Synopsis"
5665
+ msgstr ""
5065
5666
 
5066
5667
  msgid "System Purpose"
5067
5668
  msgstr ""
@@ -5069,12 +5670,18 @@ msgstr ""
5069
5670
  msgid "System Status"
5070
5671
  msgstr ""
5071
5672
 
5673
+ msgid "Tag name"
5674
+ msgstr ""
5675
+
5072
5676
  msgid "Tags"
5073
5677
  msgstr ""
5074
5678
 
5075
5679
  msgid "Task"
5076
5680
  msgstr ""
5077
5681
 
5682
+ msgid "Task ${task.humanized.action} completed with a result of ${task.result}. ${task.errors ? getErrors(task) : ''}"
5683
+ msgstr ""
5684
+
5078
5685
  msgid "Task ${task.humanized.action} has started."
5079
5686
  msgstr ""
5080
5687
 
@@ -5087,7 +5694,6 @@ msgstr ""
5087
5694
  msgid "Temporary"
5088
5695
  msgstr ""
5089
5696
 
5090
- # translation auto-copied from project CFSE, version sam-1.2, document app
5091
5697
  msgid "The '%s' environment cannot contain a changeset!"
5092
5698
  msgstr "'%s' சூழல் changeset எதையும் கொண்டிருக்கவில்லை!"
5093
5699
 
@@ -5103,16 +5709,14 @@ msgstr ""
5103
5709
  msgid "The actual file contents"
5104
5710
  msgstr ""
5105
5711
 
5106
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
5107
5712
  msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
5108
5713
  msgstr "நடப்பு நிறுவனத்தை அழிக்க முடியாது. அழிப்பதற்கு முன் ஒரு வேறுபட்ட நிறுவனத்திற்கு மாற்றவும்."
5109
5714
 
5110
5715
  msgid "The default content view cannot be edited, published, or deleted."
5111
5716
  msgstr ""
5112
5717
 
5113
- #, fuzzy
5114
5718
  msgid "The default content view cannot be promoted"
5115
- msgstr "மாதிரிஉருவை ஏற்றுமதி செய்ய முடியாது"
5719
+ msgstr ""
5116
5720
 
5117
5721
  msgid "The default dependency solving value for new Content Views."
5118
5722
  msgstr ""
@@ -5196,9 +5800,8 @@ msgstr ""
5196
5800
  msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
5197
5801
  msgstr ""
5198
5802
 
5199
- #, fuzzy
5200
5803
  msgid "The repository is already enabled"
5201
- msgstr "தொகுப்பதிவகம் '%s' செயல்படுத்தப்பட்டது."
5804
+ msgstr ""
5202
5805
 
5203
5806
  msgid "The request did not contain any repository information."
5204
5807
  msgstr ""
@@ -5212,9 +5815,10 @@ msgstr ""
5212
5815
  msgid "The requested traces were not found for this host"
5213
5816
  msgstr ""
5214
5817
 
5215
- msgid ""
5216
- "The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
5217
- " content source, operating system, and architecture"
5818
+ msgid "The selected kickstart repository is not part of the assigned content view, lifecycle environment, content source, operating system, and architecture"
5819
+ msgstr ""
5820
+
5821
+ msgid "The selected/Inherited Content View is not available for this Lifecycle Environment"
5218
5822
  msgstr ""
5219
5823
 
5220
5824
  msgid "The specified organization is in Simple Content Access mode. Attaching subscriptions is disabled"
@@ -5247,7 +5851,6 @@ msgstr ""
5247
5851
  msgid "There are no errata that need to be applied to registered content hosts."
5248
5852
  msgstr ""
5249
5853
 
5250
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
5251
5854
  msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
5252
5855
  msgstr "தயாரிப்புகள் அல்லது தொகுப்புதிவகங்கள் செயல்படுத்தப்படவில்லை. %{custom} அல்லது%{redhat} மூலம் செயல்படுத்த முயற்சிக்கவும்."
5253
5856
 
@@ -5266,6 +5869,9 @@ msgstr ""
5266
5869
  msgid "There was a problem retrieving Activation Key data from the server."
5267
5870
  msgstr ""
5268
5871
 
5872
+ msgid "There was an error retrieving data from the server. Check your connection and try again."
5873
+ msgstr ""
5874
+
5269
5875
  msgid "There was an issue with the backend service %s: "
5270
5876
  msgstr ""
5271
5877
 
@@ -5284,15 +5890,39 @@ msgstr ""
5284
5890
  msgid "This action doesn't support package groups"
5285
5891
  msgstr ""
5286
5892
 
5893
+ msgid "This action should only be taken in extreme circumstances or for debugging purposes."
5894
+ msgstr ""
5895
+
5287
5896
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
5288
5897
  msgstr ""
5289
5898
 
5290
5899
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
5291
5900
  msgstr ""
5292
5901
 
5902
+ msgid "This content view does not have any versions associated."
5903
+ msgstr ""
5904
+
5293
5905
  msgid "This content view version doesn't have a history."
5294
5906
  msgstr ""
5295
5907
 
5908
+ msgid "This content view will be automatically updated to the latest version."
5909
+ msgstr ""
5910
+
5911
+ msgid "This content view will be deleted. Changes will be effective after clicking Delete."
5912
+ msgstr ""
5913
+
5914
+ msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
5915
+ msgstr ""
5916
+
5917
+ msgid "This host currently does not have traces."
5918
+ msgstr ""
5919
+
5920
+ msgid "This host does not have any installable errata."
5921
+ msgstr ""
5922
+
5923
+ msgid "This host does not have any packages."
5924
+ msgstr ""
5925
+
5296
5926
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
5297
5927
  msgstr ""
5298
5928
 
@@ -5320,10 +5950,13 @@ msgstr ""
5320
5950
  msgid "This is not a linked repository"
5321
5951
  msgstr ""
5322
5952
 
5953
+ msgid "This organization has Simple Content Access enabled. Hosts are not required to have subscriptions attached to access repositories. {br} Learn more about your overall subscription usage at {subscriptionWatch}."
5954
+ msgstr ""
5955
+
5323
5956
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
5324
5957
  msgstr ""
5325
5958
 
5326
- msgid "This request may only be performed on a Smart proxy that has the Pulp Node feature."
5959
+ msgid "This request may only be performed on a Smart proxy that has the Pulpcore feature with mirror=true."
5327
5960
  msgstr ""
5328
5961
 
5329
5962
  msgid "This service is available for unauthenticated users"
@@ -5338,6 +5971,21 @@ msgstr ""
5338
5971
  msgid "This subscription is not relevant to the current organization."
5339
5972
  msgstr ""
5340
5973
 
5974
+ msgid "This version has not been promoted to any environments."
5975
+ msgstr ""
5976
+
5977
+ msgid "This version is not promoted to any environments."
5978
+ msgstr ""
5979
+
5980
+ msgid "This version will be removed from:"
5981
+ msgstr ""
5982
+
5983
+ msgid "This will create a copy of {cv}, including details, repositories, and filters. Generated data such as history, tasks and versions will not be copied."
5984
+ msgstr ""
5985
+
5986
+ msgid "Time in minutes to consider orphan content as orphaned."
5987
+ msgstr ""
5988
+
5341
5989
  msgid "Time in seconds to wait for a Host to finish a remote action"
5342
5990
  msgstr ""
5343
5991
 
@@ -5350,7 +5998,6 @@ msgstr ""
5350
5998
  msgid "Timestamp"
5351
5999
  msgstr ""
5352
6000
 
5353
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author ifelix
5354
6001
  msgid "Title"
5355
6002
  msgstr "தலைப்பு"
5356
6003
 
@@ -5363,18 +6010,36 @@ msgstr ""
5363
6010
  msgid "Total timeout in seconds for connections when syncing"
5364
6011
  msgstr ""
5365
6012
 
6013
+ msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6014
+ msgstr ""
6015
+
5366
6016
  msgid "Tracer profile uploaded successfully"
5367
6017
  msgstr ""
5368
6018
 
5369
6019
  msgid "Traces"
5370
6020
  msgstr ""
5371
6021
 
6022
+ msgid "Traces are not enabled"
6023
+ msgstr ""
6024
+
6025
+ msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
6026
+ msgstr ""
6027
+
6028
+ msgid "Traces that require logout cannot be restarted remotely"
6029
+ msgstr ""
6030
+
5372
6031
  msgid "Trigger an auto-attach of subscriptions"
5373
6032
  msgstr ""
5374
6033
 
5375
6034
  msgid "Trigger an auto-attach of subscriptions on one or more hosts"
5376
6035
  msgstr ""
5377
6036
 
6037
+ msgid "Try changing your search criteria."
6038
+ msgstr ""
6039
+
6040
+ msgid "Try changing your search query."
6041
+ msgstr ""
6042
+
5378
6043
  msgid "Try changing your search settings."
5379
6044
  msgstr ""
5380
6045
 
@@ -5384,15 +6049,27 @@ msgstr ""
5384
6049
  msgid "Type"
5385
6050
  msgstr ""
5386
6051
 
6052
+ msgid "Type must be one of: %s"
6053
+ msgstr ""
6054
+
5387
6055
  msgid "Type of content"
5388
6056
  msgstr ""
5389
6057
 
5390
6058
  msgid "Type of content: \"cert\", \"gpg_key\""
5391
6059
  msgstr ""
5392
6060
 
6061
+ msgid "URL"
6062
+ msgstr ""
6063
+
5393
6064
  msgid "URL needs to have a trailing /"
5394
6065
  msgstr ""
5395
6066
 
6067
+ msgid "URL of a PyPI content source such as https://pypi.org."
6068
+ msgstr ""
6069
+
6070
+ msgid "URL of an OSTree repository."
6071
+ msgstr ""
6072
+
5396
6073
  msgid "UUID"
5397
6074
  msgstr ""
5398
6075
 
@@ -5411,6 +6088,9 @@ msgstr ""
5411
6088
  msgid "UUIDs of the virtual guests from the host's hypervisor"
5412
6089
  msgstr ""
5413
6090
 
6091
+ msgid "Unable to connect"
6092
+ msgstr ""
6093
+
5414
6094
  msgid "Unable to connect. Got: %s"
5415
6095
  msgstr ""
5416
6096
 
@@ -5474,7 +6154,6 @@ msgstr ""
5474
6154
  msgid "Uninstall packages remotely using katello-agent. %s"
5475
6155
  msgstr ""
5476
6156
 
5477
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
5478
6157
  msgid "Unknown"
5479
6158
  msgstr "தெரியாத"
5480
6159
 
@@ -5511,17 +6190,24 @@ msgstr ""
5511
6190
  msgid "Unsubscribed hypervisor"
5512
6191
  msgstr ""
5513
6192
 
5514
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
6193
+ msgid "Unsupported CDN resource"
6194
+ msgstr ""
6195
+
5515
6196
  msgid "Unsupported URL protocol %s."
5516
6197
  msgstr "ஆதரவில்லாத URL நெறிமுறை %s."
5517
6198
 
5518
6199
  msgid "Unsupported event type %{type}. Supported: %{types}"
5519
6200
  msgstr ""
5520
6201
 
5521
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
6202
+ msgid "Up-to date"
6203
+ msgstr ""
6204
+
5522
6205
  msgid "Update"
5523
6206
  msgstr "புதுப்பி"
5524
6207
 
6208
+ msgid "Update CDN Configuration"
6209
+ msgstr ""
6210
+
5525
6211
  msgid "Update Content Overrides"
5526
6212
  msgstr ""
5527
6213
 
@@ -5621,6 +6307,9 @@ msgstr ""
5621
6307
  msgid "Update services requiring restart"
5622
6308
  msgstr ""
5623
6309
 
6310
+ msgid "Update the CDN configuration"
6311
+ msgstr ""
6312
+
5624
6313
  msgid "Update the HTTP proxy configuration on the repositories of one or more products."
5625
6314
  msgstr ""
5626
6315
 
@@ -5648,7 +6337,6 @@ msgstr ""
5648
6337
  msgid "Updates all packages on the host(s)"
5649
6338
  msgstr ""
5650
6339
 
5651
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
5652
6340
  msgid "Updating Package..."
5653
6341
  msgstr "தொகுப்பை புதுப்பிக்கிறது..."
5654
6342
 
@@ -5658,14 +6346,25 @@ msgstr ""
5658
6346
  msgid "Updating System Purpose for host %s"
5659
6347
  msgstr ""
5660
6348
 
5661
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
5662
6349
  msgid "Updating package group..."
5663
6350
  msgstr "தொகுப்பு குழுவை புதுப்பிக்கிறது..."
5664
6351
 
5665
6352
  msgid "Updating repository authentication configuration"
5666
6353
  msgstr ""
5667
6354
 
5668
- msgid "Updating..."
6355
+ msgid "Upgradable"
6356
+ msgstr ""
6357
+
6358
+ msgid "Upgradable To"
6359
+ msgstr ""
6360
+
6361
+ msgid "Upgrade"
6362
+ msgstr ""
6363
+
6364
+ msgid "Upgrade via customized remote execution"
6365
+ msgstr ""
6366
+
6367
+ msgid "Upgrade via remote execution"
5669
6368
  msgstr ""
5670
6369
 
5671
6370
  msgid "Upload Content Credential contents"
@@ -5680,10 +6379,11 @@ msgstr ""
5680
6379
  msgid "Upload content into the repository"
5681
6380
  msgstr ""
5682
6381
 
5683
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
5684
- #, fuzzy
5685
6382
  msgid "Upload into"
5686
- msgstr "பதிவேற்றுகிறது"
6383
+ msgstr ""
6384
+
6385
+ msgid "Upload profiles without Dynflow"
6386
+ msgstr ""
5687
6387
 
5688
6388
  msgid "Upload request id"
5689
6389
  msgstr ""
@@ -5694,12 +6394,30 @@ msgstr ""
5694
6394
  msgid "Upstream identity certificate not available"
5695
6395
  msgstr ""
5696
6396
 
6397
+ msgid "Upstream organization %s does not provide this content path"
6398
+ msgstr ""
6399
+
6400
+ msgid "Upstream organization %{org_label} does not have a content view with the label %{cv_label}"
6401
+ msgstr ""
6402
+
6403
+ msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
6404
+ msgstr ""
6405
+
6406
+ msgid "Upstream organization to sync CDN content from"
6407
+ msgstr ""
6408
+
5697
6409
  msgid "Upstream password requires upstream username be set."
5698
6410
  msgstr ""
5699
6411
 
6412
+ msgid "Upstream server to sync CDN content from"
6413
+ msgstr ""
6414
+
5700
6415
  msgid "Upstream username and password may only be set on custom repositories."
5701
6416
  msgstr ""
5702
6417
 
6418
+ msgid "Upstream username and upstream password cannot be blank for ULN repositories"
6419
+ msgstr ""
6420
+
5703
6421
  msgid "Upstream username requires upstream password be set."
5704
6422
  msgstr ""
5705
6423
 
@@ -5733,12 +6451,24 @@ msgstr ""
5733
6451
  msgid "User must be logged in."
5734
6452
  msgstr ""
5735
6453
 
6454
+ msgid "Username"
6455
+ msgstr ""
6456
+
6457
+ msgid "Username for authentication"
6458
+ msgstr ""
6459
+
5736
6460
  msgid "Username of the upstream repository user used for authentication"
5737
6461
  msgstr ""
5738
6462
 
5739
6463
  msgid "Username to access URL"
5740
6464
  msgstr ""
5741
6465
 
6466
+ msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
6467
+ msgstr ""
6468
+
6469
+ msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using a non-Red Hat CDN."
6470
+ msgstr ""
6471
+
5742
6472
  msgid "Valid"
5743
6473
  msgstr ""
5744
6474
 
@@ -5763,22 +6493,53 @@ msgstr ""
5763
6493
  msgid "Version ${item.version}"
5764
6494
  msgstr ""
5765
6495
 
6496
+ msgid "Version ${version.version}"
6497
+ msgstr ""
6498
+
6499
+ msgid "Version ${versionNameToRemove} will be deleted from all environments. It will no longer be available for promotion."
6500
+ msgstr ""
6501
+
6502
+ msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
6503
+ msgstr ""
6504
+
6505
+ msgid "Version details updated."
6506
+ msgstr ""
6507
+
6508
+ msgid "Version in use"
6509
+ msgstr ""
6510
+
5766
6511
  msgid "Versions"
5767
6512
  msgstr ""
5768
6513
 
5769
6514
  msgid "Versions will appear here when the content view is published."
5770
6515
  msgstr ""
5771
6516
 
5772
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
5773
6517
  msgid "View %{view} has not been promoted to %{env}"
5774
6518
  msgstr "காட்சி %{view} ஆனது %{env} க்கு முன்னேற்றப்படவில்லை"
5775
6519
 
5776
6520
  msgid "View a report of the affected hosts"
5777
6521
  msgstr ""
5778
6522
 
5779
- # translation auto-copied from project Subscription Manager, version 1.8.X, document keys
6523
+ msgid "View matching content"
6524
+ msgstr ""
6525
+
5780
6526
  msgid "Virtual"
5781
- msgstr "மெய்நிகர்"
6527
+ msgstr ""
6528
+
6529
+ msgid "Visit the previous Packages page"
6530
+ msgstr ""
6531
+
6532
+ msgid "Waiting to start."
6533
+ msgstr ""
6534
+
6535
+ msgid "Warning"
6536
+ msgstr ""
6537
+
6538
+ msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
6539
+ msgstr ""
6540
+
6541
+ msgid "When \"Upstream URL\" is set, \"Releases/Distributions\" must also be set!"
6542
+ msgstr ""
5782
6543
 
5783
6544
  msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5784
6545
  msgstr ""
@@ -5840,15 +6601,16 @@ msgstr ""
5840
6601
  msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
5841
6602
  msgstr ""
5842
6603
 
5843
- #, fuzzy
5844
6604
  msgid "You cannot set an organization's parent. This feature is disabled."
5845
- msgstr "நீங்கள் பயனர் %s இல் ஒரு முன்னிருப்பு நிறுவனம் மற்றும் சூழலை அமைக்கவில்லை."
6605
+ msgstr ""
5846
6606
 
5847
- #, fuzzy
5848
6607
  msgid "You cannot set an organization's parent_id. This feature is disabled."
5849
- msgstr "நீங்கள் பயனர் %s இல் ஒரு முன்னிருப்பு நிறுவனம் மற்றும் சூழலை அமைக்கவில்லை."
6608
+ msgstr ""
6609
+
6610
+ msgid "You currently don't have any ${selectedContentType}."
6611
+ msgstr ""
5850
6612
 
5851
- msgid "You currently don't have any Content Views."
6613
+ msgid "You currently don't have any Content views."
5852
6614
  msgstr ""
5853
6615
 
5854
6616
  msgid "You currently don't have any filters for this content view."
@@ -5857,12 +6619,21 @@ msgstr ""
5857
6619
  msgid "You currently don't have any history for this content view."
5858
6620
  msgstr ""
5859
6621
 
6622
+ msgid "You currently don't have any repositories associated with this content."
6623
+ msgstr ""
6624
+
5860
6625
  msgid "You currently don't have any repositories to add to this content view."
5861
6626
  msgstr ""
5862
6627
 
6628
+ msgid "You currently don't have any repositories to add to this filter."
6629
+ msgstr ""
6630
+
5863
6631
  msgid "You currently don't have any versions for this content view."
5864
6632
  msgstr ""
5865
6633
 
6634
+ msgid "You currently don\\'t have any related content views."
6635
+ msgstr ""
6636
+
5866
6637
  msgid "You do not have permissions to delete %s"
5867
6638
  msgstr ""
5868
6639
 
@@ -5893,10 +6664,25 @@ msgstr ""
5893
6664
  msgid "Your search query was invalid. Please revise it and try again. The full error has been sent to the application logs."
5894
6665
  msgstr ""
5895
6666
 
6667
+ msgid "Your search returned no matching "
6668
+ msgstr ""
6669
+
6670
+ msgid "Your search returned no matching RPMs."
6671
+ msgstr ""
6672
+
6673
+ msgid "Your search returned no matching activation keys."
6674
+ msgstr ""
6675
+
6676
+ msgid "Your search returned no matching hosts."
6677
+ msgstr ""
6678
+
5896
6679
  msgid "Yum Metadata: %s"
5897
6680
  msgstr ""
5898
6681
 
5899
- msgid "a deb"
6682
+ msgid "a content unit"
6683
+ msgstr ""
6684
+
6685
+ msgid "a deb package"
5900
6686
  msgstr ""
5901
6687
 
5902
6688
  msgid "a docker manifest"
@@ -5917,14 +6703,11 @@ msgstr ""
5917
6703
  msgid "a module stream"
5918
6704
  msgstr ""
5919
6705
 
5920
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
5921
- #, fuzzy
5922
6706
  msgid "a package"
5923
- msgstr "அனைத்து தொகுப்புகள்"
6707
+ msgstr ""
5924
6708
 
5925
- #, fuzzy
5926
6709
  msgid "a package group"
5927
- msgstr "தொகுப்பு குழுவை நிறுவுகிறது..."
6710
+ msgstr ""
5928
6711
 
5929
6712
  msgid "actions not found"
5930
6713
  msgstr ""
@@ -5935,9 +6718,8 @@ msgstr ""
5935
6718
  msgid "activation key name to filter by"
5936
6719
  msgstr ""
5937
6720
 
5938
- #, fuzzy
5939
6721
  msgid "activation keys"
5940
- msgstr "செயல்பாட்டு விசைகள்"
6722
+ msgstr ""
5941
6723
 
5942
6724
  msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
5943
6725
  msgstr ""
@@ -5945,15 +6727,15 @@ msgstr ""
5945
6727
  msgid "add all packages without errata to the included/excluded list. (package filter only)"
5946
6728
  msgstr ""
5947
6729
 
5948
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6730
+ msgid "all environments"
6731
+ msgstr ""
6732
+
5949
6733
  msgid "all packages"
5950
6734
  msgstr "அனைத்து தொகுப்புகள்"
5951
6735
 
5952
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
5953
6736
  msgid "all packages update"
5954
6737
  msgstr "அனைத்து தொகுப்புகள் புதுப்பித்தல்"
5955
6738
 
5956
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
5957
6739
  msgid "all packages update failed"
5958
6740
  msgstr "அனைத்து தொகுப்புகள் புதுப்பித்தல் தோல்வி"
5959
6741
 
@@ -5963,23 +6745,16 @@ msgstr ""
5963
6745
  msgid "already belongs to the content view"
5964
6746
  msgstr ""
5965
6747
 
5966
- #, fuzzy
5967
6748
  msgid "already taken"
5968
- msgstr "மாதிரிஉருவில் ஏற்கனவே உள்ளது"
6749
+ msgstr ""
5969
6750
 
5970
6751
  msgid "an ansible collection"
5971
6752
  msgstr ""
5972
6753
 
5973
- #, fuzzy
5974
6754
  msgid "an erratum"
5975
- msgstr "பிழையை நிறுவுகிறது..."
6755
+ msgstr ""
5976
6756
 
5977
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
5978
- #, fuzzy
5979
6757
  msgid "an organization"
5980
- msgstr "நிறுவனம்"
5981
-
5982
- msgid "an ostree branch"
5983
6758
  msgstr ""
5984
6759
 
5985
6760
  msgid "are only allowed for Yum repositories."
@@ -5994,71 +6769,63 @@ msgstr ""
5994
6769
  msgid "base url to perform repo discovery on"
5995
6770
  msgstr ""
5996
6771
 
6772
+ msgid "bulk add filter rules"
6773
+ msgstr ""
6774
+
6775
+ msgid "bulk delete filter rules"
6776
+ msgstr ""
6777
+
5997
6778
  msgid "can the activation key have unlimited hosts"
5998
6779
  msgstr ""
5999
6780
 
6000
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6001
6781
  msgid "can't be blank"
6002
6782
  msgstr "காலியாக இல்லை"
6003
6783
 
6004
6784
  msgid "cannot add filter to import-only view"
6005
6785
  msgstr ""
6006
6786
 
6007
- # translation auto-copied from project CFSE, version sam-1.2, document app
6008
6787
  msgid "cannot be a binary file."
6009
6788
  msgstr "பைனரி கோப்பாக இருக்கக்கூடாது."
6010
6789
 
6011
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
6012
6790
  msgid "cannot be blank"
6013
6791
  msgstr "காலியாக இருக்கக்கூடாது"
6014
6792
 
6015
6793
  msgid "cannot be blank when Repository URL is provided."
6016
6794
  msgstr ""
6017
6795
 
6018
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello
6019
- #, fuzzy
6020
6796
  msgid "cannot be changed."
6021
- msgstr "காலியாக இருக்கக்கூடாது"
6797
+ msgstr ""
6022
6798
 
6023
- #, fuzzy
6024
6799
  msgid "cannot be deleted if it has been promoted."
6025
- msgstr "ஏற்கனவே முன்னேற்றப்பட்டிருந்தால் தொகுப்பதிவகத்தை செயல்நீக்க முடியாது."
6800
+ msgstr ""
6026
6801
 
6027
6802
  msgid "cannot be less than one"
6028
6803
  msgstr ""
6029
6804
 
6030
- #, fuzzy
6031
6805
  msgid "cannot be lower than current usage count (%s)"
6032
- msgstr "நடப்பு பயன்பாட்டை (%s) விட அதிகமாக அல்லது வரம்பிலாததாக இருக்க வேன்டும்"
6806
+ msgstr ""
6033
6807
 
6034
- #, fuzzy
6035
6808
  msgid "cannot be nil"
6036
- msgstr "காலியாக இல்லை"
6037
-
6038
- msgid "cannot be set because unlimited hosts is set"
6039
6809
  msgstr ""
6040
6810
 
6041
- msgid "cannot be set for non-ostree repositories."
6811
+ msgid "cannot be set because unlimited hosts is set"
6042
6812
  msgstr ""
6043
6813
 
6044
6814
  msgid "cannot be set for non-yum repositories."
6045
6815
  msgstr ""
6046
6816
 
6047
- # translation auto-copied from project CFSE, version sam-1.2, document app
6048
6817
  msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
6049
6818
  msgstr "ascii எழுத்துகள் மற்றும் எண்கள், , '_', '-' ஆகியவை தவிர மற்ற எழுத்துக்களை கொண்டிருக்கக்கூடாது. "
6050
6819
 
6051
6820
  msgid "cannot contain commas"
6052
6821
  msgstr ""
6053
6822
 
6054
- #, fuzzy
6055
6823
  msgid "cannot contain filters if composite view"
6056
- msgstr "ASCII எழுத்துகள் தவிர்த்த மற்ற எழுத்துக்களை கொண்டிருக்கக்கூடாது"
6824
+ msgstr ""
6057
6825
 
6058
6826
  msgid "cannot contain filters whose repositories do not belong to this content view"
6059
6827
  msgstr ""
6060
6828
 
6061
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6062
6829
  msgid "cannot contain more than %s characters"
6063
6830
  msgstr "%s எழுத்துக்களுக்கு மேல் கொண்டிருக்கக்கூடாது"
6064
6831
 
@@ -6083,6 +6850,9 @@ msgstr ""
6083
6850
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
6084
6851
  msgstr ""
6085
6852
 
6853
+ msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
6854
+ msgstr ""
6855
+
6086
6856
  msgid "content view component ID. Identifier of the component association"
6087
6857
  msgstr ""
6088
6858
 
@@ -6107,13 +6877,11 @@ msgstr ""
6107
6877
  msgid "content view numeric identifier"
6108
6878
  msgstr ""
6109
6879
 
6110
- #, fuzzy
6111
6880
  msgid "content view publish"
6112
- msgstr "உள்ளடக்கம்"
6881
+ msgstr ""
6113
6882
 
6114
- #, fuzzy
6115
6883
  msgid "content view refresh"
6116
- msgstr "உள்ளடக்கம்"
6884
+ msgstr ""
6117
6885
 
6118
6886
  msgid "content view to reassign orphaned activation keys to"
6119
6887
  msgstr ""
@@ -6145,6 +6913,9 @@ msgstr ""
6145
6913
  msgid "delete a filter"
6146
6914
  msgstr ""
6147
6915
 
6916
+ msgid "delete the content view with all the versions and environments"
6917
+ msgstr ""
6918
+
6148
6919
  msgid "description"
6149
6920
  msgstr ""
6150
6921
 
@@ -6184,9 +6955,8 @@ msgstr ""
6184
6955
  msgid "environment to reassign orphaned systems to"
6185
6956
  msgstr ""
6186
6957
 
6187
- #, fuzzy
6188
6958
  msgid "environments"
6189
- msgstr "சூழல்கள்"
6959
+ msgstr ""
6190
6960
 
6191
6961
  msgid "errata_id of the content view filter rule"
6192
6962
  msgstr ""
@@ -6245,9 +7015,8 @@ msgstr ""
6245
7015
  msgid "foreman-tasks service not running or is not ready yet"
6246
7016
  msgstr ""
6247
7017
 
6248
- #, fuzzy
6249
7018
  msgid "has already been taken"
6250
- msgstr "மாதிரிஉருவில் ஏற்கனவே உள்ளது"
7019
+ msgstr ""
6251
7020
 
6252
7021
  msgid "has already been taken for a product in this organization."
6253
7022
  msgstr ""
@@ -6282,9 +7051,6 @@ msgstr ""
6282
7051
  msgid "ids to filter content by"
6283
7052
  msgstr ""
6284
7053
 
6285
- msgid "if a custom sync policy is chosen for ostree repositories then a 'depth' value must be provided"
6286
- msgstr ""
6287
-
6288
7054
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
6289
7055
  msgstr ""
6290
7056
 
@@ -6294,27 +7060,21 @@ msgstr ""
6294
7060
  msgid "initiating Pulp task"
6295
7061
  msgstr ""
6296
7062
 
6297
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6298
7063
  msgid "installing errata..."
6299
7064
  msgstr "பிழையை நிறுவுகிறது..."
6300
7065
 
6301
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6302
7066
  msgid "installing erratum..."
6303
7067
  msgstr "பிழையை நிறுவுகிறது..."
6304
7068
 
6305
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6306
7069
  msgid "installing package group..."
6307
7070
  msgstr "தொகுப்பு குழுவை நிறுவுகிறது..."
6308
7071
 
6309
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6310
7072
  msgid "installing package groups..."
6311
7073
  msgstr "தொகுப்பு குழுக்களை நிறுவுகிறது..."
6312
7074
 
6313
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6314
7075
  msgid "installing package..."
6315
7076
  msgstr "தொகுப்பை நிறுவுகிறது..."
6316
7077
 
6317
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6318
7078
  msgid "installing packages..."
6319
7079
  msgstr "தொகுப்புகளை நிறுவுகிறது..."
6320
7080
 
@@ -6330,7 +7090,6 @@ msgstr ""
6330
7090
  msgid "is already attached to the capsule"
6331
7091
  msgstr ""
6332
7092
 
6333
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author ifelix
6334
7093
  msgid "is invalid"
6335
7094
  msgstr "தவறானது"
6336
7095
 
@@ -6382,7 +7141,6 @@ msgstr ""
6382
7141
  msgid "must be %{gpg_key} or %{cert}"
6383
7142
  msgstr ""
6384
7143
 
6385
- # translation auto-copied from project CFSE, version sam-1.2, document app
6386
7144
  msgid "must be a positive integer value."
6387
7145
  msgstr "நேர்க்குறி முழு எண் மதிப்பாகவே இருக்க வேன்டும்."
6388
7146
 
@@ -6392,19 +7150,15 @@ msgstr ""
6392
7150
  msgid "must be one of: %s"
6393
7151
  msgstr ""
6394
7152
 
6395
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6396
7153
  msgid "must be unique within one organization"
6397
7154
  msgstr "ஒரு நிறுவன எல்லைக்குள் தனிப்பட்ட இருக்க வேண்டும்"
6398
7155
 
6399
- # translation auto-copied from project CFSE, version sam-1.2, document app
6400
7156
  msgid "must contain '%s'"
6401
7157
  msgstr "'%s' ஐக் கொண்டிருக்க வேண்டும்"
6402
7158
 
6403
- #, fuzzy
6404
7159
  msgid "must contain GPG Key"
6405
- msgstr "GPG விசை"
7160
+ msgstr ""
6406
7161
 
6407
- # translation auto-copied from project CFSE, version sam-1.2, document app
6408
7162
  msgid "must contain at least %s character"
6409
7163
  msgstr "குறைந்தது %s எழுத்துக்கள் இருக்க வேண்டும்"
6410
7164
 
@@ -6414,7 +7168,6 @@ msgstr ""
6414
7168
  msgid "must contain valid Public GPG Key"
6415
7169
  msgstr ""
6416
7170
 
6417
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6418
7171
  msgid "must not contain leading or trailing white spaces."
6419
7172
  msgstr "முன்னணி அல்லது வெள்ளை இடங்களில் முன்னிலை கொண்டிருக்க கூடாது."
6420
7173
 
@@ -6445,7 +7198,6 @@ msgstr ""
6445
7198
  msgid "name of the subscription"
6446
7199
  msgstr ""
6447
7200
 
6448
- # translation auto-copied from project CFSE, version sam-1.2, document app
6449
7201
  msgid "name: %s doesn't exist "
6450
7202
  msgstr "பெயர்: %s இல்லை "
6451
7203
 
@@ -6464,7 +7216,6 @@ msgstr ""
6464
7216
  msgid "obtain manifest history for subscriptions"
6465
7217
  msgstr ""
6466
7218
 
6467
- # translation auto-copied from project CFSE, version sam-1.2, document app
6468
7219
  msgid "of environment must be unique within one organization"
6469
7220
  msgstr "ஒரு நிறுவனத்தில் சூழலின் இந்த அம்சம் தனித்துவமாக இருக்க வேண்டும்"
6470
7221
 
@@ -6525,9 +7276,6 @@ msgstr ""
6525
7276
  msgid "policies for HTTP proxy for content sync"
6526
7277
  msgstr ""
6527
7278
 
6528
- msgid "policies for syncing upstream ostree repositories"
6529
- msgstr ""
6530
-
6531
7279
  msgid "policy for HTTP proxy for content sync"
6532
7280
  msgstr ""
6533
7281
 
@@ -6540,19 +7288,15 @@ msgstr ""
6540
7288
  msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
6541
7289
  msgstr ""
6542
7290
 
6543
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6544
7291
  msgid "removing package group..."
6545
7292
  msgstr "தொகுப்பு குழுக்களை நீக்குகிறது..."
6546
7293
 
6547
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6548
7294
  msgid "removing package groups..."
6549
7295
  msgstr "தொகுப்பு குழுவை நீக்குகிறது..."
6550
7296
 
6551
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6552
7297
  msgid "removing package..."
6553
7298
  msgstr "தொகுப்பை நீக்கவும்..."
6554
7299
 
6555
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6556
7300
  msgid "removing packages..."
6557
7301
  msgstr "தொகுப்புக்களை நீக்குகிறது..."
6558
7302
 
@@ -6571,9 +7315,6 @@ msgstr ""
6571
7315
  msgid "repository source url"
6572
7316
  msgstr ""
6573
7317
 
6574
- msgid "repository url"
6575
- msgstr ""
6576
-
6577
7318
  msgid "repository_id"
6578
7319
  msgstr ""
6579
7320
 
@@ -6598,6 +7339,9 @@ msgstr ""
6598
7339
  msgid "set true if you want to see only library environments"
6599
7340
  msgstr ""
6600
7341
 
7342
+ msgid "sha256"
7343
+ msgstr ""
7344
+
6601
7345
  msgid "show archived repositories"
6602
7346
  msgstr ""
6603
7347
 
@@ -6634,7 +7378,6 @@ msgstr ""
6634
7378
  msgid "temporarily override feed URL for sync"
6635
7379
  msgstr ""
6636
7380
 
6637
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6638
7381
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
6639
7382
  msgstr "Red Hat வழங்குநருக்காக பின்வரும் பண்புகளுக்காக புதுப்பிக்கப்படவில்லை: [ %s ]"
6640
7383
 
@@ -6647,10 +7390,10 @@ msgstr ""
6647
7390
  msgid "true if this repository can be published via HTTP"
6648
7391
  msgstr ""
6649
7392
 
6650
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed"
7393
+ msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
6651
7394
  msgstr ""
6652
7395
 
6653
- msgid "type of filter (e.g. rpm, package_group, erratum, docker, modulemd)"
7396
+ msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
6654
7397
  msgstr ""
6655
7398
 
6656
7399
  msgid "type of repo"
@@ -6665,34 +7408,45 @@ msgstr ""
6665
7408
  msgid "update a filter"
6666
7409
  msgstr ""
6667
7410
 
6668
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6669
7411
  msgid "updating package group..."
6670
7412
  msgstr "தொகுப்பு குழுவை புதுப்பிக்கிறது..."
6671
7413
 
6672
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6673
7414
  msgid "updating package groups..."
6674
7415
  msgstr "தொகுப்பு குழுக்களை புதுப்பிக்கிறது..."
6675
7416
 
6676
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6677
7417
  msgid "updating package..."
6678
7418
  msgstr "தொகுப்பை புதுப்பிக்கிறது..."
6679
7419
 
6680
- # translation auto-copied from project CFSE, version sam-1.2, document app, author ifelix
6681
7420
  msgid "updating packages..."
6682
7421
  msgstr "தொகுப்புகளை புதுப்பிக்கிறது..."
6683
7422
 
6684
7423
  msgid "url not defined."
6685
7424
  msgstr ""
6686
7425
 
7426
+ msgid "via customized remote execution"
7427
+ msgstr ""
7428
+
7429
+ msgid "via remote execution"
7430
+ msgstr ""
7431
+
7432
+ msgid "view content view tabs."
7433
+ msgstr ""
7434
+
6687
7435
  msgid "waiting for Candlepin to finish the task"
6688
7436
  msgstr ""
6689
7437
 
6690
7438
  msgid "waiting for Pulp to finish the task"
6691
7439
  msgstr ""
6692
7440
 
7441
+ msgid "waiting for Pulp to finish the task %s"
7442
+ msgstr ""
7443
+
6693
7444
  msgid "waiting for Pulp to start the task"
6694
7445
  msgstr ""
6695
7446
 
7447
+ msgid "waiting for Pulp to start the task %s"
7448
+ msgstr ""
7449
+
6696
7450
  msgid "whitespace-separated list of architectures to be synced from deb-archive"
6697
7451
  msgstr ""
6698
7452