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/pa/katello.po CHANGED
@@ -20,6 +20,11 @@ msgstr ""
20
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
21
  "X-Generator: Zanata 3.6.2\n"
22
22
 
23
+ msgid ""
24
+ "\n"
25
+ "* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
26
+ msgstr ""
27
+
23
28
  msgid " %{errata_count} Errata"
24
29
  msgstr ""
25
30
 
@@ -404,6 +409,9 @@ msgstr ""
404
409
  msgid "Action with sub plans"
405
410
  msgstr ""
406
411
 
412
+ msgid "Activation Key(s)"
413
+ msgstr ""
414
+
407
415
  # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
408
416
  msgid "Activation Keys"
409
417
  msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
@@ -411,6 +419,9 @@ msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
411
419
  msgid "Activation key ID"
412
420
  msgstr ""
413
421
 
422
+ 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."
423
+ msgstr ""
424
+
414
425
  #, fuzzy
415
426
  msgid "Activation keys and subscriptions can be managed"
416
427
  msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀ '%s' ਬਣਾਈ ਗਈ ਹੈ।"
@@ -902,12 +913,18 @@ msgstr ""
902
913
  msgid "Cannot upload Container Image content."
903
914
  msgstr ""
904
915
 
916
+ msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
917
+ msgstr ""
918
+
905
919
  msgid "Cannot validate contents on non-yum/deb repositories."
906
920
  msgstr ""
907
921
 
908
922
  msgid "Check if a connection can be made to Red Hat Subscription Management."
909
923
  msgstr ""
910
924
 
925
+ msgid "Check if the specified organization is eligible for Simple Content Access"
926
+ msgstr ""
927
+
911
928
  msgid "Check services before actions"
912
929
  msgstr ""
913
930
 
@@ -923,9 +940,6 @@ msgstr ""
923
940
  msgid "Checksum type cannot be set for yum repositories with on demand download policy."
924
941
  msgstr ""
925
942
 
926
- msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
927
- msgstr ""
928
-
929
943
  msgid "Click here to go to the tasks page for the task."
930
944
  msgstr ""
931
945
 
@@ -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, author jassy
@@ -1001,10 +1015,16 @@ msgstr ""
1001
1015
  msgid "Content Download URL"
1002
1016
  msgstr ""
1003
1017
 
1018
+ msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
1019
+ msgstr ""
1020
+
1004
1021
  #, fuzzy
1005
1022
  msgid "Content Hosts"
1006
1023
  msgstr "ਸੰਖੇਪ"
1007
1024
 
1025
+ msgid "Content Migration"
1026
+ msgstr ""
1027
+
1008
1028
  msgid "Content Source"
1009
1029
  msgstr ""
1010
1030
 
@@ -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
 
@@ -1232,13 +1258,6 @@ msgstr "ਵਾਤਾਵਰਨ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1232
1258
  msgid "Couldn't find errata ids '%s'"
1233
1259
  msgstr "ਸੰਗਠਨ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1234
1260
 
1235
- #, fuzzy
1236
- msgid "Couldn't find gpg key '%s'"
1237
- msgstr "GPG ਕੁੰਜੀ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1238
-
1239
- msgid "Couldn't find host '%s'"
1240
- msgstr ""
1241
-
1242
1261
  msgid "Couldn't find host collection '%s'"
1243
1262
  msgstr ""
1244
1263
 
@@ -1253,10 +1272,6 @@ msgstr "ਸੰਗਠਨ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1253
1272
  msgid "Couldn't find prior-environment '%s'"
1254
1273
  msgstr "ਵਾਤਾਵਰਨ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1255
1274
 
1256
- #, fuzzy
1257
- msgid "Couldn't find product '%s'"
1258
- msgstr "ਪਰੋਵਾਈਡਰ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1259
-
1260
1275
  # translation auto-copied from project CFSE, version sam-1.2, document app
1261
1276
  msgid "Couldn't find product with id '%s'"
1262
1277
  msgstr "id '%s' ਵਾਲਾ ਉਤਪਾਦ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
@@ -1265,22 +1280,9 @@ msgstr "id '%s' ਵਾਲਾ ਉਤਪਾਦ ਨਹੀਂ ਲੱਭ ਸਕਿਆ
1265
1280
  msgid "Couldn't find repository '%s'"
1266
1281
  msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1267
1282
 
1268
- #, fuzzy
1269
- msgid "Couldn't find repository set with id '%s'."
1270
- msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1271
-
1272
1283
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1273
1284
  msgstr ""
1274
1285
 
1275
- msgid "Couldn't find ssl ca cert '%s'"
1276
- msgstr ""
1277
-
1278
- msgid "Couldn't find ssl client cert '%s'"
1279
- msgstr ""
1280
-
1281
- msgid "Couldn't find ssl client key '%s'"
1282
- msgstr ""
1283
-
1284
1286
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1285
1287
  msgid "Couldn't find subject of synchronization"
1286
1288
  msgstr "ਸਮਕਾਲਤਾ ਦਾ ਵਿਸ਼ਾ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
@@ -1355,6 +1357,9 @@ msgstr ""
1355
1357
  msgid "Current organization not set."
1356
1358
  msgstr ""
1357
1359
 
1360
+ msgid "Custom"
1361
+ msgstr ""
1362
+
1358
1363
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1359
1364
  msgid "Custom Content Repositories"
1360
1365
  msgstr "ਮਨਪਸੰਦ ਸੰਖੇਪ ਪਰੋਵਾਈਡਰ"
@@ -1568,18 +1573,15 @@ msgstr ""
1568
1573
  msgid "Description of the repository"
1569
1574
  msgstr ""
1570
1575
 
1571
- msgid "Desired quantity of the pool"
1576
+ msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
1572
1577
  msgstr ""
1573
1578
 
1574
- msgid "Destination Server Name required for Pulp3 repositories"
1579
+ msgid "Desired quantity of the pool"
1575
1580
  msgstr ""
1576
1581
 
1577
1582
  msgid "Destination Server name"
1578
1583
  msgstr ""
1579
1584
 
1580
- msgid "Destination Server name, required for Pulp3"
1581
- msgstr ""
1582
-
1583
1585
  msgid "Destroy"
1584
1586
  msgstr ""
1585
1587
 
@@ -1861,7 +1863,10 @@ msgstr ""
1861
1863
  msgid "Export CSV"
1862
1864
  msgstr ""
1863
1865
 
1864
- msgid "Export a content view version"
1866
+ msgid "Export Library"
1867
+ msgstr ""
1868
+
1869
+ msgid "Export a content view version. Relevant only for Pulp 2 repositories."
1865
1870
  msgstr ""
1866
1871
 
1867
1872
  msgid "Export a repository"
@@ -1870,10 +1875,13 @@ msgstr ""
1870
1875
  msgid "Export as CSV"
1871
1876
  msgstr ""
1872
1877
 
1878
+ msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1879
+ msgstr ""
1880
+
1873
1881
  msgid "Export to ISO format"
1874
1882
  msgstr ""
1875
1883
 
1876
- msgid "Export to ISO format. Relevant only for Pulp 2 repositories"
1884
+ msgid "Export to ISO format."
1877
1885
  msgstr ""
1878
1886
 
1879
1887
  msgid "Exported version"
@@ -2152,6 +2160,9 @@ msgstr ""
2152
2160
  msgid "Host id to list applicable packages for"
2153
2161
  msgstr ""
2154
2162
 
2163
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2164
+ msgstr ""
2165
+
2155
2166
  msgid "Host with ID %s already exists in the host collection."
2156
2167
  msgstr ""
2157
2168
 
@@ -2306,6 +2317,9 @@ msgstr ""
2306
2317
  msgid "Identifiers for Lifecycle Environment"
2307
2318
  msgstr ""
2308
2319
 
2320
+ 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"
2321
+ msgstr ""
2322
+
2309
2323
  msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
2310
2324
  msgstr ""
2311
2325
 
@@ -2354,6 +2368,9 @@ msgstr ""
2354
2368
  msgid "Import Content View Version"
2355
2369
  msgstr ""
2356
2370
 
2371
+ msgid "Import Default Content View"
2372
+ msgstr ""
2373
+
2357
2374
  #, fuzzy
2358
2375
  msgid "Import Manifest"
2359
2376
  msgstr "ਇੰਪੋਰਟ"
@@ -2379,6 +2396,9 @@ msgstr ""
2379
2396
  msgid "Import a content view version"
2380
2397
  msgstr ""
2381
2398
 
2399
+ msgid "Import a content view version to the library"
2400
+ msgstr ""
2401
+
2382
2402
  #, fuzzy
2383
2403
  msgid "Import facts"
2384
2404
  msgstr "ਇੰਪੋਰਟ"
@@ -2386,6 +2406,15 @@ msgstr "ਇੰਪੋਰਟ"
2386
2406
  msgid "Import uploads into a repository"
2387
2407
  msgstr ""
2388
2408
 
2409
+ msgid "Import-only can not be changed after creation"
2410
+ msgstr ""
2411
+
2412
+ msgid "Import-only content views can not be published directly"
2413
+ msgstr ""
2414
+
2415
+ msgid "Import-only content views will be available in a future version."
2416
+ msgstr ""
2417
+
2389
2418
  msgid "Importing manifest into '%{subject}' failed."
2390
2419
  msgstr ""
2391
2420
 
@@ -2556,9 +2585,6 @@ msgstr ""
2556
2585
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2557
2586
  msgstr ""
2558
2587
 
2559
- msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
2560
- msgstr ""
2561
-
2562
2588
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
2563
2589
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2564
2590
  msgstr "ਇਸ ਕਾਰਵਾਈ ਲਈ ਬੇਨਤੀ ਵਿੱਚ ਗਲਤ ਪੈਰਾਮੀਟਰ ਦਿੱਤੇ ਹਨ। ਕਿਰਪਾ ਕਰਕੇ ਸਿਸਟਮ ਪਰਬੰਧਕ ਨਾਲ ਸੰਪਰਕ ਕਰੋ।"
@@ -2584,6 +2610,12 @@ msgstr ""
2584
2610
  msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
2585
2611
  msgstr ""
2586
2612
 
2613
+ msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
2614
+ msgstr ""
2615
+
2616
+ msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
2617
+ msgstr ""
2618
+
2587
2619
  msgid "Invalid value specified for Container Image repositories."
2588
2620
  msgstr ""
2589
2621
 
@@ -2593,6 +2625,9 @@ msgstr ""
2593
2625
  msgid "Invalid value specified for ignorable content. Permissible values %s"
2594
2626
  msgstr ""
2595
2627
 
2628
+ msgid "Katello"
2629
+ msgstr ""
2630
+
2596
2631
  msgid "Katello ID of local pool to update"
2597
2632
  msgstr ""
2598
2633
 
@@ -2754,6 +2789,9 @@ msgstr ""
2754
2789
  msgid "List errata available for the content host"
2755
2790
  msgstr ""
2756
2791
 
2792
+ msgid "List export histories"
2793
+ msgstr ""
2794
+
2757
2795
  msgid "List filter rules"
2758
2796
  msgstr ""
2759
2797
 
@@ -3139,6 +3177,9 @@ msgstr ""
3139
3177
  msgid "No errors"
3140
3178
  msgstr "ਕੋਈ ਗਲਤੀ ਨਹੀਂ"
3141
3179
 
3180
+ msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3181
+ msgstr ""
3182
+
3142
3183
  msgid "No file uploaded"
3143
3184
  msgstr ""
3144
3185
 
@@ -3622,6 +3663,18 @@ msgstr ""
3622
3663
  msgid "Perform an Incremental Update on one or more Content View Versions"
3623
3664
  msgstr ""
3624
3665
 
3666
+ msgid "Performs a full-export of a content view version."
3667
+ msgstr ""
3668
+
3669
+ msgid "Performs a full-export of the repositories in library."
3670
+ msgstr ""
3671
+
3672
+ msgid "Performs an incremental-export of a content view version."
3673
+ msgstr ""
3674
+
3675
+ msgid "Performs an incremental-export of the repositories in library."
3676
+ msgstr ""
3677
+
3625
3678
  # translation auto-copied from project CFSE, version sam-1.2, document app
3626
3679
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3627
3680
  msgstr "ਮਨਜੂਰੀ ਨਹੀਂ। ਯੂਜ਼ਰ '%{user}' ਨੂੰ ਸੰਗਠਨ '%{org}' ਵਰਤਣ ਦੀ ਮਨਜੂਰੀ ਨਹੀਂ ਹੈ।"
@@ -3663,6 +3716,9 @@ msgstr ""
3663
3716
  msgid "Please select one from the list below and you will be redirected."
3664
3717
  msgstr ""
3665
3718
 
3719
+ msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3720
+ msgstr ""
3721
+
3666
3722
  msgid "Processing metadata"
3667
3723
  msgstr ""
3668
3724
 
@@ -3907,6 +3963,9 @@ msgstr ""
3907
3963
  msgid "Recommended Repositories"
3908
3964
  msgstr ""
3909
3965
 
3966
+ msgid "Red Hat"
3967
+ msgstr ""
3968
+
3910
3969
  #, fuzzy
3911
3970
  msgid "Red Hat CDN URL"
3912
3971
  msgstr "ਉਤਪਾਦ"
@@ -3973,9 +4032,6 @@ msgstr ""
3973
4032
  msgid "Reload data"
3974
4033
  msgstr ""
3975
4034
 
3976
- msgid "Remote action:"
3977
- msgstr ""
3978
-
3979
4035
  msgid "Removal of package group(s) requested: %{groups}"
3980
4036
  msgstr ""
3981
4037
 
@@ -4067,9 +4123,6 @@ msgstr "ਪੈਕੇਜ ਹਟਾ ਰਿਹਾ ਹੈ..."
4067
4123
  msgid "Repo Type"
4068
4124
  msgstr ""
4069
4125
 
4070
- msgid "Report"
4071
- msgstr ""
4072
-
4073
4126
  # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
4074
4127
  msgid "Repositories"
4075
4128
  msgstr "ਰਿਪੋਜ਼ਟਰੀਆਂ"
@@ -4434,9 +4487,6 @@ msgstr ""
4434
4487
  msgid "Show the available repository types"
4435
4488
  msgstr ""
4436
4489
 
4437
- msgid "Show the export history for a content view version"
4438
- msgstr ""
4439
-
4440
4490
  msgid "Shows status of Katello system and it's subcomponents"
4441
4491
  msgstr ""
4442
4492
 
@@ -4446,6 +4496,9 @@ msgstr ""
4446
4496
  msgid "Simple Content Access"
4447
4497
  msgstr ""
4448
4498
 
4499
+ msgid "Simple Content Access has been disabled by the upstream organization administrator."
4500
+ msgstr ""
4501
+
4449
4502
  msgid "Simple Content Access has been disabled for '%{subject}'."
4450
4503
  msgstr ""
4451
4504
 
@@ -4486,6 +4539,9 @@ msgstr ""
4486
4539
  msgid "Specify the list of units in each repo"
4487
4540
  msgstr ""
4488
4541
 
4542
+ msgid "Split the exported content into archives no greater than the specified size in megabytes."
4543
+ msgstr ""
4544
+
4489
4545
  msgid "Stacking ID"
4490
4546
  msgstr ""
4491
4547
 
@@ -4770,6 +4826,9 @@ msgstr "'%s' ਇਨਵਾਇਰਮੈਂਟ ਵਿੱਚ ਚੇਂਜਸ਼ੀਟ
4770
4826
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4771
4827
  msgstr ""
4772
4828
 
4829
+ msgid "The TOC file specified in the metadata does not exist. %s "
4830
+ msgstr ""
4831
+
4773
4832
  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."
4774
4833
  msgstr ""
4775
4834
 
@@ -4811,12 +4870,20 @@ msgstr ""
4811
4870
  msgid "The erratum type must be an array. Invalid value provided"
4812
4871
  msgstr ""
4813
4872
 
4873
+ msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
4874
+ msgstr ""
4875
+
4814
4876
  msgid "The field to sort the data by. Defaults to the created date."
4815
4877
  msgstr ""
4816
4878
 
4817
4879
  msgid "The following hosts have errata that apply to them: "
4818
4880
  msgstr ""
4819
4881
 
4882
+ msgid ""
4883
+ "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"
4884
+ " %{repos}"
4885
+ msgstr ""
4886
+
4820
4887
  msgid "The id of the host to alter"
4821
4888
  msgstr ""
4822
4889
 
@@ -4937,7 +5004,7 @@ msgstr ""
4937
5004
  msgid "There's no running synchronization for this smart proxy."
4938
5005
  msgstr ""
4939
5006
 
4940
- msgid "This API endpoint is only valid for Pulp 3 repositories."
5007
+ msgid "This Content View must be set to Import-only before performing an import"
4941
5008
  msgstr ""
4942
5009
 
4943
5010
  msgid "This Host is not currently registered with subscription-manager."
@@ -4949,6 +5016,9 @@ msgstr ""
4949
5016
  msgid "This action doesn't support package groups"
4950
5017
  msgstr ""
4951
5018
 
5019
+ msgid "This action will become available after the Pulp 3 content migration"
5020
+ msgstr ""
5021
+
4952
5022
  msgid "This certificate allows a user to view the repositories in any environment from a browser."
4953
5023
  msgstr ""
4954
5024
 
@@ -5088,6 +5158,9 @@ msgstr ""
5088
5158
  msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
5089
5159
  msgstr ""
5090
5160
 
5161
+ msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
5162
+ msgstr ""
5163
+
5091
5164
  msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
5092
5165
  msgstr ""
5093
5166
 
@@ -5613,6 +5686,9 @@ msgstr "ਸੰਗਠਨ"
5613
5686
  msgid "an ostree branch"
5614
5687
  msgstr ""
5615
5688
 
5689
+ msgid "are only allowed for Yum repositories."
5690
+ msgstr ""
5691
+
5616
5692
  msgid "attempted to sync without a feed URL"
5617
5693
  msgstr ""
5618
5694
 
@@ -5632,6 +5708,9 @@ msgstr ""
5632
5708
  msgid "can't be blank"
5633
5709
  msgstr "ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ"
5634
5710
 
5711
+ msgid "cannot add filter to import-only view"
5712
+ msgstr ""
5713
+
5635
5714
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5636
5715
  msgid "cannot be a binary file."
5637
5716
  msgstr "ਬਾਇਨਰੀ ਫਾਇਲ ਨਹੀਂ ਹੋ ਸਕਦੀ।"
@@ -5694,13 +5773,13 @@ msgstr ""
5694
5773
  msgid "checking Pulp task status"
5695
5774
  msgstr ""
5696
5775
 
5697
- msgid "comma separated list of architectures to be synched from deb-archive"
5776
+ msgid "comma-separated list of architectures to be synced from deb-archive"
5698
5777
  msgstr ""
5699
5778
 
5700
- msgid "comma separated list of releases to be synched from deb-archive"
5779
+ msgid "comma-separated list of releases to be synced from deb-archive"
5701
5780
  msgstr ""
5702
5781
 
5703
- msgid "comma separated list of repo components to be synched from deb-archive"
5782
+ msgid "comma-separated list of repo components to be synced from deb-archive"
5704
5783
  msgstr ""
5705
5784
 
5706
5785
  msgid "composite content view identifier"
@@ -5971,6 +6050,9 @@ msgstr ""
5971
6050
  msgid "invalid container image name"
5972
6051
  msgstr ""
5973
6052
 
6053
+ msgid "invalid: Repositories can only require one OS version."
6054
+ msgstr ""
6055
+
5974
6056
  msgid "is already attached to the capsule"
5975
6057
  msgstr ""
5976
6058
 
@@ -6036,6 +6118,9 @@ msgstr "ਧਨਾਤਮਕ ਅੰਕ ਮੁੱਲ ਹੋਣਾ ਜਰੂਰੀ
6036
6118
  msgid "must be one of the following: %s"
6037
6119
  msgstr ""
6038
6120
 
6121
+ msgid "must be one of: %s"
6122
+ msgstr ""
6123
+
6039
6124
  # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6040
6125
  msgid "must be unique within one organization"
6041
6126
  msgstr "ਇੱਕ ਸੰਗਠਨ ਵਿੱਚ ਵੱਖਰਾਂ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"