katello 3.18.0.rc2.1 → 3.18.2.1

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 (147) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/stylesheets/katello/katello.scss +0 -72
  3. data/app/controllers/katello/api/v2/api_controller.rb +1 -2
  4. data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
  5. data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
  6. data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
  7. data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
  8. data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
  9. data/app/controllers/katello/api/v2/content_view_versions_controller.rb +56 -94
  10. data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +2 -1
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +2 -0
  12. data/app/controllers/katello/concerns/api/v2/authorization.rb +14 -1
  13. data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
  14. data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
  15. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +7 -2
  16. data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
  17. data/app/lib/actions/katello/content_view/publish.rb +1 -1
  18. data/app/lib/actions/katello/content_view_version/import.rb +2 -1
  19. data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
  20. data/app/lib/actions/katello/content_view_version/incremental_update.rb +19 -3
  21. data/app/lib/actions/katello/host/update_system_purpose.rb +1 -1
  22. data/app/lib/actions/katello/repository/sync.rb +5 -1
  23. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +24 -4
  24. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  25. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  26. data/app/lib/actions/pulp3/content_migration_reset.rb +22 -0
  27. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  28. data/app/lib/actions/pulp3/content_view_version/export.rb +3 -2
  29. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  30. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  31. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +17 -13
  32. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  33. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +0 -4
  34. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  35. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  36. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  37. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  38. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  39. data/app/lib/katello/util/pulpcore_content_filters.rb +1 -1
  40. data/app/models/katello/authorization/content_view_version.rb +25 -2
  41. data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
  42. data/app/models/katello/authorization/organization.rb +8 -0
  43. data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
  44. data/app/models/katello/concerns/pulp_database_unit.rb +19 -0
  45. data/app/models/katello/concerns/redhat_extensions.rb +2 -2
  46. data/app/models/katello/concerns/smart_proxy_extensions.rb +7 -5
  47. data/app/models/katello/content_migration_progress.rb +4 -0
  48. data/app/models/katello/content_view.rb +5 -0
  49. data/app/models/katello/content_view_history.rb +2 -1
  50. data/app/models/katello/content_view_package_filter.rb +1 -1
  51. data/app/models/katello/content_view_version_export_history.rb +6 -1
  52. data/app/models/katello/file_unit.rb +4 -0
  53. data/app/models/katello/host/content_facet.rb +9 -31
  54. data/app/models/katello/host/subscription_facet.rb +4 -0
  55. data/app/models/katello/ping.rb +35 -15
  56. data/app/models/katello/repository.rb +7 -0
  57. data/app/models/katello/subscription_status.rb +3 -2
  58. data/app/services/katello/applicability/applicable_content_helper.rb +44 -15
  59. data/app/services/katello/pulp3/api/docker.rb +4 -0
  60. data/app/services/katello/pulp3/content_view_version/export.rb +63 -5
  61. data/app/services/katello/pulp3/content_view_version/import.rb +40 -0
  62. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +0 -16
  63. data/app/services/katello/pulp3/content_view_version/import_validator.rb +26 -49
  64. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  65. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  66. data/app/services/katello/pulp3/erratum.rb +2 -1
  67. data/app/services/katello/pulp3/migration.rb +95 -12
  68. data/app/services/katello/pulp3/migration_plan.rb +2 -2
  69. data/app/services/katello/pulp3/migration_switchover.rb +23 -5
  70. data/app/services/katello/pulp3/repository.rb +10 -5
  71. data/app/services/katello/pulp3/repository/docker.rb +5 -0
  72. data/app/services/katello/pulp3/repository/yum.rb +23 -8
  73. data/app/services/katello/pulp3/rpm.rb +5 -1
  74. data/app/services/katello/pulp3/task.rb +4 -0
  75. data/app/services/katello/pulp3/task_group.rb +4 -0
  76. data/app/views/katello/api/v2/content_views/show.json.rabl +6 -0
  77. data/app/views/katello/layouts/react.html.erb +3 -2
  78. data/app/views/katello/sync_management/_products.html.erb +1 -1
  79. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  80. data/config/routes/api/v2.rb +23 -3
  81. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  82. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +5 -2
  83. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  84. data/db/migrate/20210201165835_add_migration_missing_content.rb +12 -0
  85. data/engines/bastion/app/assets/javascripts/bastion/auth/authorization.service.js +1 -1
  86. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  87. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +35 -40
  88. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  89. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +8 -3
  90. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +9 -3
  91. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
  92. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +4 -0
  93. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +78 -7
  94. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  95. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  96. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  97. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  98. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  99. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  100. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  101. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  102. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  103. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  104. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  105. data/lib/katello/permission_creator.rb +23 -3
  106. data/lib/katello/tasks/delete_orphaned_content.rake +1 -3
  107. data/lib/katello/tasks/pulp3_content_switchover.rake +3 -1
  108. data/lib/katello/tasks/pulp3_migration.rake +29 -6
  109. data/lib/katello/tasks/pulp3_migration_abort.rake +7 -2
  110. data/lib/katello/tasks/pulp3_migration_approve_corrupted.rake +16 -0
  111. data/lib/katello/tasks/pulp3_migration_reset.rake +26 -0
  112. data/lib/katello/tasks/pulp3_migration_stats.rake +61 -8
  113. data/lib/katello/tasks/pulp3_post_migration_check.rake +1 -3
  114. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  115. data/lib/katello/tasks/reports.rake +4 -1
  116. data/lib/katello/tasks/repository.rake +3 -5
  117. data/lib/katello/version.rb +1 -1
  118. data/locale/action_names.rb +51 -51
  119. data/locale/bn/katello.po +136 -51
  120. data/locale/cs/katello.po +136 -49
  121. data/locale/de/katello.po +136 -48
  122. data/locale/en/katello.po +136 -48
  123. data/locale/es/katello.po +136 -48
  124. data/locale/fr/katello.po +136 -48
  125. data/locale/gu/katello.po +136 -51
  126. data/locale/hi/katello.po +136 -51
  127. data/locale/it/katello.po +136 -48
  128. data/locale/ja/katello.po +136 -48
  129. data/locale/katello.pot +941 -767
  130. data/locale/kn/katello.po +136 -51
  131. data/locale/ko/katello.po +136 -48
  132. data/locale/mr/katello.po +136 -51
  133. data/locale/or/katello.po +136 -51
  134. data/locale/pa/katello.po +136 -51
  135. data/locale/pt/katello.po +136 -51
  136. data/locale/pt_BR/katello.po +136 -48
  137. data/locale/ru/katello.po +136 -48
  138. data/locale/ta/katello.po +136 -51
  139. data/locale/te/katello.po +136 -51
  140. data/locale/zh_CN/katello.po +136 -48
  141. data/locale/zh_TW/katello.po +136 -48
  142. data/webpack/components/TypeAhead/TypeAhead.js +2 -1
  143. data/webpack/components/TypeAhead/pf3Search/TypeAheadSearch.js +2 -1
  144. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +7 -2
  145. data/webpack/scenes/Subscriptions/Manifest/index.js +1 -0
  146. metadata +31 -19
  147. data/lib/katello/tasks/common.rake +0 -7
data/locale/es/katello.po CHANGED
@@ -22,6 +22,11 @@ msgstr ""
22
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\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
 
@@ -345,12 +350,18 @@ msgstr ""
345
350
  msgid "Action with sub plans"
346
351
  msgstr ""
347
352
 
353
+ msgid "Activation Key(s)"
354
+ msgstr ""
355
+
348
356
  msgid "Activation Keys"
349
357
  msgstr "Llaves de activación"
350
358
 
351
359
  msgid "Activation key ID"
352
360
  msgstr "ID de llave de activación"
353
361
 
362
+ 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."
363
+ msgstr ""
364
+
354
365
  msgid "Activation keys and subscriptions can be managed"
355
366
  msgstr "Pueden administrarse llaves de activación y suscripciones "
356
367
 
@@ -825,12 +836,18 @@ msgstr ""
825
836
  msgid "Cannot upload Container Image content."
826
837
  msgstr ""
827
838
 
839
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
840
+ msgstr ""
841
+
828
842
  msgid "Cannot validate contents on non-yum/deb repositories."
829
843
  msgstr ""
830
844
 
831
845
  msgid "Check if a connection can be made to Red Hat Subscription Management."
832
846
  msgstr ""
833
847
 
848
+ msgid "Check if the specified organization is eligible for Simple Content Access"
849
+ msgstr ""
850
+
834
851
  msgid "Check services before actions"
835
852
  msgstr ""
836
853
 
@@ -846,9 +863,6 @@ msgstr ""
846
863
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
847
864
  msgstr ""
848
865
 
849
- msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
850
- msgstr ""
851
-
852
866
  msgid "Click here to go to the tasks page for the task."
853
867
  msgstr ""
854
868
 
@@ -869,7 +883,7 @@ msgstr ""
869
883
  msgid "Combined Profile Update for %s"
870
884
  msgstr ""
871
885
 
872
- msgid "Comma separated list of tags to sync for Container Image repository"
886
+ msgid "Comma-separated list of tags to sync for Container Image repository"
873
887
  msgstr ""
874
888
 
875
889
  # translation auto-copied from project PressGang CCMS topics, version 1, document 15564-459330, author agarcia
@@ -925,10 +939,16 @@ msgstr ""
925
939
  msgid "Content Download URL"
926
940
  msgstr ""
927
941
 
942
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
943
+ msgstr ""
944
+
928
945
  # translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
929
946
  msgid "Content Hosts"
930
947
  msgstr "Hosts de contenido"
931
948
 
949
+ msgid "Content Migration"
950
+ msgstr ""
951
+
932
952
  msgid "Content Source"
933
953
  msgstr "Fuente de contenido"
934
954
 
@@ -1027,6 +1047,9 @@ msgstr "Etiqueta de la vista de contenido"
1027
1047
  msgid "Content view numeric identifier"
1028
1048
  msgstr "Identificador numérico de la vista de contenido"
1029
1049
 
1050
+ msgid "Content view version export history identifier"
1051
+ msgstr ""
1052
+
1030
1053
  msgid "Content view version identifier"
1031
1054
  msgstr "Identificador de versión de la vista de contenido"
1032
1055
 
@@ -1067,6 +1090,9 @@ msgstr ""
1067
1090
  msgid "Could not find %{name} resource with id %{id}"
1068
1091
  msgstr ""
1069
1092
 
1093
+ msgid "Could not find %{name} resources with ids %{ids}"
1094
+ msgstr ""
1095
+
1070
1096
  msgid "Could not find Environment with ids: %s"
1071
1097
  msgstr "No se encontró entorno con los ID: %s"
1072
1098
 
@@ -1148,12 +1174,6 @@ msgstr "No se encontró el entorno '%s'"
1148
1174
  msgid "Couldn't find errata ids '%s'"
1149
1175
  msgstr "No se encontraron ID de erratas '%s'"
1150
1176
 
1151
- msgid "Couldn't find gpg key '%s'"
1152
- msgstr "No se encontró la llave GPG '%s'"
1153
-
1154
- msgid "Couldn't find host '%s'"
1155
- msgstr ""
1156
-
1157
1177
  msgid "Couldn't find host collection '%s'"
1158
1178
  msgstr "No se encontró la recopilación de hosts '%s'"
1159
1179
 
@@ -1166,9 +1186,6 @@ msgstr "No se encontró la organización '%s'"
1166
1186
  msgid "Couldn't find prior-environment '%s'"
1167
1187
  msgstr "No se encontró el entorno anterior '%s'"
1168
1188
 
1169
- msgid "Couldn't find product '%s'"
1170
- msgstr "No se encontró el producto '%s'"
1171
-
1172
1189
  # translation auto-copied from project CFSE, version sam-1.2, document app
1173
1190
  msgid "Couldn't find product with id '%s'"
1174
1191
  msgstr "No se encontró el producto con ID '%s'"
@@ -1176,21 +1193,9 @@ msgstr "No se encontró el producto con ID '%s'"
1176
1193
  msgid "Couldn't find repository '%s'"
1177
1194
  msgstr "No se encontró el repositorio '%s'"
1178
1195
 
1179
- msgid "Couldn't find repository set with id '%s'."
1180
- msgstr "No se encontró el set de repositorios con ID '%s'"
1181
-
1182
1196
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1183
1197
  msgstr ""
1184
1198
 
1185
- msgid "Couldn't find ssl ca cert '%s'"
1186
- msgstr ""
1187
-
1188
- msgid "Couldn't find ssl client cert '%s'"
1189
- msgstr ""
1190
-
1191
- msgid "Couldn't find ssl client key '%s'"
1192
- msgstr ""
1193
-
1194
1199
  msgid "Couldn't find subject of synchronization"
1195
1200
  msgstr "No se encontró asunto de sincronización"
1196
1201
 
@@ -1264,6 +1269,9 @@ msgstr ""
1264
1269
  msgid "Current organization not set."
1265
1270
  msgstr ""
1266
1271
 
1272
+ msgid "Custom"
1273
+ msgstr ""
1274
+
1267
1275
  msgid "Custom Content Repositories"
1268
1276
  msgstr "Personalizar repositorios de contenido"
1269
1277
 
@@ -1471,18 +1479,15 @@ msgstr "Descripción para la nueva versión de vista de contenido publicada"
1471
1479
  msgid "Description of the repository"
1472
1480
  msgstr ""
1473
1481
 
1474
- msgid "Desired quantity of the pool"
1482
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1475
1483
  msgstr ""
1476
1484
 
1477
- msgid "Destination Server Name required for Pulp3 repositories"
1485
+ msgid "Desired quantity of the pool"
1478
1486
  msgstr ""
1479
1487
 
1480
1488
  msgid "Destination Server name"
1481
1489
  msgstr ""
1482
1490
 
1483
- msgid "Destination Server name, required for Pulp3"
1484
- msgstr ""
1485
-
1486
1491
  # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/java/StringResource
1487
1492
  msgid "Destroy"
1488
1493
  msgstr "Destruir"
@@ -1752,7 +1757,10 @@ msgstr ""
1752
1757
  msgid "Export CSV"
1753
1758
  msgstr ""
1754
1759
 
1755
- msgid "Export a content view version"
1760
+ msgid "Export Library"
1761
+ msgstr ""
1762
+
1763
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1756
1764
  msgstr ""
1757
1765
 
1758
1766
  msgid "Export a repository"
@@ -1761,10 +1769,13 @@ msgstr ""
1761
1769
  msgid "Export as CSV"
1762
1770
  msgstr ""
1763
1771
 
1772
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1773
+ msgstr ""
1774
+
1764
1775
  msgid "Export to ISO format"
1765
1776
  msgstr ""
1766
1777
 
1767
- msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1778
+ msgid "Export to ISO format."
1768
1779
  msgstr ""
1769
1780
 
1770
1781
  msgid "Exported version"
@@ -2041,6 +2052,9 @@ msgstr ""
2041
2052
  msgid "Host id to list applicable packages for"
2042
2053
  msgstr ""
2043
2054
 
2055
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2056
+ msgstr ""
2057
+
2044
2058
  msgid "Host with ID %s already exists in the host collection."
2045
2059
  msgstr ""
2046
2060
 
@@ -2194,6 +2208,9 @@ msgstr ""
2194
2208
  msgid "Identifiers for Lifecycle Environment"
2195
2209
  msgstr ""
2196
2210
 
2211
+ 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"
2212
+ msgstr ""
2213
+
2197
2214
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2198
2215
  msgstr ""
2199
2216
 
@@ -2242,6 +2259,9 @@ msgstr ""
2242
2259
  msgid "Import Content View Version"
2243
2260
  msgstr ""
2244
2261
 
2262
+ msgid "Import Default Content View"
2263
+ msgstr ""
2264
+
2245
2265
  msgid "Import Manifest"
2246
2266
  msgstr "Importar manifiesto: "
2247
2267
 
@@ -2266,12 +2286,24 @@ msgstr ""
2266
2286
  msgid "Import a content view version"
2267
2287
  msgstr ""
2268
2288
 
2289
+ msgid "Import a content view version to the library"
2290
+ msgstr ""
2291
+
2269
2292
  msgid "Import facts"
2270
2293
  msgstr "Eventos de importación"
2271
2294
 
2272
2295
  msgid "Import uploads into a repository"
2273
2296
  msgstr "Importar cargas a un repositorio"
2274
2297
 
2298
+ msgid "Import-only can not be changed after creation"
2299
+ msgstr ""
2300
+
2301
+ msgid "Import-only content views can not be published directly"
2302
+ msgstr ""
2303
+
2304
+ msgid "Import-only content views will be available in a future version."
2305
+ msgstr ""
2306
+
2275
2307
  msgid "Importing manifest into '%{subject}' failed."
2276
2308
  msgstr ""
2277
2309
 
@@ -2433,9 +2465,6 @@ msgstr ""
2433
2465
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2434
2466
  msgstr "Regla de filtro no válida. 'version' no se puede especificar en la misma tupla que 'min_version' o 'max_version'"
2435
2467
 
2436
- msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2437
- msgstr ""
2438
-
2439
2468
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2440
2469
  msgstr "Parámetros inválidos enviados en la solicitud para esta operación. Por favor contacte a un administrador de sistemas."
2441
2470
 
@@ -2460,6 +2489,12 @@ msgstr ""
2460
2489
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2461
2490
  msgstr "Módulo puppet no válido. Asegúrese de que el módulo puppet contiene un archivo metadata.json y está comprimido correctamente."
2462
2491
 
2492
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2493
+ msgstr ""
2494
+
2495
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2496
+ msgstr ""
2497
+
2463
2498
  msgid "Invalid value specified for Container Image repositories."
2464
2499
  msgstr ""
2465
2500
 
@@ -2469,6 +2504,9 @@ msgstr ""
2469
2504
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2470
2505
  msgstr ""
2471
2506
 
2507
+ msgid "Katello"
2508
+ msgstr ""
2509
+
2472
2510
  msgid "Katello ID of local pool to update"
2473
2511
  msgstr ""
2474
2512
 
@@ -2629,6 +2667,9 @@ msgstr "Mostrar erratas"
2629
2667
  msgid "List errata available for the content host"
2630
2668
  msgstr "Mostrar erratas disponibles para el host de contenido"
2631
2669
 
2670
+ msgid "List export histories"
2671
+ msgstr ""
2672
+
2632
2673
  msgid "List filter rules"
2633
2674
  msgstr "Mostrar reglas de filtro"
2634
2675
 
@@ -3007,6 +3048,9 @@ msgstr ""
3007
3048
  msgid "No errors"
3008
3049
  msgstr "No hay errores"
3009
3050
 
3051
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3052
+ msgstr ""
3053
+
3010
3054
  msgid "No file uploaded"
3011
3055
  msgstr "No se ha cargado ningún archivo"
3012
3056
 
@@ -3442,6 +3486,18 @@ msgstr ""
3442
3486
  msgid "Perform an Incremental Update on one or more Content View Versions"
3443
3487
  msgstr "Realizar una actualización incremental en uno o más versiones de vista de contenido"
3444
3488
 
3489
+ msgid "Performs a full-export of a content view version."
3490
+ msgstr ""
3491
+
3492
+ msgid "Performs a full-export of the repositories in library."
3493
+ msgstr ""
3494
+
3495
+ msgid "Performs an incremental-export of a content view version."
3496
+ msgstr ""
3497
+
3498
+ msgid "Performs an incremental-export of the repositories in library."
3499
+ msgstr ""
3500
+
3445
3501
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3446
3502
  msgstr "Permiso denegado. El usuario '%{user}' no tiene permiso para acceder a la organización '%{org}'."
3447
3503
 
@@ -3482,6 +3538,9 @@ msgstr ""
3482
3538
  msgid "Please select one from the list below and you will be redirected."
3483
3539
  msgstr ""
3484
3540
 
3541
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3542
+ msgstr ""
3543
+
3485
3544
  msgid "Processing metadata"
3486
3545
  msgstr "Procesando metadatos"
3487
3546
 
@@ -3727,6 +3786,9 @@ msgstr ""
3727
3786
  msgid "Recommended Repositories"
3728
3787
  msgstr ""
3729
3788
 
3789
+ msgid "Red Hat"
3790
+ msgstr ""
3791
+
3730
3792
  msgid "Red Hat CDN URL"
3731
3793
  msgstr "Red Hat CDN URL"
3732
3794
 
@@ -3788,9 +3850,6 @@ msgstr "Releasever para habilitar"
3788
3850
  msgid "Reload data"
3789
3851
  msgstr "Volver a cargar datos"
3790
3852
 
3791
- msgid "Remote action:"
3792
- msgstr ""
3793
-
3794
3853
  msgid "Removal of package group(s) requested: %{groups}"
3795
3854
  msgstr ""
3796
3855
 
@@ -3876,9 +3935,6 @@ msgstr "Retirando paquetes..."
3876
3935
  msgid "Repo Type"
3877
3936
  msgstr ""
3878
3937
 
3879
- msgid "Report"
3880
- msgstr ""
3881
-
3882
3938
  # translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author gguerrer
3883
3939
  msgid "Repositories"
3884
3940
  msgstr "Repositorios"
@@ -4238,9 +4294,6 @@ msgstr "Mostrar versiones disponibles para el host de contenido"
4238
4294
  msgid "Show the available repository types"
4239
4295
  msgstr ""
4240
4296
 
4241
- msgid "Show the export history for a content view version"
4242
- msgstr ""
4243
-
4244
4297
  msgid "Shows status of Katello system and it's subcomponents"
4245
4298
  msgstr ""
4246
4299
 
@@ -4250,6 +4303,9 @@ msgstr "Muestra información de versión"
4250
4303
  msgid "Simple Content Access"
4251
4304
  msgstr ""
4252
4305
 
4306
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4307
+ msgstr ""
4308
+
4253
4309
  msgid "Simple Content Access has been disabled for '%{subject}'."
4254
4310
  msgstr ""
4255
4311
 
@@ -4290,6 +4346,9 @@ msgstr ""
4290
4346
  msgid "Specify the list of units in each repo"
4291
4347
  msgstr ""
4292
4348
 
4349
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4350
+ msgstr ""
4351
+
4293
4352
  msgid "Stacking ID"
4294
4353
  msgstr ""
4295
4354
 
@@ -4563,6 +4622,9 @@ msgstr "¡El entorno '%s' no puede contener un changeset!"
4563
4622
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4564
4623
  msgstr ""
4565
4624
 
4625
+ msgid "The TOC file specified in the metadata does not exist. %s "
4626
+ msgstr ""
4627
+
4566
4628
  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."
4567
4629
  msgstr ""
4568
4630
 
@@ -4602,12 +4664,20 @@ msgstr "La fecha de inicio de la regla de filtro de errata tiene un formato o ti
4602
4664
  msgid "The erratum type must be an array. Invalid value provided"
4603
4665
  msgstr "El tipo de errata debe ser una matriz. Se ha proporcionado un valor no válido"
4604
4666
 
4667
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4668
+ msgstr ""
4669
+
4605
4670
  msgid "The field to sort the data by. Defaults to the created date."
4606
4671
  msgstr ""
4607
4672
 
4608
4673
  msgid "The following hosts have errata that apply to them: "
4609
4674
  msgstr "Los siguientes hosts tienen erratas que aplican a ellos:"
4610
4675
 
4676
+ msgid ""
4677
+ "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"
4678
+ " %{repos}"
4679
+ msgstr ""
4680
+
4611
4681
  msgid "The id of the host to alter"
4612
4682
  msgstr ""
4613
4683
 
@@ -4728,7 +4798,7 @@ msgstr ""
4728
4798
  msgid "There's no running synchronization for this smart proxy."
4729
4799
  msgstr ""
4730
4800
 
4731
- msgid "This API endpoint is only valid for Pulp 3 repositories."
4801
+ msgid "This Content View must be set to Import-only before performing an import"
4732
4802
  msgstr ""
4733
4803
 
4734
4804
  msgid "This Host is not currently registered with subscription-manager."
@@ -4740,6 +4810,9 @@ msgstr ""
4740
4810
  msgid "This action doesn't support package groups"
4741
4811
  msgstr ""
4742
4812
 
4813
+ msgid "This action will become available after the Pulp 3 content migration"
4814
+ msgstr ""
4815
+
4743
4816
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4744
4817
  msgstr "Este certificado permite al usuario ver los repositorios en cualquier entorno desde un navegador."
4745
4818
 
@@ -4879,6 +4952,9 @@ msgstr ""
4879
4952
  msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
4880
4953
  msgstr ""
4881
4954
 
4955
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
4956
+ msgstr ""
4957
+
4882
4958
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
4883
4959
  msgstr "No se pueden reasignar activation_keys. Compruebe activation_key_content_view_id y activation_key_environment_id."
4884
4960
 
@@ -5390,6 +5466,9 @@ msgstr "una organización"
5390
5466
  msgid "an ostree branch"
5391
5467
  msgstr ""
5392
5468
 
5469
+ msgid "are only allowed for Yum repositories."
5470
+ msgstr ""
5471
+
5393
5472
  msgid "attempted to sync without a feed URL"
5394
5473
  msgstr ""
5395
5474
 
@@ -5408,6 +5487,9 @@ msgstr ""
5408
5487
  msgid "can't be blank"
5409
5488
  msgstr "No se puede dejar en blanco"
5410
5489
 
5490
+ msgid "cannot add filter to import-only view"
5491
+ msgstr ""
5492
+
5411
5493
  msgid "cannot be a binary file."
5412
5494
  msgstr "No puede ser un archivo binario."
5413
5495
 
@@ -5464,13 +5546,13 @@ msgstr ""
5464
5546
  msgid "checking Pulp task status"
5465
5547
  msgstr ""
5466
5548
 
5467
- msgid "comma separated list of architectures to be synched from deb-archive"
5549
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5468
5550
  msgstr ""
5469
5551
 
5470
- msgid "comma separated list of releases to be synched from deb-archive"
5552
+ msgid "comma-separated list of releases to be synced from deb-archive"
5471
5553
  msgstr ""
5472
5554
 
5473
- msgid "comma separated list of repo components to be synched from deb-archive"
5555
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5474
5556
  msgstr ""
5475
5557
 
5476
5558
  msgid "composite content view identifier"
@@ -5733,6 +5815,9 @@ msgstr ""
5733
5815
  msgid "invalid container image name"
5734
5816
  msgstr ""
5735
5817
 
5818
+ msgid "invalid: Repositories can only require one OS version."
5819
+ msgstr ""
5820
+
5736
5821
  msgid "is already attached to the capsule"
5737
5822
  msgstr "ya está asociada a la Capsule"
5738
5823
 
@@ -5796,6 +5881,9 @@ msgstr "Debe ser un valor entero positivo."
5796
5881
  msgid "must be one of the following: %s"
5797
5882
  msgstr "debe ser uno de lo siguiente: %s"
5798
5883
 
5884
+ msgid "must be one of: %s"
5885
+ msgstr ""
5886
+
5799
5887
  msgid "must be unique within one organization"
5800
5888
  msgstr "Debe ser único dentro de una organización"
5801
5889