katello 4.1.4 → 4.2.0.rc1

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 (240) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/katello/api/rhsm/candlepin_proxies_controller.rb +2 -2
  3. data/app/controllers/katello/api/v2/content_credentials_controller.rb +3 -3
  4. data/app/controllers/katello/api/v2/content_uploads_controller.rb +3 -1
  5. data/app/controllers/katello/api/v2/content_view_components_controller.rb +33 -1
  6. data/app/controllers/katello/api/v2/content_views_controller.rb +12 -0
  7. data/app/controllers/katello/api/v2/host_errata_controller.rb +1 -1
  8. data/app/controllers/katello/api/v2/products_bulk_actions_controller.rb +1 -2
  9. data/app/controllers/katello/api/v2/products_controller.rb +4 -4
  10. data/app/controllers/katello/api/v2/repositories_bulk_actions_controller.rb +3 -11
  11. data/app/controllers/katello/api/v2/repositories_controller.rb +68 -47
  12. data/app/controllers/katello/api/v2/upstream_subscriptions_controller.rb +0 -28
  13. data/app/controllers/katello/concerns/api/v2/registration_commands_controller_extensions.rb +26 -5
  14. data/app/controllers/katello/concerns/api/v2/registration_controller_extensions.rb +26 -1
  15. data/app/lib/actions/candlepin/environment/destroy.rb +2 -0
  16. data/app/lib/actions/katello/agent_action.rb +2 -2
  17. data/app/lib/actions/katello/capsule_content/sync_capsule.rb +3 -2
  18. data/app/lib/actions/katello/{gpg_key → content_credential}/update.rb +1 -1
  19. data/app/lib/actions/katello/content_view/publish.rb +6 -1
  20. data/app/lib/actions/katello/content_view_version/create_repos.rb +1 -1
  21. data/app/lib/actions/katello/content_view_version/incremental_update.rb +0 -47
  22. data/app/lib/actions/katello/orphan_cleanup/remove_orphans.rb +1 -1
  23. data/app/lib/actions/katello/repository/clone_contents.rb +1 -7
  24. data/app/lib/actions/katello/repository/clone_to_environment.rb +1 -7
  25. data/app/lib/actions/katello/repository/create.rb +4 -8
  26. data/app/lib/actions/katello/repository/create_root.rb +1 -1
  27. data/app/lib/actions/katello/repository/destroy.rb +1 -3
  28. data/app/lib/actions/katello/repository/import_upload.rb +3 -2
  29. data/app/lib/actions/katello/repository/instance_update.rb +1 -1
  30. data/app/lib/actions/katello/repository/metadata_generate.rb +2 -8
  31. data/app/lib/actions/katello/repository/multi_clone_contents.rb +0 -1
  32. data/app/lib/actions/katello/repository/refresh_repository.rb +1 -4
  33. data/app/lib/actions/katello/repository/remove_content.rb +6 -4
  34. data/app/lib/actions/katello/repository/sync.rb +5 -25
  35. data/app/lib/actions/katello/repository/update.rb +1 -2
  36. data/app/lib/actions/katello/repository/update_http_proxy_details.rb +2 -5
  37. data/app/lib/actions/katello/repository/update_redhat_repository.rb +1 -1
  38. data/app/lib/actions/katello/repository/upload_files.rb +8 -3
  39. data/app/lib/actions/katello/repository/upload_package_group.rb +2 -11
  40. data/app/lib/actions/katello/repository/verify_checksum.rb +0 -1
  41. data/app/lib/actions/katello/repository_set/enable_repository.rb +1 -1
  42. data/app/lib/actions/pulp3/orchestration/repository/create.rb +2 -2
  43. data/app/lib/actions/pulp3/repository/create.rb +3 -4
  44. data/app/lib/actions/pulp3/repository/create_remote.rb +1 -6
  45. data/app/lib/actions/pulp3/repository/repair.rb +4 -0
  46. data/app/lib/katello/errors.rb +1 -0
  47. data/app/lib/katello/http_resource.rb +26 -73
  48. data/app/lib/katello/qpid/connection.rb +1 -3
  49. data/app/lib/katello/resources/candlepin/consumer.rb +1 -1
  50. data/app/lib/katello/resources/candlepin/environment.rb +2 -0
  51. data/app/lib/katello/resources/registry.rb +7 -20
  52. data/app/lib/katello/util/http_proxy.rb +0 -3
  53. data/app/lib/katello/validators/gpg_key_content_validator.rb +1 -1
  54. data/app/models/katello/authorization/{gpg_key.rb → content_credential.rb} +1 -1
  55. data/app/models/katello/authorization/product.rb +0 -4
  56. data/app/models/katello/concerns/host_managed_extensions.rb +2 -16
  57. data/app/models/katello/concerns/organization_extensions.rb +1 -1
  58. data/app/models/katello/concerns/pulp_database_unit.rb +13 -5
  59. data/app/models/katello/concerns/smart_proxy_extensions.rb +45 -41
  60. data/app/models/katello/{gpg_key.rb → content_credential.rb} +4 -4
  61. data/app/models/katello/content_view.rb +6 -1
  62. data/app/models/katello/generic_content_unit.rb +16 -0
  63. data/app/models/katello/glue/pulp/repos.rb +9 -25
  64. data/app/models/katello/kt_environment.rb +1 -1
  65. data/app/models/katello/product.rb +4 -4
  66. data/app/models/katello/repository.rb +13 -7
  67. data/app/models/katello/repository_generic_content_unit.rb +7 -0
  68. data/app/models/katello/root_repository.rb +38 -7
  69. data/app/models/setting/content.rb +5 -0
  70. data/app/services/cert/certs.rb +16 -8
  71. data/app/services/katello/applicability/applicable_content_helper.rb +1 -2
  72. data/app/services/katello/candlepin/consumer.rb +6 -0
  73. data/app/services/katello/component_view_presenter.rb +27 -0
  74. data/app/services/katello/pulp/repository.rb +1 -1
  75. data/app/services/katello/pulp/server.rb +2 -2
  76. data/app/services/katello/pulp3/api/core.rb +4 -0
  77. data/app/services/katello/pulp3/api/generic.rb +68 -0
  78. data/app/services/katello/pulp3/generic_content_unit.rb +29 -0
  79. data/app/services/katello/pulp3/pulp_content_unit.rb +5 -1
  80. data/app/services/katello/pulp3/repository/generic.rb +94 -0
  81. data/app/services/katello/pulp3/repository/yum.rb +4 -5
  82. data/app/services/katello/pulp3/repository.rb +27 -12
  83. data/app/services/katello/pulp3/repository_mirror.rb +2 -2
  84. data/app/services/katello/pulp3/smart_proxy_repository.rb +4 -4
  85. data/app/services/katello/registration_manager.rb +18 -7
  86. data/app/services/katello/repository_type.rb +59 -1
  87. data/app/services/katello/repository_type_manager.rb +116 -24
  88. data/app/views/katello/api/v2/content_views/base.json.rabl +4 -4
  89. data/app/views/katello/api/v2/repositories/show.json.rabl +1 -0
  90. data/app/views/smart_proxies/plugins/_pulpcore.html.erb +2 -5
  91. data/app/views/smart_proxies/pulp_status.html.erb +0 -7
  92. data/config/katello.yaml.example +0 -21
  93. data/config/routes/api/v2.rb +2 -1
  94. data/db/functions/deb_version_cmp_v01.sql +200 -0
  95. data/db/migrate/20171110082124_add_ssl_certs_to_products_and_repos.rb +5 -1
  96. data/db/migrate/20200402130013_add_repsoitory_docker_meta_tag_f_key.rb +3 -1
  97. data/db/migrate/20210624221630_katello_generic_content.rb +22 -0
  98. data/db/migrate/20210625095042_add_retain_package_versions_count.rb +9 -0
  99. data/db/migrate/20210628182553_add_generic_remote_options_to_root_repository.rb +5 -0
  100. data/db/migrate/20210714140440_remove_repo_export_permission.rb +5 -0
  101. data/db/migrate/20210721163730_change_gpg_keys_to_content_credentials.rb +8 -0
  102. data/db/migrate/20210728130748_create_function_deb_version_cmp.rb +12 -0
  103. data/db/seeds.d/111-upgrade_tasks.rb +1 -2
  104. data/engines/bastion/app/views/bastion/layouts/assets.html.erb +1 -1
  105. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/capsule-content/capsule-content.controller.js +7 -5
  106. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-hosts/bulk/views/content-hosts-bulk-errata-modal.html +4 -1
  107. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/content-views/details/views/content-view-details.html +1 -1
  108. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/apply-errata.controller.js +1 -1
  109. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/errata/views/apply-errata-confirm.html +2 -1
  110. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/i18n/bastion_katello.pot +25 -33
  111. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/bulk/views/products-bulk-advanced-sync-modal.html +1 -1
  112. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/product-repositories.controller.js +1 -6
  113. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.controller.js +10 -2
  114. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details-info.filter.js +9 -0
  115. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/repository-details.controller.js +0 -2
  116. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-advanced-sync-options.html +1 -25
  117. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-details.html +1 -1
  118. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/details/views/repository-info.html +31 -13
  119. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/new/views/new-repository.html +11 -3
  120. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/products/details/repositories/views/product-repositories.html +0 -6
  121. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/aggregate-task.factory.js +3 -3
  122. data/engines/bastion_katello/app/assets/javascripts/bastion_katello/tasks/task.factory.js +1 -1
  123. data/lib/katello/engine.rb +2 -4
  124. data/lib/katello/permission_creator.rb +6 -12
  125. data/lib/katello/plugin.rb +76 -80
  126. data/lib/katello/repository_types/python.rb +37 -0
  127. data/lib/katello/tasks/reimport.rake +0 -9
  128. data/lib/katello/tasks/repository.rake +3 -4
  129. data/lib/katello/version.rb +1 -1
  130. data/locale/action_names.rb +28 -29
  131. data/locale/bn/katello.po +699 -221
  132. data/locale/cs/katello.po +167 -59
  133. data/locale/de/katello.po +585 -352
  134. data/locale/en/katello.po +167 -59
  135. data/locale/es/katello.po +1388 -1189
  136. data/locale/fr/katello.po +1740 -1494
  137. data/locale/gu/katello.po +896 -416
  138. data/locale/hi/katello.po +892 -415
  139. data/locale/it/katello.po +371 -170
  140. data/locale/ja/katello.po +1657 -1439
  141. data/locale/katello.pot +933 -736
  142. data/locale/kn/katello.po +894 -416
  143. data/locale/ko/katello.po +515 -317
  144. data/locale/mr/katello.po +857 -415
  145. data/locale/or/katello.po +894 -416
  146. data/locale/pa/katello.po +874 -411
  147. data/locale/pt/katello.po +347 -154
  148. data/locale/pt_BR/katello.po +1398 -1215
  149. data/locale/ru/katello.po +671 -463
  150. data/locale/ta/katello.po +697 -221
  151. data/locale/te/katello.po +891 -415
  152. data/locale/zh_CN/katello.po +2029 -1845
  153. data/locale/zh_TW/katello.po +735 -407
  154. data/package.json +3 -1
  155. data/webpack/components/EditableTextInput/EditableTextInput.js +3 -3
  156. data/webpack/components/RoutedTabs/RoutedTabs.js +7 -8
  157. data/webpack/components/Table/TableWrapper.js +19 -11
  158. data/webpack/components/Table/helpers.js +1 -1
  159. data/webpack/components/extensions/HostDetails/Tabs/ContentTab.js +42 -0
  160. data/webpack/components/extensions/HostDetails/Tabs/SubscriptionTab.js +12 -0
  161. data/webpack/components/extensions/RegistrationCommands/__tests__/__snapshots__/ActivationKeys.test.js.snap +4 -0
  162. data/webpack/components/extensions/RegistrationCommands/fields/ActivationKeys.js +1 -1
  163. data/webpack/components/extensions/RegistrationCommands/index.js +1 -2
  164. data/webpack/components/pf3Table/formatters/selectionHeaderCellFormatter.js +2 -1
  165. data/webpack/fills_index.js +4 -1
  166. data/webpack/redux/actions/RedHatRepositories/helpers.js +2 -4
  167. data/webpack/redux/reducers/RedHatRepositories/enabled.js +4 -1
  168. data/webpack/scenes/ContentViews/ContentViewsActions.js +16 -1
  169. data/webpack/scenes/ContentViews/ContentViewsConstants.js +15 -0
  170. data/webpack/scenes/ContentViews/ContentViewsPage.js +12 -22
  171. data/webpack/scenes/ContentViews/Copy/CopyContentViewForm.js +4 -3
  172. data/webpack/scenes/ContentViews/Create/CreateContentViewForm.js +25 -14
  173. data/webpack/scenes/ContentViews/Create/CreateContentViewModal.js +4 -2
  174. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentContentViewAddModal.js +153 -0
  175. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ComponentVersion.js +21 -10
  176. data/webpack/scenes/ContentViews/Details/ComponentContentViews/ContentViewComponents.js +157 -19
  177. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.fixtures.json +100 -108
  178. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/contentViewComponents.test.js +140 -16
  179. data/webpack/scenes/ContentViews/Details/ComponentContentViews/__tests__/publishedContentViewDetails.fixtures.json +367 -0
  180. data/webpack/scenes/ContentViews/Details/ContentViewDetailActions.js +59 -6
  181. data/webpack/scenes/ContentViews/Details/ContentViewDetailSelectors.js +43 -0
  182. data/webpack/scenes/ContentViews/Details/ContentViewDetails.js +44 -13
  183. data/webpack/scenes/ContentViews/Details/Filters/Add/CVFilterAddModal.js +161 -0
  184. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterAdd.test.js +54 -0
  185. data/webpack/scenes/ContentViews/Details/Filters/Add/__tests__/cvFilterCreateResult.fixtures.json +124 -0
  186. data/webpack/scenes/ContentViews/Details/Filters/CVPackageGroupFilterContent.js +8 -6
  187. data/webpack/scenes/ContentViews/Details/Filters/CVRpmFilterContent.js +7 -6
  188. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilterDetails.js +4 -3
  189. data/webpack/scenes/ContentViews/Details/Filters/ContentViewFilters.js +71 -12
  190. data/webpack/scenes/ContentViews/Details/Filters/__tests__/contentViewFilters.test.js +77 -0
  191. data/webpack/scenes/ContentViews/Details/Histories/ContentViewHistories.js +13 -12
  192. data/webpack/scenes/ContentViews/Details/Histories/__tests__/contentViewHistory.test.js +2 -2
  193. data/webpack/scenes/ContentViews/Details/Repositories/ContentViewRepositories.js +17 -14
  194. data/webpack/scenes/ContentViews/Details/Repositories/LastSync.js +3 -3
  195. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewAddRemove.test.js +2 -2
  196. data/webpack/scenes/ContentViews/Details/Repositories/__tests__/contentViewDetailRepos.test.js +6 -2
  197. data/webpack/scenes/ContentViews/Details/Versions/ContentViewVersions.js +61 -20
  198. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskInProgressResponse.fixtures.json +71 -0
  199. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewTaskResponse.fixtures.json +75 -0
  200. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersions.test.js +86 -1
  201. data/webpack/scenes/ContentViews/Details/Versions/__tests__/contentViewVersionsWithTask.fixtures.json +713 -0
  202. data/webpack/scenes/ContentViews/Details/__tests__/contentViewDetail.test.js +3 -0
  203. data/webpack/scenes/ContentViews/Publish/CVPublishFinish.js +184 -0
  204. data/webpack/scenes/ContentViews/Publish/CVPublishForm.js +104 -0
  205. data/webpack/scenes/ContentViews/Publish/CVPublishReview.js +71 -0
  206. data/webpack/scenes/ContentViews/Publish/ContentViewPublishSelectors.js +17 -0
  207. data/webpack/scenes/ContentViews/Publish/PublishContentViewWizard.js +145 -0
  208. data/webpack/scenes/ContentViews/Publish/__tests__/environmentPaths.fixtures.json +352 -0
  209. data/webpack/scenes/ContentViews/Publish/__tests__/publishContentView.test.js +184 -0
  210. data/webpack/scenes/ContentViews/Publish/__tests__/publishResponse.fixture.json +69 -0
  211. data/webpack/scenes/ContentViews/Publish/cvPublishForm.scss +3 -0
  212. data/webpack/scenes/ContentViews/Table/ContentViewsTable.js +75 -48
  213. data/webpack/scenes/ContentViews/Table/tableDataGenerator.js +15 -2
  214. data/webpack/scenes/ContentViews/__tests__/contentViewPage.test.js +6 -10
  215. data/webpack/scenes/ContentViews/components/EnvironmentLabels.js +22 -10
  216. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathActions.js +12 -0
  217. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathConstants.js +2 -0
  218. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPathSelectors.js +16 -0
  219. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.js +72 -0
  220. data/webpack/scenes/ContentViews/components/EnvironmentPaths/EnvironmentPaths.scss +8 -0
  221. data/webpack/scenes/ContentViews/components/TaskPresenter/TaskPresenter.js +85 -0
  222. data/webpack/scenes/SmartProxy/SmartProxyContentTable.js +9 -8
  223. data/webpack/scenes/Subscriptions/SubscriptionsPage.js +4 -25
  224. data/webpack/scenes/Subscriptions/__tests__/SubscriptionsPage.test.js +0 -3
  225. data/webpack/scenes/Subscriptions/__tests__/__snapshots__/SubscriptionsPage.test.js.snap +3 -3
  226. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/SubscriptionsTableSchema.js +4 -2
  227. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/__tests__/__snapshots__/SubscriptionsTable.test.js.snap +24 -0
  228. data/webpack/scenes/Subscriptions/components/SubscriptionsTable/components/Table.js +4 -1
  229. data/webpack/scenes/Subscriptions/index.js +1 -4
  230. metadata +74 -39
  231. data/app/lib/actions/candlepin/environment/create.rb +0 -21
  232. data/app/lib/actions/foreman/environment/destroy.rb +0 -23
  233. data/app/lib/actions/katello/content_view/environment_create.rb +0 -21
  234. data/app/lib/actions/katello/repository/export.rb +0 -85
  235. data/app/lib/actions/katello/repository/purge_empty_content.rb +0 -16
  236. data/app/lib/actions/katello/repository/upload_errata.rb +0 -38
  237. data/app/lib/katello/util/proxy_uri.rb +0 -64
  238. data/app/models/katello/rhsm_fact_importer.rb +0 -20
  239. data/app/models/katello/rhsm_fact_name.rb +0 -17
  240. data/app/models/katello/rhsm_fact_parser.rb +0 -120
data/locale/pa/katello.po CHANGED
@@ -1,24 +1,24 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
2
  # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
- # This file is distributed under the same license as the katello package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
3
+ # This file is distributed under the same license as the PACKAGE package.
5
4
  #
6
5
  # Translators:
7
- # 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
8
- #
6
+ # Miroslav Suchy <msuchy@redhat.com>, 2012.
7
+ # A S Alam <aalam@fedoraproject.org>, 2013. #zanata
8
+ # jassy <jassy@fedoraproject.org>, 2013. #zanata
9
9
  msgid ""
10
10
  msgstr ""
11
- "Project-Id-Version: katello 2.4.0-RC1\n"
11
+ "Project-Id-Version: version 0.0.1\n"
12
12
  "Report-Msgid-Bugs-To: \n"
13
- "PO-Revision-Date: 2017-12-19 20:14+0000\n"
14
- "Last-Translator: 0868a4d1af5275b3f70b0a6dac4c99a4, 2021\n"
15
- "Language-Team: Panjabi (Punjabi) (https://www.transifex.com/foreman/teams/114/"
16
- "pa/)\n"
17
13
  "MIME-Version: 1.0\n"
18
14
  "Content-Type: text/plain; charset=UTF-8\n"
19
15
  "Content-Transfer-Encoding: 8bit\n"
16
+ "PO-Revision-Date: 2013-07-09 04:33-0400\n"
17
+ "Last-Translator: jassy <jassy@fedoraproject.org>\n"
18
+ "Language-Team: LANGUAGE <LL@li.org>\n"
20
19
  "Language: pa\n"
21
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
+ "X-Generator: Zanata 3.6.2\n"
22
22
 
23
23
  msgid ""
24
24
  "\n"
@@ -34,7 +34,7 @@ msgstr ""
34
34
  msgid " %{package_count} Package(s)"
35
35
  msgstr ""
36
36
 
37
- msgid " Content view updated."
37
+ msgid " Content view updated"
38
38
  msgstr ""
39
39
 
40
40
  msgid " Either select the latest content view or the content view version. Cannot set both."
@@ -43,17 +43,23 @@ msgstr ""
43
43
  msgid " RPMs"
44
44
  msgstr ""
45
45
 
46
- msgid " environment cannot be set to an environment already on its path"
46
+ msgid " View task details "
47
47
  msgstr ""
48
48
 
49
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
50
+ msgid " environment cannot be set to an environment already on its path"
51
+ msgstr "ਵਾਤਾਵਰਨ ਨੂੰ ਉਸ ਵਾਤਾਵਰਨ ਨਾਲ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ ਜੋ ਪਹਿਲਾਂ ਹੀ ਉਸਦੇ ਮਾਰਗ ਵਿੱਚ ਹੈ"
52
+
49
53
  msgid "%s %s has %s Hosts and %s Hostgroups that will need to be reassociated post deletion. Delete %s?"
50
54
  msgstr ""
51
55
 
52
56
  msgid "%s Available"
53
57
  msgstr ""
54
58
 
59
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
60
+ #, fuzzy
55
61
  msgid "%s Errata"
56
- msgstr ""
62
+ msgstr "ਇਰੱਟਾ"
57
63
 
58
64
  msgid "%s Host"
59
65
  msgid_plural "%s Hosts"
@@ -63,14 +69,16 @@ msgstr[1] ""
63
69
  msgid "%s Used"
64
70
  msgstr ""
65
71
 
72
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
66
73
  msgid "%s ago"
67
74
  msgstr "%s ਪਹਿਲਾਂ"
68
75
 
69
76
  msgid "%s has already been deleted"
70
77
  msgstr ""
71
78
 
79
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
72
80
  msgid "%s is not a valid package name"
73
- msgstr ""
81
+ msgstr "%s ਇੱਕ ਢੁੱਕਵਾਂi ਪੈਕੇਜ ਨਾਂ ਨਹੀਂ ਹੈ"
74
82
 
75
83
  msgid "%s is unreachable. %s"
76
84
  msgstr ""
@@ -78,179 +86,236 @@ msgstr ""
78
86
  msgid "%s must be an array."
79
87
  msgstr ""
80
88
 
89
+ #, fuzzy
81
90
  msgid "%{errata} (%{total} other errata)"
82
- msgstr ""
91
+ msgstr "%{errata} (%{rest} ਹੋਰ ਇਰੱਟਾ)"
83
92
 
93
+ #, fuzzy
84
94
  msgid "%{errata} (%{total} other errata) install canceled"
85
- msgstr ""
95
+ msgstr "%s (%s ਹੋਰ ਇਰੱਟਾ) ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
86
96
 
97
+ #, fuzzy
87
98
  msgid "%{errata} (%{total} other errata) install failed"
88
- msgstr ""
99
+ msgstr "%s (%s ਹੋਰ ਇਰੱਟਾ) ਇੰਸਟਾਲ ਫੇਲ ਹੋਇਆ ਹੈ"
89
100
 
101
+ #, fuzzy
90
102
  msgid "%{errata} (%{total} other errata) install timed out"
91
- msgstr ""
103
+ msgstr "%s (%s ਹੋਰ ਇਰੱਟਾ) ਇੰਸਟਾਲ ਸਮਾਂ ਖਤਮ"
92
104
 
105
+ #, fuzzy
93
106
  msgid "%{errata} (%{total} other errata) installed"
94
- msgstr ""
107
+ msgstr "%{errata} (%{rest} ਹੋਰ ਇਰੱਟਾ)"
95
108
 
109
+ #, fuzzy
96
110
  msgid "%{errata} erratum install canceled"
97
- msgstr ""
111
+ msgstr "%s ਇਰੱਟਮ ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
98
112
 
113
+ #, fuzzy
99
114
  msgid "%{errata} erratum install failed"
100
- msgstr ""
115
+ msgstr "%s ਇਰੱਟਮ ਇੰਸਟਾਲ ਫੇਲ ਹੋਇਆ ਹੈ"
101
116
 
117
+ #, fuzzy
102
118
  msgid "%{errata} erratum install timed out"
103
- msgstr ""
119
+ msgstr "%s ਇਰੱਟਮ ਇੰਸਟਾਲ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
104
120
 
121
+ #, fuzzy
105
122
  msgid "%{errata} erratum installed"
106
- msgstr ""
123
+ msgstr "%s ਇਰੱਟਮ ਇੰਸਟਾਲ ਹੋਇਆ"
107
124
 
108
125
  msgid "%{expiring_subs} subscriptions in %{subject} are going to expire in less than %{days} days. Please renew them before they expire to guarantee your hosts will continue receiving content."
109
126
  msgstr ""
110
127
 
128
+ #, fuzzy
111
129
  msgid "%{group} (%{total} other package groups)"
112
- msgstr ""
130
+ msgstr "%{group} (%{rest} ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ)"
113
131
 
132
+ #, fuzzy
114
133
  msgid "%{group} (%{total} other package groups) install canceled"
115
- msgstr ""
134
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ) ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
116
135
 
136
+ #, fuzzy
117
137
  msgid "%{group} (%{total} other package groups) install failed"
118
- msgstr ""
138
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ) ਇੰਸਟਾਲ ਫੇਲ ਹੋਇਆ"
119
139
 
140
+ #, fuzzy
120
141
  msgid "%{group} (%{total} other package groups) install timed out"
121
- msgstr ""
142
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ) ਇੰਸਟਾਲ ਸਮਾਂ ਖਤਮ ਹੋ ਗਿਆ"
122
143
 
144
+ #, fuzzy
123
145
  msgid "%{group} (%{total} other package groups) installed"
124
- msgstr ""
146
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ) ਇੰਸਟਾਲ ਹੋਏ"
125
147
 
148
+ #, fuzzy
126
149
  msgid "%{group} (%{total} other package groups) remove canceled"
127
- msgstr ""
150
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਰ) ਹਟਾਉਣਾ ਰੱਦ ਕੀਤਾ"
128
151
 
152
+ #, fuzzy
129
153
  msgid "%{group} (%{total} other package groups) remove failed"
130
- msgstr ""
154
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ) ਹਟਾਉਣਾ ਫੇਲ ਹੋਇਆ"
131
155
 
156
+ #, fuzzy
132
157
  msgid "%{group} (%{total} other package groups) remove timed out"
133
- msgstr ""
158
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ) ਹਟਾਉਣ ਦਾ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
134
159
 
160
+ #, fuzzy
135
161
  msgid "%{group} (%{total} other package groups) removed"
136
- msgstr ""
162
+ msgstr "%{group} (%{rest} ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ)"
137
163
 
164
+ #, fuzzy
138
165
  msgid "%{group} (%{total} other package groups) update canceled"
139
- msgstr ""
166
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਦ ਗਰੁੱਪ) ਅੱਪਡੇਟ ਰੱਦ ਕੀਤਾ"
140
167
 
168
+ #, fuzzy
141
169
  msgid "%{group} (%{total} other package groups) update failed"
142
- msgstr ""
170
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ) ਅੱਪਡੇਟ ਫੇਲ ਹੋਇਆ"
143
171
 
172
+ #, fuzzy
144
173
  msgid "%{group} (%{total} other package groups) update timed out"
145
- msgstr ""
174
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ) ਅੱਪਡੇਟ ਸਮਾਂ ਪੁੱਗ ਗਿਆ"
146
175
 
176
+ #, fuzzy
147
177
  msgid "%{group} (%{total} other package groups) updated"
148
- msgstr ""
178
+ msgstr "%{group} (%{rest} ਹੋਰ ਪੈਕੇਜ ਗਰੁੱਪ)"
149
179
 
180
+ #, fuzzy
150
181
  msgid "%{group} package group install canceled"
151
- msgstr ""
182
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
152
183
 
184
+ #, fuzzy
153
185
  msgid "%{group} package group install failed"
154
- msgstr ""
186
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਫੇਲ ਹੋਇਆ ਹੈ"
155
187
 
188
+ #, fuzzy
156
189
  msgid "%{group} package group install timed out"
157
- msgstr ""
190
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
158
191
 
192
+ #, fuzzy
159
193
  msgid "%{group} package group installed"
160
- msgstr ""
194
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਹੋਇਆ"
161
195
 
196
+ #, fuzzy
162
197
  msgid "%{group} package group remove canceled"
163
- msgstr ""
198
+ msgstr "%s ਪੈਕੇਜ ਗੁਰੁੱਪ ਹਟਾਉਣਾ ਰੱਦ ਕੀਤਾ"
164
199
 
200
+ #, fuzzy
165
201
  msgid "%{group} package group remove failed"
166
- msgstr ""
202
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾਉਣਾ ਫੇਲ ਹੋਇਆ ਹੈ"
167
203
 
204
+ #, fuzzy
168
205
  msgid "%{group} package group remove timed out"
169
- msgstr ""
206
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾਉਣ ਦਾ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
170
207
 
208
+ #, fuzzy
171
209
  msgid "%{group} package group removed"
172
- msgstr ""
210
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾਏ"
173
211
 
212
+ #, fuzzy
174
213
  msgid "%{group} package group update canceled"
175
- msgstr ""
214
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਰੱਦ ਕੀਤਾ"
176
215
 
216
+ #, fuzzy
177
217
  msgid "%{group} package group update failed"
178
- msgstr ""
218
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਫੇਲ ਹੋ ਗਿਆ ਹੈ"
179
219
 
220
+ #, fuzzy
180
221
  msgid "%{group} package group update timed out"
181
- msgstr ""
222
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
182
223
 
224
+ #, fuzzy
183
225
  msgid "%{group} package group updated"
184
- msgstr ""
226
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਹੋਏ"
185
227
 
228
+ #, fuzzy
186
229
  msgid "%{package} (%{total} other packages)"
187
- msgstr ""
230
+ msgstr "%{package} (%{rest} ਹੋਰ ਪੈਕੇਜ)"
188
231
 
232
+ #, fuzzy
189
233
  msgid "%{package} (%{total} other packages) install canceled"
190
- msgstr ""
234
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ) ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
191
235
 
236
+ #, fuzzy
192
237
  msgid "%{package} (%{total} other packages) install failed"
193
- msgstr ""
238
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ) ਇੰਸਟਾਲ ਫੇਲ ਹੋਇਆ"
194
239
 
240
+ #, fuzzy
195
241
  msgid "%{package} (%{total} other packages) install timed out"
196
- msgstr ""
242
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ) ਇੰਸਟਾਲ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
197
243
 
244
+ #, fuzzy
198
245
  msgid "%{package} (%{total} other packages) installed"
199
- msgstr ""
246
+ msgstr "%{package} (%{rest} ਹੋਰ ਪੈਕੇਜ)"
200
247
 
248
+ #, fuzzy
201
249
  msgid "%{package} (%{total} other packages) remove canceled"
202
- msgstr ""
250
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ) ਹਟਾਉਣਾ ਰੱਦ ਕੀਤਾ"
203
251
 
252
+ #, fuzzy
204
253
  msgid "%{package} (%{total} other packages) remove failed"
205
- msgstr ""
254
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ) ਹਟਾਉਣਾ ਫੇਲ ਹੋਇਆ ਹੈ"
206
255
 
256
+ #, fuzzy
207
257
  msgid "%{package} (%{total} other packages) remove timed out"
208
- msgstr ""
258
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ) ਹਟਾਉਣ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
209
259
 
260
+ #, fuzzy
210
261
  msgid "%{package} (%{total} other packages) removed"
211
- msgstr ""
262
+ msgstr "%{package} (%{rest} ਹੋਰ ਪੈਕੇਜ)"
212
263
 
264
+ #, fuzzy
213
265
  msgid "%{package} (%{total} other packages) update canceled"
214
- msgstr ""
266
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ) ਅੱਪਡੇਟ ਰੱਦ ਕੀਤਾ"
215
267
 
268
+ #, fuzzy
216
269
  msgid "%{package} (%{total} other packages) update failed"
217
- msgstr ""
270
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ) ਅੱਪਡੇਟ ਫੇਲ ਹੋਇਆ ਹੈ"
218
271
 
272
+ #, fuzzy
219
273
  msgid "%{package} (%{total} other packages) update timed out"
220
- msgstr ""
274
+ msgstr "%s (%s ਹੋਰ ਪੈਕੇਜ) ਅੱਪਡੇਟ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
221
275
 
276
+ #, fuzzy
222
277
  msgid "%{package} (%{total} other packages) updated"
223
- msgstr ""
278
+ msgstr "%{package} (%{rest} ਹੋਰ ਪੈਕੇਜ)"
224
279
 
280
+ #, fuzzy
225
281
  msgid "%{package} package install canceled"
226
- msgstr ""
282
+ msgstr "%s ਪੈਕੇਜ ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
227
283
 
284
+ #, fuzzy
228
285
  msgid "%{package} package install timed out"
229
- msgstr ""
286
+ msgstr "%s ਪੈਕੇਜ ਇੰਸਾਟਲ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
230
287
 
288
+ #, fuzzy
231
289
  msgid "%{package} package remove canceled"
232
- msgstr ""
290
+ msgstr "%s ਪੈਕੇਜ ਹਟਾਉਣਾ ਰੱਦ ਕੀਤਾ"
233
291
 
292
+ #, fuzzy
234
293
  msgid "%{package} package remove failed"
235
- msgstr ""
294
+ msgstr "%s ਪੈਕੇਜ ਹਟਾਉਣਾ ਫੇਲ ਹੋਇਆ"
236
295
 
296
+ #, fuzzy
237
297
  msgid "%{package} package remove timed out"
238
- msgstr ""
298
+ msgstr "%s ਪੈਕੇਜ ਹਟਾਉਣ ਦਾ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
239
299
 
300
+ #, fuzzy
240
301
  msgid "%{package} package removed"
241
- msgstr ""
302
+ msgstr "%s ਪੈਕੇਜ ਹਟਾਏ"
242
303
 
304
+ #, fuzzy
243
305
  msgid "%{package} package update canceled"
244
- msgstr ""
306
+ msgstr "%s ਪੈਕੇਜ ਅੱਪਡੇਟ ਰੱਦ ਕੀਤਾ"
245
307
 
308
+ #, fuzzy
246
309
  msgid "%{package} package update failed"
247
- msgstr ""
310
+ msgstr "%s ਪੈਕੇਜ ਅੱਪਡੇਟ ਫੇਲ ਹੋ ਗਿਆ ਹੈ"
248
311
 
312
+ #, fuzzy
249
313
  msgid "%{package} package update timed out"
250
- msgstr ""
314
+ msgstr "%s ਪੈਕੇਜ ਅੱਪਡੇਟ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
251
315
 
316
+ #, fuzzy
252
317
  msgid "%{package} package updated"
253
- msgstr ""
318
+ msgstr "%s ਪੈਕੇਜ ਅੱਪਡੇਟ ਹੋਏ"
254
319
 
255
320
  msgid "%{sla}"
256
321
  msgstr ""
@@ -276,8 +341,9 @@ msgstr ""
276
341
  msgid ", must be unique to major and version id version."
277
342
  msgstr ""
278
343
 
344
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
279
345
  msgid ": '%s' is a built-in environment"
280
- msgstr ""
346
+ msgstr ": '%s' ਇੱਕ ਬਿਲਟ-ਇਨ ਇਨਵਾਇਰਮੈਂਟ ਹੈ"
281
347
 
282
348
  msgid ":a_resource identifier"
283
349
  msgstr ""
@@ -300,8 +366,9 @@ msgstr ""
300
366
  msgid "A content view can be added by using the \"New content view\" button below."
301
367
  msgstr ""
302
368
 
369
+ #, fuzzy
303
370
  msgid "A content_type must be provided."
304
- msgstr ""
371
+ msgstr "ਇੱਕ ਬਟਨ-ਨਾਂ ਦੇਣਾ ਜਰੂਰੀ ਹੈ"
305
372
 
306
373
  msgid "A large number of errata are unapplied in this content view, so only the first 100 are shown."
307
374
  msgstr ""
@@ -312,6 +379,9 @@ msgstr ""
312
379
  msgid "A list of subscriptions expiring soon"
313
380
  msgstr ""
314
381
 
382
+ msgid "A new version of "
383
+ msgstr ""
384
+
315
385
  msgid "A post-promotion summary of hosts with installable errata"
316
386
  msgstr ""
317
387
 
@@ -321,7 +391,7 @@ msgstr ""
321
391
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
322
392
  msgstr ""
323
393
 
324
- msgid "A smart proxy seems to have been refreshed without pulpcore being running. You may want to "
394
+ msgid "A smart proxy seems to have been refreshed without pulpcore being running. Please refresh the smart proxy after ensuring that pulpcore services are running."
325
395
  msgstr ""
326
396
 
327
397
  msgid "A summary of available and applicable errata for your hosts"
@@ -343,7 +413,7 @@ msgid "Account Number"
343
413
  msgstr ""
344
414
 
345
415
  msgid "Action"
346
- msgstr "ਕਾਰਵਾਈ"
416
+ msgstr ""
347
417
 
348
418
  msgid "Action not allowed for the default smart proxy."
349
419
  msgstr ""
@@ -357,22 +427,24 @@ msgstr ""
357
427
  msgid "Action with sub plans"
358
428
  msgstr ""
359
429
 
430
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
360
431
  msgid "Activation Keys"
361
- msgstr ""
432
+ msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
362
433
 
363
434
  msgid "Activation key ID"
364
435
  msgstr ""
365
436
 
366
- msgid "Activation key for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Multiple keys add separated by comma, example: key1,key2,key3."
437
+ msgid "Activation key for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. For multiple keys use `activation_keys` param instead."
367
438
  msgstr ""
368
439
 
369
440
  msgid "Activation key(s) for Subscription Manager."
370
441
  msgstr ""
371
442
 
372
- msgid "Activation key(s) for subscription-manager client. Required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys"
373
- msgstr ""
374
-
443
+ #, fuzzy
375
444
  msgid "Activation keys and subscriptions can be managed"
445
+ msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀ '%s' ਬਣਾਈ ਗਈ ਹੈ।"
446
+
447
+ msgid "Activation keys for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys."
376
448
  msgstr ""
377
449
 
378
450
  msgid "Activation keys: "
@@ -381,7 +453,12 @@ msgstr ""
381
453
  msgid "Active Subscriptions"
382
454
  msgstr ""
383
455
 
456
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
457
+ #, fuzzy
384
458
  msgid "Active only"
459
+ msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
460
+
461
+ msgid "Add"
385
462
  msgstr ""
386
463
 
387
464
  msgid "Add Subscriptions"
@@ -390,6 +467,9 @@ msgstr ""
390
467
  msgid "Add a subscription to a host"
391
468
  msgstr ""
392
469
 
470
+ msgid "Add component"
471
+ msgstr ""
472
+
393
473
  msgid "Add components to the content view"
394
474
  msgstr ""
395
475
 
@@ -432,6 +512,9 @@ msgstr ""
432
512
  msgid "Added Content:"
433
513
  msgstr ""
434
514
 
515
+ msgid "Added component to content view"
516
+ msgstr ""
517
+
435
518
  msgid "Adding content units"
436
519
  msgstr ""
437
520
 
@@ -456,6 +539,12 @@ msgstr ""
456
539
  msgid "All errata applied"
457
540
  msgstr ""
458
541
 
542
+ msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
543
+ msgstr ""
544
+
545
+ msgid "Allow hosts to re-register themselves only when they are in build mode"
546
+ msgstr ""
547
+
459
548
  msgid "Allow new Host registrations to assume registered profiles with matching hostname as long as the registering DMI UUID is not used by another host."
460
549
  msgstr ""
461
550
 
@@ -465,6 +554,9 @@ msgstr ""
465
554
  msgid "Always Use Latest (currently %{version})"
466
555
  msgstr ""
467
556
 
557
+ msgid "Always update to latest version"
558
+ msgstr ""
559
+
468
560
  msgid "Amount of workers in the pool to handle the execution of host-related tasks. When set to 0, the default queue will be used instead. Restart of the dynflowd/foreman-tasks service is required."
469
561
  msgstr ""
470
562
 
@@ -574,17 +666,21 @@ msgstr ""
574
666
  msgid "At least one Content View Version must be specified"
575
667
  msgstr ""
576
668
 
669
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
577
670
  msgid "At least one activation key must be provided"
578
- msgstr ""
671
+ msgstr "ਘੱਟੋ-ਘੱਟ ਇੱਕ ਕੁੰਜੀ ਦੇਣੀ ਜਰੂਰੀ ਹੈ"
579
672
 
580
673
  msgid "At least one activation key must have a lifecycle environment and content view assigned to it"
581
674
  msgstr ""
582
675
 
676
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
583
677
  msgid "At least one organization must exist."
584
- msgstr ""
678
+ msgstr "ਘੱਟੋ-ਘੱਟ ਇੱਕ ਸੰਗਠਨ ਮੌਜੂਦ ਹੋਣਾ ਜਰੂਰੀ ਹੈ।"
585
679
 
680
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
681
+ #, fuzzy
586
682
  msgid "Attach a subscription"
587
- msgstr ""
683
+ msgstr "ਮੈਂਬਰੀ ਜੋੜੋ"
588
684
 
589
685
  msgid "Attach subscriptions"
590
686
  msgstr ""
@@ -595,8 +691,14 @@ msgstr ""
595
691
  msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
596
692
  msgstr ""
597
693
 
694
+ msgid "Auth URL requires Auth token be set."
695
+ msgstr ""
696
+
697
+ msgid "Auth token requires Auth URL be set."
698
+ msgstr ""
699
+
598
700
  msgid "Author"
599
- msgstr "ਲੇਖਕ"
701
+ msgstr ""
600
702
 
601
703
  msgid "Auto Publish"
602
704
  msgstr ""
@@ -604,8 +706,10 @@ msgstr ""
604
706
  msgid "Auto Publish - Triggered by '%s'"
605
707
  msgstr ""
606
708
 
709
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
710
+ #, fuzzy
607
711
  msgid "Auto attach subscriptions"
608
- msgstr ""
712
+ msgstr "ਮੈਂਬਰੀ ਜੋੜੋ"
609
713
 
610
714
  msgid "Autopublish"
611
715
  msgstr ""
@@ -655,11 +759,14 @@ msgstr ""
655
759
  msgid "Branches updated"
656
760
  msgstr ""
657
761
 
762
+ # translation auto-copied from project CFSE, version sam-1.2, document app
658
763
  msgid "Bug Fix"
659
- msgstr ""
764
+ msgstr "ਬੱਗ ਫਿਕਸ"
660
765
 
766
+ # translation auto-copied from project CFSE, version sam-1.2, document app
767
+ #, fuzzy
661
768
  msgid "Bugfix"
662
- msgstr ""
769
+ msgstr "ਬੱਗ ਫਿਕਸ"
663
770
 
664
771
  msgid "Bulk generate applicability for hosts"
665
772
  msgstr ""
@@ -667,14 +774,17 @@ msgstr ""
667
774
  msgid "CDN SSL version"
668
775
  msgstr ""
669
776
 
777
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
670
778
  msgid "CDN loading error: %s not found"
671
- msgstr ""
779
+ msgstr "CDN ਲੋਡਿੰਗ ਗਲਤੀ: %s ਨਹੀਂ ਲੱਭਿਆ"
672
780
 
781
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
673
782
  msgid "CDN loading error: access denied to %s"
674
- msgstr ""
783
+ msgstr "CDN ਲੋਡਿੰਗ ਗਲਤੀ: %s ਲਈ ਪਹੁੰਚ ਰੱਦ"
675
784
 
785
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
676
786
  msgid "CDN loading error: access forbidden to %s"
677
- msgstr ""
787
+ msgstr "CDN ਲੋਡਿੰਗ ਗਲਤੀ: %s ਦਾ ਅਕਸੈੱਸ ਨਹੀਂ ਹੈ"
678
788
 
679
789
  msgid "CVE identifier"
680
790
  msgstr ""
@@ -700,9 +810,11 @@ msgstr ""
700
810
  msgid "Can only upload to Yum Repositories."
701
811
  msgstr ""
702
812
 
813
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
703
814
  msgid "Can't update the '%s' environment"
704
- msgstr ""
815
+ msgstr "'%s' ਇਨਵਾਇਰਮੈਂਟ ਨੂੰ ਅੱਪਡੇਟ ਨਹੀਂ ਕਰ ਸਕਿਆ"
705
816
 
817
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
706
818
  msgid "Cancel"
707
819
  msgstr "ਰੱਦ ਕਰੋ"
708
820
 
@@ -712,17 +824,22 @@ msgstr ""
712
824
  msgid "Cancel running smart proxy synchronization"
713
825
  msgstr ""
714
826
 
827
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
828
+ #, fuzzy
715
829
  msgid "Canceled"
716
- msgstr ""
830
+ msgstr "ਰੱਦ ਕੀਤਾ"
717
831
 
718
832
  msgid "Cancelled"
719
833
  msgstr ""
720
834
 
835
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
836
+ #, fuzzy
721
837
  msgid "Cancelled."
722
- msgstr ""
838
+ msgstr "ਰੱਦ ਕੀਤਾ"
723
839
 
840
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
724
841
  msgid "Candlepin Event"
725
- msgstr ""
842
+ msgstr "Candlepin ਈਵੈਂਟ"
726
843
 
727
844
  msgid "Candlepin ID of pool to add"
728
845
  msgstr ""
@@ -763,14 +880,16 @@ msgstr ""
763
880
  msgid "Cannot clone into the Default Content View"
764
881
  msgstr ""
765
882
 
883
+ #, fuzzy
766
884
  msgid "Cannot delete '%{view}' due to associated %{dependent}: %{names}."
767
- msgstr ""
885
+ msgstr "ਚੇਂਜਸੈੱਟ '%s' ਨਹੀਂ ਹਟਾ ਸਕਦਾ ਕਿਉਂਕਿ ਇਹ ਰੀਵਿਊ ਫੇਜ਼ ਵਿੱਚ ਨਹੀਂ ਹੈ।"
768
886
 
769
887
  msgid "Cannot delete Red Hat product: %{product}"
770
888
  msgstr ""
771
889
 
890
+ #, fuzzy
772
891
  msgid "Cannot delete from %s, view does not exist there."
773
- msgstr ""
892
+ msgstr "ਟੈਂਪਲਿਟ ਨੂੰ ਸੋਧ ਨਹੀਂ ਸਕਦਾ ਜੋ ਹੋਰ ਵਾਤਾਵਰਨ ਹੈ"
774
893
 
775
894
  msgid "Cannot delete product with repositories published in a content view. Product: %{product}, %{view_versions}"
776
895
  msgstr ""
@@ -787,17 +906,20 @@ msgstr ""
787
906
  msgid "Cannot delete the last Location."
788
907
  msgstr ""
789
908
 
909
+ #, fuzzy
790
910
  msgid "Cannot delete version while it is in environment %s"
791
- msgstr ""
911
+ msgstr "ਟੈਂਪਲਿਟ ਨੂੰ ਸੋਧ ਨਹੀਂ ਸਕਦਾ ਜੋ ਹੋਰ ਵਾਤਾਵਰਨ ਹੈ"
792
912
 
913
+ #, fuzzy
793
914
  msgid "Cannot delete version while it is in environments: %s"
794
- msgstr ""
915
+ msgstr "ਟੈਂਪਲਿਟ ਨੂੰ ਸੋਧ ਨਹੀਂ ਸਕਦਾ ਜੋ ਹੋਰ ਵਾਤਾਵਰਨ ਹੈ"
795
916
 
796
917
  msgid "Cannot delete version while it is in use by composite content views: %s"
797
918
  msgstr ""
798
919
 
920
+ #, fuzzy
799
921
  msgid "Cannot delete view while it exists in environments"
800
- msgstr ""
922
+ msgstr "ਟੈਂਪਲਿਟ ਨੂੰ ਸੋਧ ਨਹੀਂ ਸਕਦਾ ਜੋ ਹੋਰ ਵਾਤਾਵਰਨ ਹੈ"
801
923
 
802
924
  msgid "Cannot import a composite content view"
803
925
  msgstr ""
@@ -823,8 +945,9 @@ msgstr ""
823
945
  msgid "Cannot publish default content view"
824
946
  msgstr ""
825
947
 
948
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
826
949
  msgid "Cannot register a system to the '%s' environment"
827
- msgstr ""
950
+ msgstr "ਸਿਸਟਮ ਨੂੰ '%s' ਇਨਵਾਇਰਮੈਂਟ ਵਿੱਚ ਰਜਿਸਟਰ ਨਹੀਂ ਕਰ ਸਕਿਆ"
828
951
 
829
952
  msgid "Cannot remove '%{view}' from environment '%{env}' due to associated %{dependent}: %{names}."
830
953
  msgstr ""
@@ -887,13 +1010,14 @@ msgid "Click here to go to the tasks page for the task."
887
1010
  msgstr ""
888
1011
 
889
1012
  msgid "Clone"
890
- msgstr "ਕਲੋਨ"
1013
+ msgstr ""
891
1014
 
892
1015
  msgid "Close"
893
- msgstr "ਬੰਦ"
1016
+ msgstr ""
894
1017
 
1018
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
895
1019
  msgid "Collapse All"
896
- msgstr ""
1020
+ msgstr "ਸਭ ਜੋੜੋ"
897
1021
 
898
1022
  msgid "Combined Profile Update"
899
1023
  msgstr ""
@@ -904,12 +1028,16 @@ msgstr ""
904
1028
  msgid "Comma-separated list of tags to sync for Container Image repository"
905
1029
  msgstr ""
906
1030
 
1031
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
907
1032
  msgid "Component"
908
- msgstr ""
1033
+ msgstr "ਕੰਪੋਨੈਂਟ"
909
1034
 
910
1035
  msgid "Component Content View"
911
1036
  msgstr ""
912
1037
 
1038
+ msgid "Component content view"
1039
+ msgstr ""
1040
+
913
1041
  msgid "Composite Content View"
914
1042
  msgstr ""
915
1043
 
@@ -931,6 +1059,9 @@ msgstr ""
931
1059
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
932
1060
  msgstr ""
933
1061
 
1062
+ msgid "Consisting of multiple component content views"
1063
+ msgstr ""
1064
+
934
1065
  msgid "Consumed"
935
1066
  msgstr ""
936
1067
 
@@ -955,8 +1086,9 @@ msgstr ""
955
1086
  msgid "Container image tag"
956
1087
  msgstr ""
957
1088
 
1089
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
958
1090
  msgid "Content"
959
- msgstr ""
1091
+ msgstr "ਸੰਖੇਪ"
960
1092
 
961
1093
  msgid "Content Credential ID"
962
1094
  msgstr ""
@@ -973,8 +1105,9 @@ msgstr ""
973
1105
  msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
974
1106
  msgstr ""
975
1107
 
1108
+ #, fuzzy
976
1109
  msgid "Content Hosts"
977
- msgstr ""
1110
+ msgstr "ਸੰਖੇਪ"
978
1111
 
979
1112
  msgid "Content Source"
980
1113
  msgstr ""
@@ -985,8 +1118,9 @@ msgstr ""
985
1118
  msgid "Content Types"
986
1119
  msgstr ""
987
1120
 
1121
+ #, fuzzy
988
1122
  msgid "Content View"
989
- msgstr ""
1123
+ msgstr "ਸੰਖੇਪ"
990
1124
 
991
1125
  msgid "Content View %{view}: Versions: %{versions}"
992
1126
  msgstr ""
@@ -1000,8 +1134,9 @@ msgstr ""
1000
1134
  msgid "Content View Details"
1001
1135
  msgstr ""
1002
1136
 
1137
+ #, fuzzy
1003
1138
  msgid "Content View Filter id"
1004
- msgstr ""
1139
+ msgstr "ਸੰਖੇਪ"
1005
1140
 
1006
1141
  msgid "Content View Filter identifier"
1007
1142
  msgstr ""
@@ -1030,8 +1165,9 @@ msgstr ""
1030
1165
  msgid "Content View id"
1031
1166
  msgstr ""
1032
1167
 
1168
+ #, fuzzy
1033
1169
  msgid "Content Views"
1034
- msgstr ""
1170
+ msgstr "ਸੰਖੇਪ"
1035
1171
 
1036
1172
  msgid "Content files to upload. Can be a single file or array of files."
1037
1173
  msgstr ""
@@ -1051,14 +1187,21 @@ msgstr ""
1051
1187
  msgid "Content type"
1052
1188
  msgstr ""
1053
1189
 
1190
+ msgid "Content type %{content_type_string} does not belong to an enabled repo type."
1191
+ msgstr ""
1192
+
1193
+ msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
1194
+ msgstr ""
1195
+
1054
1196
  msgid "Content view"
1055
1197
  msgstr ""
1056
1198
 
1057
1199
  msgid "Content view ${name} created"
1058
1200
  msgstr ""
1059
1201
 
1202
+ #, fuzzy
1060
1203
  msgid "Content view '%{view}' is not in environment '%{env}'"
1061
- msgstr ""
1204
+ msgstr "ਟੈਂਪਲਿਟ ਨੂੰ ਸੋਧ ਨਹੀਂ ਸਕਦਾ ਜੋ ਹੋਰ ਵਾਤਾਵਰਨ ਹੈ"
1062
1205
 
1063
1206
  msgid "Content view '%{view}' is not in lifecycle environment '%{env}'."
1064
1207
  msgstr ""
@@ -1105,17 +1248,23 @@ msgstr ""
1105
1248
  msgid "Contract Number"
1106
1249
  msgstr ""
1107
1250
 
1108
- msgid "Copy an activation key"
1251
+ msgid "Copy"
1109
1252
  msgstr ""
1110
1253
 
1254
+ #, fuzzy
1255
+ msgid "Copy an activation key"
1256
+ msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
1257
+
1111
1258
  msgid "Copy version units to library"
1112
1259
  msgstr ""
1113
1260
 
1261
+ #, fuzzy
1114
1262
  msgid "Cores: %s"
1115
- msgstr ""
1263
+ msgstr "ਕਾਰਨ: %s"
1116
1264
 
1265
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1117
1266
  msgid "Could not delete organization '%s'."
1118
- msgstr ""
1267
+ msgstr "ਸੰਗਠਨ '%s' ਨੂੰ ਹਟਾ ਨਹੀਂ ਸਕਿਆ।"
1119
1268
 
1120
1269
  msgid "Could not find %{content} with id '%{id}' in repository."
1121
1270
  msgstr ""
@@ -1156,14 +1305,16 @@ msgstr ""
1156
1305
  msgid "Couldn't find %{type} Filter with id %{id}"
1157
1306
  msgstr ""
1158
1307
 
1308
+ #, fuzzy
1159
1309
  msgid "Couldn't find ContentViewFilter with id=%s"
1160
- msgstr ""
1310
+ msgstr "id '%s' ਵਾਲਾ ਉਤਪਾਦ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1161
1311
 
1162
1312
  msgid "Couldn't find Organization '%s'."
1163
1313
  msgstr ""
1164
1314
 
1315
+ # translation auto-copied from project CFSE, version sam-1.2, document app
1165
1316
  msgid "Couldn't find activation key '%s'"
1166
- msgstr ""
1317
+ msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1167
1318
 
1168
1319
  msgid "Couldn't find activation key content view id '%s'"
1169
1320
  msgstr ""
@@ -1171,8 +1322,9 @@ msgstr ""
1171
1322
  msgid "Couldn't find activation key environment '%s'"
1172
1323
  msgstr ""
1173
1324
 
1325
+ #, fuzzy
1174
1326
  msgid "Couldn't find consumer '%s'"
1175
- msgstr ""
1327
+ msgstr "ਯੂਜ਼ਰ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1176
1328
 
1177
1329
  msgid "Couldn't find content host content view id '%s'"
1178
1330
  msgstr ""
@@ -1180,20 +1332,26 @@ msgstr ""
1180
1332
  msgid "Couldn't find content host environment '%s'"
1181
1333
  msgstr ""
1182
1334
 
1335
+ #, fuzzy
1183
1336
  msgid "Couldn't find content view '%s'"
1184
- msgstr ""
1337
+ msgstr "ਪਰੋਵਾਈਡਰ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1185
1338
 
1339
+ #, fuzzy
1186
1340
  msgid "Couldn't find content view version '%s'"
1187
- msgstr ""
1341
+ msgstr "ਪਰੋਵਾਈਡਰ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1188
1342
 
1343
+ #, fuzzy
1189
1344
  msgid "Couldn't find content view versions '%s'"
1190
- msgstr ""
1345
+ msgstr "ਪਰੋਵਾਈਡਰ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1191
1346
 
1347
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1192
1348
  msgid "Couldn't find environment '%s'"
1193
- msgstr ""
1349
+ msgstr "ਵਾਤਾਵਰਨ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1194
1350
 
1351
+ # translation auto-copied from project CFSE, version sam-1.2, document app
1352
+ #, fuzzy
1195
1353
  msgid "Couldn't find errata ids '%s'"
1196
- msgstr ""
1354
+ msgstr "ਸੰਗਠਨ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1197
1355
 
1198
1356
  msgid "Couldn't find host collection '%s'"
1199
1357
  msgstr ""
@@ -1201,29 +1359,35 @@ msgstr ""
1201
1359
  msgid "Couldn't find host with host id '%s'"
1202
1360
  msgstr ""
1203
1361
 
1362
+ # translation auto-copied from project CFSE, version sam-1.2, document app
1204
1363
  msgid "Couldn't find organization '%s'"
1205
- msgstr ""
1364
+ msgstr "ਸੰਗਠਨ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1206
1365
 
1366
+ #, fuzzy
1207
1367
  msgid "Couldn't find prior-environment '%s'"
1208
- msgstr ""
1368
+ msgstr "ਵਾਤਾਵਰਨ '%s' ਨਹੀਂ ਲੱਭਿਆ"
1209
1369
 
1370
+ # translation auto-copied from project CFSE, version sam-1.2, document app
1210
1371
  msgid "Couldn't find product with id '%s'"
1211
- msgstr ""
1372
+ msgstr "id '%s' ਵਾਲਾ ਉਤਪਾਦ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1212
1373
 
1374
+ # translation auto-copied from project CFSE, version sam-1.2, document app
1213
1375
  msgid "Couldn't find repository '%s'"
1214
- msgstr ""
1376
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1215
1377
 
1216
1378
  msgid "Couldn't find specified Content View and Lifecycle Environment."
1217
1379
  msgstr ""
1218
1380
 
1381
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1219
1382
  msgid "Couldn't find subject of synchronization"
1220
- msgstr ""
1383
+ msgstr "ਸਮਕਾਲਤਾ ਦਾ ਵਿਸ਼ਾ ਨਹੀਂ ਲੱਭ ਸਕਿਆ"
1221
1384
 
1222
1385
  msgid "Count"
1223
1386
  msgstr ""
1224
1387
 
1388
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1225
1389
  msgid "Create"
1226
- msgstr ""
1390
+ msgstr "ਬਣਾਓ"
1227
1391
 
1228
1392
  msgid "Create Export History"
1229
1393
  msgstr ""
@@ -1273,6 +1437,12 @@ msgstr ""
1273
1437
  msgid "Create an upload request"
1274
1438
  msgstr ""
1275
1439
 
1440
+ msgid "Create content view"
1441
+ msgstr ""
1442
+
1443
+ msgid "Create filter"
1444
+ msgstr ""
1445
+
1276
1446
  msgid "Create organization"
1277
1447
  msgstr ""
1278
1448
 
@@ -1291,14 +1461,16 @@ msgstr ""
1291
1461
  msgid "Current organization not set."
1292
1462
  msgstr ""
1293
1463
 
1464
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1294
1465
  msgid "Custom Content Repositories"
1295
- msgstr ""
1466
+ msgstr "ਮਨਪਸੰਦ ਸੰਖੇਪ ਪਰੋਵਾਈਡਰ"
1296
1467
 
1297
1468
  msgid "Custom cron expression only needs to be set for interval value of custom cron"
1298
1469
  msgstr ""
1299
1470
 
1471
+ #, fuzzy
1300
1472
  msgid "Custom repositories cannot be disabled."
1301
- msgstr ""
1473
+ msgstr "ਅਣਜਾਣ ਰਿਪੋਜ਼ਟਰੀ ਲੈਵਲ: %s"
1302
1474
 
1303
1475
  msgid "Database connection"
1304
1476
  msgstr ""
@@ -1306,8 +1478,9 @@ msgstr ""
1306
1478
  msgid "Date"
1307
1479
  msgstr ""
1308
1480
 
1481
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1309
1482
  msgid "Date format is incorrect."
1310
- msgstr ""
1483
+ msgstr "ਮਿਤੀ ਫਾਰਮੈਟ ਗਲਤ ਹੈ"
1311
1484
 
1312
1485
  msgid "Days Remaining"
1313
1486
  msgstr ""
@@ -1321,8 +1494,9 @@ msgstr ""
1321
1494
  msgid "Deb Packages"
1322
1495
  msgstr ""
1323
1496
 
1497
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1324
1498
  msgid "Debug Certificate"
1325
- msgstr ""
1499
+ msgstr "ਡੀਬੱਗ ਸਾਰਟੀਫਿਕੇਟ"
1326
1500
 
1327
1501
  msgid "Debug RPM"
1328
1502
  msgstr ""
@@ -1357,8 +1531,9 @@ msgstr ""
1357
1531
  msgid "Default Smart Proxy download policy"
1358
1532
  msgstr ""
1359
1533
 
1534
+ #, fuzzy
1360
1535
  msgid "Default System SLA"
1361
- msgstr ""
1536
+ msgstr "ਸਿਸਟਮ ਗਰੁੱਪ ਹਟਾਓ"
1362
1537
 
1363
1538
  msgid "Default content view versions cannot be promoted"
1364
1539
  msgstr ""
@@ -1423,6 +1598,7 @@ msgstr ""
1423
1598
  msgid "Default user data for new Operating Systems created from synced content"
1424
1599
  msgstr ""
1425
1600
 
1601
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
1426
1602
  msgid "Delete"
1427
1603
  msgstr "ਹਟਾਓ"
1428
1604
 
@@ -1432,11 +1608,13 @@ msgstr ""
1432
1608
  msgid "Delete Host upon unregister"
1433
1609
  msgstr ""
1434
1610
 
1611
+ #, fuzzy
1435
1612
  msgid "Delete Lifecycle Environment"
1436
- msgstr ""
1613
+ msgstr "ਇਨਵਾਇਰਮੈਂਟ ਦੁਆਰਾ"
1437
1614
 
1615
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1438
1616
  msgid "Delete Manifest"
1439
- msgstr ""
1617
+ msgstr "ਮੈਨੀਫੈਸਟ ਹਟਾਓ"
1440
1618
 
1441
1619
  msgid "Delete Package Group"
1442
1620
  msgstr ""
@@ -1471,9 +1649,13 @@ msgstr ""
1471
1649
  msgid "Delete manifest from Red Hat provider"
1472
1650
  msgstr ""
1473
1651
 
1474
- msgid "Deleted consumer '%s'"
1652
+ msgid "Delete multiple filters from a content view"
1475
1653
  msgstr ""
1476
1654
 
1655
+ #, fuzzy
1656
+ msgid "Deleted consumer '%s'"
1657
+ msgstr "ਹਟਾਇਆ ਯੂਜ਼ਰ '%s'"
1658
+
1477
1659
  msgid "Deleted from %{environment}"
1478
1660
  msgstr ""
1479
1661
 
@@ -1481,7 +1663,7 @@ msgid "Deleting manifest in '%{subject}' failed."
1481
1663
  msgstr ""
1482
1664
 
1483
1665
  msgid "Description"
1484
- msgstr "ਵਰਣਨ"
1666
+ msgstr ""
1485
1667
 
1486
1668
  msgid "Description for the content view"
1487
1669
  msgstr ""
@@ -1502,7 +1684,7 @@ msgid "Destination Server name"
1502
1684
  msgstr ""
1503
1685
 
1504
1686
  msgid "Destroy"
1505
- msgstr "ਨਸ਼ਟ"
1687
+ msgstr ""
1506
1688
 
1507
1689
  msgid "Destroy Content Host"
1508
1690
  msgstr ""
@@ -1544,7 +1726,10 @@ msgid "Destroy one or more repositories"
1544
1726
  msgstr ""
1545
1727
 
1546
1728
  msgid "Details"
1547
- msgstr "ਵੇਰਵਾ"
1729
+ msgstr ""
1730
+
1731
+ msgid "Determining settings for ${name}"
1732
+ msgstr ""
1548
1733
 
1549
1734
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1550
1735
  msgstr ""
@@ -1600,14 +1785,15 @@ msgstr ""
1600
1785
  msgid "Duplicate branches specified - %{branches}"
1601
1786
  msgstr ""
1602
1787
 
1788
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
1603
1789
  msgid "Duration"
1604
- msgstr ""
1790
+ msgstr "ਅੰਤਰਾਲ"
1605
1791
 
1606
1792
  msgid "ERRATA ADVISORY"
1607
1793
  msgstr ""
1608
1794
 
1609
1795
  msgid "Edit"
1610
- msgstr "ਸੋਧ"
1796
+ msgstr ""
1611
1797
 
1612
1798
  msgid "Editing Entitlements"
1613
1799
  msgstr ""
@@ -1615,11 +1801,13 @@ msgstr ""
1615
1801
  msgid "Either both parameters 'content_view_id' and 'environment_id' should be specified or neither should be specified"
1616
1802
  msgstr ""
1617
1803
 
1804
+ #, fuzzy
1618
1805
  msgid "Either environments or versions must be specified."
1619
- msgstr ""
1806
+ msgstr "ਸੰਗਠਨ ID ਜਾਂ ਇਨਵਾਇਰਨਮੈਂਟ ID ਦੇਣ ਦੀ ਲੋੜ ਹੈ"
1620
1807
 
1808
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1621
1809
  msgid "Either organization ID or environment ID needs to be specified"
1622
- msgstr ""
1810
+ msgstr "ਸੰਗਠਨ ID ਜਾਂ ਇਨਵਾਇਰਨਮੈਂਟ ID ਦੇਣ ਦੀ ਲੋੜ ਹੈ"
1623
1811
 
1624
1812
  msgid "Either packages or groups must be provided"
1625
1813
  msgstr ""
@@ -1646,7 +1834,7 @@ msgid "Enable/Disable auto publish of composite view"
1646
1834
  msgstr ""
1647
1835
 
1648
1836
  msgid "Enabled"
1649
- msgstr "ਯੋਗ ਕੀਤਾ"
1837
+ msgstr ""
1650
1838
 
1651
1839
  msgid "Enabled Repositories"
1652
1840
  msgstr ""
@@ -1660,44 +1848,53 @@ msgstr ""
1660
1848
  msgid "Ends"
1661
1849
  msgstr ""
1662
1850
 
1851
+ # translation auto-copied from project CFSE, version sam-1.2, document app
1663
1852
  msgid "Enhancement"
1664
- msgstr ""
1853
+ msgstr "ਸੁਧਾਰ"
1665
1854
 
1666
1855
  msgid "Entitlements"
1667
1856
  msgstr ""
1668
1857
 
1669
1858
  msgid "Environment"
1670
- msgstr "ਇਨਵਾਇਰਮੈਂਟ"
1859
+ msgstr "ਵਾਤਾਵਰਨ"
1671
1860
 
1672
1861
  msgid "Environment IDs"
1673
1862
  msgstr ""
1674
1863
 
1864
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1675
1865
  msgid "Environment cannot be in its own promotion path"
1676
- msgstr ""
1866
+ msgstr "ਵਾਤਾਵਰਨ ਆਪਣੇ ਪਰਮੋਸ਼ਨ ਮਾਰਗ ਵਿੱਚ ਨਹੀਂ ਹੋ ਸਕਦਾ"
1677
1867
 
1678
1868
  msgid "Environment identifier"
1679
1869
  msgstr ""
1680
1870
 
1681
1871
  msgid "Environments"
1682
- msgstr "ਇਨਵਾਇਰਮੈਂਟ"
1872
+ msgstr ""
1683
1873
 
1874
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
1684
1875
  msgid "Errata"
1685
- msgstr ""
1876
+ msgstr "ਇਰੱਟਾ"
1686
1877
 
1878
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
1879
+ #, fuzzy
1687
1880
  msgid "Errata ID"
1688
- msgstr ""
1881
+ msgstr "ਇਰੱਟਾ"
1689
1882
 
1883
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1690
1884
  msgid "Errata Install"
1691
- msgstr ""
1885
+ msgstr "ਇਰੱਟਾ ਇੰਸਟਾਲ"
1692
1886
 
1887
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1693
1888
  msgid "Errata Install scheduled by %s"
1694
- msgstr ""
1889
+ msgstr "ਇਰੱਟਾ ਇੰਸਟਾਲ %s ਦੁਆਰਾ ਤਹਿ ਕੀਤਾ ਗਿਆ ਹੈ"
1695
1890
 
1696
1891
  msgid "Errata id of the erratum (RHSA-2012:108)"
1697
1892
  msgstr ""
1698
1893
 
1894
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1895
+ #, fuzzy
1699
1896
  msgid "Errata mail"
1700
- msgstr ""
1897
+ msgstr "ਇਰੱਟਾ ਇੰਸਟਾਲ"
1701
1898
 
1702
1899
  msgid "Errata to exclusively include in the action"
1703
1900
  msgstr ""
@@ -1705,21 +1902,28 @@ msgstr ""
1705
1902
  msgid "Errata to explicitly exclude in the action. All other applicable errata will be included in the action, unless an included parameter is passed as well."
1706
1903
  msgstr ""
1707
1904
 
1905
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
1906
+ #, fuzzy
1708
1907
  msgid "Erratum"
1709
- msgstr ""
1908
+ msgstr "ਇਰੱਟਾ"
1710
1909
 
1910
+ # translation auto-copied from project CFSE, version sam-1.2, document app
1711
1911
  msgid "Erratum Install Canceled"
1712
- msgstr ""
1912
+ msgstr "ਇਰੱਟਮ ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
1713
1913
 
1914
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1714
1915
  msgid "Erratum Install Complete"
1715
- msgstr ""
1916
+ msgstr "ਇਰੱਟਾ ਇੰਸਟਾਲ ਮੁਕੰਮਲ"
1716
1917
 
1918
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1717
1919
  msgid "Erratum Install Failed"
1718
- msgstr ""
1920
+ msgstr "ਇਰੱਟਮ ਇੰਸਟਾਲ ਫੇਲ ਹੋਇਆ ਹੈ"
1719
1921
 
1922
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1720
1923
  msgid "Erratum Install Timed Out"
1721
- msgstr ""
1924
+ msgstr "ਇਰੱਟਮ ਇੰਸਟਾਲ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
1722
1925
 
1926
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
1723
1927
  msgid "Error"
1724
1928
  msgstr "ਗਲਤੀ"
1725
1929
 
@@ -1747,8 +1951,9 @@ msgstr ""
1747
1951
  msgid "Exit"
1748
1952
  msgstr ""
1749
1953
 
1954
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
1750
1955
  msgid "Expand All"
1751
- msgstr ""
1956
+ msgstr "ਸਭ ਫੈਲਾਓ"
1752
1957
 
1753
1958
  msgid "Expire soon days"
1754
1959
  msgstr ""
@@ -1765,24 +1970,20 @@ msgstr ""
1765
1970
  msgid "Export Types"
1766
1971
  msgstr ""
1767
1972
 
1768
- msgid "Export a repository"
1769
- msgstr ""
1770
-
1771
1973
  msgid "Export as CSV"
1772
1974
  msgstr ""
1773
1975
 
1774
1976
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1775
1977
  msgstr ""
1776
1978
 
1777
- msgid "Export to ISO format"
1778
- msgstr ""
1779
-
1780
1979
  msgid "Exported version"
1781
1980
  msgstr ""
1782
1981
 
1982
+ #, fuzzy
1783
1983
  msgid "Facts successfully updated."
1784
- msgstr ""
1984
+ msgstr "ਸਫਲਤਾਪੂਰਕ ਬਣ ਗਿਆ।"
1785
1985
 
1986
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
1786
1987
  msgid "Failed"
1787
1988
  msgstr "ਫੇਲ ਹੋਇਆ ਹੈ"
1788
1989
 
@@ -1842,6 +2043,9 @@ msgstr ""
1842
2043
  msgid "Filter composite versions whose publish was triggered by the specified component version"
1843
2044
  msgstr ""
1844
2045
 
2046
+ msgid "Filter created"
2047
+ msgstr ""
2048
+
1845
2049
  msgid "Filter only composite content views"
1846
2050
  msgstr ""
1847
2051
 
@@ -1866,6 +2070,9 @@ msgstr ""
1866
2070
  msgid "Filter products by sync plan id"
1867
2071
  msgstr ""
1868
2072
 
2073
+ msgid "Filter successfully deleted"
2074
+ msgstr ""
2075
+
1869
2076
  msgid "Filter versions by environment"
1870
2077
  msgstr ""
1871
2078
 
@@ -1879,7 +2086,10 @@ msgid "Filtered index content"
1879
2086
  msgstr ""
1880
2087
 
1881
2088
  msgid "Filters"
1882
- msgstr "ਫਿਲਟਰ"
2089
+ msgstr ""
2090
+
2091
+ msgid "Filters successfully deleted"
2092
+ msgstr ""
1883
2093
 
1884
2094
  msgid "Finish action timeout"
1885
2095
  msgstr ""
@@ -1977,11 +2187,12 @@ msgid "Has to be > 0"
1977
2187
  msgstr ""
1978
2188
 
1979
2189
  msgid "History"
1980
- msgstr "ਅਤੀਤ"
2190
+ msgstr ""
1981
2191
 
1982
2192
  msgid "History will appear here when the content view is published or promoted."
1983
2193
  msgstr ""
1984
2194
 
2195
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
1985
2196
  msgid "Host"
1986
2197
  msgstr "ਹੋਸਟ"
1987
2198
 
@@ -1994,6 +2205,9 @@ msgstr ""
1994
2205
  msgid "Host '%{name}' does not belong to an organization"
1995
2206
  msgstr ""
1996
2207
 
2208
+ msgid "Host Can Re-Register Only In Build"
2209
+ msgstr ""
2210
+
1997
2211
  msgid "Host Collection name"
1998
2212
  msgstr ""
1999
2213
 
@@ -2012,6 +2226,9 @@ msgstr ""
2012
2226
  msgid "Host Profile Assume"
2013
2227
  msgstr ""
2014
2228
 
2229
+ msgid "Host Profile Can Change In Build"
2230
+ msgstr ""
2231
+
2015
2232
  msgid "Host Subscription Status"
2016
2233
  msgstr ""
2017
2234
 
@@ -2054,7 +2271,7 @@ msgstr ""
2054
2271
  msgid "Host id to list applicable packages for"
2055
2272
  msgstr ""
2056
2273
 
2057
- msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2274
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
2058
2275
  msgstr ""
2059
2276
 
2060
2277
  msgid "Host with ID %s already exists in the host collection."
@@ -2141,11 +2358,9 @@ msgstr ""
2141
2358
  msgid "ID of the sync plan"
2142
2359
  msgstr ""
2143
2360
 
2361
+ # translation auto-copied from project CFSE, version sam-1.2, document app
2144
2362
  msgid "ID: %s doesn't exist "
2145
- msgstr ""
2146
-
2147
- msgid "ISO export must be enabled when specifying ISO size"
2148
- msgstr ""
2363
+ msgstr "ID: %s ਮੌਜੂਦ ਨਹੀਂ"
2149
2364
 
2150
2365
  msgid "Id of a deb package to find repositories that contain the deb"
2151
2366
  msgstr ""
@@ -2268,7 +2483,7 @@ msgid "Immediate"
2268
2483
  msgstr ""
2269
2484
 
2270
2485
  msgid "Import"
2271
- msgstr "ਇੰਪੋਰਟ"
2486
+ msgstr ""
2272
2487
 
2273
2488
  msgid "Import Content View Version"
2274
2489
  msgstr ""
@@ -2276,8 +2491,9 @@ msgstr ""
2276
2491
  msgid "Import Default Content View"
2277
2492
  msgstr ""
2278
2493
 
2494
+ #, fuzzy
2279
2495
  msgid "Import Manifest"
2280
- msgstr ""
2496
+ msgstr "ਇੰਪੋਰਟ"
2281
2497
 
2282
2498
  msgid "Import New Manifest"
2283
2499
  msgstr ""
@@ -2309,8 +2525,9 @@ msgstr ""
2309
2525
  msgid "Import a content view version to the library"
2310
2526
  msgstr ""
2311
2527
 
2528
+ #, fuzzy
2312
2529
  msgid "Import facts"
2313
- msgstr ""
2530
+ msgstr "ਇੰਪੋਰਟ"
2314
2531
 
2315
2532
  msgid "Import uploads into a repository"
2316
2533
  msgstr ""
@@ -2327,6 +2544,9 @@ msgstr ""
2327
2544
  msgid "In Progress"
2328
2545
  msgstr ""
2329
2546
 
2547
+ msgid "In progress"
2548
+ msgstr ""
2549
+
2330
2550
  msgid "Include"
2331
2551
  msgstr ""
2332
2552
 
@@ -2360,8 +2580,9 @@ msgstr ""
2360
2580
  msgid "Index content"
2361
2581
  msgstr ""
2362
2582
 
2583
+ #, fuzzy
2363
2584
  msgid "Index errata"
2364
- msgstr ""
2585
+ msgstr "ਇਰੱਟਮ ਇੰਸਟਾਲ ਕਰ ਰਿਹਾ ਹੈ..."
2365
2586
 
2366
2587
  msgid "Index module streams"
2367
2588
  msgstr ""
@@ -2390,20 +2611,23 @@ msgstr ""
2390
2611
  msgid "Install errata via Katello interface"
2391
2612
  msgstr ""
2392
2613
 
2614
+ #, fuzzy
2393
2615
  msgid "Install erratum"
2394
- msgstr ""
2616
+ msgstr "ਇਰੱਟਮ ਇੰਸਟਾਲ ਕਰ ਰਿਹਾ ਹੈ..."
2395
2617
 
2396
2618
  msgid "Install erratum for %s"
2397
2619
  msgstr ""
2398
2620
 
2621
+ #, fuzzy
2399
2622
  msgid "Install package"
2400
- msgstr ""
2623
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਿਹਾ ਹੈ..."
2401
2624
 
2402
2625
  msgid "Install package for %s"
2403
2626
  msgstr ""
2404
2627
 
2628
+ #, fuzzy
2405
2629
  msgid "Install package group"
2406
- msgstr ""
2630
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਹੋ ਰਿਹਾ ਹੈ..."
2407
2631
 
2408
2632
  msgid "Install package group via Katello interface"
2409
2633
  msgstr ""
@@ -2426,17 +2650,21 @@ msgstr ""
2426
2650
  msgid "Installation of package(s) requested: %{packages}"
2427
2651
  msgstr ""
2428
2652
 
2653
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
2429
2654
  msgid "Installed Packages"
2430
- msgstr ""
2655
+ msgstr "ਇੰਸਟਾਲ ਕੀਤੇ ਪੈਕੇਜ"
2431
2656
 
2657
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
2432
2658
  msgid "Installing Erratum..."
2433
- msgstr ""
2659
+ msgstr "ਇਰੱਟਮ ਇੰਸਟਾਲ ਕਰ ਰਿਹਾ ਹੈ..."
2434
2660
 
2661
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
2435
2662
  msgid "Installing Package Group..."
2436
- msgstr ""
2663
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਹੋ ਰਿਹਾ ਹੈ..."
2437
2664
 
2665
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
2438
2666
  msgid "Installing Package..."
2439
- msgstr ""
2667
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਿਹਾ ਹੈ..."
2440
2668
 
2441
2669
  msgid "Instance update"
2442
2670
  msgstr ""
@@ -2462,18 +2690,17 @@ msgstr ""
2462
2690
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
2463
2691
  msgstr ""
2464
2692
 
2693
+ #, fuzzy
2465
2694
  msgid "Invalid content label: %s"
2466
- msgstr ""
2695
+ msgstr "ਗਲਤ ਸਟੇਟ"
2467
2696
 
2697
+ #, fuzzy
2468
2698
  msgid "Invalid content type %s"
2469
- msgstr ""
2699
+ msgstr "ਗਲਤ ਸਟੇਟ"
2470
2700
 
2471
2701
  msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
2472
2702
  msgstr ""
2473
2703
 
2474
- msgid "Invalid date provided."
2475
- msgstr ""
2476
-
2477
2704
  msgid "Invalid date range. The erratum filter rule start date must come before the end date"
2478
2705
  msgstr ""
2479
2706
 
@@ -2483,8 +2710,9 @@ msgstr ""
2483
2710
  msgid "Invalid erratum filter rule specified, Must specify at least one of the following: 'errata_id', 'start_date', 'end_date' or 'types'"
2484
2711
  msgstr ""
2485
2712
 
2713
+ #, fuzzy
2486
2714
  msgid "Invalid erratum types %{invalid_types} provided. Erratum type can be any of %{valid_types}"
2487
- msgstr ""
2715
+ msgstr "ਗਲਤ ਸੋਰਤ ਕਿਸਮ '%{resource_type}'। ਸਰੋਤ ਕਿਸਮ '%{possible_types}' ਵਿੱਚੋਂ ਕੋਈ ਇੱਕ ਹੋ ਸਕਦੀ ਹੈ"
2488
2716
 
2489
2717
  msgid "Invalid event_type %s"
2490
2718
  msgstr ""
@@ -2492,11 +2720,13 @@ msgstr ""
2492
2720
  msgid "Invalid filter rule specified, 'version' cannot be specified in the same tuple as 'min_version' or 'max_version'"
2493
2721
  msgstr ""
2494
2722
 
2723
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
2495
2724
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2496
- msgstr ""
2725
+ msgstr "ਇਸ ਕਾਰਵਾਈ ਲਈ ਬੇਨਤੀ ਵਿੱਚ ਗਲਤ ਪੈਰਾਮੀਟਰ ਦਿੱਤੇ ਹਨ। ਕਿਰਪਾ ਕਰਕੇ ਸਿਸਟਮ ਪਰਬੰਧਕ ਨਾਲ ਸੰਪਰਕ ਕਰੋ।"
2497
2726
 
2727
+ # translation auto-copied from project CFSE, version sam-1.2, document app
2498
2728
  msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
2499
- msgstr ""
2729
+ msgstr "ਗਲਤ ਪੈਰਾਮੀਟਰ ਭੇਜੇ ਹਨ। ਤੁਸੀਂ ਐਡਰੈੱਸ ਗਲਤ ਟਾਈਪ ਕੀਤਾ ਹੋ ਸਕਦਾ। ਜੇ ਤੁਸੀਂ ਇਸ ਨਾਲ ਸਮੱਸਿਆ ਵੇਖਦੇ ਹੋ, ਤਾਂ ਪਰਬੰਧਕ ਨਾਲ ਸੰਪਰਕ ਕਰੋ।"
2500
2730
 
2501
2731
  msgid "Invalid params provided - content_type must be one of %s"
2502
2732
  msgstr ""
@@ -2582,8 +2812,9 @@ msgstr ""
2582
2812
  msgid "Learn more about adding Subscription Manifests"
2583
2813
  msgstr ""
2584
2814
 
2815
+ #, fuzzy
2585
2816
  msgid "Library lifecycle environments may not be deleted."
2586
- msgstr ""
2817
+ msgstr "ਇਨਵਾਇਰਮੈਂਟ '%s' ਹਟਾਇਆ ਗਿਆ ਹੈ।"
2587
2818
 
2588
2819
  msgid "Library repository id to restrict comparisons to"
2589
2820
  msgstr ""
@@ -2603,8 +2834,9 @@ msgstr ""
2603
2834
  msgid "Lifecycle Environment ID"
2604
2835
  msgstr ""
2605
2836
 
2837
+ #, fuzzy
2606
2838
  msgid "Lifecycle Environments"
2607
- msgstr ""
2839
+ msgstr "ਇਨਵਾਇਰਮੈਂਟ ਦੁਆਰਾ"
2608
2840
 
2609
2841
  msgid "Lifecycle environment"
2610
2842
  msgstr ""
@@ -2714,7 +2946,7 @@ msgstr ""
2714
2946
  msgid "List of Errata ids"
2715
2947
  msgstr ""
2716
2948
 
2717
- msgid "List of Errata ids to install. Will be removed in Katello 4.1."
2949
+ msgid "List of Errata ids to install. Will be removed in %s"
2718
2950
  msgstr ""
2719
2951
 
2720
2952
  msgid "List of Products for sync plan"
@@ -2723,7 +2955,7 @@ msgstr ""
2723
2955
  msgid "List of component content view version ids for composite views"
2724
2956
  msgstr ""
2725
2957
 
2726
- msgid "List of content (e.g. package names, package group names or errata ids)"
2958
+ msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
2727
2959
  msgstr ""
2728
2960
 
2729
2961
  msgid "List of content (e.g. package or package group names)"
@@ -2771,7 +3003,7 @@ msgstr ""
2771
3003
  msgid "List of hypervisor guest uuids"
2772
3004
  msgstr ""
2773
3005
 
2774
- msgid "List of package group names"
3006
+ msgid "List of package group names (Deprecated)"
2775
3007
  msgstr ""
2776
3008
 
2777
3009
  msgid "List of package names"
@@ -2856,7 +3088,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
2856
3088
  msgstr ""
2857
3089
 
2858
3090
  msgid "Loading"
2859
- msgstr "ਲੋਡ ਹੋ ਰਿਹਾ ਹੈ"
3091
+ msgstr ""
2860
3092
 
2861
3093
  msgid "Make copy of a content view"
2862
3094
  msgstr ""
@@ -2930,6 +3162,7 @@ msgstr ""
2930
3162
  msgid "Medium IDs"
2931
3163
  msgstr ""
2932
3164
 
3165
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
2933
3166
  msgid "Message"
2934
3167
  msgstr "ਸੁਨੇਹਾ"
2935
3168
 
@@ -2942,6 +3175,9 @@ msgstr ""
2942
3175
  msgid "Mismatched"
2943
3176
  msgstr ""
2944
3177
 
3178
+ msgid "Missing activation key!"
3179
+ msgstr ""
3180
+
2945
3181
  msgid "Missing arguments %{substitutions} for %{content_url}"
2946
3182
  msgstr ""
2947
3183
 
@@ -3012,11 +3248,15 @@ msgstr ""
3012
3248
  msgid "Nest"
3013
3249
  msgstr ""
3014
3250
 
3251
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3252
+ #, fuzzy
3015
3253
  msgid "Never Synced"
3016
- msgstr ""
3254
+ msgstr "ਕਦੇ ਦਾਖਲਾ ਨਹੀਂ ਕੀਤਾ"
3017
3255
 
3256
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3257
+ #, fuzzy
3018
3258
  msgid "New Errata"
3019
- msgstr ""
3259
+ msgstr "ਇਰੱਟਾ ਖੋਜੋ"
3020
3260
 
3021
3261
  msgid "New Files: %s"
3022
3262
  msgstr ""
@@ -3030,8 +3270,9 @@ msgstr ""
3030
3270
  msgid "New host collection name"
3031
3271
  msgstr ""
3032
3272
 
3273
+ #, fuzzy
3033
3274
  msgid "New name cannot be blank"
3034
- msgstr ""
3275
+ msgstr "ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ"
3035
3276
 
3036
3277
  msgid "New name for the content view"
3037
3278
  msgstr ""
@@ -3042,6 +3283,9 @@ msgstr ""
3042
3283
  msgid "New version is available: Version ${latestVersion}"
3043
3284
  msgstr ""
3044
3285
 
3286
+ msgid "Newly published"
3287
+ msgstr ""
3288
+
3045
3289
  msgid "No"
3046
3290
  msgstr ""
3047
3291
 
@@ -3051,8 +3295,9 @@ msgstr ""
3051
3295
  msgid "No Activation keys to select"
3052
3296
  msgstr ""
3053
3297
 
3298
+ #, fuzzy
3054
3299
  msgid "No Content View"
3055
- msgstr ""
3300
+ msgstr "ਸੰਖੇਪ"
3056
3301
 
3057
3302
  msgid "No Content found"
3058
3303
  msgstr ""
@@ -3066,8 +3311,9 @@ msgstr ""
3066
3311
  msgid "No Red Hat products currently exist, please import a manifest %(anchorBegin)s here %(anchorEnd)s to receive Red Hat content. No repository sets available."
3067
3312
  msgstr ""
3068
3313
 
3314
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3069
3315
  msgid "No Service Level Preference"
3070
- msgstr ""
3316
+ msgstr "ਕੋਈ ਸਰਵਿਸ ਲੈਵਲ ਪਸੰਦ ਨਹੀਂ"
3071
3317
 
3072
3318
  msgid "No URL found for a container registry. Please check the configuration."
3073
3319
  msgstr ""
@@ -3081,8 +3327,9 @@ msgstr ""
3081
3327
  msgid "No artifacts to show"
3082
3328
  msgstr ""
3083
3329
 
3330
+ #, fuzzy
3084
3331
  msgid "No content has been provided."
3085
- msgstr ""
3332
+ msgstr "ਘੱਟੋ-ਘੱਟ ਇੱਕ ਕੁੰਜੀ ਦੇਣੀ ਜਰੂਰੀ ਹੈ"
3086
3333
 
3087
3334
  msgid "No content ids provided"
3088
3335
  msgstr ""
@@ -3111,8 +3358,9 @@ msgstr ""
3111
3358
  msgid "No errata has been specified."
3112
3359
  msgstr ""
3113
3360
 
3361
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3114
3362
  msgid "No errors"
3115
- msgstr ""
3363
+ msgstr "ਕੋਈ ਗਲਤੀ ਨਹੀਂ"
3116
3364
 
3117
3365
  msgid "No existing export history was found to perform an incremental export. A full export must be performed"
3118
3366
  msgstr ""
@@ -3159,20 +3407,24 @@ msgstr ""
3159
3407
  msgid "No matching version found"
3160
3408
  msgstr ""
3161
3409
 
3410
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3162
3411
  msgid "No new packages installed"
3163
- msgstr ""
3412
+ msgstr "ਕੋਈ ਨਵਾਂ ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ"
3164
3413
 
3414
+ #, fuzzy
3165
3415
  msgid "No new packages."
3166
- msgstr ""
3416
+ msgstr "ਕੋਈ ਨਵਾਂ ਪੈਕੇਜ ਇੰਸਟਾਲ ਨਹੀਂ ਕੀਤਾ"
3167
3417
 
3168
3418
  msgid "No package groups have been added to this filter."
3169
3419
  msgstr ""
3170
3420
 
3421
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3171
3422
  msgid "No packages removed"
3172
- msgstr ""
3423
+ msgstr "ਕੋਈ ਪੈਕੇਜ ਨਹੀਂ ਹਟਾਇਆ"
3173
3424
 
3425
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3174
3426
  msgid "No packages updated"
3175
- msgstr ""
3427
+ msgstr "ਕੋਈ ਪੈਕੇਜ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤਾ"
3176
3428
 
3177
3429
  msgid "No pool IDs were provided."
3178
3430
  msgstr ""
@@ -3219,8 +3471,9 @@ msgstr ""
3219
3471
  msgid "No services defined, is this class extended?"
3220
3472
  msgstr ""
3221
3473
 
3474
+ #, fuzzy
3222
3475
  msgid "No start time currently available."
3223
- msgstr ""
3476
+ msgstr "ਡਿਸਟਰੀਬਿਊਸ਼ਨਾਂ"
3224
3477
 
3225
3478
  msgid "No subscriptions match your search criteria."
3226
3479
  msgstr ""
@@ -3237,9 +3490,11 @@ msgstr ""
3237
3490
  msgid "Non-security errata installable"
3238
3491
  msgstr ""
3239
3492
 
3493
+ #, fuzzy
3240
3494
  msgid "Non-system event"
3241
- msgstr ""
3495
+ msgstr "ਸਿਸਟਮ"
3242
3496
 
3497
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author aalam
3243
3498
  msgid "None"
3244
3499
  msgstr "ਕੋਈ ਨਹੀਂ"
3245
3500
 
@@ -3300,17 +3555,15 @@ msgstr ""
3300
3555
  msgid "On Demand"
3301
3556
  msgstr ""
3302
3557
 
3303
- msgid "On demand repositories cannot be exported."
3304
- msgstr ""
3305
-
3306
3558
  msgid "On-disk location for exported repositories"
3307
3559
  msgstr ""
3308
3560
 
3309
3561
  msgid "On-disk location for pulp 3 exported repositories"
3310
3562
  msgstr ""
3311
3563
 
3564
+ #, fuzzy
3312
3565
  msgid "One of parameters [ %s ] required but not specified."
3313
- msgstr ""
3566
+ msgstr "organization_id ਲੋੜੀਂਦਾ ਹੈ ਪਰ ਦਿੱਤਾ ਨਹੀਂ।"
3314
3567
 
3315
3568
  msgid "One of yum or docker"
3316
3569
  msgstr ""
@@ -3321,14 +3574,16 @@ msgstr ""
3321
3574
  msgid "One or more ids (%{ids}) were not found for %{assoc}. You may not have permissions to see them."
3322
3575
  msgstr ""
3323
3576
 
3577
+ #, fuzzy
3324
3578
  msgid "One or more packages failed to sync properly."
3325
- msgstr ""
3579
+ msgstr "ਇੱਕ ਜਾਂ ਜਿਆਦਾ ਇਰੱਟਾ ਦੇਣਾ ਜਰੂਰੀ ਹੈ"
3326
3580
 
3327
3581
  msgid "One or more processes require restarting"
3328
3582
  msgstr ""
3329
3583
 
3584
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3330
3585
  msgid "Only one Red Hat provider permitted for an Organization"
3331
- msgstr ""
3586
+ msgstr "ਸਿਰਫ ਇੱਕ Red Hat ਪਰੋਵਾਈਡਰ ਨੂੰ ਇੱਕ ਸੰਗਠਨ ਲਈ ਮਨਜੂਰੀ ਹੈ"
3332
3587
 
3333
3588
  msgid "Only returns id and quantity fields"
3334
3589
  msgstr ""
@@ -3336,9 +3591,7 @@ msgstr ""
3336
3591
  msgid "Operators"
3337
3592
  msgstr ""
3338
3593
 
3339
- msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3340
- msgstr ""
3341
-
3594
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
3342
3595
  msgid "Organization"
3343
3596
  msgstr "ਸੰਗਠਨ"
3344
3597
 
@@ -3354,8 +3607,9 @@ msgstr ""
3354
3607
  msgid "Organization Information not provided."
3355
3608
  msgstr ""
3356
3609
 
3610
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3357
3611
  msgid "Organization cannot be blank."
3358
- msgstr ""
3612
+ msgstr "ਨਾਂ ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ।"
3359
3613
 
3360
3614
  msgid "Organization id"
3361
3615
  msgstr ""
@@ -3369,8 +3623,9 @@ msgstr ""
3369
3623
  msgid "Organization not found"
3370
3624
  msgstr ""
3371
3625
 
3626
+ #, fuzzy
3372
3627
  msgid "Organization required"
3373
- msgstr ""
3628
+ msgstr "ਸੰਗਠਨ"
3374
3629
 
3375
3630
  msgid "Other"
3376
3631
  msgstr ""
@@ -3396,74 +3651,99 @@ msgstr ""
3396
3651
  msgid "Override value. Provide a boolean value if name is 'enabled'"
3397
3652
  msgstr ""
3398
3653
 
3654
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
3655
+ #, fuzzy
3399
3656
  msgid "Package"
3400
- msgstr ""
3657
+ msgstr "ਪੈਕੇਜ"
3401
3658
 
3659
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
3660
+ #, fuzzy
3402
3661
  msgid "Package Group"
3403
- msgstr ""
3662
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ"
3404
3663
 
3664
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3405
3665
  msgid "Package Group Install"
3406
- msgstr ""
3666
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ"
3407
3667
 
3668
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3408
3669
  msgid "Package Group Install Canceled"
3409
- msgstr ""
3670
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
3410
3671
 
3672
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3411
3673
  msgid "Package Group Install Complete"
3412
- msgstr ""
3674
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਮੁਕੰਮਲ"
3413
3675
 
3676
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3414
3677
  msgid "Package Group Install Failed"
3415
- msgstr ""
3678
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਫੇਲ ਹੋਇਆ"
3416
3679
 
3680
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3417
3681
  msgid "Package Group Install Timed Out"
3418
- msgstr ""
3682
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਸਮਾਂ ਲੰਘ ਗਿਆ"
3419
3683
 
3684
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3420
3685
  msgid "Package Group Install scheduled by %s"
3421
- msgstr ""
3686
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ %s ਤੱਕ ਤਹਿ ਕੀਤਾ ਹੈ"
3422
3687
 
3688
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3423
3689
  msgid "Package Group Remove"
3424
- msgstr ""
3690
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾਓ"
3425
3691
 
3692
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3426
3693
  msgid "Package Group Remove Canceled"
3427
- msgstr ""
3694
+ msgstr "ਪੈਕੇਜ ਗੁਰੁੱਪ ਹਟਾਉਣਾ ਰੱਦ ਕੀਤਾ"
3428
3695
 
3696
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3429
3697
  msgid "Package Group Remove Complete"
3430
- msgstr ""
3698
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾਉਣਾ ਮੁਕੰਮਲ ਹੋਇਆ"
3431
3699
 
3700
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3432
3701
  msgid "Package Group Remove Failed"
3433
- msgstr ""
3702
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾਉਣਾ ਫੇਲ ਹੋਇਆ"
3434
3703
 
3704
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3435
3705
  msgid "Package Group Remove Timed Out"
3436
- msgstr ""
3706
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾਓ"
3437
3707
 
3708
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3438
3709
  msgid "Package Group Remove scheduled by %s"
3439
- msgstr ""
3710
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾਉਣਾ %s ਤੱਕ ਤਹਿ ਕੀਤਾ ਹੈ"
3440
3711
 
3712
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3441
3713
  msgid "Package Group Update"
3442
- msgstr ""
3714
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ"
3443
3715
 
3716
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3444
3717
  msgid "Package Group Update scheduled by %s"
3445
- msgstr ""
3718
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ %s ਤੱਕ ਤਹਿ ਕੀਤਾ ਹੈ"
3446
3719
 
3720
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
3447
3721
  msgid "Package Groups"
3448
- msgstr ""
3722
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ"
3449
3723
 
3724
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3450
3725
  msgid "Package Install"
3451
- msgstr ""
3726
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ"
3452
3727
 
3728
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3453
3729
  msgid "Package Install Canceled"
3454
- msgstr ""
3730
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
3455
3731
 
3732
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3456
3733
  msgid "Package Install Complete"
3457
- msgstr ""
3734
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਮੁਕੰਮਲ ਹੋਇਆ"
3458
3735
 
3736
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3459
3737
  msgid "Package Install Failed"
3460
- msgstr ""
3738
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਫੇਲ ਹੋਇਆ"
3461
3739
 
3740
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3462
3741
  msgid "Package Install Timed Out"
3463
- msgstr ""
3742
+ msgstr "ਪੈਕੇਜ ਇੰਸਾਟਲ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
3464
3743
 
3744
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3465
3745
  msgid "Package Install scheduled by %s"
3466
- msgstr ""
3746
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ %s ਤੱਕ ਤਹਿ ਕੀਤਾ ਹੈ"
3467
3747
 
3468
3748
  msgid "Package Profile Update"
3469
3749
  msgstr ""
@@ -3471,53 +3751,69 @@ msgstr ""
3471
3751
  msgid "Package Profile Update for %s"
3472
3752
  msgstr ""
3473
3753
 
3754
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3474
3755
  msgid "Package Remove"
3475
- msgstr ""
3756
+ msgstr "ਪੈਕੇਜ ਹਟਾਓ"
3476
3757
 
3758
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3477
3759
  msgid "Package Remove Canceled"
3478
- msgstr ""
3760
+ msgstr "ਪੈਕੇਜ ਹਟਾਉਣਾ ਰੱਦ ਕੀਤਾ"
3479
3761
 
3762
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3480
3763
  msgid "Package Remove Complete"
3481
- msgstr ""
3764
+ msgstr "ਪੈਕੇਜ ਹਟਾਉਣਾ ਮੁਕੰਮਲ ਹੋਇਆ"
3482
3765
 
3766
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3483
3767
  msgid "Package Remove Failed"
3484
- msgstr ""
3768
+ msgstr "ਪੈਕੇਜ ਹਟਾਉਣਾ ਫੇਲ ਹੋਇਆ"
3485
3769
 
3770
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3486
3771
  msgid "Package Remove Timed Out"
3487
- msgstr ""
3772
+ msgstr "ਪੈਕੇਜ ਹਟਾਉਣ ਦਾ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
3488
3773
 
3774
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3489
3775
  msgid "Package Remove scheduled by %s"
3490
- msgstr ""
3776
+ msgstr "ਪੈਕੇਜ ਹਟਾਉਣਾ %s ਤੱਕ ਤਹਿ ਕੀਤਾ ਹੈ"
3491
3777
 
3778
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3492
3779
  msgid "Package Update"
3493
- msgstr ""
3780
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ"
3494
3781
 
3782
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3495
3783
  msgid "Package Update Canceled"
3496
- msgstr ""
3784
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਰੱਦ ਕੀਤਾ"
3497
3785
 
3786
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3498
3787
  msgid "Package Update Complete"
3499
- msgstr ""
3788
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਮੁਕੰਮਲ"
3500
3789
 
3790
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3501
3791
  msgid "Package Update Failed"
3502
- msgstr ""
3792
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਫੇਲ ਹੋ ਗਿਆ ਹੈ"
3503
3793
 
3794
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3504
3795
  msgid "Package Update Timed Out"
3505
- msgstr ""
3796
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
3506
3797
 
3798
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3507
3799
  msgid "Package Update scheduled by %s"
3508
- msgstr ""
3800
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ %s ਤੱਕ ਤਹਿ ਕੀਤਾ ਹੈ"
3509
3801
 
3802
+ #, fuzzy
3510
3803
  msgid "Package group update canceled"
3511
- msgstr ""
3804
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਰੱਦ ਕੀਤਾ"
3512
3805
 
3806
+ #, fuzzy
3513
3807
  msgid "Package group update complete"
3514
- msgstr ""
3808
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਮੁਕੰਮਲ"
3515
3809
 
3810
+ #, fuzzy
3516
3811
  msgid "Package group update failed"
3517
- msgstr ""
3812
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਫੇਲ ਹੋ ਗਿਆ ਹੈ"
3518
3813
 
3814
+ #, fuzzy
3519
3815
  msgid "Package group update timed out"
3520
- msgstr ""
3816
+ msgstr "%s ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਸਮਾਂ ਪੁੱਗ ਗਿਆ ਹੈ"
3521
3817
 
3522
3818
  msgid "Package groups"
3523
3819
  msgstr ""
@@ -3525,17 +3821,21 @@ msgstr ""
3525
3821
  msgid "Package identifiers to filter content by"
3526
3822
  msgstr ""
3527
3823
 
3824
+ #, fuzzy
3528
3825
  msgid "Package install failed: \"%{package}\""
3529
- msgstr ""
3826
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਫੇਲ ਹੋਇਆ"
3530
3827
 
3828
+ #, fuzzy
3531
3829
  msgid "Package installation: \"%{package}\" "
3532
- msgstr ""
3830
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਰੱਦ ਕੀਤਾ"
3533
3831
 
3832
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
3534
3833
  msgid "Packages"
3535
- msgstr ""
3834
+ msgstr "ਪੈਕੇਜ"
3536
3835
 
3836
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3537
3837
  msgid "Packages must be provided"
3538
- msgstr ""
3838
+ msgstr "ਪੈਕੇਜ ਦੇਣਾ ਜਰੂਰੀ ਹੈ"
3539
3839
 
3540
3840
  msgid "Page number, starting at 1"
3541
3841
  msgstr ""
@@ -3564,8 +3864,10 @@ msgstr ""
3564
3864
  msgid "Paused"
3565
3865
  msgstr ""
3566
3866
 
3867
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
3868
+ #, fuzzy
3567
3869
  msgid "Pending"
3568
- msgstr "ਅਧੂਰੇ"
3870
+ msgstr "ਚੱਲ ਰਿਹਾ ਹੈ"
3569
3871
 
3570
3872
  msgid "Perform a module stream action via Katello interface"
3571
3873
  msgstr ""
@@ -3585,11 +3887,13 @@ msgstr ""
3585
3887
  msgid "Performs an incremental-export of the repositories in library."
3586
3888
  msgstr ""
3587
3889
 
3890
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3588
3891
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3589
- msgstr ""
3892
+ msgstr "ਮਨਜੂਰੀ ਨਹੀਂ। ਯੂਜ਼ਰ '%{user}' ਨੂੰ ਸੰਗਠਨ '%{org}' ਵਰਤਣ ਦੀ ਮਨਜੂਰੀ ਨਹੀਂ ਹੈ।"
3590
3893
 
3894
+ # translation auto-copied from project Subscription Manager, version 1.8.X, document keys
3591
3895
  msgid "Physical"
3592
- msgstr ""
3896
+ msgstr "ਭੌਤਿਕ"
3593
3897
 
3594
3898
  msgid "Plan numeric identifier"
3595
3899
  msgstr ""
@@ -3636,8 +3940,9 @@ msgstr ""
3636
3940
  msgid "Processing metadata."
3637
3941
  msgstr ""
3638
3942
 
3943
+ # translation auto-copied from project Subscription Manager, version 1.8.X, document keys
3639
3944
  msgid "Product"
3640
- msgstr ""
3945
+ msgstr "ਉਤਪਾਦ"
3641
3946
 
3642
3947
  msgid "Product Content"
3643
3948
  msgstr ""
@@ -3680,8 +3985,9 @@ msgstr ""
3680
3985
  msgid "Product: '%{product}', Repository: '%{repository}'"
3681
3986
  msgstr ""
3682
3987
 
3988
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
3683
3989
  msgid "Products"
3684
- msgstr ""
3990
+ msgstr "ਉਤਪਾਦ"
3685
3991
 
3686
3992
  msgid "Profiles"
3687
3993
  msgstr ""
@@ -3731,9 +4037,18 @@ msgstr ""
3731
4037
  msgid "Publish a content view"
3732
4038
  msgstr ""
3733
4039
 
4040
+ msgid "Publish new version - "
4041
+ msgstr ""
4042
+
3734
4043
  msgid "Published new version"
3735
4044
  msgstr ""
3736
4045
 
4046
+ msgid "Publishing ${name}"
4047
+ msgstr ""
4048
+
4049
+ msgid "Publishing content view"
4050
+ msgstr ""
4051
+
3737
4052
  msgid "Pulling remote branches. Downloaded %s units."
3738
4053
  msgstr ""
3739
4054
 
@@ -3743,7 +4058,7 @@ msgstr ""
3743
4058
  msgid "Pulp 3 export destination filepath"
3744
4059
  msgstr ""
3745
4060
 
3746
- msgid "Pulp Consumer %s has already been removed"
4061
+ msgid "Pulp 3 is not enabled on Smart proxy!"
3747
4062
  msgstr ""
3748
4063
 
3749
4064
  msgid "Pulp Docker registry port"
@@ -3848,29 +4163,35 @@ msgstr ""
3848
4163
  msgid "Recommended Repositories"
3849
4164
  msgstr ""
3850
4165
 
4166
+ #, fuzzy
3851
4167
  msgid "Red Hat CDN URL"
3852
- msgstr ""
4168
+ msgstr "ਉਤਪਾਦ"
3853
4169
 
3854
4170
  msgid "Red Hat Provider Details"
3855
4171
  msgstr ""
3856
4172
 
4173
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3857
4174
  msgid "Red Hat Repositories"
3858
- msgstr ""
4175
+ msgstr "Red Hat ਰਿਪੋਜ਼ਟਰੀਆਂ"
3859
4176
 
4177
+ #, fuzzy
3860
4178
  msgid "Red Hat products cannot be manipulated."
3861
- msgstr ""
4179
+ msgstr "Red Hat ਪਰੋਵਾਈਡ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
3862
4180
 
4181
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
3863
4182
  msgid "Red Hat provider can not be deleted"
3864
- msgstr ""
4183
+ msgstr "Red Hat ਪਰੋਵਾਈਡ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
3865
4184
 
4185
+ #, fuzzy
3866
4186
  msgid "Red Hat repositories cannot be manipulated."
3867
- msgstr ""
4187
+ msgstr "Red Hat ਪਰੋਵਾਈਡ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ"
3868
4188
 
3869
4189
  msgid "Refresh"
3870
4190
  msgstr ""
3871
4191
 
4192
+ #, fuzzy
3872
4193
  msgid "Refresh Manifest"
3873
- msgstr ""
4194
+ msgstr "ਰੋਲ ਹਟਾਓ"
3874
4195
 
3875
4196
  msgid "Refresh previously imported manifest for Red Hat provider"
3876
4197
  msgstr ""
@@ -3917,14 +4238,19 @@ msgstr ""
3917
4238
  msgid "Removal of package(s) requested: %{packages}"
3918
4239
  msgstr ""
3919
4240
 
4241
+ msgid "Remove"
4242
+ msgstr ""
4243
+
3920
4244
  msgid "Remove Content"
3921
4245
  msgstr ""
3922
4246
 
4247
+ #, fuzzy
3923
4248
  msgid "Remove Version"
3924
- msgstr ""
4249
+ msgstr "ਰੋਲ ਅਧਿਕਾਰ ਪੜ੍ਹੋ"
3925
4250
 
4251
+ #, fuzzy
3926
4252
  msgid "Remove Versions and Associations"
3927
- msgstr ""
4253
+ msgstr "ਸੰਗਠਨ ਪੜ੍ਹੋ"
3928
4254
 
3929
4255
  msgid "Remove a content view from an environment"
3930
4256
  msgstr ""
@@ -3941,9 +4267,13 @@ msgstr ""
3941
4267
  msgid "Remove content view version"
3942
4268
  msgstr ""
3943
4269
 
3944
- msgid "Remove from Environment"
4270
+ msgid "Remove content views"
3945
4271
  msgstr ""
3946
4272
 
4273
+ #, fuzzy
4274
+ msgid "Remove from Environment"
4275
+ msgstr "ਇਨਵਾਇਰਮੈਂਟ ਪੜ੍ਹੋ"
4276
+
3947
4277
  msgid "Remove hosts from the host collection"
3948
4278
  msgstr ""
3949
4279
 
@@ -3956,14 +4286,16 @@ msgstr ""
3956
4286
  msgid "Remove one or more subscriptions from an upstream subscription allocation"
3957
4287
  msgstr ""
3958
4288
 
4289
+ #, fuzzy
3959
4290
  msgid "Remove package"
3960
- msgstr ""
4291
+ msgstr "ਪੈਕੇਜ '%s' ਹਟਾਇਆ ਗਿਆ ਹੈ"
3961
4292
 
3962
4293
  msgid "Remove package for %s"
3963
4294
  msgstr ""
3964
4295
 
4296
+ #, fuzzy
3965
4297
  msgid "Remove package group"
3966
- msgstr ""
4298
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ '%s' ਹਟਾਇਆ ਗਿਆ ਹੈ"
3967
4299
 
3968
4300
  msgid "Remove package group via Katello interface"
3969
4301
  msgstr ""
@@ -3986,30 +4318,37 @@ msgstr ""
3986
4318
  msgid "Remove versions and/or environments from a content view and reassign systems and keys"
3987
4319
  msgstr ""
3988
4320
 
3989
- msgid "Removing Package Group..."
4321
+ msgid "Removed component from content view"
3990
4322
  msgstr ""
3991
4323
 
3992
- msgid "Removing Package..."
4324
+ msgid "Removed components from content view"
3993
4325
  msgstr ""
3994
4326
 
4327
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4328
+ msgid "Removing Package Group..."
4329
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾ ਰਿਹਾ ਹੈ..."
4330
+
4331
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4332
+ msgid "Removing Package..."
4333
+ msgstr "ਪੈਕੇਜ ਹਟਾ ਰਿਹਾ ਹੈ..."
4334
+
3995
4335
  msgid "Repo Type"
3996
4336
  msgstr ""
3997
4337
 
4338
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
3998
4339
  msgid "Repositories"
3999
- msgstr ""
4340
+ msgstr "ਰਿਪੋਜ਼ਟਰੀਆਂ"
4000
4341
 
4001
4342
  msgid "Repositories from published Content Views are not allowed."
4002
4343
  msgstr ""
4003
4344
 
4345
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4004
4346
  msgid "Repository"
4005
- msgstr ""
4347
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ"
4006
4348
 
4007
4349
  msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
4008
4350
  msgstr ""
4009
4351
 
4010
- msgid "Repository %s cannot be deleted since they are Red Hat repositories."
4011
- msgstr ""
4012
-
4013
4352
  msgid "Repository '%(repoName)s' has been disabled."
4014
4353
  msgstr ""
4015
4354
 
@@ -4022,14 +4361,13 @@ msgstr ""
4022
4361
  msgid "Repository cannot be deleted since it has already been included in a published Content View. Please delete all Content View versions containing this repository before attempting to delete it."
4023
4362
  msgstr ""
4024
4363
 
4364
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4025
4365
  msgid "Repository cannot be disabled since it has already been promoted."
4026
- msgstr ""
4027
-
4028
- msgid "Repository content type must be 'yum' to export."
4029
- msgstr ""
4366
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ ਅਯੋਗ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦੀ ਕਿਉਂਕਿ ਇਹ ਪਹਿਲਾਂ ਹੀ ਪਰਮੋਟ ਹੋ ਗਈ ਹੈ।"
4030
4367
 
4368
+ #, fuzzy
4031
4369
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
4032
- msgstr ""
4370
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ ਅਯੋਗ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦੀ ਕਿਉਂਕਿ ਇਹ ਪਹਿਲਾਂ ਹੀ ਪਰਮੋਟ ਹੋ ਗਈ ਹੈ।"
4033
4371
 
4034
4372
  msgid "Repository id"
4035
4373
  msgstr ""
@@ -4043,14 +4381,16 @@ msgstr ""
4043
4381
  msgid "Repository metadata publish"
4044
4382
  msgstr ""
4045
4383
 
4384
+ #, fuzzy
4046
4385
  msgid "Repository not found"
4047
- msgstr ""
4386
+ msgstr "ਰਿਪੋਜ਼ਟਰੀਆਂ"
4048
4387
 
4049
4388
  msgid "Repository set name to search on"
4050
4389
  msgstr ""
4051
4390
 
4391
+ #, fuzzy
4052
4392
  msgid "Repository sets are not available for custom products."
4053
- msgstr ""
4393
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ ਅਯੋਗ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦੀ ਕਿਉਂਕਿ ਇਹ ਪਹਿਲਾਂ ਹੀ ਪਰਮੋਟ ਹੋ ਗਈ ਹੈ।"
4054
4394
 
4055
4395
  msgid "Republish Repositories of %{name} %{version}"
4056
4396
  msgstr ""
@@ -4058,6 +4398,9 @@ msgstr ""
4058
4398
  msgid "Republish Version Repositories"
4059
4399
  msgstr ""
4060
4400
 
4401
+ msgid "Requirements yaml is invalid!"
4402
+ msgstr ""
4403
+
4061
4404
  msgid "Requires Virt-Who"
4062
4405
  msgstr ""
4063
4406
 
@@ -4068,7 +4411,7 @@ msgid "Resolve traces for one or more hosts"
4068
4411
  msgstr ""
4069
4412
 
4070
4413
  msgid "Resource"
4071
- msgstr "ਸਰੋਤ"
4414
+ msgstr ""
4072
4415
 
4073
4416
  msgid "Restart Services via Katello interface"
4074
4417
  msgstr ""
@@ -4076,8 +4419,9 @@ msgstr ""
4076
4419
  msgid "Restrict Composite Content View promotion"
4077
4420
  msgstr ""
4078
4421
 
4422
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
4079
4423
  msgid "Result"
4080
- msgstr ""
4424
+ msgstr "ਨਤੀਜਾ"
4081
4425
 
4082
4426
  msgid "Retrieve a single errata for a host"
4083
4427
  msgstr ""
@@ -4100,9 +4444,6 @@ msgstr ""
4100
4444
  msgid "Return errata that are upgradable on one or more hosts"
4101
4445
  msgstr ""
4102
4446
 
4103
- msgid "Return errata that can be added to the Content View Version via an Incremental Update. Will be removed in Katello 4.1."
4104
- msgstr ""
4105
-
4106
4447
  msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
4107
4448
  msgstr ""
4108
4449
 
@@ -4143,19 +4484,20 @@ msgid "Returns content that can be both added and is currently added to the obje
4143
4484
  msgstr ""
4144
4485
 
4145
4486
  msgid "Role"
4146
- msgstr "ਰੋਲ"
4487
+ msgstr ""
4147
4488
 
4148
4489
  msgid "Role of host"
4149
4490
  msgstr ""
4150
4491
 
4151
4492
  msgid "Roles"
4152
- msgstr "ਰੋਲ"
4493
+ msgstr ""
4153
4494
 
4154
4495
  msgid "Run Sync Plan:"
4155
4496
  msgstr ""
4156
4497
 
4498
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
4157
4499
  msgid "Running"
4158
- msgstr ""
4500
+ msgstr "ਚੱਲ ਰਿਹਾ ਹੈ"
4159
4501
 
4160
4502
  msgid "SKU"
4161
4503
  msgstr ""
@@ -4170,13 +4512,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
4170
4512
  msgstr ""
4171
4513
 
4172
4514
  msgid "Save"
4173
- msgstr "ਸੰਭਾਲੋ"
4515
+ msgstr ""
4174
4516
 
4175
4517
  msgid "Schedule errata for installation using katello-agent. %s"
4176
4518
  msgstr ""
4177
4519
 
4178
4520
  msgid "Search"
4179
- msgstr "ਖੋਜ"
4521
+ msgstr ""
4180
4522
 
4181
4523
  msgid "Search pattern (defaults to '*')"
4182
4524
  msgstr ""
@@ -4193,8 +4535,9 @@ msgstr ""
4193
4535
  msgid "Search string for hosts to perform an action on"
4194
4536
  msgstr ""
4195
4537
 
4538
+ # translation auto-copied from project CFSE, version sam-1.2, document app
4196
4539
  msgid "Security"
4197
- msgstr ""
4540
+ msgstr "ਸੁਰੱਖਿਆ"
4198
4541
 
4199
4542
  msgid "Security errata applicable"
4200
4543
  msgstr ""
@@ -4205,30 +4548,41 @@ msgstr ""
4205
4548
  msgid "Select"
4206
4549
  msgstr ""
4207
4550
 
4551
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
4208
4552
  msgid "Select All"
4209
4553
  msgstr "ਸਭ ਚੁਣੋ"
4210
4554
 
4555
+ #, fuzzy
4211
4556
  msgid "Select Content View"
4212
- msgstr ""
4557
+ msgstr "ਸੰਖੇਪ"
4213
4558
 
4559
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4214
4560
  msgid "Select None"
4215
- msgstr ""
4561
+ msgstr "ਨਾਂ ਚੁਣੋ"
4216
4562
 
4217
4563
  msgid "Select Organization"
4218
- msgstr "ਸੰਗਠਨ ਚੁਣੋ"
4564
+ msgstr ""
4219
4565
 
4220
4566
  msgid "Select Value"
4221
4567
  msgstr ""
4222
4568
 
4569
+ msgid "Select a lifecycle environment from the available promotion paths to promote new version."
4570
+ msgstr ""
4571
+
4223
4572
  msgid "Select all rows"
4224
4573
  msgstr ""
4225
4574
 
4575
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
4576
+ #, fuzzy
4226
4577
  msgid "Select an Organization"
4227
- msgstr ""
4578
+ msgstr "ਸੰਗਠਨ ਚੁਣੋ"
4228
4579
 
4229
4580
  msgid "Select an organization"
4230
4581
  msgstr ""
4231
4582
 
4583
+ msgid "Select available version of ${cvName} to use"
4584
+ msgstr ""
4585
+
4232
4586
  msgid "Select hosts to assign to %s"
4233
4587
  msgstr ""
4234
4588
 
@@ -4241,8 +4595,9 @@ msgstr ""
4241
4595
  msgid "Service Level"
4242
4596
  msgstr ""
4243
4597
 
4598
+ # translation auto-copied from project CFSE, version sam-1.2, document app
4244
4599
  msgid "Service Level %s"
4245
- msgstr ""
4600
+ msgstr "ਸਰਵਿਸ ਲੈਵਲ %s"
4246
4601
 
4247
4602
  msgid "Service Level (SLA)"
4248
4603
  msgstr ""
@@ -4274,8 +4629,9 @@ msgstr ""
4274
4629
  msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
4275
4630
  msgstr ""
4276
4631
 
4632
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4277
4633
  msgid "Severity"
4278
- msgstr ""
4634
+ msgstr "ਤਰਜੀਹ"
4279
4635
 
4280
4636
  msgid "Show :a_resource"
4281
4637
  msgstr ""
@@ -4352,6 +4708,9 @@ msgstr ""
4352
4708
  msgid "Simple Content Access has been enabled for '%{subject}'."
4353
4709
  msgstr ""
4354
4710
 
4711
+ msgid "Single content view consisting of repositories"
4712
+ msgstr ""
4713
+
4355
4714
  msgid "Size of file to upload"
4356
4715
  msgstr ""
4357
4716
 
@@ -4364,9 +4723,13 @@ msgstr ""
4364
4723
  msgid "Smart proxy IDs"
4365
4724
  msgstr ""
4366
4725
 
4367
- msgid "Sockets: %s"
4726
+ msgid "Smart proxy content source not found!"
4368
4727
  msgstr ""
4369
4728
 
4729
+ # translation auto-copied from project CFSE, version sam-1.2, document app
4730
+ msgid "Sockets: %s"
4731
+ msgstr "ਸਾਕਟਾਂ: %s"
4732
+
4370
4733
  msgid "Solve Dependencies"
4371
4734
  msgstr ""
4372
4735
 
@@ -4382,6 +4745,21 @@ msgstr ""
4382
4745
  msgid "Some services are not properly started. See the About page for more information."
4383
4746
  msgstr ""
4384
4747
 
4748
+ msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
4749
+ msgstr ""
4750
+
4751
+ msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
4752
+ msgstr ""
4753
+
4754
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
4755
+ msgstr ""
4756
+
4757
+ msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
4758
+ msgstr ""
4759
+
4760
+ msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
4761
+ msgstr ""
4762
+
4385
4763
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
4386
4764
  msgstr ""
4387
4765
 
@@ -4421,23 +4799,27 @@ msgstr ""
4421
4799
  msgid "Stacking ID"
4422
4800
  msgstr ""
4423
4801
 
4802
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
4424
4803
  msgid "Start Date"
4425
- msgstr ""
4804
+ msgstr "ਸ਼ੁਰੂਆਤੀ ਮਿਤੀ"
4426
4805
 
4806
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4427
4807
  msgid "Start Date and Time can't be blank"
4428
- msgstr ""
4808
+ msgstr "ਸ਼ੁਰੂਆਤੀ ਮਿਤੀ ਅਤੇ ਸਮਾਂ ਸਮਾਂ ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ"
4429
4809
 
4810
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
4430
4811
  msgid "Start Time"
4431
- msgstr ""
4812
+ msgstr "ਸ਼ੁਰੂਆਤੀ ਸਮਾਂ"
4432
4813
 
4433
4814
  msgid "Starts"
4434
4815
  msgstr ""
4435
4816
 
4817
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
4436
4818
  msgid "Status"
4437
4819
  msgstr "ਹਾਲਤ"
4438
4820
 
4439
4821
  msgid "Storage"
4440
- msgstr "ਸਟੋਰੇਜ਼"
4822
+ msgstr ""
4441
4823
 
4442
4824
  msgid "Stream"
4443
4825
  msgstr ""
@@ -4451,8 +4833,9 @@ msgstr ""
4451
4833
  msgid "Subnet IDs"
4452
4834
  msgstr ""
4453
4835
 
4836
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys
4454
4837
  msgid "Subscription"
4455
- msgstr ""
4838
+ msgstr "ਮੈਂਬਰੀ"
4456
4839
 
4457
4840
  msgid "Subscription Allocation"
4458
4841
  msgstr ""
@@ -4523,12 +4906,14 @@ msgstr ""
4523
4906
  msgid "Subscriptions have been saved and are being updated. "
4524
4907
  msgstr ""
4525
4908
 
4909
+ #, fuzzy
4526
4910
  msgid "Subscriptions information based on selected activation keys:"
4527
- msgstr ""
4911
+ msgstr "ਮੈਂਬਰੀਆਂ ਸਫਲਤਾਪੂਰਕ ਸਰਗਰਮੀ ਕੁੰਜੀ '%s' ਵਿੱਚ ਜੋੜੀਆਂ ਗਈਆਂ ਹਨ।"
4528
4912
 
4529
4913
  msgid "Substitution Mismatch. Unable to update for content: (%{content}). From [%{content_url}] To [%{new_url}]."
4530
4914
  msgstr ""
4531
4915
 
4916
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
4532
4917
  msgid "Success"
4533
4918
  msgstr "ਸਫਲਤਾ"
4534
4919
 
@@ -4553,8 +4938,9 @@ msgstr ""
4553
4938
  msgid "Successfully synchronized."
4554
4939
  msgstr ""
4555
4940
 
4941
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4556
4942
  msgid "Summary"
4557
- msgstr ""
4943
+ msgstr "ਸੰਖੇਪ-ਸਾਰ"
4558
4944
 
4559
4945
  msgid "Support Type"
4560
4946
  msgstr ""
@@ -4562,8 +4948,9 @@ msgstr ""
4562
4948
  msgid "Supported Content Types"
4563
4949
  msgstr ""
4564
4950
 
4951
+ # translation auto-copied from project CFSE, version sam-1.2, document app
4565
4952
  msgid "Sync Canceled"
4566
- msgstr ""
4953
+ msgstr "ਸਮਕਾਲਤਾ ਰੱਦ"
4567
4954
 
4568
4955
  msgid "Sync Connection Timeout"
4569
4956
  msgstr ""
@@ -4571,11 +4958,14 @@ msgstr ""
4571
4958
  msgid "Sync Content View on Smart Proxy(ies)"
4572
4959
  msgstr ""
4573
4960
 
4961
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4962
+ #, fuzzy
4574
4963
  msgid "Sync Incomplete"
4575
- msgstr ""
4964
+ msgstr "ਸਮਕਾਲਤਾ ਮੁਕੰਲਮ"
4576
4965
 
4966
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4577
4967
  msgid "Sync Overview"
4578
- msgstr ""
4968
+ msgstr "ਸਮਕਾਲਤਾ ਜਾਣਕਾਰੀ"
4579
4969
 
4580
4970
  msgid "Sync Plan"
4581
4971
  msgstr ""
@@ -4583,8 +4973,9 @@ msgstr ""
4583
4973
  msgid "Sync Plan: "
4584
4974
  msgstr ""
4585
4975
 
4976
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4586
4977
  msgid "Sync Plans"
4587
- msgstr ""
4978
+ msgstr "ਸਮਕਾਲਤਾ ਪਲਾਨ"
4588
4979
 
4589
4980
  msgid "Sync Repository on Smart Proxy(ies)"
4590
4981
  msgstr ""
@@ -4592,8 +4983,9 @@ msgstr ""
4592
4983
  msgid "Sync Smart Proxies after Content View promotion"
4593
4984
  msgstr ""
4594
4985
 
4986
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4595
4987
  msgid "Sync Status"
4596
- msgstr ""
4988
+ msgstr "ਸਮਕਾਲਤਾ ਹਾਲਤ"
4597
4989
 
4598
4990
  msgid "Sync Summary"
4599
4991
  msgstr ""
@@ -4610,8 +5002,9 @@ msgstr ""
4610
5002
  msgid "Sync capsule"
4611
5003
  msgstr ""
4612
5004
 
5005
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4613
5006
  msgid "Sync complete."
4614
- msgstr ""
5007
+ msgstr "ਸਮਕਾਲਤਾ ਮੁਕੰਲਮ"
4615
5008
 
4616
5009
  msgid "Sync errata"
4617
5010
  msgstr ""
@@ -4631,11 +5024,13 @@ msgstr ""
4631
5024
  msgid "Synced to smart proxy"
4632
5025
  msgstr ""
4633
5026
 
5027
+ #, fuzzy
4634
5028
  msgid "Synchronize"
4635
- msgstr ""
5029
+ msgstr "ਸਿਕਰੋਨਾਈਜ਼ੇਸ਼ਨ"
4636
5030
 
5031
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4637
5032
  msgid "Synchronize Now"
4638
- msgstr ""
5033
+ msgstr "ਹੁਣ ਸਮਕਾਲੀ ਬਣਾਓ"
4639
5034
 
4640
5035
  msgid "Synchronize capsule content"
4641
5036
  msgstr ""
@@ -4655,8 +5050,10 @@ msgstr ""
4655
5050
  msgid "Synchronize: Validate Content"
4656
5051
  msgstr ""
4657
5052
 
5053
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5054
+ #, fuzzy
4658
5055
  msgid "Syncing Complete."
4659
- msgstr ""
5056
+ msgstr "ਸਮਕਾਲਤਾ ਮੁਕੰਲਮ"
4660
5057
 
4661
5058
  msgid "System Purpose"
4662
5059
  msgstr ""
@@ -4682,8 +5079,9 @@ msgstr ""
4682
5079
  msgid "Temporary"
4683
5080
  msgstr ""
4684
5081
 
5082
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4685
5083
  msgid "The '%s' environment cannot contain a changeset!"
4686
- msgstr ""
5084
+ msgstr "'%s' ਇਨਵਾਇਰਮੈਂਟ ਵਿੱਚ ਚੇਂਜਸ਼ੀਟ ਨਹੀਂ ਹੋ ਸਕਦੀ!"
4687
5085
 
4688
5086
  msgid "The Subscription Allocation providing the imported manifest has been removed. Please create a new Subscription Allocation and import the new manifest."
4689
5087
  msgstr ""
@@ -4697,14 +5095,16 @@ msgstr ""
4697
5095
  msgid "The actual file contents"
4698
5096
  msgstr ""
4699
5097
 
5098
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
4700
5099
  msgid "The current organization cannot be deleted. Please switch to a different organization before deleting."
4701
- msgstr ""
5100
+ msgstr "ਮੌਜੂਦਾ ਸੰਗਠਨ ਹਟਾਇਆ ਨਹੀਂ ਜਾ ਸਕਦਾ। ਕਿਰਪਾ ਕਰਕੇ ਹਟਾਉਣ ਤੋਂ ਪਹਿਲਾਂ ਵੱਖਰੇ ਸੰਗਠਨ ਤੇ ਜਾਓ।"
4702
5101
 
4703
5102
  msgid "The default content view cannot be edited, published, or deleted."
4704
5103
  msgstr ""
4705
5104
 
5105
+ #, fuzzy
4706
5106
  msgid "The default content view cannot be promoted"
4707
- msgstr ""
5107
+ msgstr "ਟੈਂਪਿਲਟ ਐਕਸਪੋਰਟ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦਾ"
4708
5108
 
4709
5109
  msgid "The default dependency solving value for new Content Views."
4710
5110
  msgstr ""
@@ -4721,12 +5121,6 @@ msgstr ""
4721
5121
  msgid "The email notification will include subscriptions expiring in this number of days or fewer."
4722
5122
  msgstr ""
4723
5123
 
4724
- msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
4725
- msgstr ""
4726
-
4727
- msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
4728
- msgstr ""
4729
-
4730
5124
  msgid "The erratum filter rule end date is in an invalid format or type."
4731
5125
  msgstr ""
4732
5126
 
@@ -4759,6 +5153,9 @@ msgstr ""
4759
5153
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
4760
5154
  msgstr ""
4761
5155
 
5156
+ msgid "The maximum number of versions of each package to keep."
5157
+ msgstr ""
5158
+
4762
5159
  msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
4763
5160
  msgstr ""
4764
5161
 
@@ -4791,8 +5188,9 @@ msgstr ""
4791
5188
  msgid "The promotion of %{content_view} to <b>%{environment}</b> has completed. %{count} needed errata are installable on your hosts."
4792
5189
  msgstr ""
4793
5190
 
5191
+ #, fuzzy
4794
5192
  msgid "The repository is already enabled"
4795
- msgstr ""
5193
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ '%s' ਯੋਗ ਕੀਤਾ ਗਿਆ ਹੈ।"
4796
5194
 
4797
5195
  msgid "The request did not contain any repository information."
4798
5196
  msgstr ""
@@ -4898,9 +5296,6 @@ msgstr ""
4898
5296
  msgid "This is disabled because a manifest task is in progress"
4899
5297
  msgstr ""
4900
5298
 
4901
- msgid "This is disabled because disconnected mode is enabled."
4902
- msgstr ""
4903
-
4904
5299
  msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
4905
5300
  msgstr ""
4906
5301
 
@@ -4946,8 +5341,9 @@ msgstr ""
4946
5341
  msgid "Timestamp"
4947
5342
  msgstr ""
4948
5343
 
5344
+ # translation auto-copied from project Satellite6 Katello CLI, version 6.0, document keys, author jassy
4949
5345
  msgid "Title"
4950
- msgstr ""
5346
+ msgstr "ਸਿਰਲੇਖ"
4951
5347
 
4952
5348
  msgid "Toggling Simple Content Access will refresh your manifest."
4953
5349
  msgstr ""
@@ -4985,8 +5381,11 @@ msgstr ""
4985
5381
  msgid "Type of content: \"cert\", \"gpg_key\""
4986
5382
  msgstr ""
4987
5383
 
5384
+ msgid "URL needs to have a trailing /"
5385
+ msgstr ""
5386
+
4988
5387
  msgid "UUID"
4989
- msgstr "UUID"
5388
+ msgstr ""
4990
5389
 
4991
5390
  msgid "UUID of the consumer"
4992
5391
  msgstr ""
@@ -5012,12 +5411,6 @@ msgstr ""
5012
5411
  msgid "Unable to detect puppet path"
5013
5412
  msgstr ""
5014
5413
 
5015
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5016
- msgstr ""
5017
-
5018
- msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5019
- msgstr ""
5020
-
5021
5414
  msgid "Unable to find product '%s' in organization '%s'"
5022
5415
  msgstr ""
5023
5416
 
@@ -5072,6 +5465,7 @@ msgstr ""
5072
5465
  msgid "Uninstall packages remotely using katello-agent. %s"
5073
5466
  msgstr ""
5074
5467
 
5468
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
5075
5469
  msgid "Unknown"
5076
5470
  msgstr "ਅਣਜਾਣ"
5077
5471
 
@@ -5114,6 +5508,7 @@ msgstr ""
5114
5508
  msgid "Unsupported event type %{type}. Supported: %{types}"
5115
5509
  msgstr ""
5116
5510
 
5511
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
5117
5512
  msgid "Update"
5118
5513
  msgstr "ਅੱਪਡੇਟ"
5119
5514
 
@@ -5225,8 +5620,14 @@ msgstr ""
5225
5620
  msgid "Update the quantity of one or more subscriptions on an upstream allocation"
5226
5621
  msgstr ""
5227
5622
 
5623
+ msgid "Update version"
5624
+ msgstr ""
5625
+
5228
5626
  msgid "Updated"
5229
- msgstr "ਅੱਪਡੇਟ ਹੋ ਗਏ"
5627
+ msgstr ""
5628
+
5629
+ msgid "Updated component details"
5630
+ msgstr ""
5230
5631
 
5231
5632
  msgid "Updates"
5232
5633
  msgstr ""
@@ -5237,8 +5638,9 @@ msgstr ""
5237
5638
  msgid "Updates all packages on the host(s)"
5238
5639
  msgstr ""
5239
5640
 
5641
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5240
5642
  msgid "Updating Package..."
5241
- msgstr ""
5643
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਹੋ ਰਹੇ ਹਨ..."
5242
5644
 
5243
5645
  msgid "Updating System Purpose for host"
5244
5646
  msgstr ""
@@ -5246,8 +5648,9 @@ msgstr ""
5246
5648
  msgid "Updating System Purpose for host %s"
5247
5649
  msgstr ""
5248
5650
 
5651
+ #, fuzzy
5249
5652
  msgid "Updating package group..."
5250
- msgstr ""
5653
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਹੋ ਰਿਹਾ ਹੈ..."
5251
5654
 
5252
5655
  msgid "Updating repository authentication configuration"
5253
5656
  msgstr ""
@@ -5267,11 +5670,10 @@ msgstr ""
5267
5670
  msgid "Upload content into the repository"
5268
5671
  msgstr ""
5269
5672
 
5270
- msgid "Upload errata into"
5271
- msgstr ""
5272
-
5673
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5674
+ #, fuzzy
5273
5675
  msgid "Upload into"
5274
- msgstr ""
5676
+ msgstr "ਅੱਪਲੋਡ ਹੋ ਰਿਹਾ ਹੈ"
5275
5677
 
5276
5678
  msgid "Upload request id"
5277
5679
  msgstr ""
@@ -5307,7 +5709,7 @@ msgid "Used to determine download concurrency of the repository in pulp3. Use va
5307
5709
  msgstr ""
5308
5710
 
5309
5711
  msgid "User"
5310
- msgstr "ਯੂਜ਼ਰ"
5712
+ msgstr ""
5311
5713
 
5312
5714
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5313
5715
  msgstr ""
@@ -5343,7 +5745,13 @@ msgid "Verify checksum of repository contents"
5343
5745
  msgstr ""
5344
5746
 
5345
5747
  msgid "Version"
5346
- msgstr "ਵਰਜਨ"
5748
+ msgstr ""
5749
+
5750
+ msgid "Version "
5751
+ msgstr ""
5752
+
5753
+ msgid "Version ${item.version}"
5754
+ msgstr ""
5347
5755
 
5348
5756
  msgid "Versions"
5349
5757
  msgstr ""
@@ -5351,14 +5759,16 @@ msgstr ""
5351
5759
  msgid "Versions will appear here when the content view is published."
5352
5760
  msgstr ""
5353
5761
 
5762
+ #, fuzzy
5354
5763
  msgid "View %{view} has not been promoted to %{env}"
5355
- msgstr ""
5764
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ ਅਯੋਗ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦੀ ਕਿਉਂਕਿ ਇਹ ਪਹਿਲਾਂ ਹੀ ਪਰਮੋਟ ਹੋ ਗਈ ਹੈ।"
5356
5765
 
5357
5766
  msgid "View a report of the affected hosts"
5358
5767
  msgstr ""
5359
5768
 
5769
+ # translation auto-copied from project Subscription Manager, version 1.8.X, document keys
5360
5770
  msgid "Virtual"
5361
- msgstr ""
5771
+ msgstr "ਵਰਚੁਅਲ"
5362
5772
 
5363
5773
  msgid "When Simple Content Access is enabled, hosts are not required to have subscriptions attached to access repositories."
5364
5774
  msgstr ""
@@ -5420,11 +5830,13 @@ msgstr ""
5420
5830
  msgid "You cannot have more than %{max_hosts} host(s) associated with host collection '%{host_collection}'."
5421
5831
  msgstr ""
5422
5832
 
5833
+ #, fuzzy
5423
5834
  msgid "You cannot set an organization's parent. This feature is disabled."
5424
- msgstr ""
5835
+ msgstr "ਤੁਸੀਂ ਮੂਲ ਸੰਗਠਨ ਅਤੇ ਇਨਵਾਇਰਮੈਂਟ ਯੂਜ਼ਰ %s ਉੱਪਰ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਹੈ।"
5425
5836
 
5837
+ #, fuzzy
5426
5838
  msgid "You cannot set an organization's parent_id. This feature is disabled."
5427
- msgstr ""
5839
+ msgstr "ਤੁਸੀਂ ਮੂਲ ਸੰਗਠਨ ਅਤੇ ਇਨਵਾਇਰਮੈਂਟ ਯੂਜ਼ਰ %s ਉੱਪਰ ਸੈੱਟ ਨਹੀਂ ਕੀਤਾ ਹੈ।"
5428
5840
 
5429
5841
  msgid "You currently don't have any Content Views."
5430
5842
  msgstr ""
@@ -5495,11 +5907,14 @@ msgstr ""
5495
5907
  msgid "a module stream"
5496
5908
  msgstr ""
5497
5909
 
5910
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5911
+ #, fuzzy
5498
5912
  msgid "a package"
5499
- msgstr ""
5913
+ msgstr "ਸਭ ਪੈਕੇਜ"
5500
5914
 
5915
+ #, fuzzy
5501
5916
  msgid "a package group"
5502
- msgstr ""
5917
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਹੋ ਰਿਹਾ ਹੈ..."
5503
5918
 
5504
5919
  msgid "actions not found"
5505
5920
  msgstr ""
@@ -5510,8 +5925,9 @@ msgstr ""
5510
5925
  msgid "activation key name to filter by"
5511
5926
  msgstr ""
5512
5927
 
5928
+ #, fuzzy
5513
5929
  msgid "activation keys"
5514
- msgstr ""
5930
+ msgstr "ਸਰਗਰਮੀ ਕੁੰਜੀਆਂ"
5515
5931
 
5516
5932
  msgid "add all module streams without errata to the included/excluded list. (module stream filter only)"
5517
5933
  msgstr ""
@@ -5519,14 +5935,17 @@ msgstr ""
5519
5935
  msgid "add all packages without errata to the included/excluded list. (package filter only)"
5520
5936
  msgstr ""
5521
5937
 
5938
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5522
5939
  msgid "all packages"
5523
- msgstr ""
5940
+ msgstr "ਸਭ ਪੈਕੇਜ"
5524
5941
 
5942
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5525
5943
  msgid "all packages update"
5526
- msgstr ""
5944
+ msgstr "ਸਭ ਪੈਕੇਜ ਅੱਪਡੇਟ"
5527
5945
 
5946
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5528
5947
  msgid "all packages update failed"
5529
- msgstr ""
5948
+ msgstr "ਸਭ ਪੈਕੇਜ ਅੱਪਡੇਟ ਫੇਲ ਹੋਏ"
5530
5949
 
5531
5950
  msgid "allow unauthenticed pull of container images"
5532
5951
  msgstr ""
@@ -5534,17 +5953,21 @@ msgstr ""
5534
5953
  msgid "already belongs to the content view"
5535
5954
  msgstr ""
5536
5955
 
5956
+ #, fuzzy
5537
5957
  msgid "already taken"
5538
- msgstr ""
5958
+ msgstr "ਪਹਿਲਾਂ ਹੀ ਟੈਂਪਲਿਟ ਵਿੱਚ ਹੈ"
5539
5959
 
5540
5960
  msgid "an ansible collection"
5541
5961
  msgstr ""
5542
5962
 
5963
+ #, fuzzy
5543
5964
  msgid "an erratum"
5544
- msgstr ""
5965
+ msgstr "ਇਰੱਟਮ ਇੰਸਟਾਲ ਕਰ ਰਿਹਾ ਹੈ..."
5545
5966
 
5967
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
5968
+ #, fuzzy
5546
5969
  msgid "an organization"
5547
- msgstr ""
5970
+ msgstr "ਸੰਗਠਨ"
5548
5971
 
5549
5972
  msgid "an ostree branch"
5550
5973
  msgstr ""
@@ -5564,35 +5987,42 @@ msgstr ""
5564
5987
  msgid "can the activation key have unlimited hosts"
5565
5988
  msgstr ""
5566
5989
 
5990
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5567
5991
  msgid "can't be blank"
5568
- msgstr ""
5992
+ msgstr "ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ"
5569
5993
 
5570
5994
  msgid "cannot add filter to import-only view"
5571
5995
  msgstr ""
5572
5996
 
5997
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5573
5998
  msgid "cannot be a binary file."
5574
- msgstr ""
5999
+ msgstr "ਬਾਇਨਰੀ ਫਾਇਲ ਨਹੀਂ ਹੋ ਸਕਦੀ।"
5575
6000
 
6001
+ #, fuzzy
5576
6002
  msgid "cannot be blank"
5577
- msgstr ""
6003
+ msgstr "ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ"
5578
6004
 
5579
6005
  msgid "cannot be blank when Repository URL is provided."
5580
6006
  msgstr ""
5581
6007
 
6008
+ #, fuzzy
5582
6009
  msgid "cannot be changed."
5583
- msgstr ""
6010
+ msgstr "ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ"
5584
6011
 
6012
+ #, fuzzy
5585
6013
  msgid "cannot be deleted if it has been promoted."
5586
- msgstr ""
6014
+ msgstr "ਰਿਪੋਜ਼ਟਰੀ ਅਯੋਗ ਨਹੀਂ ਕੀਤਾ ਜਾ ਸਕਦੀ ਕਿਉਂਕਿ ਇਹ ਪਹਿਲਾਂ ਹੀ ਪਰਮੋਟ ਹੋ ਗਈ ਹੈ।"
5587
6015
 
5588
6016
  msgid "cannot be less than one"
5589
6017
  msgstr ""
5590
6018
 
6019
+ #, fuzzy
5591
6020
  msgid "cannot be lower than current usage count (%s)"
5592
- msgstr ""
6021
+ msgstr "ਮੌਜੂਦਾ ਵਰਤੋਂ (%s) ਤੋਂ ਜਿਆਦਾ ਜਾਂ ਅਸੀਮਿਤ ਹੋਣਾ ਜਰੂਰੀ ਨਹੀਂ ਹੈ"
5593
6022
 
6023
+ #, fuzzy
5594
6024
  msgid "cannot be nil"
5595
- msgstr ""
6025
+ msgstr "ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ"
5596
6026
 
5597
6027
  msgid "cannot be set because unlimited hosts is set"
5598
6028
  msgstr ""
@@ -5604,19 +6034,21 @@ msgid "cannot be set for non-yum repositories."
5604
6034
  msgstr ""
5605
6035
 
5606
6036
  msgid "cannot contain characters other than ascii alpha numerals, '_', '-'. "
5607
- msgstr ""
6037
+ msgstr "ascii ਅਲਫਾ ਅੰਕੀ, '_', '-' ਤੋਂ ਵੱਖਰੇ ਅੱਖਰ ਨਹੀਂ ਹੋ ਸਕਦੇ।"
5608
6038
 
5609
6039
  msgid "cannot contain commas"
5610
6040
  msgstr ""
5611
6041
 
6042
+ #, fuzzy
5612
6043
  msgid "cannot contain filters if composite view"
5613
- msgstr ""
6044
+ msgstr "ASCII ਮੁੱਲਾਂ ਤੋਂ ਵੱਖਰੇ ਅੱਖਰ ਨਹੀਂ ਹੋਣੇ ਚਾਹੀਦੇ"
5614
6045
 
5615
6046
  msgid "cannot contain filters whose repositories do not belong to this content view"
5616
6047
  msgstr ""
5617
6048
 
6049
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5618
6050
  msgid "cannot contain more than %s characters"
5619
- msgstr ""
6051
+ msgstr "%s ਅੱਖਰਾਂ ਤੋਂ ਜਿਆਦਾ ਨਹੀਂ ਹੋ ਸਕਦੇ"
5620
6052
 
5621
6053
  msgid "checking Candlepin task status"
5622
6054
  msgstr ""
@@ -5663,11 +6095,13 @@ msgstr ""
5663
6095
  msgid "content view numeric identifier"
5664
6096
  msgstr ""
5665
6097
 
6098
+ #, fuzzy
5666
6099
  msgid "content view publish"
5667
- msgstr ""
6100
+ msgstr "ਸੰਖੇਪ"
5668
6101
 
6102
+ #, fuzzy
5669
6103
  msgid "content view refresh"
5670
- msgstr ""
6104
+ msgstr "ਸੰਖੇਪ"
5671
6105
 
5672
6106
  msgid "content view to reassign orphaned activation keys to"
5673
6107
  msgstr ""
@@ -5738,8 +6172,9 @@ msgstr ""
5738
6172
  msgid "environment to reassign orphaned systems to"
5739
6173
  msgstr ""
5740
6174
 
6175
+ #, fuzzy
5741
6176
  msgid "environments"
5742
- msgstr ""
6177
+ msgstr "ਇਨਵਾਇਰਮੈਂਟ"
5743
6178
 
5744
6179
  msgid "errata_id of the content view filter rule"
5745
6180
  msgstr ""
@@ -5783,6 +6218,9 @@ msgstr ""
5783
6218
  msgid "filter identifier"
5784
6219
  msgstr ""
5785
6220
 
6221
+ msgid "filter identifiers"
6222
+ msgstr ""
6223
+
5786
6224
  msgid "filter only environments containing this name"
5787
6225
  msgstr ""
5788
6226
 
@@ -5795,8 +6233,9 @@ msgstr ""
5795
6233
  msgid "foreman-tasks service not running or is not ready yet"
5796
6234
  msgstr ""
5797
6235
 
6236
+ #, fuzzy
5798
6237
  msgid "has already been taken"
5799
- msgstr ""
6238
+ msgstr "ਪਹਿਲਾਂ ਹੀ ਟੈਂਪਲਿਟ ਵਿੱਚ ਹੈ"
5800
6239
 
5801
6240
  msgid "has already been taken for a product in this organization."
5802
6241
  msgstr ""
@@ -5843,23 +6282,29 @@ msgstr ""
5843
6282
  msgid "initiating Pulp task"
5844
6283
  msgstr ""
5845
6284
 
6285
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5846
6286
  msgid "installing errata..."
5847
- msgstr ""
6287
+ msgstr "ਇਰੱਟਾ ਇੰਸਟਾਲ ਕਰ ਰਿਹਾ ਹੈ..."
5848
6288
 
6289
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5849
6290
  msgid "installing erratum..."
5850
- msgstr ""
6291
+ msgstr "ਇਰੱਟਮ ਇੰਸਟਾਲ ਕਰ ਰਿਹਾ ਹੈ..."
5851
6292
 
6293
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5852
6294
  msgid "installing package group..."
5853
- msgstr ""
6295
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਹੋ ਰਿਹਾ ਹੈ..."
5854
6296
 
6297
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5855
6298
  msgid "installing package groups..."
5856
- msgstr ""
6299
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ..."
5857
6300
 
6301
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5858
6302
  msgid "installing package..."
5859
- msgstr ""
6303
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਿਹਾ ਹੈ..."
5860
6304
 
6305
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5861
6306
  msgid "installing packages..."
5862
- msgstr ""
6307
+ msgstr "ਪੈਕੇਜ ਇੰਸਟਾਲ ਹੋ ਰਹੇ ਹਨ..."
5863
6308
 
5864
6309
  msgid "interpret specified object to return only Repositories that can be associated with specified object. Only 'content_view' & 'content_view_version' are supported."
5865
6310
  msgstr ""
@@ -5873,9 +6318,13 @@ msgstr ""
5873
6318
  msgid "is already attached to the capsule"
5874
6319
  msgstr ""
5875
6320
 
6321
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author jassy
5876
6322
  msgid "is invalid"
5877
6323
  msgstr "ਯੋਗ ਹੈ"
5878
6324
 
6325
+ msgid "is not enabled. must be one of the following: %s"
6326
+ msgstr ""
6327
+
5879
6328
  msgid "label of the environment"
5880
6329
  msgstr ""
5881
6330
 
@@ -5909,9 +6358,6 @@ msgstr ""
5909
6358
  msgid "maximum number of registered content hosts"
5910
6359
  msgstr ""
5911
6360
 
5912
- msgid "maximum size of each ISO in MB"
5913
- msgstr ""
5914
-
5915
6361
  msgid "may not be less than the number of hosts associated with the host collection."
5916
6362
  msgstr ""
5917
6363
 
@@ -5924,8 +6370,9 @@ msgstr ""
5924
6370
  msgid "must be %{gpg_key} or %{cert}"
5925
6371
  msgstr ""
5926
6372
 
6373
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5927
6374
  msgid "must be a positive integer value."
5928
- msgstr ""
6375
+ msgstr "ਧਨਾਤਮਕ ਅੰਕ ਮੁੱਲ ਹੋਣਾ ਜਰੂਰੀ ਹੈ।"
5929
6376
 
5930
6377
  msgid "must be one of the following: %s"
5931
6378
  msgstr ""
@@ -5933,17 +6380,21 @@ msgstr ""
5933
6380
  msgid "must be one of: %s"
5934
6381
  msgstr ""
5935
6382
 
6383
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5936
6384
  msgid "must be unique within one organization"
5937
- msgstr ""
6385
+ msgstr "ਇੱਕ ਸੰਗਠਨ ਵਿੱਚ ਵੱਖਰਾਂ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
5938
6386
 
6387
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5939
6388
  msgid "must contain '%s'"
5940
- msgstr ""
6389
+ msgstr "'%s' ਸ਼ਾਮਿਲ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
5941
6390
 
6391
+ #, fuzzy
5942
6392
  msgid "must contain GPG Key"
5943
- msgstr ""
6393
+ msgstr "GPG ਕੁੰਜੀ"
5944
6394
 
6395
+ # translation auto-copied from project CFSE, version sam-1.2, document app
5945
6396
  msgid "must contain at least %s character"
5946
- msgstr ""
6397
+ msgstr "ਘੱਟੋ-ਘੱਟ %s ਅੱਖਰ ਹੋਣੇ ਜਰੂਰੀ ਹਨ"
5947
6398
 
5948
6399
  msgid "must contain valid Public GPG Key"
5949
6400
  msgstr ""
@@ -5951,8 +6402,9 @@ msgstr ""
5951
6402
  msgid "must contain valid Public GPG Key"
5952
6403
  msgstr ""
5953
6404
 
6405
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5954
6406
  msgid "must not contain leading or trailing white spaces."
5955
- msgstr ""
6407
+ msgstr "ਸ਼ੁਰੂ ਅਤੇ ਅੰਤ ਵਿੱਚ ਖਾਲੀ ਸਪੇਸ ਹੋਣੀ ਜਰੂਰੀ ਹੈ।"
5956
6408
 
5957
6409
  msgid "name"
5958
6410
  msgstr ""
@@ -5981,8 +6433,9 @@ msgstr ""
5981
6433
  msgid "name of the subscription"
5982
6434
  msgstr ""
5983
6435
 
6436
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
5984
6437
  msgid "name: %s doesn't exist "
5985
- msgstr ""
6438
+ msgstr "ਨਾਂ: %s ਮੌਜੂਦ ਨਹੀਂ ਹੈ"
5986
6439
 
5987
6440
  msgid "new name for the filter"
5988
6441
  msgstr ""
@@ -5999,8 +6452,9 @@ msgstr ""
5999
6452
  msgid "obtain manifest history for subscriptions"
6000
6453
  msgstr ""
6001
6454
 
6455
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6002
6456
  msgid "of environment must be unique within one organization"
6003
- msgstr ""
6457
+ msgstr "ਸੰਗਠਨ ਵਿੱਚ ਵੱਖਰਾ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
6004
6458
 
6005
6459
  msgid "only repositories having at least one of the specified content type ex: rpm , erratum"
6006
6460
  msgstr ""
@@ -6074,17 +6528,21 @@ msgstr ""
6074
6528
  msgid "register_hostname_fact set for %s, but no fact found, or was localhost."
6075
6529
  msgstr ""
6076
6530
 
6531
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6077
6532
  msgid "removing package group..."
6078
- msgstr ""
6533
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾ ਰਿਹਾ ਹੈ..."
6079
6534
 
6535
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6080
6536
  msgid "removing package groups..."
6081
- msgstr ""
6537
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਹਟਾਏ ਜਾ ਰਹੇ ਹਨ..."
6082
6538
 
6539
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6083
6540
  msgid "removing package..."
6084
- msgstr ""
6541
+ msgstr "ਪੈਕੇਜ ਹਟਾ ਰਿਹਾ ਹੈ..."
6085
6542
 
6543
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6086
6544
  msgid "removing packages..."
6087
- msgstr ""
6545
+ msgstr "ਪੈਕੇਜ ਹਟਾਏ ਜਾ ਰਹੇ ਹਨ..."
6088
6546
 
6089
6547
  msgid "repo label"
6090
6548
  msgstr ""
@@ -6164,8 +6622,9 @@ msgstr ""
6164
6622
  msgid "temporarily override feed URL for sync"
6165
6623
  msgstr ""
6166
6624
 
6625
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6167
6626
  msgid "the following attributes can not be updated for the Red Hat provider: [ %s ]"
6168
- msgstr ""
6627
+ msgstr "Red Hat ਪਰੋਵਾਈਡਰ ਲਈ ਹੇਠਲੇ ਐਟਰੀਬਿਊਟ ਅੱਪਡੇਟ ਨਹੀਂ ਕੀਤੇ ਜਾ ਸਕਦੇ: [ %s ]"
6169
6628
 
6170
6629
  msgid "true if the latest version of the component's content view is desired"
6171
6630
  msgstr ""
@@ -6194,17 +6653,21 @@ msgstr ""
6194
6653
  msgid "update a filter"
6195
6654
  msgstr ""
6196
6655
 
6656
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6197
6657
  msgid "updating package group..."
6198
- msgstr ""
6658
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਹੋ ਰਿਹਾ ਹੈ..."
6199
6659
 
6660
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6200
6661
  msgid "updating package groups..."
6201
- msgstr ""
6662
+ msgstr "ਪੈਕੇਜ ਗਰੁੱਪ ਅੱਪਡੇਟ ਹੋ ਰਹੇ ਹਨ..."
6202
6663
 
6664
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6203
6665
  msgid "updating package..."
6204
- msgstr ""
6666
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਹੋ ਰਿਹਾ ਹੈ..."
6205
6667
 
6668
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author jassy
6206
6669
  msgid "updating packages..."
6207
- msgstr ""
6670
+ msgstr "ਪੈਕੇਜ ਅੱਪਡੇਟ ਹੋ ਰਹੇ ਹਨ..."
6208
6671
 
6209
6672
  msgid "url not defined."
6210
6673
  msgstr ""