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/gu/katello.po
CHANGED
@@ -21,6 +21,11 @@ msgstr ""
|
|
21
21
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
22
22
|
"X-Generator: Zanata 3.6.2\n"
|
23
23
|
|
24
|
+
msgid ""
|
25
|
+
"\n"
|
26
|
+
"* Product = '%{product}', Repository = '%{repository}', Repository Type = '%{repo_type}'"
|
27
|
+
msgstr ""
|
28
|
+
|
24
29
|
msgid " %{errata_count} Errata"
|
25
30
|
msgstr ""
|
26
31
|
|
@@ -405,6 +410,9 @@ msgstr ""
|
|
405
410
|
msgid "Action with sub plans"
|
406
411
|
msgstr ""
|
407
412
|
|
413
|
+
msgid "Activation Key(s)"
|
414
|
+
msgstr ""
|
415
|
+
|
408
416
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
409
417
|
msgid "Activation Keys"
|
410
418
|
msgstr "સક્રિયકરણ કીઓ"
|
@@ -412,6 +420,9 @@ msgstr "સક્રિયકરણ કીઓ"
|
|
412
420
|
msgid "Activation key ID"
|
413
421
|
msgstr ""
|
414
422
|
|
423
|
+
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."
|
424
|
+
msgstr ""
|
425
|
+
|
415
426
|
#, fuzzy
|
416
427
|
msgid "Activation keys and subscriptions can be managed"
|
417
428
|
msgstr "સક્રિયકરણ કી '%s' બનાવેલ હતી."
|
@@ -904,12 +915,18 @@ msgstr ""
|
|
904
915
|
msgid "Cannot upload Container Image content."
|
905
916
|
msgstr ""
|
906
917
|
|
918
|
+
msgid "Cannot use this end point for importing to library. If you intented to upload to library, use the library endpoint."
|
919
|
+
msgstr ""
|
920
|
+
|
907
921
|
msgid "Cannot validate contents on non-yum/deb repositories."
|
908
922
|
msgstr ""
|
909
923
|
|
910
924
|
msgid "Check if a connection can be made to Red Hat Subscription Management."
|
911
925
|
msgstr ""
|
912
926
|
|
927
|
+
msgid "Check if the specified organization is eligible for Simple Content Access"
|
928
|
+
msgstr ""
|
929
|
+
|
913
930
|
msgid "Check services before actions"
|
914
931
|
msgstr ""
|
915
932
|
|
@@ -925,9 +942,6 @@ msgstr ""
|
|
925
942
|
msgid "Checksum type cannot be set for yum repositories with on demand download policy."
|
926
943
|
msgstr ""
|
927
944
|
|
928
|
-
msgid "Chunk export-tarfile into pieces of chunk_size mega bytes. Relevant only for Pulp 3 repositories"
|
929
|
-
msgstr ""
|
930
|
-
|
931
945
|
msgid "Click here to go to the tasks page for the task."
|
932
946
|
msgstr ""
|
933
947
|
|
@@ -948,7 +962,7 @@ msgstr ""
|
|
948
962
|
msgid "Combined Profile Update for %s"
|
949
963
|
msgstr ""
|
950
964
|
|
951
|
-
msgid "Comma
|
965
|
+
msgid "Comma-separated list of tags to sync for Container Image repository"
|
952
966
|
msgstr ""
|
953
967
|
|
954
968
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author swkothar
|
@@ -1004,10 +1018,16 @@ msgstr ""
|
|
1004
1018
|
msgid "Content Download URL"
|
1005
1019
|
msgstr ""
|
1006
1020
|
|
1021
|
+
msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
|
1022
|
+
msgstr ""
|
1023
|
+
|
1007
1024
|
#, fuzzy
|
1008
1025
|
msgid "Content Hosts"
|
1009
1026
|
msgstr "સમાવિષ્ટ"
|
1010
1027
|
|
1028
|
+
msgid "Content Migration"
|
1029
|
+
msgstr ""
|
1030
|
+
|
1011
1031
|
msgid "Content Source"
|
1012
1032
|
msgstr ""
|
1013
1033
|
|
@@ -1106,6 +1126,9 @@ msgstr ""
|
|
1106
1126
|
msgid "Content view numeric identifier"
|
1107
1127
|
msgstr ""
|
1108
1128
|
|
1129
|
+
msgid "Content view version export history identifier"
|
1130
|
+
msgstr ""
|
1131
|
+
|
1109
1132
|
msgid "Content view version identifier"
|
1110
1133
|
msgstr ""
|
1111
1134
|
|
@@ -1148,6 +1171,9 @@ msgstr ""
|
|
1148
1171
|
msgid "Could not find %{name} resource with id %{id}"
|
1149
1172
|
msgstr ""
|
1150
1173
|
|
1174
|
+
msgid "Could not find %{name} resources with ids %{ids}"
|
1175
|
+
msgstr ""
|
1176
|
+
|
1151
1177
|
msgid "Could not find Environment with ids: %s"
|
1152
1178
|
msgstr ""
|
1153
1179
|
|
@@ -1238,13 +1264,6 @@ msgstr "પર્યાવરણ '%s' ને શોધી શક્યા નહ
|
|
1238
1264
|
msgid "Couldn't find errata ids '%s'"
|
1239
1265
|
msgstr "સંસ્થા '%s' શોધી શક્યા નહિં"
|
1240
1266
|
|
1241
|
-
#, fuzzy
|
1242
|
-
msgid "Couldn't find gpg key '%s'"
|
1243
|
-
msgstr "GPG કી '%s' ને શોધી શક્યા નહિં"
|
1244
|
-
|
1245
|
-
msgid "Couldn't find host '%s'"
|
1246
|
-
msgstr ""
|
1247
|
-
|
1248
1267
|
msgid "Couldn't find host collection '%s'"
|
1249
1268
|
msgstr ""
|
1250
1269
|
|
@@ -1259,10 +1278,6 @@ msgstr "સંસ્થા '%s' શોધી શક્યા નહિં"
|
|
1259
1278
|
msgid "Couldn't find prior-environment '%s'"
|
1260
1279
|
msgstr "પર્યાવરણ '%s' ને શોધી શક્યા નહિં"
|
1261
1280
|
|
1262
|
-
#, fuzzy
|
1263
|
-
msgid "Couldn't find product '%s'"
|
1264
|
-
msgstr "પ્રદાતા '%s' ને શોધી શક્યા નહિં"
|
1265
|
-
|
1266
1281
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1267
1282
|
msgid "Couldn't find product with id '%s'"
|
1268
1283
|
msgstr "id '%s' સાથે પ્રોડક્ટને શોધી શક્યા નહિં"
|
@@ -1271,22 +1286,9 @@ msgstr "id '%s' સાથે પ્રોડક્ટને શોધી શક
|
|
1271
1286
|
msgid "Couldn't find repository '%s'"
|
1272
1287
|
msgstr "રિપોઝીટરી '%s' ને શોધી શક્યા નહિં"
|
1273
1288
|
|
1274
|
-
#, fuzzy
|
1275
|
-
msgid "Couldn't find repository set with id '%s'."
|
1276
|
-
msgstr "રિપોઝીટરી '%s' ને શોધી શક્યા નહિં"
|
1277
|
-
|
1278
1289
|
msgid "Couldn't find specified Content View and Lifecycle Environment."
|
1279
1290
|
msgstr ""
|
1280
1291
|
|
1281
|
-
msgid "Couldn't find ssl ca cert '%s'"
|
1282
|
-
msgstr ""
|
1283
|
-
|
1284
|
-
msgid "Couldn't find ssl client cert '%s'"
|
1285
|
-
msgstr ""
|
1286
|
-
|
1287
|
-
msgid "Couldn't find ssl client key '%s'"
|
1288
|
-
msgstr ""
|
1289
|
-
|
1290
1292
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1291
1293
|
msgid "Couldn't find subject of synchronization"
|
1292
1294
|
msgstr "સુમેળનાં સુયોજનને શોધી શક્યા નહિં"
|
@@ -1361,6 +1363,9 @@ msgstr ""
|
|
1361
1363
|
msgid "Current organization not set."
|
1362
1364
|
msgstr ""
|
1363
1365
|
|
1366
|
+
msgid "Custom"
|
1367
|
+
msgstr ""
|
1368
|
+
|
1364
1369
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
1365
1370
|
msgid "Custom Content Repositories"
|
1366
1371
|
msgstr "વૈવિધ્ય સમાવિષ્ટ રિપોઝીટરીઓ"
|
@@ -1574,18 +1579,15 @@ msgstr ""
|
|
1574
1579
|
msgid "Description of the repository"
|
1575
1580
|
msgstr ""
|
1576
1581
|
|
1577
|
-
msgid "
|
1582
|
+
msgid "Designate this Content View for importing from upstream servers only. Defaults to false"
|
1578
1583
|
msgstr ""
|
1579
1584
|
|
1580
|
-
msgid "
|
1585
|
+
msgid "Desired quantity of the pool"
|
1581
1586
|
msgstr ""
|
1582
1587
|
|
1583
1588
|
msgid "Destination Server name"
|
1584
1589
|
msgstr ""
|
1585
1590
|
|
1586
|
-
msgid "Destination Server name, required for Pulp3"
|
1587
|
-
msgstr ""
|
1588
|
-
|
1589
1591
|
msgid "Destroy"
|
1590
1592
|
msgstr ""
|
1591
1593
|
|
@@ -1868,7 +1870,10 @@ msgstr ""
|
|
1868
1870
|
msgid "Export CSV"
|
1869
1871
|
msgstr ""
|
1870
1872
|
|
1871
|
-
msgid "Export
|
1873
|
+
msgid "Export Library"
|
1874
|
+
msgstr ""
|
1875
|
+
|
1876
|
+
msgid "Export a content view version. Relevant only for Pulp 2 repositories."
|
1872
1877
|
msgstr ""
|
1873
1878
|
|
1874
1879
|
msgid "Export a repository"
|
@@ -1877,10 +1882,13 @@ msgstr ""
|
|
1877
1882
|
msgid "Export as CSV"
|
1878
1883
|
msgstr ""
|
1879
1884
|
|
1885
|
+
msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
|
1886
|
+
msgstr ""
|
1887
|
+
|
1880
1888
|
msgid "Export to ISO format"
|
1881
1889
|
msgstr ""
|
1882
1890
|
|
1883
|
-
msgid "Export to ISO format.
|
1891
|
+
msgid "Export to ISO format."
|
1884
1892
|
msgstr ""
|
1885
1893
|
|
1886
1894
|
msgid "Exported version"
|
@@ -2160,6 +2168,9 @@ msgstr ""
|
|
2160
2168
|
msgid "Host id to list applicable packages for"
|
2161
2169
|
msgstr ""
|
2162
2170
|
|
2171
|
+
msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
|
2172
|
+
msgstr ""
|
2173
|
+
|
2163
2174
|
msgid "Host with ID %s already exists in the host collection."
|
2164
2175
|
msgstr ""
|
2165
2176
|
|
@@ -2314,6 +2325,9 @@ msgstr ""
|
|
2314
2325
|
msgid "Identifiers for Lifecycle Environment"
|
2315
2326
|
msgstr ""
|
2316
2327
|
|
2328
|
+
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"
|
2329
|
+
msgstr ""
|
2330
|
+
|
2317
2331
|
msgid "If Autosearch is enabled, delay in milliseconds before executing searches while typing."
|
2318
2332
|
msgstr ""
|
2319
2333
|
|
@@ -2362,6 +2376,9 @@ msgstr ""
|
|
2362
2376
|
msgid "Import Content View Version"
|
2363
2377
|
msgstr ""
|
2364
2378
|
|
2379
|
+
msgid "Import Default Content View"
|
2380
|
+
msgstr ""
|
2381
|
+
|
2365
2382
|
#, fuzzy
|
2366
2383
|
msgid "Import Manifest"
|
2367
2384
|
msgstr "આયાત કરો"
|
@@ -2387,6 +2404,9 @@ msgstr ""
|
|
2387
2404
|
msgid "Import a content view version"
|
2388
2405
|
msgstr ""
|
2389
2406
|
|
2407
|
+
msgid "Import a content view version to the library"
|
2408
|
+
msgstr ""
|
2409
|
+
|
2390
2410
|
#, fuzzy
|
2391
2411
|
msgid "Import facts"
|
2392
2412
|
msgstr "આયાત કરો"
|
@@ -2394,6 +2414,15 @@ msgstr "આયાત કરો"
|
|
2394
2414
|
msgid "Import uploads into a repository"
|
2395
2415
|
msgstr ""
|
2396
2416
|
|
2417
|
+
msgid "Import-only can not be changed after creation"
|
2418
|
+
msgstr ""
|
2419
|
+
|
2420
|
+
msgid "Import-only content views can not be published directly"
|
2421
|
+
msgstr ""
|
2422
|
+
|
2423
|
+
msgid "Import-only content views will be available in a future version."
|
2424
|
+
msgstr ""
|
2425
|
+
|
2397
2426
|
msgid "Importing manifest into '%{subject}' failed."
|
2398
2427
|
msgstr ""
|
2399
2428
|
|
@@ -2564,9 +2593,6 @@ msgstr ""
|
|
2564
2593
|
msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
|
2565
2594
|
msgstr ""
|
2566
2595
|
|
2567
|
-
msgid "Invalid parameters provided - %{params}. These are only relevant for Pulp 2 repositories"
|
2568
|
-
msgstr ""
|
2569
|
-
|
2570
2596
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
2571
2597
|
msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
|
2572
2598
|
msgstr "અમાન્ય પરિમાણો આ ક્રિયા માટે સૂચનામાં મોકલેલ છે. મહેરબાની કરીને સિસ્ટમ સંચાલકનો સંપર્ક કરો."
|
@@ -2592,6 +2618,12 @@ msgstr ""
|
|
2592
2618
|
msgid "Invalid puppet module. Please make sure the puppet module contains a metadata.json file and is properly compressed."
|
2593
2619
|
msgstr ""
|
2594
2620
|
|
2621
|
+
msgid "Invalid usage for Pulp 2 repositories. Use export for Yum repositories"
|
2622
|
+
msgstr ""
|
2623
|
+
|
2624
|
+
msgid "Invalid usage for Pulp 3 repositories. Use hammer content-export for Yum repositories"
|
2625
|
+
msgstr ""
|
2626
|
+
|
2595
2627
|
msgid "Invalid value specified for Container Image repositories."
|
2596
2628
|
msgstr ""
|
2597
2629
|
|
@@ -2601,6 +2633,9 @@ msgstr ""
|
|
2601
2633
|
msgid "Invalid value specified for ignorable content. Permissible values %s"
|
2602
2634
|
msgstr ""
|
2603
2635
|
|
2636
|
+
msgid "Katello"
|
2637
|
+
msgstr ""
|
2638
|
+
|
2604
2639
|
msgid "Katello ID of local pool to update"
|
2605
2640
|
msgstr ""
|
2606
2641
|
|
@@ -2762,6 +2797,9 @@ msgstr ""
|
|
2762
2797
|
msgid "List errata available for the content host"
|
2763
2798
|
msgstr ""
|
2764
2799
|
|
2800
|
+
msgid "List export histories"
|
2801
|
+
msgstr ""
|
2802
|
+
|
2765
2803
|
msgid "List filter rules"
|
2766
2804
|
msgstr ""
|
2767
2805
|
|
@@ -3148,6 +3186,9 @@ msgstr ""
|
|
3148
3186
|
msgid "No errors"
|
3149
3187
|
msgstr "ભૂલો નથી"
|
3150
3188
|
|
3189
|
+
msgid "No existing export history was found to perform an incremental export. A full export must be performed"
|
3190
|
+
msgstr ""
|
3191
|
+
|
3151
3192
|
msgid "No file uploaded"
|
3152
3193
|
msgstr ""
|
3153
3194
|
|
@@ -3632,6 +3673,18 @@ msgstr ""
|
|
3632
3673
|
msgid "Perform an Incremental Update on one or more Content View Versions"
|
3633
3674
|
msgstr ""
|
3634
3675
|
|
3676
|
+
msgid "Performs a full-export of a content view version."
|
3677
|
+
msgstr ""
|
3678
|
+
|
3679
|
+
msgid "Performs a full-export of the repositories in library."
|
3680
|
+
msgstr ""
|
3681
|
+
|
3682
|
+
msgid "Performs an incremental-export of a content view version."
|
3683
|
+
msgstr ""
|
3684
|
+
|
3685
|
+
msgid "Performs an incremental-export of the repositories in library."
|
3686
|
+
msgstr ""
|
3687
|
+
|
3635
3688
|
# translation auto-copied from project CFSE, version sam-1.2, document app, author swkothar
|
3636
3689
|
msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
|
3637
3690
|
msgstr "પરવાનગી નામંજૂર. વપરાશકર્તા '%{user}' ની પાસે સંસ્થા '%{org}' ને વાપરવા પરવાનગી નથી."
|
@@ -3673,6 +3726,9 @@ msgstr ""
|
|
3673
3726
|
msgid "Please select one from the list below and you will be redirected."
|
3674
3727
|
msgstr ""
|
3675
3728
|
|
3729
|
+
msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
|
3730
|
+
msgstr ""
|
3731
|
+
|
3676
3732
|
msgid "Processing metadata"
|
3677
3733
|
msgstr ""
|
3678
3734
|
|
@@ -3919,6 +3975,9 @@ msgstr ""
|
|
3919
3975
|
msgid "Recommended Repositories"
|
3920
3976
|
msgstr ""
|
3921
3977
|
|
3978
|
+
msgid "Red Hat"
|
3979
|
+
msgstr ""
|
3980
|
+
|
3922
3981
|
#, fuzzy
|
3923
3982
|
msgid "Red Hat CDN URL"
|
3924
3983
|
msgstr "પ્રોડક્ટો"
|
@@ -3985,9 +4044,6 @@ msgstr ""
|
|
3985
4044
|
msgid "Reload data"
|
3986
4045
|
msgstr ""
|
3987
4046
|
|
3988
|
-
msgid "Remote action:"
|
3989
|
-
msgstr ""
|
3990
|
-
|
3991
4047
|
msgid "Removal of package group(s) requested: %{groups}"
|
3992
4048
|
msgstr ""
|
3993
4049
|
|
@@ -4079,9 +4135,6 @@ msgstr "પેકેજને દૂર કરી રહ્યા છે..."
|
|
4079
4135
|
msgid "Repo Type"
|
4080
4136
|
msgstr ""
|
4081
4137
|
|
4082
|
-
msgid "Report"
|
4083
|
-
msgstr ""
|
4084
|
-
|
4085
4138
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
4086
4139
|
msgid "Repositories"
|
4087
4140
|
msgstr "રિપોઝીટરીઓ"
|
@@ -4446,9 +4499,6 @@ msgstr ""
|
|
4446
4499
|
msgid "Show the available repository types"
|
4447
4500
|
msgstr ""
|
4448
4501
|
|
4449
|
-
msgid "Show the export history for a content view version"
|
4450
|
-
msgstr ""
|
4451
|
-
|
4452
4502
|
msgid "Shows status of Katello system and it's subcomponents"
|
4453
4503
|
msgstr ""
|
4454
4504
|
|
@@ -4458,6 +4508,9 @@ msgstr ""
|
|
4458
4508
|
msgid "Simple Content Access"
|
4459
4509
|
msgstr ""
|
4460
4510
|
|
4511
|
+
msgid "Simple Content Access has been disabled by the upstream organization administrator."
|
4512
|
+
msgstr ""
|
4513
|
+
|
4461
4514
|
msgid "Simple Content Access has been disabled for '%{subject}'."
|
4462
4515
|
msgstr ""
|
4463
4516
|
|
@@ -4498,6 +4551,9 @@ msgstr ""
|
|
4498
4551
|
msgid "Specify the list of units in each repo"
|
4499
4552
|
msgstr ""
|
4500
4553
|
|
4554
|
+
msgid "Split the exported content into archives no greater than the specified size in megabytes."
|
4555
|
+
msgstr ""
|
4556
|
+
|
4501
4557
|
msgid "Stacking ID"
|
4502
4558
|
msgstr ""
|
4503
4559
|
|
@@ -4782,6 +4838,9 @@ msgstr "'%s' પર્યાવરણ ચેન્જસેટ સમાવી
|
|
4782
4838
|
msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
|
4783
4839
|
msgstr ""
|
4784
4840
|
|
4841
|
+
msgid "The TOC file specified in the metadata does not exist. %s "
|
4842
|
+
msgstr ""
|
4843
|
+
|
4785
4844
|
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."
|
4786
4845
|
msgstr ""
|
4787
4846
|
|
@@ -4823,12 +4882,20 @@ msgstr ""
|
|
4823
4882
|
msgid "The erratum type must be an array. Invalid value provided"
|
4824
4883
|
msgstr ""
|
4825
4884
|
|
4885
|
+
msgid "The exported Content View Version '%{content_view} %{current}' cannot be incrementally updated from version '%{from}'. Please do a full export."
|
4886
|
+
msgstr ""
|
4887
|
+
|
4826
4888
|
msgid "The field to sort the data by. Defaults to the created date."
|
4827
4889
|
msgstr ""
|
4828
4890
|
|
4829
4891
|
msgid "The following hosts have errata that apply to them: "
|
4830
4892
|
msgstr ""
|
4831
4893
|
|
4894
|
+
msgid ""
|
4895
|
+
"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"
|
4896
|
+
" %{repos}"
|
4897
|
+
msgstr ""
|
4898
|
+
|
4832
4899
|
msgid "The id of the host to alter"
|
4833
4900
|
msgstr ""
|
4834
4901
|
|
@@ -4950,7 +5017,7 @@ msgstr ""
|
|
4950
5017
|
msgid "There's no running synchronization for this smart proxy."
|
4951
5018
|
msgstr ""
|
4952
5019
|
|
4953
|
-
msgid "This
|
5020
|
+
msgid "This Content View must be set to Import-only before performing an import"
|
4954
5021
|
msgstr ""
|
4955
5022
|
|
4956
5023
|
msgid "This Host is not currently registered with subscription-manager."
|
@@ -4962,6 +5029,9 @@ msgstr ""
|
|
4962
5029
|
msgid "This action doesn't support package groups"
|
4963
5030
|
msgstr ""
|
4964
5031
|
|
5032
|
+
msgid "This action will become available after the Pulp 3 content migration"
|
5033
|
+
msgstr ""
|
5034
|
+
|
4965
5035
|
msgid "This certificate allows a user to view the repositories in any environment from a browser."
|
4966
5036
|
msgstr ""
|
4967
5037
|
|
@@ -5101,6 +5171,9 @@ msgstr ""
|
|
5101
5171
|
msgid "Unable to export. 'pulpcore_export_destination' setting is not set to a valid directory."
|
5102
5172
|
msgstr ""
|
5103
5173
|
|
5174
|
+
msgid "Unable to incrementally export. Do a Full Export the library content before updating from the latest increment."
|
5175
|
+
msgstr ""
|
5176
|
+
|
5104
5177
|
msgid "Unable to reassign activation_keys. Please check activation_key_content_view_id and activation_key_environment_id."
|
5105
5178
|
msgstr ""
|
5106
5179
|
|
@@ -5627,6 +5700,9 @@ msgstr "સંસ્થા"
|
|
5627
5700
|
msgid "an ostree branch"
|
5628
5701
|
msgstr ""
|
5629
5702
|
|
5703
|
+
msgid "are only allowed for Yum repositories."
|
5704
|
+
msgstr ""
|
5705
|
+
|
5630
5706
|
msgid "attempted to sync without a feed URL"
|
5631
5707
|
msgstr ""
|
5632
5708
|
|
@@ -5646,6 +5722,9 @@ msgstr ""
|
|
5646
5722
|
msgid "can't be blank"
|
5647
5723
|
msgstr "ખાલી કરી શકાતુ નથી"
|
5648
5724
|
|
5725
|
+
msgid "cannot add filter to import-only view"
|
5726
|
+
msgstr ""
|
5727
|
+
|
5649
5728
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
5650
5729
|
msgid "cannot be a binary file."
|
5651
5730
|
msgstr "બાઇનરી ફાઇલ કરી શકાતી નથી."
|
@@ -5710,13 +5789,13 @@ msgstr ""
|
|
5710
5789
|
msgid "checking Pulp task status"
|
5711
5790
|
msgstr ""
|
5712
5791
|
|
5713
|
-
msgid "comma
|
5792
|
+
msgid "comma-separated list of architectures to be synced from deb-archive"
|
5714
5793
|
msgstr ""
|
5715
5794
|
|
5716
|
-
msgid "comma
|
5795
|
+
msgid "comma-separated list of releases to be synced from deb-archive"
|
5717
5796
|
msgstr ""
|
5718
5797
|
|
5719
|
-
msgid "comma
|
5798
|
+
msgid "comma-separated list of repo components to be synced from deb-archive"
|
5720
5799
|
msgstr ""
|
5721
5800
|
|
5722
5801
|
msgid "composite content view identifier"
|
@@ -5987,6 +6066,9 @@ msgstr ""
|
|
5987
6066
|
msgid "invalid container image name"
|
5988
6067
|
msgstr ""
|
5989
6068
|
|
6069
|
+
msgid "invalid: Repositories can only require one OS version."
|
6070
|
+
msgstr ""
|
6071
|
+
|
5990
6072
|
msgid "is already attached to the capsule"
|
5991
6073
|
msgstr ""
|
5992
6074
|
|
@@ -6052,6 +6134,9 @@ msgstr "હકારાત્મક પૂર્ણાંક કિંમત હ
|
|
6052
6134
|
msgid "must be one of the following: %s"
|
6053
6135
|
msgstr ""
|
6054
6136
|
|
6137
|
+
msgid "must be one of: %s"
|
6138
|
+
msgstr ""
|
6139
|
+
|
6055
6140
|
# translation auto-copied from project CFSE, version sam-1.2, document app
|
6056
6141
|
msgid "must be unique within one organization"
|
6057
6142
|
msgstr "એક સંસ્થામાં અનન્ય હોવુ જ જોઇએ"
|