katello 3.18.0.rc2 → 3.18.2

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 (144) 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/host/upload_package_profile.rb +1 -1
  23. data/app/lib/actions/katello/host/upload_profiles.rb +1 -1
  24. data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +24 -4
  25. data/app/lib/actions/pulp3/content_migration.rb +10 -0
  26. data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
  27. data/app/lib/actions/pulp3/content_migration_reset.rb +22 -0
  28. data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
  29. data/app/lib/actions/pulp3/content_view_version/export.rb +3 -2
  30. data/app/lib/actions/pulp3/import_migration.rb +6 -1
  31. data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
  32. data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +17 -13
  33. data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
  34. data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +0 -4
  35. data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
  36. data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
  37. data/app/lib/actions/pulp3/repository/delete.rb +1 -1
  38. data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
  39. data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
  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/subscription_facet.rb +4 -0
  54. data/app/models/katello/repository.rb +7 -0
  55. data/app/models/katello/subscription_status.rb +3 -2
  56. data/app/services/katello/applicability/applicable_content_helper.rb +44 -15
  57. data/app/services/katello/pulp3/api/docker.rb +4 -0
  58. data/app/services/katello/pulp3/content_view_version/export.rb +63 -5
  59. data/app/services/katello/pulp3/content_view_version/import.rb +40 -0
  60. data/app/services/katello/pulp3/content_view_version/import_export_common.rb +0 -16
  61. data/app/services/katello/pulp3/content_view_version/import_validator.rb +26 -49
  62. data/app/services/katello/pulp3/docker_manifest.rb +1 -0
  63. data/app/services/katello/pulp3/docker_tag.rb +1 -0
  64. data/app/services/katello/pulp3/erratum.rb +2 -1
  65. data/app/services/katello/pulp3/migration.rb +95 -12
  66. data/app/services/katello/pulp3/migration_plan.rb +2 -2
  67. data/app/services/katello/pulp3/migration_switchover.rb +21 -5
  68. data/app/services/katello/pulp3/repository.rb +10 -5
  69. data/app/services/katello/pulp3/repository/docker.rb +5 -0
  70. data/app/services/katello/pulp3/repository/yum.rb +23 -8
  71. data/app/services/katello/pulp3/task.rb +4 -0
  72. data/app/services/katello/pulp3/task_group.rb +4 -0
  73. data/app/views/katello/api/v2/content_views/show.json.rabl +6 -0
  74. data/app/views/katello/layouts/react.html.erb +3 -2
  75. data/app/views/katello/sync_management/_products.html.erb +1 -1
  76. data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
  77. data/config/routes/api/v2.rb +23 -3
  78. data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
  79. data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +5 -2
  80. data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
  81. data/db/migrate/20210201165835_add_migration_missing_content.rb +12 -0
  82. data/engines/bastion/app/assets/javascripts/bastion/auth/authorization.service.js +1 -1
  83. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
  84. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +35 -40
  85. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
  86. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +8 -3
  87. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +9 -3
  88. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
  89. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +4 -0
  90. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +78 -7
  91. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
  92. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
  93. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
  94. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
  95. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
  96. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
  97. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
  98. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
  99. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
  100. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
  101. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
  102. data/lib/katello/permission_creator.rb +23 -3
  103. data/lib/katello/tasks/delete_orphaned_content.rake +1 -3
  104. data/lib/katello/tasks/pulp3_content_switchover.rake +3 -1
  105. data/lib/katello/tasks/pulp3_migration.rake +25 -6
  106. data/lib/katello/tasks/pulp3_migration_abort.rake +7 -2
  107. data/lib/katello/tasks/pulp3_migration_approve_corrupted.rake +16 -0
  108. data/lib/katello/tasks/pulp3_migration_reset.rake +26 -0
  109. data/lib/katello/tasks/pulp3_migration_stats.rake +61 -8
  110. data/lib/katello/tasks/pulp3_post_migration_check.rake +1 -3
  111. data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
  112. data/lib/katello/tasks/reports.rake +4 -1
  113. data/lib/katello/tasks/repository.rake +3 -5
  114. data/lib/katello/version.rb +1 -1
  115. data/locale/action_names.rb +51 -51
  116. data/locale/bn/katello.po +136 -51
  117. data/locale/cs/katello.po +136 -49
  118. data/locale/de/katello.po +136 -48
  119. data/locale/en/katello.po +136 -48
  120. data/locale/es/katello.po +136 -48
  121. data/locale/fr/katello.po +136 -48
  122. data/locale/gu/katello.po +136 -51
  123. data/locale/hi/katello.po +136 -51
  124. data/locale/it/katello.po +136 -48
  125. data/locale/ja/katello.po +136 -48
  126. data/locale/katello.pot +941 -767
  127. data/locale/kn/katello.po +136 -51
  128. data/locale/ko/katello.po +136 -48
  129. data/locale/mr/katello.po +136 -51
  130. data/locale/or/katello.po +136 -51
  131. data/locale/pa/katello.po +136 -51
  132. data/locale/pt/katello.po +136 -51
  133. data/locale/pt_BR/katello.po +136 -48
  134. data/locale/ru/katello.po +136 -48
  135. data/locale/ta/katello.po +136 -51
  136. data/locale/te/katello.po +136 -51
  137. data/locale/zh_CN/katello.po +136 -48
  138. data/locale/zh_TW/katello.po +136 -48
  139. data/webpack/components/TypeAhead/TypeAhead.js +2 -1
  140. data/webpack/components/TypeAhead/pf3Search/TypeAheadSearch.js +2 -1
  141. data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +7 -2
  142. data/webpack/scenes/Subscriptions/Manifest/index.js +1 -0
  143. metadata +31 -19
  144. data/lib/katello/tasks/common.rake +0 -7
data/locale/mr/katello.po CHANGED
@@ -19,6 +19,11 @@ msgstr ""
19
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
20
  "X-Generator: Zanata 3.6.2\n"
21
21
 
22
+ msgid ""
23
+ "\n"
24
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
25
+ msgstr ""
26
+
22
27
  msgid " %{errata_count} Errata"
23
28
  msgstr ""
24
29
 
@@ -402,6 +407,9 @@ msgstr ""
402
407
  msgid "Action with sub plans"
403
408
  msgstr ""
404
409
 
410
+ msgid "Activation Key(s)"
411
+ msgstr ""
412
+
405
413
  # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
406
414
  msgid "Activation Keys"
407
415
  msgstr "ॲक्टिवेशन किज्"
@@ -409,6 +417,9 @@ msgstr "ॲक्टिवेशन किज्"
409
417
  msgid "Activation key ID"
410
418
  msgstr ""
411
419
 
420
+ 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."
421
+ msgstr ""
422
+
412
423
  #, fuzzy
413
424
  msgid "Activation keys and subscriptions can be managed"
414
425
  msgstr "ॲक्टिवेशन कि '%s' निर्माण केले."
@@ -901,12 +912,18 @@ msgstr ""
901
912
  msgid "Cannot upload Container Image content."
902
913
  msgstr ""
903
914
 
915
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
916
+ msgstr ""
917
+
904
918
  msgid "Cannot validate contents on non-yum/deb repositories."
905
919
  msgstr ""
906
920
 
907
921
  msgid "Check if a connection can be made to Red Hat Subscription Management."
908
922
  msgstr ""
909
923
 
924
+ msgid "Check if the specified organization is eligible for Simple Content Access"
925
+ msgstr ""
926
+
910
927
  msgid "Check services before actions"
911
928
  msgstr ""
912
929
 
@@ -922,9 +939,6 @@ msgstr ""
922
939
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
923
940
  msgstr ""
924
941
 
925
- msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
926
- msgstr ""
927
-
928
942
  msgid "Click here to go to the tasks page for the task."
929
943
  msgstr ""
930
944
 
@@ -945,7 +959,7 @@ msgstr ""
945
959
  msgid "Combined Profile Update for %s"
946
960
  msgstr ""
947
961
 
948
- msgid "Comma separated list of tags to sync for Container Image repository"
962
+ msgid "Comma-separated list of tags to sync for Container Image repository"
949
963
  msgstr ""
950
964
 
951
965
  # translation auto-copied from project CFSE, version sam-1.2, document app
@@ -1000,10 +1014,16 @@ msgstr ""
1000
1014
  msgid "Content Download URL"
1001
1015
  msgstr ""
1002
1016
 
1017
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
1018
+ msgstr ""
1019
+
1003
1020
  #, fuzzy
1004
1021
  msgid "Content Hosts"
1005
1022
  msgstr "कंटेंट"
1006
1023
 
1024
+ msgid "Content Migration"
1025
+ msgstr ""
1026
+
1007
1027
  msgid "Content Source"
1008
1028
  msgstr ""
1009
1029
 
@@ -1102,6 +1122,9 @@ msgstr ""
1102
1122
  msgid "Content view numeric identifier"
1103
1123
  msgstr ""
1104
1124
 
1125
+ msgid "Content view version export history identifier"
1126
+ msgstr ""
1127
+
1105
1128
  msgid "Content view version identifier"
1106
1129
  msgstr ""
1107
1130
 
@@ -1144,6 +1167,9 @@ msgstr ""
1144
1167
  msgid "Could not find %{name} resource with id %{id}"
1145
1168
  msgstr ""
1146
1169
 
1170
+ msgid "Could not find %{name} resources with ids %{ids}"
1171
+ msgstr ""
1172
+
1147
1173
  msgid "Could not find Environment with ids: %s"
1148
1174
  msgstr ""
1149
1175
 
@@ -1234,13 +1260,6 @@ msgstr "वातावरण '%s' आढळले नाही"
1234
1260
  msgid "Couldn't find errata ids '%s'"
1235
1261
  msgstr "संस्था '%s' शोधणे अशक्य"
1236
1262
 
1237
- #, fuzzy
1238
- msgid "Couldn't find gpg key '%s'"
1239
- msgstr "GPG कि '%s' शोधणे अशक्य"
1240
-
1241
- msgid "Couldn't find host '%s'"
1242
- msgstr ""
1243
-
1244
1263
  msgid "Couldn't find host collection '%s'"
1245
1264
  msgstr ""
1246
1265
 
@@ -1255,10 +1274,6 @@ msgstr "संस्था '%s' शोधणे अशक्य"
1255
1274
  msgid "Couldn't find prior-environment '%s'"
1256
1275
  msgstr "वातावरण '%s' आढळले नाही"
1257
1276
 
1258
- #, fuzzy
1259
- msgid "Couldn't find product '%s'"
1260
- msgstr "प्रोव्हाइडर '%s' आढळले नाही"
1261
-
1262
1277
  # translation auto-copied from project CFSE, version sam-1.2, document app
1263
1278
  msgid "Couldn't find product with id '%s'"
1264
1279
  msgstr "id '%s' सह उत्पादन आढळले नाही"
@@ -1267,22 +1282,9 @@ msgstr "id '%s' सह उत्पादन आढळले नाही"
1267
1282
  msgid "Couldn't find repository '%s'"
1268
1283
  msgstr "रेपॉजिटरि '%s' शोधणे अशक्य"
1269
1284
 
1270
- #, fuzzy
1271
- msgid "Couldn't find repository set with id '%s'."
1272
- msgstr "रेपॉजिटरि '%s' शोधणे अशक्य"
1273
-
1274
1285
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1275
1286
  msgstr ""
1276
1287
 
1277
- msgid "Couldn't find ssl ca cert '%s'"
1278
- msgstr ""
1279
-
1280
- msgid "Couldn't find ssl client cert '%s'"
1281
- msgstr ""
1282
-
1283
- msgid "Couldn't find ssl client key '%s'"
1284
- msgstr ""
1285
-
1286
1288
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
1287
1289
  msgid "Couldn't find subject of synchronization"
1288
1290
  msgstr "सिंक्रोनाइजेशनचा विषय आढळले नाही"
@@ -1357,6 +1359,9 @@ msgstr ""
1357
1359
  msgid "Current organization not set."
1358
1360
  msgstr ""
1359
1361
 
1362
+ msgid "Custom"
1363
+ msgstr ""
1364
+
1360
1365
  # translation auto-copied from project CFSE, version sam-1.2, document app
1361
1366
  msgid "Custom Content Repositories"
1362
1367
  msgstr "पसंतीचे कंटेंट रेपॉजिटरिज्"
@@ -1570,18 +1575,15 @@ msgstr ""
1570
1575
  msgid "Description of the repository"
1571
1576
  msgstr ""
1572
1577
 
1573
- msgid "Desired quantity of the pool"
1578
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1574
1579
  msgstr ""
1575
1580
 
1576
- msgid "Destination Server Name required for Pulp3 repositories"
1581
+ msgid "Desired quantity of the pool"
1577
1582
  msgstr ""
1578
1583
 
1579
1584
  msgid "Destination Server name"
1580
1585
  msgstr ""
1581
1586
 
1582
- msgid "Destination Server name, required for Pulp3"
1583
- msgstr ""
1584
-
1585
1587
  msgid "Destroy"
1586
1588
  msgstr ""
1587
1589
 
@@ -1858,7 +1860,10 @@ msgstr ""
1858
1860
  msgid "Export CSV"
1859
1861
  msgstr ""
1860
1862
 
1861
- msgid "Export a content view version"
1863
+ msgid "Export Library"
1864
+ msgstr ""
1865
+
1866
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1862
1867
  msgstr ""
1863
1868
 
1864
1869
  msgid "Export a repository"
@@ -1867,10 +1872,13 @@ msgstr ""
1867
1872
  msgid "Export as CSV"
1868
1873
  msgstr ""
1869
1874
 
1875
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1876
+ msgstr ""
1877
+
1870
1878
  msgid "Export to ISO format"
1871
1879
  msgstr ""
1872
1880
 
1873
- msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1881
+ msgid "Export to ISO format."
1874
1882
  msgstr ""
1875
1883
 
1876
1884
  msgid "Exported version"
@@ -2150,6 +2158,9 @@ msgstr ""
2150
2158
  msgid "Host id to list applicable packages for"
2151
2159
  msgstr ""
2152
2160
 
2161
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2162
+ msgstr ""
2163
+
2153
2164
  msgid "Host with ID %s already exists in the host collection."
2154
2165
  msgstr ""
2155
2166
 
@@ -2304,6 +2315,9 @@ msgstr ""
2304
2315
  msgid "Identifiers for Lifecycle Environment"
2305
2316
  msgstr ""
2306
2317
 
2318
+ 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"
2319
+ msgstr ""
2320
+
2307
2321
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2308
2322
  msgstr ""
2309
2323
 
@@ -2352,6 +2366,9 @@ msgstr ""
2352
2366
  msgid "Import Content View Version"
2353
2367
  msgstr ""
2354
2368
 
2369
+ msgid "Import Default Content View"
2370
+ msgstr ""
2371
+
2355
2372
  #, fuzzy
2356
2373
  msgid "Import Manifest"
2357
2374
  msgstr "आयात करा"
@@ -2377,6 +2394,9 @@ msgstr ""
2377
2394
  msgid "Import a content view version"
2378
2395
  msgstr ""
2379
2396
 
2397
+ msgid "Import a content view version to the library"
2398
+ msgstr ""
2399
+
2380
2400
  #, fuzzy
2381
2401
  msgid "Import facts"
2382
2402
  msgstr "आयात करा"
@@ -2384,6 +2404,15 @@ msgstr "आयात करा"
2384
2404
  msgid "Import uploads into a repository"
2385
2405
  msgstr ""
2386
2406
 
2407
+ msgid "Import-only can not be changed after creation"
2408
+ msgstr ""
2409
+
2410
+ msgid "Import-only content views can not be published directly"
2411
+ msgstr ""
2412
+
2413
+ msgid "Import-only content views will be available in a future version."
2414
+ msgstr ""
2415
+
2387
2416
  msgid "Importing manifest into '%{subject}' failed."
2388
2417
  msgstr ""
2389
2418
 
@@ -2554,9 +2583,6 @@ msgstr ""
2554
2583
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2555
2584
  msgstr ""
2556
2585
 
2557
- msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2558
- msgstr ""
2559
-
2560
2586
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
2561
2587
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2562
2588
  msgstr "या कार्यकरीता विनंतीमध्ये अवैध घटके पाठवले. कृपया प्रणाली प्रशासकाशी संपर्क करा."
@@ -2582,6 +2608,12 @@ msgstr ""
2582
2608
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2583
2609
  msgstr ""
2584
2610
 
2611
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2612
+ msgstr ""
2613
+
2614
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2615
+ msgstr ""
2616
+
2585
2617
  msgid "Invalid value specified for Container Image repositories."
2586
2618
  msgstr ""
2587
2619
 
@@ -2591,6 +2623,9 @@ msgstr ""
2591
2623
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2592
2624
  msgstr ""
2593
2625
 
2626
+ msgid "Katello"
2627
+ msgstr ""
2628
+
2594
2629
  msgid "Katello ID of local pool to update"
2595
2630
  msgstr ""
2596
2631
 
@@ -2752,6 +2787,9 @@ msgstr ""
2752
2787
  msgid "List errata available for the content host"
2753
2788
  msgstr ""
2754
2789
 
2790
+ msgid "List export histories"
2791
+ msgstr ""
2792
+
2755
2793
  msgid "List filter rules"
2756
2794
  msgstr ""
2757
2795
 
@@ -3138,6 +3176,9 @@ msgstr ""
3138
3176
  msgid "No errors"
3139
3177
  msgstr "त्रुटी आढळली नाही"
3140
3178
 
3179
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3180
+ msgstr ""
3181
+
3141
3182
  msgid "No file uploaded"
3142
3183
  msgstr ""
3143
3184
 
@@ -3604,6 +3645,18 @@ msgstr ""
3604
3645
  msgid "Perform an Incremental Update on one or more Content View Versions"
3605
3646
  msgstr ""
3606
3647
 
3648
+ msgid "Performs a full-export of a content view version."
3649
+ msgstr ""
3650
+
3651
+ msgid "Performs a full-export of the repositories in library."
3652
+ msgstr ""
3653
+
3654
+ msgid "Performs an incremental-export of a content view version."
3655
+ msgstr ""
3656
+
3657
+ msgid "Performs an incremental-export of the repositories in library."
3658
+ msgstr ""
3659
+
3607
3660
  # translation auto-copied from project CFSE, version sam-1.2, document app
3608
3661
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3609
3662
  msgstr "परवानगी नकारली. वापरकर्ता '%{user}' कडे संस्था '%{org}' करीता प्रवेशसाठी परवानगी नाही."
@@ -3645,6 +3698,9 @@ msgstr ""
3645
3698
  msgid "Please select one from the list below and you will be redirected."
3646
3699
  msgstr ""
3647
3700
 
3701
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3702
+ msgstr ""
3703
+
3648
3704
  msgid "Processing metadata"
3649
3705
  msgstr ""
3650
3706
 
@@ -3891,6 +3947,9 @@ msgstr ""
3891
3947
  msgid "Recommended Repositories"
3892
3948
  msgstr ""
3893
3949
 
3950
+ msgid "Red Hat"
3951
+ msgstr ""
3952
+
3894
3953
  #, fuzzy
3895
3954
  msgid "Red Hat CDN URL"
3896
3955
  msgstr "उत्पादने"
@@ -3957,9 +4016,6 @@ msgstr ""
3957
4016
  msgid "Reload data"
3958
4017
  msgstr ""
3959
4018
 
3960
- msgid "Remote action:"
3961
- msgstr ""
3962
-
3963
4019
  msgid "Removal of package group(s) requested: %{groups}"
3964
4020
  msgstr ""
3965
4021
 
@@ -4051,9 +4107,6 @@ msgstr "संकुल काढून टाकत आहे..."
4051
4107
  msgid "Repo Type"
4052
4108
  msgstr ""
4053
4109
 
4054
- msgid "Report"
4055
- msgstr ""
4056
-
4057
4110
  # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author sandeeps
4058
4111
  msgid "Repositories"
4059
4112
  msgstr "रेपॉजिटरिज्"
@@ -4418,9 +4471,6 @@ msgstr ""
4418
4471
  msgid "Show the available repository types"
4419
4472
  msgstr ""
4420
4473
 
4421
- msgid "Show the export history for a content view version"
4422
- msgstr ""
4423
-
4424
4474
  msgid "Shows status of Katello system and it's subcomponents"
4425
4475
  msgstr ""
4426
4476
 
@@ -4430,6 +4480,9 @@ msgstr ""
4430
4480
  msgid "Simple Content Access"
4431
4481
  msgstr ""
4432
4482
 
4483
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4484
+ msgstr ""
4485
+
4433
4486
  msgid "Simple Content Access has been disabled for '%{subject}'."
4434
4487
  msgstr ""
4435
4488
 
@@ -4470,6 +4523,9 @@ msgstr ""
4470
4523
  msgid "Specify the list of units in each repo"
4471
4524
  msgstr ""
4472
4525
 
4526
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4527
+ msgstr ""
4528
+
4473
4529
  msgid "Stacking ID"
4474
4530
  msgstr ""
4475
4531
 
@@ -4754,6 +4810,9 @@ msgstr "'%s' वातावरणात चेंजसेट समावि
4754
4810
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4755
4811
  msgstr ""
4756
4812
 
4813
+ msgid "The TOC file specified in the metadata does not exist. %s "
4814
+ msgstr ""
4815
+
4757
4816
  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."
4758
4817
  msgstr ""
4759
4818
 
@@ -4795,12 +4854,20 @@ msgstr ""
4795
4854
  msgid "The erratum type must be an array. Invalid value provided"
4796
4855
  msgstr ""
4797
4856
 
4857
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4858
+ msgstr ""
4859
+
4798
4860
  msgid "The field to sort the data by. Defaults to the created date."
4799
4861
  msgstr ""
4800
4862
 
4801
4863
  msgid "The following hosts have errata that apply to them: "
4802
4864
  msgstr ""
4803
4865
 
4866
+ msgid ""
4867
+ "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"
4868
+ " %{repos}"
4869
+ msgstr ""
4870
+
4804
4871
  msgid "The id of the host to alter"
4805
4872
  msgstr ""
4806
4873
 
@@ -4922,7 +4989,7 @@ msgstr ""
4922
4989
  msgid "There's no running synchronization for this smart proxy."
4923
4990
  msgstr ""
4924
4991
 
4925
- msgid "This API endpoint is only valid for Pulp 3 repositories."
4992
+ msgid "This Content View must be set to Import-only before performing an import"
4926
4993
  msgstr ""
4927
4994
 
4928
4995
  msgid "This Host is not currently registered with subscription-manager."
@@ -4934,6 +5001,9 @@ msgstr ""
4934
5001
  msgid "This action doesn't support package groups"
4935
5002
  msgstr ""
4936
5003
 
5004
+ msgid "This action will become available after the Pulp 3 content migration"
5005
+ msgstr ""
5006
+
4937
5007
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4938
5008
  msgstr ""
4939
5009
 
@@ -5073,6 +5143,9 @@ msgstr ""
5073
5143
  msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
5074
5144
  msgstr ""
5075
5145
 
5146
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
5147
+ msgstr ""
5148
+
5076
5149
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
5077
5150
  msgstr ""
5078
5151
 
@@ -5596,6 +5669,9 @@ msgstr "संस्था"
5596
5669
  msgid "an ostree branch"
5597
5670
  msgstr ""
5598
5671
 
5672
+ msgid "are only allowed for Yum repositories."
5673
+ msgstr ""
5674
+
5599
5675
  msgid "attempted to sync without a feed URL"
5600
5676
  msgstr ""
5601
5677
 
@@ -5615,6 +5691,9 @@ msgstr ""
5615
5691
  msgid "can't be blank"
5616
5692
  msgstr "रिकामे असणे अशक्य"
5617
5693
 
5694
+ msgid "cannot add filter to import-only view"
5695
+ msgstr ""
5696
+
5618
5697
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
5619
5698
  msgid "cannot be a binary file."
5620
5699
  msgstr "बाइनरि फाइल असणे अशक्य."
@@ -5679,13 +5758,13 @@ msgstr ""
5679
5758
  msgid "checking Pulp task status"
5680
5759
  msgstr ""
5681
5760
 
5682
- msgid "comma separated list of architectures to be synched from deb-archive"
5761
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5683
5762
  msgstr ""
5684
5763
 
5685
- msgid "comma separated list of releases to be synched from deb-archive"
5764
+ msgid "comma-separated list of releases to be synced from deb-archive"
5686
5765
  msgstr ""
5687
5766
 
5688
- msgid "comma separated list of repo components to be synched from deb-archive"
5767
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5689
5768
  msgstr ""
5690
5769
 
5691
5770
  msgid "composite content view identifier"
@@ -5954,6 +6033,9 @@ msgstr ""
5954
6033
  msgid "invalid container image name"
5955
6034
  msgstr ""
5956
6035
 
6036
+ msgid "invalid: Repositories can only require one OS version."
6037
+ msgstr ""
6038
+
5957
6039
  msgid "is already attached to the capsule"
5958
6040
  msgstr ""
5959
6041
 
@@ -6019,6 +6101,9 @@ msgstr "पॉजिटिव्ह इंटिजर मूल्य पाह
6019
6101
  msgid "must be one of the following: %s"
6020
6102
  msgstr ""
6021
6103
 
6104
+ msgid "must be one of: %s"
6105
+ msgstr ""
6106
+
6022
6107
  # translation auto-copied from project CFSE, version sam-1.2, document app, author sandeeps
6023
6108
  msgid "must be unique within one organization"
6024
6109
  msgstr "एक संस्था अंतर्गत एकमेव असायला हवे"