katello 3.17.0 → 3.18.0

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 (272) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/registry/registry_proxies_controller.rb +38 -21
  3. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +3 -1
  4. data/app/controllers/katello/api/v2/activation_keys_controller.rb +10 -15
  5. data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
  6. data/app/controllers/katello/api/v2/content_credentials_controller.rb +1 -8
  7. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
  8. data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
  9. data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
  10. data/app/controllers/katello/api/v2/content_view_components_controller.rb +31 -14
  11. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +17 -8
  12. data/app/controllers/katello/api/v2/content_view_repositories_controller.rb +1 -0
  13. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +65 -71
  14. data/app/controllers/katello/api/v2/content_views_controller.rb +37 -26
  15. data/app/controllers/katello/api/v2/environments_controller.rb +8 -8
  16. data/app/controllers/katello/api/v2/gpg_keys_controller.rb +5 -5
  17. data/app/controllers/katello/api/v2/host_collections_controller.rb +19 -16
  18. data/app/controllers/katello/api/v2/host_debs_controller.rb +1 -0
  19. data/app/controllers/katello/api/v2/host_errata_controller.rb +2 -2
  20. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +35 -6
  21. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -1
  22. data/app/controllers/katello/api/v2/products_controller.rb +9 -9
  23. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +1 -1
  24. data/app/controllers/katello/api/v2/repositories_controller.rb +10 -5
  25. data/app/controllers/katello/api/v2/repository_sets_controller.rb +24 -14
  26. data/app/controllers/katello/api/v2/subscriptions_controller.rb +1 -1
  27. data/app/controllers/katello/api/v2/sync_plans_controller.rb +8 -9
  28. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +9 -2
  29. data/app/controllers/katello/concerns/api/v2/authorization.rb +19 -5
  30. data/app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb +22 -18
  31. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +21 -0
  32. data/app/controllers/katello/concerns/api/v2/repository_content_controller.rb +1 -1
  33. data/app/controllers/katello/concerns/organizations_controller_extensions.rb +2 -1
  34. data/app/controllers/katello/concerns/registration_controller_extensions.rb +16 -0
  35. data/app/helpers/katello/katello_urls_helper.rb +5 -2
  36. data/app/lib/actions/candlepin/product/content_create.rb +2 -0
  37. data/app/lib/actions/candlepin/product/content_update.rb +2 -0
  38. data/app/lib/actions/helpers/smart_proxy_sync_history_helper.rb +24 -0
  39. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
  40. data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
  41. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +16 -7
  42. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  43. data/app/lib/actions/katello/content_view/publish.rb +9 -9
  44. data/app/lib/actions/katello/content_view_version/import.rb +8 -13
  45. data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
  46. data/app/lib/actions/katello/content_view_version/incremental_update.rb +18 -3
  47. data/app/lib/actions/katello/host/hypervisors_update.rb +18 -0
  48. data/app/lib/actions/katello/host/update_system_purpose.rb +31 -0
  49. data/app/lib/actions/katello/host/upload_package_profile.rb +3 -1
  50. data/app/lib/actions/katello/host/upload_profiles.rb +8 -6
  51. data/app/lib/actions/katello/organization/manifest_delete.rb +0 -1
  52. data/app/lib/actions/katello/organization/manifest_import.rb +0 -1
  53. data/app/lib/actions/katello/organization/manifest_refresh.rb +0 -1
  54. data/app/lib/actions/katello/product/content_create.rb +7 -6
  55. data/app/lib/actions/katello/repository/filtered_index_content.rb +10 -1
  56. data/app/lib/actions/katello/repository/import_upload.rb +4 -1
  57. data/app/lib/actions/katello/repository/remove_content.rb +1 -1
  58. data/app/lib/actions/katello/repository/sync.rb +3 -1
  59. data/app/lib/actions/katello/repository/update.rb +5 -1
  60. data/app/lib/actions/katello/repository/upload_files.rb +1 -0
  61. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +15 -0
  62. data/app/lib/actions/pulp/consumer/sync_capsule.rb +4 -2
  63. data/app/lib/actions/pulp/repository/distributor_publish.rb +1 -1
  64. data/app/lib/actions/pulp3/capsule_content/sync.rb +1 -0
  65. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  66. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  67. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  68. data/app/lib/actions/pulp3/content_view_version/create_importer.rb +7 -3
  69. data/app/lib/actions/pulp3/content_view_version/export.rb +7 -1
  70. data/app/lib/actions/pulp3/content_view_version/import.rb +7 -3
  71. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  72. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  73. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +38 -14
  74. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  75. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +16 -10
  76. data/app/lib/actions/pulp3/orchestration/repository/generate_metadata.rb +4 -1
  77. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  78. data/app/lib/actions/pulp3/repository/commit_upload.rb +2 -1
  79. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  80. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  81. data/app/lib/actions/pulp3/repository/save_artifact.rb +1 -1
  82. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  83. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  84. data/app/lib/katello/resources/candlepin/consumer.rb +2 -2
  85. data/app/lib/katello/resources/candlepin/owner.rb +5 -0
  86. data/app/lib/katello/resources/candlepin/upstream_consumer.rb +6 -0
  87. data/app/lib/katello/resources/registry.rb +3 -3
  88. data/app/models/katello/authorization/activation_key.rb +4 -0
  89. data/app/models/katello/authorization/content_view.rb +13 -0
  90. data/app/models/katello/authorization/content_view_component.rb +15 -0
  91. data/app/models/katello/authorization/content_view_filter.rb +15 -0
  92. data/app/models/katello/authorization/content_view_version.rb +25 -2
  93. data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
  94. data/app/models/katello/authorization/gpg_key.rb +12 -4
  95. data/app/models/katello/authorization/lifecycle_environment.rb +8 -0
  96. data/app/models/katello/authorization/organization.rb +8 -0
  97. data/app/models/katello/authorization/sync_plan.rb +16 -0
  98. data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
  99. data/app/models/katello/concerns/organization_extensions.rb +4 -5
  100. data/app/models/katello/concerns/smart_proxy_extensions.rb +6 -4
  101. data/app/models/katello/content_migration_progress.rb +4 -0
  102. data/app/models/katello/content_view.rb +30 -4
  103. data/app/models/katello/content_view_component.rb +2 -0
  104. data/app/models/katello/content_view_filter.rb +5 -0
  105. data/app/models/katello/content_view_history.rb +2 -1
  106. data/app/models/katello/content_view_package_filter.rb +1 -1
  107. data/app/models/katello/content_view_puppet_module.rb +8 -0
  108. data/app/models/katello/content_view_repository.rb +13 -1
  109. data/app/models/katello/content_view_version_export_history.rb +8 -1
  110. data/app/models/katello/glue/candlepin/pool.rb +9 -14
  111. data/app/models/katello/glue/pulp/repo.rb +8 -0
  112. data/app/models/katello/gpg_key.rb +1 -1
  113. data/app/models/katello/ping.rb +8 -3
  114. data/app/models/katello/repository.rb +33 -0
  115. data/app/models/katello/root_repository.rb +26 -1
  116. data/app/models/katello/smart_proxy_sync_history.rb +8 -0
  117. data/app/services/katello/candlepin/event_handler.rb +2 -0
  118. data/app/services/katello/candlepin/message_handler.rb +34 -0
  119. data/app/services/katello/candlepin/upstream_consumer.rb +28 -0
  120. data/app/services/katello/host_status_manager.rb +9 -0
  121. data/app/services/katello/pulp3/api/apt.rb +57 -0
  122. data/app/services/katello/pulp3/api/core.rb +8 -0
  123. data/app/services/katello/pulp3/api/docker.rb +4 -0
  124. data/app/services/katello/pulp3/content_view_version/export.rb +125 -8
  125. data/app/services/katello/pulp3/content_view_version/import.rb +39 -34
  126. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +6 -16
  127. data/app/services/katello/pulp3/content_view_version/import_validator.rb +114 -0
  128. data/app/services/katello/pulp3/deb.rb +38 -0
  129. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  130. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  131. data/app/services/katello/pulp3/migration.rb +51 -10
  132. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -0
  133. data/app/services/katello/pulp3/repository.rb +10 -4
  134. data/app/services/katello/pulp3/repository/ansible_collection.rb +9 -0
  135. data/app/services/katello/pulp3/repository/apt.rb +63 -0
  136. data/app/services/katello/pulp3/repository/docker.rb +9 -0
  137. data/app/services/katello/pulp3/repository/yum.rb +14 -9
  138. data/app/services/katello/pulp3/repository_mirror.rb +9 -4
  139. data/app/services/katello/pulp3/task.rb +4 -0
  140. data/app/services/katello/pulp3/task_group.rb +4 -0
  141. data/app/services/katello/repository_type.rb +2 -1
  142. data/app/services/katello/smart_proxy_helper.rb +9 -0
  143. data/app/views/dashboard/_subscription_widget.html.erb +0 -5
  144. data/app/views/foreman/hosts/_registration.html.erb +12 -0
  145. data/app/views/katello/api/v2/content_view_version_export_histories/show.json.rabl +1 -1
  146. data/app/views/katello/api/v2/content_views/base.json.rabl +1 -0
  147. data/app/views/katello/api/v2/repositories/base.json.rabl +1 -1
  148. data/app/views/katello/layouts/react.html.erb +3 -2
  149. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  150. data/app/views/overrides/organizations/_index_row_override.html.erb +1 -1
  151. data/config/routes/api/v2.rb +24 -2
  152. data/config/routes/overrides.rb +1 -0
  153. data/db/migrate/20200929200357_create_katello_smart_proxy_sync_history.rb +13 -0
  154. data/db/migrate/20201008204114_add_os_versions_to_katello_root_repositories.rb +5 -0
  155. data/db/migrate/20201012172713_remove_gpg_key_perms.rb +23 -0
  156. data/db/migrate/20201012192035_add_metadata_to_katello_content_view_version_export_history.rb +5 -0
  157. data/db/migrate/20201021150008_add_import_only_to_katello_content_view.rb +5 -0
  158. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  159. data/db/seeds.d/111-upgrade_tasks.rb +2 -1
  160. data/engines/bastion/app/assets/javascripts/bastion/components/notification.service.js +1 -1
  161. data/engines/bastion/app/assets/javascripts/bastion/components/nutupane.factory.js +8 -13
  162. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/content-hosts-bulk-system-purpose-modal.controller.js +112 -0
  163. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +78 -0
  164. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-host-modal-helper.service.js +11 -0
  165. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content-hosts.controller.js +5 -0
  166. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/content/content-host-debs-installed.controller.js +2 -42
  167. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/content-hosts.html +4 -0
  168. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/content-views.controller.js +6 -2
  169. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/content-view-details.controller.js +12 -0
  170. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +7 -7
  171. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-info.html +7 -1
  172. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/content-view-new.controller.js +17 -3
  173. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/new/views/content-view-new.html +16 -2
  174. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/views/content-views.html +5 -0
  175. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/host-collection-details.controller.js +4 -0
  176. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/host-collections/details/views/host-collection-info.html +6 -0
  177. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/hosts/host-bulk-action.factory.js +2 -1
  178. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +92 -19
  179. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  180. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  181. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  182. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  183. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  184. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  185. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  186. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  187. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  188. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  189. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  190. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/products-bulk-advanced-sync-modal.controller.js +6 -7
  191. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +168 -155
  192. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +17 -2
  193. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/new-repository.controller.js +125 -113
  194. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +15 -3
  195. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/os-versions.service.js +46 -0
  196. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/repository-types.service.js +8 -1
  197. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/subscriptions/views/content-access-mode-banner.html +1 -1
  198. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/details/views/sync-plan-details.html +1 -1
  199. data/lib/katello/engine.rb +2 -0
  200. data/lib/katello/permission_creator.rb +98 -69
  201. data/lib/katello/permissions/host_permissions.rb +1 -0
  202. data/lib/katello/plugin.rb +10 -2
  203. data/lib/katello/repository_types/deb.rb +9 -1
  204. data/lib/katello/tasks/pulp3_migration.rake +17 -3
  205. data/lib/katello/tasks/pulp3_migration_abort.rake +22 -0
  206. data/lib/katello/tasks/pulp3_migration_stats.rake +41 -0
  207. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  208. data/lib/katello/tasks/reset.rake +2 -1
  209. data/lib/katello/tasks/upgrades/3.18/add_cvv_export_history_metadata.rb +18 -0
  210. data/lib/katello/version.rb +1 -1
  211. data/locale/action_names.rb +51 -44
  212. data/locale/bn/katello.po +279 -55
  213. data/locale/cs/katello.po +278 -51
  214. data/locale/de/katello.po +279 -52
  215. data/locale/en/katello.po +278 -49
  216. data/locale/es/katello.po +279 -51
  217. data/locale/fr/katello.po +279 -51
  218. data/locale/gu/katello.po +279 -55
  219. data/locale/hi/katello.po +279 -55
  220. data/locale/it/katello.po +279 -51
  221. data/locale/ja/katello.po +279 -52
  222. data/locale/katello.pot +1379 -971
  223. data/locale/kn/katello.po +279 -55
  224. data/locale/ko/katello.po +279 -51
  225. data/locale/mr/katello.po +279 -55
  226. data/locale/or/katello.po +279 -55
  227. data/locale/pa/katello.po +279 -55
  228. data/locale/pt/katello.po +278 -52
  229. data/locale/pt_BR/katello.po +279 -51
  230. data/locale/ru/katello.po +279 -51
  231. data/locale/ta/katello.po +279 -55
  232. data/locale/te/katello.po +279 -55
  233. data/locale/zh_CN/katello.po +279 -51
  234. data/locale/zh_TW/katello.po +279 -52
  235. data/webpack/components/ActionableDetail.js +2 -1
  236. data/webpack/components/Search/Search.js +1 -1
  237. data/webpack/components/Table/MainTable.js +6 -2
  238. data/webpack/components/Table/TableWrapper.js +46 -9
  239. data/webpack/scenes/ContentViews/ContentViewSelectors.js +7 -3
  240. data/webpack/scenes/ContentViews/ContentViewsConstants.js +8 -0
  241. data/webpack/scenes/ContentViews/ContentViewsPage.js +2 -9
  242. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +25 -3
  243. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +14 -4
  244. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +2 -1
  245. data/webpack/scenes/ContentViews/Details/Repositories/ContentCounts.js +56 -0
  246. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +169 -0
  247. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +47 -0
  248. data/webpack/scenes/ContentViews/Details/Repositories/RepoAddedStatus.js +17 -0
  249. data/webpack/scenes/ContentViews/Details/Repositories/RepoIcon.js +23 -0
  250. data/webpack/scenes/ContentViews/Details/Repositories/SelectableDropdown.js +49 -0
  251. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.fixtures.json +154 -0
  252. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +131 -0
  253. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  254. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +4 -1
  255. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +2 -2
  256. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +29 -19
  257. data/webpack/scenes/Subscriptions/Manifest/ManifestActions.js +17 -0
  258. data/webpack/scenes/Subscriptions/Manifest/ManifestConstants.js +4 -0
  259. data/webpack/scenes/Subscriptions/Manifest/SimpleContentAccess.js +19 -2
  260. data/webpack/scenes/Subscriptions/Manifest/__tests__/SimpleContentAccess.test.js +9 -1
  261. data/webpack/scenes/Subscriptions/Manifest/index.js +2 -1
  262. data/webpack/scenes/Subscriptions/SubscriptionConstants.js +1 -1
  263. data/webpack/scenes/Subscriptions/SubscriptionReducer.js +3 -0
  264. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +8 -2
  265. data/webpack/scenes/Subscriptions/SubscriptionsSelectors.js +3 -0
  266. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +3 -0
  267. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsSelectors.test.js +6 -0
  268. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsSelectors.test.js.snap +6 -0
  269. data/webpack/scenes/Subscriptions/components/SubscriptionsToolbar/SubscriptionsToolbar.js +1 -13
  270. data/webpack/test-utils/react-testing-lib-wrapper.js +3 -0
  271. metadata +74 -13
  272. data/webpack/__mocks__/foremanReact/components/common/Fill/GlobalFill.js +0 -3
@@ -22,6 +22,11 @@ msgstr ""
22
22
  "Plural-Forms: nplurals=1; plural=0;\n"
23
23
  "X-Generator: Zanata 3.6.0\n"
24
24
 
25
+ msgid ""
26
+ "\n"
27
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
28
+ msgstr ""
29
+
25
30
  msgid " %{errata_count} Errata"
26
31
  msgstr ""
27
32
 
@@ -359,6 +364,9 @@ msgstr ""
359
364
  msgid "Action with sub plans"
360
365
  msgstr ""
361
366
 
367
+ msgid "Activation Key(s)"
368
+ msgstr ""
369
+
362
370
  # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author snowlet
363
371
  msgid "Activation Keys"
364
372
  msgstr "啟動金鑰"
@@ -366,6 +374,9 @@ msgstr "啟動金鑰"
366
374
  msgid "Activation key ID"
367
375
  msgstr "啟動金鑰 ID"
368
376
 
377
+ msgid "Activation key(s) for Subscription Manager. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
378
+ msgstr ""
379
+
369
380
  msgid "Activation keys and subscriptions can be managed"
370
381
  msgstr "可管理啟動金鑰與訂閱"
371
382
 
@@ -417,6 +428,9 @@ msgstr "已新增內容:"
417
428
  msgid "Adding content units"
418
429
  msgstr ""
419
430
 
431
+ msgid "Adding multiple versions of the same Puppet Module is not supported by incremental update. The following Puppet Modules have duplicate versions in the incremental update content list: %{dup_list}"
432
+ msgstr ""
433
+
420
434
  msgid "Addons"
421
435
  msgstr ""
422
436
 
@@ -521,6 +535,9 @@ msgstr ""
521
535
  msgid "Artifacts"
522
536
  msgstr ""
523
537
 
538
+ msgid "Assign system purpose attributes on one or more hosts"
539
+ msgstr ""
540
+
524
541
  msgid "Assign the %{count} host with no %{taxonomy_single} to %{taxonomy_name}"
525
542
  msgid_plural "Assign all %{count} hosts with no %{taxonomy_single} to %{taxonomy_name}"
526
543
  msgstr[0] "將沒有 %{taxonomy_single} 的 %{count} 部主機指定至 %{taxonomy_name}"
@@ -566,9 +583,6 @@ msgstr ""
566
583
  msgid "Author"
567
584
  msgstr ""
568
585
 
569
- msgid "Auto Enablement may only be set on custom repositories."
570
- msgstr ""
571
-
572
586
  msgid "Auto Publish - Triggered by '%s'"
573
587
  msgstr ""
574
588
 
@@ -782,6 +796,9 @@ msgstr ""
782
796
  msgid "Cannot delete view while it exists in environments"
783
797
  msgstr "無法刪除還存在環境中的視域"
784
798
 
799
+ msgid "Cannot import a composite content view"
800
+ msgstr ""
801
+
785
802
  msgid "Cannot import a custom subscription from a redhat product."
786
803
  msgstr ""
787
804
 
@@ -837,12 +854,18 @@ msgstr ""
837
854
  msgid "Cannot upload Container Image content."
838
855
  msgstr ""
839
856
 
857
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
858
+ msgstr ""
859
+
840
860
  msgid "Cannot validate contents on non-yum/deb repositories."
841
861
  msgstr ""
842
862
 
843
863
  msgid "Check if a connection can be made to Red Hat Subscription Management."
844
864
  msgstr ""
845
865
 
866
+ msgid "Check if the specified organization is eligible for Simple Content Access"
867
+ msgstr ""
868
+
846
869
  msgid "Check services before actions"
847
870
  msgstr ""
848
871
 
@@ -878,7 +901,7 @@ msgstr ""
878
901
  msgid "Combined Profile Update for %s"
879
902
  msgstr ""
880
903
 
881
- msgid "Comma separated list of tags to sync for Container Image repository"
904
+ msgid "Comma-separated list of tags to sync for Container Image repository"
882
905
  msgstr ""
883
906
 
884
907
  # translation auto-copied from project CFSE, version sam-1.2, document app, author tchuang
@@ -934,9 +957,15 @@ msgstr ""
934
957
  msgid "Content Download URL"
935
958
  msgstr ""
936
959
 
960
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
961
+ msgstr ""
962
+
937
963
  msgid "Content Hosts"
938
964
  msgstr "內容主機"
939
965
 
966
+ msgid "Content Migration"
967
+ msgstr ""
968
+
940
969
  msgid "Content Source"
941
970
  msgstr "內容來源"
942
971
 
@@ -988,9 +1017,15 @@ msgstr ""
988
1017
  msgid "Content View Version not set"
989
1018
  msgstr ""
990
1019
 
1020
+ msgid "Content View Version specified in the metadata - '%{name}' already exists. If you wish to replace the existing version, delete %{name} and try again. "
1021
+ msgstr ""
1022
+
991
1023
  msgid "Content View and Environment not set for registration."
992
1024
  msgstr ""
993
1025
 
1026
+ msgid "Content View id"
1027
+ msgstr ""
1028
+
994
1029
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author tchuang
995
1030
  msgid "Content Views"
996
1031
  msgstr "內容視域"
@@ -1029,6 +1064,9 @@ msgstr "內容視域標籤"
1029
1064
  msgid "Content view numeric identifier"
1030
1065
  msgstr "內容視域的數字識別子"
1031
1066
 
1067
+ msgid "Content view version export history identifier"
1068
+ msgstr ""
1069
+
1032
1070
  msgid "Content view version identifier"
1033
1071
  msgstr "內容視域的版本識別子"
1034
1072
 
@@ -1050,12 +1088,12 @@ msgstr ""
1050
1088
  msgid "Copy an activation key"
1051
1089
  msgstr "複製啟動金鑰"
1052
1090
 
1091
+ msgid "Copy version units to library"
1092
+ msgstr ""
1093
+
1053
1094
  msgid "Cores: %s"
1054
1095
  msgstr "核心:%s"
1055
1096
 
1056
- msgid "Could not calculate errata status, ensure host is registered and the katello-host-tools package is installed"
1057
- msgstr ""
1058
-
1059
1097
  # translation auto-copied from project CFSE, version sam-1.2, document app, author tchuang
1060
1098
  msgid "Could not delete organization '%s'."
1061
1099
  msgstr "無法刪除組織 '%s'。"
@@ -1066,6 +1104,12 @@ msgstr "軟體庫中找不到擁有 '%{id}' 的 %{content}。"
1066
1104
  msgid "Could not find %{count} errata. Only found: %{found}"
1067
1105
  msgstr ""
1068
1106
 
1107
+ msgid "Could not find %{name} resource with id %{id}"
1108
+ msgstr ""
1109
+
1110
+ msgid "Could not find %{name} resources with ids %{ids}"
1111
+ msgstr ""
1112
+
1069
1113
  msgid "Could not find Environment with ids: %s"
1070
1114
  msgstr "找不到擁有 ID 的環境:%s"
1071
1115
 
@@ -1099,9 +1143,6 @@ msgstr ""
1099
1143
  msgid "Couldn't find %{type} Filter with id %{id}"
1100
1144
  msgstr "找不到擁有 ID %{id} 的 %{type} 篩選器"
1101
1145
 
1102
- msgid "Couldn't find Content Credential '%s'"
1103
- msgstr ""
1104
-
1105
1146
  msgid "Couldn't find ContentViewFilter with id=%s"
1106
1147
  msgstr "找不到 id 為「%s」的 ContentViewFilter"
1107
1148
 
@@ -1151,12 +1192,6 @@ msgstr "找不到環境 '%s'"
1151
1192
  msgid "Couldn't find errata ids '%s'"
1152
1193
  msgstr "找不到勘誤 id '%s'"
1153
1194
 
1154
- msgid "Couldn't find gpg key '%s'"
1155
- msgstr "找不到 GPG 金鑰「%s」"
1156
-
1157
- msgid "Couldn't find host '%s'"
1158
- msgstr ""
1159
-
1160
1195
  msgid "Couldn't find host collection '%s'"
1161
1196
  msgstr "找不到主機集「%s」"
1162
1197
 
@@ -1170,9 +1205,6 @@ msgstr "找不到組織「%s」"
1170
1205
  msgid "Couldn't find prior-environment '%s'"
1171
1206
  msgstr "找不到先前的環境「%s」"
1172
1207
 
1173
- msgid "Couldn't find product '%s'"
1174
- msgstr "找不到產品「%s」"
1175
-
1176
1208
  # translation auto-copied from project CFSE, version sam-1.2, document app
1177
1209
  msgid "Couldn't find product with id '%s'"
1178
1210
  msgstr "找不到 id 為「%s」的產品"
@@ -1181,29 +1213,13 @@ msgstr "找不到 id 為「%s」的產品"
1181
1213
  msgid "Couldn't find repository '%s'"
1182
1214
  msgstr "找不到軟體庫「%s」"
1183
1215
 
1184
- msgid "Couldn't find repository set with id '%s'."
1185
- msgstr "找不到 id 為「%s」的軟體庫集。"
1186
-
1187
1216
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1188
1217
  msgstr ""
1189
1218
 
1190
- msgid "Couldn't find ssl ca cert '%s'"
1191
- msgstr ""
1192
-
1193
- msgid "Couldn't find ssl client cert '%s'"
1194
- msgstr ""
1195
-
1196
- msgid "Couldn't find ssl client key '%s'"
1197
- msgstr ""
1198
-
1199
1219
  # translation auto-copied from project CFSE, version sam-1.2, document app, author dchen
1200
1220
  msgid "Couldn't find subject of synchronization"
1201
1221
  msgstr "找不到要同步的東西"
1202
1222
 
1203
- # translation auto-copied from project CFSE, version sam-1.2, document app, author tchuang
1204
- msgid "Couldn't find sync plan '%{plan}' in organization '%{org}'"
1205
- msgstr "在「%{org}」組織中找不到同步計劃「%{plan}」"
1206
-
1207
1223
  msgid "Count"
1208
1224
  msgstr ""
1209
1225
 
@@ -1274,6 +1290,9 @@ msgstr ""
1274
1290
  msgid "Current organization not set."
1275
1291
  msgstr ""
1276
1292
 
1293
+ msgid "Custom"
1294
+ msgstr ""
1295
+
1277
1296
  # translation auto-copied from project CFSE, version sam-1.2, document app
1278
1297
  msgid "Custom Content Repositories"
1279
1298
  msgstr "自訂內容軟體庫"
@@ -1483,9 +1502,15 @@ msgstr "新公布的內容視域版本之描述"
1483
1502
  msgid "Description of the repository"
1484
1503
  msgstr ""
1485
1504
 
1505
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1506
+ msgstr ""
1507
+
1486
1508
  msgid "Desired quantity of the pool"
1487
1509
  msgstr ""
1488
1510
 
1511
+ msgid "Destination Server name"
1512
+ msgstr ""
1513
+
1489
1514
  # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1490
1515
  msgid "Destroy"
1491
1516
  msgstr "銷毀"
@@ -1539,6 +1564,9 @@ msgstr "詳細資料"
1539
1564
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1540
1565
  msgstr ""
1541
1566
 
1567
+ msgid "Directory containing the exported Content View Version"
1568
+ msgstr ""
1569
+
1542
1570
  # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author ccheng
1543
1571
  msgid "Disable"
1544
1572
  msgstr "停用"
@@ -1555,6 +1583,9 @@ msgstr ""
1555
1583
  msgid "Disable simple content access for a manifest"
1556
1584
  msgstr ""
1557
1585
 
1586
+ msgid "Disabling Simple Content Access failed for '%{subject}'."
1587
+ msgstr ""
1588
+
1558
1589
  msgid "Disconnected mode"
1559
1590
  msgstr ""
1560
1591
 
@@ -1640,6 +1671,9 @@ msgstr ""
1640
1671
  msgid "Enabled Repositories"
1641
1672
  msgstr ""
1642
1673
 
1674
+ msgid "Enabling Simple Content Access failed for '%{subject}'."
1675
+ msgstr ""
1676
+
1643
1677
  msgid "End Date"
1644
1678
  msgstr ""
1645
1679
 
@@ -1758,7 +1792,10 @@ msgstr ""
1758
1792
  msgid "Export CSV"
1759
1793
  msgstr ""
1760
1794
 
1761
- msgid "Export a content view version"
1795
+ msgid "Export Library"
1796
+ msgstr ""
1797
+
1798
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1762
1799
  msgstr ""
1763
1800
 
1764
1801
  msgid "Export a repository"
@@ -1767,9 +1804,15 @@ msgstr ""
1767
1804
  msgid "Export as CSV"
1768
1805
  msgstr ""
1769
1806
 
1807
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1808
+ msgstr ""
1809
+
1770
1810
  msgid "Export to ISO format"
1771
1811
  msgstr ""
1772
1812
 
1813
+ msgid "Export to ISO format."
1814
+ msgstr ""
1815
+
1773
1816
  msgid "Exported version"
1774
1817
  msgstr ""
1775
1818
 
@@ -1910,10 +1953,6 @@ msgstr ""
1910
1953
  msgid "GPG Key URL"
1911
1954
  msgstr ""
1912
1955
 
1913
- # translation auto-copied from project CFSE, version sam-1.2, document app, author tchuang
1914
- msgid "GPG Keys"
1915
- msgstr "GPG 金鑰"
1916
-
1917
1956
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author Chester Cheng
1918
1957
  msgid "Generate and Download"
1919
1958
  msgstr "產生與下載"
@@ -2021,6 +2060,9 @@ msgstr "主機集是空的。"
2021
2060
  msgid "Host content and subscription details"
2022
2061
  msgstr "主機內容和訂閱詳細資料"
2023
2062
 
2063
+ msgid "Host creation was skipped for %s because it shares a BIOS UUID with %s. To report this hypervisor, override its dmi.system.uuid fact or set 'candlepin.use_system_uuid_for_matching' to 'true' in the Candlepin configuration."
2064
+ msgstr ""
2065
+
2024
2066
  msgid "Host did not finish content action in %s seconds. The task has been cancelled."
2025
2067
  msgstr ""
2026
2068
 
@@ -2045,6 +2087,9 @@ msgstr ""
2045
2087
  msgid "Host id to list applicable packages for"
2046
2088
  msgstr ""
2047
2089
 
2090
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2091
+ msgstr ""
2092
+
2048
2093
  msgid "Host with ID %s already exists in the host collection."
2049
2094
  msgstr ""
2050
2095
 
@@ -2199,6 +2244,9 @@ msgstr ""
2199
2244
  msgid "Identifiers for Lifecycle Environment"
2200
2245
  msgstr ""
2201
2246
 
2247
+ msgid "Identifies whether the repository should be disabled on a client with a non-matching OS version. Pass [] to enable regardless of OS version. Maximum length 1; allowed tags are: %s"
2248
+ msgstr ""
2249
+
2202
2250
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2203
2251
  msgstr ""
2204
2252
 
@@ -2241,6 +2289,15 @@ msgstr ""
2241
2289
  msgid "Immediate"
2242
2290
  msgstr ""
2243
2291
 
2292
+ msgid "Import"
2293
+ msgstr ""
2294
+
2295
+ msgid "Import Content View Version"
2296
+ msgstr ""
2297
+
2298
+ msgid "Import Default Content View"
2299
+ msgstr ""
2300
+
2244
2301
  msgid "Import Manifest"
2245
2302
  msgstr "匯入清單"
2246
2303
 
@@ -2262,12 +2319,27 @@ msgstr ""
2262
2319
  msgid "Import a Manifest using the manifest tab above."
2263
2320
  msgstr ""
2264
2321
 
2322
+ msgid "Import a content view version"
2323
+ msgstr ""
2324
+
2325
+ msgid "Import a content view version to the library"
2326
+ msgstr ""
2327
+
2265
2328
  msgid "Import facts"
2266
2329
  msgstr "匯入詳情"
2267
2330
 
2268
2331
  msgid "Import uploads into a repository"
2269
2332
  msgstr "將上傳內容匯入軟體庫中"
2270
2333
 
2334
+ msgid "Import-only can not be changed after creation"
2335
+ msgstr ""
2336
+
2337
+ msgid "Import-only content views can not be published directly"
2338
+ msgstr ""
2339
+
2340
+ msgid "Import-only content views will be available in a future version."
2341
+ msgstr ""
2342
+
2271
2343
  msgid "Importing manifest into '%{subject}' failed."
2272
2344
  msgstr ""
2273
2345
 
@@ -2447,6 +2519,9 @@ msgstr ""
2447
2519
  msgid "Invalid params provided - date_type must be one of %s"
2448
2520
  msgstr ""
2449
2521
 
2522
+ msgid "Invalid path specified."
2523
+ msgstr ""
2524
+
2450
2525
  msgid ""
2451
2526
  "Invalid puppet module parameters specified. \\\n"
2452
2527
  " Either 'uuid' or 'name' and 'author' must be specified."
@@ -2455,6 +2530,12 @@ msgstr ""
2455
2530
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2456
2531
  msgstr "無效的 puppet 模組。請確認 puppet 模組包含了一個 metadata.json 檔案並且已正確壓縮。"
2457
2532
 
2533
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2534
+ msgstr ""
2535
+
2536
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2537
+ msgstr ""
2538
+
2458
2539
  msgid "Invalid value specified for Container Image repositories."
2459
2540
  msgstr ""
2460
2541
 
@@ -2464,6 +2545,9 @@ msgstr ""
2464
2545
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2465
2546
  msgstr ""
2466
2547
 
2548
+ msgid "Katello"
2549
+ msgstr ""
2550
+
2467
2551
  msgid "Katello ID of local pool to update"
2468
2552
  msgstr ""
2469
2553
 
@@ -2524,9 +2608,6 @@ msgstr ""
2524
2608
  msgid "Learn more about adding Subscription Manifests"
2525
2609
  msgstr ""
2526
2610
 
2527
- msgid "Learn more about your overall subscription usage (opens in a new tab)"
2528
- msgstr ""
2529
-
2530
2611
  msgid "Library lifecycle environments may not be deleted."
2531
2612
  msgstr "不可刪除函式庫生命週期環境。"
2532
2613
 
@@ -2626,6 +2707,9 @@ msgstr "列出勘誤"
2626
2707
  msgid "List errata available for the content host"
2627
2708
  msgstr "列出內容主機的可用勘誤"
2628
2709
 
2710
+ msgid "List export histories"
2711
+ msgstr ""
2712
+
2629
2713
  msgid "List filter rules"
2630
2714
  msgstr "列出篩選器規則"
2631
2715
 
@@ -2779,6 +2863,9 @@ msgstr ""
2779
2863
  msgid "List srpms"
2780
2864
  msgstr ""
2781
2865
 
2866
+ msgid "List subscriptions"
2867
+ msgstr ""
2868
+
2782
2869
  msgid "List sync plans"
2783
2870
  msgstr "列出同步計劃"
2784
2871
 
@@ -2867,6 +2954,9 @@ msgstr "訊息"
2867
2954
  msgid "Messaging connection"
2868
2955
  msgstr ""
2869
2956
 
2957
+ msgid "Metadata taken from the upstream export history for this Content View Version"
2958
+ msgstr ""
2959
+
2870
2960
  msgid "Mismatched"
2871
2961
  msgstr ""
2872
2962
 
@@ -3000,6 +3090,9 @@ msgstr ""
3000
3090
  msgid "No errors"
3001
3091
  msgstr "無錯誤"
3002
3092
 
3093
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3094
+ msgstr ""
3095
+
3003
3096
  msgid "No file uploaded"
3004
3097
  msgstr "未上傳檔案"
3005
3098
 
@@ -3012,12 +3105,18 @@ msgstr ""
3012
3105
  msgid "No hosts registered with subscription-manager found in selection."
3013
3106
  msgstr ""
3014
3107
 
3108
+ msgid "No installed packages and/or enabled repositories have been reported by %s."
3109
+ msgstr ""
3110
+
3015
3111
  msgid "No manifest file uploaded"
3016
3112
  msgstr "未上傳清單檔案"
3017
3113
 
3018
3114
  msgid "No matching content views found"
3019
3115
  msgstr ""
3020
3116
 
3117
+ msgid "No matching repositories found"
3118
+ msgstr ""
3119
+
3021
3120
  # translation auto-copied from project CFSE, version sam-1.2, document app, author tchuang
3022
3121
  msgid "No new packages installed"
3023
3122
  msgstr "未安裝新的套件"
@@ -3157,6 +3256,9 @@ msgstr ""
3157
3256
  msgid "On-disk location for exported repositories"
3158
3257
  msgstr ""
3159
3258
 
3259
+ msgid "On-disk location for pulp 3 exported repositories"
3260
+ msgstr ""
3261
+
3160
3262
  msgid "One of parameters [ %s ] required but not specified."
3161
3263
  msgstr "需要其中一項 [%s] 參數,不過尚未指定。"
3162
3264
 
@@ -3189,6 +3291,9 @@ msgstr "操作器"
3189
3291
  msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3190
3292
  msgstr ""
3191
3293
 
3294
+ msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z). Relevant only for Pulp 2 repositories"
3295
+ msgstr ""
3296
+
3192
3297
  # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
3193
3298
  msgid "Organization"
3194
3299
  msgstr "組織"
@@ -3463,6 +3568,18 @@ msgstr ""
3463
3568
  msgid "Perform an Incremental Update on one or more Content View Versions"
3464
3569
  msgstr "在一或更多個內容視域版本上執行一項遞增更新"
3465
3570
 
3571
+ msgid "Performs a full-export of a content view version."
3572
+ msgstr ""
3573
+
3574
+ msgid "Performs a full-export of the repositories in library."
3575
+ msgstr ""
3576
+
3577
+ msgid "Performs an incremental-export of a content view version."
3578
+ msgstr ""
3579
+
3580
+ msgid "Performs an incremental-export of the repositories in library."
3581
+ msgstr ""
3582
+
3466
3583
  # translation auto-copied from project CFSE, version sam-1.2, document app, author snowlet
3467
3584
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3468
3585
  msgstr "存取被拒。使用者 '%{user}' 並沒有存取組織 '%{org}' 的權限。"
@@ -3473,6 +3590,9 @@ msgstr "實體的"
3473
3590
  msgid "Plan numeric identifier"
3474
3591
  msgstr "計畫的數字識別元"
3475
3592
 
3593
+ msgid "Please add some repositories."
3594
+ msgstr ""
3595
+
3476
3596
  msgid "Please enter a positive number above zero"
3477
3597
  msgstr ""
3478
3598
 
@@ -3500,6 +3620,9 @@ msgstr ""
3500
3620
  msgid "Please select one from the list below and you will be redirected."
3501
3621
  msgstr ""
3502
3622
 
3623
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3624
+ msgstr ""
3625
+
3503
3626
  msgid "Processing metadata"
3504
3627
  msgstr "處理 metadata"
3505
3628
 
@@ -3607,6 +3730,9 @@ msgstr ""
3607
3730
  msgid "Pulp"
3608
3731
  msgstr ""
3609
3732
 
3733
+ msgid "Pulp 3 export destination filepath"
3734
+ msgstr ""
3735
+
3610
3736
  msgid "Pulp 3 migration cannot run. Types %s have already been migrated."
3611
3737
  msgstr ""
3612
3738
 
@@ -3661,6 +3787,12 @@ msgstr ""
3661
3787
  msgid "Pulp task error"
3662
3788
  msgstr "Pulp 任務錯誤"
3663
3789
 
3790
+ msgid "Pulp user or group unable to read '%s'."
3791
+ msgstr ""
3792
+
3793
+ msgid "Pulp user or group unable to read content in '%s'."
3794
+ msgstr ""
3795
+
3664
3796
  msgid "Pulpcore"
3665
3797
  msgstr ""
3666
3798
 
@@ -3737,6 +3869,9 @@ msgstr ""
3737
3869
  msgid "Recommended Repositories"
3738
3870
  msgstr ""
3739
3871
 
3872
+ msgid "Red Hat"
3873
+ msgstr ""
3874
+
3740
3875
  msgid "Red Hat CDN URL"
3741
3876
  msgstr "Red Hat CDN 網址"
3742
3877
 
@@ -3962,6 +4097,9 @@ msgstr ""
3962
4097
  msgid "Resolve Traces"
3963
4098
  msgstr ""
3964
4099
 
4100
+ msgid "Resolve traces for one or more hosts"
4101
+ msgstr ""
4102
+
3965
4103
  msgid "Resource"
3966
4104
  msgstr ""
3967
4105
 
@@ -4041,6 +4179,9 @@ msgstr "回傳軟體庫 GPG 金鑰的內容,直接由 yum 所使用"
4041
4179
  msgid "Role"
4042
4180
  msgstr ""
4043
4181
 
4182
+ msgid "Role of host"
4183
+ msgstr ""
4184
+
4044
4185
  msgid "Run Sync Plan:"
4045
4186
  msgstr ""
4046
4187
 
@@ -4142,6 +4283,9 @@ msgstr "服務等級 %s"
4142
4283
  msgid "Service Level (SLA)"
4143
4284
  msgstr ""
4144
4285
 
4286
+ msgid "Service level of host"
4287
+ msgstr ""
4288
+
4145
4289
  msgid "Service level to be used for autoheal"
4146
4290
  msgstr ""
4147
4291
 
@@ -4245,6 +4389,15 @@ msgstr "顯示版本資訊"
4245
4389
  msgid "Simple Content Access"
4246
4390
  msgstr ""
4247
4391
 
4392
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4393
+ msgstr ""
4394
+
4395
+ msgid "Simple Content Access has been disabled for '%{subject}'."
4396
+ msgstr ""
4397
+
4398
+ msgid "Simple Content Access has been enabled for '%{subject}'."
4399
+ msgstr ""
4400
+
4248
4401
  msgid "Size of file to upload"
4249
4402
  msgstr ""
4250
4403
 
@@ -4279,6 +4432,9 @@ msgstr ""
4279
4432
  msgid "Specify the list of units in each repo"
4280
4433
  msgstr ""
4281
4434
 
4435
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4436
+ msgstr ""
4437
+
4282
4438
  msgid "Stacking ID"
4283
4439
  msgstr ""
4284
4440
 
@@ -4492,6 +4648,9 @@ msgstr "同步一或多項產品"
4492
4648
  msgid "Sync plan identifier to attach"
4493
4649
  msgstr "同步要連接的計畫識別子"
4494
4650
 
4651
+ msgid "Sync state"
4652
+ msgstr ""
4653
+
4495
4654
  msgid "Synced Content"
4496
4655
  msgstr ""
4497
4656
 
@@ -4554,6 +4713,9 @@ msgstr "'%s' 環境不可包含變更集!"
4554
4713
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4555
4714
  msgstr ""
4556
4715
 
4716
+ msgid "The TOC file specified in the metadata does not exist. %s "
4717
+ msgstr ""
4718
+
4557
4719
  msgid "The action requested on this composite view cannot be performed until all of the component content view versions have been promoted to the target environment: %{env}. This restriction is optional and can be modified in the Administrator -> Settings -> Content page using the restrict_composite_view flag."
4558
4720
  msgstr ""
4559
4721
 
@@ -4594,15 +4756,26 @@ msgstr "勘誤篩選器規則的開始日期之格式或類型無效。"
4594
4756
  msgid "The erratum type must be an array. Invalid value provided"
4595
4757
  msgstr "勘誤類型必須是陣列。提供的值無效"
4596
4758
 
4759
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4760
+ msgstr ""
4761
+
4597
4762
  msgid "The field to sort the data by. Defaults to the created date."
4598
4763
  msgstr ""
4599
4764
 
4600
4765
  msgid "The following hosts have errata that apply to them: "
4601
4766
  msgstr "下列主機含有套用至它們的勘誤:"
4602
4767
 
4768
+ msgid ""
4769
+ "The following repositories provided in the import metadata are either not available in the Library or are of incorrect Respository Type. Please add or enable the repositories before importing\n"
4770
+ " %{repos}"
4771
+ msgstr ""
4772
+
4603
4773
  msgid "The id of the host to alter"
4604
4774
  msgstr ""
4605
4775
 
4776
+ msgid "The import path must be in a subdirectory under '%s'."
4777
+ msgstr ""
4778
+
4606
4779
  msgid "The list of environments to promote the specified Content View Version to (replacing the older version)"
4607
4780
  msgstr ""
4608
4781
 
@@ -4651,6 +4824,9 @@ msgstr ""
4651
4824
  msgid "The requested resource does not belong to the specified organization"
4652
4825
  msgstr ""
4653
4826
 
4827
+ msgid "The requested traces were not found for this host"
4828
+ msgstr ""
4829
+
4654
4830
  msgid "The selected content source and lifecycle environment do not match"
4655
4831
  msgstr ""
4656
4832
 
@@ -4714,6 +4890,9 @@ msgstr ""
4714
4890
  msgid "There's no running synchronization for this smart proxy."
4715
4891
  msgstr ""
4716
4892
 
4893
+ msgid "This Content View must be set to Import-only before performing an import"
4894
+ msgstr ""
4895
+
4717
4896
  msgid "This Host is not currently registered with subscription-manager."
4718
4897
  msgstr ""
4719
4898
 
@@ -4723,6 +4902,9 @@ msgstr ""
4723
4902
  msgid "This action doesn't support package groups"
4724
4903
  msgstr ""
4725
4904
 
4905
+ msgid "This action will become available after the Pulp 3 content migration"
4906
+ msgstr ""
4907
+
4726
4908
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4727
4909
  msgstr "此憑證能讓使用者透過瀏覽器檢視任何環境中的軟體庫。"
4728
4910
 
@@ -4853,10 +5035,16 @@ msgstr ""
4853
5035
  msgid "Unable to detect puppet path"
4854
5036
  msgstr ""
4855
5037
 
4856
- msgid "Unable to export, 'pulp_export_destination' setting is not a writable directory."
5038
+ msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
4857
5039
  msgstr ""
4858
5040
 
4859
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5041
+ msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5042
+ msgstr ""
5043
+
5044
+ msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
5045
+ msgstr ""
5046
+
5047
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4860
5048
  msgstr ""
4861
5049
 
4862
5050
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
@@ -5072,6 +5260,12 @@ msgstr ""
5072
5260
  msgid "Updating Package..."
5073
5261
  msgstr "正在更新套件……"
5074
5262
 
5263
+ msgid "Updating System Purpose for host"
5264
+ msgstr ""
5265
+
5266
+ msgid "Updating System Purpose for host %s"
5267
+ msgstr ""
5268
+
5075
5269
  # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author Chester Cheng
5076
5270
  msgid "Updating package group..."
5077
5271
  msgstr "更新套件群組......"
@@ -5127,9 +5321,15 @@ msgstr ""
5127
5321
  msgid "Usage Type"
5128
5322
  msgstr ""
5129
5323
 
5324
+ msgid "Usage of host"
5325
+ msgstr ""
5326
+
5130
5327
  msgid "Use remote execution by default"
5131
5328
  msgstr ""
5132
5329
 
5330
+ msgid "Used to determine download concurrency of the repository in pulp3. Use value less than 20. Defaults to 10"
5331
+ msgstr ""
5332
+
5133
5333
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5134
5334
  msgstr "使用者「%s」並未指定組織 ID,並且沒有預設的組織。"
5135
5335
 
@@ -5154,6 +5354,15 @@ msgstr ""
5154
5354
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5155
5355
  msgstr ""
5156
5356
 
5357
+ msgid "Verify checksum"
5358
+ msgstr ""
5359
+
5360
+ msgid "Verify checksum for one or more products"
5361
+ msgstr ""
5362
+
5363
+ msgid "Verify checksum of repository contents"
5364
+ msgstr ""
5365
+
5157
5366
  msgid "Version"
5158
5367
  msgstr ""
5159
5368
 
@@ -5171,7 +5380,7 @@ msgstr ""
5171
5380
  msgid "Virtual"
5172
5381
  msgstr "虛擬"
5173
5382
 
5174
- msgid "When Simple Content Access is enabled, hosts can consume from all repositories in their Content View regardless of subscription status."
5383
+ msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5175
5384
  msgstr ""
5176
5385
 
5177
5386
  msgid "When registering a host via subscription-manager, force use the specified fact (in the form of 'fact.fact')"
@@ -5240,6 +5449,9 @@ msgstr "您不能設置組織的 parent_id。這項功能已停用。"
5240
5449
  msgid "You currently don't have any Content Views."
5241
5450
  msgstr ""
5242
5451
 
5452
+ msgid "You currently don't have any repositories to add to this content view."
5453
+ msgstr ""
5454
+
5243
5455
  msgid "You do not have permissions to delete %s"
5244
5456
  msgstr "您沒有刪除 %s 的權限"
5245
5457
 
@@ -5348,6 +5560,9 @@ msgstr "組織"
5348
5560
  msgid "an ostree branch"
5349
5561
  msgstr ""
5350
5562
 
5563
+ msgid "are only allowed for Yum repositories."
5564
+ msgstr ""
5565
+
5351
5566
  msgid "attempted to sync without a feed URL"
5352
5567
  msgstr ""
5353
5568
 
@@ -5367,6 +5582,9 @@ msgstr ""
5367
5582
  msgid "can't be blank"
5368
5583
  msgstr "不能留白"
5369
5584
 
5585
+ msgid "cannot add filter to import-only view"
5586
+ msgstr ""
5587
+
5370
5588
  # translation auto-copied from project CFSE, version sam-1.2, document app, author tchuang
5371
5589
  msgid "cannot be a binary file."
5372
5590
  msgstr "不能是二進位檔案。"
@@ -5424,13 +5642,13 @@ msgstr ""
5424
5642
  msgid "checking Pulp task status"
5425
5643
  msgstr ""
5426
5644
 
5427
- msgid "comma separated list of architectures to be synched from deb-archive"
5645
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5428
5646
  msgstr ""
5429
5647
 
5430
- msgid "comma separated list of releases to be synched from deb-archive"
5648
+ msgid "comma-separated list of releases to be synced from deb-archive"
5431
5649
  msgstr ""
5432
5650
 
5433
- msgid "comma separated list of repo components to be synched from deb-archive"
5651
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5434
5652
  msgstr ""
5435
5653
 
5436
5654
  msgid "composite content view identifier"
@@ -5659,9 +5877,6 @@ msgstr ""
5659
5877
  msgid "if true, Katello will verify the upstream url's SSL certifcates are signed by a trusted CA"
5660
5878
  msgstr ""
5661
5879
 
5662
- msgid "if true, the repositories will be automatically enabled on a registered host subscribed to this product. Default: true"
5663
- msgstr ""
5664
-
5665
5880
  msgid "if true, will ignore the globally configured proxy when syncing"
5666
5881
  msgstr ""
5667
5882
 
@@ -5701,6 +5916,9 @@ msgstr ""
5701
5916
  msgid "invalid container image name"
5702
5917
  msgstr ""
5703
5918
 
5919
+ msgid "invalid: Repositories can only require one OS version."
5920
+ msgstr ""
5921
+
5704
5922
  msgid "is already attached to the capsule"
5705
5923
  msgstr "已連至 capsule"
5706
5924
 
@@ -5741,6 +5959,9 @@ msgstr "已註冊的內容主機之最大數量"
5741
5959
  msgid "maximum size of each ISO in MB"
5742
5960
  msgstr ""
5743
5961
 
5962
+ msgid "maximum size of each ISO in MB. Relevant only for Pulp 2 repositories"
5963
+ msgstr ""
5964
+
5744
5965
  msgid "may not be less than the number of hosts associated with the host collection."
5745
5966
  msgstr ""
5746
5967
 
@@ -5763,6 +5984,9 @@ msgstr "必須是個正整數。"
5763
5984
  msgid "must be one of the following: %s"
5764
5985
  msgstr "必須是以下其中之一:%s"
5765
5986
 
5987
+ msgid "must be one of: %s"
5988
+ msgstr ""
5989
+
5766
5990
  # translation auto-copied from project CFSE, version sam-1.2, document app, author snowlet
5767
5991
  msgid "must be unique within one organization"
5768
5992
  msgstr "必須在組織中是獨一無二的"
@@ -6027,6 +6251,9 @@ msgstr ""
6027
6251
  msgid "the uuid of the puppet module to associate"
6028
6252
  msgstr "欲相聯的 puppet 模組之 UUID"
6029
6253
 
6254
+ msgid "true if the export api is pulp3 ready and usable. This API is intended for use by hammer-cli only."
6255
+ msgstr ""
6256
+
6030
6257
  msgid "true if the latest version of the component's content view is desired"
6031
6258
  msgstr ""
6032
6259