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/ko/katello.po CHANGED
@@ -1,25 +1,24 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the 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
- # eukim <eukim@redhat.com>, 2013. #zanata
8
- # eukim <eukim@redhat.com>, 2014. #zanata
9
- # eukim <eukim@redhat.com>, 2015. #zanata
7
+ # 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
8
+ # Bryan Kearney <bryan.kearney@gmail.com>, 2021
9
+ #
10
10
  msgid ""
11
11
  msgstr ""
12
- "Project-Id-Version: version 0.0.1\n"
12
+ "Project-Id-Version: katello 2.5.0\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "PO-Revision-Date: 2015-04-28 01:30+0000\n"
15
- "Last-Translator: eukim <eukim@redhat.com>\n"
16
- "Language-Team: LANGUAGE <LL@li.org>\n"
17
- "Language: ko\n"
14
+ "PO-Revision-Date: 2017-12-19 20:14+0000\n"
15
+ "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2021\n"
16
+ "Language-Team: Korean (https://www.transifex.com/foreman/teams/114/ko/)\n"
18
17
  "MIME-Version: 1.0\n"
19
18
  "Content-Type: text/plain; charset=UTF-8\n"
20
19
  "Content-Transfer-Encoding: 8bit\n"
20
+ "Language: ko\n"
21
21
  "Plural-Forms: nplurals=1; plural=0;\n"
22
- "X-Generator: Zanata 3.6.0\n"
23
22
 
24
23
  msgid ""
25
24
  "\n"
@@ -47,14 +46,53 @@ msgstr ""
47
46
  msgid " View task details "
48
47
  msgstr ""
49
48
 
49
+ msgid " ago"
50
+ msgstr ""
51
+
52
+ msgid " ago."
53
+ msgstr ""
54
+
55
+ msgid " are out of the environment path order. The recommended practice is to promote to the next environment in the path."
56
+ msgstr ""
57
+
58
+ msgid " content view is used in listed component content views. For more information, "
59
+ msgstr ""
60
+
61
+ msgid " content view is used in listed composite content views."
62
+ msgstr ""
63
+
50
64
  msgid " environment cannot be set to an environment already on its path"
51
65
  msgstr "환경은 이미 경로에 있는 환경에 설정할 수 없음 "
52
66
 
67
+ msgid " found."
68
+ msgstr ""
69
+
70
+ msgid " is out of the environment path order. The recommended practice is to promote to the next environment in the path."
71
+ msgstr ""
72
+
73
+ msgid "${deleteFlow ? 'Deleting' : 'Removing'} version ${versionNameToRemove}"
74
+ msgstr ""
75
+
76
+ msgid "${pluralize(akResponse.length, 'activation key')} will be moved to content view ${selectedCVNameForAK} in "
77
+ msgstr ""
78
+
79
+ msgid "${pluralize(hostResponse.length, 'host')} will be moved to content view ${selectedCVNameForHosts} in "
80
+ msgstr ""
81
+
82
+ msgid "${pluralize(versionCount, 'content view version')} in the environments below will be removed when content view is deleted"
83
+ msgstr ""
84
+
85
+ msgid "${selectedContentType}"
86
+ msgstr ""
87
+
88
+ msgid "${selectedContentType} will appear here when created."
89
+ msgstr ""
90
+
53
91
  msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
54
92
  msgstr ""
55
93
 
56
94
  msgid "%s Available"
57
- msgstr ""
95
+ msgstr "%s 사용 가능"
58
96
 
59
97
  msgid "%s Errata"
60
98
  msgstr "%s 에라타 "
@@ -65,7 +103,7 @@ msgstr[0] ""
65
103
  msgstr[1] ""
66
104
 
67
105
  msgid "%s Used"
68
- msgstr ""
106
+ msgstr "%s 사용됨"
69
107
 
70
108
  msgid "%s ago"
71
109
  msgstr "%s 전 "
@@ -76,6 +114,9 @@ msgstr ""
76
114
  msgid "%s is not a valid package name"
77
115
  msgstr "%s은(는) 유효한 패키지 이름이 아닙니다 "
78
116
 
117
+ msgid "%s is required"
118
+ msgstr ""
119
+
79
120
  msgid "%s is unreachable. %s"
80
121
  msgstr ""
81
122
 
@@ -266,7 +307,7 @@ msgid "%{unused_substitutions} cannot be specified for %{content_name} as that i
266
307
  msgstr ""
267
308
 
268
309
  msgid "%{used} of %{total}"
269
- msgstr ""
310
+ msgstr "%{used}(총: %{total})"
270
311
 
271
312
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
272
313
  msgstr ""
@@ -280,7 +321,6 @@ msgstr ""
280
321
  msgid ", must be unique to major and version id version."
281
322
  msgstr ""
282
323
 
283
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
284
324
  msgid ": '%s' is a built-in environment"
285
325
  msgstr ": '%s'는 내장된 환경입니다 "
286
326
 
@@ -321,7 +361,7 @@ msgid "A new version of "
321
361
  msgstr ""
322
362
 
323
363
  msgid "A post-promotion summary of hosts with installable errata"
324
- msgstr ""
364
+ msgstr "설치 가능한 에라타를 갖는 호스트의 승격 후 요약 "
325
365
 
326
366
  msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
327
367
  msgstr ""
@@ -338,6 +378,9 @@ msgstr "호스트에 사용 가능하고 적용 가능한 에라타 요약 "
338
378
  msgid "A summary of new errata after a repository is synchronized"
339
379
  msgstr "리포지터리를 동기화한 후 새 에라타 요약 "
340
380
 
381
+ msgid "ANY"
382
+ msgstr ""
383
+
341
384
  msgid "About page"
342
385
  msgstr ""
343
386
 
@@ -348,10 +391,10 @@ msgid "Accept action timeout"
348
391
  msgstr ""
349
392
 
350
393
  msgid "Account Number"
351
- msgstr ""
394
+ msgstr "계정 번호 "
352
395
 
353
396
  msgid "Action"
354
- msgstr ""
397
+ msgstr "동작 "
355
398
 
356
399
  msgid "Action not allowed for the default smart proxy."
357
400
  msgstr ""
@@ -363,6 +406,9 @@ msgid "Action unauthorized to be performed on selected hosts."
363
406
  msgstr ""
364
407
 
365
408
  msgid "Action with sub plans"
409
+ msgstr "하위 계획이 있는 작업"
410
+
411
+ msgid "Actions"
366
412
  msgstr ""
367
413
 
368
414
  msgid "Activation Keys"
@@ -377,6 +423,9 @@ msgstr ""
377
423
  msgid "Activation key(s) for Subscription Manager."
378
424
  msgstr ""
379
425
 
426
+ msgid "Activation keys"
427
+ msgstr ""
428
+
380
429
  msgid "Activation keys and subscriptions can be managed"
381
430
  msgstr "활성키 및 서브스크립션을 관리할 수 있습니다 "
382
431
 
@@ -387,38 +436,59 @@ msgid "Activation keys: "
387
436
  msgstr ""
388
437
 
389
438
  msgid "Active Subscriptions"
390
- msgstr ""
439
+ msgstr "활성 서브스크립션"
391
440
 
392
441
  msgid "Active only"
393
442
  msgstr "활성화된 경우에만 "
394
443
 
395
444
  msgid "Add"
445
+ msgstr "추가 "
446
+
447
+ msgid "Add Bookmark"
448
+ msgstr ""
449
+
450
+ msgid "Add RPM rule"
396
451
  msgstr ""
397
452
 
398
453
  msgid "Add Subscriptions"
399
454
  msgstr ""
400
455
 
401
456
  msgid "Add a subscription to a host"
402
- msgstr ""
457
+ msgstr "호스트에 서브스크립션 추가"
403
458
 
404
459
  msgid "Add component"
405
460
  msgstr ""
406
461
 
462
+ msgid "Add component content views"
463
+ msgstr ""
464
+
407
465
  msgid "Add components to the content view"
408
466
  msgstr ""
409
467
 
468
+ msgid "Add content views"
469
+ msgstr ""
470
+
410
471
  msgid "Add custom cron logic for sync plan"
411
472
  msgstr ""
412
473
 
474
+ msgid "Add errata"
475
+ msgstr ""
476
+
477
+ msgid "Add filter rule"
478
+ msgstr ""
479
+
413
480
  msgid "Add filters using the 'Add filter' button above."
414
481
  msgstr ""
415
482
 
416
483
  msgid "Add host to the host collection"
417
- msgstr ""
484
+ msgstr "호스트 컬렉션에 호스트 추가"
418
485
 
419
486
  msgid "Add lifecycle environments to the smart proxy"
420
487
  msgstr ""
421
488
 
489
+ msgid "Add new bookmark"
490
+ msgstr ""
491
+
422
492
  msgid "Add one or more host collections to one or more hosts"
423
493
  msgstr ""
424
494
 
@@ -428,63 +498,93 @@ msgstr ""
428
498
  msgid "Add products to sync plan"
429
499
  msgstr "동기화 계획에 제품 추가 "
430
500
 
501
+ msgid "Add repositories"
502
+ msgstr ""
503
+
504
+ msgid "Add rule"
505
+ msgstr ""
506
+
431
507
  msgid "Add subscriptions consumed by a manifest from Red Hat Subscription Management"
432
508
  msgstr ""
433
509
 
434
510
  msgid "Add subscriptions to one or more hosts"
435
511
  msgstr ""
436
512
 
437
- msgid "Add to this filter using the 'Add RPM' button."
513
+ msgid "Add to this filter using the 'Add RPM rule' button."
514
+ msgstr ""
515
+
516
+ msgid "Add to this filter using the 'Add filter rule' button."
438
517
  msgstr ""
439
518
 
440
- msgid "Add to this filter using the 'Add package group' button."
519
+ msgid "Add traces by applying updates on this host."
441
520
  msgstr ""
442
521
 
443
522
  msgid "Added"
444
523
  msgstr ""
445
524
 
525
+ msgid "Added %s"
526
+ msgstr ""
527
+
446
528
  msgid "Added Content:"
447
529
  msgstr "추가된 컨텐츠: "
448
530
 
449
531
  msgid "Added component to content view"
450
532
  msgstr ""
451
533
 
452
- msgid "Adding content units"
453
- msgstr ""
454
-
455
534
  msgid "Additional content"
456
535
  msgstr ""
457
536
 
458
537
  msgid "Addons"
459
538
  msgstr ""
460
539
 
540
+ msgid "Affected repositories"
541
+ msgstr ""
542
+
461
543
  msgid "After generating the incremental update, apply the changes to the specified hosts. Only Errata are supported currently."
462
544
  msgstr ""
463
545
 
464
546
  msgid "Agent action"
465
547
  msgstr ""
466
548
 
549
+ msgid "All"
550
+ msgstr ""
551
+
467
552
  msgid "All Media"
468
553
  msgstr ""
469
554
 
555
+ msgid "All Repositories"
556
+ msgstr ""
557
+
470
558
  msgid "All available architectures for this repo are enabled."
471
559
  msgstr ""
472
560
 
473
561
  msgid "All errata applied"
562
+ msgstr "적용된 모든 에라타"
563
+
564
+ msgid "All versions"
565
+ msgstr ""
566
+
567
+ msgid "All versions will be removed from these environments"
474
568
  msgstr ""
475
569
 
476
570
  msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
477
571
  msgstr ""
478
572
 
573
+ 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)"
574
+ msgstr ""
575
+
479
576
  msgid "Allow hosts to re-register themselves only when they are in build mode"
480
577
  msgstr ""
481
578
 
482
579
  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."
483
580
  msgstr ""
484
581
 
485
- msgid "Alter a hosts host collections"
582
+ msgid "Also include the latest upgradable package version for each host package"
486
583
  msgstr ""
487
584
 
585
+ msgid "Alter a hosts host collections"
586
+ msgstr "호스트 컬렉션 변경"
587
+
488
588
  msgid "Always Use Latest (currently %{version})"
489
589
  msgstr ""
490
590
 
@@ -504,6 +604,13 @@ msgid ""
504
604
  "An error occurred during the sync \n"
505
605
  "%{error_message}"
506
606
  msgstr ""
607
+ "동기화하는 도중 오류가 발생했습니다. \n"
608
+ "%{error_message}"
609
+
610
+ msgid ""
611
+ "An error occurred during upload \n"
612
+ "%{error_message}"
613
+ msgstr ""
507
614
 
508
615
  msgid "Another component already includes content view with ID %s"
509
616
  msgstr ""
@@ -517,19 +624,55 @@ msgstr ""
517
624
  msgid "Ansible Collections"
518
625
  msgstr ""
519
626
 
627
+ msgid "Ansible collection"
628
+ msgstr ""
629
+
630
+ msgid "Ansible collections"
631
+ msgstr ""
632
+
520
633
  msgid "Applicability Batch Size"
521
634
  msgstr ""
522
635
 
523
- msgid "Arch"
636
+ msgid "Applicable Content Hosts"
524
637
  msgstr ""
525
638
 
526
- msgid "Architecture"
639
+ msgid "Application"
640
+ msgstr ""
641
+
642
+ msgid "Apply"
643
+ msgstr ""
644
+
645
+ msgid "Apply Erratum"
646
+ msgstr ""
647
+
648
+ msgid "Apply to all repositories in the CV"
649
+ msgstr ""
650
+
651
+ msgid "Apply to subset of repositories"
652
+ msgstr ""
653
+
654
+ msgid "Apply via Katello agent"
655
+ msgstr ""
656
+
657
+ msgid "Apply via customized remote execution"
658
+ msgstr ""
659
+
660
+ msgid "Apply via remote execution"
527
661
  msgstr ""
528
662
 
663
+ msgid "Arch"
664
+ msgstr "아키텍처 "
665
+
666
+ msgid "Architecture"
667
+ msgstr "아키텍처 "
668
+
529
669
  msgid "Architecture of content in the repository"
530
670
  msgstr ""
531
671
 
532
672
  msgid "Architecture(s)"
673
+ msgstr "아키텍처 "
674
+
675
+ 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."
533
676
  msgstr ""
534
677
 
535
678
  msgid "Are you sure you want to delete the manifest?"
@@ -554,7 +697,7 @@ msgid "Array of content view component IDs to remove. Identifier of the componen
554
697
  msgstr ""
555
698
 
556
699
  msgid "Array of host ids"
557
- msgstr ""
700
+ msgstr "호스트 ID의 배열"
558
701
 
559
702
  msgid "Array of local pool IDs. Only pools originating upstream are accepted."
560
703
  msgstr ""
@@ -566,7 +709,7 @@ msgid "Array of subscriptions to add"
566
709
  msgstr "추가할 서브스크립션 어레이 "
567
710
 
568
711
  msgid "Array of subscriptions to remove"
569
- msgstr ""
712
+ msgstr "삭제할 서브스크립션 배열"
570
713
 
571
714
  msgid "Array of uploads to import"
572
715
  msgstr ""
@@ -580,7 +723,6 @@ msgstr ""
580
723
  msgid "Assign system purpose attributes on one or more hosts"
581
724
  msgstr ""
582
725
 
583
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
584
726
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
585
727
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
586
728
  msgstr[0] "%{taxonomy_single}이 없는 %{count} 호스트를 %{taxonomy_name}에 할당합니다 "
@@ -595,7 +737,7 @@ msgid "Associated location IDs"
595
737
  msgstr ""
596
738
 
597
739
  msgid "Associations"
598
- msgstr ""
740
+ msgstr "연결 "
599
741
 
600
742
  msgid "At least one Content View Version must be specified"
601
743
  msgstr "최소 하나의 컨텐츠 뷰 버전을 지정해야 합니다 "
@@ -609,15 +751,17 @@ msgstr "최소 하나의 활성키가 라이프 사이클 환경에 필요하며
609
751
  msgid "At least one organization must exist."
610
752
  msgstr "최소 하나의 조직이 존재해야 합니다. "
611
753
 
612
- # translation auto-copied from project rhsm-web, version 0.0, document management, author eukim
754
+ msgid "Atleast one errata type needs to be selected."
755
+ msgstr ""
756
+
613
757
  msgid "Attach a subscription"
614
758
  msgstr "서브스크립션 첨부 "
615
759
 
616
760
  msgid "Attach subscriptions"
617
- msgstr ""
761
+ msgstr "서브스크립션 연결"
618
762
 
619
763
  msgid "Attach subscriptions to %s"
620
- msgstr ""
764
+ msgstr "%s에 서브스크립션 연결"
621
765
 
622
766
  msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
623
767
  msgstr ""
@@ -625,14 +769,8 @@ msgstr ""
625
769
  msgid "Auth URL requires Auth token be set."
626
770
  msgstr ""
627
771
 
628
- msgid "Auth token requires Auth URL be set."
629
- msgstr ""
630
-
631
772
  msgid "Author"
632
- msgstr ""
633
-
634
- msgid "Auto Publish"
635
- msgstr ""
773
+ msgstr "작성자"
636
774
 
637
775
  msgid "Auto Publish - Triggered by '%s'"
638
776
  msgstr ""
@@ -640,6 +778,9 @@ msgstr ""
640
778
  msgid "Auto attach subscriptions"
641
779
  msgstr "서브스크립션 자동 첨부"
642
780
 
781
+ msgid "Auto publish"
782
+ msgstr ""
783
+
643
784
  msgid "Autopublish"
644
785
  msgstr ""
645
786
 
@@ -655,12 +796,12 @@ msgstr ""
655
796
  msgid "Available Repositories"
656
797
  msgstr ""
657
798
 
799
+ msgid "Available Schema Versions"
800
+ msgstr ""
801
+
658
802
  msgid "Backend System Status"
659
803
  msgstr "백엔드 시스템 상태 "
660
804
 
661
- msgid "Background"
662
- msgstr ""
663
-
664
805
  msgid "Base URL to perform repo discovery on"
665
806
  msgstr ""
666
807
 
@@ -673,7 +814,9 @@ msgstr "활성화할 Basearch "
673
814
  msgid "Batch size to sync repositories in."
674
815
  msgstr ""
675
816
 
676
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
817
+ 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."
818
+ msgstr ""
819
+
677
820
  msgid "Beta"
678
821
  msgstr "베타 "
679
822
 
@@ -683,23 +826,39 @@ msgstr ""
683
826
  msgid "Bind entitlements to an allocation"
684
827
  msgstr ""
685
828
 
686
- msgid "Both major and minor parameters have to be used to override a CV version"
829
+ msgid "Bookmark this search"
830
+ msgstr ""
831
+
832
+ msgid "Bookmarks marked as public are available to all users"
687
833
  msgstr ""
688
834
 
689
- msgid "Branches updated"
835
+ msgid "Both major and minor parameters have to be used to override a CV version"
690
836
  msgstr ""
691
837
 
692
- # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
693
838
  msgid "Bug Fix"
694
839
  msgstr "버그 수정"
695
840
 
696
- # translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
697
841
  msgid "Bugfix"
698
842
  msgstr "버그 수정 "
699
843
 
844
+ msgid "Bugs"
845
+ msgstr ""
846
+
847
+ msgid "Bulk generate applicability for host %s"
848
+ msgstr ""
849
+
700
850
  msgid "Bulk generate applicability for hosts"
701
851
  msgstr ""
702
852
 
853
+ msgid "CDN Configuration"
854
+ msgstr ""
855
+
856
+ msgid "CDN Configuration for Red Hat Content"
857
+ msgstr ""
858
+
859
+ msgid "CDN Configuration updated."
860
+ msgstr ""
861
+
703
862
  msgid "CDN SSL version"
704
863
  msgstr ""
705
864
 
@@ -715,6 +874,9 @@ msgstr "CDN 로딩 중 오류 발생: %s로 액세스 금지됨 "
715
874
  msgid "CVE identifier"
716
875
  msgstr "CVE 식별자 "
717
876
 
877
+ msgid "CVEs"
878
+ msgstr ""
879
+
718
880
  msgid "Calculate Applicable Errata based on a particular Content View"
719
881
  msgstr "특정 컨텐츠 뷰를 기반으로 적용 가능한 에라타 계산 "
720
882
 
@@ -736,11 +898,9 @@ msgstr "기본값 컨테츠 뷰에 있는 컨텐츠만 삭제할 수 있습니
736
898
  msgid "Can only upload to Yum Repositories."
737
899
  msgstr ""
738
900
 
739
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
740
901
  msgid "Can't update the '%s' environment"
741
902
  msgstr "'%s' 환경을 업데이트할 수 없음 "
742
903
 
743
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
744
904
  msgid "Cancel"
745
905
  msgstr "취소 "
746
906
 
@@ -750,13 +910,8 @@ msgstr "리포지터리 검색 취소 "
750
910
  msgid "Cancel running smart proxy synchronization"
751
911
  msgstr ""
752
912
 
753
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
754
- #, fuzzy
755
913
  msgid "Canceled"
756
- msgstr "취소됨. "
757
-
758
- msgid "Cancelled"
759
- msgstr ""
914
+ msgstr "취소함"
760
915
 
761
916
  msgid "Cancelled."
762
917
  msgstr "취소되었습니다."
@@ -809,7 +964,6 @@ msgstr "연결된 %{dependent}로 인해 '%{view}'를 삭제할 수 없습니다
809
964
  msgid "Cannot delete Red Hat product: %{product}"
810
965
  msgstr ""
811
966
 
812
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
813
967
  msgid "Cannot delete from %s, view does not exist there."
814
968
  msgstr "%s에서 삭제할 수 없습니다, 보기는 여기에 존재하지 않습니다."
815
969
 
@@ -835,7 +989,7 @@ msgid "Cannot delete version while it is in environments: %s"
835
989
  msgstr "환경에 있는 버전을 삭제할 수 없습니다: %s"
836
990
 
837
991
  msgid "Cannot delete version while it is in use by composite content views: %s"
838
- msgstr ""
992
+ msgstr "복합 컨텐츠 뷰에 사용 중인 동안에는 버전을 삭제할 수 없습니다: %s"
839
993
 
840
994
  msgid "Cannot delete view while it exists in environments"
841
995
  msgstr "뷰가 환경에서 있어 삭제할 수 없습니다 "
@@ -864,7 +1018,6 @@ msgstr ""
864
1018
  msgid "Cannot publish default content view"
865
1019
  msgstr "기본 컨텐츠 뷰를 공개할 수 없습니다 "
866
1020
 
867
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
868
1021
  msgid "Cannot register a system to the '%s' environment"
869
1022
  msgstr "'%s' 환경에 시스템을 등록할 수 없음 "
870
1023
 
@@ -895,6 +1048,9 @@ msgstr "복합적 뷰의 컨텐츠를 지정할 수 없습니다 "
895
1048
  msgid "Cannot sync file:// repositories with the On Demand Download Policy"
896
1049
  msgstr ""
897
1050
 
1051
+ msgid "Cannot upload Ansible collections."
1052
+ msgstr ""
1053
+
898
1054
  msgid "Cannot upload Container Image content."
899
1055
  msgstr ""
900
1056
 
@@ -911,7 +1067,7 @@ msgid "Check services before actions"
911
1067
  msgstr ""
912
1068
 
913
1069
  msgid "Checksum"
914
- msgstr ""
1070
+ msgstr "체크섬 "
915
1071
 
916
1072
  msgid "Checksum of file to upload"
917
1073
  msgstr ""
@@ -928,14 +1084,12 @@ msgstr ""
928
1084
  msgid "Click here to go to the tasks page for the task."
929
1085
  msgstr ""
930
1086
 
931
- # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Junwan Park
932
1087
  msgid "Clone"
933
1088
  msgstr "복제(Clone)"
934
1089
 
935
1090
  msgid "Close"
936
- msgstr ""
1091
+ msgstr "종료 "
937
1092
 
938
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
939
1093
  msgid "Collapse All"
940
1094
  msgstr "모두 축소"
941
1095
 
@@ -948,7 +1102,6 @@ msgstr ""
948
1102
  msgid "Comma-separated list of tags to sync for Container Image repository"
949
1103
  msgstr ""
950
1104
 
951
- # translation auto-copied from project [RHEL] [STORAGE] DM Multipath, version 6.4, document MPIO_Overview
952
1105
  msgid "Component"
953
1106
  msgstr "구성 요소 "
954
1107
 
@@ -958,6 +1111,15 @@ msgstr ""
958
1111
  msgid "Component content view"
959
1112
  msgstr ""
960
1113
 
1114
+ msgid "Component content views"
1115
+ msgstr ""
1116
+
1117
+ msgid "Components"
1118
+ msgstr ""
1119
+
1120
+ msgid "Composite"
1121
+ msgstr ""
1122
+
961
1123
  msgid "Composite Content View"
962
1124
  msgstr ""
963
1125
 
@@ -967,9 +1129,12 @@ msgstr ""
967
1129
  msgid "Composite content view"
968
1130
  msgstr "복합적인 컨텐츠 뷰 "
969
1131
 
970
- msgid "Compute resource IDs"
1132
+ msgid "Composite content views"
971
1133
  msgstr ""
972
1134
 
1135
+ msgid "Compute resource IDs"
1136
+ msgstr "컴퓨터 리소스 ID "
1137
+
973
1138
  msgid "Confirm Deletion"
974
1139
  msgstr ""
975
1140
 
@@ -982,9 +1147,15 @@ msgstr ""
982
1147
  msgid "Consisting of multiple component content views"
983
1148
  msgstr ""
984
1149
 
985
- msgid "Consumed"
1150
+ msgid "Consists of content views"
1151
+ msgstr ""
1152
+
1153
+ msgid "Consists of repositories"
986
1154
  msgstr ""
987
1155
 
1156
+ msgid "Consumed"
1157
+ msgstr "사용됨 "
1158
+
988
1159
  msgid "Container Image Manifest"
989
1160
  msgstr ""
990
1161
 
@@ -1006,22 +1177,39 @@ msgstr ""
1006
1177
  msgid "Container image tag"
1007
1178
  msgstr ""
1008
1179
 
1009
- # translation auto-copied from project PressGang CCMS topics, version 1, document 30851-704293, author eukim
1180
+ msgid "Container image tags"
1181
+ msgstr ""
1182
+
1183
+ msgid "Container manifest lists"
1184
+ msgstr ""
1185
+
1186
+ msgid "Container manifests"
1187
+ msgstr ""
1188
+
1010
1189
  msgid "Content"
1011
1190
  msgstr "컨텐츠"
1012
1191
 
1192
+ msgid "Content Count"
1193
+ msgstr ""
1194
+
1013
1195
  msgid "Content Credential ID"
1014
1196
  msgstr ""
1015
1197
 
1016
1198
  msgid "Content Credential numeric identifier"
1017
1199
  msgstr ""
1018
1200
 
1201
+ msgid "Content Credential to use for SSL CA"
1202
+ msgstr ""
1203
+
1019
1204
  msgid "Content Credentials"
1020
1205
  msgstr ""
1021
1206
 
1022
- msgid "Content Download URL"
1207
+ msgid "Content Details"
1023
1208
  msgstr ""
1024
1209
 
1210
+ msgid "Content Download URL"
1211
+ msgstr "컨텐츠 다운로드 URL"
1212
+
1025
1213
  msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
1026
1214
  msgstr ""
1027
1215
 
@@ -1032,31 +1220,25 @@ msgid "Content Source"
1032
1220
  msgstr "컨텐츠 소스 "
1033
1221
 
1034
1222
  msgid "Content Sync"
1035
- msgstr ""
1223
+ msgstr "컨텐츠 동기화"
1036
1224
 
1037
1225
  msgid "Content Types"
1038
1226
  msgstr ""
1039
1227
 
1040
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1041
1228
  msgid "Content View"
1042
1229
  msgstr "컨텐츠 보기 "
1043
1230
 
1044
1231
  msgid "Content View %{view}: Versions: %{versions}"
1045
1232
  msgstr ""
1046
1233
 
1047
- msgid "Content View Dependency Solving Algorithm"
1048
- msgstr ""
1049
-
1050
1234
  msgid "Content View Dependency Solving Default"
1051
1235
  msgstr ""
1052
1236
 
1053
1237
  msgid "Content View Details"
1054
1238
  msgstr ""
1055
1239
 
1056
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1057
- #, fuzzy
1058
1240
  msgid "Content View Filter id"
1059
- msgstr "컨텐츠 보기 개요 "
1241
+ msgstr "컨텐츠 보기 개요"
1060
1242
 
1061
1243
  msgid "Content View Filter identifier"
1062
1244
  msgstr ""
@@ -1064,6 +1246,12 @@ msgstr ""
1064
1246
  msgid "Content View ID"
1065
1247
  msgstr ""
1066
1248
 
1249
+ msgid "Content View Label"
1250
+ msgstr ""
1251
+
1252
+ msgid "Content View Name"
1253
+ msgstr ""
1254
+
1067
1255
  msgid "Content View Version %{id} not in all specified environments %{envs}"
1068
1256
  msgstr "컨텐츠 뷰 버전 %{id}이 모든 지정된 환경 %{envs}에 없습니다 "
1069
1257
 
@@ -1080,12 +1268,11 @@ msgid "Content View Version specified in the metadata - '%{name}' already exists
1080
1268
  msgstr ""
1081
1269
 
1082
1270
  msgid "Content View and Environment not set for registration."
1083
- msgstr ""
1271
+ msgstr "등록할 컨텐츠 뷰 및 환경이 설정되지 않았습니다."
1084
1272
 
1085
1273
  msgid "Content View id"
1086
1274
  msgstr ""
1087
1275
 
1088
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1089
1276
  msgid "Content Views"
1090
1277
  msgstr "컨텐츠 보기 "
1091
1278
 
@@ -1095,9 +1282,15 @@ msgstr "업로드할 컨텐츠 파일입니다. 단일 파일 또는 파일 어
1095
1282
  msgid "Content host must be unregistered before performing this action."
1096
1283
  msgstr ""
1097
1284
 
1285
+ msgid "Content hosts"
1286
+ msgstr ""
1287
+
1098
1288
  msgid "Content imported from %{path} into content view '%{name}' by %{user}"
1099
1289
  msgstr ""
1100
1290
 
1291
+ msgid "Content not uploaded to pulp"
1292
+ msgstr ""
1293
+
1101
1294
  msgid "Content source ID"
1102
1295
  msgstr ""
1103
1296
 
@@ -1119,7 +1312,6 @@ msgstr ""
1119
1312
  msgid "Content view ${name} created"
1120
1313
  msgstr ""
1121
1314
 
1122
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1123
1315
  msgid "Content view '%{view}' is not in environment '%{env}'"
1124
1316
  msgstr "컨텐츠 보기 '%{view}'가 환경 '%{env}'에 있지 않습니다 "
1125
1317
 
@@ -1129,6 +1321,9 @@ msgstr "컨텐츠 뷰 '%{view}'가 라이프사이클 환경 '%{env}'에 없습
1129
1321
  msgid "Content view ID"
1130
1322
  msgstr ""
1131
1323
 
1324
+ msgid "Content view details"
1325
+ msgstr ""
1326
+
1132
1327
  msgid "Content view has repository label '%s' which is not specified in repos_units parameter."
1133
1328
  msgstr ""
1134
1329
 
@@ -1138,6 +1333,9 @@ msgstr "컨텐츠 뷰 ID "
1138
1333
  msgid "Content view label"
1139
1334
  msgstr "컨텐츠 뷰 레이블 "
1140
1335
 
1336
+ msgid "Content view name"
1337
+ msgstr ""
1338
+
1141
1339
  msgid "Content view not provided in the metadata"
1142
1340
  msgstr ""
1143
1341
 
@@ -1153,6 +1351,9 @@ msgstr "컨텐츠 뷰 버전 ID "
1153
1351
  msgid "Content view version import history identifier"
1154
1352
  msgstr ""
1155
1353
 
1354
+ msgid "Content views"
1355
+ msgstr ""
1356
+
1156
1357
  msgid "Content_Host_Status"
1157
1358
  msgstr ""
1158
1359
 
@@ -1163,10 +1364,10 @@ msgid "Context"
1163
1364
  msgstr ""
1164
1365
 
1165
1366
  msgid "Contract"
1166
- msgstr ""
1367
+ msgstr "계약 "
1167
1368
 
1168
1369
  msgid "Contract Number"
1169
- msgstr ""
1370
+ msgstr "계약 번호 "
1170
1371
 
1171
1372
  msgid "Copy"
1172
1373
  msgstr ""
@@ -1174,6 +1375,9 @@ msgstr ""
1174
1375
  msgid "Copy an activation key"
1175
1376
  msgstr "활성키 복사 "
1176
1377
 
1378
+ msgid "Copy content view"
1379
+ msgstr ""
1380
+
1177
1381
  msgid "Copy version units to library"
1178
1382
  msgstr ""
1179
1383
 
@@ -1216,6 +1420,9 @@ msgstr ""
1216
1420
  msgid "Could not remove the lifecycle environment from the smart proxy"
1217
1421
  msgstr ""
1218
1422
 
1423
+ msgid "Couldn't establish a connection to %s"
1424
+ msgstr ""
1425
+
1219
1426
  msgid "Couldn't find %{content_type} with id '%{id}'"
1220
1427
  msgstr ""
1221
1428
 
@@ -1246,7 +1453,6 @@ msgstr "컨텐츠 호스트 컨텐츠 뷰 ID '%s'를 찾을 수 없습니다 "
1246
1453
  msgid "Couldn't find content host environment '%s'"
1247
1454
  msgstr "컨텐츠 호스트 환경 '%s'을 찾을 수 없습니다 "
1248
1455
 
1249
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1250
1456
  msgid "Couldn't find content view '%s'"
1251
1457
  msgstr "컨텐츠 보기 '%s'를 찾을 수 없음 "
1252
1458
 
@@ -1256,6 +1462,9 @@ msgstr "컨텐츠 뷰 버전 '%s'을 찾을 수 없습니다 "
1256
1462
  msgid "Couldn't find content view versions '%s'"
1257
1463
  msgstr "컨텐츠 뷰 버전 '%s'을 찾을 수 없습니다 "
1258
1464
 
1465
+ msgid "Couldn't find content view with id: '%s'"
1466
+ msgstr ""
1467
+
1259
1468
  msgid "Couldn't find environment '%s'"
1260
1469
  msgstr "환경 '%s'을 찾을 수 없음 "
1261
1470
 
@@ -1266,7 +1475,7 @@ msgid "Couldn't find host collection '%s'"
1266
1475
  msgstr "호스트 컬렉션 '%s'을 찾을 수 없습니다 "
1267
1476
 
1268
1477
  msgid "Couldn't find host with host id '%s'"
1269
- msgstr ""
1478
+ msgstr "호스트 ID가 '%s'인 호스트를 찾을 수 없습니다."
1270
1479
 
1271
1480
  msgid "Couldn't find organization '%s'"
1272
1481
  msgstr "조직 '%s'을 찾을 수 없음 "
@@ -1289,7 +1498,6 @@ msgstr "동기화 제목을 찾을 수 없음 "
1289
1498
  msgid "Count"
1290
1499
  msgstr ""
1291
1500
 
1292
- # translation auto-copied from project NetworkManager, version 0.9.9.0, document NetworkManager, author eukim
1293
1501
  msgid "Create"
1294
1502
  msgstr "생성 "
1295
1503
 
@@ -1350,7 +1558,7 @@ msgstr ""
1350
1558
  msgid "Create organization"
1351
1559
  msgstr "조직 생성 "
1352
1560
 
1353
- msgid "Creating local repository"
1561
+ msgid "Critical"
1354
1562
  msgstr ""
1355
1563
 
1356
1564
  msgid "Cron expression is not valid!"
@@ -1375,10 +1583,10 @@ msgid "Custom repositories cannot be disabled."
1375
1583
  msgstr "사용자 정의 리포지터리를 비활성화할 수 없습니다. "
1376
1584
 
1377
1585
  msgid "Database connection"
1378
- msgstr ""
1586
+ msgstr "데이터베이스 연결"
1379
1587
 
1380
1588
  msgid "Date"
1381
- msgstr ""
1589
+ msgstr "날짜 "
1382
1590
 
1383
1591
  msgid "Date format is incorrect."
1384
1592
  msgstr "날짜 형식이 잘못되었습니다. "
@@ -1395,7 +1603,12 @@ msgstr ""
1395
1603
  msgid "Deb Packages"
1396
1604
  msgstr ""
1397
1605
 
1398
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
1606
+ msgid "Deb package identifiers to filter content by"
1607
+ msgstr ""
1608
+
1609
+ msgid "Deb packages"
1610
+ msgstr ""
1611
+
1399
1612
  msgid "Debug Certificate"
1400
1613
  msgstr "디버그 인증서 "
1401
1614
 
@@ -1438,13 +1651,13 @@ msgstr "기본값 시스템 SLA"
1438
1651
  msgid "Default content view versions cannot be promoted"
1439
1652
  msgstr "기본값 컨텐츠 뷰 버전은 승격할 수 없습니다 "
1440
1653
 
1441
- msgid "Default download policy for Smart Proxy syncs (either 'inherit', immediate', 'on_demand', or 'background')"
1654
+ msgid "Default download policy for Smart Proxy syncs (either 'inherit', immediate', or 'on_demand')"
1442
1655
  msgstr ""
1443
1656
 
1444
- msgid "Default download policy for custom repositories (either 'immediate', 'on_demand', or 'background')"
1657
+ msgid "Default download policy for custom repositories (either 'immediate' or 'on_demand')"
1445
1658
  msgstr ""
1446
1659
 
1447
- msgid "Default download policy for enabled Red Hat repositories (either 'immediate', 'on_demand', or 'background')"
1660
+ msgid "Default download policy for enabled Red Hat repositories (either 'immediate' or 'on_demand')"
1448
1661
  msgstr ""
1449
1662
 
1450
1663
  msgid "Default finish template for new Operating Systems created from synced content"
@@ -1498,11 +1711,9 @@ msgstr ""
1498
1711
  msgid "Default user data for new Operating Systems created from synced content"
1499
1712
  msgstr ""
1500
1713
 
1501
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
1502
1714
  msgid "Delete"
1503
1715
  msgstr "삭제 "
1504
1716
 
1505
- # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
1506
1717
  msgid "Delete Activation Key"
1507
1718
  msgstr "활성키 삭제 "
1508
1719
 
@@ -1512,7 +1723,6 @@ msgstr ""
1512
1723
  msgid "Delete Lifecycle Environment"
1513
1724
  msgstr "라이프사이클 환경 삭제 "
1514
1725
 
1515
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
1516
1726
  msgid "Delete Manifest"
1517
1727
  msgstr "매니페스트 삭제 "
1518
1728
 
@@ -1525,6 +1735,9 @@ msgstr "제품 삭제 "
1525
1735
  msgid "Delete Upstream Subscription"
1526
1736
  msgstr ""
1527
1737
 
1738
+ msgid "Delete Version"
1739
+ msgstr ""
1740
+
1528
1741
  msgid "Delete a content view"
1529
1742
  msgstr "컨텐츠 뷰 삭제 "
1530
1743
 
@@ -1546,23 +1759,35 @@ msgstr "조직 삭제 "
1546
1759
  msgid "Delete an upload request"
1547
1760
  msgstr "업로드 요청 삭제 "
1548
1761
 
1762
+ msgid "Delete content view"
1763
+ msgstr ""
1764
+
1549
1765
  msgid "Delete manifest from Red Hat provider"
1550
1766
  msgstr "Red Hat 공급자에서 매니페스트 삭제 "
1551
1767
 
1552
1768
  msgid "Delete multiple filters from a content view"
1553
1769
  msgstr ""
1554
1770
 
1771
+ msgid "Delete version"
1772
+ msgstr ""
1773
+
1555
1774
  msgid "Deleted consumer '%s'"
1556
1775
  msgstr "컨슈머 '%s'을(를) 삭제했습니다 "
1557
1776
 
1777
+ msgid "Deleted from "
1778
+ msgstr ""
1779
+
1558
1780
  msgid "Deleted from %{environment}"
1559
1781
  msgstr "%{environment}에서 삭제되었습니다 "
1560
1782
 
1783
+ msgid "Deleting content view : "
1784
+ msgstr ""
1785
+
1561
1786
  msgid "Deleting manifest in '%{subject}' failed."
1562
1787
  msgstr ""
1563
1788
 
1564
1789
  msgid "Description"
1565
- msgstr ""
1790
+ msgstr "설명 "
1566
1791
 
1567
1792
  msgid "Description for the content view"
1568
1793
  msgstr "컨텐츠 뷰 설명 "
@@ -1582,7 +1807,6 @@ msgstr ""
1582
1807
  msgid "Destination Server name"
1583
1808
  msgstr ""
1584
1809
 
1585
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1586
1810
  msgid "Destroy"
1587
1811
  msgstr "삭제 "
1588
1812
 
@@ -1637,7 +1861,6 @@ msgstr ""
1637
1861
  msgid "Directory containing the exported Content View Version"
1638
1862
  msgstr ""
1639
1863
 
1640
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author eukim
1641
1864
  msgid "Disable"
1642
1865
  msgstr "비활성화 "
1643
1866
 
@@ -1653,6 +1876,9 @@ msgstr ""
1653
1876
  msgid "Disable simple content access for a manifest"
1654
1877
  msgstr ""
1655
1878
 
1879
+ msgid "Disabled"
1880
+ msgstr ""
1881
+
1656
1882
  msgid "Disabling Simple Content Access failed for '%{subject}'."
1657
1883
  msgstr ""
1658
1884
 
@@ -1660,7 +1886,7 @@ msgid "Disconnected mode"
1660
1886
  msgstr ""
1661
1887
 
1662
1888
  msgid "Discover"
1663
- msgstr ""
1889
+ msgstr "검색"
1664
1890
 
1665
1891
  msgid "Discover Repositories"
1666
1892
  msgstr "리포지터리 검색 "
@@ -1674,29 +1900,39 @@ msgstr ""
1674
1900
  msgid "Do not wait for the update action to finish. Default: true"
1675
1901
  msgstr ""
1676
1902
 
1677
- msgid "Domain IDs"
1903
+ msgid "Docker Tags"
1678
1904
  msgstr ""
1679
1905
 
1906
+ msgid "Domain IDs"
1907
+ msgstr "도메인 ID"
1908
+
1680
1909
  msgid "Download Policy of the capsule, must be one of %s"
1681
1910
  msgstr ""
1682
1911
 
1683
1912
  msgid "Download a debug certificate"
1684
1913
  msgstr "디버그 인증서 다운로드 "
1685
1914
 
1686
- msgid "Duplicate branches specified - %{branches}"
1915
+ msgid "Duplicate artifact detected"
1687
1916
  msgstr ""
1688
1917
 
1689
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author eukim
1690
1918
  msgid "Duration"
1691
1919
  msgstr "기간 "
1692
1920
 
1693
1921
  msgid "ERRATA ADVISORY"
1694
1922
  msgstr ""
1695
1923
 
1696
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1697
1924
  msgid "Edit"
1698
1925
  msgstr "편집 "
1699
1926
 
1927
+ msgid "Edit RPM rule"
1928
+ msgstr ""
1929
+
1930
+ msgid "Edit filter rule"
1931
+ msgstr ""
1932
+
1933
+ msgid "Edit rule"
1934
+ msgstr ""
1935
+
1700
1936
  msgid "Editing Entitlements"
1701
1937
  msgstr ""
1702
1938
 
@@ -1710,7 +1946,7 @@ msgid "Either organization ID or environment ID needs to be specified"
1710
1946
  msgstr "조직 ID 또는 환경 ID를 지정해야 함 "
1711
1947
 
1712
1948
  msgid "Either packages or groups must be provided"
1713
- msgstr ""
1949
+ msgstr "패키지 또는 그룹을 지정해야 합니다."
1714
1950
 
1715
1951
  msgid "Either set the content view with the latest flag or set the content view version"
1716
1952
  msgstr ""
@@ -1718,13 +1954,18 @@ msgstr ""
1718
1954
  msgid "Either set the latest content view or the content view version. Cannot set both"
1719
1955
  msgstr ""
1720
1956
 
1721
- # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author eukim
1722
1957
  msgid "Enable"
1723
1958
  msgstr "활성화 "
1724
1959
 
1725
1960
  msgid "Enable Simple Content Access"
1726
1961
  msgstr ""
1727
1962
 
1963
+ msgid "Enable Tracer"
1964
+ msgstr ""
1965
+
1966
+ msgid "Enable Traces"
1967
+ msgstr ""
1968
+
1728
1969
  msgid "Enable a repository from the set"
1729
1970
  msgstr "세트에서 리포지터리 활성화 "
1730
1971
 
@@ -1735,24 +1976,29 @@ msgid "Enable/Disable auto publish of composite view"
1735
1976
  msgstr ""
1736
1977
 
1737
1978
  msgid "Enabled"
1738
- msgstr ""
1979
+ msgstr "활성화됨 "
1739
1980
 
1740
1981
  msgid "Enabled Repositories"
1741
- msgstr ""
1982
+ msgstr "활성화된 리포지터리 "
1742
1983
 
1743
1984
  msgid "Enabling Simple Content Access failed for '%{subject}'."
1744
1985
  msgstr ""
1745
1986
 
1746
- msgid "End Date"
1987
+ msgid "Enabling will install the katello-host-tools-tracer package on the host."
1747
1988
  msgstr ""
1748
1989
 
1990
+ msgid "End Date"
1991
+ msgstr "종료 날짜 "
1992
+
1749
1993
  msgid "Ends"
1750
- msgstr ""
1994
+ msgstr "종료"
1751
1995
 
1752
- # translation auto-copied from project CFSE, version sam-1.2, document app
1753
1996
  msgid "Enhancement"
1754
1997
  msgstr "기능 강화"
1755
1998
 
1999
+ msgid "Enter a name"
2000
+ msgstr ""
2001
+
1756
2002
  msgid "Entitlements"
1757
2003
  msgstr ""
1758
2004
 
@@ -1760,7 +2006,7 @@ msgid "Environment"
1760
2006
  msgstr "환경 "
1761
2007
 
1762
2008
  msgid "Environment IDs"
1763
- msgstr ""
2009
+ msgstr "환경 ID"
1764
2010
 
1765
2011
  msgid "Environment cannot be in its own promotion path"
1766
2012
  msgstr "환경은 자체 승격 경로에 존재할 수 없음 "
@@ -1769,12 +2015,17 @@ msgid "Environment identifier"
1769
2015
  msgstr ""
1770
2016
 
1771
2017
  msgid "Environments"
2018
+ msgstr "환경 "
2019
+
2020
+ msgid "Equal to"
1772
2021
  msgstr ""
1773
2022
 
1774
2023
  msgid "Errata"
1775
2024
  msgstr "에라타 "
1776
2025
 
1777
- # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
2026
+ msgid "Errata - by date range"
2027
+ msgstr ""
2028
+
1778
2029
  msgid "Errata ID"
1779
2030
  msgstr "에라타 ID"
1780
2031
 
@@ -1796,6 +2047,9 @@ msgstr ""
1796
2047
  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."
1797
2048
  msgstr ""
1798
2049
 
2050
+ msgid "Errata type"
2051
+ msgstr ""
2052
+
1799
2053
  msgid "Erratum"
1800
2054
  msgstr "에라타"
1801
2055
 
@@ -1811,35 +2065,48 @@ msgstr "에라타 설치를 실패했습니다"
1811
2065
  msgid "Erratum Install Timed Out"
1812
2066
  msgstr "에라타 설치 시간 초과 "
1813
2067
 
1814
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1815
2068
  msgid "Error"
1816
2069
  msgstr "오류 "
1817
2070
 
1818
2071
  msgid "Error connecting to Pulp service"
1819
- msgstr ""
2072
+ msgstr "Pulp 서비스에 연결하는 도중 오류가 발생했습니다."
1820
2073
 
1821
2074
  msgid "Error connecting. Got: %s"
1822
- msgstr ""
2075
+ msgstr "연결하는 도중 오류가 발생했습니다. 오류 메시지: %s"
1823
2076
 
1824
2077
  msgid "Error refreshing status for %s: "
1825
2078
  msgstr ""
1826
2079
 
1827
2080
  msgid "Error retrieving Pulp storage"
1828
- msgstr ""
2081
+ msgstr "Pulp 스토리지를 가져오는 도중 오류가 발생하였습니다."
1829
2082
 
1830
2083
  msgid "Exceeds available quantity"
1831
2084
  msgstr ""
1832
2085
 
1833
2086
  msgid "Exclude"
2087
+ msgstr "제외 "
2088
+
2089
+ msgid "Exclude all Module Streams with no errata."
2090
+ msgstr ""
2091
+
2092
+ msgid "Exclude all RPMs with no errata."
2093
+ msgstr ""
2094
+
2095
+ msgid "Exclude filter"
1834
2096
  msgstr ""
1835
2097
 
1836
2098
  msgid "Excluded"
1837
2099
  msgstr ""
1838
2100
 
2101
+ msgid "Excluded errata"
2102
+ msgstr ""
2103
+
2104
+ msgid "Excludes"
2105
+ msgstr ""
2106
+
1839
2107
  msgid "Exit"
1840
2108
  msgstr ""
1841
2109
 
1842
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
1843
2110
  msgid "Expand All"
1844
2111
  msgstr "모두 확장 "
1845
2112
 
@@ -1847,7 +2114,7 @@ msgid "Expire soon days"
1847
2114
  msgstr ""
1848
2115
 
1849
2116
  msgid "Export"
1850
- msgstr ""
2117
+ msgstr "내보내기 "
1851
2118
 
1852
2119
  msgid "Export CSV"
1853
2120
  msgstr ""
@@ -1864,6 +2131,9 @@ msgstr ""
1864
2131
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1865
2132
  msgstr ""
1866
2133
 
2134
+ msgid "Exported content view"
2135
+ msgstr ""
2136
+
1867
2137
  msgid "Exported version"
1868
2138
  msgstr ""
1869
2139
 
@@ -1873,9 +2143,6 @@ msgstr "정보가 성공적으로 업데이트되었습니다. "
1873
2143
  msgid "Failed"
1874
2144
  msgstr "실패 "
1875
2145
 
1876
- msgid "Failed indexing errata, maximum retries encountered"
1877
- msgstr ""
1878
-
1879
2146
  msgid "Failed to delete %{host}: %{errors}"
1880
2147
  msgstr ""
1881
2148
 
@@ -1916,6 +2183,9 @@ msgstr ""
1916
2183
  msgid "File contents"
1917
2184
  msgstr ""
1918
2185
 
2186
+ msgid "Filename"
2187
+ msgstr ""
2188
+
1919
2189
  msgid "Files"
1920
2190
  msgstr ""
1921
2191
 
@@ -1929,6 +2199,12 @@ msgid "Filter composite versions whose publish was triggered by the specified co
1929
2199
  msgstr ""
1930
2200
 
1931
2201
  msgid "Filter created"
2202
+ msgstr "필터가 생성되었습니다 "
2203
+
2204
+ msgid "Filter deleted"
2205
+ msgstr ""
2206
+
2207
+ msgid "Filter edited"
1932
2208
  msgstr ""
1933
2209
 
1934
2210
  msgid "Filter only composite content views"
@@ -1941,7 +2217,7 @@ msgid "Filter out default content views"
1941
2217
  msgstr "기본값 컨텐츠 뷰 필터링 "
1942
2218
 
1943
2219
  msgid "Filter products by host id"
1944
- msgstr ""
2220
+ msgstr "호스트 ID별로 제품 필터링"
1945
2221
 
1946
2222
  msgid "Filter products by name"
1947
2223
  msgstr "이름에 따라 제품을 필터링 "
@@ -1953,9 +2229,21 @@ msgid "Filter products by subscription"
1953
2229
  msgstr "서브스크립션에 따라 제품을 필터링 "
1954
2230
 
1955
2231
  msgid "Filter products by sync plan id"
2232
+ msgstr "동기화 계획 ID를 기준으로 제품 필터링"
2233
+
2234
+ msgid "Filter rule added"
2235
+ msgstr ""
2236
+
2237
+ msgid "Filter rule edited"
2238
+ msgstr ""
2239
+
2240
+ msgid "Filter rule removed"
1956
2241
  msgstr ""
1957
2242
 
1958
- msgid "Filter successfully deleted"
2243
+ msgid "Filter rules added"
2244
+ msgstr ""
2245
+
2246
+ msgid "Filter rules deleted"
1959
2247
  msgstr ""
1960
2248
 
1961
2249
  msgid "Filter versions by environment"
@@ -1968,12 +2256,15 @@ msgid "Filter versions that are components in the specified composite version"
1968
2256
  msgstr "지정된 복합 버전에 있는 구성 요소인 버전을 필터링 "
1969
2257
 
1970
2258
  msgid "Filtered index content"
1971
- msgstr ""
2259
+ msgstr "필터링된 인덱스 컨텐츠"
1972
2260
 
1973
2261
  msgid "Filters"
2262
+ msgstr "필터 "
2263
+
2264
+ msgid "Filters deleted"
1974
2265
  msgstr ""
1975
2266
 
1976
- msgid "Filters successfully deleted"
2267
+ msgid "Finish"
1977
2268
  msgstr ""
1978
2269
 
1979
2270
  msgid "Finish action timeout"
@@ -1996,6 +2287,18 @@ msgstr ""
1996
2287
  msgid "Force a sync and validate the checksums of all content. Only used with yum repositories."
1997
2288
  msgstr ""
1998
2289
 
2290
+ msgid "Force delete the repository by removing it from all content view versions"
2291
+ msgstr ""
2292
+
2293
+ msgid "Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy"
2294
+ msgstr ""
2295
+
2296
+ msgid "Force metadata regeneration to proceed. Dangerous when repositories use the 'Complete Mirroring' mirroring policy."
2297
+ msgstr ""
2298
+
2299
+ msgid "Force promotion"
2300
+ msgstr ""
2301
+
1999
2302
  msgid "Force regenerate applicability."
2000
2303
  msgstr ""
2001
2304
 
@@ -2011,13 +2314,15 @@ msgstr ""
2011
2314
  msgid "Forces a republish of the version's repositories' metadata"
2012
2315
  msgstr ""
2013
2316
 
2014
- msgid "Fully entitled"
2317
+ msgid "Full description"
2015
2318
  msgstr ""
2016
2319
 
2320
+ msgid "Fully entitled"
2321
+ msgstr "모든 권한이 부여됨"
2322
+
2017
2323
  msgid "GPG Key URL"
2018
- msgstr ""
2324
+ msgstr "GPG 키 URL"
2019
2325
 
2020
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
2021
2326
  msgid "Generate and Download"
2022
2327
  msgstr "생성 및 다운로드 "
2023
2328
 
@@ -2030,7 +2335,7 @@ msgstr ""
2030
2335
  msgid "Get all content available, not just that provided by subscriptions"
2031
2336
  msgstr ""
2032
2337
 
2033
- msgid "Get all content available, not just that provided by subscriptions. Relevant for Activation Keys only"
2338
+ msgid "Get all content available, not just that provided by subscriptions."
2034
2339
  msgstr ""
2035
2340
 
2036
2341
  msgid "Get content and overrides for the host"
@@ -2054,14 +2359,26 @@ msgstr "주어진 리포지터리에 대한 동기화 상태 가져오기 "
2054
2359
  msgid "Given a set of hosts and errata, lists the content view versions and environments that need updating."
2055
2360
  msgstr ""
2056
2361
 
2362
+ msgid "Given criteria doesn't match any RPMs. Try changing your rule."
2363
+ msgstr ""
2364
+
2365
+ msgid "Given criteria doesn't match any activation keys. Try changing your rule."
2366
+ msgstr ""
2367
+
2368
+ msgid "Given criteria doesn't match any hosts. Try changing your rule."
2369
+ msgstr ""
2370
+
2057
2371
  msgid "Go to task page"
2058
2372
  msgstr ""
2059
2373
 
2374
+ msgid "Greater than"
2375
+ msgstr ""
2376
+
2060
2377
  msgid "Group %{id} already created."
2061
2378
  msgstr ""
2062
2379
 
2063
2380
  msgid "Guests of"
2064
- msgstr ""
2381
+ msgstr "게스트 "
2065
2382
 
2066
2383
  msgid "HTTP Proxies"
2067
2384
  msgstr ""
@@ -2072,9 +2389,15 @@ msgstr ""
2072
2389
  msgid "Has to be > 0"
2073
2390
  msgstr ""
2074
2391
 
2075
- msgid "History"
2392
+ msgid "Helper"
2393
+ msgstr ""
2394
+
2395
+ msgid "Hide description"
2076
2396
  msgstr ""
2077
2397
 
2398
+ msgid "History"
2399
+ msgstr "기록 "
2400
+
2078
2401
  msgid "History will appear here when the content view is published or promoted."
2079
2402
  msgstr ""
2080
2403
 
@@ -2088,7 +2411,7 @@ msgid "Host %{name} cannot be assigned release version %{release_version}."
2088
2411
  msgstr ""
2089
2412
 
2090
2413
  msgid "Host '%{name}' does not belong to an organization"
2091
- msgstr ""
2414
+ msgstr "'%{name}' 호스트가 조직에 속해 있지 않습니다."
2092
2415
 
2093
2416
  msgid "Host Can Re-Register Only In Build"
2094
2417
  msgstr ""
@@ -2106,7 +2429,7 @@ msgid "Host Errata Advisory"
2106
2429
  msgstr ""
2107
2430
 
2108
2431
  msgid "Host ID"
2109
- msgstr ""
2432
+ msgstr "호스트 ID"
2110
2433
 
2111
2434
  msgid "Host Profile Assume"
2112
2435
  msgstr ""
@@ -2133,23 +2456,26 @@ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. T
2133
2456
  msgstr ""
2134
2457
 
2135
2458
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2136
- msgstr ""
2459
+ msgstr "호스트가 %s초 이내에 컨텐츠 작업을 끝내지 않았습니다. 태스크가 취소되었습니다."
2137
2460
 
2138
2461
  msgid "Host did not respond within %s seconds. The task has been cancelled. Is katello-agent installed and goferd running on the Host?"
2139
- msgstr ""
2462
+ msgstr "호스트가 %s초 이내에 응답하지 않았습니다. 태스크가 취소되었습니다. 호스트에 katello-agent가 설치되어 있고 goferd가 실행 중입니까?"
2140
2463
 
2141
2464
  msgid "Host errata advisory"
2142
2465
  msgstr ""
2143
2466
 
2144
2467
  msgid "Host group IDs"
2145
- msgstr ""
2468
+ msgstr "호스트 그룹 ID"
2146
2469
 
2147
2470
  msgid "Host has not been registered with subscription-manager"
2148
- msgstr ""
2471
+ msgstr "호스트가 subscription-manager에 등록되지 않았습니다."
2149
2472
 
2150
2473
  msgid "Host has not been registered with subscription-manager."
2151
2474
  msgstr ""
2152
2475
 
2476
+ msgid "Host id to list applicable deb packages for"
2477
+ msgstr ""
2478
+
2153
2479
  msgid "Host id to list applicable errata for"
2154
2480
  msgstr ""
2155
2481
 
@@ -2168,6 +2494,9 @@ msgstr ""
2168
2494
  msgid "Host with ID %s not found."
2169
2495
  msgstr ""
2170
2496
 
2497
+ msgid "Hosts"
2498
+ msgstr ""
2499
+
2171
2500
  msgid "Hosts with Installable Errata"
2172
2501
  msgstr "설치 가능한 에라타를 갖는 호스트 "
2173
2502
 
@@ -2177,17 +2506,14 @@ msgstr ""
2177
2506
  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."
2178
2507
  msgstr ""
2179
2508
 
2180
- 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."
2181
- msgstr ""
2182
-
2183
2509
  msgid "How to order the sorted results (e.g. ASC for ascending)"
2184
2510
  msgstr "정렬된 결고를 정렬하는 방법 (예: 오름차순의 ASC) "
2185
2511
 
2186
2512
  msgid "Hypervisors"
2187
- msgstr ""
2513
+ msgstr "하이퍼바이저"
2188
2514
 
2189
2515
  msgid "Hypervisors update"
2190
- msgstr ""
2516
+ msgstr "하이퍼바이저 업데이트"
2191
2517
 
2192
2518
  msgid "ID of a HTTP Proxy"
2193
2519
  msgstr ""
@@ -2220,7 +2546,7 @@ msgid "ID of the environment"
2220
2546
  msgstr "환경 ID "
2221
2547
 
2222
2548
  msgid "ID of the host"
2223
- msgstr ""
2549
+ msgstr "호스트의 ID"
2224
2550
 
2225
2551
  msgid "ID of the host collection"
2226
2552
  msgstr "호스트 컬렉션 ID "
@@ -2259,30 +2585,33 @@ msgid "Id of an ansible collection to find repositories that contain the ansible
2259
2585
  msgstr ""
2260
2586
 
2261
2587
  msgid "Id of an erratum to find repositories that contain the erratum"
2262
- msgstr ""
2588
+ msgstr "해당 에라타가 포함된 리포지터리를 검색할 에라타의 ID"
2263
2589
 
2264
- msgid "Id of an ostree branch to find repositories that contain that branch"
2590
+ msgid "Id of the content host"
2265
2591
  msgstr ""
2266
2592
 
2267
- msgid "Id of the content host"
2593
+ msgid "Id of the content view to limit the synchronization on"
2268
2594
  msgstr ""
2269
2595
 
2270
2596
  msgid "Id of the environment to limit the synchronization on"
2271
- msgstr ""
2597
+ msgstr "동기화의 제한 범위로 설정할 환경의 ID"
2272
2598
 
2273
2599
  msgid "Id of the host"
2274
- msgstr ""
2600
+ msgstr "호스트의 ID"
2275
2601
 
2276
2602
  msgid "Id of the host collection"
2277
2603
  msgstr "호스트 컬렉션 ID "
2278
2604
 
2279
2605
  msgid "Id of the lifecycle environment"
2280
- msgstr ""
2606
+ msgstr "라이프사이클 환경의 ID"
2281
2607
 
2282
2608
  msgid "Id of the organization to get the status for"
2283
- msgstr ""
2609
+ msgstr "상태를 가져올 조직의 ID"
2284
2610
 
2285
2611
  msgid "Id of the organization to limit environments on"
2612
+ msgstr "환경을 제한할 조직의 ID"
2613
+
2614
+ msgid "Id of the repository to limit the synchronization on"
2286
2615
  msgstr ""
2287
2616
 
2288
2617
  msgid "Id of the smart proxy"
@@ -2321,16 +2650,16 @@ msgstr ""
2321
2650
  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."
2322
2651
  msgstr ""
2323
2652
 
2324
- 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."
2325
- msgstr ""
2653
+ msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2654
+ msgstr "지정할 경우 ID와 수량이 일치하는 서브스크립션의 첫 번째 인스턴스를 삭제합니다."
2326
2655
 
2327
- msgid "If set to true, use remote execution instead of katello-agent for remote actions"
2656
+ 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."
2328
2657
  msgstr ""
2329
2658
 
2330
- msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2659
+ 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"
2331
2660
  msgstr ""
2332
2661
 
2333
- 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"
2662
+ msgid "If this is enabled, remote execution is used instead of katello-agent for remote actions"
2334
2663
  msgstr ""
2335
2664
 
2336
2665
  msgid "If true, only return repository sets that are associated with an active subscriptions"
@@ -2361,13 +2690,13 @@ msgid "Ignore subscription-manager errors for `subscription-manager register` co
2361
2690
  msgstr ""
2362
2691
 
2363
2692
  msgid "Ignore subscriptions that are unavailable to the specified host"
2364
- msgstr ""
2693
+ msgstr "지정한 호스트에 사용할 수 없는 서브스크립션 무시"
2365
2694
 
2366
2695
  msgid "Immediate"
2367
2696
  msgstr ""
2368
2697
 
2369
2698
  msgid "Import"
2370
- msgstr ""
2699
+ msgstr "불러오기"
2371
2700
 
2372
2701
  msgid "Import Content View Version"
2373
2702
  msgstr ""
@@ -2381,9 +2710,6 @@ msgstr "매니페스트 가져오기 "
2381
2710
  msgid "Import New Manifest"
2382
2711
  msgstr ""
2383
2712
 
2384
- msgid "Import Only"
2385
- msgstr ""
2386
-
2387
2713
  msgid "Import Puppet classes"
2388
2714
  msgstr ""
2389
2715
 
@@ -2411,6 +2737,9 @@ msgstr ""
2411
2737
  msgid "Import facts"
2412
2738
  msgstr "팩트 불러오기"
2413
2739
 
2740
+ msgid "Import only"
2741
+ msgstr ""
2742
+
2414
2743
  msgid "Import uploads into a repository"
2415
2744
  msgstr "리포지터리에 업로드 가져오기 "
2416
2745
 
@@ -2420,6 +2749,9 @@ msgstr ""
2420
2749
  msgid "Import-only content views can not be published directly"
2421
2750
  msgstr ""
2422
2751
 
2752
+ msgid "Important"
2753
+ msgstr ""
2754
+
2423
2755
  msgid "Importing manifest into '%{subject}' failed."
2424
2756
  msgstr ""
2425
2757
 
@@ -2430,11 +2762,26 @@ msgid "In progress"
2430
2762
  msgstr ""
2431
2763
 
2432
2764
  msgid "Include"
2765
+ msgstr "포함 "
2766
+
2767
+ msgid "Include all Module Streams with no errata."
2768
+ msgstr ""
2769
+
2770
+ msgid "Include all RPMs with no errata."
2771
+ msgstr ""
2772
+
2773
+ msgid "Include filter"
2433
2774
  msgstr ""
2434
2775
 
2435
2776
  msgid "Included"
2436
2777
  msgstr ""
2437
2778
 
2779
+ msgid "Included errata"
2780
+ msgstr ""
2781
+
2782
+ msgid "Includes"
2783
+ msgstr ""
2784
+
2438
2785
  msgid "Includes associated content view filter ids in response"
2439
2786
  msgstr ""
2440
2787
 
@@ -2453,6 +2800,9 @@ msgstr ""
2453
2800
  msgid "Incremental Update of %{content_view_count} Content View Version(s) "
2454
2801
  msgstr ""
2455
2802
 
2803
+ msgid "Incremental update"
2804
+ msgstr ""
2805
+
2456
2806
  msgid "Incremental update requires at least one content unit"
2457
2807
  msgstr ""
2458
2808
 
@@ -2460,7 +2810,7 @@ msgid "Incremental update specified for composite %{name} version %{version}, bu
2460
2810
  msgstr "복합 %{name} v버전 %{version}에 대해 증분 업데이트가 지정되었지만 구성 요소가 업데이트되지 않았습니다."
2461
2811
 
2462
2812
  msgid "Index content"
2463
- msgstr ""
2813
+ msgstr "컨텐츠 인덱싱"
2464
2814
 
2465
2815
  msgid "Index errata"
2466
2816
  msgstr "에라타 인덱스"
@@ -2469,7 +2819,7 @@ msgid "Index module streams"
2469
2819
  msgstr ""
2470
2820
 
2471
2821
  msgid "Index package groups"
2472
- msgstr ""
2822
+ msgstr "패키지 그룹 인덱싱"
2473
2823
 
2474
2824
  msgid "Informable Type must be one of the following [ %{list} ]"
2475
2825
  msgstr "정보 유형은 다음 중 하나이어야 합니다 [ %{list} ]"
@@ -2478,7 +2828,7 @@ msgid "Inherit from Repository"
2478
2828
  msgstr ""
2479
2829
 
2480
2830
  msgid "Initiate a sync of the products attached to the sync plan"
2481
- msgstr ""
2831
+ msgstr "동기화 계획에 연결된 제품 동기화 시작"
2482
2832
 
2483
2833
  msgid "Install Applicable Errata"
2484
2834
  msgstr "적용 가능한 에라타 설치 "
@@ -2516,9 +2866,18 @@ msgstr ""
2516
2866
  msgid "Install packages remotely using katello-agent. %s"
2517
2867
  msgstr ""
2518
2868
 
2869
+ msgid "Installable"
2870
+ msgstr ""
2871
+
2872
+ msgid "Installable Errata"
2873
+ msgstr ""
2874
+
2519
2875
  msgid "Installable errata from Content View"
2520
2876
  msgstr ""
2521
2877
 
2878
+ msgid "Installable errata will appear here when available."
2879
+ msgstr ""
2880
+
2522
2881
  msgid "Installation of errata requested: %{errata}"
2523
2882
  msgstr ""
2524
2883
 
@@ -2528,10 +2887,12 @@ msgstr ""
2528
2887
  msgid "Installation of package(s) requested: %{packages}"
2529
2888
  msgstr ""
2530
2889
 
2531
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
2532
2890
  msgid "Installed Packages"
2533
2891
  msgstr "설치된 패키지 "
2534
2892
 
2893
+ msgid "Installed Version"
2894
+ msgstr ""
2895
+
2535
2896
  msgid "Installing Erratum..."
2536
2897
  msgstr "에라타 설치 중..."
2537
2898
 
@@ -2545,13 +2906,13 @@ msgid "Instance update"
2545
2906
  msgstr ""
2546
2907
 
2547
2908
  msgid "Instance-based"
2548
- msgstr ""
2909
+ msgstr "인스턴스 기반 "
2549
2910
 
2550
2911
  msgid "Interpret specified object to return only Host Collections that can be associated with specified object. The value 'host' is supported."
2551
- msgstr ""
2912
+ msgstr "지정한 객체를 해석하여 지정한 객체에 연결할 수 있는 호스트 컬렉션만 반환합니다. 값 '호스트'가 지원됩니다."
2552
2913
 
2553
2914
  msgid "Interpret specified object to return only Products that can be associated with specified object. Only 'sync_plan' is supported."
2554
- msgstr ""
2915
+ msgstr "지정한 객체를 해석하여 지정한 객체에 연결할 수 있는 제품만 반환합니다. 'sync_plan'만 지원됩니다."
2555
2916
 
2556
2917
  msgid "Interval cannot be nil"
2557
2918
  msgstr ""
@@ -2560,6 +2921,9 @@ msgid "Interval not set correctly"
2560
2921
  msgstr ""
2561
2922
 
2562
2923
  msgid "Invalid"
2924
+ msgstr "유효하지 않음 "
2925
+
2926
+ msgid "Invalid SSL CA certificate given for CDN"
2563
2927
  msgstr ""
2564
2928
 
2565
2929
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
@@ -2572,7 +2936,7 @@ msgid "Invalid content type %s"
2572
2936
  msgstr "잘못된 컨텐츠 유형 %s"
2573
2937
 
2574
2938
  msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
2575
- msgstr ""
2939
+ msgstr "잘못된 컨텐츠 유형 '%{content_type}'이(가) 지정되었습니다. 컨텐츠 유형은 %{content_types} 중 하나가 될 수 있습니다."
2576
2940
 
2577
2941
  msgid "Invalid date range. The erratum filter rule start date must come before the end date"
2578
2942
  msgstr "잘못된 날짜 범위입니다. 에라타 필터 규칙 시작일은 종료일 이전에 와야 합니다."
@@ -2592,18 +2956,20 @@ msgstr ""
2592
2956
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2593
2957
  msgstr "잘못된 필터 규칙이 지정되었습니다. 'version' 을 'min_version' 또는 'max_version'과 동일한 튜플로 지정할 수 없습니다 "
2594
2958
 
2959
+ msgid "Invalid mirroring policy for repository type %{type}, only %{policies} are valid."
2960
+ msgstr ""
2961
+
2595
2962
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2596
2963
  msgstr "잘못된 매개 변수가 이 작업에 대한 요청에 전송되었습니다. 시스템 관리자에게 문의하십시오. "
2597
2964
 
2598
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
2599
2965
  msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
2600
2966
  msgstr "잘못된 매개 변수가 전송되었습니다. 주소를 잘못 입력하신것 같습니다. 문제가 계속 발생하면 관리자에게 문의하십시오. "
2601
2967
 
2602
2968
  msgid "Invalid params provided - content_type must be one of %s"
2603
- msgstr ""
2969
+ msgstr "잘못된 매개 변수를 입력했습니다. - content_type은 %s 중 하나여야 합니다."
2604
2970
 
2605
2971
  msgid "Invalid params provided - date_type must be one of %s"
2606
- msgstr ""
2972
+ msgstr "잘못된 매개 변수를 입력했습니다. - date_type은 %s 중 하나여야 합니다."
2607
2973
 
2608
2974
  msgid "Invalid value specified for Container Image repositories."
2609
2975
  msgstr ""
@@ -2614,6 +2980,9 @@ msgstr ""
2614
2980
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2615
2981
  msgstr ""
2616
2982
 
2983
+ msgid "Issued"
2984
+ msgstr ""
2985
+
2617
2986
  msgid "Katello ID of local pool to update"
2618
2987
  msgstr ""
2619
2988
 
@@ -2635,6 +3004,9 @@ msgstr ""
2635
3004
  msgid "Katello: Remove Package Group"
2636
3005
  msgstr ""
2637
3006
 
3007
+ msgid "Katello: Resolve Traces"
3008
+ msgstr ""
3009
+
2638
3010
  msgid "Katello: Service Restart"
2639
3011
  msgstr ""
2640
3012
 
@@ -2660,7 +3032,7 @@ msgid "Kickstart repository was not set for host '%{host}'"
2660
3032
  msgstr ""
2661
3033
 
2662
3034
  msgid "Label"
2663
- msgstr ""
3035
+ msgstr "레이블 "
2664
3036
 
2665
3037
  msgid "Label of the content"
2666
3038
  msgstr "컨텐츠 레이블 "
@@ -2675,7 +3047,7 @@ msgid "Latest (automatically updates)"
2675
3047
  msgstr ""
2676
3048
 
2677
3049
  msgid "Latest Errata"
2678
- msgstr ""
3050
+ msgstr "최신 에라타"
2679
3051
 
2680
3052
  msgid "Latest version"
2681
3053
  msgstr ""
@@ -2683,6 +3055,15 @@ msgstr ""
2683
3055
  msgid "Learn more about adding Subscription Manifests"
2684
3056
  msgstr ""
2685
3057
 
3058
+ msgid "Leave blank if consuming Red Hat Content from the Default Content View or CDN "
3059
+ msgstr ""
3060
+
3061
+ msgid "Leave blank if consuming Red Hat Content from the Library lifecycle environment or CDN "
3062
+ msgstr ""
3063
+
3064
+ msgid "Less than"
3065
+ msgstr ""
3066
+
2686
3067
  msgid "Library lifecycle environments may not be deleted."
2687
3068
  msgstr "라이브러라 라이프사이클 환경은 삭제할 수 없습니다. "
2688
3069
 
@@ -2704,6 +3085,9 @@ msgstr ""
2704
3085
  msgid "Lifecycle Environment ID"
2705
3086
  msgstr ""
2706
3087
 
3088
+ msgid "Lifecycle Environment Label"
3089
+ msgstr ""
3090
+
2707
3091
  msgid "Lifecycle Environments"
2708
3092
  msgstr "라이프사이클 환경 "
2709
3093
 
@@ -2728,13 +3112,22 @@ msgstr ""
2728
3112
  msgid "Limit content to just that available in the activation key's content view version"
2729
3113
  msgstr ""
2730
3114
 
2731
- msgid "Limit content to just that available in the activation key's content view version. Relevant for Activation Keys only"
3115
+ msgid "Limit content to just that available in the host's content view version"
2732
3116
  msgstr ""
2733
3117
 
2734
- msgid "Limit content to just that available in the host's content view version"
3118
+ msgid "Limit content to just that available in the host's or activation key's content view version and lifecycle environment."
3119
+ msgstr ""
3120
+
3121
+ msgid "Limit to environment"
2735
3122
  msgstr ""
2736
3123
 
2737
3124
  msgid "Limits"
3125
+ msgstr "제한 "
3126
+
3127
+ msgid "List %s"
3128
+ msgstr ""
3129
+
3130
+ msgid "List :resource"
2738
3131
  msgstr ""
2739
3132
 
2740
3133
  msgid "List :resource_id"
@@ -2744,7 +3137,7 @@ msgid "List Content Credentials"
2744
3137
  msgstr ""
2745
3138
 
2746
3139
  msgid "List a host's subscriptions"
2747
- msgstr ""
3140
+ msgstr "호스트의 서브스크립션 나열"
2748
3141
 
2749
3142
  msgid "List activation keys"
2750
3143
  msgstr "활성키 목록 나열 "
@@ -2773,6 +3166,9 @@ msgstr "컨텐츠 뷰 버전 목록 나열 "
2773
3166
  msgid "List content views"
2774
3167
  msgstr "컨텐츠 뷰 목록 나열 "
2775
3168
 
3169
+ msgid "List deb packages"
3170
+ msgstr ""
3171
+
2776
3172
  msgid "List deb packages installed on the host"
2777
3173
  msgstr ""
2778
3174
 
@@ -2819,7 +3215,7 @@ msgid "List of Errata ids to install. Will be removed in %s"
2819
3215
  msgstr ""
2820
3216
 
2821
3217
  msgid "List of Products for sync plan"
2822
- msgstr ""
3218
+ msgstr "동기화 계획의 제품 나열"
2823
3219
 
2824
3220
  msgid "List of component content view version ids for composite views"
2825
3221
  msgstr "복합 뷰의 구성 요소 컨텐츠 뷰 버전 ID 목록 "
@@ -2855,7 +3251,7 @@ msgid "List of host collection ids"
2855
3251
  msgstr "호스트 컬렉션 ID 목록 "
2856
3252
 
2857
3253
  msgid "List of host collection ids to update"
2858
- msgstr ""
3254
+ msgstr "업데이트할 호스트 컬렉션 ID 목록"
2859
3255
 
2860
3256
  msgid "List of host id to list available module streams for"
2861
3257
  msgstr ""
@@ -2867,7 +3263,7 @@ msgid "List of host ids to perform an action on"
2867
3263
  msgstr ""
2868
3264
 
2869
3265
  msgid "List of host ids to replace the hosts in host collection"
2870
- msgstr ""
3266
+ msgstr "호스트 컬렉션의 호스트를 대체할 호스트 ID의 목록입니다."
2871
3267
 
2872
3268
  msgid "List of hypervisor guest uuids"
2873
3269
  msgstr ""
@@ -2924,7 +3320,7 @@ msgid "List packages"
2924
3320
  msgstr ""
2925
3321
 
2926
3322
  msgid "List packages installed on the host"
2927
- msgstr ""
3323
+ msgstr "호스트에 설치된 패키지 나열"
2928
3324
 
2929
3325
  msgid "List products"
2930
3326
  msgstr "제품 나열 "
@@ -2957,6 +3353,9 @@ msgid "List the lifecycle environments not attached to the smart proxy"
2957
3353
  msgstr ""
2958
3354
 
2959
3355
  msgid "Loading"
3356
+ msgstr "로딩 중 "
3357
+
3358
+ msgid "Loading versions"
2960
3359
  msgstr ""
2961
3360
 
2962
3361
  msgid "Make copy of a content view"
@@ -2969,13 +3368,13 @@ msgid "Make sure all the component content views are published before publishing
2969
3368
  msgstr ""
2970
3369
 
2971
3370
  msgid "Manage Manifest"
2972
- msgstr ""
3371
+ msgstr "매니페스트 관리 "
2973
3372
 
2974
3373
  msgid "Manifest"
2975
3374
  msgstr ""
2976
3375
 
2977
3376
  msgid "Manifest History"
2978
- msgstr ""
3377
+ msgstr "매니페스트 기록 "
2979
3378
 
2980
3379
  msgid "Manifest deleted"
2981
3380
  msgstr ""
@@ -3007,6 +3406,9 @@ msgstr ""
3007
3406
  msgid "Matched"
3008
3407
  msgstr ""
3009
3408
 
3409
+ msgid "Matching content"
3410
+ msgstr ""
3411
+
3010
3412
  msgid "Max %(maxQuantity)s"
3011
3413
  msgstr ""
3012
3414
 
@@ -3017,6 +3419,9 @@ msgid "Maximum number of content hosts exceeded for host collection(s): %s"
3017
3419
  msgstr "호스트 컬렉션에 대해 최대 컨텐츠 호스트 수를 초과했습니다: %s"
3018
3420
 
3019
3421
  msgid "Maximum number of hosts in the host collection"
3422
+ msgstr "호스트 컬렉션에 포함된 호스트의 최대 수"
3423
+
3424
+ msgid "Maximum version"
3020
3425
  msgstr ""
3021
3426
 
3022
3427
  msgid "May not add a type or date range rule to a filter that has existing rules."
@@ -3031,16 +3436,21 @@ msgstr ""
3031
3436
  msgid "Medium IDs"
3032
3437
  msgstr ""
3033
3438
 
3034
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
3035
3439
  msgid "Message"
3036
3440
  msgstr "메세지 "
3037
3441
 
3038
3442
  msgid "Messaging connection"
3443
+ msgstr "메시징 연결"
3444
+
3445
+ msgid "Metadata republishing must be forced because it is a dangerous operation."
3039
3446
  msgstr ""
3040
3447
 
3041
3448
  msgid "Metadata taken from the upstream export history for this Content View Version"
3042
3449
  msgstr ""
3043
3450
 
3451
+ msgid "Minimum version"
3452
+ msgstr ""
3453
+
3044
3454
  msgid "Mismatched"
3045
3455
  msgstr ""
3046
3456
 
@@ -3048,6 +3458,12 @@ msgid "Missing activation key!"
3048
3458
  msgstr ""
3049
3459
 
3050
3460
  msgid "Missing arguments %{substitutions} for %{content_url}"
3461
+ msgstr "%{content_url}에 대한 %{substitutions} 인수 누락"
3462
+
3463
+ msgid "Moderate"
3464
+ msgstr ""
3465
+
3466
+ msgid "Modular"
3051
3467
  msgstr ""
3052
3468
 
3053
3469
  msgid "Module Stream"
@@ -3062,17 +3478,20 @@ msgstr ""
3062
3478
  msgid "Module stream"
3063
3479
  msgstr ""
3064
3480
 
3065
- msgid "Multi-entitlement"
3481
+ msgid "Module streams"
3066
3482
  msgstr ""
3067
3483
 
3484
+ msgid "Multi-entitlement"
3485
+ msgstr "멀티 인타이틀먼트 "
3486
+
3068
3487
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
3069
3488
  msgstr ""
3070
3489
 
3071
3490
  msgid "N/A"
3072
- msgstr ""
3491
+ msgstr "해당 없음 "
3073
3492
 
3074
3493
  msgid "NA"
3075
- msgstr ""
3494
+ msgstr "해당 없음 "
3076
3495
 
3077
3496
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
3078
3497
  msgstr ""
@@ -3114,7 +3533,6 @@ msgstr ""
3114
3533
  msgid "Needs to only be set for file repositories or docker tags"
3115
3534
  msgstr ""
3116
3535
 
3117
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
3118
3536
  msgid "Nest"
3119
3537
  msgstr "중첩 "
3120
3538
 
@@ -3152,7 +3570,7 @@ msgid "Newly published"
3152
3570
  msgstr ""
3153
3571
 
3154
3572
  msgid "No"
3155
- msgstr ""
3573
+ msgstr "아니오 "
3156
3574
 
3157
3575
  msgid "No Activation Keys selected"
3158
3576
  msgstr ""
@@ -3160,7 +3578,6 @@ msgstr ""
3160
3578
  msgid "No Activation keys to select"
3161
3579
  msgstr ""
3162
3580
 
3163
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3164
3581
  msgid "No Content View"
3165
3582
  msgstr "컨텐츠 보기가 없습니다 "
3166
3583
 
@@ -3176,7 +3593,6 @@ msgstr ""
3176
3593
  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."
3177
3594
  msgstr ""
3178
3595
 
3179
- # translation auto-copied from project CFSE, version sam-1.2, document app
3180
3596
  msgid "No Service Level Preference"
3181
3597
  msgstr "서비스 레벨 설정이 없음 "
3182
3598
 
@@ -3186,21 +3602,33 @@ msgstr ""
3186
3602
  msgid "No Version of Content View %{component} already exists as a component of the composite Content View %{composite} version %{version}"
3187
3603
  msgstr "컨텐츠 뷰 %{component}의 버전이 복합 컨텐츠 뷰 %{composite} 버전 %{version}의 구성 요소로 존재하지 않습니다 "
3188
3604
 
3605
+ msgid "No applicable errata"
3606
+ msgstr ""
3607
+
3189
3608
  msgid "No applicable errata for %s, skipping"
3190
3609
  msgstr ""
3191
3610
 
3192
3611
  msgid "No artifacts to show"
3193
3612
  msgstr ""
3194
3613
 
3614
+ msgid "No content"
3615
+ msgstr ""
3616
+
3617
+ msgid "No content added."
3618
+ msgstr ""
3619
+
3195
3620
  msgid "No content has been provided."
3196
3621
  msgstr "제공된 컨텐츠가 없습니다. "
3197
3622
 
3198
3623
  msgid "No content ids provided"
3199
- msgstr ""
3624
+ msgstr "컨텐츠 ID를 지정하지 않았습니다."
3200
3625
 
3201
3626
  msgid "No content view history events found."
3202
3627
  msgstr "컨텐츠 뷰 기록 이벤트를 찾을 수 없습니다. "
3203
3628
 
3629
+ msgid "No content views available"
3630
+ msgstr ""
3631
+
3204
3632
  msgid "No content views belong to ${label}"
3205
3633
  msgstr ""
3206
3634
 
@@ -3219,7 +3647,10 @@ msgstr ""
3219
3647
  msgid "No environments"
3220
3648
  msgstr ""
3221
3649
 
3222
- msgid "No errata has been specified."
3650
+ msgid "No errata available for this content view."
3651
+ msgstr ""
3652
+
3653
+ msgid "No errata available to add to this filter."
3223
3654
  msgstr ""
3224
3655
 
3225
3656
  msgid "No errors"
@@ -3243,30 +3674,60 @@ msgstr ""
3243
3674
  msgid "No installed packages and/or enabled repositories have been reported by %s."
3244
3675
  msgstr ""
3245
3676
 
3677
+ msgid "No items have been specified."
3678
+ msgstr ""
3679
+
3246
3680
  msgid "No manifest file uploaded"
3247
3681
  msgstr "업로드된 매니페스트 파일이 없음 "
3248
3682
 
3249
3683
  msgid "No manifest found. Import a manifest with the appropriate subscriptions before importing content."
3250
3684
  msgstr ""
3251
3685
 
3686
+ msgid "No matching "
3687
+ msgstr ""
3688
+
3689
+ msgid "No matching ${selectedContentType} found"
3690
+ msgstr ""
3691
+
3692
+ msgid "No matching RPM found."
3693
+ msgstr ""
3694
+
3695
+ msgid "No matching activation keys found."
3696
+ msgstr ""
3697
+
3252
3698
  msgid "No matching content views found"
3253
3699
  msgstr ""
3254
3700
 
3701
+ msgid "No matching errata found"
3702
+ msgstr ""
3703
+
3704
+ msgid "No matching filter rules found."
3705
+ msgstr ""
3706
+
3255
3707
  msgid "No matching filters found"
3256
3708
  msgstr ""
3257
3709
 
3258
3710
  msgid "No matching history record found"
3259
3711
  msgstr ""
3260
3712
 
3261
- msgid "No matching package groups found."
3713
+ msgid "No matching hosts found."
3714
+ msgstr ""
3715
+
3716
+ msgid "No matching packages found"
3262
3717
  msgstr ""
3263
3718
 
3264
3719
  msgid "No matching repositories found"
3265
3720
  msgstr ""
3266
3721
 
3722
+ msgid "No matching repository sets found"
3723
+ msgstr ""
3724
+
3267
3725
  msgid "No matching rules found."
3268
3726
  msgstr ""
3269
3727
 
3728
+ msgid "No matching traces found"
3729
+ msgstr ""
3730
+
3270
3731
  msgid "No matching version found"
3271
3732
  msgstr ""
3272
3733
 
@@ -3276,7 +3737,7 @@ msgstr "설치된 새 패키지가 없음 "
3276
3737
  msgid "No new packages."
3277
3738
  msgstr "새 패키지가 없습니다. "
3278
3739
 
3279
- msgid "No package groups have been added to this filter."
3740
+ msgid "No packages"
3280
3741
  msgstr ""
3281
3742
 
3282
3743
  msgid "No packages removed"
@@ -3304,11 +3765,17 @@ msgid "No profiles to show"
3304
3765
  msgstr ""
3305
3766
 
3306
3767
  msgid "No pulp workers running."
3768
+ msgstr "실행 중인 pulp worker가 없습니다."
3769
+
3770
+ msgid "No pulpcore content apps are running at %s."
3307
3771
  msgstr ""
3308
3772
 
3309
- msgid "No recently synced products"
3773
+ msgid "No pulpcore workers are running at %s."
3310
3774
  msgstr ""
3311
3775
 
3776
+ msgid "No recently synced products"
3777
+ msgstr "최근에 동기화된 제품 없음"
3778
+
3312
3779
  msgid "No recurring logic tied to the sync plan."
3313
3780
  msgstr ""
3314
3781
 
@@ -3318,17 +3785,23 @@ msgstr ""
3318
3785
  msgid "No repositories enabled."
3319
3786
  msgstr ""
3320
3787
 
3788
+ msgid "No repositories selected."
3789
+ msgstr ""
3790
+
3321
3791
  msgid "No repositories to show"
3322
3792
  msgstr ""
3323
3793
 
3324
3794
  msgid "No repository sets match your search criteria."
3325
3795
  msgstr ""
3326
3796
 
3797
+ msgid "No repository sets to show."
3798
+ msgstr ""
3799
+
3327
3800
  msgid "No rules have been added to this filter."
3328
3801
  msgstr ""
3329
3802
 
3330
3803
  msgid "No services defined, is this class extended?"
3331
- msgstr ""
3804
+ msgstr "정의된 서비스가 없습니다. 확장된 클래스입니까?"
3332
3805
 
3333
3806
  msgid "No start time currently available."
3334
3807
  msgstr "현재 사용 가능한 시작 시간이 없습니다. "
@@ -3343,7 +3816,7 @@ msgid "No uploads param specified. An array of uploads to import is required."
3343
3816
  msgstr ""
3344
3817
 
3345
3818
  msgid "Non-security errata applicable"
3346
- msgstr ""
3819
+ msgstr "적용 가능한 비보안 에라타"
3347
3820
 
3348
3821
  msgid "Non-security errata installable"
3349
3822
  msgstr ""
@@ -3373,6 +3846,9 @@ msgid "Not running"
3373
3846
  msgstr ""
3374
3847
 
3375
3848
  msgid "Not yet published"
3849
+ msgstr "아직 공개되지 않았습니다 "
3850
+
3851
+ msgid "Note: Deleting a subscription manifest is STRONGLY discouraged. Deleting a manifest will:"
3376
3852
  msgstr ""
3377
3853
 
3378
3854
  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."
@@ -3393,26 +3869,29 @@ msgstr ""
3393
3869
  msgid "Number to Allocate"
3394
3870
  msgstr ""
3395
3871
 
3396
- msgid "OSTree"
3872
+ msgid "OSTree Branch"
3397
3873
  msgstr ""
3398
3874
 
3399
- msgid "OSTree Branch"
3875
+ msgid "OSTree Ref"
3400
3876
  msgstr ""
3401
3877
 
3402
- msgid "OSTree Branches"
3878
+ msgid "OSTree Refs"
3403
3879
  msgstr ""
3404
3880
 
3405
- msgid "OSTree Repositories cannot be unprotected."
3881
+ msgid "OSTree ref"
3406
3882
  msgstr ""
3407
3883
 
3408
- msgid "Object to show subscriptions available for, either 'host' or 'activation_key'"
3884
+ msgid "OSTree refs"
3409
3885
  msgstr ""
3410
3886
 
3887
+ msgid "Object to show subscriptions available for, either 'host' or 'activation_key'"
3888
+ msgstr "사용 가능한 서브스크립션을 표시할 객체입니다. 'host' 또는 'activation_key'로 지정할 수 있습니다."
3889
+
3411
3890
  msgid "On Demand"
3412
3891
  msgstr ""
3413
3892
 
3414
3893
  msgid "On-disk location for exported repositories"
3415
- msgstr ""
3894
+ msgstr "내보낸 리포지터리의 디스크상 위치"
3416
3895
 
3417
3896
  msgid "On-disk location for pulp 3 exported repositories"
3418
3897
  msgstr ""
@@ -3435,13 +3914,18 @@ msgstr "하나 이상의 패키지가 올바르게 동기화되지 않았습니
3435
3914
  msgid "One or more processes require restarting"
3436
3915
  msgstr ""
3437
3916
 
3917
+ msgid "Only On Demand repositories may have space reclaimed."
3918
+ msgstr ""
3919
+
3920
+ msgid "Only On Demand smart proxies may have space reclaimed."
3921
+ msgstr ""
3922
+
3438
3923
  msgid "Only one Red Hat provider permitted for an Organization"
3439
3924
  msgstr "하나의 조직에 대해 하나의 Red Hat 공급자만을 허용 "
3440
3925
 
3441
3926
  msgid "Only returns id and quantity fields"
3442
3927
  msgstr ""
3443
3928
 
3444
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
3445
3929
  msgid "Operators"
3446
3930
  msgstr "운영자 "
3447
3931
 
@@ -3460,6 +3944,9 @@ msgstr ""
3460
3944
  msgid "Organization Information not provided."
3461
3945
  msgstr ""
3462
3946
 
3947
+ msgid "Organization Label"
3948
+ msgstr ""
3949
+
3463
3950
  msgid "Organization cannot be blank."
3464
3951
  msgstr "조직을 빈 칸으로 둘 수 없습니다. "
3465
3952
 
@@ -3478,10 +3965,18 @@ msgstr ""
3478
3965
  msgid "Organization required"
3479
3966
  msgstr "필요한 조직 "
3480
3967
 
3481
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3968
+ msgid "Orphaned Content Protection Time"
3969
+ msgstr ""
3970
+
3482
3971
  msgid "Other"
3483
3972
  msgstr "기타 "
3484
3973
 
3974
+ msgid "Other Content Types"
3975
+ msgstr ""
3976
+
3977
+ msgid "Overridden"
3978
+ msgstr ""
3979
+
3485
3980
  msgid "Override content for activation_key"
3486
3981
  msgstr "activation_key의 컨텐츠 덮어쓰기 "
3487
3982
 
@@ -3500,14 +3995,18 @@ msgstr ""
3500
3995
  msgid "Override to a boolean value or 'default'"
3501
3996
  msgstr ""
3502
3997
 
3998
+ msgid "Override to disabled"
3999
+ msgstr ""
4000
+
4001
+ msgid "Override to enabled"
4002
+ msgstr ""
4003
+
3503
4004
  msgid "Override value. Provide a boolean value if name is 'enabled'"
3504
4005
  msgstr ""
3505
4006
 
3506
- # translation auto-copied from project rhn-client-tools, version 6.5, document rhn-client-tools
3507
4007
  msgid "Package"
3508
4008
  msgstr "패키지"
3509
4009
 
3510
- # translation auto-copied from project RHEL Virtualization Deployment and Administration Guide, version 7.0, document Host_Installation
3511
4010
  msgid "Package Group"
3512
4011
  msgstr "패키지 그룹 "
3513
4012
 
@@ -3575,10 +4074,10 @@ msgid "Package Install scheduled by %s"
3575
4074
  msgstr "%s에 의해 스케줄된 패키지 설치 "
3576
4075
 
3577
4076
  msgid "Package Profile Update"
3578
- msgstr ""
4077
+ msgstr "패키지 프로파일 업데이트"
3579
4078
 
3580
4079
  msgid "Package Profile Update for %s"
3581
- msgstr ""
4080
+ msgstr "%s에 대한 패키지 프로파일 업데이트"
3582
4081
 
3583
4082
  msgid "Package Remove"
3584
4083
  msgstr "패키지 제거 "
@@ -3598,6 +4097,12 @@ msgstr "패키지 제거 시간 초과 "
3598
4097
  msgid "Package Remove scheduled by %s"
3599
4098
  msgstr "%s에 의해 스케줄된 패키지 제거 "
3600
4099
 
4100
+ msgid "Package Type"
4101
+ msgstr ""
4102
+
4103
+ msgid "Package Types"
4104
+ msgstr ""
4105
+
3601
4106
  msgid "Package Update"
3602
4107
  msgstr "패키지 업데이트 "
3603
4108
 
@@ -3616,19 +4121,15 @@ msgstr "패키지 업데이트 시간 초과 "
3616
4121
  msgid "Package Update scheduled by %s"
3617
4122
  msgstr "%s에 의해 스케줄된 패키지 업데이트 "
3618
4123
 
3619
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3620
4124
  msgid "Package group update canceled"
3621
4125
  msgstr "패키지 그룹 업데이트 취소"
3622
4126
 
3623
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3624
4127
  msgid "Package group update complete"
3625
4128
  msgstr "패키지 그룹 업데이트 완료"
3626
4129
 
3627
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3628
4130
  msgid "Package group update failed"
3629
4131
  msgstr "패키지 그룹 업데이트를 실패"
3630
4132
 
3631
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3632
4133
  msgid "Package group update timed out"
3633
4134
  msgstr "패키지 그룹 업데이트 시간 초과 "
3634
4135
 
@@ -3644,22 +4145,40 @@ msgstr "패키지 설치 실패: \"%{package}\""
3644
4145
  msgid "Package installation: \"%{package}\" "
3645
4146
  msgstr "패키지 설치: \"%{package}\""
3646
4147
 
4148
+ 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."
4149
+ msgstr ""
4150
+
3647
4151
  msgid "Packages"
3648
4152
  msgstr "패키지 "
3649
4153
 
4154
+ msgid "Packages management functionality on this page is incomplete"
4155
+ msgstr ""
4156
+
3650
4157
  msgid "Packages must be provided"
3651
4158
  msgstr "패키지가 필요함 "
3652
4159
 
4160
+ msgid "Packages will appear here when available."
4161
+ msgstr ""
4162
+
3653
4163
  msgid "Page number, starting at 1"
3654
4164
  msgstr "1 부터 페이지 번호 "
3655
4165
 
3656
4166
  msgid "Partial"
3657
- msgstr ""
4167
+ msgstr "부분"
3658
4168
 
3659
4169
  msgid "Partially entitled"
3660
- msgstr ""
4170
+ msgstr "일부 권한이 부여됨"
3661
4171
 
3662
4172
  msgid "Partition template IDs"
4173
+ msgstr "파티션 템플릿 ID"
4174
+
4175
+ msgid "Password"
4176
+ msgstr ""
4177
+
4178
+ msgid "Password for authentication"
4179
+ msgstr ""
4180
+
4181
+ msgid "Password of the upstream authentication token."
3663
4182
  msgstr ""
3664
4183
 
3665
4184
  msgid "Password of the upstream repository user used for authentication"
@@ -3668,17 +4187,18 @@ msgstr ""
3668
4187
  msgid "Password to access URL"
3669
4188
  msgstr ""
3670
4189
 
4190
+ msgid "Path"
4191
+ msgstr ""
4192
+
3671
4193
  msgid "Path for ssl cert used for pulp server auth"
3672
4194
  msgstr ""
3673
4195
 
3674
4196
  msgid "Path for ssl key used for pulp server auth"
3675
4197
  msgstr ""
3676
4198
 
3677
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
3678
4199
  msgid "Paused"
3679
4200
  msgstr "일시정지 "
3680
4201
 
3681
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
3682
4202
  msgid "Pending"
3683
4203
  msgstr "보류 중 "
3684
4204
 
@@ -3703,9 +4223,8 @@ msgstr ""
3703
4223
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3704
4224
  msgstr "권한이 거부되었습니다. 사용자 '%{user}'은(는) 조직 '%{org}'에 액세스할 수 있는 권한이 없습니다. "
3705
4225
 
3706
- # translation auto-copied from project subscription-manager, version 1.10.10, document keys
3707
4226
  msgid "Physical"
3708
- msgstr "물리 "
4227
+ msgstr "물리적 "
3709
4228
 
3710
4229
  msgid "Plan numeric identifier"
3711
4230
  msgstr "숫자로된 ID 계획 "
@@ -3741,6 +4260,12 @@ msgid "Please select an organization to view subscription totals."
3741
4260
  msgstr ""
3742
4261
 
3743
4262
  msgid "Please select one from the list below and you will be redirected."
4263
+ msgstr "다음 목록 중 하나를 선택하면 선택한 곳으로 이동합니다."
4264
+
4265
+ msgid "Please wait while the task starts.."
4266
+ msgstr ""
4267
+
4268
+ msgid "Policy to set for mirroring content. Must be one of %s."
3744
4269
  msgstr ""
3745
4270
 
3746
4271
  msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
@@ -3752,17 +4277,19 @@ msgstr "메타데이터 처리 중 "
3752
4277
  msgid "Processing metadata."
3753
4278
  msgstr "메타데이터를 처리하고 있습니다. "
3754
4279
 
3755
- # translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author eukim
3756
4280
  msgid "Product"
3757
4281
  msgstr "제품"
3758
4282
 
3759
4283
  msgid "Product Content"
3760
- msgstr ""
4284
+ msgstr "제품 컨텐츠 "
3761
4285
 
3762
4286
  msgid "Product Create"
3763
4287
  msgstr ""
3764
4288
 
3765
4289
  msgid "Product ID"
4290
+ msgstr "제품 ID"
4291
+
4292
+ msgid "Product Name"
3766
4293
  msgstr ""
3767
4294
 
3768
4295
  msgid "Product and Repositories"
@@ -3812,6 +4339,12 @@ msgstr "컨텐츠 뷰 버전 승격 "
3812
4339
  msgid "Promote errata"
3813
4340
  msgstr ""
3814
4341
 
4342
+ msgid "Promote version ${versionNameToPromote}"
4343
+ msgstr ""
4344
+
4345
+ msgid "Promoted to "
4346
+ msgstr ""
4347
+
3815
4348
  msgid "Promoted to %{environment}"
3816
4349
  msgstr "%{environment}로 승격 "
3817
4350
 
@@ -3825,21 +4358,23 @@ msgid "Promotion to Environment"
3825
4358
  msgstr ""
3826
4359
 
3827
4360
  msgid "Provided Products"
3828
- msgstr ""
4361
+ msgstr "제공되는 제품 "
3829
4362
 
3830
4363
  msgid "Provided pool with id %s has no upstream entitlement"
3831
4364
  msgstr ""
3832
4365
 
3833
4366
  msgid "Provisioning template IDs"
3834
- msgstr ""
4367
+ msgstr "프로비저닝 템플릿 ID "
3835
4368
 
3836
4369
  msgid "Proxies"
3837
4370
  msgstr ""
3838
4371
 
4372
+ msgid "Public"
4373
+ msgstr ""
4374
+
3839
4375
  msgid "Public key block in DER encoding or certificate content"
3840
4376
  msgstr ""
3841
4377
 
3842
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3843
4378
  msgid "Publish"
3844
4379
  msgstr "공개 "
3845
4380
 
@@ -3849,9 +4384,15 @@ msgstr ""
3849
4384
  msgid "Publish a content view"
3850
4385
  msgstr "컨텐츠 뷰 공개 "
3851
4386
 
4387
+ msgid "Publish new version"
4388
+ msgstr ""
4389
+
3852
4390
  msgid "Publish new version - "
3853
4391
  msgstr ""
3854
4392
 
4393
+ msgid "Published date"
4394
+ msgstr ""
4395
+
3855
4396
  msgid "Published new version"
3856
4397
  msgstr "새 버전 공개 "
3857
4398
 
@@ -3861,11 +4402,8 @@ msgstr ""
3861
4402
  msgid "Publishing content view"
3862
4403
  msgstr ""
3863
4404
 
3864
- msgid "Pulling remote branches. Downloaded %s units."
3865
- msgstr ""
3866
-
3867
4405
  msgid "Pulp"
3868
- msgstr ""
4406
+ msgstr "Pulp"
3869
4407
 
3870
4408
  msgid "Pulp 3 export destination filepath"
3871
4409
  msgstr ""
@@ -3889,7 +4427,7 @@ msgid "Pulp database connection issue at %s."
3889
4427
  msgstr ""
3890
4428
 
3891
4429
  msgid "Pulp database connection issue."
3892
- msgstr ""
4430
+ msgstr "Pulp 데이터베이스 연결 문제가 발생했습니다."
3893
4431
 
3894
4432
  msgid "Pulp disk space notification"
3895
4433
  msgstr ""
@@ -3898,7 +4436,7 @@ msgid "Pulp does not appear to be running at %s."
3898
4436
  msgstr ""
3899
4437
 
3900
4438
  msgid "Pulp does not appear to be running."
3901
- msgstr ""
4439
+ msgstr "Pulp가 실행되고 있지 않습니다."
3902
4440
 
3903
4441
  msgid "Pulp export destination filepath"
3904
4442
  msgstr ""
@@ -3907,29 +4445,44 @@ msgid "Pulp message bus connection issue at %s."
3907
4445
  msgstr ""
3908
4446
 
3909
4447
  msgid "Pulp message bus connection issue."
3910
- msgstr ""
4448
+ msgstr "Pulp 메시지 버스 연결 문제가 발생했습니다."
3911
4449
 
3912
4450
  msgid "Pulp node"
3913
- msgstr ""
4451
+ msgstr "Pulp 노드"
3914
4452
 
3915
4453
  msgid "Pulp redis connection issue at %s."
3916
4454
  msgstr ""
3917
4455
 
3918
4456
  msgid "Pulp server version"
3919
- msgstr ""
4457
+ msgstr "Pulp 서버 버전"
3920
4458
 
3921
4459
  msgid "Pulp storage"
3922
- msgstr ""
4460
+ msgstr "Pulp 스토리지"
3923
4461
 
3924
4462
  msgid "Pulp task error"
3925
4463
  msgstr "Pulp 작업 오류 "
3926
4464
 
3927
- msgid "Pulpcore"
4465
+ msgid "Python Package"
3928
4466
  msgstr ""
3929
4467
 
3930
- msgid "Quantity"
4468
+ msgid "Python Packages"
4469
+ msgstr ""
4470
+
4471
+ msgid "Python package"
4472
+ msgstr ""
4473
+
4474
+ msgid "Python packages"
4475
+ msgstr ""
4476
+
4477
+ msgid "Python packages to exclude from the upstream URL, names separated by newline. You may also specify versions, for example: django~=2.0."
4478
+ msgstr ""
4479
+
4480
+ 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."
3931
4481
  msgstr ""
3932
4482
 
4483
+ msgid "Quantity"
4484
+ msgstr "수량 "
4485
+
3933
4486
  msgid "Quantity must not be above ${pool.available}"
3934
4487
  msgstr ""
3935
4488
 
@@ -3949,28 +4502,57 @@ msgid "Quantity to Allocate"
3949
4502
  msgstr ""
3950
4503
 
3951
4504
  msgid "RAM: %s GB"
3952
- msgstr "RAM: %s GB"
4505
+ msgstr "RAM: %sGB"
3953
4506
 
3954
4507
  msgid "RH Repos"
3955
4508
  msgstr ""
3956
4509
 
3957
4510
  msgid "RPM"
4511
+ msgstr "RPM"
4512
+
4513
+ msgid "RPM Package Groups"
4514
+ msgstr ""
4515
+
4516
+ msgid "RPM Packages"
3958
4517
  msgstr ""
3959
4518
 
3960
4519
  msgid "RPM name"
3961
4520
  msgstr ""
3962
4521
 
3963
- # translation auto-copied from project RHN Satellite Installation Guide, version 5.6, document Importing_and_Synchronizing
3964
4522
  msgid "RPMs"
3965
4523
  msgstr "RPM"
3966
4524
 
4525
+ msgid "Range"
4526
+ msgstr ""
4527
+
3967
4528
  msgid "Realm IDs"
4529
+ msgstr "영역 ID "
4530
+
4531
+ msgid "Reassign affected activation keys"
4532
+ msgstr ""
4533
+
4534
+ msgid "Reassign affected hosts"
3968
4535
  msgstr ""
3969
4536
 
3970
4537
  msgid "Reboot required"
3971
4538
  msgstr ""
3972
4539
 
4540
+ msgid "Recalculate"
4541
+ msgstr ""
4542
+
3973
4543
  msgid "Recently Expired Subscriptions"
4544
+ msgstr "최근에 만료된 서브스크립션"
4545
+
4546
+ msgid "Reclaim Space"
4547
+ msgstr ""
4548
+
4549
+ msgid "Reclaim space from On Demand repositories"
4550
+ msgstr ""
4551
+
4552
+ msgid "Reclaim space from all On Demand repositories on a smart proxy"
4553
+ msgstr ""
4554
+
4555
+ msgid "Reclaim space from an On Demand repository"
3974
4556
  msgstr ""
3975
4557
 
3976
4558
  msgid "Recommended Repositories"
@@ -3979,12 +4561,12 @@ msgstr ""
3979
4561
  msgid "Red Hat CDN URL"
3980
4562
  msgstr "Red Hat CDN URL"
3981
4563
 
3982
- msgid "Red Hat Provider Details"
3983
- msgstr ""
3984
-
3985
4564
  msgid "Red Hat Repositories"
3986
4565
  msgstr "Red Hat 리포지터리 "
3987
4566
 
4567
+ msgid "Red Hat Repositories page"
4568
+ msgstr ""
4569
+
3988
4570
  msgid "Red Hat products cannot be manipulated."
3989
4571
  msgstr "Red Hat 제품을 조작할 수 없습니다. "
3990
4572
 
@@ -3995,6 +4577,9 @@ msgid "Red Hat repositories cannot be manipulated."
3995
4577
  msgstr "Red Hat 리포지터리를 조작할 수 없습니다. "
3996
4578
 
3997
4579
  msgid "Refresh"
4580
+ msgstr "새로고침 "
4581
+
4582
+ msgid "Refresh Content Host Statuses for %s"
3998
4583
  msgstr ""
3999
4584
 
4000
4585
  msgid "Refresh Manifest"
@@ -4003,6 +4588,9 @@ msgstr "매니페스트 새로 고침 "
4003
4588
  msgid "Refresh previously imported manifest for Red Hat provider"
4004
4589
  msgstr "Red Hat 공급자에 대해 이전에 가져온 매니페스트를 새로 고침 "
4005
4590
 
4591
+ msgid "Refresh_Content_Host_Status"
4592
+ msgstr ""
4593
+
4006
4594
  msgid "Register a host with subscription and information"
4007
4595
  msgstr ""
4008
4596
 
@@ -4019,6 +4607,24 @@ msgid "Registry name pattern will result in invalid container image name of memb
4019
4607
  msgstr ""
4020
4608
 
4021
4609
  msgid "Reindex subscriptions"
4610
+ msgstr "서브스크립션 다시 인덱싱"
4611
+
4612
+ msgid "Related component content views"
4613
+ msgstr ""
4614
+
4615
+ msgid "Related component cvs: "
4616
+ msgstr ""
4617
+
4618
+ msgid "Related composite content views"
4619
+ msgstr ""
4620
+
4621
+ msgid "Related composite cvs: "
4622
+ msgstr ""
4623
+
4624
+ msgid "Related content views will appear here when created."
4625
+ msgstr ""
4626
+
4627
+ msgid "Release"
4022
4628
  msgstr ""
4023
4629
 
4024
4630
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
@@ -4037,7 +4643,7 @@ msgid "Reload data"
4037
4643
  msgstr "데이터 다시 불러오기 "
4038
4644
 
4039
4645
  msgid "Remote action:"
4040
- msgstr ""
4646
+ msgstr "원격 작업:"
4041
4647
 
4042
4648
  msgid "Removal of package group(s) requested: %{groups}"
4043
4649
  msgstr ""
@@ -4046,7 +4652,7 @@ msgid "Removal of package(s) requested: %{packages}"
4046
4652
  msgstr ""
4047
4653
 
4048
4654
  msgid "Remove"
4049
- msgstr ""
4655
+ msgstr "삭제 "
4050
4656
 
4051
4657
  msgid "Remove Content"
4052
4658
  msgstr "컨텐츠 삭제 "
@@ -4072,15 +4678,18 @@ msgstr ""
4072
4678
  msgid "Remove content view version"
4073
4679
  msgstr "컨텐츠 뷰 버전 삭제 "
4074
4680
 
4075
- msgid "Remove content views"
4076
- msgstr ""
4077
-
4078
4681
  msgid "Remove from Environment"
4079
4682
  msgstr "환경에서 삭제 "
4080
4683
 
4081
- msgid "Remove hosts from the host collection"
4684
+ msgid "Remove from environment"
4685
+ msgstr ""
4686
+
4687
+ msgid "Remove from environments"
4082
4688
  msgstr ""
4083
4689
 
4690
+ msgid "Remove hosts from the host collection"
4691
+ msgstr "호스트 컬렉션에서 호스트 삭제"
4692
+
4084
4693
  msgid "Remove lifecycle environments from the smart proxy"
4085
4694
  msgstr ""
4086
4695
 
@@ -4109,10 +4718,10 @@ msgid "Remove products from sync plan"
4109
4718
  msgstr "동기화 계획에서 제품 삭제 "
4110
4719
 
4111
4720
  msgid "Remove subscriptions"
4112
- msgstr ""
4721
+ msgstr "서브스크립션 삭제"
4113
4722
 
4114
4723
  msgid "Remove subscriptions from %s"
4115
- msgstr ""
4724
+ msgstr "%s에서 서브스크립션 삭제"
4116
4725
 
4117
4726
  msgid "Remove subscriptions from one or more hosts"
4118
4727
  msgstr ""
@@ -4120,6 +4729,9 @@ msgstr ""
4120
4729
  msgid "Remove versions and/or environments from a content view and reassign systems and keys"
4121
4730
  msgstr "컨텐츠 뷰에서 버전 및 환경 삭제 후 시스템 및 키 다시 지정 "
4122
4731
 
4732
+ msgid "Remove versions from environments"
4733
+ msgstr ""
4734
+
4123
4735
  msgid "Removed component from content view"
4124
4736
  msgstr ""
4125
4737
 
@@ -4132,17 +4744,18 @@ msgstr "패키지 그룹 삭제 중..."
4132
4744
  msgid "Removing Package..."
4133
4745
  msgstr "패키지 삭제 중..."
4134
4746
 
4135
- msgid "Repo Type"
4747
+ msgid "Removing this version from all environments will not delete the version. Version will still be available for later promotion."
4136
4748
  msgstr ""
4137
4749
 
4138
- # translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author eukim
4750
+ msgid "Repo Type"
4751
+ msgstr "리포지터리 유형 "
4752
+
4139
4753
  msgid "Repositories"
4140
4754
  msgstr "리포지터리 "
4141
4755
 
4142
4756
  msgid "Repositories from published Content Views are not allowed."
4143
4757
  msgstr "공개된 컨텐츠 뷰에서 리포지터리는 허용되지 않습니다. "
4144
4758
 
4145
- # translation auto-copied from project PressGang CCMS topics, version 1, document 30851-704293, author eukim
4146
4759
  msgid "Repository"
4147
4760
  msgstr "리포지터리 "
4148
4761
 
@@ -4159,12 +4772,11 @@ msgid "Repository Id associated with the kickstart repo used for provisioning"
4159
4772
  msgstr ""
4160
4773
 
4161
4774
  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."
4162
- msgstr ""
4775
+ msgstr "게시된 컨텐츠 뷰에 이미 포함되었기 때문에 리포지터리를 삭제할 수 없습니다. 삭제하기 전에 이 리포지터리가 포함된 모든 컨텐츠 뷰 버전을 먼저 삭제하십시오."
4163
4776
 
4164
4777
  msgid "Repository cannot be disabled since it has already been promoted."
4165
4778
  msgstr "리포지터리는 이미 승격되었기 때문에 이를 비활성화할 수 없습니다. "
4166
4779
 
4167
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
4168
4780
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
4169
4781
  msgstr "리포지터리가 이미 환경 %{to_env}에 있는 %{cv_name}에 복제되어 있습니다 "
4170
4782
 
@@ -4183,46 +4795,101 @@ msgstr "리포지터리 메타데이터 공개 "
4183
4795
  msgid "Repository not found"
4184
4796
  msgstr "리포지터리를 찾을 수 없음 "
4185
4797
 
4798
+ msgid "Repository path"
4799
+ msgstr ""
4800
+
4801
+ msgid "Repository set disabled"
4802
+ msgstr ""
4803
+
4804
+ msgid "Repository set enabled"
4805
+ msgstr ""
4806
+
4186
4807
  msgid "Repository set name to search on"
4187
4808
  msgstr "검색할 리포지터리 세트 이름 "
4188
4809
 
4189
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
4810
+ msgid "Repository set reset to default"
4811
+ msgstr ""
4812
+
4813
+ msgid "Repository sets"
4814
+ msgstr ""
4815
+
4190
4816
  msgid "Repository sets are not available for custom products."
4191
4817
  msgstr "리포지터리 세트는 사용자 정의 제품에서 사용할 수 없습니다."
4192
4818
 
4819
+ msgid "Repository sets disabled"
4820
+ msgstr ""
4821
+
4822
+ msgid "Repository sets enabled"
4823
+ msgstr ""
4824
+
4825
+ msgid "Repository sets reset to default"
4826
+ msgstr ""
4827
+
4828
+ msgid "Repository sets will appear here when available."
4829
+ msgstr ""
4830
+
4831
+ msgid "Repository with content label %{content_label} was not found in upstream organization %{org_label}, content view %{cv_label} and lifecycle environment %{env_label} "
4832
+ msgstr ""
4833
+
4193
4834
  msgid "Republish Repositories of %{name} %{version}"
4194
4835
  msgstr ""
4195
4836
 
4196
4837
  msgid "Republish Version Repositories"
4197
4838
  msgstr ""
4198
4839
 
4199
- msgid "Requirements yaml is invalid!"
4840
+ msgid "Require you to upload the subscription-manifest and re-attach subscriptions to hosts and activation keys."
4841
+ msgstr ""
4842
+
4843
+ msgid "Requirements is not valid yaml."
4844
+ msgstr ""
4845
+
4846
+ msgid "Requirements yaml should be a key-value pair structure."
4847
+ msgstr ""
4848
+
4849
+ msgid "Requirements yaml should have a 'collections' key"
4200
4850
  msgstr ""
4201
4851
 
4202
4852
  msgid "Requires Virt-Who"
4203
4853
  msgstr ""
4204
4854
 
4205
- msgid "Resolve Traces"
4855
+ msgid "Reset filters"
4856
+ msgstr ""
4857
+
4858
+ msgid "Reset to default"
4859
+ msgstr ""
4860
+
4861
+ msgid "Resolve traces"
4206
4862
  msgstr ""
4207
4863
 
4208
4864
  msgid "Resolve traces for one or more hosts"
4209
4865
  msgstr ""
4210
4866
 
4211
- msgid "Resource"
4867
+ msgid "Resolve traces via Katello interface"
4212
4868
  msgstr ""
4213
4869
 
4870
+ msgid "Resource"
4871
+ msgstr "리소스"
4872
+
4214
4873
  msgid "Restart Services via Katello interface"
4215
4874
  msgstr ""
4216
4875
 
4876
+ msgid "Restart app"
4877
+ msgstr ""
4878
+
4879
+ msgid "Restart via customized remote execution"
4880
+ msgstr ""
4881
+
4882
+ msgid "Restart via remote execution"
4883
+ msgstr ""
4884
+
4217
4885
  msgid "Restrict Composite Content View promotion"
4218
4886
  msgstr ""
4219
4887
 
4220
- # translation auto-copied from project Red Hat Satellite Installation Guide, version 6.0, document chap-Uninstalling_Red_Hat_Satellite_Server_and_Capsule_Server
4221
4888
  msgid "Result"
4222
4889
  msgstr "결과 "
4223
4890
 
4224
4891
  msgid "Retrieve a single errata for a host"
4225
- msgstr ""
4892
+ msgstr "호스트에 대한 단일 에라타를 가져옵니다."
4226
4893
 
4227
4894
  msgid "Return Red Hat (non-custom) products only"
4228
4895
  msgstr ""
@@ -4233,12 +4900,24 @@ msgstr ""
4233
4900
  msgid "Return custom products only"
4234
4901
  msgstr ""
4235
4902
 
4903
+ msgid "Return deb packages that are applicable to one or more hosts (defaults to true if host_id is specified)"
4904
+ msgstr ""
4905
+
4906
+ msgid "Return deb packages that are upgradable on one or more hosts"
4907
+ msgstr ""
4908
+
4909
+ msgid "Return deb packages that can be added to the specified object. Only the value 'content_view_version' is supported."
4910
+ msgstr ""
4911
+
4236
4912
  msgid "Return enabled products only"
4237
4913
  msgstr ""
4238
4914
 
4239
4915
  msgid "Return errata that are applicable to one or more hosts (defaults to true if host_id is specified)"
4240
4916
  msgstr ""
4241
4917
 
4918
+ msgid "Return errata that are applicable to this host. Defaults to false)"
4919
+ msgstr ""
4920
+
4242
4921
  msgid "Return errata that are upgradable on one or more hosts"
4243
4922
  msgstr ""
4244
4923
 
@@ -4248,6 +4927,15 @@ msgstr ""
4248
4927
  msgid "Return name and stream information only)"
4249
4928
  msgstr ""
4250
4929
 
4930
+ msgid "Return only errata of a particular severity (None, Low, Moderate, Important, Critical)"
4931
+ msgstr ""
4932
+
4933
+ msgid "Return only errata of a particular type (security, bugfix, enhancement)"
4934
+ msgstr ""
4935
+
4936
+ msgid "Return only packages of a particular status (upgradable or up-to-date)"
4937
+ msgstr ""
4938
+
4251
4939
  msgid "Return only subscriptions which can be attached to the upstream allocation"
4252
4940
  msgstr ""
4253
4941
 
@@ -4267,10 +4955,10 @@ msgid "Return packages that can be added to the specified object. Only the valu
4267
4955
  msgstr ""
4268
4956
 
4269
4957
  msgid "Return subscriptions that match installed products of the specified host"
4270
- msgstr ""
4958
+ msgstr "지정한 호스트의 설치된 제품과 일치하는 서브스크립션 반환"
4271
4959
 
4272
4960
  msgid "Return subscriptions which do not overlap with a currently-attached subscription"
4273
- msgstr ""
4961
+ msgstr "현재 연결된 서브스크립션과 중복되지 않는 서브스크립션 반환"
4274
4962
 
4275
4963
  msgid "Return the content of a Content Credential, used directly by yum"
4276
4964
  msgstr ""
@@ -4278,22 +4966,39 @@ msgstr ""
4278
4966
  msgid "Return the content of a repo gpg key, used directly by yum"
4279
4967
  msgstr "yum에 직접 사용되는 리포지터리 gpg 키의 컨텐츠를 반환 "
4280
4968
 
4969
+ msgid "Return the enabled content types"
4970
+ msgstr ""
4971
+
4281
4972
  msgid "Returns content that can be both added and is currently added to the object. The value 'content_view_filter' is supported"
4282
4973
  msgstr ""
4283
4974
 
4284
- msgid "Role"
4975
+ msgid "Review Details"
4976
+ msgstr ""
4977
+
4978
+ msgid "Review details"
4979
+ msgstr ""
4980
+
4981
+ msgid "Review your currently selected changes for "
4285
4982
  msgstr ""
4286
4983
 
4984
+ msgid "Role"
4985
+ msgstr "역할 "
4986
+
4287
4987
  msgid "Role of host"
4288
4988
  msgstr ""
4289
4989
 
4290
4990
  msgid "Roles"
4991
+ msgstr "역할 "
4992
+
4993
+ msgid "Rpm packages"
4994
+ msgstr ""
4995
+
4996
+ msgid "Rules to be added"
4291
4997
  msgstr ""
4292
4998
 
4293
4999
  msgid "Run Sync Plan:"
4294
5000
  msgstr ""
4295
5001
 
4296
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author eukim
4297
5002
  msgid "Running"
4298
5003
  msgstr "실행 중 "
4299
5004
 
@@ -4303,6 +5008,9 @@ msgstr ""
4303
5008
  msgid "SRPM details"
4304
5009
  msgstr ""
4305
5010
 
5011
+ msgid "SSL CA Content Credential"
5012
+ msgstr ""
5013
+
4306
5014
  msgid "SSL version used to communicate with the CDN"
4307
5015
  msgstr ""
4308
5016
 
@@ -4310,18 +5018,26 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
4310
5018
  msgstr ""
4311
5019
 
4312
5020
  msgid "Save"
4313
- msgstr ""
5021
+ msgstr "저장"
4314
5022
 
4315
5023
  msgid "Schedule errata for installation using katello-agent. %s"
4316
5024
  msgstr ""
4317
5025
 
5026
+ msgid "Schema Version 1"
5027
+ msgstr ""
5028
+
5029
+ msgid "Schema Version 2"
5030
+ msgstr ""
5031
+
4318
5032
  msgid "Search"
5033
+ msgstr "검색 "
5034
+
5035
+ msgid "Search Query"
4319
5036
  msgstr ""
4320
5037
 
4321
5038
  msgid "Search pattern (defaults to '*')"
4322
5039
  msgstr ""
4323
5040
 
4324
- # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/java/StringResource
4325
5041
  msgid "Search string"
4326
5042
  msgstr "검색 문자열"
4327
5043
 
@@ -4334,39 +5050,45 @@ msgstr ""
4334
5050
  msgid "Search string for hosts to perform an action on"
4335
5051
  msgstr ""
4336
5052
 
4337
- # translation auto-copied from project CFSE, version sam-1.2, document app
4338
5053
  msgid "Security"
4339
5054
  msgstr "보안 "
4340
5055
 
4341
5056
  msgid "Security errata applicable"
4342
- msgstr ""
5057
+ msgstr "적용 가능한 보안 에라타"
4343
5058
 
4344
5059
  msgid "Security errata installable"
4345
5060
  msgstr ""
4346
5061
 
4347
5062
  msgid "Select"
4348
- msgstr ""
5063
+ msgstr "선택 "
4349
5064
 
4350
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
4351
5065
  msgid "Select All"
4352
5066
  msgstr "모두 선택 "
4353
5067
 
4354
5068
  msgid "Select Content View"
4355
5069
  msgstr "컨텐츠 뷰 선택 "
4356
5070
 
4357
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4358
5071
  msgid "Select None"
4359
5072
  msgstr "선택하지 않음 "
4360
5073
 
4361
5074
  msgid "Select Organization"
4362
- msgstr ""
5075
+ msgstr "조직 선택 "
4363
5076
 
4364
5077
  msgid "Select Value"
4365
5078
  msgstr ""
4366
5079
 
5080
+ msgid "Select a content view"
5081
+ msgstr ""
5082
+
4367
5083
  msgid "Select a lifecycle environment from the available promotion paths to promote new version."
4368
5084
  msgstr ""
4369
5085
 
5086
+ msgid "Select a provider to install katello-host-tools-tracer"
5087
+ msgstr ""
5088
+
5089
+ msgid "Select all"
5090
+ msgstr ""
5091
+
4370
5092
  msgid "Select all rows"
4371
5093
  msgstr ""
4372
5094
 
@@ -4379,19 +5101,45 @@ msgstr ""
4379
5101
  msgid "Select available version of ${cvName} to use"
4380
5102
  msgstr ""
4381
5103
 
4382
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
5104
+ msgid "Select available version of components to use"
5105
+ msgstr ""
5106
+
5107
+ msgid "Select content view"
5108
+ msgstr ""
5109
+
4383
5110
  msgid "Select hosts to assign to %s"
4384
5111
  msgstr "%s에 할당할 호스트 선택 "
4385
5112
 
5113
+ msgid "Select lifecycle environment"
5114
+ msgstr ""
5115
+
5116
+ msgid "Select none"
5117
+ msgstr ""
5118
+
5119
+ msgid "Select one"
5120
+ msgstr ""
5121
+
5122
+ msgid "Select page"
5123
+ msgstr ""
5124
+
4386
5125
  msgid "Select row"
4387
5126
  msgstr ""
4388
5127
 
4389
5128
  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."
4390
5129
  msgstr ""
4391
5130
 
4392
- msgid "Service Level"
5131
+ msgid "Selected environment "
5132
+ msgstr ""
5133
+
5134
+ msgid "Selected environments "
5135
+ msgstr ""
5136
+
5137
+ msgid "Sending a list of included IDs is not allowed when all items are being selected."
4393
5138
  msgstr ""
4394
5139
 
5140
+ msgid "Service Level"
5141
+ msgstr "서비스 레벨 "
5142
+
4395
5143
  msgid "Service Level %s"
4396
5144
  msgstr "서비스 레벨 %s"
4397
5145
 
@@ -4425,10 +5173,15 @@ msgstr ""
4425
5173
  msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
4426
5174
  msgstr ""
4427
5175
 
4428
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4429
5176
  msgid "Severity"
4430
5177
  msgstr "중요도"
4431
5178
 
5179
+ msgid "Severity must be one of: %s"
5180
+ msgstr ""
5181
+
5182
+ msgid "Show %s"
5183
+ msgstr ""
5184
+
4432
5185
  msgid "Show :a_resource"
4433
5186
  msgstr ":a_resource 표시 "
4434
5187
 
@@ -4459,6 +5212,9 @@ msgstr "서브스크립션 표시 "
4459
5212
  msgid "Show a sync plan"
4460
5213
  msgstr "동기화 계획 표시 "
4461
5214
 
5215
+ msgid "Show all"
5216
+ msgstr ""
5217
+
4462
5218
  msgid "Show an activation key"
4463
5219
  msgstr "활성 키 표시 "
4464
5220
 
@@ -4474,6 +5230,9 @@ msgstr "컨텐츠 뷰 버전 표시 "
4474
5230
  msgid "Show filter rule info"
4475
5231
  msgstr "필터 규칙 정보 표시 "
4476
5232
 
5233
+ msgid "Show full description"
5234
+ msgstr ""
5235
+
4477
5236
  msgid "Show organization"
4478
5237
  msgstr "조직 표시 "
4479
5238
 
@@ -4484,7 +5243,7 @@ msgid "Show releases available for the content host"
4484
5243
  msgstr "컨텐츠 호스트에 사용 가능한 릴리즈 표시 "
4485
5244
 
4486
5245
  msgid "Show the available repository types"
4487
- msgstr ""
5246
+ msgstr "사용 가능한 리포지터리 유형 표시"
4488
5247
 
4489
5248
  msgid "Shows status of Katello system and it's subcomponents"
4490
5249
  msgstr ""
@@ -4504,7 +5263,7 @@ msgstr ""
4504
5263
  msgid "Simple Content Access has been enabled for '%{subject}'."
4505
5264
  msgstr ""
4506
5265
 
4507
- msgid "Single content view consisting of repositories"
5266
+ msgid "Single content view consisting of e.g. repositories"
4508
5267
  msgstr ""
4509
5268
 
4510
5269
  msgid "Size of file to upload"
@@ -4514,19 +5273,18 @@ msgid "Skip metadata check on each repository on the smart proxy"
4514
5273
  msgstr ""
4515
5274
 
4516
5275
  msgid "Skipped pulp_auth check after failed pulp check"
4517
- msgstr ""
5276
+ msgstr "실패한 pulp 검사 후 pulp_auth 검사를 건너뛰었습니다."
4518
5277
 
4519
5278
  msgid "Smart proxy IDs"
4520
- msgstr ""
5279
+ msgstr "스마트 프록시 ID "
4521
5280
 
4522
5281
  msgid "Smart proxy content source not found!"
4523
5282
  msgstr ""
4524
5283
 
4525
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4526
5284
  msgid "Sockets: %s"
4527
5285
  msgstr "소켓: %s"
4528
5286
 
4529
- msgid "Solve Dependencies"
5287
+ msgid "Solution"
4530
5288
  msgstr ""
4531
5289
 
4532
5290
  msgid "Solve RPM dependencies by default on Content View publish, defaults to false"
@@ -4541,19 +5299,76 @@ msgstr ""
4541
5299
  msgid "Some services are not properly started. See the About page for more information."
4542
5300
  msgstr ""
4543
5301
 
4544
- msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
5302
+ msgid "Something went wrong while adding a bookmark: ${getBookmarkErrorMsgs(error.response)}"
5303
+ msgstr ""
5304
+
5305
+ msgid "Something went wrong while adding a filter rule! ${getResponseErrorMsgs(error.response)}"
5306
+ msgstr ""
5307
+
5308
+ msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
5309
+ msgstr ""
5310
+
5311
+ msgid "Something went wrong while adding filter rules! ${getResponseErrorMsgs(error.response)}"
5312
+ msgstr ""
5313
+
5314
+ msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5315
+ msgstr ""
5316
+
5317
+ msgid "Something went wrong while deleting filter rules! ${getResponseErrorMsgs(error.response)}"
5318
+ msgstr ""
5319
+
5320
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5321
+ msgstr ""
5322
+
5323
+ msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
5324
+ msgstr ""
5325
+
5326
+ msgid "Something went wrong while editing a filter rule! ${getResponseErrorMsgs(error.response)}"
5327
+ msgstr ""
5328
+
5329
+ msgid "Something went wrong while editing the filter! ${getResponseErrorMsgs(error.response)}"
5330
+ msgstr ""
5331
+
5332
+ msgid "Something went wrong while editing version details. ${getResponseErrorMsgs(error.response)}"
5333
+ msgstr ""
5334
+
5335
+ msgid "Something went wrong while fetching ${lowerCase(pluralLabel)}! ${getResponseErrorMsgs(error.response)}"
5336
+ msgstr ""
5337
+
5338
+ msgid "Something went wrong while fetching files! ${getResponseErrorMsgs(error.response)}"
5339
+ msgstr ""
5340
+
5341
+ msgid "Something went wrong while fetching rpm packages! ${getResponseErrorMsgs(error.response)}"
5342
+ msgstr ""
5343
+
5344
+ msgid "Something went wrong while getting deb packages! ${getResponseErrorMsgs(error.response)}"
5345
+ msgstr ""
5346
+
5347
+ msgid "Something went wrong while getting docker tags! ${getResponseErrorMsgs(error.response)}"
5348
+ msgstr ""
5349
+
5350
+ msgid "Something went wrong while getting errata! ${getResponseErrorMsgs(error.response)}"
5351
+ msgstr ""
5352
+
5353
+ msgid "Something went wrong while getting module streams! ${getResponseErrorMsgs(error.response)}"
5354
+ msgstr ""
5355
+
5356
+ msgid "Something went wrong while getting repositories! ${getResponseErrorMsgs(error.response)}"
5357
+ msgstr ""
5358
+
5359
+ msgid "Something went wrong while getting version details. ${getResponseErrorMsgs(error.response)}"
4545
5360
  msgstr ""
4546
5361
 
4547
- msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
5362
+ msgid "Something went wrong while removing a filter rule! ${getResponseErrorMsgs(error.response)}"
4548
5363
  msgstr ""
4549
5364
 
4550
- msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
5365
+ msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
4551
5366
  msgstr ""
4552
5367
 
4553
- msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
5368
+ msgid "Something went wrong while retrieving package groups! ${getResponseErrorMsgs(error.response)}"
4554
5369
  msgstr ""
4555
5370
 
4556
- msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
5371
+ msgid "Something went wrong while retrieving the activation keys! ${getResponseErrorMsgs(error.response)}"
4557
5372
  msgstr ""
4558
5373
 
4559
5374
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
@@ -4574,13 +5389,22 @@ msgstr ""
4574
5389
  msgid "Something went wrong while retrieving the content view versions! ${getResponseErrorMsgs(error.response)}"
4575
5390
  msgstr ""
4576
5391
 
5392
+ msgid "Something went wrong while retrieving the hosts! ${getResponseErrorMsgs(error.response)}"
5393
+ msgstr ""
5394
+
4577
5395
  msgid "Something went wrong while retrieving the repository types! ${getResponseErrorMsgs(error.response)}"
4578
5396
  msgstr ""
4579
5397
 
5398
+ msgid "Something went wrong! Please check server logs!"
5399
+ msgstr ""
5400
+
4580
5401
  msgid "Sort field and order, eg. 'id DESC'"
4581
5402
  msgstr ""
4582
5403
 
4583
5404
  msgid "Source RPM"
5405
+ msgstr "소스 RPM"
5406
+
5407
+ msgid "Source RPMs"
4584
5408
  msgstr ""
4585
5409
 
4586
5410
  msgid "Specify an export chunk size less than 1_000_000 GB"
@@ -4593,29 +5417,29 @@ msgid "Split the exported content into archives no greater than the specified si
4593
5417
  msgstr ""
4594
5418
 
4595
5419
  msgid "Stacking ID"
4596
- msgstr ""
5420
+ msgstr "스태킹 ID"
4597
5421
 
4598
- # translation auto-copied from project subscription-manager, version 1.10.10, document keys
4599
5422
  msgid "Start Date"
4600
5423
  msgstr "시작 날짜 "
4601
5424
 
4602
5425
  msgid "Start Date and Time can't be blank"
4603
5426
  msgstr "시작 날짜 및 시간을 비워둘 수 없음 "
4604
5427
 
4605
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author eukim
4606
5428
  msgid "Start Time"
4607
5429
  msgstr "시작 시간 "
4608
5430
 
4609
5431
  msgid "Starts"
4610
- msgstr ""
5432
+ msgstr "시작 "
4611
5433
 
4612
- # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
4613
5434
  msgid "Status"
4614
5435
  msgstr "상태 "
4615
5436
 
4616
- msgid "Storage"
5437
+ msgid "Status must be one of: %s"
4617
5438
  msgstr ""
4618
5439
 
5440
+ msgid "Storage"
5441
+ msgstr "스토리지"
5442
+
4619
5443
  msgid "Stream"
4620
5444
  msgstr ""
4621
5445
 
@@ -4623,12 +5447,11 @@ msgid "Streams based on the host based on their status"
4623
5447
  msgstr ""
4624
5448
 
4625
5449
  msgid "Submit"
4626
- msgstr ""
5450
+ msgstr "보내기"
4627
5451
 
4628
5452
  msgid "Subnet IDs"
4629
- msgstr ""
5453
+ msgstr "서브넷 ID "
4630
5454
 
4631
- # translation auto-copied from project PressGang CCMS topics, version 1, document 30851-704293, author eukim
4632
5455
  msgid "Subscription"
4633
5456
  msgstr "서브스크립션 "
4634
5457
 
@@ -4636,16 +5459,16 @@ msgid "Subscription Allocation"
4636
5459
  msgstr ""
4637
5460
 
4638
5461
  msgid "Subscription Details"
4639
- msgstr ""
5462
+ msgstr "서브스크립션 정보 "
4640
5463
 
4641
5464
  msgid "Subscription ID"
4642
5465
  msgstr "서브스크립션 ID"
4643
5466
 
4644
5467
  msgid "Subscription Info"
4645
- msgstr ""
5468
+ msgstr "서브스크립션 정보 "
4646
5469
 
4647
5470
  msgid "Subscription Manifest"
4648
- msgstr ""
5471
+ msgstr "서브스크립션 매니페스트"
4649
5472
 
4650
5473
  msgid "Subscription Manifest validity check"
4651
5474
  msgstr ""
@@ -4654,7 +5477,7 @@ msgid "Subscription Name"
4654
5477
  msgstr ""
4655
5478
 
4656
5479
  msgid "Subscription Pool id"
4657
- msgstr ""
5480
+ msgstr "서브스크립션 풀 ID"
4658
5481
 
4659
5482
  msgid "Subscription Pool uuid"
4660
5483
  msgstr "서브스크립션 풀 uuid"
@@ -4669,7 +5492,7 @@ msgid "Subscription expiration notification"
4669
5492
  msgstr ""
4670
5493
 
4671
5494
  msgid "Subscription id is nil."
4672
- msgstr ""
5495
+ msgstr "서브스크립션 ID가 nil입니다."
4673
5496
 
4674
5497
  msgid "Subscription identifier"
4675
5498
  msgstr "서브스크립션 id"
@@ -4690,10 +5513,10 @@ msgid "Subscription was not persisted - %{error_message}"
4690
5513
  msgstr ""
4691
5514
 
4692
5515
  msgid "Subscriptions"
4693
- msgstr ""
5516
+ msgstr "서브스크립션 "
4694
5517
 
4695
5518
  msgid "Subscriptions Expiring in 120 Days"
4696
- msgstr ""
5519
+ msgstr "120일 후 서브스크립션 만료"
4697
5520
 
4698
5521
  msgid "Subscriptions expiring soon"
4699
5522
  msgstr ""
@@ -4711,7 +5534,7 @@ msgid "Success"
4711
5534
  msgstr "성공 "
4712
5535
 
4713
5536
  msgid "Successfully added %s Host(s)."
4714
- msgstr ""
5537
+ msgstr "%s개의 호스트를 추가했습니다."
4715
5538
 
4716
5539
  msgid "Successfully added %{count} content host(s) to host collection %{host_collection}."
4717
5540
  msgstr "호스트 컬렉션 %{host_collection}에 %{count} 컨텐츠 호스트를 성공적으로 추가했습니다. "
@@ -4723,7 +5546,7 @@ msgid "Successfully initiated removal of %s product(s)"
4723
5546
  msgstr "%s 제품의 삭제를 성공적으로 시작했습니다 "
4724
5547
 
4725
5548
  msgid "Successfully removed %s Host(s)."
4726
- msgstr ""
5549
+ msgstr "%s개의 호스트를 삭제했습니다."
4727
5550
 
4728
5551
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
4729
5552
  msgstr "호스트 컬렉션 %{host_collection}에서 %{count} 컨텐츠 호스트를 성공적으로 삭제했습니다. "
@@ -4731,17 +5554,15 @@ msgstr "호스트 컬렉션 %{host_collection}에서 %{count} 컨텐츠 호스
4731
5554
  msgid "Successfully synchronized."
4732
5555
  msgstr ""
4733
5556
 
4734
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4735
5557
  msgid "Summary"
4736
5558
  msgstr "요약 "
4737
5559
 
4738
5560
  msgid "Support Type"
4739
- msgstr ""
5561
+ msgstr "지원 유형 "
4740
5562
 
4741
5563
  msgid "Supported Content Types"
4742
5564
  msgstr ""
4743
5565
 
4744
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4745
5566
  msgid "Sync Canceled"
4746
5567
  msgstr "동기화 취소 "
4747
5568
 
@@ -4754,12 +5575,11 @@ msgstr ""
4754
5575
  msgid "Sync Incomplete"
4755
5576
  msgstr "동기화가 완료되지 않았습니다 "
4756
5577
 
4757
- # translation auto-copied from project Red Hat Satellite User Guide, version 6.0, document Using_the_CloudForms_System_Engine_Dashboard
4758
5578
  msgid "Sync Overview"
4759
5579
  msgstr "동기화 개요 "
4760
5580
 
4761
5581
  msgid "Sync Plan"
4762
- msgstr ""
5582
+ msgstr "동기화 계획 "
4763
5583
 
4764
5584
  msgid "Sync Plan: "
4765
5585
  msgstr ""
@@ -4786,7 +5606,7 @@ msgid "Sync a repository"
4786
5606
  msgstr "리포지터리 동기화 "
4787
5607
 
4788
5608
  msgid "Sync all repositories for a product"
4789
- msgstr ""
5609
+ msgstr "제품의 모든 리포지터리 동기화"
4790
5610
 
4791
5611
  msgid "Sync capsule"
4792
5612
  msgstr ""
@@ -4806,6 +5626,9 @@ msgstr "첨부할 동기화 계획 ID "
4806
5626
  msgid "Sync state"
4807
5627
  msgstr ""
4808
5628
 
5629
+ msgid "Synced "
5630
+ msgstr ""
5631
+
4809
5632
  msgid "Synced Content"
4810
5633
  msgstr ""
4811
5634
 
@@ -4815,12 +5638,11 @@ msgstr ""
4815
5638
  msgid "Synchronize"
4816
5639
  msgstr "동기화 "
4817
5640
 
4818
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4819
5641
  msgid "Synchronize Now"
4820
5642
  msgstr "지금 동기화 "
4821
5643
 
4822
5644
  msgid "Synchronize capsule content"
4823
- msgstr ""
5645
+ msgstr "capsule 컨텐츠 동기화"
4824
5646
 
4825
5647
  msgid "Synchronize repository"
4826
5648
  msgstr "리포지터리 동기화 "
@@ -4840,18 +5662,27 @@ msgstr ""
4840
5662
  msgid "Syncing Complete."
4841
5663
  msgstr "동기화를 완료했습니다."
4842
5664
 
5665
+ msgid "Synopsis"
5666
+ msgstr ""
5667
+
4843
5668
  msgid "System Purpose"
4844
5669
  msgstr ""
4845
5670
 
4846
5671
  msgid "System Status"
5672
+ msgstr "시스템 상태 "
5673
+
5674
+ msgid "Tag name"
4847
5675
  msgstr ""
4848
5676
 
4849
5677
  msgid "Tags"
4850
- msgstr ""
5678
+ msgstr "태그"
4851
5679
 
4852
5680
  msgid "Task"
4853
5681
  msgstr ""
4854
5682
 
5683
+ msgid "Task ${task.humanized.action} completed with a result of ${task.result}. ${task.errors ? getErrors(task) : ''}"
5684
+ msgstr ""
5685
+
4855
5686
  msgid "Task ${task.humanized.action} has started."
4856
5687
  msgstr ""
4857
5688
 
@@ -4862,9 +5693,8 @@ msgid "Task detail"
4862
5693
  msgstr ""
4863
5694
 
4864
5695
  msgid "Temporary"
4865
- msgstr ""
5696
+ msgstr "임시"
4866
5697
 
4867
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4868
5698
  msgid "The '%s' environment cannot contain a changeset!"
4869
5699
  msgstr "'%s' 환경에 변경 집합을 포함할 수 없습니다! "
4870
5700
 
@@ -4928,7 +5758,7 @@ msgid ""
4928
5758
  msgstr ""
4929
5759
 
4930
5760
  msgid "The id of the host to alter"
4931
- msgstr ""
5761
+ msgstr "변경할 호스트의 ID"
4932
5762
 
4933
5763
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4934
5764
  msgstr ""
@@ -4957,7 +5787,7 @@ msgid ""
4957
5787
  msgstr ""
4958
5788
 
4959
5789
  msgid "The page you are attempting to access requires selecting a specific organization."
4960
- msgstr ""
5790
+ msgstr "액세스하려는 페이지에서 특정 조직을 선택해야 합니다."
4961
5791
 
4962
5792
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
4963
5793
  msgstr ""
@@ -4986,9 +5816,10 @@ msgstr ""
4986
5816
  msgid "The requested traces were not found for this host"
4987
5817
  msgstr ""
4988
5818
 
4989
- msgid ""
4990
- "The selected kickstart repository is not part of the assigned content view, lifecycle environment,\n"
4991
- " content source, operating system, and architecture"
5819
+ msgid "The selected kickstart repository is not part of the assigned content view, lifecycle environment, content source, operating system, and architecture"
5820
+ msgstr ""
5821
+
5822
+ msgid "The selected/Inherited Content View is not available for this Lifecycle Environment"
4992
5823
  msgstr ""
4993
5824
 
4994
5825
  msgid "The specified organization is in Simple Content Access mode. Attaching subscriptions is disabled"
@@ -5021,7 +5852,6 @@ msgstr ""
5021
5852
  msgid "There are no errata that need to be applied to registered content hosts."
5022
5853
  msgstr "등록된 컨텐츠 호스트에 적용해야 하는 에라타가 없습니다. "
5023
5854
 
5024
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
5025
5855
  msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
5026
5856
  msgstr "활성화된 제품 또는 리포지터리가 없습니다. %{custom} 또는 %{redhat}을(를) 통해 활성화합니다."
5027
5857
 
@@ -5040,9 +5870,12 @@ msgstr ""
5040
5870
  msgid "There was a problem retrieving Activation Key data from the server."
5041
5871
  msgstr ""
5042
5872
 
5043
- msgid "There was an issue with the backend service %s: "
5873
+ msgid "There was an error retrieving data from the server. Check your connection and try again."
5044
5874
  msgstr ""
5045
5875
 
5876
+ msgid "There was an issue with the backend service %s: "
5877
+ msgstr "백엔드 서비스 %s에 문제가 있습니다: "
5878
+
5046
5879
  msgid "There's no running synchronization for this smart proxy."
5047
5880
  msgstr ""
5048
5881
 
@@ -5056,6 +5889,9 @@ msgid "This Organization's subscription manifest has expired. Please import a ne
5056
5889
  msgstr ""
5057
5890
 
5058
5891
  msgid "This action doesn't support package groups"
5892
+ msgstr "이 작업은 패키지 그룹을 지원하지 않습니다."
5893
+
5894
+ msgid "This action should only be taken in extreme circumstances or for debugging purposes."
5059
5895
  msgstr ""
5060
5896
 
5061
5897
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
@@ -5064,9 +5900,30 @@ msgstr ""
5064
5900
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
5065
5901
  msgstr "이 인증서를 통해 사용자는 브라우저에서 모든 환경에 있는 리포지터리를 볼 수 있습니다."
5066
5902
 
5903
+ msgid "This content view does not have any versions associated."
5904
+ msgstr ""
5905
+
5067
5906
  msgid "This content view version doesn't have a history."
5068
5907
  msgstr ""
5069
5908
 
5909
+ msgid "This content view will be automatically updated to the latest version."
5910
+ msgstr ""
5911
+
5912
+ msgid "This content view will be deleted. Changes will be effective after clicking Delete."
5913
+ msgstr ""
5914
+
5915
+ msgid "This erratum is not installable because it is not in this host's content view and lifecycle environment."
5916
+ msgstr ""
5917
+
5918
+ msgid "This host currently does not have traces."
5919
+ msgstr ""
5920
+
5921
+ msgid "This host does not have any installable errata."
5922
+ msgstr ""
5923
+
5924
+ msgid "This host does not have any packages."
5925
+ msgstr ""
5926
+
5070
5927
  msgid "This host's organization is in Simple Content Access mode. Attaching subscriptions is disabled."
5071
5928
  msgstr ""
5072
5929
 
@@ -5094,10 +5951,13 @@ msgstr ""
5094
5951
  msgid "This is not a linked repository"
5095
5952
  msgstr ""
5096
5953
 
5954
+ 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}."
5955
+ msgstr ""
5956
+
5097
5957
  msgid "This repository is not suggested. Please see additional %(anchorBegin)sdocumentation%(anchorEnd)s prior to use."
5098
5958
  msgstr ""
5099
5959
 
5100
- msgid "This request may only be performed on a Smart proxy that has the Pulp Node feature."
5960
+ msgid "This request may only be performed on a Smart proxy that has the Pulpcore feature with mirror=true."
5101
5961
  msgstr ""
5102
5962
 
5103
5963
  msgid "This service is available for unauthenticated users"
@@ -5112,19 +5972,33 @@ msgstr ""
5112
5972
  msgid "This subscription is not relevant to the current organization."
5113
5973
  msgstr ""
5114
5974
 
5115
- msgid "Time in seconds to wait for a Host to finish a remote action"
5975
+ msgid "This version has not been promoted to any environments."
5116
5976
  msgstr ""
5117
5977
 
5118
- msgid "Time in seconds to wait for a Host to pickup a remote action"
5978
+ msgid "This version is not promoted to any environments."
5979
+ msgstr ""
5980
+
5981
+ msgid "This version will be removed from:"
5982
+ msgstr ""
5983
+
5984
+ 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."
5985
+ msgstr ""
5986
+
5987
+ msgid "Time in minutes to consider orphan content as orphaned."
5119
5988
  msgstr ""
5120
5989
 
5990
+ msgid "Time in seconds to wait for a Host to finish a remote action"
5991
+ msgstr "호스트가 원격 작업을 마칠 때까지 기다리는 시간(초)"
5992
+
5993
+ msgid "Time in seconds to wait for a Host to pickup a remote action"
5994
+ msgstr "호스트가 원격 작업을 시작할 때까지 기다리는 시간(초)"
5995
+
5121
5996
  msgid "Timeout when refreshing a manifest (in seconds)"
5122
5997
  msgstr ""
5123
5998
 
5124
5999
  msgid "Timestamp"
5125
6000
  msgstr ""
5126
6001
 
5127
- # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
5128
6002
  msgid "Title"
5129
6003
  msgstr "제목"
5130
6004
 
@@ -5137,39 +6011,69 @@ msgstr ""
5137
6011
  msgid "Total timeout in seconds for connections when syncing"
5138
6012
  msgstr ""
5139
6013
 
6014
+ msgid "Tracer helps administrators identify applications that need to be restarted after a system is patched."
6015
+ msgstr ""
6016
+
5140
6017
  msgid "Tracer profile uploaded successfully"
5141
6018
  msgstr ""
5142
6019
 
5143
6020
  msgid "Traces"
5144
6021
  msgstr ""
5145
6022
 
5146
- msgid "Trigger an auto-attach of subscriptions"
6023
+ msgid "Traces are not enabled"
6024
+ msgstr ""
6025
+
6026
+ msgid "Traces help administrators identify applications that need to be restarted after a system is patched."
5147
6027
  msgstr ""
5148
6028
 
6029
+ msgid "Traces that require logout cannot be restarted remotely"
6030
+ msgstr ""
6031
+
6032
+ msgid "Trigger an auto-attach of subscriptions"
6033
+ msgstr "서브스크립션 자동 첨부 트리거"
6034
+
5149
6035
  msgid "Trigger an auto-attach of subscriptions on one or more hosts"
5150
6036
  msgstr ""
5151
6037
 
6038
+ msgid "Try changing your search criteria."
6039
+ msgstr ""
6040
+
6041
+ msgid "Try changing your search query."
6042
+ msgstr ""
6043
+
5152
6044
  msgid "Try changing your search settings."
5153
6045
  msgstr ""
5154
6046
 
5155
6047
  msgid "Trying to cancel the synchronization..."
5156
- msgstr ""
6048
+ msgstr "동기화를 취소하는 중..."
5157
6049
 
5158
6050
  msgid "Type"
5159
6051
  msgstr ""
5160
6052
 
6053
+ msgid "Type must be one of: %s"
6054
+ msgstr ""
6055
+
5161
6056
  msgid "Type of content"
5162
6057
  msgstr ""
5163
6058
 
5164
6059
  msgid "Type of content: \"cert\", \"gpg_key\""
5165
6060
  msgstr ""
5166
6061
 
6062
+ msgid "URL"
6063
+ msgstr ""
6064
+
5167
6065
  msgid "URL needs to have a trailing /"
5168
6066
  msgstr ""
5169
6067
 
5170
- msgid "UUID"
6068
+ msgid "URL of a PyPI content source such as https://pypi.org."
6069
+ msgstr ""
6070
+
6071
+ msgid "URL of an OSTree repository."
5171
6072
  msgstr ""
5172
6073
 
6074
+ msgid "UUID"
6075
+ msgstr "UUID"
6076
+
5173
6077
  msgid "UUID of the consumer"
5174
6078
  msgstr ""
5175
6079
 
@@ -5185,11 +6089,14 @@ msgstr ""
5185
6089
  msgid "UUIDs of the virtual guests from the host's hypervisor"
5186
6090
  msgstr ""
5187
6091
 
5188
- msgid "Unable to connect. Got: %s"
6092
+ msgid "Unable to connect"
5189
6093
  msgstr ""
5190
6094
 
6095
+ msgid "Unable to connect. Got: %s"
6096
+ msgstr "연결할 수 없습니다. 오류 메시지: %s"
6097
+
5191
6098
  msgid "Unable to detect pulp storage"
5192
- msgstr ""
6099
+ msgstr "pulp 스토리지를 감지할 수 없습니다."
5193
6100
 
5194
6101
  msgid "Unable to detect puppet path"
5195
6102
  msgstr ""
@@ -5219,7 +6126,7 @@ msgid "Unable to send errata e-mail notification: %{error}"
5219
6126
  msgstr ""
5220
6127
 
5221
6128
  msgid "Unable to sync repo. This repository does not have a feed url."
5222
- msgstr ""
6129
+ msgstr "리포지터리를 동기화할 수 없습니다. 이 리포지터리에는 피드 URL이 없습니다."
5223
6130
 
5224
6131
  msgid "Unable to synchronize any repository. You either do not have the permission to synchronize or the selected repositories do not have a feed url."
5225
6132
  msgstr "리포지터리를 동기화할 수 없습니다. 동기화할 권한이 없거나 선택한 리포지터리에 피드 URL이 없을 수 있습니다. "
@@ -5240,7 +6147,7 @@ msgid "Unattach a subscription"
5240
6147
  msgstr "서브스크립션 할당 해제 "
5241
6148
 
5242
6149
  msgid "Unentitled"
5243
- msgstr ""
6150
+ msgstr "인타이틀먼트가 없음"
5244
6151
 
5245
6152
  msgid "Unfiltered params array: %s."
5246
6153
  msgstr ""
@@ -5248,7 +6155,6 @@ msgstr ""
5248
6155
  msgid "Uninstall packages remotely using katello-agent. %s"
5249
6156
  msgstr ""
5250
6157
 
5251
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
5252
6158
  msgid "Unknown"
5253
6159
  msgstr "알 수 없음 "
5254
6160
 
@@ -5256,19 +6162,19 @@ msgid "Unknown Action"
5256
6162
  msgstr ""
5257
6163
 
5258
6164
  msgid "Unknown errata status"
5259
- msgstr ""
6165
+ msgstr "알 수 없는 에라타 상태"
5260
6166
 
5261
6167
  msgid "Unknown or Unregistered"
5262
6168
  msgstr ""
5263
6169
 
5264
6170
  msgid "Unknown subscription status"
5265
- msgstr ""
6171
+ msgstr "알 수 없는 서브스크립션 상태"
5266
6172
 
5267
6173
  msgid "Unknown traces status"
5268
6174
  msgstr ""
5269
6175
 
5270
6176
  msgid "Unlimited"
5271
- msgstr ""
6177
+ msgstr "제한 없음 "
5272
6178
 
5273
6179
  msgid "Unregister host %s before assigning an organization"
5274
6180
  msgstr ""
@@ -5285,16 +6191,24 @@ msgstr ""
5285
6191
  msgid "Unsubscribed hypervisor"
5286
6192
  msgstr ""
5287
6193
 
5288
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
6194
+ msgid "Unsupported CDN resource"
6195
+ msgstr ""
6196
+
5289
6197
  msgid "Unsupported URL protocol %s."
5290
6198
  msgstr "지원되지 않는 URL 프로토콜 %s입니다."
5291
6199
 
5292
6200
  msgid "Unsupported event type %{type}. Supported: %{types}"
5293
6201
  msgstr ""
5294
6202
 
6203
+ msgid "Up-to date"
6204
+ msgstr ""
6205
+
5295
6206
  msgid "Update"
5296
6207
  msgstr "업데이트"
5297
6208
 
6209
+ msgid "Update CDN Configuration"
6210
+ msgstr ""
6211
+
5298
6212
  msgid "Update Content Overrides"
5299
6213
  msgstr ""
5300
6214
 
@@ -5344,10 +6258,10 @@ msgid "Update content urls"
5344
6258
  msgstr ""
5345
6259
 
5346
6260
  msgid "Update for host"
5347
- msgstr ""
6261
+ msgstr "호스트에 대한 업데이트"
5348
6262
 
5349
6263
  msgid "Update for host %s"
5350
- msgstr ""
6264
+ msgstr "%s 호스트에 대한 업데이트"
5351
6265
 
5352
6266
  msgid "Update http proxy"
5353
6267
  msgstr ""
@@ -5394,6 +6308,9 @@ msgstr ""
5394
6308
  msgid "Update services requiring restart"
5395
6309
  msgstr ""
5396
6310
 
6311
+ msgid "Update the CDN configuration"
6312
+ msgstr ""
6313
+
5397
6314
  msgid "Update the HTTP proxy configuration on the repositories of one or more products."
5398
6315
  msgstr ""
5399
6316
 
@@ -5407,7 +6324,7 @@ msgid "Update version"
5407
6324
  msgstr ""
5408
6325
 
5409
6326
  msgid "Updated"
5410
- msgstr ""
6327
+ msgstr "업데이트 일시 "
5411
6328
 
5412
6329
  msgid "Updated component details"
5413
6330
  msgstr ""
@@ -5436,7 +6353,19 @@ msgstr "패키지 그룹 업데이트 중..."
5436
6353
  msgid "Updating repository authentication configuration"
5437
6354
  msgstr ""
5438
6355
 
5439
- msgid "Updating..."
6356
+ msgid "Upgradable"
6357
+ msgstr ""
6358
+
6359
+ msgid "Upgradable To"
6360
+ msgstr ""
6361
+
6362
+ msgid "Upgrade"
6363
+ msgstr ""
6364
+
6365
+ msgid "Upgrade via customized remote execution"
6366
+ msgstr ""
6367
+
6368
+ msgid "Upgrade via remote execution"
5440
6369
  msgstr ""
5441
6370
 
5442
6371
  msgid "Upload Content Credential contents"
@@ -5454,6 +6383,9 @@ msgstr "컨텐츠를 리포지터리에 업로드 "
5454
6383
  msgid "Upload into"
5455
6384
  msgstr "업로드 "
5456
6385
 
6386
+ msgid "Upload profiles without Dynflow"
6387
+ msgstr ""
6388
+
5457
6389
  msgid "Upload request id"
5458
6390
  msgstr "요청 ID 업로드 "
5459
6391
 
@@ -5463,12 +6395,30 @@ msgstr ""
5463
6395
  msgid "Upstream identity certificate not available"
5464
6396
  msgstr "업스트림 ID 인증서를 사용할 수 없습니다 "
5465
6397
 
6398
+ msgid "Upstream organization %s does not provide this content path"
6399
+ msgstr ""
6400
+
6401
+ msgid "Upstream organization %{org_label} does not have a content view with the label %{cv_label}"
6402
+ msgstr ""
6403
+
6404
+ msgid "Upstream organization %{org_label} does not have a lifecycle environment with the label %{lce_label}"
6405
+ msgstr ""
6406
+
6407
+ msgid "Upstream organization to sync CDN content from"
6408
+ msgstr ""
6409
+
5466
6410
  msgid "Upstream password requires upstream username be set."
5467
6411
  msgstr ""
5468
6412
 
6413
+ msgid "Upstream server to sync CDN content from"
6414
+ msgstr ""
6415
+
5469
6416
  msgid "Upstream username and password may only be set on custom repositories."
5470
6417
  msgstr ""
5471
6418
 
6419
+ msgid "Upstream username and upstream password cannot be blank for ULN repositories"
6420
+ msgstr ""
6421
+
5472
6422
  msgid "Upstream username requires upstream password be set."
5473
6423
  msgstr ""
5474
6424
 
@@ -5488,7 +6438,7 @@ msgid "Used to determine download concurrency of the repository in pulp3. Use va
5488
6438
  msgstr ""
5489
6439
 
5490
6440
  msgid "User"
5491
- msgstr ""
6441
+ msgstr "사용자 "
5492
6442
 
5493
6443
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5494
6444
  msgstr "사용자 '%s'는 조직 ID를 지정하지 않았기 때문에 기본 조직이 없습니다. "
@@ -5497,20 +6447,32 @@ msgid "User '%{user}' does not belong to Organization '%{organization}'."
5497
6447
  msgstr "사용자 '%{user}'는 조직 '%{organization}'에 속해 있지 않습니다. "
5498
6448
 
5499
6449
  msgid "User IDs"
5500
- msgstr ""
6450
+ msgstr "사용자 ID"
5501
6451
 
5502
6452
  msgid "User must be logged in."
5503
6453
  msgstr "사용자는 로그인해야 합니다. "
5504
6454
 
6455
+ msgid "Username"
6456
+ msgstr ""
6457
+
6458
+ msgid "Username for authentication"
6459
+ msgstr ""
6460
+
5505
6461
  msgid "Username of the upstream repository user used for authentication"
5506
6462
  msgstr ""
5507
6463
 
5508
6464
  msgid "Username to access URL"
5509
6465
  msgstr ""
5510
6466
 
5511
- msgid "Valid"
6467
+ msgid "Username, Password, Organization Label, and SSL CA Content Credential must be provided together."
6468
+ msgstr ""
6469
+
6470
+ msgid "Username, Password, Upstream Organization Label, and SSL CA Credential are required when using a non-Red Hat CDN."
5512
6471
  msgstr ""
5513
6472
 
6473
+ msgid "Valid"
6474
+ msgstr "유효 "
6475
+
5514
6476
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5515
6477
  msgstr ""
5516
6478
 
@@ -5524,7 +6486,7 @@ msgid "Verify checksum of repository contents"
5524
6486
  msgstr ""
5525
6487
 
5526
6488
  msgid "Version"
5527
- msgstr ""
6489
+ msgstr "버전 "
5528
6490
 
5529
6491
  msgid "Version "
5530
6492
  msgstr ""
@@ -5532,23 +6494,54 @@ msgstr ""
5532
6494
  msgid "Version ${item.version}"
5533
6495
  msgstr ""
5534
6496
 
5535
- msgid "Versions"
6497
+ msgid "Version ${version.version}"
6498
+ msgstr ""
6499
+
6500
+ msgid "Version ${versionNameToRemove} will be deleted from all environments. It will no longer be available for promotion."
6501
+ msgstr ""
6502
+
6503
+ msgid "Version ${versionNameToRemove} will be deleted from the listed environments. It will no longer be available for promotion."
6504
+ msgstr ""
6505
+
6506
+ msgid "Version details updated."
6507
+ msgstr ""
6508
+
6509
+ msgid "Version in use"
5536
6510
  msgstr ""
5537
6511
 
6512
+ msgid "Versions"
6513
+ msgstr "버전 "
6514
+
5538
6515
  msgid "Versions will appear here when the content view is published."
5539
6516
  msgstr ""
5540
6517
 
5541
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
5542
6518
  msgid "View %{view} has not been promoted to %{env}"
5543
6519
  msgstr "보기 %{view}가 %{env}에 승격되었습니다"
5544
6520
 
5545
6521
  msgid "View a report of the affected hosts"
5546
6522
  msgstr ""
5547
6523
 
5548
- # translation auto-copied from project nm-applet, version 0.8.1, document nm-applet, author eukim
6524
+ msgid "View matching content"
6525
+ msgstr ""
6526
+
5549
6527
  msgid "Virtual"
5550
6528
  msgstr "가상 "
5551
6529
 
6530
+ msgid "Visit the previous Packages page"
6531
+ msgstr ""
6532
+
6533
+ msgid "Waiting to start."
6534
+ msgstr ""
6535
+
6536
+ msgid "Warning"
6537
+ msgstr ""
6538
+
6539
+ msgid "When \"Releases/Distributions\" is set, \"Upstream URL\" must also be set!"
6540
+ msgstr ""
6541
+
6542
+ msgid "When \"Upstream URL\" is set, \"Releases/Distributions\" must also be set!"
6543
+ msgstr ""
6544
+
5552
6545
  msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5553
6546
  msgstr ""
5554
6547
 
@@ -5556,19 +6549,19 @@ msgid "When registering a host via subscription-manager, force use the specified
5556
6549
  msgstr ""
5557
6550
 
5558
6551
  msgid "When set to 'True' repository types that are creatable will be returned"
5559
- msgstr ""
6552
+ msgstr "'True'로 설정할 경우 생성 가능한 리포지터리 유형이 반환됩니다."
5560
6553
 
5561
6554
  msgid "When unregistering a host via subscription-manager, also delete the host record. Managed resources linked to host such as virtual machines and DNS records may also be deleted."
5562
6555
  msgstr ""
5563
6556
 
5564
6557
  msgid "Whether or not the host collection may have unlimited hosts"
5565
- msgstr ""
6558
+ msgstr "호스트 컬렉션에 호스트가 무제한 포함되는지 여부"
5566
6559
 
5567
6560
  msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
5568
6561
  msgstr ""
5569
6562
 
5570
6563
  msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
5571
- msgstr ""
6564
+ msgstr "일부 작업을 수행하기 전에 pulp 및 candlepin와 같은 백엔드 서비스의 상태를 확인할지 여부입니다."
5572
6565
 
5573
6566
  msgid "Whether or not to regenerate the repository on disk. Default: true"
5574
6567
  msgstr ""
@@ -5580,10 +6573,10 @@ msgid "Whether or not to sync an external capsule after upload. Default: true"
5580
6573
  msgstr ""
5581
6574
 
5582
6575
  msgid "Whether to include available content attribute in results"
5583
- msgstr ""
6576
+ msgstr "사용 가능한 컨텐츠 속성을 결과에 포함할지 여부"
5584
6577
 
5585
6578
  msgid "Workers"
5586
- msgstr ""
6579
+ msgstr "Worker"
5587
6580
 
5588
6581
  msgid "Wrong content type submitted."
5589
6582
  msgstr ""
@@ -5592,7 +6585,7 @@ msgid "Yay empty state"
5592
6585
  msgstr ""
5593
6586
 
5594
6587
  msgid "Yes"
5595
- msgstr ""
6588
+ msgstr ""
5596
6589
 
5597
6590
  msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
5598
6591
  msgstr ""
@@ -5607,7 +6600,7 @@ msgid "You can check sync status for repositories only in the library lifecycle
5607
6600
  msgstr "라이브러리에 있는 라이프 사이클 환경에서만 리포지터리의 동기화 상태를 확인할 수 있습니다. "
5608
6601
 
5609
6602
  msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
5610
- msgstr ""
6603
+ msgstr "호스트 컬렉션 '%{host_collection}'에 %{max_hosts}개보다 많은 호스트를 연결할 수 없습니다."
5611
6604
 
5612
6605
  msgid "You cannot set an organization's parent. This feature is disabled."
5613
6606
  msgstr "조직의 부모를 설정할 수 없습니다. 이 기능은 비활성화되어 있습니다. "
@@ -5615,7 +6608,10 @@ msgstr "조직의 부모를 설정할 수 없습니다. 이 기능은 비활성
5615
6608
  msgid "You cannot set an organization's parent_id. This feature is disabled."
5616
6609
  msgstr "조직의 parent_id를 설정할 수 없습니다. 이 기능은 비활성화되어 있습니다. "
5617
6610
 
5618
- msgid "You currently don't have any Content Views."
6611
+ msgid "You currently don't have any ${selectedContentType}."
6612
+ msgstr ""
6613
+
6614
+ msgid "You currently don't have any Content views."
5619
6615
  msgstr ""
5620
6616
 
5621
6617
  msgid "You currently don't have any filters for this content view."
@@ -5624,12 +6620,21 @@ msgstr ""
5624
6620
  msgid "You currently don't have any history for this content view."
5625
6621
  msgstr ""
5626
6622
 
6623
+ msgid "You currently don't have any repositories associated with this content."
6624
+ msgstr ""
6625
+
5627
6626
  msgid "You currently don't have any repositories to add to this content view."
5628
6627
  msgstr ""
5629
6628
 
6629
+ msgid "You currently don't have any repositories to add to this filter."
6630
+ msgstr ""
6631
+
5630
6632
  msgid "You currently don't have any versions for this content view."
5631
6633
  msgstr ""
5632
6634
 
6635
+ msgid "You currently don\\'t have any related content views."
6636
+ msgstr ""
6637
+
5633
6638
  msgid "You do not have permissions to delete %s"
5634
6639
  msgstr "%s을(를) 삭제할 권한이 없습니다 "
5635
6640
 
@@ -5660,10 +6665,25 @@ msgstr ""
5660
6665
  msgid "Your search query was invalid. Please revise it and try again. The full error has been sent to the application logs."
5661
6666
  msgstr ""
5662
6667
 
6668
+ msgid "Your search returned no matching "
6669
+ msgstr ""
6670
+
6671
+ msgid "Your search returned no matching RPMs."
6672
+ msgstr ""
6673
+
6674
+ msgid "Your search returned no matching activation keys."
6675
+ msgstr ""
6676
+
6677
+ msgid "Your search returned no matching hosts."
6678
+ msgstr ""
6679
+
5663
6680
  msgid "Yum Metadata: %s"
6681
+ msgstr "Yum 메타데이터: %s"
6682
+
6683
+ msgid "a content unit"
5664
6684
  msgstr ""
5665
6685
 
5666
- msgid "a deb"
6686
+ msgid "a deb package"
5667
6687
  msgstr ""
5668
6688
 
5669
6689
  msgid "a docker manifest"
@@ -5706,6 +6726,9 @@ msgid "add all module streams without errata to the included/excluded list. (mod
5706
6726
  msgstr ""
5707
6727
 
5708
6728
  msgid "add all packages without errata to the included/excluded list. (package filter only)"
6729
+ msgstr "모든 패키지를 에라타 없이 포함/제외된 목록에 추가합니다(패키지 필터만 해당)."
6730
+
6731
+ msgid "all environments"
5709
6732
  msgstr ""
5710
6733
 
5711
6734
  msgid "all packages"
@@ -5735,14 +6758,11 @@ msgstr "에라타"
5735
6758
  msgid "an organization"
5736
6759
  msgstr "조직 "
5737
6760
 
5738
- msgid "an ostree branch"
5739
- msgstr ""
5740
-
5741
6761
  msgid "are only allowed for Yum repositories."
5742
6762
  msgstr ""
5743
6763
 
5744
6764
  msgid "attempted to sync without a feed URL"
5745
- msgstr ""
6765
+ msgstr "피드 URL 없이 동기화를 시도했습니다."
5746
6766
 
5747
6767
  msgid "auto attach subscriptions upon registration"
5748
6768
  msgstr "등록 시 서브스크립션을 자동으로 첨부 "
@@ -5750,6 +6770,12 @@ msgstr "등록 시 서브스크립션을 자동으로 첨부 "
5750
6770
  msgid "base url to perform repo discovery on"
5751
6771
  msgstr "리포지터리 검색을 실행하기 위한 기본 url "
5752
6772
 
6773
+ msgid "bulk add filter rules"
6774
+ msgstr ""
6775
+
6776
+ msgid "bulk delete filter rules"
6777
+ msgstr ""
6778
+
5753
6779
  msgid "can the activation key have unlimited hosts"
5754
6780
  msgstr ""
5755
6781
 
@@ -5762,7 +6788,6 @@ msgstr ""
5762
6788
  msgid "cannot be a binary file."
5763
6789
  msgstr "바이너리 파일을 지정할 수 없습니다. "
5764
6790
 
5765
- # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
5766
6791
  msgid "cannot be blank"
5767
6792
  msgstr "빈 칸으로 비워 둘 수 없습니다 "
5768
6793
 
@@ -5787,11 +6812,8 @@ msgstr "nil이 될 수 없습니다 "
5787
6812
  msgid "cannot be set because unlimited hosts is set"
5788
6813
  msgstr ""
5789
6814
 
5790
- msgid "cannot be set for non-ostree repositories."
5791
- msgstr ""
5792
-
5793
6815
  msgid "cannot be set for non-yum repositories."
5794
- msgstr ""
6816
+ msgstr "비yum 리포지터리에 대해 설정할 수 없습니다."
5795
6817
 
5796
6818
  msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
5797
6819
  msgstr "ASCII 영숫자, '_', '-' 이외의 문자를 포함할 수 없습니다."
@@ -5805,15 +6827,14 @@ msgstr "복합적인 뷰의 경우 필터를 포함할 수 없습니다 "
5805
6827
  msgid "cannot contain filters whose repositories do not belong to this content view"
5806
6828
  msgstr "컨텐츠 뷰에 속하지 않는 리포지터리의 필터를 포함할 수 없습니다 "
5807
6829
 
5808
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
5809
6830
  msgid "cannot contain more than %s characters"
5810
6831
  msgstr "%s 자 이상을 포함시킬 수 없습니다 "
5811
6832
 
5812
6833
  msgid "checking Candlepin task status"
5813
- msgstr ""
6834
+ msgstr "Candlepin 태스크 상태를 확인하는 중"
5814
6835
 
5815
6836
  msgid "checking Pulp task status"
5816
- msgstr ""
6837
+ msgstr "Pulp 태스크 상태를 확인하는 중"
5817
6838
 
5818
6839
  msgid "composite content view identifier"
5819
6840
  msgstr ""
@@ -5830,6 +6851,9 @@ msgstr "컨텐츠 릴리즈 버전 "
5830
6851
  msgid "content type ('deb', 'docker_manifest', 'file', 'ostree', 'rpm', 'srpm')"
5831
6852
  msgstr ""
5832
6853
 
6854
+ msgid "content type ('deb', 'docker_manifest', 'file', 'ostree_ref', 'rpm', 'srpm')"
6855
+ msgstr ""
6856
+
5833
6857
  msgid "content view component ID. Identifier of the component association"
5834
6858
  msgstr ""
5835
6859
 
@@ -5876,7 +6900,7 @@ msgid "content view versions to compare"
5876
6900
  msgstr "비교할 컨텐츠 뷰 버전 "
5877
6901
 
5878
6902
  msgid "create a filter for a content view"
5879
- msgstr ""
6903
+ msgstr "컨텐츠 뷰의 필터 생성"
5880
6904
 
5881
6905
  msgid "deb Packages"
5882
6906
  msgstr ""
@@ -5888,9 +6912,11 @@ msgid "default package names to include in the package group"
5888
6912
  msgstr ""
5889
6913
 
5890
6914
  msgid "delete a filter"
6915
+ msgstr "필터 삭제"
6916
+
6917
+ msgid "delete the content view with all the versions and environments"
5891
6918
  msgstr ""
5892
6919
 
5893
- # translation auto-copied from project anaconda, version 19.31.34, document anaconda
5894
6920
  msgid "description"
5895
6921
  msgstr "설명 "
5896
6922
 
@@ -5952,7 +6978,7 @@ msgid "erratum: id"
5952
6978
  msgstr "에라타: ID "
5953
6979
 
5954
6980
  msgid "erratum: search using the 'Issued On' or 'Updated On' column of the errata. Values are 'issued'/'updated'"
5955
- msgstr ""
6981
+ msgstr "에라타: 에라타의 '발급 날짜' 또는 '업데이트 날짜' 열을 사용하여 검색합니다. 값이 '발급'/'업데이트'되었습니다."
5956
6982
 
5957
6983
  msgid "erratum: start date (YYYY-MM-DD)"
5958
6984
  msgstr "에라타: 시작일 (YYYY-MM-DD) "
@@ -5970,7 +6996,7 @@ msgid "filter by sync date"
5970
6996
  msgstr "동기화 날짜에 따라 필터링 "
5971
6997
 
5972
6998
  msgid "filter content view filters by name"
5973
- msgstr ""
6999
+ msgstr "이름별로 컨텐츠 뷰 필터링"
5974
7000
 
5975
7001
  msgid "filter identifier"
5976
7002
  msgstr "필터 ID "
@@ -5988,18 +7014,17 @@ msgid "force content view promotion and bypass lifecycle environment restriction
5988
7014
  msgstr "컨텐츠 뷰 승격 강제 및 라이프 사이클 환경 제한을 무시 "
5989
7015
 
5990
7016
  msgid "foreman-tasks service not running or is not ready yet"
5991
- msgstr ""
7017
+ msgstr "foreman-tasks 서비스가 실행 중이 아니거나 아직 준비되지 않았습니다."
5992
7018
 
5993
7019
  msgid "has already been taken"
5994
7020
  msgstr "이미 사용되고 있습니다"
5995
7021
 
5996
7022
  msgid "has already been taken for a product in this organization."
5997
- msgstr ""
7023
+ msgstr "이 조직의 제품에 대해 이미 사용되고 있습니다."
5998
7024
 
5999
7025
  msgid "has already been taken for this product."
6000
7026
  msgstr "제품에 대해 이미 사용되고 있습니다. "
6001
7027
 
6002
- # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
6003
7028
  msgid "here"
6004
7029
  msgstr "여기 "
6005
7030
 
@@ -6013,7 +7038,7 @@ msgid "how often synchronization should run"
6013
7038
  msgstr "동기화 실행 빈도 "
6014
7039
 
6015
7040
  msgid "id of a host"
6016
- msgstr ""
7041
+ msgstr "호스트 ID"
6017
7042
 
6018
7043
  msgid "id of host"
6019
7044
  msgstr ""
@@ -6027,17 +7052,14 @@ msgstr ""
6027
7052
  msgid "ids to filter content by"
6028
7053
  msgstr "컨텐츠 필터링에 사용할 ID"
6029
7054
 
6030
- msgid "if a custom sync policy is chosen for ostree repositories then a 'depth' value must be provided"
6031
- msgstr ""
6032
-
6033
7055
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
6034
7056
  msgstr ""
6035
7057
 
6036
7058
  msgid "initiating Candlepin task"
6037
- msgstr ""
7059
+ msgstr "Candlepin 태스크를 시작하는 중"
6038
7060
 
6039
7061
  msgid "initiating Pulp task"
6040
- msgstr ""
7062
+ msgstr "Pulp 태스크를 시작하는 중"
6041
7063
 
6042
7064
  msgid "installing errata..."
6043
7065
  msgstr "에라타 설치 중..."
@@ -6088,7 +7110,7 @@ msgid "limit to only repositories with this download policy"
6088
7110
  msgstr ""
6089
7111
 
6090
7112
  msgid "list filters"
6091
- msgstr ""
7113
+ msgstr "필터 나열"
6092
7114
 
6093
7115
  msgid "list of packages names"
6094
7116
  msgstr "패키지 이름 목록 "
@@ -6103,13 +7125,13 @@ msgid "mandatory package names to include in the package group"
6103
7125
  msgstr ""
6104
7126
 
6105
7127
  msgid "max_hosts must be given a value if this host collection is not unlimited."
6106
- msgstr ""
7128
+ msgstr "무제한 호스트 컬렉션이 아닌 경우 max_hosts에 값을 지정해야 합니다."
6107
7129
 
6108
7130
  msgid "maximum number of registered content hosts"
6109
7131
  msgstr "등록된 최대 컨텐츠 호스트 수 "
6110
7132
 
6111
7133
  msgid "may not be less than the number of hosts associated with the host collection."
6112
- msgstr ""
7134
+ msgstr "호스트 컬렉션에 연결된 호스트의 수보다 적을 수 없습니다."
6113
7135
 
6114
7136
  msgid "module stream ids"
6115
7137
  msgstr ""
@@ -6132,7 +7154,6 @@ msgstr ""
6132
7154
  msgid "must be unique within one organization"
6133
7155
  msgstr "하나의 조직 내에서 고유한 것이어야 함 "
6134
7156
 
6135
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
6136
7157
  msgid "must contain '%s'"
6137
7158
  msgstr "'%s'을 포함해야 합니다"
6138
7159
 
@@ -6188,7 +7209,7 @@ msgid "new name to be given to the environment"
6188
7209
  msgstr "환경에 지정할 새 이름 "
6189
7210
 
6190
7211
  msgid "no"
6191
- msgstr ""
7212
+ msgstr "no"
6192
7213
 
6193
7214
  msgid "no global default"
6194
7215
  msgstr ""
@@ -6196,7 +7217,6 @@ msgstr ""
6196
7217
  msgid "obtain manifest history for subscriptions"
6197
7218
  msgstr "서브스크립션의 매니페스트 기록 취득 "
6198
7219
 
6199
- # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
6200
7220
  msgid "of environment must be unique within one organization"
6201
7221
  msgstr "환경 이름은 하나의 조직 내에서 고유한 것이어야 합니다 "
6202
7222
 
@@ -6257,9 +7277,6 @@ msgstr ""
6257
7277
  msgid "policies for HTTP proxy for content sync"
6258
7278
  msgstr ""
6259
7279
 
6260
- msgid "policies for syncing upstream ostree repositories"
6261
- msgstr ""
6262
-
6263
7280
  msgid "policy for HTTP proxy for content sync"
6264
7281
  msgstr ""
6265
7282
 
@@ -6299,9 +7316,6 @@ msgstr "리포지터리 Id "
6299
7316
  msgid "repository source url"
6300
7317
  msgstr "리포지터리 소스 Url"
6301
7318
 
6302
- msgid "repository url"
6303
- msgstr "리포지터리 Url"
6304
-
6305
7319
  msgid "repository_id"
6306
7320
  msgstr ""
6307
7321
 
@@ -6326,20 +7340,23 @@ msgstr ""
6326
7340
  msgid "set true if you want to see only library environments"
6327
7341
  msgstr "라이브러리 환경만 확인하려면 true로 설정"
6328
7342
 
7343
+ msgid "sha256"
7344
+ msgstr ""
7345
+
6329
7346
  msgid "show archived repositories"
6330
7347
  msgstr ""
6331
7348
 
6332
7349
  msgid "show filter info"
6333
- msgstr ""
7350
+ msgstr "필터 정보 표시"
6334
7351
 
6335
7352
  msgid "show repositories in Library and the default content view"
6336
7353
  msgstr "라이브러리 및 기본값 컨텐츠 뷰에서 리포지터리 표시 "
6337
7354
 
6338
7355
  msgid "some executors are not responding, check %{status_url}"
6339
- msgstr ""
7356
+ msgstr "일부 실행자가 응답하지 않습니다. %{status_url}을(를) 확인하십시오."
6340
7357
 
6341
7358
  msgid "source URL is malformed"
6342
- msgstr ""
7359
+ msgstr "소스 URL의 형식이 잘못되었습니다."
6343
7360
 
6344
7361
  msgid "specifies if content should be included or excluded, default: inclusion=false"
6345
7362
  msgstr "컨텐츠 포함 또는 제외 여부를 지정합니다. 기본값: inclusion=false"
@@ -6348,7 +7365,7 @@ msgid "start datetime of synchronization"
6348
7365
  msgstr "동기화 시작 날짜 "
6349
7366
 
6350
7367
  msgid "subscriptions not specified"
6351
- msgstr ""
7368
+ msgstr "서브스크립션을 지정하지 않았습니다."
6352
7369
 
6353
7370
  msgid "sync plan description"
6354
7371
  msgstr "동기화 계획 설명 "
@@ -6360,7 +7377,7 @@ msgid "sync plan numeric identifier"
6360
7377
  msgstr "숫자로된 동기화 계획 ID "
6361
7378
 
6362
7379
  msgid "temporarily override feed URL for sync"
6363
- msgstr ""
7380
+ msgstr "동기화를 위한 임시 덮어쓰기 피드 URL"
6364
7381
 
6365
7382
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
6366
7383
  msgstr "다음 속성은 Red Hat 공급자 [ %s ]에 대해 업데이트될 수 없습니다 "
@@ -6374,23 +7391,23 @@ msgstr ""
6374
7391
  msgid "true if this repository can be published via HTTP"
6375
7392
  msgstr "리포지터리가 HTTP를 통해 공개할 수 있는 경우 true"
6376
7393
 
6377
- msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed"
7394
+ msgid "true if this repository when synced has to be mirrored from the source and stale rpms removed (Deprecated)"
6378
7395
  msgstr ""
6379
7396
 
6380
- msgid "type of filter (e.g. rpm, package_group, erratum, docker, modulemd)"
7397
+ msgid "type of filter (e.g. rpm, package_group, erratum, erratum_id, erratum_date, docker, modulemd)"
6381
7398
  msgstr ""
6382
7399
 
6383
7400
  msgid "type of repo"
6384
- msgstr "리포지터리 유형"
7401
+ msgstr ""
6385
7402
 
6386
7403
  msgid "types of filters"
6387
7404
  msgstr ""
6388
7405
 
6389
7406
  msgid "unknown permission for %s"
6390
- msgstr ""
7407
+ msgstr "%s에 대해 알 수 없는 권한 "
6391
7408
 
6392
7409
  msgid "update a filter"
6393
- msgstr ""
7410
+ msgstr "필터 업데이트"
6394
7411
 
6395
7412
  msgid "updating package group..."
6396
7413
  msgstr "패키지 그룹 업데이트 중..."
@@ -6407,13 +7424,28 @@ msgstr "패키지 업데이트 중..."
6407
7424
  msgid "url not defined."
6408
7425
  msgstr "url이 설정되어 있지 않습니다. "
6409
7426
 
6410
- msgid "waiting for Candlepin to finish the task"
7427
+ msgid "via customized remote execution"
7428
+ msgstr ""
7429
+
7430
+ msgid "via remote execution"
7431
+ msgstr ""
7432
+
7433
+ msgid "view content view tabs."
6411
7434
  msgstr ""
6412
7435
 
7436
+ msgid "waiting for Candlepin to finish the task"
7437
+ msgstr "Candlepin이 태스크를 끝내기를 기다리는 중"
7438
+
6413
7439
  msgid "waiting for Pulp to finish the task"
7440
+ msgstr "Pulp가 태스크를 끝내기를 기다리는 중"
7441
+
7442
+ msgid "waiting for Pulp to finish the task %s"
6414
7443
  msgstr ""
6415
7444
 
6416
7445
  msgid "waiting for Pulp to start the task"
7446
+ msgstr "Pulp가 태스크를 시작하기를 기다리는 중"
7447
+
7448
+ msgid "waiting for Pulp to start the task %s"
6417
7449
  msgstr ""
6418
7450
 
6419
7451
  msgid "whitespace-separated list of architectures to be synced from deb-archive"
@@ -6429,7 +7461,7 @@ msgid "with"
6429
7461
  msgstr ""
6430
7462
 
6431
7463
  msgid "yes"
6432
- msgstr ""
7464
+ msgstr ""
6433
7465
 
6434
7466
  msgid "{0} items selected"
6435
7467
  msgstr ""