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.
- checksums.yaml +4 -4
- data/app/assets/stylesheets/katello/katello.scss +0 -72
- data/app/controllers/katello/api/v2/api_controller.rb +1 -2
- data/app/controllers/katello/api/v2/capsule_content_controller.rb +2 -2
- data/app/controllers/katello/api/v2/content_export_incrementals_controller.rb +98 -0
- data/app/controllers/katello/api/v2/content_exports_controller.rb +84 -0
- data/app/controllers/katello/api/v2/content_imports_controller.rb +59 -0
- data/app/controllers/katello/api/v2/content_view_filters_controller.rb +1 -1
- data/app/controllers/katello/api/v2/content_view_versions_controller.rb +56 -94
- data/app/controllers/katello/api/v2/hosts_bulk_actions_controller.rb +2 -1
- data/app/controllers/katello/api/v2/repositories_controller.rb +2 -0
- data/app/controllers/katello/concerns/api/v2/authorization.rb +14 -1
- data/app/lib/actions/katello/applicability/hosts/bulk_generate.rb +6 -2
- data/app/lib/actions/katello/capsule_content/sync.rb +1 -1
- data/app/lib/actions/katello/capsule_content/sync_capsule.rb +7 -2
- data/app/lib/actions/katello/content_view/promote_to_environment.rb +1 -1
- data/app/lib/actions/katello/content_view/publish.rb +1 -1
- data/app/lib/actions/katello/content_view_version/import.rb +2 -1
- data/app/lib/actions/katello/content_view_version/import_library.rb +17 -0
- data/app/lib/actions/katello/content_view_version/incremental_update.rb +19 -3
- data/app/lib/actions/katello/host/update_system_purpose.rb +1 -1
- data/app/lib/actions/katello/repository/sync.rb +5 -1
- data/app/lib/actions/middleware/record_smart_proxy_sync_history.rb +24 -4
- data/app/lib/actions/pulp3/content_migration.rb +10 -0
- data/app/lib/actions/pulp3/content_migration_presenter.rb +59 -0
- data/app/lib/actions/pulp3/content_migration_reset.rb +22 -0
- data/app/lib/actions/pulp3/content_view/delete_repository_references.rb +1 -1
- data/app/lib/actions/pulp3/content_view_version/export.rb +3 -2
- data/app/lib/actions/pulp3/import_migration.rb +6 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/copy_version_units_to_library.rb +2 -1
- data/app/lib/actions/pulp3/orchestration/content_view_version/export.rb +17 -13
- data/app/lib/actions/pulp3/orchestration/content_view_version/export_library.rb +60 -0
- data/app/lib/actions/pulp3/orchestration/content_view_version/import.rb +0 -4
- data/app/lib/actions/pulp3/orchestration/repository/import_upload.rb +16 -3
- data/app/lib/actions/pulp3/repository/copy_content.rb +1 -1
- data/app/lib/actions/pulp3/repository/delete.rb +1 -1
- data/app/lib/actions/pulp3/repository/save_version.rb +1 -1
- data/app/lib/actions/pulp3/repository/upload_tag.rb +18 -0
- data/app/lib/katello/util/pulpcore_content_filters.rb +1 -1
- data/app/models/katello/authorization/content_view_version.rb +25 -2
- data/app/models/katello/authorization/content_view_version_export_history.rb +1 -1
- data/app/models/katello/authorization/organization.rb +8 -0
- data/app/models/katello/concerns/operatingsystem_extensions.rb +2 -0
- data/app/models/katello/concerns/pulp_database_unit.rb +19 -0
- data/app/models/katello/concerns/redhat_extensions.rb +2 -2
- data/app/models/katello/concerns/smart_proxy_extensions.rb +7 -5
- data/app/models/katello/content_migration_progress.rb +4 -0
- data/app/models/katello/content_view.rb +5 -0
- data/app/models/katello/content_view_history.rb +2 -1
- data/app/models/katello/content_view_package_filter.rb +1 -1
- data/app/models/katello/content_view_version_export_history.rb +6 -1
- data/app/models/katello/file_unit.rb +4 -0
- data/app/models/katello/host/content_facet.rb +9 -31
- data/app/models/katello/host/subscription_facet.rb +4 -0
- data/app/models/katello/ping.rb +35 -15
- data/app/models/katello/repository.rb +7 -0
- data/app/models/katello/subscription_status.rb +3 -2
- data/app/services/katello/applicability/applicable_content_helper.rb +44 -15
- data/app/services/katello/pulp3/api/docker.rb +4 -0
- data/app/services/katello/pulp3/content_view_version/export.rb +63 -5
- data/app/services/katello/pulp3/content_view_version/import.rb +40 -0
- data/app/services/katello/pulp3/content_view_version/import_export_common.rb +0 -16
- data/app/services/katello/pulp3/content_view_version/import_validator.rb +26 -49
- data/app/services/katello/pulp3/docker_manifest.rb +1 -0
- data/app/services/katello/pulp3/docker_tag.rb +1 -0
- data/app/services/katello/pulp3/erratum.rb +2 -1
- data/app/services/katello/pulp3/migration.rb +95 -12
- data/app/services/katello/pulp3/migration_plan.rb +2 -2
- data/app/services/katello/pulp3/migration_switchover.rb +23 -5
- data/app/services/katello/pulp3/repository.rb +10 -5
- data/app/services/katello/pulp3/repository/docker.rb +5 -0
- data/app/services/katello/pulp3/repository/yum.rb +23 -8
- data/app/services/katello/pulp3/rpm.rb +5 -1
- data/app/services/katello/pulp3/task.rb +4 -0
- data/app/services/katello/pulp3/task_group.rb +4 -0
- data/app/views/katello/api/v2/content_views/show.json.rabl +6 -0
- data/app/views/katello/layouts/react.html.erb +3 -2
- data/app/views/katello/sync_management/_products.html.erb +1 -1
- data/app/views/overrides/activation_keys/_host_tab_pane.html.erb +1 -5
- data/config/routes/api/v2.rb +23 -3
- data/db/migrate/20150930183738_migrate_content_hosts.rb +1 -1
- data/db/migrate/20200514092553_move_katello_fields_from_hostgroups.katello.rb +5 -2
- data/db/migrate/20201119211133_pulp3_migration_progress.rb +9 -0
- data/db/migrate/20210201165835_add_migration_missing_content.rb +12 -0
- data/engines/bastion/app/assets/javascripts/bastion/auth/authorization.service.js +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/common/views/katello-agent-notice.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-system-purpose-modal.html +35 -40
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/views/register-client.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-activation-keys.controller.js +8 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/deletion/content-view-version-deletion-content-hosts.controller.js +9 -3
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-publish.html +4 -0
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +78 -7
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/de.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/es.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/fr.po +1292 -1170
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/it.po +17 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ja.po +858 -807
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ko.po +18 -19
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/pt_BR.po +17 -24
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/ru.po +17 -18
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_CN.po +986 -971
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/locale/zh_TW.po +19 -20
- data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/translations.js +9 -9
- data/lib/katello/permission_creator.rb +23 -3
- data/lib/katello/tasks/delete_orphaned_content.rake +1 -3
- data/lib/katello/tasks/pulp3_content_switchover.rake +3 -1
- data/lib/katello/tasks/pulp3_migration.rake +29 -6
- data/lib/katello/tasks/pulp3_migration_abort.rake +7 -2
- data/lib/katello/tasks/pulp3_migration_approve_corrupted.rake +16 -0
- data/lib/katello/tasks/pulp3_migration_reset.rake +26 -0
- data/lib/katello/tasks/pulp3_migration_stats.rake +61 -8
- data/lib/katello/tasks/pulp3_post_migration_check.rake +1 -3
- data/lib/katello/tasks/receptor/extract_orgs.rake +1 -1
- data/lib/katello/tasks/reports.rake +4 -1
- data/lib/katello/tasks/repository.rake +3 -5
- data/lib/katello/version.rb +1 -1
- data/locale/action_names.rb +51 -51
- data/locale/bn/katello.po +136 -51
- data/locale/cs/katello.po +136 -49
- data/locale/de/katello.po +136 -48
- data/locale/en/katello.po +136 -48
- data/locale/es/katello.po +136 -48
- data/locale/fr/katello.po +136 -48
- data/locale/gu/katello.po +136 -51
- data/locale/hi/katello.po +136 -51
- data/locale/it/katello.po +136 -48
- data/locale/ja/katello.po +136 -48
- data/locale/katello.pot +941 -767
- data/locale/kn/katello.po +136 -51
- data/locale/ko/katello.po +136 -48
- data/locale/mr/katello.po +136 -51
- data/locale/or/katello.po +136 -51
- data/locale/pa/katello.po +136 -51
- data/locale/pt/katello.po +136 -51
- data/locale/pt_BR/katello.po +136 -48
- data/locale/ru/katello.po +136 -48
- data/locale/ta/katello.po +136 -51
- data/locale/te/katello.po +136 -51
- data/locale/zh_CN/katello.po +136 -48
- data/locale/zh_TW/katello.po +136 -48
- data/webpack/components/TypeAhead/TypeAhead.js +2 -1
- data/webpack/components/TypeAhead/pf3Search/TypeAheadSearch.js +2 -1
- data/webpack/scenes/Subscriptions/Manifest/ManageManifestModal.js +7 -2
- data/webpack/scenes/Subscriptions/Manifest/index.js +1 -0
- metadata +31 -19
- data/lib/katello/tasks/common.rake +0 -7
data/locale/en/katello.po
CHANGED
@@ -16,6 +16,11 @@ msgstr ""
|
|
16
16
|
"Content-Transfer-Encoding: 8bit\n"
|
17
17
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18
18
|
|
19
|
+
msgid ""
|
20
|
+
"\n"
|
21
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
22
|
+
msgstr ""
|
23
|
+
|
19
24
|
msgid " %{errata_count} Errata"
|
20
25
|
msgstr ""
|
21
26
|
|
@@ -336,12 +341,18 @@ msgstr ""
|
|
336
341
|
msgid "Action with sub plans"
|
337
342
|
msgstr ""
|
338
343
|
|
344
|
+
msgid "Activation Key(s)"
|
345
|
+
msgstr ""
|
346
|
+
|
339
347
|
msgid "Activation Keys"
|
340
348
|
msgstr ""
|
341
349
|
|
342
350
|
msgid "Activation key ID"
|
343
351
|
msgstr ""
|
344
352
|
|
353
|
+
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."
|
354
|
+
msgstr ""
|
355
|
+
|
345
356
|
msgid "Activation keys and subscriptions can be managed"
|
346
357
|
msgstr ""
|
347
358
|
|
@@ -805,12 +816,18 @@ msgstr ""
|
|
805
816
|
msgid "Cannot upload Container Image content."
|
806
817
|
msgstr ""
|
807
818
|
|
819
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
820
|
+
msgstr ""
|
821
|
+
|
808
822
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
809
823
|
msgstr ""
|
810
824
|
|
811
825
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
812
826
|
msgstr ""
|
813
827
|
|
828
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
829
|
+
msgstr ""
|
830
|
+
|
814
831
|
msgid "Check services before actions"
|
815
832
|
msgstr ""
|
816
833
|
|
@@ -826,9 +843,6 @@ msgstr ""
|
|
826
843
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
827
844
|
msgstr ""
|
828
845
|
|
829
|
-
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
830
|
-
msgstr ""
|
831
|
-
|
832
846
|
msgid "Click here to go to the tasks page for the task."
|
833
847
|
msgstr ""
|
834
848
|
|
@@ -847,7 +861,7 @@ msgstr ""
|
|
847
861
|
msgid "Combined Profile Update for %s"
|
848
862
|
msgstr ""
|
849
863
|
|
850
|
-
msgid "Comma
|
864
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
851
865
|
msgstr ""
|
852
866
|
|
853
867
|
msgid "Component"
|
@@ -901,9 +915,15 @@ msgstr ""
|
|
901
915
|
msgid "Content Download URL"
|
902
916
|
msgstr ""
|
903
917
|
|
918
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
919
|
+
msgstr ""
|
920
|
+
|
904
921
|
msgid "Content Hosts"
|
905
922
|
msgstr ""
|
906
923
|
|
924
|
+
msgid "Content Migration"
|
925
|
+
msgstr ""
|
926
|
+
|
907
927
|
msgid "Content Source"
|
908
928
|
msgstr ""
|
909
929
|
|
@@ -997,6 +1017,9 @@ msgstr ""
|
|
997
1017
|
msgid "Content view numeric identifier"
|
998
1018
|
msgstr ""
|
999
1019
|
|
1020
|
+
msgid "Content view version export history identifier"
|
1021
|
+
msgstr ""
|
1022
|
+
|
1000
1023
|
msgid "Content view version identifier"
|
1001
1024
|
msgstr ""
|
1002
1025
|
|
@@ -1036,6 +1059,9 @@ msgstr ""
|
|
1036
1059
|
msgid "Could not find %{name} resource with id %{id}"
|
1037
1060
|
msgstr ""
|
1038
1061
|
|
1062
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1063
|
+
msgstr ""
|
1064
|
+
|
1039
1065
|
msgid "Could not find Environment with ids: %s"
|
1040
1066
|
msgstr ""
|
1041
1067
|
|
@@ -1114,12 +1140,6 @@ msgstr ""
|
|
1114
1140
|
msgid "Couldn't find errata ids '%s'"
|
1115
1141
|
msgstr ""
|
1116
1142
|
|
1117
|
-
msgid "Couldn't find gpg key '%s'"
|
1118
|
-
msgstr ""
|
1119
|
-
|
1120
|
-
msgid "Couldn't find host '%s'"
|
1121
|
-
msgstr ""
|
1122
|
-
|
1123
1143
|
msgid "Couldn't find host collection '%s'"
|
1124
1144
|
msgstr ""
|
1125
1145
|
|
@@ -1132,30 +1152,15 @@ msgstr ""
|
|
1132
1152
|
msgid "Couldn't find prior-environment '%s'"
|
1133
1153
|
msgstr ""
|
1134
1154
|
|
1135
|
-
msgid "Couldn't find product '%s'"
|
1136
|
-
msgstr ""
|
1137
|
-
|
1138
1155
|
msgid "Couldn't find product with id '%s'"
|
1139
1156
|
msgstr ""
|
1140
1157
|
|
1141
1158
|
msgid "Couldn't find repository '%s'"
|
1142
1159
|
msgstr ""
|
1143
1160
|
|
1144
|
-
msgid "Couldn't find repository set with id '%s'."
|
1145
|
-
msgstr ""
|
1146
|
-
|
1147
1161
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1148
1162
|
msgstr ""
|
1149
1163
|
|
1150
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1151
|
-
msgstr ""
|
1152
|
-
|
1153
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1154
|
-
msgstr ""
|
1155
|
-
|
1156
|
-
msgid "Couldn't find ssl client key '%s'"
|
1157
|
-
msgstr ""
|
1158
|
-
|
1159
1164
|
msgid "Couldn't find subject of synchronization"
|
1160
1165
|
msgstr ""
|
1161
1166
|
|
@@ -1228,6 +1233,9 @@ msgstr ""
|
|
1228
1233
|
msgid "Current organization not set."
|
1229
1234
|
msgstr ""
|
1230
1235
|
|
1236
|
+
msgid "Custom"
|
1237
|
+
msgstr ""
|
1238
|
+
|
1231
1239
|
msgid "Custom Content Repositories"
|
1232
1240
|
msgstr ""
|
1233
1241
|
|
@@ -1432,18 +1440,15 @@ msgstr ""
|
|
1432
1440
|
msgid "Description of the repository"
|
1433
1441
|
msgstr ""
|
1434
1442
|
|
1435
|
-
msgid "
|
1443
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1436
1444
|
msgstr ""
|
1437
1445
|
|
1438
|
-
msgid "
|
1446
|
+
msgid "Desired quantity of the pool"
|
1439
1447
|
msgstr ""
|
1440
1448
|
|
1441
1449
|
msgid "Destination Server name"
|
1442
1450
|
msgstr ""
|
1443
1451
|
|
1444
|
-
msgid "Destination Server name, required for Pulp3"
|
1445
|
-
msgstr ""
|
1446
|
-
|
1447
1452
|
msgid "Destroy"
|
1448
1453
|
msgstr ""
|
1449
1454
|
|
@@ -1705,7 +1710,10 @@ msgstr ""
|
|
1705
1710
|
msgid "Export CSV"
|
1706
1711
|
msgstr ""
|
1707
1712
|
|
1708
|
-
msgid "Export
|
1713
|
+
msgid "Export Library"
|
1714
|
+
msgstr ""
|
1715
|
+
|
1716
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1709
1717
|
msgstr ""
|
1710
1718
|
|
1711
1719
|
msgid "Export a repository"
|
@@ -1714,10 +1722,13 @@ msgstr ""
|
|
1714
1722
|
msgid "Export as CSV"
|
1715
1723
|
msgstr ""
|
1716
1724
|
|
1725
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1726
|
+
msgstr ""
|
1727
|
+
|
1717
1728
|
msgid "Export to ISO format"
|
1718
1729
|
msgstr ""
|
1719
1730
|
|
1720
|
-
msgid "Export to ISO format.
|
1731
|
+
msgid "Export to ISO format."
|
1721
1732
|
msgstr ""
|
1722
1733
|
|
1723
1734
|
msgid "Exported version"
|
@@ -1993,6 +2004,9 @@ msgstr ""
|
|
1993
2004
|
msgid "Host id to list applicable packages for"
|
1994
2005
|
msgstr ""
|
1995
2006
|
|
2007
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2008
|
+
msgstr ""
|
2009
|
+
|
1996
2010
|
msgid "Host with ID %s already exists in the host collection."
|
1997
2011
|
msgstr ""
|
1998
2012
|
|
@@ -2146,6 +2160,9 @@ msgstr ""
|
|
2146
2160
|
msgid "Identifiers for Lifecycle Environment"
|
2147
2161
|
msgstr ""
|
2148
2162
|
|
2163
|
+
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"
|
2164
|
+
msgstr ""
|
2165
|
+
|
2149
2166
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2150
2167
|
msgstr ""
|
2151
2168
|
|
@@ -2194,6 +2211,9 @@ msgstr ""
|
|
2194
2211
|
msgid "Import Content View Version"
|
2195
2212
|
msgstr ""
|
2196
2213
|
|
2214
|
+
msgid "Import Default Content View"
|
2215
|
+
msgstr ""
|
2216
|
+
|
2197
2217
|
msgid "Import Manifest"
|
2198
2218
|
msgstr ""
|
2199
2219
|
|
@@ -2218,12 +2238,24 @@ msgstr ""
|
|
2218
2238
|
msgid "Import a content view version"
|
2219
2239
|
msgstr ""
|
2220
2240
|
|
2241
|
+
msgid "Import a content view version to the library"
|
2242
|
+
msgstr ""
|
2243
|
+
|
2221
2244
|
msgid "Import facts"
|
2222
2245
|
msgstr ""
|
2223
2246
|
|
2224
2247
|
msgid "Import uploads into a repository"
|
2225
2248
|
msgstr ""
|
2226
2249
|
|
2250
|
+
msgid "Import-only can not be changed after creation"
|
2251
|
+
msgstr ""
|
2252
|
+
|
2253
|
+
msgid "Import-only content views can not be published directly"
|
2254
|
+
msgstr ""
|
2255
|
+
|
2256
|
+
msgid "Import-only content views will be available in a future version."
|
2257
|
+
msgstr ""
|
2258
|
+
|
2227
2259
|
msgid "Importing manifest into '%{subject}' failed."
|
2228
2260
|
msgstr ""
|
2229
2261
|
|
@@ -2383,9 +2415,6 @@ msgstr ""
|
|
2383
2415
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
2384
2416
|
msgstr ""
|
2385
2417
|
|
2386
|
-
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
2387
|
-
msgstr ""
|
2388
|
-
|
2389
2418
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2390
2419
|
msgstr ""
|
2391
2420
|
|
@@ -2409,6 +2438,12 @@ msgstr ""
|
|
2409
2438
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2410
2439
|
msgstr ""
|
2411
2440
|
|
2441
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2442
|
+
msgstr ""
|
2443
|
+
|
2444
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2445
|
+
msgstr ""
|
2446
|
+
|
2412
2447
|
msgid "Invalid value specified for Container Image repositories."
|
2413
2448
|
msgstr ""
|
2414
2449
|
|
@@ -2418,6 +2453,9 @@ msgstr ""
|
|
2418
2453
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2419
2454
|
msgstr ""
|
2420
2455
|
|
2456
|
+
msgid "Katello"
|
2457
|
+
msgstr ""
|
2458
|
+
|
2421
2459
|
msgid "Katello ID of local pool to update"
|
2422
2460
|
msgstr ""
|
2423
2461
|
|
@@ -2577,6 +2615,9 @@ msgstr ""
|
|
2577
2615
|
msgid "List errata available for the content host"
|
2578
2616
|
msgstr ""
|
2579
2617
|
|
2618
|
+
msgid "List export histories"
|
2619
|
+
msgstr ""
|
2620
|
+
|
2580
2621
|
msgid "List filter rules"
|
2581
2622
|
msgstr ""
|
2582
2623
|
|
@@ -2952,6 +2993,9 @@ msgstr ""
|
|
2952
2993
|
msgid "No errors"
|
2953
2994
|
msgstr ""
|
2954
2995
|
|
2996
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
2997
|
+
msgstr ""
|
2998
|
+
|
2955
2999
|
msgid "No file uploaded"
|
2956
3000
|
msgstr ""
|
2957
3001
|
|
@@ -3375,6 +3419,18 @@ msgstr ""
|
|
3375
3419
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3376
3420
|
msgstr ""
|
3377
3421
|
|
3422
|
+
msgid "Performs a full-export of a content view version."
|
3423
|
+
msgstr ""
|
3424
|
+
|
3425
|
+
msgid "Performs a full-export of the repositories in library."
|
3426
|
+
msgstr ""
|
3427
|
+
|
3428
|
+
msgid "Performs an incremental-export of a content view version."
|
3429
|
+
msgstr ""
|
3430
|
+
|
3431
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3432
|
+
msgstr ""
|
3433
|
+
|
3378
3434
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3379
3435
|
msgstr ""
|
3380
3436
|
|
@@ -3414,6 +3470,9 @@ msgstr ""
|
|
3414
3470
|
msgid "Please select one from the list below and you will be redirected."
|
3415
3471
|
msgstr ""
|
3416
3472
|
|
3473
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3474
|
+
msgstr ""
|
3475
|
+
|
3417
3476
|
msgid "Processing metadata"
|
3418
3477
|
msgstr ""
|
3419
3478
|
|
@@ -3656,6 +3715,9 @@ msgstr ""
|
|
3656
3715
|
msgid "Recommended Repositories"
|
3657
3716
|
msgstr ""
|
3658
3717
|
|
3718
|
+
msgid "Red Hat"
|
3719
|
+
msgstr ""
|
3720
|
+
|
3659
3721
|
msgid "Red Hat CDN URL"
|
3660
3722
|
msgstr ""
|
3661
3723
|
|
@@ -3716,9 +3778,6 @@ msgstr ""
|
|
3716
3778
|
msgid "Reload data"
|
3717
3779
|
msgstr ""
|
3718
3780
|
|
3719
|
-
msgid "Remote action:"
|
3720
|
-
msgstr ""
|
3721
|
-
|
3722
3781
|
msgid "Removal of package group(s) requested: %{groups}"
|
3723
3782
|
msgstr ""
|
3724
3783
|
|
@@ -3803,9 +3862,6 @@ msgstr ""
|
|
3803
3862
|
msgid "Repo Type"
|
3804
3863
|
msgstr ""
|
3805
3864
|
|
3806
|
-
msgid "Report"
|
3807
|
-
msgstr ""
|
3808
|
-
|
3809
3865
|
msgid "Repositories"
|
3810
3866
|
msgstr ""
|
3811
3867
|
|
@@ -4154,9 +4210,6 @@ msgstr ""
|
|
4154
4210
|
msgid "Show the available repository types"
|
4155
4211
|
msgstr ""
|
4156
4212
|
|
4157
|
-
msgid "Show the export history for a content view version"
|
4158
|
-
msgstr ""
|
4159
|
-
|
4160
4213
|
msgid "Shows status of Katello system and it's subcomponents"
|
4161
4214
|
msgstr ""
|
4162
4215
|
|
@@ -4166,6 +4219,9 @@ msgstr ""
|
|
4166
4219
|
msgid "Simple Content Access"
|
4167
4220
|
msgstr ""
|
4168
4221
|
|
4222
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4223
|
+
msgstr ""
|
4224
|
+
|
4169
4225
|
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4170
4226
|
msgstr ""
|
4171
4227
|
|
@@ -4205,6 +4261,9 @@ msgstr ""
|
|
4205
4261
|
msgid "Specify the list of units in each repo"
|
4206
4262
|
msgstr ""
|
4207
4263
|
|
4264
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4265
|
+
msgstr ""
|
4266
|
+
|
4208
4267
|
msgid "Stacking ID"
|
4209
4268
|
msgstr ""
|
4210
4269
|
|
@@ -4469,6 +4528,9 @@ msgstr ""
|
|
4469
4528
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4470
4529
|
msgstr ""
|
4471
4530
|
|
4531
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4532
|
+
msgstr ""
|
4533
|
+
|
4472
4534
|
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."
|
4473
4535
|
msgstr ""
|
4474
4536
|
|
@@ -4508,12 +4570,20 @@ msgstr ""
|
|
4508
4570
|
msgid "The erratum type must be an array. Invalid value provided"
|
4509
4571
|
msgstr ""
|
4510
4572
|
|
4573
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4574
|
+
msgstr ""
|
4575
|
+
|
4511
4576
|
msgid "The field to sort the data by. Defaults to the created date."
|
4512
4577
|
msgstr ""
|
4513
4578
|
|
4514
4579
|
msgid "The following hosts have errata that apply to them: "
|
4515
4580
|
msgstr ""
|
4516
4581
|
|
4582
|
+
msgid ""
|
4583
|
+
"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"
|
4584
|
+
" %{repos}"
|
4585
|
+
msgstr ""
|
4586
|
+
|
4517
4587
|
msgid "The id of the host to alter"
|
4518
4588
|
msgstr ""
|
4519
4589
|
|
@@ -4633,7 +4703,7 @@ msgstr ""
|
|
4633
4703
|
msgid "There's no running synchronization for this smart proxy."
|
4634
4704
|
msgstr ""
|
4635
4705
|
|
4636
|
-
msgid "This
|
4706
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
4637
4707
|
msgstr ""
|
4638
4708
|
|
4639
4709
|
msgid "This Host is not currently registered with subscription-manager."
|
@@ -4645,6 +4715,9 @@ msgstr ""
|
|
4645
4715
|
msgid "This action doesn't support package groups"
|
4646
4716
|
msgstr ""
|
4647
4717
|
|
4718
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
4719
|
+
msgstr ""
|
4720
|
+
|
4648
4721
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4649
4722
|
msgstr ""
|
4650
4723
|
|
@@ -4783,6 +4856,9 @@ msgstr ""
|
|
4783
4856
|
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
4784
4857
|
msgstr ""
|
4785
4858
|
|
4859
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
4860
|
+
msgstr ""
|
4861
|
+
|
4786
4862
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
4787
4863
|
msgstr ""
|
4788
4864
|
|
@@ -5287,6 +5363,9 @@ msgstr ""
|
|
5287
5363
|
msgid "an ostree branch"
|
5288
5364
|
msgstr ""
|
5289
5365
|
|
5366
|
+
msgid "are only allowed for Yum repositories."
|
5367
|
+
msgstr ""
|
5368
|
+
|
5290
5369
|
msgid "attempted to sync without a feed URL"
|
5291
5370
|
msgstr ""
|
5292
5371
|
|
@@ -5305,6 +5384,9 @@ msgstr ""
|
|
5305
5384
|
msgid "can't be blank"
|
5306
5385
|
msgstr ""
|
5307
5386
|
|
5387
|
+
msgid "cannot add filter to import-only view"
|
5388
|
+
msgstr ""
|
5389
|
+
|
5308
5390
|
msgid "cannot be a binary file."
|
5309
5391
|
msgstr ""
|
5310
5392
|
|
@@ -5359,13 +5441,13 @@ msgstr ""
|
|
5359
5441
|
msgid "checking Pulp task status"
|
5360
5442
|
msgstr ""
|
5361
5443
|
|
5362
|
-
msgid "comma
|
5444
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5363
5445
|
msgstr ""
|
5364
5446
|
|
5365
|
-
msgid "comma
|
5447
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5366
5448
|
msgstr ""
|
5367
5449
|
|
5368
|
-
msgid "comma
|
5450
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5369
5451
|
msgstr ""
|
5370
5452
|
|
5371
5453
|
msgid "composite content view identifier"
|
@@ -5626,6 +5708,9 @@ msgstr ""
|
|
5626
5708
|
msgid "invalid container image name"
|
5627
5709
|
msgstr ""
|
5628
5710
|
|
5711
|
+
msgid "invalid: Repositories can only require one OS version."
|
5712
|
+
msgstr ""
|
5713
|
+
|
5629
5714
|
msgid "is already attached to the capsule"
|
5630
5715
|
msgstr ""
|
5631
5716
|
|
@@ -5689,6 +5774,9 @@ msgstr ""
|
|
5689
5774
|
msgid "must be one of the following: %s"
|
5690
5775
|
msgstr ""
|
5691
5776
|
|
5777
|
+
msgid "must be one of: %s"
|
5778
|
+
msgstr ""
|
5779
|
+
|
5692
5780
|
msgid "must be unique within one organization"
|
5693
5781
|
msgstr ""
|
5694
5782
|
|