katello 4.1.4 → 4.2.0.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of katello might be problematic. Click here for more details.

Files changed (240) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -2
  3. data/app/controllers/katello/api/v2/content_credentials_controller.rb +3 -3
  4. data/app/controllers/katello/api/v2/content_uploads_controller.rb +3 -1
  5. data/app/controllers/katello/api/v2/content_view_components_controller.rb +33 -1
  6. data/app/controllers/katello/api/v2/content_views_controller.rb +12 -0
  7. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -2
  9. data/app/controllers/katello/api/v2/products_controller.rb +4 -4
  10. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +3 -11
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +68 -47
  12. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +0 -28
  13. data/app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb +26 -5
  14. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +26 -1
  15. data/app/lib/actions/candlepin/environment/destroy.rb +2 -0
  16. data/app/lib/actions/katello/agent_action.rb +2 -2
  17. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +3 -2
  18. data/app/lib/actions/katello/{gpg_key → content_credential}/update.rb +1 -1
  19. data/app/lib/actions/katello/content_view/publish.rb +6 -1
  20. data/app/lib/actions/katello/content_view_version/create_repos.rb +1 -1
  21. data/app/lib/actions/katello/content_view_version/incremental_update.rb +0 -47
  22. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +1 -1
  23. data/app/lib/actions/katello/repository/clone_contents.rb +1 -7
  24. data/app/lib/actions/katello/repository/clone_to_environment.rb +1 -7
  25. data/app/lib/actions/katello/repository/create.rb +4 -8
  26. data/app/lib/actions/katello/repository/create_root.rb +1 -1
  27. data/app/lib/actions/katello/repository/destroy.rb +1 -3
  28. data/app/lib/actions/katello/repository/import_upload.rb +3 -2
  29. data/app/lib/actions/katello/repository/instance_update.rb +1 -1
  30. data/app/lib/actions/katello/repository/metadata_generate.rb +2 -8
  31. data/app/lib/actions/katello/repository/multi_clone_contents.rb +0 -1
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +1 -4
  33. data/app/lib/actions/katello/repository/remove_content.rb +6 -4
  34. data/app/lib/actions/katello/repository/sync.rb +5 -25
  35. data/app/lib/actions/katello/repository/update.rb +1 -2
  36. data/app/lib/actions/katello/repository/update_http_proxy_details.rb +2 -5
  37. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  38. data/app/lib/actions/katello/repository/upload_files.rb +8 -3
  39. data/app/lib/actions/katello/repository/upload_package_group.rb +2 -11
  40. data/app/lib/actions/katello/repository/verify_checksum.rb +0 -1
  41. data/app/lib/actions/katello/repository_set/enable_repository.rb +1 -1
  42. data/app/lib/actions/pulp3/orchestration/repository/create.rb +2 -2
  43. data/app/lib/actions/pulp3/repository/create.rb +3 -4
  44. data/app/lib/actions/pulp3/repository/create_remote.rb +1 -6
  45. data/app/lib/actions/pulp3/repository/repair.rb +4 -0
  46. data/app/lib/katello/errors.rb +1 -0
  47. data/app/lib/katello/http_resource.rb +26 -73
  48. data/app/lib/katello/qpid/connection.rb +1 -3
  49. data/app/lib/katello/resources/candlepin/consumer.rb +1 -1
  50. data/app/lib/katello/resources/candlepin/environment.rb +2 -0
  51. data/app/lib/katello/resources/registry.rb +7 -20
  52. data/app/lib/katello/util/http_proxy.rb +0 -3
  53. data/app/lib/katello/validators/gpg_key_content_validator.rb +1 -1
  54. data/app/models/katello/authorization/{gpg_key.rb → content_credential.rb} +1 -1
  55. data/app/models/katello/authorization/product.rb +0 -4
  56. data/app/models/katello/concerns/host_managed_extensions.rb +2 -16
  57. data/app/models/katello/concerns/organization_extensions.rb +1 -1
  58. data/app/models/katello/concerns/pulp_database_unit.rb +13 -5
  59. data/app/models/katello/concerns/smart_proxy_extensions.rb +45 -41
  60. data/app/models/katello/{gpg_key.rb → content_credential.rb} +4 -4
  61. data/app/models/katello/content_view.rb +6 -1
  62. data/app/models/katello/generic_content_unit.rb +16 -0
  63. data/app/models/katello/glue/pulp/repos.rb +9 -25
  64. data/app/models/katello/kt_environment.rb +1 -1
  65. data/app/models/katello/product.rb +4 -4
  66. data/app/models/katello/repository.rb +13 -7
  67. data/app/models/katello/repository_generic_content_unit.rb +7 -0
  68. data/app/models/katello/root_repository.rb +38 -7
  69. data/app/models/setting/content.rb +5 -0
  70. data/app/services/cert/certs.rb +16 -8
  71. data/app/services/katello/applicability/applicable_content_helper.rb +1 -2
  72. data/app/services/katello/candlepin/consumer.rb +6 -0
  73. data/app/services/katello/component_view_presenter.rb +27 -0
  74. data/app/services/katello/pulp/repository.rb +1 -1
  75. data/app/services/katello/pulp/server.rb +2 -2
  76. data/app/services/katello/pulp3/api/core.rb +4 -0
  77. data/app/services/katello/pulp3/api/generic.rb +68 -0
  78. data/app/services/katello/pulp3/generic_content_unit.rb +29 -0
  79. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -1
  80. data/app/services/katello/pulp3/repository/generic.rb +94 -0
  81. data/app/services/katello/pulp3/repository/yum.rb +4 -5
  82. data/app/services/katello/pulp3/repository.rb +27 -12
  83. data/app/services/katello/pulp3/repository_mirror.rb +2 -2
  84. data/app/services/katello/pulp3/smart_proxy_repository.rb +4 -4
  85. data/app/services/katello/registration_manager.rb +18 -7
  86. data/app/services/katello/repository_type.rb +59 -1
  87. data/app/services/katello/repository_type_manager.rb +116 -24
  88. data/app/views/katello/api/v2/content_views/base.json.rabl +4 -4
  89. data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
  90. data/app/views/smart_proxies/plugins/_pulpcore.html.erb +2 -5
  91. data/app/views/smart_proxies/pulp_status.html.erb +0 -7
  92. data/config/katello.yaml.example +0 -21
  93. data/config/routes/api/v2.rb +2 -1
  94. data/db/functions/deb_version_cmp_v01.sql +200 -0
  95. data/db/migrate/20171110082124_add_ssl_certs_to_products_and_repos.rb +5 -1
  96. data/db/migrate/20200402130013_add_repsoitory_docker_meta_tag_f_key.rb +3 -1
  97. data/db/migrate/20210624221630_katello_generic_content.rb +22 -0
  98. data/db/migrate/20210625095042_add_retain_package_versions_count.rb +9 -0
  99. data/db/migrate/20210628182553_add_generic_remote_options_to_root_repository.rb +5 -0
  100. data/db/migrate/20210714140440_remove_repo_export_permission.rb +5 -0
  101. data/db/migrate/20210721163730_change_gpg_keys_to_content_credentials.rb +8 -0
  102. data/db/migrate/20210728130748_create_function_deb_version_cmp.rb +12 -0
  103. data/db/seeds.d/111-upgrade_tasks.rb +1 -2
  104. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  105. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +7 -5
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +4 -1
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +2 -1
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +25 -33
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +1 -6
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +10 -2
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +9 -0
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +0 -2
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +1 -25
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +31 -13
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +11 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +0 -6
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/aggregate-task.factory.js +3 -3
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task.factory.js +1 -1
  123. data/lib/katello/engine.rb +2 -4
  124. data/lib/katello/permission_creator.rb +6 -12
  125. data/lib/katello/plugin.rb +76 -80
  126. data/lib/katello/repository_types/python.rb +37 -0
  127. data/lib/katello/tasks/reimport.rake +0 -9
  128. data/lib/katello/tasks/repository.rake +3 -4
  129. data/lib/katello/version.rb +1 -1
  130. data/locale/action_names.rb +28 -29
  131. data/locale/bn/katello.po +699 -221
  132. data/locale/cs/katello.po +167 -59
  133. data/locale/de/katello.po +585 -352
  134. data/locale/en/katello.po +167 -59
  135. data/locale/es/katello.po +1388 -1189
  136. data/locale/fr/katello.po +1740 -1494
  137. data/locale/gu/katello.po +896 -416
  138. data/locale/hi/katello.po +892 -415
  139. data/locale/it/katello.po +371 -170
  140. data/locale/ja/katello.po +1657 -1439
  141. data/locale/katello.pot +933 -736
  142. data/locale/kn/katello.po +894 -416
  143. data/locale/ko/katello.po +515 -317
  144. data/locale/mr/katello.po +857 -415
  145. data/locale/or/katello.po +894 -416
  146. data/locale/pa/katello.po +874 -411
  147. data/locale/pt/katello.po +347 -154
  148. data/locale/pt_BR/katello.po +1398 -1215
  149. data/locale/ru/katello.po +671 -463
  150. data/locale/ta/katello.po +697 -221
  151. data/locale/te/katello.po +891 -415
  152. data/locale/zh_CN/katello.po +2029 -1845
  153. data/locale/zh_TW/katello.po +735 -407
  154. data/package.json +3 -1
  155. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -3
  156. data/webpack/components/RoutedTabs/RoutedTabs.js +7 -8
  157. data/webpack/components/Table/TableWrapper.js +19 -11
  158. data/webpack/components/Table/helpers.js +1 -1
  159. data/webpack/components/extensions/HostDetails/Tabs/ContentTab.js +42 -0
  160. data/webpack/components/extensions/HostDetails/Tabs/SubscriptionTab.js +12 -0
  161. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +4 -0
  162. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +1 -1
  163. data/webpack/components/extensions/RegistrationCommands/index.js +1 -2
  164. data/webpack/components/pf3Table/formatters/selectionHeaderCellFormatter.js +2 -1
  165. data/webpack/fills_index.js +4 -1
  166. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -4
  167. data/webpack/redux/reducers/RedHatRepositories/enabled.js +4 -1
  168. data/webpack/scenes/ContentViews/ContentViewsActions.js +16 -1
  169. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -0
  170. data/webpack/scenes/ContentViews/ContentViewsPage.js +12 -22
  171. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +4 -3
  172. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +25 -14
  173. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +4 -2
  174. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +153 -0
  175. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +21 -10
  176. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +157 -19
  177. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +100 -108
  178. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +140 -16
  179. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/publishedContentViewDetails.fixtures.json +367 -0
  180. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +59 -6
  181. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +43 -0
  182. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +44 -13
  183. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +161 -0
  184. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +54 -0
  185. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterCreateResult.fixtures.json +124 -0
  186. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -6
  187. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +7 -6
  188. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +4 -3
  189. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +71 -12
  190. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +77 -0
  191. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +13 -12
  192. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +2 -2
  193. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +17 -14
  194. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +3 -3
  195. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +2 -2
  196. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +6 -2
  197. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +61 -20
  198. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskInProgressResponse.fixtures.json +71 -0
  199. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskResponse.fixtures.json +75 -0
  200. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +86 -1
  201. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +713 -0
  202. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  203. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +184 -0
  204. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +104 -0
  205. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +71 -0
  206. data/webpack/scenes/ContentViews/Publish/ContentViewPublishSelectors.js +17 -0
  207. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +145 -0
  208. data/webpack/scenes/ContentViews/Publish/__tests__/environmentPaths.fixtures.json +352 -0
  209. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +184 -0
  210. data/webpack/scenes/ContentViews/Publish/__tests__/publishResponse.fixture.json +69 -0
  211. data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +3 -0
  212. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +75 -48
  213. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +15 -2
  214. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +6 -10
  215. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +22 -10
  216. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathActions.js +12 -0
  217. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathConstants.js +2 -0
  218. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathSelectors.js +16 -0
  219. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +72 -0
  220. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +8 -0
  221. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +85 -0
  222. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +9 -8
  223. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +4 -25
  224. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -3
  225. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +3 -3
  226. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +4 -2
  227. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +24 -0
  228. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Table.js +4 -1
  229. data/webpack/scenes/Subscriptions/index.js +1 -4
  230. metadata +74 -39
  231. data/app/lib/actions/candlepin/environment/create.rb +0 -21
  232. data/app/lib/actions/foreman/environment/destroy.rb +0 -23
  233. data/app/lib/actions/katello/content_view/environment_create.rb +0 -21
  234. data/app/lib/actions/katello/repository/export.rb +0 -85
  235. data/app/lib/actions/katello/repository/purge_empty_content.rb +0 -16
  236. data/app/lib/actions/katello/repository/upload_errata.rb +0 -38
  237. data/app/lib/katello/util/proxy_uri.rb +0 -64
  238. data/app/models/katello/rhsm_fact_importer.rb +0 -20
  239. data/app/models/katello/rhsm_fact_name.rb +0 -17
  240. data/app/models/katello/rhsm_fact_parser.rb +0 -120
data/locale/ko/katello.po CHANGED
@@ -1,24 +1,25 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the katello package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
3
+ # This file is distributed under the same license as the PACKAGE package.
5
4
  #
6
5
  # Translators:
7
- # 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
8
- # Bryan Kearney <bryan.kearney@gmail.com>, 2021
9
- #
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
10
10
  msgid ""
11
11
  msgstr ""
12
- "Project-Id-Version: katello 2.4.0-RC1\n"
12
+ "Project-Id-Version: version 0.0.1\n"
13
13
  "Report-Msgid-Bugs-To: \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"
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"
17
18
  "MIME-Version: 1.0\n"
18
19
  "Content-Type: text/plain; charset=UTF-8\n"
19
20
  "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"
22
23
 
23
24
  msgid ""
24
25
  "\n"
@@ -34,7 +35,7 @@ msgstr ""
34
35
  msgid " %{package_count} Package(s)"
35
36
  msgstr ""
36
37
 
37
- msgid " Content view updated."
38
+ msgid " Content view updated"
38
39
  msgstr ""
39
40
 
40
41
  msgid " Either select the latest content view or the content view version. Cannot set both."
@@ -43,6 +44,9 @@ msgstr ""
43
44
  msgid " RPMs"
44
45
  msgstr ""
45
46
 
47
+ msgid " View task details "
48
+ msgstr ""
49
+
46
50
  msgid " environment cannot be set to an environment already on its path"
47
51
  msgstr "환경은 이미 경로에 있는 환경에 설정할 수 없음 "
48
52
 
@@ -50,7 +54,7 @@ msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated po
50
54
  msgstr ""
51
55
 
52
56
  msgid "%s Available"
53
- msgstr "%s 사용 가능"
57
+ msgstr ""
54
58
 
55
59
  msgid "%s Errata"
56
60
  msgstr "%s 에라타 "
@@ -61,7 +65,7 @@ msgstr[0] ""
61
65
  msgstr[1] ""
62
66
 
63
67
  msgid "%s Used"
64
- msgstr "%s 사용됨"
68
+ msgstr ""
65
69
 
66
70
  msgid "%s ago"
67
71
  msgstr "%s 전 "
@@ -262,7 +266,7 @@ msgid "%{unused_substitutions} cannot be specified for %{content_name} as that i
262
266
  msgstr ""
263
267
 
264
268
  msgid "%{used} of %{total}"
265
- msgstr "%{used}(총: %{total})"
269
+ msgstr ""
266
270
 
267
271
  msgid "%{view_label} could not be promoted to %{environment_label} because the content view and the environment are not in the same organization!"
268
272
  msgstr ""
@@ -276,6 +280,7 @@ msgstr ""
276
280
  msgid ", must be unique to major and version id version."
277
281
  msgstr ""
278
282
 
283
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
279
284
  msgid ": '%s' is a built-in environment"
280
285
  msgstr ": '%s'는 내장된 환경입니다 "
281
286
 
@@ -312,8 +317,11 @@ msgstr "다수의 에라타가 이 리포지터리에 대해 동기화되어 있
312
317
  msgid "A list of subscriptions expiring soon"
313
318
  msgstr ""
314
319
 
320
+ msgid "A new version of "
321
+ msgstr ""
322
+
315
323
  msgid "A post-promotion summary of hosts with installable errata"
316
- msgstr "설치 가능한 에라타를 갖는 호스트의 승격 후 요약 "
324
+ msgstr ""
317
325
 
318
326
  msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
319
327
  msgstr ""
@@ -321,7 +329,7 @@ msgstr ""
321
329
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
322
330
  msgstr "auto-healing 프로세스의 서비스 레벨. 예: SELF-SUPPORT"
323
331
 
324
- msgid "A smart proxy seems to have been refreshed without pulpcore being running. You may want to "
332
+ msgid "A smart proxy seems to have been refreshed without pulpcore being running. Please refresh the smart proxy after ensuring that pulpcore services are running."
325
333
  msgstr ""
326
334
 
327
335
  msgid "A summary of available and applicable errata for your hosts"
@@ -340,10 +348,10 @@ msgid "Accept action timeout"
340
348
  msgstr ""
341
349
 
342
350
  msgid "Account Number"
343
- msgstr "계정 번호 "
351
+ msgstr ""
344
352
 
345
353
  msgid "Action"
346
- msgstr "동작 "
354
+ msgstr ""
347
355
 
348
356
  msgid "Action not allowed for the default smart proxy."
349
357
  msgstr ""
@@ -355,7 +363,7 @@ msgid "Action unauthorized to be performed on selected hosts."
355
363
  msgstr ""
356
364
 
357
365
  msgid "Action with sub plans"
358
- msgstr "하위 계획이 있는 작업"
366
+ msgstr ""
359
367
 
360
368
  msgid "Activation Keys"
361
369
  msgstr "활성키 "
@@ -363,32 +371,38 @@ msgstr "활성키 "
363
371
  msgid "Activation key ID"
364
372
  msgstr "활성키 ID"
365
373
 
366
- msgid "Activation key for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
374
+ msgid "Activation key for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. For multiple keys use `activation_keys` param instead."
367
375
  msgstr ""
368
376
 
369
377
  msgid "Activation key(s) for Subscription Manager."
370
378
  msgstr ""
371
379
 
372
- msgid "Activation key(s) for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys"
373
- msgstr ""
374
-
375
380
  msgid "Activation keys and subscriptions can be managed"
376
381
  msgstr "활성키 및 서브스크립션을 관리할 수 있습니다 "
377
382
 
383
+ msgid "Activation keys for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys."
384
+ msgstr ""
385
+
378
386
  msgid "Activation keys: "
379
387
  msgstr ""
380
388
 
381
389
  msgid "Active Subscriptions"
382
- msgstr "활성 서브스크립션"
390
+ msgstr ""
383
391
 
384
392
  msgid "Active only"
385
393
  msgstr "활성화된 경우에만 "
386
394
 
395
+ msgid "Add"
396
+ msgstr ""
397
+
387
398
  msgid "Add Subscriptions"
388
399
  msgstr ""
389
400
 
390
401
  msgid "Add a subscription to a host"
391
- msgstr "호스트에 서브스크립션 추가"
402
+ msgstr ""
403
+
404
+ msgid "Add component"
405
+ msgstr ""
392
406
 
393
407
  msgid "Add components to the content view"
394
408
  msgstr ""
@@ -400,7 +414,7 @@ msgid "Add filters using the 'Add filter' button above."
400
414
  msgstr ""
401
415
 
402
416
  msgid "Add host to the host collection"
403
- msgstr "호스트 컬렉션에 호스트 추가"
417
+ msgstr ""
404
418
 
405
419
  msgid "Add lifecycle environments to the smart proxy"
406
420
  msgstr ""
@@ -432,6 +446,9 @@ msgstr ""
432
446
  msgid "Added Content:"
433
447
  msgstr "추가된 컨텐츠: "
434
448
 
449
+ msgid "Added component to content view"
450
+ msgstr ""
451
+
435
452
  msgid "Adding content units"
436
453
  msgstr ""
437
454
 
@@ -454,17 +471,26 @@ msgid "All available architectures for this repo are enabled."
454
471
  msgstr ""
455
472
 
456
473
  msgid "All errata applied"
457
- msgstr "적용된 모든 에라타"
474
+ msgstr ""
475
+
476
+ msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
477
+ msgstr ""
478
+
479
+ msgid "Allow hosts to re-register themselves only when they are in build mode"
480
+ msgstr ""
458
481
 
459
482
  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."
460
483
  msgstr ""
461
484
 
462
485
  msgid "Alter a hosts host collections"
463
- msgstr "호스트 컬렉션 변경"
486
+ msgstr ""
464
487
 
465
488
  msgid "Always Use Latest (currently %{version})"
466
489
  msgstr ""
467
490
 
491
+ msgid "Always update to latest version"
492
+ msgstr ""
493
+
468
494
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
469
495
  msgstr ""
470
496
 
@@ -478,8 +504,6 @@ msgid ""
478
504
  "An error occurred during the sync \n"
479
505
  "%{error_message}"
480
506
  msgstr ""
481
- "동기화하는 도중 오류가 발생했습니다. \n"
482
- "%{error_message}"
483
507
 
484
508
  msgid "Another component already includes content view with ID %s"
485
509
  msgstr ""
@@ -497,7 +521,7 @@ msgid "Applicability Batch Size"
497
521
  msgstr ""
498
522
 
499
523
  msgid "Arch"
500
- msgstr "아키텍처 "
524
+ msgstr ""
501
525
 
502
526
  msgid "Architecture"
503
527
  msgstr ""
@@ -506,7 +530,7 @@ msgid "Architecture of content in the repository"
506
530
  msgstr ""
507
531
 
508
532
  msgid "Architecture(s)"
509
- msgstr "아키텍처 "
533
+ msgstr ""
510
534
 
511
535
  msgid "Are you sure you want to delete the manifest?"
512
536
  msgstr ""
@@ -530,7 +554,7 @@ msgid "Array of content view component IDs to remove. Identifier of the componen
530
554
  msgstr ""
531
555
 
532
556
  msgid "Array of host ids"
533
- msgstr "호스트 ID의 배열"
557
+ msgstr ""
534
558
 
535
559
  msgid "Array of local pool IDs. Only pools originating upstream are accepted."
536
560
  msgstr ""
@@ -542,7 +566,7 @@ msgid "Array of subscriptions to add"
542
566
  msgstr "추가할 서브스크립션 어레이 "
543
567
 
544
568
  msgid "Array of subscriptions to remove"
545
- msgstr "삭제할 서브스크립션 배열"
569
+ msgstr ""
546
570
 
547
571
  msgid "Array of uploads to import"
548
572
  msgstr ""
@@ -556,6 +580,7 @@ msgstr ""
556
580
  msgid "Assign system purpose attributes on one or more hosts"
557
581
  msgstr ""
558
582
 
583
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
559
584
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
560
585
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
561
586
  msgstr[0] "%{taxonomy_single}이 없는 %{count} 호스트를 %{taxonomy_name}에 할당합니다 "
@@ -570,7 +595,7 @@ msgid "Associated location IDs"
570
595
  msgstr ""
571
596
 
572
597
  msgid "Associations"
573
- msgstr "연결 "
598
+ msgstr ""
574
599
 
575
600
  msgid "At least one Content View Version must be specified"
576
601
  msgstr "최소 하나의 컨텐츠 뷰 버전을 지정해야 합니다 "
@@ -584,20 +609,27 @@ msgstr "최소 하나의 활성키가 라이프 사이클 환경에 필요하며
584
609
  msgid "At least one organization must exist."
585
610
  msgstr "최소 하나의 조직이 존재해야 합니다. "
586
611
 
612
+ # translation auto-copied from project rhsm-web, version 0.0, document management, author eukim
587
613
  msgid "Attach a subscription"
588
614
  msgstr "서브스크립션 첨부 "
589
615
 
590
616
  msgid "Attach subscriptions"
591
- msgstr "서브스크립션 연결"
617
+ msgstr ""
592
618
 
593
619
  msgid "Attach subscriptions to %s"
594
- msgstr "%s에 서브스크립션 연결"
620
+ msgstr ""
595
621
 
596
622
  msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
597
623
  msgstr ""
598
624
 
625
+ msgid "Auth URL requires Auth token be set."
626
+ msgstr ""
627
+
628
+ msgid "Auth token requires Auth URL be set."
629
+ msgstr ""
630
+
599
631
  msgid "Author"
600
- msgstr "작성자"
632
+ msgstr ""
601
633
 
602
634
  msgid "Auto Publish"
603
635
  msgstr ""
@@ -641,6 +673,7 @@ msgstr "활성화할 Basearch "
641
673
  msgid "Batch size to sync repositories in."
642
674
  msgstr ""
643
675
 
676
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
644
677
  msgid "Beta"
645
678
  msgstr "베타 "
646
679
 
@@ -656,9 +689,11 @@ msgstr ""
656
689
  msgid "Branches updated"
657
690
  msgstr ""
658
691
 
692
+ # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
659
693
  msgid "Bug Fix"
660
694
  msgstr "버그 수정"
661
695
 
696
+ # translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
662
697
  msgid "Bugfix"
663
698
  msgstr "버그 수정 "
664
699
 
@@ -701,9 +736,11 @@ msgstr "기본값 컨테츠 뷰에 있는 컨텐츠만 삭제할 수 있습니
701
736
  msgid "Can only upload to Yum Repositories."
702
737
  msgstr ""
703
738
 
739
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
704
740
  msgid "Can't update the '%s' environment"
705
741
  msgstr "'%s' 환경을 업데이트할 수 없음 "
706
742
 
743
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
707
744
  msgid "Cancel"
708
745
  msgstr "취소 "
709
746
 
@@ -713,8 +750,10 @@ msgstr "리포지터리 검색 취소 "
713
750
  msgid "Cancel running smart proxy synchronization"
714
751
  msgstr ""
715
752
 
753
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
754
+ #, fuzzy
716
755
  msgid "Canceled"
717
- msgstr "취소함"
756
+ msgstr "취소됨. "
718
757
 
719
758
  msgid "Cancelled"
720
759
  msgstr ""
@@ -770,6 +809,7 @@ msgstr "연결된 %{dependent}로 인해 '%{view}'를 삭제할 수 없습니다
770
809
  msgid "Cannot delete Red Hat product: %{product}"
771
810
  msgstr ""
772
811
 
812
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
773
813
  msgid "Cannot delete from %s, view does not exist there."
774
814
  msgstr "%s에서 삭제할 수 없습니다, 보기는 여기에 존재하지 않습니다."
775
815
 
@@ -795,7 +835,7 @@ msgid "Cannot delete version while it is in environments: %s"
795
835
  msgstr "환경에 있는 버전을 삭제할 수 없습니다: %s"
796
836
 
797
837
  msgid "Cannot delete version while it is in use by composite content views: %s"
798
- msgstr "복합 컨텐츠 뷰에 사용 중인 동안에는 버전을 삭제할 수 없습니다: %s"
838
+ msgstr ""
799
839
 
800
840
  msgid "Cannot delete view while it exists in environments"
801
841
  msgstr "뷰가 환경에서 있어 삭제할 수 없습니다 "
@@ -824,6 +864,7 @@ msgstr ""
824
864
  msgid "Cannot publish default content view"
825
865
  msgstr "기본 컨텐츠 뷰를 공개할 수 없습니다 "
826
866
 
867
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
827
868
  msgid "Cannot register a system to the '%s' environment"
828
869
  msgstr "'%s' 환경에 시스템을 등록할 수 없음 "
829
870
 
@@ -870,7 +911,7 @@ msgid "Check services before actions"
870
911
  msgstr ""
871
912
 
872
913
  msgid "Checksum"
873
- msgstr "체크섬 "
914
+ msgstr ""
874
915
 
875
916
  msgid "Checksum of file to upload"
876
917
  msgstr ""
@@ -887,12 +928,14 @@ msgstr ""
887
928
  msgid "Click here to go to the tasks page for the task."
888
929
  msgstr ""
889
930
 
931
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author Junwan Park
890
932
  msgid "Clone"
891
933
  msgstr "복제(Clone)"
892
934
 
893
935
  msgid "Close"
894
- msgstr "종료 "
936
+ msgstr ""
895
937
 
938
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
896
939
  msgid "Collapse All"
897
940
  msgstr "모두 축소"
898
941
 
@@ -905,12 +948,16 @@ msgstr ""
905
948
  msgid "Comma-separated list of tags to sync for Container Image repository"
906
949
  msgstr ""
907
950
 
951
+ # translation auto-copied from project [RHEL] [STORAGE] DM Multipath, version 6.4, document MPIO_Overview
908
952
  msgid "Component"
909
953
  msgstr "구성 요소 "
910
954
 
911
955
  msgid "Component Content View"
912
956
  msgstr ""
913
957
 
958
+ msgid "Component content view"
959
+ msgstr ""
960
+
914
961
  msgid "Composite Content View"
915
962
  msgstr ""
916
963
 
@@ -921,7 +968,7 @@ msgid "Composite content view"
921
968
  msgstr "복합적인 컨텐츠 뷰 "
922
969
 
923
970
  msgid "Compute resource IDs"
924
- msgstr "컴퓨터 리소스 ID "
971
+ msgstr ""
925
972
 
926
973
  msgid "Confirm Deletion"
927
974
  msgstr ""
@@ -932,8 +979,11 @@ msgstr ""
932
979
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
933
980
  msgstr ""
934
981
 
982
+ msgid "Consisting of multiple component content views"
983
+ msgstr ""
984
+
935
985
  msgid "Consumed"
936
- msgstr "사용됨 "
986
+ msgstr ""
937
987
 
938
988
  msgid "Container Image Manifest"
939
989
  msgstr ""
@@ -956,6 +1006,7 @@ msgstr ""
956
1006
  msgid "Container image tag"
957
1007
  msgstr ""
958
1008
 
1009
+ # translation auto-copied from project PressGang CCMS topics, version 1, document 30851-704293, author eukim
959
1010
  msgid "Content"
960
1011
  msgstr "컨텐츠"
961
1012
 
@@ -969,7 +1020,7 @@ msgid "Content Credentials"
969
1020
  msgstr ""
970
1021
 
971
1022
  msgid "Content Download URL"
972
- msgstr "컨텐츠 다운로드 URL"
1023
+ msgstr ""
973
1024
 
974
1025
  msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
975
1026
  msgstr ""
@@ -981,11 +1032,12 @@ msgid "Content Source"
981
1032
  msgstr "컨텐츠 소스 "
982
1033
 
983
1034
  msgid "Content Sync"
984
- msgstr "컨텐츠 동기화"
1035
+ msgstr ""
985
1036
 
986
1037
  msgid "Content Types"
987
1038
  msgstr ""
988
1039
 
1040
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
989
1041
  msgid "Content View"
990
1042
  msgstr "컨텐츠 보기 "
991
1043
 
@@ -1001,8 +1053,10 @@ msgstr ""
1001
1053
  msgid "Content View Details"
1002
1054
  msgstr ""
1003
1055
 
1056
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1057
+ #, fuzzy
1004
1058
  msgid "Content View Filter id"
1005
- msgstr "컨텐츠 보기 개요"
1059
+ msgstr "컨텐츠 보기 개요 "
1006
1060
 
1007
1061
  msgid "Content View Filter identifier"
1008
1062
  msgstr ""
@@ -1026,11 +1080,12 @@ msgid "Content View Version specified in the metadata - '%{name}' already exists
1026
1080
  msgstr ""
1027
1081
 
1028
1082
  msgid "Content View and Environment not set for registration."
1029
- msgstr "등록할 컨텐츠 뷰 및 환경이 설정되지 않았습니다."
1083
+ msgstr ""
1030
1084
 
1031
1085
  msgid "Content View id"
1032
1086
  msgstr ""
1033
1087
 
1088
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1034
1089
  msgid "Content Views"
1035
1090
  msgstr "컨텐츠 보기 "
1036
1091
 
@@ -1052,12 +1107,19 @@ msgstr ""
1052
1107
  msgid "Content type"
1053
1108
  msgstr ""
1054
1109
 
1110
+ msgid "Content type %{content_type_string} does not belong to an enabled repo type."
1111
+ msgstr ""
1112
+
1113
+ msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
1114
+ msgstr ""
1115
+
1055
1116
  msgid "Content view"
1056
1117
  msgstr ""
1057
1118
 
1058
1119
  msgid "Content view ${name} created"
1059
1120
  msgstr ""
1060
1121
 
1122
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1061
1123
  msgid "Content view '%{view}' is not in environment '%{env}'"
1062
1124
  msgstr "컨텐츠 보기 '%{view}'가 환경 '%{env}'에 있지 않습니다 "
1063
1125
 
@@ -1101,10 +1163,13 @@ msgid "Context"
1101
1163
  msgstr ""
1102
1164
 
1103
1165
  msgid "Contract"
1104
- msgstr "계약 "
1166
+ msgstr ""
1105
1167
 
1106
1168
  msgid "Contract Number"
1107
- msgstr "계약 번호 "
1169
+ msgstr ""
1170
+
1171
+ msgid "Copy"
1172
+ msgstr ""
1108
1173
 
1109
1174
  msgid "Copy an activation key"
1110
1175
  msgstr "활성키 복사 "
@@ -1181,6 +1246,7 @@ msgstr "컨텐츠 호스트 컨텐츠 뷰 ID '%s'를 찾을 수 없습니다 "
1181
1246
  msgid "Couldn't find content host environment '%s'"
1182
1247
  msgstr "컨텐츠 호스트 환경 '%s'을 찾을 수 없습니다 "
1183
1248
 
1249
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1184
1250
  msgid "Couldn't find content view '%s'"
1185
1251
  msgstr "컨텐츠 보기 '%s'를 찾을 수 없음 "
1186
1252
 
@@ -1200,7 +1266,7 @@ msgid "Couldn't find host collection '%s'"
1200
1266
  msgstr "호스트 컬렉션 '%s'을 찾을 수 없습니다 "
1201
1267
 
1202
1268
  msgid "Couldn't find host with host id '%s'"
1203
- msgstr "호스트 ID가 '%s'인 호스트를 찾을 수 없습니다."
1269
+ msgstr ""
1204
1270
 
1205
1271
  msgid "Couldn't find organization '%s'"
1206
1272
  msgstr "조직 '%s'을 찾을 수 없음 "
@@ -1223,6 +1289,7 @@ msgstr "동기화 제목을 찾을 수 없음 "
1223
1289
  msgid "Count"
1224
1290
  msgstr ""
1225
1291
 
1292
+ # translation auto-copied from project NetworkManager, version 0.9.9.0, document NetworkManager, author eukim
1226
1293
  msgid "Create"
1227
1294
  msgstr "생성 "
1228
1295
 
@@ -1274,6 +1341,12 @@ msgstr "조직에 있는 환경 생성 "
1274
1341
  msgid "Create an upload request"
1275
1342
  msgstr "업로드 요청 생성 "
1276
1343
 
1344
+ msgid "Create content view"
1345
+ msgstr ""
1346
+
1347
+ msgid "Create filter"
1348
+ msgstr ""
1349
+
1277
1350
  msgid "Create organization"
1278
1351
  msgstr "조직 생성 "
1279
1352
 
@@ -1302,10 +1375,10 @@ msgid "Custom repositories cannot be disabled."
1302
1375
  msgstr "사용자 정의 리포지터리를 비활성화할 수 없습니다. "
1303
1376
 
1304
1377
  msgid "Database connection"
1305
- msgstr "데이터베이스 연결"
1378
+ msgstr ""
1306
1379
 
1307
1380
  msgid "Date"
1308
- msgstr "날짜 "
1381
+ msgstr ""
1309
1382
 
1310
1383
  msgid "Date format is incorrect."
1311
1384
  msgstr "날짜 형식이 잘못되었습니다. "
@@ -1322,6 +1395,7 @@ msgstr ""
1322
1395
  msgid "Deb Packages"
1323
1396
  msgstr ""
1324
1397
 
1398
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
1325
1399
  msgid "Debug Certificate"
1326
1400
  msgstr "디버그 인증서 "
1327
1401
 
@@ -1424,9 +1498,11 @@ msgstr ""
1424
1498
  msgid "Default user data for new Operating Systems created from synced content"
1425
1499
  msgstr ""
1426
1500
 
1501
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery
1427
1502
  msgid "Delete"
1428
1503
  msgstr "삭제 "
1429
1504
 
1505
+ # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
1430
1506
  msgid "Delete Activation Key"
1431
1507
  msgstr "활성키 삭제 "
1432
1508
 
@@ -1436,6 +1512,7 @@ msgstr ""
1436
1512
  msgid "Delete Lifecycle Environment"
1437
1513
  msgstr "라이프사이클 환경 삭제 "
1438
1514
 
1515
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
1439
1516
  msgid "Delete Manifest"
1440
1517
  msgstr "매니페스트 삭제 "
1441
1518
 
@@ -1472,6 +1549,9 @@ msgstr "업로드 요청 삭제 "
1472
1549
  msgid "Delete manifest from Red Hat provider"
1473
1550
  msgstr "Red Hat 공급자에서 매니페스트 삭제 "
1474
1551
 
1552
+ msgid "Delete multiple filters from a content view"
1553
+ msgstr ""
1554
+
1475
1555
  msgid "Deleted consumer '%s'"
1476
1556
  msgstr "컨슈머 '%s'을(를) 삭제했습니다 "
1477
1557
 
@@ -1482,7 +1562,7 @@ msgid "Deleting manifest in '%{subject}' failed."
1482
1562
  msgstr ""
1483
1563
 
1484
1564
  msgid "Description"
1485
- msgstr "설명 "
1565
+ msgstr ""
1486
1566
 
1487
1567
  msgid "Description for the content view"
1488
1568
  msgstr "컨텐츠 뷰 설명 "
@@ -1502,6 +1582,7 @@ msgstr ""
1502
1582
  msgid "Destination Server name"
1503
1583
  msgstr ""
1504
1584
 
1585
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1505
1586
  msgid "Destroy"
1506
1587
  msgstr "삭제 "
1507
1588
 
@@ -1547,12 +1628,16 @@ msgstr "하나 이상의 리포지터리 삭제 "
1547
1628
  msgid "Details"
1548
1629
  msgstr "상세 정보 "
1549
1630
 
1631
+ msgid "Determining settings for ${name}"
1632
+ msgstr ""
1633
+
1550
1634
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1551
1635
  msgstr ""
1552
1636
 
1553
1637
  msgid "Directory containing the exported Content View Version"
1554
1638
  msgstr ""
1555
1639
 
1640
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author eukim
1556
1641
  msgid "Disable"
1557
1642
  msgstr "비활성화 "
1558
1643
 
@@ -1575,7 +1660,7 @@ msgid "Disconnected mode"
1575
1660
  msgstr ""
1576
1661
 
1577
1662
  msgid "Discover"
1578
- msgstr "검색"
1663
+ msgstr ""
1579
1664
 
1580
1665
  msgid "Discover Repositories"
1581
1666
  msgstr "리포지터리 검색 "
@@ -1590,7 +1675,7 @@ msgid "Do not wait for the update action to finish. Default: true"
1590
1675
  msgstr ""
1591
1676
 
1592
1677
  msgid "Domain IDs"
1593
- msgstr "도메인 ID"
1678
+ msgstr ""
1594
1679
 
1595
1680
  msgid "Download Policy of the capsule, must be one of %s"
1596
1681
  msgstr ""
@@ -1601,12 +1686,14 @@ msgstr "디버그 인증서 다운로드 "
1601
1686
  msgid "Duplicate branches specified - %{branches}"
1602
1687
  msgstr ""
1603
1688
 
1689
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author eukim
1604
1690
  msgid "Duration"
1605
1691
  msgstr "기간 "
1606
1692
 
1607
1693
  msgid "ERRATA ADVISORY"
1608
1694
  msgstr ""
1609
1695
 
1696
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1610
1697
  msgid "Edit"
1611
1698
  msgstr "편집 "
1612
1699
 
@@ -1623,7 +1710,7 @@ msgid "Either organization ID or environment ID needs to be specified"
1623
1710
  msgstr "조직 ID 또는 환경 ID를 지정해야 함 "
1624
1711
 
1625
1712
  msgid "Either packages or groups must be provided"
1626
- msgstr "패키지 또는 그룹을 지정해야 합니다."
1713
+ msgstr ""
1627
1714
 
1628
1715
  msgid "Either set the content view with the latest flag or set the content view version"
1629
1716
  msgstr ""
@@ -1631,6 +1718,7 @@ msgstr ""
1631
1718
  msgid "Either set the latest content view or the content view version. Cannot set both"
1632
1719
  msgstr ""
1633
1720
 
1721
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author eukim
1634
1722
  msgid "Enable"
1635
1723
  msgstr "활성화 "
1636
1724
 
@@ -1647,20 +1735,21 @@ msgid "Enable/Disable auto publish of composite view"
1647
1735
  msgstr ""
1648
1736
 
1649
1737
  msgid "Enabled"
1650
- msgstr "활성화됨 "
1738
+ msgstr ""
1651
1739
 
1652
1740
  msgid "Enabled Repositories"
1653
- msgstr "활성화된 리포지터리 "
1741
+ msgstr ""
1654
1742
 
1655
1743
  msgid "Enabling Simple Content Access failed for '%{subject}'."
1656
1744
  msgstr ""
1657
1745
 
1658
1746
  msgid "End Date"
1659
- msgstr "종료 날짜 "
1747
+ msgstr ""
1660
1748
 
1661
1749
  msgid "Ends"
1662
- msgstr "종료"
1750
+ msgstr ""
1663
1751
 
1752
+ # translation auto-copied from project CFSE, version sam-1.2, document app
1664
1753
  msgid "Enhancement"
1665
1754
  msgstr "기능 강화"
1666
1755
 
@@ -1671,7 +1760,7 @@ msgid "Environment"
1671
1760
  msgstr "환경 "
1672
1761
 
1673
1762
  msgid "Environment IDs"
1674
- msgstr "환경 ID"
1763
+ msgstr ""
1675
1764
 
1676
1765
  msgid "Environment cannot be in its own promotion path"
1677
1766
  msgstr "환경은 자체 승격 경로에 존재할 수 없음 "
@@ -1680,11 +1769,12 @@ msgid "Environment identifier"
1680
1769
  msgstr ""
1681
1770
 
1682
1771
  msgid "Environments"
1683
- msgstr "환경 "
1772
+ msgstr ""
1684
1773
 
1685
1774
  msgid "Errata"
1686
1775
  msgstr "에라타 "
1687
1776
 
1777
+ # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
1688
1778
  msgid "Errata ID"
1689
1779
  msgstr "에라타 ID"
1690
1780
 
@@ -1721,26 +1811,27 @@ msgstr "에라타 설치를 실패했습니다"
1721
1811
  msgid "Erratum Install Timed Out"
1722
1812
  msgstr "에라타 설치 시간 초과 "
1723
1813
 
1814
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1724
1815
  msgid "Error"
1725
1816
  msgstr "오류 "
1726
1817
 
1727
1818
  msgid "Error connecting to Pulp service"
1728
- msgstr "Pulp 서비스에 연결하는 도중 오류가 발생했습니다."
1819
+ msgstr ""
1729
1820
 
1730
1821
  msgid "Error connecting. Got: %s"
1731
- msgstr "연결하는 도중 오류가 발생했습니다. 오류 메시지: %s"
1822
+ msgstr ""
1732
1823
 
1733
1824
  msgid "Error refreshing status for %s: "
1734
1825
  msgstr ""
1735
1826
 
1736
1827
  msgid "Error retrieving Pulp storage"
1737
- msgstr "Pulp 스토리지를 가져오는 도중 오류가 발생하였습니다."
1828
+ msgstr ""
1738
1829
 
1739
1830
  msgid "Exceeds available quantity"
1740
1831
  msgstr ""
1741
1832
 
1742
1833
  msgid "Exclude"
1743
- msgstr "제외 "
1834
+ msgstr ""
1744
1835
 
1745
1836
  msgid "Excluded"
1746
1837
  msgstr ""
@@ -1748,6 +1839,7 @@ msgstr ""
1748
1839
  msgid "Exit"
1749
1840
  msgstr ""
1750
1841
 
1842
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
1751
1843
  msgid "Expand All"
1752
1844
  msgstr "모두 확장 "
1753
1845
 
@@ -1755,7 +1847,7 @@ msgid "Expire soon days"
1755
1847
  msgstr ""
1756
1848
 
1757
1849
  msgid "Export"
1758
- msgstr "내보내기 "
1850
+ msgstr ""
1759
1851
 
1760
1852
  msgid "Export CSV"
1761
1853
  msgstr ""
@@ -1766,18 +1858,12 @@ msgstr ""
1766
1858
  msgid "Export Types"
1767
1859
  msgstr ""
1768
1860
 
1769
- msgid "Export a repository"
1770
- msgstr "리포지터리 내보내기"
1771
-
1772
1861
  msgid "Export as CSV"
1773
1862
  msgstr ""
1774
1863
 
1775
1864
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1776
1865
  msgstr ""
1777
1866
 
1778
- msgid "Export to ISO format"
1779
- msgstr ""
1780
-
1781
1867
  msgid "Exported version"
1782
1868
  msgstr ""
1783
1869
 
@@ -1788,7 +1874,7 @@ msgid "Failed"
1788
1874
  msgstr "실패 "
1789
1875
 
1790
1876
  msgid "Failed indexing errata, maximum retries encountered"
1791
- msgstr "에라타를 인덱싱하지 못했습니다. 최대 재시도 횟수에 도달했습니다."
1877
+ msgstr ""
1792
1878
 
1793
1879
  msgid "Failed to delete %{host}: %{errors}"
1794
1880
  msgstr ""
@@ -1842,6 +1928,9 @@ msgstr ""
1842
1928
  msgid "Filter composite versions whose publish was triggered by the specified component version"
1843
1929
  msgstr ""
1844
1930
 
1931
+ msgid "Filter created"
1932
+ msgstr ""
1933
+
1845
1934
  msgid "Filter only composite content views"
1846
1935
  msgstr ""
1847
1936
 
@@ -1852,7 +1941,7 @@ msgid "Filter out default content views"
1852
1941
  msgstr "기본값 컨텐츠 뷰 필터링 "
1853
1942
 
1854
1943
  msgid "Filter products by host id"
1855
- msgstr "호스트 ID별로 제품 필터링"
1944
+ msgstr ""
1856
1945
 
1857
1946
  msgid "Filter products by name"
1858
1947
  msgstr "이름에 따라 제품을 필터링 "
@@ -1864,7 +1953,10 @@ msgid "Filter products by subscription"
1864
1953
  msgstr "서브스크립션에 따라 제품을 필터링 "
1865
1954
 
1866
1955
  msgid "Filter products by sync plan id"
1867
- msgstr "동기화 계획 ID를 기준으로 제품 필터링"
1956
+ msgstr ""
1957
+
1958
+ msgid "Filter successfully deleted"
1959
+ msgstr ""
1868
1960
 
1869
1961
  msgid "Filter versions by environment"
1870
1962
  msgstr "환경에 따라 버전을 필터링 "
@@ -1876,10 +1968,13 @@ msgid "Filter versions that are components in the specified composite version"
1876
1968
  msgstr "지정된 복합 버전에 있는 구성 요소인 버전을 필터링 "
1877
1969
 
1878
1970
  msgid "Filtered index content"
1879
- msgstr "필터링된 인덱스 컨텐츠"
1971
+ msgstr ""
1880
1972
 
1881
1973
  msgid "Filters"
1882
- msgstr "필터 "
1974
+ msgstr ""
1975
+
1976
+ msgid "Filters successfully deleted"
1977
+ msgstr ""
1883
1978
 
1884
1979
  msgid "Finish action timeout"
1885
1980
  msgstr ""
@@ -1917,11 +2012,12 @@ msgid "Forces a republish of the version's repositories' metadata"
1917
2012
  msgstr ""
1918
2013
 
1919
2014
  msgid "Fully entitled"
1920
- msgstr "모든 권한이 부여됨"
2015
+ msgstr ""
1921
2016
 
1922
2017
  msgid "GPG Key URL"
1923
- msgstr "GPG 키 URL"
2018
+ msgstr ""
1924
2019
 
2020
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
1925
2021
  msgid "Generate and Download"
1926
2022
  msgstr "생성 및 다운로드 "
1927
2023
 
@@ -1965,7 +2061,7 @@ msgid "Group %{id} already created."
1965
2061
  msgstr ""
1966
2062
 
1967
2063
  msgid "Guests of"
1968
- msgstr "게스트 "
2064
+ msgstr ""
1969
2065
 
1970
2066
  msgid "HTTP Proxies"
1971
2067
  msgstr ""
@@ -1977,7 +2073,7 @@ msgid "Has to be > 0"
1977
2073
  msgstr ""
1978
2074
 
1979
2075
  msgid "History"
1980
- msgstr "기록 "
2076
+ msgstr ""
1981
2077
 
1982
2078
  msgid "History will appear here when the content view is published or promoted."
1983
2079
  msgstr ""
@@ -1992,7 +2088,10 @@ msgid "Host %{name} cannot be assigned release version %{release_version}."
1992
2088
  msgstr ""
1993
2089
 
1994
2090
  msgid "Host '%{name}' does not belong to an organization"
1995
- msgstr "'%{name}' 호스트가 조직에 속해 있지 않습니다."
2091
+ msgstr ""
2092
+
2093
+ msgid "Host Can Re-Register Only In Build"
2094
+ msgstr ""
1996
2095
 
1997
2096
  msgid "Host Collection name"
1998
2097
  msgstr "호스트 컬렉션 이름 "
@@ -2007,11 +2106,14 @@ msgid "Host Errata Advisory"
2007
2106
  msgstr ""
2008
2107
 
2009
2108
  msgid "Host ID"
2010
- msgstr "호스트 ID"
2109
+ msgstr ""
2011
2110
 
2012
2111
  msgid "Host Profile Assume"
2013
2112
  msgstr ""
2014
2113
 
2114
+ msgid "Host Profile Can Change In Build"
2115
+ msgstr ""
2116
+
2015
2117
  msgid "Host Subscription Status"
2016
2118
  msgstr ""
2017
2119
 
@@ -2031,19 +2133,19 @@ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. T
2031
2133
  msgstr ""
2032
2134
 
2033
2135
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2034
- msgstr "호스트가 %s초 이내에 컨텐츠 작업을 끝내지 않았습니다. 태스크가 취소되었습니다."
2136
+ msgstr ""
2035
2137
 
2036
2138
  msgid "Host did not respond within %s seconds. The task has been cancelled. Is katello-agent installed and goferd running on the Host?"
2037
- msgstr "호스트가 %s초 이내에 응답하지 않았습니다. 태스크가 취소되었습니다. 호스트에 katello-agent가 설치되어 있고 goferd가 실행 중입니까?"
2139
+ msgstr ""
2038
2140
 
2039
2141
  msgid "Host errata advisory"
2040
2142
  msgstr ""
2041
2143
 
2042
2144
  msgid "Host group IDs"
2043
- msgstr "호스트 그룹 ID"
2145
+ msgstr ""
2044
2146
 
2045
2147
  msgid "Host has not been registered with subscription-manager"
2046
- msgstr "호스트가 subscription-manager에 등록되지 않았습니다."
2148
+ msgstr ""
2047
2149
 
2048
2150
  msgid "Host has not been registered with subscription-manager."
2049
2151
  msgstr ""
@@ -2054,7 +2156,7 @@ msgstr ""
2054
2156
  msgid "Host id to list applicable packages for"
2055
2157
  msgstr ""
2056
2158
 
2057
- msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2159
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
2058
2160
  msgstr ""
2059
2161
 
2060
2162
  msgid "Host with ID %s already exists in the host collection."
@@ -2082,10 +2184,10 @@ msgid "How to order the sorted results (e.g. ASC for ascending)"
2082
2184
  msgstr "정렬된 결고를 정렬하는 방법 (예: 오름차순의 ASC) "
2083
2185
 
2084
2186
  msgid "Hypervisors"
2085
- msgstr "하이퍼바이저"
2187
+ msgstr ""
2086
2188
 
2087
2189
  msgid "Hypervisors update"
2088
- msgstr "하이퍼바이저 업데이트"
2190
+ msgstr ""
2089
2191
 
2090
2192
  msgid "ID of a HTTP Proxy"
2091
2193
  msgstr ""
@@ -2118,7 +2220,7 @@ msgid "ID of the environment"
2118
2220
  msgstr "환경 ID "
2119
2221
 
2120
2222
  msgid "ID of the host"
2121
- msgstr "호스트의 ID"
2223
+ msgstr ""
2122
2224
 
2123
2225
  msgid "ID of the host collection"
2124
2226
  msgstr "호스트 컬렉션 ID "
@@ -2144,9 +2246,6 @@ msgstr "동기화 계획 ID "
2144
2246
  msgid "ID: %s doesn't exist "
2145
2247
  msgstr "ID: %s이 존재하지 않습니다 "
2146
2248
 
2147
- msgid "ISO export must be enabled when specifying ISO size"
2148
- msgstr ""
2149
-
2150
2249
  msgid "Id of a deb package to find repositories that contain the deb"
2151
2250
  msgstr ""
2152
2251
 
@@ -2160,7 +2259,7 @@ msgid "Id of an ansible collection to find repositories that contain the ansible
2160
2259
  msgstr ""
2161
2260
 
2162
2261
  msgid "Id of an erratum to find repositories that contain the erratum"
2163
- msgstr "해당 에라타가 포함된 리포지터리를 검색할 에라타의 ID"
2262
+ msgstr ""
2164
2263
 
2165
2264
  msgid "Id of an ostree branch to find repositories that contain that branch"
2166
2265
  msgstr ""
@@ -2169,22 +2268,22 @@ msgid "Id of the content host"
2169
2268
  msgstr ""
2170
2269
 
2171
2270
  msgid "Id of the environment to limit the synchronization on"
2172
- msgstr "동기화의 제한 범위로 설정할 환경의 ID"
2271
+ msgstr ""
2173
2272
 
2174
2273
  msgid "Id of the host"
2175
- msgstr "호스트의 ID"
2274
+ msgstr ""
2176
2275
 
2177
2276
  msgid "Id of the host collection"
2178
2277
  msgstr "호스트 컬렉션 ID "
2179
2278
 
2180
2279
  msgid "Id of the lifecycle environment"
2181
- msgstr "라이프사이클 환경의 ID"
2280
+ msgstr ""
2182
2281
 
2183
2282
  msgid "Id of the organization to get the status for"
2184
- msgstr "상태를 가져올 조직의 ID"
2283
+ msgstr ""
2185
2284
 
2186
2285
  msgid "Id of the organization to limit environments on"
2187
- msgstr "환경을 제한할 조직의 ID"
2286
+ msgstr ""
2188
2287
 
2189
2288
  msgid "Id of the smart proxy"
2190
2289
  msgstr ""
@@ -2223,13 +2322,13 @@ msgid "If hosts fail to register because of duplicate DMI UUIDs add their comma-
2223
2322
  msgstr ""
2224
2323
 
2225
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."
2226
- msgstr "true로 설정할 경우 포함하는 구성 요소 컨텐츠 뷰 버전이 대상 환경에 존재하지 않으면 복합 컨텐츠 뷰가 게시 또는 승격되지 않을 수 있습니다."
2325
+ msgstr ""
2227
2326
 
2228
2327
  msgid "If set to true, use remote execution instead of katello-agent for remote actions"
2229
2328
  msgstr ""
2230
2329
 
2231
2330
  msgid "If specified, remove the first instance of a subscription with matching id and quantity"
2232
- msgstr "지정할 경우 ID와 수량이 일치하는 서브스크립션의 첫 번째 인스턴스를 삭제합니다."
2331
+ msgstr ""
2233
2332
 
2234
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"
2235
2334
  msgstr ""
@@ -2262,13 +2361,13 @@ msgid "Ignore subscription-manager errors for `subscription-manager register` co
2262
2361
  msgstr ""
2263
2362
 
2264
2363
  msgid "Ignore subscriptions that are unavailable to the specified host"
2265
- msgstr "지정한 호스트에 사용할 수 없는 서브스크립션 무시"
2364
+ msgstr ""
2266
2365
 
2267
2366
  msgid "Immediate"
2268
2367
  msgstr ""
2269
2368
 
2270
2369
  msgid "Import"
2271
- msgstr "불러오기"
2370
+ msgstr ""
2272
2371
 
2273
2372
  msgid "Import Content View Version"
2274
2373
  msgstr ""
@@ -2327,8 +2426,11 @@ msgstr ""
2327
2426
  msgid "In Progress"
2328
2427
  msgstr "진행 중 "
2329
2428
 
2429
+ msgid "In progress"
2430
+ msgstr ""
2431
+
2330
2432
  msgid "Include"
2331
- msgstr "포함 "
2433
+ msgstr ""
2332
2434
 
2333
2435
  msgid "Included"
2334
2436
  msgstr ""
@@ -2358,7 +2460,7 @@ msgid "Incremental update specified for composite %{name} version %{version}, bu
2358
2460
  msgstr "복합 %{name} v버전 %{version}에 대해 증분 업데이트가 지정되었지만 구성 요소가 업데이트되지 않았습니다."
2359
2461
 
2360
2462
  msgid "Index content"
2361
- msgstr "컨텐츠 인덱싱"
2463
+ msgstr ""
2362
2464
 
2363
2465
  msgid "Index errata"
2364
2466
  msgstr "에라타 인덱스"
@@ -2367,7 +2469,7 @@ msgid "Index module streams"
2367
2469
  msgstr ""
2368
2470
 
2369
2471
  msgid "Index package groups"
2370
- msgstr "패키지 그룹 인덱싱"
2472
+ msgstr ""
2371
2473
 
2372
2474
  msgid "Informable Type must be one of the following [ %{list} ]"
2373
2475
  msgstr "정보 유형은 다음 중 하나이어야 합니다 [ %{list} ]"
@@ -2376,7 +2478,7 @@ msgid "Inherit from Repository"
2376
2478
  msgstr ""
2377
2479
 
2378
2480
  msgid "Initiate a sync of the products attached to the sync plan"
2379
- msgstr "동기화 계획에 연결된 제품 동기화 시작"
2481
+ msgstr ""
2380
2482
 
2381
2483
  msgid "Install Applicable Errata"
2382
2484
  msgstr "적용 가능한 에라타 설치 "
@@ -2426,6 +2528,7 @@ msgstr ""
2426
2528
  msgid "Installation of package(s) requested: %{packages}"
2427
2529
  msgstr ""
2428
2530
 
2531
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
2429
2532
  msgid "Installed Packages"
2430
2533
  msgstr "설치된 패키지 "
2431
2534
 
@@ -2442,13 +2545,13 @@ msgid "Instance update"
2442
2545
  msgstr ""
2443
2546
 
2444
2547
  msgid "Instance-based"
2445
- msgstr "인스턴스 기반 "
2548
+ msgstr ""
2446
2549
 
2447
2550
  msgid "Interpret specified object to return only Host Collections that can be associated with specified object. The value 'host' is supported."
2448
- msgstr "지정한 객체를 해석하여 지정한 객체에 연결할 수 있는 호스트 컬렉션만 반환합니다. 값 '호스트'가 지원됩니다."
2551
+ msgstr ""
2449
2552
 
2450
2553
  msgid "Interpret specified object to return only Products that can be associated with specified object. Only 'sync_plan' is supported."
2451
- msgstr "지정한 객체를 해석하여 지정한 객체에 연결할 수 있는 제품만 반환합니다. 'sync_plan'만 지원됩니다."
2554
+ msgstr ""
2452
2555
 
2453
2556
  msgid "Interval cannot be nil"
2454
2557
  msgstr ""
@@ -2457,7 +2560,7 @@ msgid "Interval not set correctly"
2457
2560
  msgstr ""
2458
2561
 
2459
2562
  msgid "Invalid"
2460
- msgstr "유효하지 않음 "
2563
+ msgstr ""
2461
2564
 
2462
2565
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
2463
2566
  msgstr ""
@@ -2469,10 +2572,7 @@ msgid "Invalid content type %s"
2469
2572
  msgstr "잘못된 컨텐츠 유형 %s"
2470
2573
 
2471
2574
  msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
2472
- msgstr "잘못된 컨텐츠 유형 '%{content_type}'이(가) 지정되었습니다. 컨텐츠 유형은 %{content_types} 중 하나가 될 수 있습니다."
2473
-
2474
- msgid "Invalid date provided."
2475
- msgstr "잘못된 날짜를 입력했습니다."
2575
+ msgstr ""
2476
2576
 
2477
2577
  msgid "Invalid date range. The erratum filter rule start date must come before the end date"
2478
2578
  msgstr "잘못된 날짜 범위입니다. 에라타 필터 규칙 시작일은 종료일 이전에 와야 합니다."
@@ -2495,14 +2595,15 @@ msgstr "잘못된 필터 규칙이 지정되었습니다. 'version' 을 'min_ver
2495
2595
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2496
2596
  msgstr "잘못된 매개 변수가 이 작업에 대한 요청에 전송되었습니다. 시스템 관리자에게 문의하십시오. "
2497
2597
 
2598
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
2498
2599
  msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
2499
2600
  msgstr "잘못된 매개 변수가 전송되었습니다. 주소를 잘못 입력하신것 같습니다. 문제가 계속 발생하면 관리자에게 문의하십시오. "
2500
2601
 
2501
2602
  msgid "Invalid params provided - content_type must be one of %s"
2502
- msgstr "잘못된 매개 변수를 입력했습니다. - content_type은 %s 중 하나여야 합니다."
2603
+ msgstr ""
2503
2604
 
2504
2605
  msgid "Invalid params provided - date_type must be one of %s"
2505
- msgstr "잘못된 매개 변수를 입력했습니다. - date_type은 %s 중 하나여야 합니다."
2606
+ msgstr ""
2506
2607
 
2507
2608
  msgid "Invalid value specified for Container Image repositories."
2508
2609
  msgstr ""
@@ -2559,7 +2660,7 @@ msgid "Kickstart repository was not set for host '%{host}'"
2559
2660
  msgstr ""
2560
2661
 
2561
2662
  msgid "Label"
2562
- msgstr "레이블 "
2663
+ msgstr ""
2563
2664
 
2564
2665
  msgid "Label of the content"
2565
2666
  msgstr "컨텐츠 레이블 "
@@ -2574,7 +2675,7 @@ msgid "Latest (automatically updates)"
2574
2675
  msgstr ""
2575
2676
 
2576
2677
  msgid "Latest Errata"
2577
- msgstr "최신 에라타"
2678
+ msgstr ""
2578
2679
 
2579
2680
  msgid "Latest version"
2580
2681
  msgstr ""
@@ -2634,7 +2735,7 @@ msgid "Limit content to just that available in the host's content view version"
2634
2735
  msgstr ""
2635
2736
 
2636
2737
  msgid "Limits"
2637
- msgstr "제한 "
2738
+ msgstr ""
2638
2739
 
2639
2740
  msgid "List :resource_id"
2640
2741
  msgstr ":resource_id 나열 "
@@ -2643,7 +2744,7 @@ msgid "List Content Credentials"
2643
2744
  msgstr ""
2644
2745
 
2645
2746
  msgid "List a host's subscriptions"
2646
- msgstr "호스트의 서브스크립션 나열"
2747
+ msgstr ""
2647
2748
 
2648
2749
  msgid "List activation keys"
2649
2750
  msgstr "활성키 목록 나열 "
@@ -2714,17 +2815,17 @@ msgstr ""
2714
2815
  msgid "List of Errata ids"
2715
2816
  msgstr "에라타 ID 목록 "
2716
2817
 
2717
- msgid "List of Errata ids to install. Will be removed in Katello 4.1."
2818
+ msgid "List of Errata ids to install. Will be removed in %s"
2718
2819
  msgstr ""
2719
2820
 
2720
2821
  msgid "List of Products for sync plan"
2721
- msgstr "동기화 계획의 제품 나열"
2822
+ msgstr ""
2722
2823
 
2723
2824
  msgid "List of component content view version ids for composite views"
2724
2825
  msgstr "복합 뷰의 구성 요소 컨텐츠 뷰 버전 ID 목록 "
2725
2826
 
2726
- msgid "List of content (e.g. package names, package group names or errata ids)"
2727
- msgstr "컨텐츠 목록 (예: 패키지 이름, 패키지 그룹 이름 또는 에라타 ID) "
2827
+ msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
2828
+ msgstr ""
2728
2829
 
2729
2830
  msgid "List of content (e.g. package or package group names)"
2730
2831
  msgstr "컨텐츠 목록 (예: 패키지 또는 패키지 그룹 이름) "
@@ -2754,7 +2855,7 @@ msgid "List of host collection ids"
2754
2855
  msgstr "호스트 컬렉션 ID 목록 "
2755
2856
 
2756
2857
  msgid "List of host collection ids to update"
2757
- msgstr "업데이트할 호스트 컬렉션 ID 목록"
2858
+ msgstr ""
2758
2859
 
2759
2860
  msgid "List of host id to list available module streams for"
2760
2861
  msgstr ""
@@ -2766,13 +2867,13 @@ msgid "List of host ids to perform an action on"
2766
2867
  msgstr ""
2767
2868
 
2768
2869
  msgid "List of host ids to replace the hosts in host collection"
2769
- msgstr "호스트 컬렉션의 호스트를 대체할 호스트 ID의 목록입니다."
2870
+ msgstr ""
2770
2871
 
2771
2872
  msgid "List of hypervisor guest uuids"
2772
2873
  msgstr ""
2773
2874
 
2774
- msgid "List of package group names"
2775
- msgstr "패키지 그룹 이름 목록 "
2875
+ msgid "List of package group names (Deprecated)"
2876
+ msgstr ""
2776
2877
 
2777
2878
  msgid "List of package names"
2778
2879
  msgstr "패키지 이름 목록 "
@@ -2823,7 +2924,7 @@ msgid "List packages"
2823
2924
  msgstr ""
2824
2925
 
2825
2926
  msgid "List packages installed on the host"
2826
- msgstr "호스트에 설치된 패키지 나열"
2927
+ msgstr ""
2827
2928
 
2828
2929
  msgid "List products"
2829
2930
  msgstr "제품 나열 "
@@ -2856,7 +2957,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
2856
2957
  msgstr ""
2857
2958
 
2858
2959
  msgid "Loading"
2859
- msgstr "로딩 중 "
2960
+ msgstr ""
2860
2961
 
2861
2962
  msgid "Make copy of a content view"
2862
2963
  msgstr "컨텐츠 뷰 사본 작성 "
@@ -2868,13 +2969,13 @@ msgid "Make sure all the component content views are published before publishing
2868
2969
  msgstr ""
2869
2970
 
2870
2971
  msgid "Manage Manifest"
2871
- msgstr "매니페스트 관리 "
2972
+ msgstr ""
2872
2973
 
2873
2974
  msgid "Manifest"
2874
2975
  msgstr ""
2875
2976
 
2876
2977
  msgid "Manifest History"
2877
- msgstr "매니페스트 기록 "
2978
+ msgstr ""
2878
2979
 
2879
2980
  msgid "Manifest deleted"
2880
2981
  msgstr ""
@@ -2916,7 +3017,7 @@ msgid "Maximum number of content hosts exceeded for host collection(s): %s"
2916
3017
  msgstr "호스트 컬렉션에 대해 최대 컨텐츠 호스트 수를 초과했습니다: %s"
2917
3018
 
2918
3019
  msgid "Maximum number of hosts in the host collection"
2919
- msgstr "호스트 컬렉션에 포함된 호스트의 최대 수"
3020
+ msgstr ""
2920
3021
 
2921
3022
  msgid "May not add a type or date range rule to a filter that has existing rules."
2922
3023
  msgstr "유형 또는 데이터 범위 규칙을 기존 규칙이 있는 필터에 추가할 수 없습니다. "
@@ -2930,11 +3031,12 @@ msgstr ""
2930
3031
  msgid "Medium IDs"
2931
3032
  msgstr ""
2932
3033
 
3034
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
2933
3035
  msgid "Message"
2934
3036
  msgstr "메세지 "
2935
3037
 
2936
3038
  msgid "Messaging connection"
2937
- msgstr "메시징 연결"
3039
+ msgstr ""
2938
3040
 
2939
3041
  msgid "Metadata taken from the upstream export history for this Content View Version"
2940
3042
  msgstr ""
@@ -2942,8 +3044,11 @@ msgstr ""
2942
3044
  msgid "Mismatched"
2943
3045
  msgstr ""
2944
3046
 
3047
+ msgid "Missing activation key!"
3048
+ msgstr ""
3049
+
2945
3050
  msgid "Missing arguments %{substitutions} for %{content_url}"
2946
- msgstr "%{content_url}에 대한 %{substitutions} 인수 누락"
3051
+ msgstr ""
2947
3052
 
2948
3053
  msgid "Module Stream"
2949
3054
  msgstr ""
@@ -2958,7 +3063,7 @@ msgid "Module stream"
2958
3063
  msgstr ""
2959
3064
 
2960
3065
  msgid "Multi-entitlement"
2961
- msgstr "멀티 인타이틀먼트 "
3066
+ msgstr ""
2962
3067
 
2963
3068
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
2964
3069
  msgstr ""
@@ -2967,7 +3072,7 @@ msgid "N/A"
2967
3072
  msgstr ""
2968
3073
 
2969
3074
  msgid "NA"
2970
- msgstr "해당 없음 "
3075
+ msgstr ""
2971
3076
 
2972
3077
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
2973
3078
  msgstr ""
@@ -3009,6 +3114,7 @@ msgstr ""
3009
3114
  msgid "Needs to only be set for file repositories or docker tags"
3010
3115
  msgstr ""
3011
3116
 
3117
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
3012
3118
  msgid "Nest"
3013
3119
  msgstr "중첩 "
3014
3120
 
@@ -3042,8 +3148,11 @@ msgstr "새 패키지: %{count} (%{size})."
3042
3148
  msgid "New version is available: Version ${latestVersion}"
3043
3149
  msgstr ""
3044
3150
 
3151
+ msgid "Newly published"
3152
+ msgstr ""
3153
+
3045
3154
  msgid "No"
3046
- msgstr "아니오 "
3155
+ msgstr ""
3047
3156
 
3048
3157
  msgid "No Activation Keys selected"
3049
3158
  msgstr ""
@@ -3051,6 +3160,7 @@ msgstr ""
3051
3160
  msgid "No Activation keys to select"
3052
3161
  msgstr ""
3053
3162
 
3163
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3054
3164
  msgid "No Content View"
3055
3165
  msgstr "컨텐츠 보기가 없습니다 "
3056
3166
 
@@ -3066,6 +3176,7 @@ msgstr ""
3066
3176
  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."
3067
3177
  msgstr ""
3068
3178
 
3179
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3069
3180
  msgid "No Service Level Preference"
3070
3181
  msgstr "서비스 레벨 설정이 없음 "
3071
3182
 
@@ -3085,7 +3196,7 @@ msgid "No content has been provided."
3085
3196
  msgstr "제공된 컨텐츠가 없습니다. "
3086
3197
 
3087
3198
  msgid "No content ids provided"
3088
- msgstr "컨텐츠 ID를 지정하지 않았습니다."
3199
+ msgstr ""
3089
3200
 
3090
3201
  msgid "No content view history events found."
3091
3202
  msgstr "컨텐츠 뷰 기록 이벤트를 찾을 수 없습니다. "
@@ -3193,10 +3304,10 @@ msgid "No profiles to show"
3193
3304
  msgstr ""
3194
3305
 
3195
3306
  msgid "No pulp workers running."
3196
- msgstr "실행 중인 pulp worker가 없습니다."
3307
+ msgstr ""
3197
3308
 
3198
3309
  msgid "No recently synced products"
3199
- msgstr "최근에 동기화된 제품 없음"
3310
+ msgstr ""
3200
3311
 
3201
3312
  msgid "No recurring logic tied to the sync plan."
3202
3313
  msgstr ""
@@ -3217,7 +3328,7 @@ msgid "No rules have been added to this filter."
3217
3328
  msgstr ""
3218
3329
 
3219
3330
  msgid "No services defined, is this class extended?"
3220
- msgstr "정의된 서비스가 없습니다. 확장된 클래스입니까?"
3331
+ msgstr ""
3221
3332
 
3222
3333
  msgid "No start time currently available."
3223
3334
  msgstr "현재 사용 가능한 시작 시간이 없습니다. "
@@ -3232,7 +3343,7 @@ msgid "No uploads param specified. An array of uploads to import is required."
3232
3343
  msgstr ""
3233
3344
 
3234
3345
  msgid "Non-security errata applicable"
3235
- msgstr "적용 가능한 비보안 에라타"
3346
+ msgstr ""
3236
3347
 
3237
3348
  msgid "Non-security errata installable"
3238
3349
  msgstr ""
@@ -3283,7 +3394,7 @@ msgid "Number to Allocate"
3283
3394
  msgstr ""
3284
3395
 
3285
3396
  msgid "OSTree"
3286
- msgstr "OSTree"
3397
+ msgstr ""
3287
3398
 
3288
3399
  msgid "OSTree Branch"
3289
3400
  msgstr ""
@@ -3295,16 +3406,13 @@ msgid "OSTree Repositories cannot be unprotected."
3295
3406
  msgstr ""
3296
3407
 
3297
3408
  msgid "Object to show subscriptions available for, either 'host' or 'activation_key'"
3298
- msgstr "사용 가능한 서브스크립션을 표시할 객체입니다. 'host' 또는 'activation_key'로 지정할 수 있습니다."
3299
-
3300
- msgid "On Demand"
3301
3409
  msgstr ""
3302
3410
 
3303
- msgid "On demand repositories cannot be exported."
3411
+ msgid "On Demand"
3304
3412
  msgstr ""
3305
3413
 
3306
3414
  msgid "On-disk location for exported repositories"
3307
- msgstr "내보낸 리포지터리의 디스크상 위치"
3415
+ msgstr ""
3308
3416
 
3309
3417
  msgid "On-disk location for pulp 3 exported repositories"
3310
3418
  msgstr ""
@@ -3333,12 +3441,10 @@ msgstr "하나의 조직에 대해 하나의 Red Hat 공급자만을 허용 "
3333
3441
  msgid "Only returns id and quantity fields"
3334
3442
  msgstr ""
3335
3443
 
3444
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
3336
3445
  msgid "Operators"
3337
3446
  msgstr "운영자 "
3338
3447
 
3339
- msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3340
- msgstr ""
3341
-
3342
3448
  msgid "Organization"
3343
3449
  msgstr "조직 "
3344
3450
 
@@ -3372,6 +3478,7 @@ msgstr ""
3372
3478
  msgid "Organization required"
3373
3479
  msgstr "필요한 조직 "
3374
3480
 
3481
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3375
3482
  msgid "Other"
3376
3483
  msgstr "기타 "
3377
3484
 
@@ -3396,9 +3503,11 @@ msgstr ""
3396
3503
  msgid "Override value. Provide a boolean value if name is 'enabled'"
3397
3504
  msgstr ""
3398
3505
 
3506
+ # translation auto-copied from project rhn-client-tools, version 6.5, document rhn-client-tools
3399
3507
  msgid "Package"
3400
3508
  msgstr "패키지"
3401
3509
 
3510
+ # translation auto-copied from project RHEL Virtualization Deployment and Administration Guide, version 7.0, document Host_Installation
3402
3511
  msgid "Package Group"
3403
3512
  msgstr "패키지 그룹 "
3404
3513
 
@@ -3466,10 +3575,10 @@ msgid "Package Install scheduled by %s"
3466
3575
  msgstr "%s에 의해 스케줄된 패키지 설치 "
3467
3576
 
3468
3577
  msgid "Package Profile Update"
3469
- msgstr "패키지 프로파일 업데이트"
3578
+ msgstr ""
3470
3579
 
3471
3580
  msgid "Package Profile Update for %s"
3472
- msgstr "%s에 대한 패키지 프로파일 업데이트"
3581
+ msgstr ""
3473
3582
 
3474
3583
  msgid "Package Remove"
3475
3584
  msgstr "패키지 제거 "
@@ -3507,15 +3616,19 @@ msgstr "패키지 업데이트 시간 초과 "
3507
3616
  msgid "Package Update scheduled by %s"
3508
3617
  msgstr "%s에 의해 스케줄된 패키지 업데이트 "
3509
3618
 
3619
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3510
3620
  msgid "Package group update canceled"
3511
3621
  msgstr "패키지 그룹 업데이트 취소"
3512
3622
 
3623
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3513
3624
  msgid "Package group update complete"
3514
3625
  msgstr "패키지 그룹 업데이트 완료"
3515
3626
 
3627
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3516
3628
  msgid "Package group update failed"
3517
3629
  msgstr "패키지 그룹 업데이트를 실패"
3518
3630
 
3631
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3519
3632
  msgid "Package group update timed out"
3520
3633
  msgstr "패키지 그룹 업데이트 시간 초과 "
3521
3634
 
@@ -3541,13 +3654,13 @@ msgid "Page number, starting at 1"
3541
3654
  msgstr "1 부터 페이지 번호 "
3542
3655
 
3543
3656
  msgid "Partial"
3544
- msgstr "부분"
3657
+ msgstr ""
3545
3658
 
3546
3659
  msgid "Partially entitled"
3547
- msgstr "일부 권한이 부여됨"
3660
+ msgstr ""
3548
3661
 
3549
3662
  msgid "Partition template IDs"
3550
- msgstr "파티션 템플릿 ID"
3663
+ msgstr ""
3551
3664
 
3552
3665
  msgid "Password of the upstream repository user used for authentication"
3553
3666
  msgstr ""
@@ -3561,9 +3674,11 @@ msgstr ""
3561
3674
  msgid "Path for ssl key used for pulp server auth"
3562
3675
  msgstr ""
3563
3676
 
3677
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
3564
3678
  msgid "Paused"
3565
3679
  msgstr "일시정지 "
3566
3680
 
3681
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
3567
3682
  msgid "Pending"
3568
3683
  msgstr "보류 중 "
3569
3684
 
@@ -3588,8 +3703,9 @@ msgstr ""
3588
3703
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3589
3704
  msgstr "권한이 거부되었습니다. 사용자 '%{user}'은(는) 조직 '%{org}'에 액세스할 수 있는 권한이 없습니다. "
3590
3705
 
3706
+ # translation auto-copied from project subscription-manager, version 1.10.10, document keys
3591
3707
  msgid "Physical"
3592
- msgstr "물리적 "
3708
+ msgstr "물리 "
3593
3709
 
3594
3710
  msgid "Plan numeric identifier"
3595
3711
  msgstr "숫자로된 ID 계획 "
@@ -3625,7 +3741,7 @@ msgid "Please select an organization to view subscription totals."
3625
3741
  msgstr ""
3626
3742
 
3627
3743
  msgid "Please select one from the list below and you will be redirected."
3628
- msgstr "다음 목록 중 하나를 선택하면 선택한 곳으로 이동합니다."
3744
+ msgstr ""
3629
3745
 
3630
3746
  msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3631
3747
  msgstr ""
@@ -3636,17 +3752,18 @@ msgstr "메타데이터 처리 중 "
3636
3752
  msgid "Processing metadata."
3637
3753
  msgstr "메타데이터를 처리하고 있습니다. "
3638
3754
 
3755
+ # translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author eukim
3639
3756
  msgid "Product"
3640
3757
  msgstr "제품"
3641
3758
 
3642
3759
  msgid "Product Content"
3643
- msgstr "제품 컨텐츠 "
3760
+ msgstr ""
3644
3761
 
3645
3762
  msgid "Product Create"
3646
3763
  msgstr ""
3647
3764
 
3648
3765
  msgid "Product ID"
3649
- msgstr "제품 ID"
3766
+ msgstr ""
3650
3767
 
3651
3768
  msgid "Product and Repositories"
3652
3769
  msgstr "제품 및 리포지터리 "
@@ -3708,13 +3825,13 @@ msgid "Promotion to Environment"
3708
3825
  msgstr ""
3709
3826
 
3710
3827
  msgid "Provided Products"
3711
- msgstr "제공되는 제품 "
3828
+ msgstr ""
3712
3829
 
3713
3830
  msgid "Provided pool with id %s has no upstream entitlement"
3714
3831
  msgstr ""
3715
3832
 
3716
3833
  msgid "Provisioning template IDs"
3717
- msgstr "프로비저닝 템플릿 ID "
3834
+ msgstr ""
3718
3835
 
3719
3836
  msgid "Proxies"
3720
3837
  msgstr ""
@@ -3722,6 +3839,7 @@ msgstr ""
3722
3839
  msgid "Public key block in DER encoding or certificate content"
3723
3840
  msgstr ""
3724
3841
 
3842
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
3725
3843
  msgid "Publish"
3726
3844
  msgstr "공개 "
3727
3845
 
@@ -3731,19 +3849,28 @@ msgstr ""
3731
3849
  msgid "Publish a content view"
3732
3850
  msgstr "컨텐츠 뷰 공개 "
3733
3851
 
3852
+ msgid "Publish new version - "
3853
+ msgstr ""
3854
+
3734
3855
  msgid "Published new version"
3735
3856
  msgstr "새 버전 공개 "
3736
3857
 
3858
+ msgid "Publishing ${name}"
3859
+ msgstr ""
3860
+
3861
+ msgid "Publishing content view"
3862
+ msgstr ""
3863
+
3737
3864
  msgid "Pulling remote branches. Downloaded %s units."
3738
3865
  msgstr ""
3739
3866
 
3740
3867
  msgid "Pulp"
3741
- msgstr "Pulp"
3868
+ msgstr ""
3742
3869
 
3743
3870
  msgid "Pulp 3 export destination filepath"
3744
3871
  msgstr ""
3745
3872
 
3746
- msgid "Pulp Consumer %s has already been removed"
3873
+ msgid "Pulp 3 is not enabled on Smart proxy!"
3747
3874
  msgstr ""
3748
3875
 
3749
3876
  msgid "Pulp Docker registry port"
@@ -3762,7 +3889,7 @@ msgid "Pulp database connection issue at %s."
3762
3889
  msgstr ""
3763
3890
 
3764
3891
  msgid "Pulp database connection issue."
3765
- msgstr "Pulp 데이터베이스 연결 문제가 발생했습니다."
3892
+ msgstr ""
3766
3893
 
3767
3894
  msgid "Pulp disk space notification"
3768
3895
  msgstr ""
@@ -3771,7 +3898,7 @@ msgid "Pulp does not appear to be running at %s."
3771
3898
  msgstr ""
3772
3899
 
3773
3900
  msgid "Pulp does not appear to be running."
3774
- msgstr "Pulp가 실행되고 있지 않습니다."
3901
+ msgstr ""
3775
3902
 
3776
3903
  msgid "Pulp export destination filepath"
3777
3904
  msgstr ""
@@ -3780,19 +3907,19 @@ msgid "Pulp message bus connection issue at %s."
3780
3907
  msgstr ""
3781
3908
 
3782
3909
  msgid "Pulp message bus connection issue."
3783
- msgstr "Pulp 메시지 버스 연결 문제가 발생했습니다."
3910
+ msgstr ""
3784
3911
 
3785
3912
  msgid "Pulp node"
3786
- msgstr "Pulp 노드"
3913
+ msgstr ""
3787
3914
 
3788
3915
  msgid "Pulp redis connection issue at %s."
3789
3916
  msgstr ""
3790
3917
 
3791
3918
  msgid "Pulp server version"
3792
- msgstr "Pulp 서버 버전"
3919
+ msgstr ""
3793
3920
 
3794
3921
  msgid "Pulp storage"
3795
- msgstr "Pulp 스토리지"
3922
+ msgstr ""
3796
3923
 
3797
3924
  msgid "Pulp task error"
3798
3925
  msgstr "Pulp 작업 오류 "
@@ -3801,7 +3928,7 @@ msgid "Pulpcore"
3801
3928
  msgstr ""
3802
3929
 
3803
3930
  msgid "Quantity"
3804
- msgstr "수량 "
3931
+ msgstr ""
3805
3932
 
3806
3933
  msgid "Quantity must not be above ${pool.available}"
3807
3934
  msgstr ""
@@ -3822,28 +3949,29 @@ msgid "Quantity to Allocate"
3822
3949
  msgstr ""
3823
3950
 
3824
3951
  msgid "RAM: %s GB"
3825
- msgstr "RAM: %sGB"
3952
+ msgstr "RAM: %s GB"
3826
3953
 
3827
3954
  msgid "RH Repos"
3828
3955
  msgstr ""
3829
3956
 
3830
3957
  msgid "RPM"
3831
- msgstr "RPM"
3958
+ msgstr ""
3832
3959
 
3833
3960
  msgid "RPM name"
3834
3961
  msgstr ""
3835
3962
 
3963
+ # translation auto-copied from project RHN Satellite Installation Guide, version 5.6, document Importing_and_Synchronizing
3836
3964
  msgid "RPMs"
3837
3965
  msgstr "RPM"
3838
3966
 
3839
3967
  msgid "Realm IDs"
3840
- msgstr "영역 ID "
3968
+ msgstr ""
3841
3969
 
3842
3970
  msgid "Reboot required"
3843
3971
  msgstr ""
3844
3972
 
3845
3973
  msgid "Recently Expired Subscriptions"
3846
- msgstr "최근에 만료된 서브스크립션"
3974
+ msgstr ""
3847
3975
 
3848
3976
  msgid "Recommended Repositories"
3849
3977
  msgstr ""
@@ -3852,7 +3980,7 @@ msgid "Red Hat CDN URL"
3852
3980
  msgstr "Red Hat CDN URL"
3853
3981
 
3854
3982
  msgid "Red Hat Provider Details"
3855
- msgstr "Red Hat 공급자 정보 "
3983
+ msgstr ""
3856
3984
 
3857
3985
  msgid "Red Hat Repositories"
3858
3986
  msgstr "Red Hat 리포지터리 "
@@ -3867,7 +3995,7 @@ msgid "Red Hat repositories cannot be manipulated."
3867
3995
  msgstr "Red Hat 리포지터리를 조작할 수 없습니다. "
3868
3996
 
3869
3997
  msgid "Refresh"
3870
- msgstr "새로고침 "
3998
+ msgstr ""
3871
3999
 
3872
4000
  msgid "Refresh Manifest"
3873
4001
  msgstr "매니페스트 새로 고침 "
@@ -3891,7 +4019,7 @@ msgid "Registry name pattern will result in invalid container image name of memb
3891
4019
  msgstr ""
3892
4020
 
3893
4021
  msgid "Reindex subscriptions"
3894
- msgstr "서브스크립션 다시 인덱싱"
4022
+ msgstr ""
3895
4023
 
3896
4024
  msgid "Release version for this Host to use (7Server, 7.1, etc)"
3897
4025
  msgstr ""
@@ -3909,7 +4037,7 @@ msgid "Reload data"
3909
4037
  msgstr "데이터 다시 불러오기 "
3910
4038
 
3911
4039
  msgid "Remote action:"
3912
- msgstr "원격 작업:"
4040
+ msgstr ""
3913
4041
 
3914
4042
  msgid "Removal of package group(s) requested: %{groups}"
3915
4043
  msgstr ""
@@ -3917,6 +4045,9 @@ msgstr ""
3917
4045
  msgid "Removal of package(s) requested: %{packages}"
3918
4046
  msgstr ""
3919
4047
 
4048
+ msgid "Remove"
4049
+ msgstr ""
4050
+
3920
4051
  msgid "Remove Content"
3921
4052
  msgstr "컨텐츠 삭제 "
3922
4053
 
@@ -3941,11 +4072,14 @@ msgstr ""
3941
4072
  msgid "Remove content view version"
3942
4073
  msgstr "컨텐츠 뷰 버전 삭제 "
3943
4074
 
4075
+ msgid "Remove content views"
4076
+ msgstr ""
4077
+
3944
4078
  msgid "Remove from Environment"
3945
4079
  msgstr "환경에서 삭제 "
3946
4080
 
3947
4081
  msgid "Remove hosts from the host collection"
3948
- msgstr "호스트 컬렉션에서 호스트 삭제"
4082
+ msgstr ""
3949
4083
 
3950
4084
  msgid "Remove lifecycle environments from the smart proxy"
3951
4085
  msgstr ""
@@ -3975,10 +4109,10 @@ msgid "Remove products from sync plan"
3975
4109
  msgstr "동기화 계획에서 제품 삭제 "
3976
4110
 
3977
4111
  msgid "Remove subscriptions"
3978
- msgstr "서브스크립션 삭제"
4112
+ msgstr ""
3979
4113
 
3980
4114
  msgid "Remove subscriptions from %s"
3981
- msgstr "%s에서 서브스크립션 삭제"
4115
+ msgstr ""
3982
4116
 
3983
4117
  msgid "Remove subscriptions from one or more hosts"
3984
4118
  msgstr ""
@@ -3986,6 +4120,12 @@ msgstr ""
3986
4120
  msgid "Remove versions and/or environments from a content view and reassign systems and keys"
3987
4121
  msgstr "컨텐츠 뷰에서 버전 및 환경 삭제 후 시스템 및 키 다시 지정 "
3988
4122
 
4123
+ msgid "Removed component from content view"
4124
+ msgstr ""
4125
+
4126
+ msgid "Removed components from content view"
4127
+ msgstr ""
4128
+
3989
4129
  msgid "Removing Package Group..."
3990
4130
  msgstr "패키지 그룹 삭제 중..."
3991
4131
 
@@ -3993,23 +4133,22 @@ msgid "Removing Package..."
3993
4133
  msgstr "패키지 삭제 중..."
3994
4134
 
3995
4135
  msgid "Repo Type"
3996
- msgstr "리포지터리 유형 "
4136
+ msgstr ""
3997
4137
 
4138
+ # translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author eukim
3998
4139
  msgid "Repositories"
3999
4140
  msgstr "리포지터리 "
4000
4141
 
4001
4142
  msgid "Repositories from published Content Views are not allowed."
4002
4143
  msgstr "공개된 컨텐츠 뷰에서 리포지터리는 허용되지 않습니다. "
4003
4144
 
4145
+ # translation auto-copied from project PressGang CCMS topics, version 1, document 30851-704293, author eukim
4004
4146
  msgid "Repository"
4005
4147
  msgstr "리포지터리 "
4006
4148
 
4007
4149
  msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
4008
4150
  msgstr "리포지터리 %s는 공개된 컨텐츠 뷰에 이미 포함되어 있으므로 삭제할 수 없습니다. "
4009
4151
 
4010
- msgid "Repository %s cannot be deleted since they are Red Hat repositories."
4011
- msgstr "리포지터리 %s은(는) Red Hat 리포지터리이기 때문에 삭제할 수 없습니다. "
4012
-
4013
4152
  msgid "Repository '%(repoName)s' has been disabled."
4014
4153
  msgstr ""
4015
4154
 
@@ -4020,14 +4159,12 @@ msgid "Repository Id associated with the kickstart repo used for provisioning"
4020
4159
  msgstr ""
4021
4160
 
4022
4161
  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."
4023
- msgstr "게시된 컨텐츠 뷰에 이미 포함되었기 때문에 리포지터리를 삭제할 수 없습니다. 삭제하기 전에 이 리포지터리가 포함된 모든 컨텐츠 뷰 버전을 먼저 삭제하십시오."
4162
+ msgstr ""
4024
4163
 
4025
4164
  msgid "Repository cannot be disabled since it has already been promoted."
4026
4165
  msgstr "리포지터리는 이미 승격되었기 때문에 이를 비활성화할 수 없습니다. "
4027
4166
 
4028
- msgid "Repository content type must be 'yum' to export."
4029
- msgstr ""
4030
-
4167
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
4031
4168
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
4032
4169
  msgstr "리포지터리가 이미 환경 %{to_env}에 있는 %{cv_name}에 복제되어 있습니다 "
4033
4170
 
@@ -4049,6 +4186,7 @@ msgstr "리포지터리를 찾을 수 없음 "
4049
4186
  msgid "Repository set name to search on"
4050
4187
  msgstr "검색할 리포지터리 세트 이름 "
4051
4188
 
4189
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
4052
4190
  msgid "Repository sets are not available for custom products."
4053
4191
  msgstr "리포지터리 세트는 사용자 정의 제품에서 사용할 수 없습니다."
4054
4192
 
@@ -4058,6 +4196,9 @@ msgstr ""
4058
4196
  msgid "Republish Version Repositories"
4059
4197
  msgstr ""
4060
4198
 
4199
+ msgid "Requirements yaml is invalid!"
4200
+ msgstr ""
4201
+
4061
4202
  msgid "Requires Virt-Who"
4062
4203
  msgstr ""
4063
4204
 
@@ -4068,7 +4209,7 @@ msgid "Resolve traces for one or more hosts"
4068
4209
  msgstr ""
4069
4210
 
4070
4211
  msgid "Resource"
4071
- msgstr "리소스"
4212
+ msgstr ""
4072
4213
 
4073
4214
  msgid "Restart Services via Katello interface"
4074
4215
  msgstr ""
@@ -4076,11 +4217,12 @@ msgstr ""
4076
4217
  msgid "Restrict Composite Content View promotion"
4077
4218
  msgstr ""
4078
4219
 
4220
+ # translation auto-copied from project Red Hat Satellite Installation Guide, version 6.0, document chap-Uninstalling_Red_Hat_Satellite_Server_and_Capsule_Server
4079
4221
  msgid "Result"
4080
4222
  msgstr "결과 "
4081
4223
 
4082
4224
  msgid "Retrieve a single errata for a host"
4083
- msgstr "호스트에 대한 단일 에라타를 가져옵니다."
4225
+ msgstr ""
4084
4226
 
4085
4227
  msgid "Return Red Hat (non-custom) products only"
4086
4228
  msgstr ""
@@ -4100,9 +4242,6 @@ msgstr ""
4100
4242
  msgid "Return errata that are upgradable on one or more hosts"
4101
4243
  msgstr ""
4102
4244
 
4103
- msgid "Return errata that can be added to the Content View Version via an Incremental Update. Will be removed in Katello 4.1."
4104
- msgstr ""
4105
-
4106
4245
  msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
4107
4246
  msgstr ""
4108
4247
 
@@ -4128,10 +4267,10 @@ msgid "Return packages that can be added to the specified object. Only the valu
4128
4267
  msgstr ""
4129
4268
 
4130
4269
  msgid "Return subscriptions that match installed products of the specified host"
4131
- msgstr "지정한 호스트의 설치된 제품과 일치하는 서브스크립션 반환"
4270
+ msgstr ""
4132
4271
 
4133
4272
  msgid "Return subscriptions which do not overlap with a currently-attached subscription"
4134
- msgstr "현재 연결된 서브스크립션과 중복되지 않는 서브스크립션 반환"
4273
+ msgstr ""
4135
4274
 
4136
4275
  msgid "Return the content of a Content Credential, used directly by yum"
4137
4276
  msgstr ""
@@ -4143,17 +4282,18 @@ msgid "Returns content that can be both added and is currently added to the obje
4143
4282
  msgstr ""
4144
4283
 
4145
4284
  msgid "Role"
4146
- msgstr "역할 "
4285
+ msgstr ""
4147
4286
 
4148
4287
  msgid "Role of host"
4149
4288
  msgstr ""
4150
4289
 
4151
4290
  msgid "Roles"
4152
- msgstr "역할 "
4291
+ msgstr ""
4153
4292
 
4154
4293
  msgid "Run Sync Plan:"
4155
4294
  msgstr ""
4156
4295
 
4296
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author eukim
4157
4297
  msgid "Running"
4158
4298
  msgstr "실행 중 "
4159
4299
 
@@ -4170,17 +4310,18 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
4170
4310
  msgstr ""
4171
4311
 
4172
4312
  msgid "Save"
4173
- msgstr "저장"
4313
+ msgstr ""
4174
4314
 
4175
4315
  msgid "Schedule errata for installation using katello-agent. %s"
4176
4316
  msgstr ""
4177
4317
 
4178
4318
  msgid "Search"
4179
- msgstr "검색 "
4319
+ msgstr ""
4180
4320
 
4181
4321
  msgid "Search pattern (defaults to '*')"
4182
4322
  msgstr ""
4183
4323
 
4324
+ # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/java/StringResource
4184
4325
  msgid "Search string"
4185
4326
  msgstr "검색 문자열"
4186
4327
 
@@ -4193,33 +4334,39 @@ msgstr ""
4193
4334
  msgid "Search string for hosts to perform an action on"
4194
4335
  msgstr ""
4195
4336
 
4337
+ # translation auto-copied from project CFSE, version sam-1.2, document app
4196
4338
  msgid "Security"
4197
4339
  msgstr "보안 "
4198
4340
 
4199
4341
  msgid "Security errata applicable"
4200
- msgstr "적용 가능한 보안 에라타"
4342
+ msgstr ""
4201
4343
 
4202
4344
  msgid "Security errata installable"
4203
4345
  msgstr ""
4204
4346
 
4205
4347
  msgid "Select"
4206
- msgstr "선택 "
4348
+ msgstr ""
4207
4349
 
4350
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
4208
4351
  msgid "Select All"
4209
4352
  msgstr "모두 선택 "
4210
4353
 
4211
4354
  msgid "Select Content View"
4212
4355
  msgstr "컨텐츠 뷰 선택 "
4213
4356
 
4357
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4214
4358
  msgid "Select None"
4215
4359
  msgstr "선택하지 않음 "
4216
4360
 
4217
4361
  msgid "Select Organization"
4218
- msgstr "조직 선택 "
4362
+ msgstr ""
4219
4363
 
4220
4364
  msgid "Select Value"
4221
4365
  msgstr ""
4222
4366
 
4367
+ msgid "Select a lifecycle environment from the available promotion paths to promote new version."
4368
+ msgstr ""
4369
+
4223
4370
  msgid "Select all rows"
4224
4371
  msgstr ""
4225
4372
 
@@ -4229,6 +4376,10 @@ msgstr "조직 선택 "
4229
4376
  msgid "Select an organization"
4230
4377
  msgstr ""
4231
4378
 
4379
+ msgid "Select available version of ${cvName} to use"
4380
+ msgstr ""
4381
+
4382
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
4232
4383
  msgid "Select hosts to assign to %s"
4233
4384
  msgstr "%s에 할당할 호스트 선택 "
4234
4385
 
@@ -4239,7 +4390,7 @@ msgid "Select the installation media that will be used to provision this host. C
4239
4390
  msgstr ""
4240
4391
 
4241
4392
  msgid "Service Level"
4242
- msgstr "서비스 레벨 "
4393
+ msgstr ""
4243
4394
 
4244
4395
  msgid "Service Level %s"
4245
4396
  msgstr "서비스 레벨 %s"
@@ -4274,6 +4425,7 @@ msgstr ""
4274
4425
  msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
4275
4426
  msgstr ""
4276
4427
 
4428
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4277
4429
  msgid "Severity"
4278
4430
  msgstr "중요도"
4279
4431
 
@@ -4332,7 +4484,7 @@ msgid "Show releases available for the content host"
4332
4484
  msgstr "컨텐츠 호스트에 사용 가능한 릴리즈 표시 "
4333
4485
 
4334
4486
  msgid "Show the available repository types"
4335
- msgstr "사용 가능한 리포지터리 유형 표시"
4487
+ msgstr ""
4336
4488
 
4337
4489
  msgid "Shows status of Katello system and it's subcomponents"
4338
4490
  msgstr ""
@@ -4352,6 +4504,9 @@ msgstr ""
4352
4504
  msgid "Simple Content Access has been enabled for '%{subject}'."
4353
4505
  msgstr ""
4354
4506
 
4507
+ msgid "Single content view consisting of repositories"
4508
+ msgstr ""
4509
+
4355
4510
  msgid "Size of file to upload"
4356
4511
  msgstr ""
4357
4512
 
@@ -4359,11 +4514,15 @@ msgid "Skip metadata check on each repository on the smart proxy"
4359
4514
  msgstr ""
4360
4515
 
4361
4516
  msgid "Skipped pulp_auth check after failed pulp check"
4362
- msgstr "실패한 pulp 검사 후 pulp_auth 검사를 건너뛰었습니다."
4517
+ msgstr ""
4363
4518
 
4364
4519
  msgid "Smart proxy IDs"
4365
- msgstr "스마트 프록시 ID "
4520
+ msgstr ""
4521
+
4522
+ msgid "Smart proxy content source not found!"
4523
+ msgstr ""
4366
4524
 
4525
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4367
4526
  msgid "Sockets: %s"
4368
4527
  msgstr "소켓: %s"
4369
4528
 
@@ -4382,6 +4541,21 @@ msgstr ""
4382
4541
  msgid "Some services are not properly started. See the About page for more information."
4383
4542
  msgstr ""
4384
4543
 
4544
+ msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
4545
+ msgstr ""
4546
+
4547
+ msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
4548
+ msgstr ""
4549
+
4550
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
4551
+ msgstr ""
4552
+
4553
+ msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
4554
+ msgstr ""
4555
+
4556
+ msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
4557
+ msgstr ""
4558
+
4385
4559
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
4386
4560
  msgstr ""
4387
4561
 
@@ -4407,7 +4581,7 @@ msgid "Sort field and order, eg. 'id DESC'"
4407
4581
  msgstr ""
4408
4582
 
4409
4583
  msgid "Source RPM"
4410
- msgstr "소스 RPM"
4584
+ msgstr ""
4411
4585
 
4412
4586
  msgid "Specify an export chunk size less than 1_000_000 GB"
4413
4587
  msgstr ""
@@ -4419,25 +4593,28 @@ msgid "Split the exported content into archives no greater than the specified si
4419
4593
  msgstr ""
4420
4594
 
4421
4595
  msgid "Stacking ID"
4422
- msgstr "스태킹 ID"
4596
+ msgstr ""
4423
4597
 
4598
+ # translation auto-copied from project subscription-manager, version 1.10.10, document keys
4424
4599
  msgid "Start Date"
4425
4600
  msgstr "시작 날짜 "
4426
4601
 
4427
4602
  msgid "Start Date and Time can't be blank"
4428
4603
  msgstr "시작 날짜 및 시간을 비워둘 수 없음 "
4429
4604
 
4605
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author eukim
4430
4606
  msgid "Start Time"
4431
4607
  msgstr "시작 시간 "
4432
4608
 
4433
4609
  msgid "Starts"
4434
- msgstr "시작 "
4610
+ msgstr ""
4435
4611
 
4612
+ # translation auto-copied from project Satellite6 Hammer CLI Foreman, version 6.1, document hammer-cli-foreman
4436
4613
  msgid "Status"
4437
4614
  msgstr "상태 "
4438
4615
 
4439
4616
  msgid "Storage"
4440
- msgstr "스토리지"
4617
+ msgstr ""
4441
4618
 
4442
4619
  msgid "Stream"
4443
4620
  msgstr ""
@@ -4446,11 +4623,12 @@ msgid "Streams based on the host based on their status"
4446
4623
  msgstr ""
4447
4624
 
4448
4625
  msgid "Submit"
4449
- msgstr "보내기"
4626
+ msgstr ""
4450
4627
 
4451
4628
  msgid "Subnet IDs"
4452
- msgstr "서브넷 ID "
4629
+ msgstr ""
4453
4630
 
4631
+ # translation auto-copied from project PressGang CCMS topics, version 1, document 30851-704293, author eukim
4454
4632
  msgid "Subscription"
4455
4633
  msgstr "서브스크립션 "
4456
4634
 
@@ -4458,16 +4636,16 @@ msgid "Subscription Allocation"
4458
4636
  msgstr ""
4459
4637
 
4460
4638
  msgid "Subscription Details"
4461
- msgstr "서브스크립션 정보 "
4639
+ msgstr ""
4462
4640
 
4463
4641
  msgid "Subscription ID"
4464
4642
  msgstr "서브스크립션 ID"
4465
4643
 
4466
4644
  msgid "Subscription Info"
4467
- msgstr "서브스크립션 정보 "
4645
+ msgstr ""
4468
4646
 
4469
4647
  msgid "Subscription Manifest"
4470
- msgstr "서브스크립션 매니페스트"
4648
+ msgstr ""
4471
4649
 
4472
4650
  msgid "Subscription Manifest validity check"
4473
4651
  msgstr ""
@@ -4476,7 +4654,7 @@ msgid "Subscription Name"
4476
4654
  msgstr ""
4477
4655
 
4478
4656
  msgid "Subscription Pool id"
4479
- msgstr "서브스크립션 풀 ID"
4657
+ msgstr ""
4480
4658
 
4481
4659
  msgid "Subscription Pool uuid"
4482
4660
  msgstr "서브스크립션 풀 uuid"
@@ -4491,7 +4669,7 @@ msgid "Subscription expiration notification"
4491
4669
  msgstr ""
4492
4670
 
4493
4671
  msgid "Subscription id is nil."
4494
- msgstr "서브스크립션 ID가 nil입니다."
4672
+ msgstr ""
4495
4673
 
4496
4674
  msgid "Subscription identifier"
4497
4675
  msgstr "서브스크립션 id"
@@ -4512,10 +4690,10 @@ msgid "Subscription was not persisted - %{error_message}"
4512
4690
  msgstr ""
4513
4691
 
4514
4692
  msgid "Subscriptions"
4515
- msgstr "서브스크립션 "
4693
+ msgstr ""
4516
4694
 
4517
4695
  msgid "Subscriptions Expiring in 120 Days"
4518
- msgstr "120일 후 서브스크립션 만료"
4696
+ msgstr ""
4519
4697
 
4520
4698
  msgid "Subscriptions expiring soon"
4521
4699
  msgstr ""
@@ -4533,7 +4711,7 @@ msgid "Success"
4533
4711
  msgstr "성공 "
4534
4712
 
4535
4713
  msgid "Successfully added %s Host(s)."
4536
- msgstr "%s개의 호스트를 추가했습니다."
4714
+ msgstr ""
4537
4715
 
4538
4716
  msgid "Successfully added %{count} content host(s) to host collection %{host_collection}."
4539
4717
  msgstr "호스트 컬렉션 %{host_collection}에 %{count} 컨텐츠 호스트를 성공적으로 추가했습니다. "
@@ -4545,7 +4723,7 @@ msgid "Successfully initiated removal of %s product(s)"
4545
4723
  msgstr "%s 제품의 삭제를 성공적으로 시작했습니다 "
4546
4724
 
4547
4725
  msgid "Successfully removed %s Host(s)."
4548
- msgstr "%s개의 호스트를 삭제했습니다."
4726
+ msgstr ""
4549
4727
 
4550
4728
  msgid "Successfully removed %{count} content host(s) from host collection %{host_collection}."
4551
4729
  msgstr "호스트 컬렉션 %{host_collection}에서 %{count} 컨텐츠 호스트를 성공적으로 삭제했습니다. "
@@ -4553,15 +4731,17 @@ msgstr "호스트 컬렉션 %{host_collection}에서 %{count} 컨텐츠 호스
4553
4731
  msgid "Successfully synchronized."
4554
4732
  msgstr ""
4555
4733
 
4734
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4556
4735
  msgid "Summary"
4557
4736
  msgstr "요약 "
4558
4737
 
4559
4738
  msgid "Support Type"
4560
- msgstr "지원 유형 "
4739
+ msgstr ""
4561
4740
 
4562
4741
  msgid "Supported Content Types"
4563
4742
  msgstr ""
4564
4743
 
4744
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4565
4745
  msgid "Sync Canceled"
4566
4746
  msgstr "동기화 취소 "
4567
4747
 
@@ -4574,11 +4754,12 @@ msgstr ""
4574
4754
  msgid "Sync Incomplete"
4575
4755
  msgstr "동기화가 완료되지 않았습니다 "
4576
4756
 
4757
+ # translation auto-copied from project Red Hat Satellite User Guide, version 6.0, document Using_the_CloudForms_System_Engine_Dashboard
4577
4758
  msgid "Sync Overview"
4578
4759
  msgstr "동기화 개요 "
4579
4760
 
4580
4761
  msgid "Sync Plan"
4581
- msgstr "동기화 계획 "
4762
+ msgstr ""
4582
4763
 
4583
4764
  msgid "Sync Plan: "
4584
4765
  msgstr ""
@@ -4605,7 +4786,7 @@ msgid "Sync a repository"
4605
4786
  msgstr "리포지터리 동기화 "
4606
4787
 
4607
4788
  msgid "Sync all repositories for a product"
4608
- msgstr "제품의 모든 리포지터리 동기화"
4789
+ msgstr ""
4609
4790
 
4610
4791
  msgid "Sync capsule"
4611
4792
  msgstr ""
@@ -4634,11 +4815,12 @@ msgstr ""
4634
4815
  msgid "Synchronize"
4635
4816
  msgstr "동기화 "
4636
4817
 
4818
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4637
4819
  msgid "Synchronize Now"
4638
4820
  msgstr "지금 동기화 "
4639
4821
 
4640
4822
  msgid "Synchronize capsule content"
4641
- msgstr "capsule 컨텐츠 동기화"
4823
+ msgstr ""
4642
4824
 
4643
4825
  msgid "Synchronize repository"
4644
4826
  msgstr "리포지터리 동기화 "
@@ -4665,7 +4847,7 @@ msgid "System Status"
4665
4847
  msgstr ""
4666
4848
 
4667
4849
  msgid "Tags"
4668
- msgstr "태그"
4850
+ msgstr ""
4669
4851
 
4670
4852
  msgid "Task"
4671
4853
  msgstr ""
@@ -4680,8 +4862,9 @@ msgid "Task detail"
4680
4862
  msgstr ""
4681
4863
 
4682
4864
  msgid "Temporary"
4683
- msgstr "임시"
4865
+ msgstr ""
4684
4866
 
4867
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
4685
4868
  msgid "The '%s' environment cannot contain a changeset!"
4686
4869
  msgstr "'%s' 환경에 변경 집합을 포함할 수 없습니다! "
4687
4870
 
@@ -4721,12 +4904,6 @@ msgstr "새로 생성된 컨텐츠 뷰 버전 설명 "
4721
4904
  msgid "The email notification will include subscriptions expiring in this number of days or fewer."
4722
4905
  msgstr ""
4723
4906
 
4724
- msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
4725
- msgstr ""
4726
-
4727
- msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
4728
- msgstr ""
4729
-
4730
4907
  msgid "The erratum filter rule end date is in an invalid format or type."
4731
4908
  msgstr "에라타 필터 규칙 종료 날짜가 잘못된 형식 또는 유형으로 되어 있습니다."
4732
4909
 
@@ -4751,7 +4928,7 @@ msgid ""
4751
4928
  msgstr ""
4752
4929
 
4753
4930
  msgid "The id of the host to alter"
4754
- msgstr "변경할 호스트의 ID"
4931
+ msgstr ""
4755
4932
 
4756
4933
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4757
4934
  msgstr ""
@@ -4759,6 +4936,9 @@ msgstr ""
4759
4936
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
4760
4937
  msgstr ""
4761
4938
 
4939
+ msgid "The maximum number of versions of each package to keep."
4940
+ msgstr ""
4941
+
4762
4942
  msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
4763
4943
  msgstr ""
4764
4944
 
@@ -4777,7 +4957,7 @@ msgid ""
4777
4957
  msgstr ""
4778
4958
 
4779
4959
  msgid "The page you are attempting to access requires selecting a specific organization."
4780
- msgstr "액세스하려는 페이지에서 특정 조직을 선택해야 합니다."
4960
+ msgstr ""
4781
4961
 
4782
4962
  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."
4783
4963
  msgstr ""
@@ -4841,6 +5021,7 @@ msgstr ""
4841
5021
  msgid "There are no errata that need to be applied to registered content hosts."
4842
5022
  msgstr "등록된 컨텐츠 호스트에 적용해야 하는 에라타가 없습니다. "
4843
5023
 
5024
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
4844
5025
  msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
4845
5026
  msgstr "활성화된 제품 또는 리포지터리가 없습니다. %{custom} 또는 %{redhat}을(를) 통해 활성화합니다."
4846
5027
 
@@ -4860,7 +5041,7 @@ msgid "There was a problem retrieving Activation Key data from the server."
4860
5041
  msgstr ""
4861
5042
 
4862
5043
  msgid "There was an issue with the backend service %s: "
4863
- msgstr "백엔드 서비스 %s에 문제가 있습니다: "
5044
+ msgstr ""
4864
5045
 
4865
5046
  msgid "There's no running synchronization for this smart proxy."
4866
5047
  msgstr ""
@@ -4875,7 +5056,7 @@ msgid "This Organization's subscription manifest has expired. Please import a ne
4875
5056
  msgstr ""
4876
5057
 
4877
5058
  msgid "This action doesn't support package groups"
4878
- msgstr "이 작업은 패키지 그룹을 지원하지 않습니다."
5059
+ msgstr ""
4879
5060
 
4880
5061
  msgid "This action uses katello-agent, which is currently disabled. Use remote execution instead."
4881
5062
  msgstr ""
@@ -4898,9 +5079,6 @@ msgstr ""
4898
5079
  msgid "This is disabled because a manifest task is in progress"
4899
5080
  msgstr ""
4900
5081
 
4901
- msgid "This is disabled because disconnected mode is enabled."
4902
- msgstr ""
4903
-
4904
5082
  msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
4905
5083
  msgstr ""
4906
5084
 
@@ -4935,10 +5113,10 @@ msgid "This subscription is not relevant to the current organization."
4935
5113
  msgstr ""
4936
5114
 
4937
5115
  msgid "Time in seconds to wait for a Host to finish a remote action"
4938
- msgstr "호스트가 원격 작업을 마칠 때까지 기다리는 시간(초)"
5116
+ msgstr ""
4939
5117
 
4940
5118
  msgid "Time in seconds to wait for a Host to pickup a remote action"
4941
- msgstr "호스트가 원격 작업을 시작할 때까지 기다리는 시간(초)"
5119
+ msgstr ""
4942
5120
 
4943
5121
  msgid "Timeout when refreshing a manifest (in seconds)"
4944
5122
  msgstr ""
@@ -4946,6 +5124,7 @@ msgstr ""
4946
5124
  msgid "Timestamp"
4947
5125
  msgstr ""
4948
5126
 
5127
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
4949
5128
  msgid "Title"
4950
5129
  msgstr "제목"
4951
5130
 
@@ -4965,7 +5144,7 @@ msgid "Traces"
4965
5144
  msgstr ""
4966
5145
 
4967
5146
  msgid "Trigger an auto-attach of subscriptions"
4968
- msgstr "서브스크립션 자동 첨부 트리거"
5147
+ msgstr ""
4969
5148
 
4970
5149
  msgid "Trigger an auto-attach of subscriptions on one or more hosts"
4971
5150
  msgstr ""
@@ -4974,7 +5153,7 @@ msgid "Try changing your search settings."
4974
5153
  msgstr ""
4975
5154
 
4976
5155
  msgid "Trying to cancel the synchronization..."
4977
- msgstr "동기화를 취소하는 중..."
5156
+ msgstr ""
4978
5157
 
4979
5158
  msgid "Type"
4980
5159
  msgstr ""
@@ -4985,8 +5164,11 @@ msgstr ""
4985
5164
  msgid "Type of content: \"cert\", \"gpg_key\""
4986
5165
  msgstr ""
4987
5166
 
5167
+ msgid "URL needs to have a trailing /"
5168
+ msgstr ""
5169
+
4988
5170
  msgid "UUID"
4989
- msgstr "UUID"
5171
+ msgstr ""
4990
5172
 
4991
5173
  msgid "UUID of the consumer"
4992
5174
  msgstr ""
@@ -5004,18 +5186,12 @@ msgid "UUIDs of the virtual guests from the host's hypervisor"
5004
5186
  msgstr ""
5005
5187
 
5006
5188
  msgid "Unable to connect. Got: %s"
5007
- msgstr "연결할 수 없습니다. 오류 메시지: %s"
5008
-
5009
- msgid "Unable to detect pulp storage"
5010
- msgstr "pulp 스토리지를 감지할 수 없습니다."
5011
-
5012
- msgid "Unable to detect puppet path"
5013
5189
  msgstr ""
5014
5190
 
5015
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5191
+ msgid "Unable to detect pulp storage"
5016
5192
  msgstr ""
5017
5193
 
5018
- msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5194
+ msgid "Unable to detect puppet path"
5019
5195
  msgstr ""
5020
5196
 
5021
5197
  msgid "Unable to find product '%s' in organization '%s'"
@@ -5043,7 +5219,7 @@ msgid "Unable to send errata e-mail notification: %{error}"
5043
5219
  msgstr ""
5044
5220
 
5045
5221
  msgid "Unable to sync repo. This repository does not have a feed url."
5046
- msgstr "리포지터리를 동기화할 수 없습니다. 이 리포지터리에는 피드 URL이 없습니다."
5222
+ msgstr ""
5047
5223
 
5048
5224
  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."
5049
5225
  msgstr "리포지터리를 동기화할 수 없습니다. 동기화할 권한이 없거나 선택한 리포지터리에 피드 URL이 없을 수 있습니다. "
@@ -5064,7 +5240,7 @@ msgid "Unattach a subscription"
5064
5240
  msgstr "서브스크립션 할당 해제 "
5065
5241
 
5066
5242
  msgid "Unentitled"
5067
- msgstr "인타이틀먼트가 없음"
5243
+ msgstr ""
5068
5244
 
5069
5245
  msgid "Unfiltered params array: %s."
5070
5246
  msgstr ""
@@ -5072,6 +5248,7 @@ msgstr ""
5072
5248
  msgid "Uninstall packages remotely using katello-agent. %s"
5073
5249
  msgstr ""
5074
5250
 
5251
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
5075
5252
  msgid "Unknown"
5076
5253
  msgstr "알 수 없음 "
5077
5254
 
@@ -5079,19 +5256,19 @@ msgid "Unknown Action"
5079
5256
  msgstr ""
5080
5257
 
5081
5258
  msgid "Unknown errata status"
5082
- msgstr "알 수 없는 에라타 상태"
5259
+ msgstr ""
5083
5260
 
5084
5261
  msgid "Unknown or Unregistered"
5085
5262
  msgstr ""
5086
5263
 
5087
5264
  msgid "Unknown subscription status"
5088
- msgstr "알 수 없는 서브스크립션 상태"
5265
+ msgstr ""
5089
5266
 
5090
5267
  msgid "Unknown traces status"
5091
5268
  msgstr ""
5092
5269
 
5093
5270
  msgid "Unlimited"
5094
- msgstr "제한 없음 "
5271
+ msgstr ""
5095
5272
 
5096
5273
  msgid "Unregister host %s before assigning an organization"
5097
5274
  msgstr ""
@@ -5108,6 +5285,7 @@ msgstr ""
5108
5285
  msgid "Unsubscribed hypervisor"
5109
5286
  msgstr ""
5110
5287
 
5288
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
5111
5289
  msgid "Unsupported URL protocol %s."
5112
5290
  msgstr "지원되지 않는 URL 프로토콜 %s입니다."
5113
5291
 
@@ -5166,10 +5344,10 @@ msgid "Update content urls"
5166
5344
  msgstr ""
5167
5345
 
5168
5346
  msgid "Update for host"
5169
- msgstr "호스트에 대한 업데이트"
5347
+ msgstr ""
5170
5348
 
5171
5349
  msgid "Update for host %s"
5172
- msgstr "%s 호스트에 대한 업데이트"
5350
+ msgstr ""
5173
5351
 
5174
5352
  msgid "Update http proxy"
5175
5353
  msgstr ""
@@ -5225,8 +5403,14 @@ msgstr "활성화된 리포지터리에 대한 정보 업데이트 "
5225
5403
  msgid "Update the quantity of one or more subscriptions on an upstream allocation"
5226
5404
  msgstr ""
5227
5405
 
5406
+ msgid "Update version"
5407
+ msgstr ""
5408
+
5228
5409
  msgid "Updated"
5229
- msgstr "업데이트 일시 "
5410
+ msgstr ""
5411
+
5412
+ msgid "Updated component details"
5413
+ msgstr ""
5230
5414
 
5231
5415
  msgid "Updates"
5232
5416
  msgstr ""
@@ -5267,9 +5451,6 @@ msgstr "서브스크립션 매니페스트 업로드 "
5267
5451
  msgid "Upload content into the repository"
5268
5452
  msgstr "컨텐츠를 리포지터리에 업로드 "
5269
5453
 
5270
- msgid "Upload errata into"
5271
- msgstr ""
5272
-
5273
5454
  msgid "Upload into"
5274
5455
  msgstr "업로드 "
5275
5456
 
@@ -5307,7 +5488,7 @@ msgid "Used to determine download concurrency of the repository in pulp3. Use va
5307
5488
  msgstr ""
5308
5489
 
5309
5490
  msgid "User"
5310
- msgstr "사용자 "
5491
+ msgstr ""
5311
5492
 
5312
5493
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5313
5494
  msgstr "사용자 '%s'는 조직 ID를 지정하지 않았기 때문에 기본 조직이 없습니다. "
@@ -5316,7 +5497,7 @@ msgid "User '%{user}' does not belong to Organization '%{organization}'."
5316
5497
  msgstr "사용자 '%{user}'는 조직 '%{organization}'에 속해 있지 않습니다. "
5317
5498
 
5318
5499
  msgid "User IDs"
5319
- msgstr "사용자 ID"
5500
+ msgstr ""
5320
5501
 
5321
5502
  msgid "User must be logged in."
5322
5503
  msgstr "사용자는 로그인해야 합니다. "
@@ -5328,7 +5509,7 @@ msgid "Username to access URL"
5328
5509
  msgstr ""
5329
5510
 
5330
5511
  msgid "Valid"
5331
- msgstr "유효 "
5512
+ msgstr ""
5332
5513
 
5333
5514
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5334
5515
  msgstr ""
@@ -5343,20 +5524,28 @@ msgid "Verify checksum of repository contents"
5343
5524
  msgstr ""
5344
5525
 
5345
5526
  msgid "Version"
5346
- msgstr "버전 "
5527
+ msgstr ""
5528
+
5529
+ msgid "Version "
5530
+ msgstr ""
5531
+
5532
+ msgid "Version ${item.version}"
5533
+ msgstr ""
5347
5534
 
5348
5535
  msgid "Versions"
5349
- msgstr "버전 "
5536
+ msgstr ""
5350
5537
 
5351
5538
  msgid "Versions will appear here when the content view is published."
5352
5539
  msgstr ""
5353
5540
 
5541
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
5354
5542
  msgid "View %{view} has not been promoted to %{env}"
5355
5543
  msgstr "보기 %{view}가 %{env}에 승격되었습니다"
5356
5544
 
5357
5545
  msgid "View a report of the affected hosts"
5358
5546
  msgstr ""
5359
5547
 
5548
+ # translation auto-copied from project nm-applet, version 0.8.1, document nm-applet, author eukim
5360
5549
  msgid "Virtual"
5361
5550
  msgstr "가상 "
5362
5551
 
@@ -5367,19 +5556,19 @@ msgid "When registering a host via subscription-manager, force use the specified
5367
5556
  msgstr ""
5368
5557
 
5369
5558
  msgid "When set to 'True' repository types that are creatable will be returned"
5370
- msgstr "'True'로 설정할 경우 생성 가능한 리포지터리 유형이 반환됩니다."
5559
+ msgstr ""
5371
5560
 
5372
5561
  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."
5373
5562
  msgstr ""
5374
5563
 
5375
5564
  msgid "Whether or not the host collection may have unlimited hosts"
5376
- msgstr "호스트 컬렉션에 호스트가 무제한 포함되는지 여부"
5565
+ msgstr ""
5377
5566
 
5378
5567
  msgid "Whether or not to auto sync the Smart Proxies after a Content View promotion."
5379
5568
  msgstr ""
5380
5569
 
5381
5570
  msgid "Whether or not to check the status of backend services such as pulp and candlepin prior to performing some actions."
5382
- msgstr "일부 작업을 수행하기 전에 pulp 및 candlepin와 같은 백엔드 서비스의 상태를 확인할지 여부입니다."
5571
+ msgstr ""
5383
5572
 
5384
5573
  msgid "Whether or not to regenerate the repository on disk. Default: true"
5385
5574
  msgstr ""
@@ -5391,10 +5580,10 @@ msgid "Whether or not to sync an external capsule after upload. Default: true"
5391
5580
  msgstr ""
5392
5581
 
5393
5582
  msgid "Whether to include available content attribute in results"
5394
- msgstr "사용 가능한 컨텐츠 속성을 결과에 포함할지 여부"
5583
+ msgstr ""
5395
5584
 
5396
5585
  msgid "Workers"
5397
- msgstr "Worker"
5586
+ msgstr ""
5398
5587
 
5399
5588
  msgid "Wrong content type submitted."
5400
5589
  msgstr ""
@@ -5403,7 +5592,7 @@ msgid "Yay empty state"
5403
5592
  msgstr ""
5404
5593
 
5405
5594
  msgid "Yes"
5406
- msgstr ""
5595
+ msgstr ""
5407
5596
 
5408
5597
  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'."
5409
5598
  msgstr ""
@@ -5418,7 +5607,7 @@ msgid "You can check sync status for repositories only in the library lifecycle
5418
5607
  msgstr "라이브러리에 있는 라이프 사이클 환경에서만 리포지터리의 동기화 상태를 확인할 수 있습니다. "
5419
5608
 
5420
5609
  msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
5421
- msgstr "호스트 컬렉션 '%{host_collection}'에 %{max_hosts}개보다 많은 호스트를 연결할 수 없습니다."
5610
+ msgstr ""
5422
5611
 
5423
5612
  msgid "You cannot set an organization's parent. This feature is disabled."
5424
5613
  msgstr "조직의 부모를 설정할 수 없습니다. 이 기능은 비활성화되어 있습니다. "
@@ -5472,7 +5661,7 @@ msgid "Your search query was invalid. Please revise it and try again. The full e
5472
5661
  msgstr ""
5473
5662
 
5474
5663
  msgid "Yum Metadata: %s"
5475
- msgstr "Yum 메타데이터: %s"
5664
+ msgstr ""
5476
5665
 
5477
5666
  msgid "a deb"
5478
5667
  msgstr ""
@@ -5517,7 +5706,7 @@ msgid "add all module streams without errata to the included/excluded list. (mod
5517
5706
  msgstr ""
5518
5707
 
5519
5708
  msgid "add all packages without errata to the included/excluded list. (package filter only)"
5520
- msgstr "모든 패키지를 에라타 없이 포함/제외된 목록에 추가합니다(패키지 필터만 해당)."
5709
+ msgstr ""
5521
5710
 
5522
5711
  msgid "all packages"
5523
5712
  msgstr "모든 패키지 "
@@ -5553,7 +5742,7 @@ msgid "are only allowed for Yum repositories."
5553
5742
  msgstr ""
5554
5743
 
5555
5744
  msgid "attempted to sync without a feed URL"
5556
- msgstr "피드 URL 없이 동기화를 시도했습니다."
5745
+ msgstr ""
5557
5746
 
5558
5747
  msgid "auto attach subscriptions upon registration"
5559
5748
  msgstr "등록 시 서브스크립션을 자동으로 첨부 "
@@ -5573,6 +5762,7 @@ msgstr ""
5573
5762
  msgid "cannot be a binary file."
5574
5763
  msgstr "바이너리 파일을 지정할 수 없습니다. "
5575
5764
 
5765
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author eukim
5576
5766
  msgid "cannot be blank"
5577
5767
  msgstr "빈 칸으로 비워 둘 수 없습니다 "
5578
5768
 
@@ -5601,7 +5791,7 @@ msgid "cannot be set for non-ostree repositories."
5601
5791
  msgstr ""
5602
5792
 
5603
5793
  msgid "cannot be set for non-yum repositories."
5604
- msgstr "비yum 리포지터리에 대해 설정할 수 없습니다."
5794
+ msgstr ""
5605
5795
 
5606
5796
  msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
5607
5797
  msgstr "ASCII 영숫자, '_', '-' 이외의 문자를 포함할 수 없습니다."
@@ -5615,14 +5805,15 @@ msgstr "복합적인 뷰의 경우 필터를 포함할 수 없습니다 "
5615
5805
  msgid "cannot contain filters whose repositories do not belong to this content view"
5616
5806
  msgstr "컨텐츠 뷰에 속하지 않는 리포지터리의 필터를 포함할 수 없습니다 "
5617
5807
 
5808
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
5618
5809
  msgid "cannot contain more than %s characters"
5619
5810
  msgstr "%s 자 이상을 포함시킬 수 없습니다 "
5620
5811
 
5621
5812
  msgid "checking Candlepin task status"
5622
- msgstr "Candlepin 태스크 상태를 확인하는 중"
5813
+ msgstr ""
5623
5814
 
5624
5815
  msgid "checking Pulp task status"
5625
- msgstr "Pulp 태스크 상태를 확인하는 중"
5816
+ msgstr ""
5626
5817
 
5627
5818
  msgid "composite content view identifier"
5628
5819
  msgstr ""
@@ -5685,7 +5876,7 @@ msgid "content view versions to compare"
5685
5876
  msgstr "비교할 컨텐츠 뷰 버전 "
5686
5877
 
5687
5878
  msgid "create a filter for a content view"
5688
- msgstr "컨텐츠 뷰의 필터 생성"
5879
+ msgstr ""
5689
5880
 
5690
5881
  msgid "deb Packages"
5691
5882
  msgstr ""
@@ -5697,8 +5888,9 @@ msgid "default package names to include in the package group"
5697
5888
  msgstr ""
5698
5889
 
5699
5890
  msgid "delete a filter"
5700
- msgstr "필터 삭제"
5891
+ msgstr ""
5701
5892
 
5893
+ # translation auto-copied from project anaconda, version 19.31.34, document anaconda
5702
5894
  msgid "description"
5703
5895
  msgstr "설명 "
5704
5896
 
@@ -5760,7 +5952,7 @@ msgid "erratum: id"
5760
5952
  msgstr "에라타: ID "
5761
5953
 
5762
5954
  msgid "erratum: search using the 'Issued On' or 'Updated On' column of the errata. Values are 'issued'/'updated'"
5763
- msgstr "에라타: 에라타의 '발급 날짜' 또는 '업데이트 날짜' 열을 사용하여 검색합니다. 값이 '발급'/'업데이트'되었습니다."
5955
+ msgstr ""
5764
5956
 
5765
5957
  msgid "erratum: start date (YYYY-MM-DD)"
5766
5958
  msgstr "에라타: 시작일 (YYYY-MM-DD) "
@@ -5778,11 +5970,14 @@ msgid "filter by sync date"
5778
5970
  msgstr "동기화 날짜에 따라 필터링 "
5779
5971
 
5780
5972
  msgid "filter content view filters by name"
5781
- msgstr "이름별로 컨텐츠 뷰 필터링"
5973
+ msgstr ""
5782
5974
 
5783
5975
  msgid "filter identifier"
5784
5976
  msgstr "필터 ID "
5785
5977
 
5978
+ msgid "filter identifiers"
5979
+ msgstr ""
5980
+
5786
5981
  msgid "filter only environments containing this name"
5787
5982
  msgstr "이름이 포함환 환경만 필터링 "
5788
5983
 
@@ -5793,17 +5988,18 @@ msgid "force content view promotion and bypass lifecycle environment restriction
5793
5988
  msgstr "컨텐츠 뷰 승격 강제 및 라이프 사이클 환경 제한을 무시 "
5794
5989
 
5795
5990
  msgid "foreman-tasks service not running or is not ready yet"
5796
- msgstr "foreman-tasks 서비스가 실행 중이 아니거나 아직 준비되지 않았습니다."
5991
+ msgstr ""
5797
5992
 
5798
5993
  msgid "has already been taken"
5799
5994
  msgstr "이미 사용되고 있습니다"
5800
5995
 
5801
5996
  msgid "has already been taken for a product in this organization."
5802
- msgstr "이 조직의 제품에 대해 이미 사용되고 있습니다."
5997
+ msgstr ""
5803
5998
 
5804
5999
  msgid "has already been taken for this product."
5805
6000
  msgstr "제품에 대해 이미 사용되고 있습니다. "
5806
6001
 
6002
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
5807
6003
  msgid "here"
5808
6004
  msgstr "여기 "
5809
6005
 
@@ -5817,7 +6013,7 @@ msgid "how often synchronization should run"
5817
6013
  msgstr "동기화 실행 빈도 "
5818
6014
 
5819
6015
  msgid "id of a host"
5820
- msgstr "호스트 ID"
6016
+ msgstr ""
5821
6017
 
5822
6018
  msgid "id of host"
5823
6019
  msgstr ""
@@ -5838,10 +6034,10 @@ msgid "if true, Katello will verify the upstream url's SSL certifcates are signe
5838
6034
  msgstr ""
5839
6035
 
5840
6036
  msgid "initiating Candlepin task"
5841
- msgstr "Candlepin 태스크를 시작하는 중"
6037
+ msgstr ""
5842
6038
 
5843
6039
  msgid "initiating Pulp task"
5844
- msgstr "Pulp 태스크를 시작하는 중"
6040
+ msgstr ""
5845
6041
 
5846
6042
  msgid "installing errata..."
5847
6043
  msgstr "에라타 설치 중..."
@@ -5876,6 +6072,9 @@ msgstr "capsule에 이미 할당되어 있습니다 "
5876
6072
  msgid "is invalid"
5877
6073
  msgstr "유효하지 않음 "
5878
6074
 
6075
+ msgid "is not enabled. must be one of the following: %s"
6076
+ msgstr ""
6077
+
5879
6078
  msgid "label of the environment"
5880
6079
  msgstr "환경 레이블 "
5881
6080
 
@@ -5889,7 +6088,7 @@ msgid "limit to only repositories with this download policy"
5889
6088
  msgstr ""
5890
6089
 
5891
6090
  msgid "list filters"
5892
- msgstr "필터 나열"
6091
+ msgstr ""
5893
6092
 
5894
6093
  msgid "list of packages names"
5895
6094
  msgstr "패키지 이름 목록 "
@@ -5904,16 +6103,13 @@ msgid "mandatory package names to include in the package group"
5904
6103
  msgstr ""
5905
6104
 
5906
6105
  msgid "max_hosts must be given a value if this host collection is not unlimited."
5907
- msgstr "무제한 호스트 컬렉션이 아닌 경우 max_hosts에 값을 지정해야 합니다."
6106
+ msgstr ""
5908
6107
 
5909
6108
  msgid "maximum number of registered content hosts"
5910
6109
  msgstr "등록된 최대 컨텐츠 호스트 수 "
5911
6110
 
5912
- msgid "maximum size of each ISO in MB"
5913
- msgstr ""
5914
-
5915
6111
  msgid "may not be less than the number of hosts associated with the host collection."
5916
- msgstr "호스트 컬렉션에 연결된 호스트의 수보다 적을 수 없습니다."
6112
+ msgstr ""
5917
6113
 
5918
6114
  msgid "module stream ids"
5919
6115
  msgstr ""
@@ -5936,6 +6132,7 @@ msgstr ""
5936
6132
  msgid "must be unique within one organization"
5937
6133
  msgstr "하나의 조직 내에서 고유한 것이어야 함 "
5938
6134
 
6135
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
5939
6136
  msgid "must contain '%s'"
5940
6137
  msgstr "'%s'을 포함해야 합니다"
5941
6138
 
@@ -5991,7 +6188,7 @@ msgid "new name to be given to the environment"
5991
6188
  msgstr "환경에 지정할 새 이름 "
5992
6189
 
5993
6190
  msgid "no"
5994
- msgstr "no"
6191
+ msgstr ""
5995
6192
 
5996
6193
  msgid "no global default"
5997
6194
  msgstr ""
@@ -5999,6 +6196,7 @@ msgstr ""
5999
6196
  msgid "obtain manifest history for subscriptions"
6000
6197
  msgstr "서브스크립션의 매니페스트 기록 취득 "
6001
6198
 
6199
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author eukim
6002
6200
  msgid "of environment must be unique within one organization"
6003
6201
  msgstr "환경 이름은 하나의 조직 내에서 고유한 것이어야 합니다 "
6004
6202
 
@@ -6132,16 +6330,16 @@ msgid "show archived repositories"
6132
6330
  msgstr ""
6133
6331
 
6134
6332
  msgid "show filter info"
6135
- msgstr "필터 정보 표시"
6333
+ msgstr ""
6136
6334
 
6137
6335
  msgid "show repositories in Library and the default content view"
6138
6336
  msgstr "라이브러리 및 기본값 컨텐츠 뷰에서 리포지터리 표시 "
6139
6337
 
6140
6338
  msgid "some executors are not responding, check %{status_url}"
6141
- msgstr "일부 실행자가 응답하지 않습니다. %{status_url}을(를) 확인하십시오."
6339
+ msgstr ""
6142
6340
 
6143
6341
  msgid "source URL is malformed"
6144
- msgstr "소스 URL의 형식이 잘못되었습니다."
6342
+ msgstr ""
6145
6343
 
6146
6344
  msgid "specifies if content should be included or excluded, default: inclusion=false"
6147
6345
  msgstr "컨텐츠 포함 또는 제외 여부를 지정합니다. 기본값: inclusion=false"
@@ -6150,7 +6348,7 @@ msgid "start datetime of synchronization"
6150
6348
  msgstr "동기화 시작 날짜 "
6151
6349
 
6152
6350
  msgid "subscriptions not specified"
6153
- msgstr "서브스크립션을 지정하지 않았습니다."
6351
+ msgstr ""
6154
6352
 
6155
6353
  msgid "sync plan description"
6156
6354
  msgstr "동기화 계획 설명 "
@@ -6162,7 +6360,7 @@ msgid "sync plan numeric identifier"
6162
6360
  msgstr "숫자로된 동기화 계획 ID "
6163
6361
 
6164
6362
  msgid "temporarily override feed URL for sync"
6165
- msgstr "동기화를 위한 임시 덮어쓰기 피드 URL"
6363
+ msgstr ""
6166
6364
 
6167
6365
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
6168
6366
  msgstr "다음 속성은 Red Hat 공급자 [ %s ]에 대해 업데이트될 수 없습니다 "
@@ -6183,16 +6381,16 @@ msgid "type of filter (e.g. rpm, package_group, erratum, docker, modulemd)"
6183
6381
  msgstr ""
6184
6382
 
6185
6383
  msgid "type of repo"
6186
- msgstr ""
6384
+ msgstr "리포지터리 유형"
6187
6385
 
6188
6386
  msgid "types of filters"
6189
6387
  msgstr ""
6190
6388
 
6191
6389
  msgid "unknown permission for %s"
6192
- msgstr "%s에 대해 알 수 없는 권한 "
6390
+ msgstr ""
6193
6391
 
6194
6392
  msgid "update a filter"
6195
- msgstr "필터 업데이트"
6393
+ msgstr ""
6196
6394
 
6197
6395
  msgid "updating package group..."
6198
6396
  msgstr "패키지 그룹 업데이트 중..."
@@ -6210,13 +6408,13 @@ msgid "url not defined."
6210
6408
  msgstr "url이 설정되어 있지 않습니다. "
6211
6409
 
6212
6410
  msgid "waiting for Candlepin to finish the task"
6213
- msgstr "Candlepin이 태스크를 끝내기를 기다리는 중"
6411
+ msgstr ""
6214
6412
 
6215
6413
  msgid "waiting for Pulp to finish the task"
6216
- msgstr "Pulp가 태스크를 끝내기를 기다리는 중"
6414
+ msgstr ""
6217
6415
 
6218
6416
  msgid "waiting for Pulp to start the task"
6219
- msgstr "Pulp가 태스크를 시작하기를 기다리는 중"
6417
+ msgstr ""
6220
6418
 
6221
6419
  msgid "whitespace-separated list of architectures to be synced from deb-archive"
6222
6420
  msgstr ""
@@ -6231,7 +6429,7 @@ msgid "with"
6231
6429
  msgstr ""
6232
6430
 
6233
6431
  msgid "yes"
6234
- msgstr ""
6432
+ msgstr ""
6235
6433
 
6236
6434
  msgid "{0} items selected"
6237
6435
  msgstr ""