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/it/katello.po CHANGED
@@ -1,26 +1,26 @@
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
- # Marco Calamaro <ottopodo@gmail.com>, 2020
8
- # Andrea Perotti, 2021
9
- # 0868a4d1af5275b3f70b0a6dac4c99a4, 2021
10
- # Bryan Kearney <bryan.kearney@gmail.com>, 2021
11
- #
6
+ # Miroslav Suchy <msuchy@redhat.com>, 2012-2013.
7
+ # fvalen <fvalen@redhat.com>, 2012. #zanata
8
+ # fvalen <fvalen@redhat.com>, 2013. #zanata
9
+ # fvalen <fvalen@redhat.com>, 2014. #zanata
10
+ # fvalen <fvalen@redhat.com>, 2015. #zanata
12
11
  msgid ""
13
12
  msgstr ""
14
- "Project-Id-Version: katello 2.4.0-RC1\n"
13
+ "Project-Id-Version: version 0.0.1\n"
15
14
  "Report-Msgid-Bugs-To: \n"
16
- "PO-Revision-Date: 2017-12-19 20:14+0000\n"
17
- "Last-Translator: Bryan Kearney <bryan.kearney@gmail.com>, 2021\n"
18
- "Language-Team: Italian (https://www.transifex.com/foreman/teams/114/it/)\n"
15
+ "PO-Revision-Date: 2015-04-28 12:59+0000\n"
16
+ "Last-Translator: fvalen <fvalen@redhat.com>\n"
17
+ "Language-Team: LANGUAGE <LL@li.org>\n"
18
+ "Language: it\n"
19
19
  "MIME-Version: 1.0\n"
20
20
  "Content-Type: text/plain; charset=UTF-8\n"
21
21
  "Content-Transfer-Encoding: 8bit\n"
22
- "Language: it\n"
23
22
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
23
+ "X-Generator: Zanata 3.6.0\n"
24
24
 
25
25
  msgid ""
26
26
  "\n"
@@ -36,7 +36,7 @@ msgstr ""
36
36
  msgid " %{package_count} Package(s)"
37
37
  msgstr ""
38
38
 
39
- msgid " Content view updated."
39
+ msgid " Content view updated"
40
40
  msgstr ""
41
41
 
42
42
  msgid " Either select the latest content view or the content view version. Cannot set both."
@@ -45,6 +45,10 @@ msgstr ""
45
45
  msgid " RPMs"
46
46
  msgstr ""
47
47
 
48
+ msgid " View task details "
49
+ msgstr ""
50
+
51
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
48
52
  msgid " environment cannot be set to an environment already on its path"
49
53
  msgstr "l'ambiente non può essere impostato su un ambiente già presente nel proprio percorso"
50
54
 
@@ -278,6 +282,7 @@ msgstr ""
278
282
  msgid ", must be unique to major and version id version."
279
283
  msgstr ""
280
284
 
285
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
281
286
  msgid ": '%s' is a built-in environment"
282
287
  msgstr ": '%s' è un ambiente interno"
283
288
 
@@ -314,8 +319,11 @@ msgstr "Un numero molto grande di errata è stato sincronizzato per questo repos
314
319
  msgid "A list of subscriptions expiring soon"
315
320
  msgstr ""
316
321
 
322
+ msgid "A new version of "
323
+ msgstr ""
324
+
317
325
  msgid "A post-promotion summary of hosts with installable errata"
318
- msgstr "Un sommario post-avanzamento di host con errata installabili"
326
+ msgstr ""
319
327
 
320
328
  msgid "A server operating in disconnected mode does not communicate with the Red Hat CDN."
321
329
  msgstr ""
@@ -323,7 +331,7 @@ msgstr ""
323
331
  msgid "A service level for auto-healing process, e.g. SELF-SUPPORT"
324
332
  msgstr "Un livello di servizio per il processo auto-healing, es. SELF-SUPPORT"
325
333
 
326
- msgid "A smart proxy seems to have been refreshed without pulpcore being running. You may want to "
334
+ 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."
327
335
  msgstr ""
328
336
 
329
337
  msgid "A summary of available and applicable errata for your hosts"
@@ -342,10 +350,10 @@ msgid "Accept action timeout"
342
350
  msgstr ""
343
351
 
344
352
  msgid "Account Number"
345
- msgstr "Numero account"
353
+ msgstr ""
346
354
 
347
355
  msgid "Action"
348
- msgstr "Azione"
356
+ msgstr ""
349
357
 
350
358
  msgid "Action not allowed for the default smart proxy."
351
359
  msgstr ""
@@ -365,33 +373,39 @@ msgstr "Chiavi di attivazione"
365
373
  msgid "Activation key ID"
366
374
  msgstr "ID chiave di attivazione"
367
375
 
368
- 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."
376
+ msgid "Activation key for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. For multiple keys use `activation_keys` param instead."
369
377
  msgstr ""
370
378
 
371
379
  msgid "Activation key(s) for Subscription Manager."
372
380
  msgstr ""
373
381
 
374
- 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"
375
- msgstr ""
376
-
377
382
  msgid "Activation keys and subscriptions can be managed"
378
383
  msgstr "È possibile gestire le chiavi di attivazione e le sottoscrizioni."
379
384
 
385
+ msgid "Activation keys for subscription-manager client, required for CentOS and Red Hat Enterprise Linux. Required only if host group has no activation keys."
386
+ msgstr ""
387
+
380
388
  msgid "Activation keys: "
381
389
  msgstr ""
382
390
 
383
391
  msgid "Active Subscriptions"
384
- msgstr "Sottoscrizioni attive"
392
+ msgstr ""
385
393
 
386
394
  msgid "Active only"
387
395
  msgstr "Solo attivo"
388
396
 
397
+ msgid "Add"
398
+ msgstr ""
399
+
389
400
  msgid "Add Subscriptions"
390
401
  msgstr ""
391
402
 
392
403
  msgid "Add a subscription to a host"
393
404
  msgstr ""
394
405
 
406
+ msgid "Add component"
407
+ msgstr ""
408
+
395
409
  msgid "Add components to the content view"
396
410
  msgstr ""
397
411
 
@@ -434,6 +448,9 @@ msgstr ""
434
448
  msgid "Added Content:"
435
449
  msgstr "Contenuto aggiunto:"
436
450
 
451
+ msgid "Added component to content view"
452
+ msgstr ""
453
+
437
454
  msgid "Adding content units"
438
455
  msgstr ""
439
456
 
@@ -458,6 +475,12 @@ msgstr ""
458
475
  msgid "All errata applied"
459
476
  msgstr ""
460
477
 
478
+ msgid "Allow Host registrations to bypass 'Host Profile Assume' as long as the host is in build mode."
479
+ msgstr ""
480
+
481
+ msgid "Allow hosts to re-register themselves only when they are in build mode"
482
+ msgstr ""
483
+
461
484
  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."
462
485
  msgstr ""
463
486
 
@@ -467,6 +490,9 @@ msgstr ""
467
490
  msgid "Always Use Latest (currently %{version})"
468
491
  msgstr ""
469
492
 
493
+ msgid "Always update to latest version"
494
+ msgstr ""
495
+
470
496
  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."
471
497
  msgstr ""
472
498
 
@@ -497,7 +523,7 @@ msgid "Applicability Batch Size"
497
523
  msgstr ""
498
524
 
499
525
  msgid "Arch"
500
- msgstr "Arch"
526
+ msgstr ""
501
527
 
502
528
  msgid "Architecture"
503
529
  msgstr ""
@@ -506,7 +532,7 @@ msgid "Architecture of content in the repository"
506
532
  msgstr ""
507
533
 
508
534
  msgid "Architecture(s)"
509
- msgstr "Architetture"
535
+ msgstr ""
510
536
 
511
537
  msgid "Are you sure you want to delete the manifest?"
512
538
  msgstr ""
@@ -571,7 +597,7 @@ msgid "Associated location IDs"
571
597
  msgstr ""
572
598
 
573
599
  msgid "Associations"
574
- msgstr "Associazioni"
600
+ msgstr ""
575
601
 
576
602
  msgid "At least one Content View Version must be specified"
577
603
  msgstr "Specificare almeno una versione della visualizzazione dei contenuti"
@@ -585,6 +611,7 @@ msgstr "Almeno una chiave di attivazione deve avere un ambiente ciclo di vita e
585
611
  msgid "At least one organization must exist."
586
612
  msgstr "Deve essere presente almeno una organizzazione."
587
613
 
614
+ # translation auto-copied from project rhsm-web, version 0.0, document management, author fvalen
588
615
  msgid "Attach a subscription"
589
616
  msgstr "Aggiungi una sottoscrizione "
590
617
 
@@ -597,8 +624,14 @@ msgstr ""
597
624
  msgid "Attempted to destroy consumer %s from candlepin, but consumer does not exist in candlepin"
598
625
  msgstr ""
599
626
 
627
+ msgid "Auth URL requires Auth token be set."
628
+ msgstr ""
629
+
630
+ msgid "Auth token requires Auth URL be set."
631
+ msgstr ""
632
+
600
633
  msgid "Author"
601
- msgstr "Autore"
634
+ msgstr ""
602
635
 
603
636
  msgid "Auto Publish"
604
637
  msgstr ""
@@ -642,6 +675,7 @@ msgstr "Architettura di base da abilitare"
642
675
  msgid "Batch size to sync repositories in."
643
676
  msgstr ""
644
677
 
678
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
645
679
  msgid "Beta"
646
680
  msgstr "Beta"
647
681
 
@@ -657,9 +691,11 @@ msgstr ""
657
691
  msgid "Branches updated"
658
692
  msgstr ""
659
693
 
694
+ # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
660
695
  msgid "Bug Fix"
661
696
  msgstr "Bug Fix"
662
697
 
698
+ # translation auto-copied from project Satellite6 Bastion Katello, version 6.1, document bastion_katello
663
699
  msgid "Bugfix"
664
700
  msgstr "Bugfix"
665
701
 
@@ -702,9 +738,11 @@ msgstr "È possibile rimuovere il contenuto solo da una Visualizzazione del cont
702
738
  msgid "Can only upload to Yum Repositories."
703
739
  msgstr ""
704
740
 
741
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
705
742
  msgid "Can't update the '%s' environment"
706
743
  msgstr "Impossibile aggiornare l'ambiente '%s'"
707
744
 
745
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman
708
746
  msgid "Cancel"
709
747
  msgstr "Cancella"
710
748
 
@@ -714,8 +752,10 @@ msgstr "Cancella scoperta repositorio"
714
752
  msgid "Cancel running smart proxy synchronization"
715
753
  msgstr ""
716
754
 
755
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
756
+ #, fuzzy
717
757
  msgid "Canceled"
718
- msgstr "Annullato"
758
+ msgstr "Cancellata."
719
759
 
720
760
  msgid "Cancelled"
721
761
  msgstr ""
@@ -771,6 +811,7 @@ msgstr "Impossibile rimuovere '%{view}' a causa di %{dependent} associato: %{nam
771
811
  msgid "Cannot delete Red Hat product: %{product}"
772
812
  msgstr ""
773
813
 
814
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
774
815
  msgid "Cannot delete from %s, view does not exist there."
775
816
  msgstr "Impossibile eseguire la rimozione da %s, la visuale non esiste."
776
817
 
@@ -825,6 +866,7 @@ msgstr ""
825
866
  msgid "Cannot publish default content view"
826
867
  msgstr "Impossibile pubblicare la visualizzazione del contenuto predefinita"
827
868
 
869
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
828
870
  msgid "Cannot register a system to the '%s' environment"
829
871
  msgstr "Impossibile registrare un sistema con l'ambiente '%s'"
830
872
 
@@ -871,7 +913,7 @@ msgid "Check services before actions"
871
913
  msgstr ""
872
914
 
873
915
  msgid "Checksum"
874
- msgstr "Checksum"
916
+ msgstr ""
875
917
 
876
918
  msgid "Checksum of file to upload"
877
919
  msgstr ""
@@ -888,12 +930,14 @@ msgstr ""
888
930
  msgid "Click here to go to the tasks page for the task."
889
931
  msgstr ""
890
932
 
933
+ # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
891
934
  msgid "Clone"
892
935
  msgstr "Clona"
893
936
 
894
937
  msgid "Close"
895
- msgstr "Chiudi"
938
+ msgstr ""
896
939
 
940
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
897
941
  msgid "Collapse All"
898
942
  msgstr "Comprimi tutto"
899
943
 
@@ -906,12 +950,16 @@ msgstr ""
906
950
  msgid "Comma-separated list of tags to sync for Container Image repository"
907
951
  msgstr ""
908
952
 
953
+ # translation auto-copied from project [RHEL] [STORAGE] DM Multipath, version 6.4, document MPIO_Overview
909
954
  msgid "Component"
910
955
  msgstr "Componente"
911
956
 
912
957
  msgid "Component Content View"
913
958
  msgstr ""
914
959
 
960
+ msgid "Component content view"
961
+ msgstr ""
962
+
915
963
  msgid "Composite Content View"
916
964
  msgstr ""
917
965
 
@@ -922,7 +970,7 @@ msgid "Composite content view"
922
970
  msgstr "Visualizzazione contenuto composita"
923
971
 
924
972
  msgid "Compute resource IDs"
925
- msgstr "ID risorsa di calcolo"
973
+ msgstr ""
926
974
 
927
975
  msgid "Confirm Deletion"
928
976
  msgstr ""
@@ -933,8 +981,11 @@ msgstr ""
933
981
  msgid "Consider changing the Lifecycle Environment's Registry Name Pattern to something more specific."
934
982
  msgstr ""
935
983
 
984
+ msgid "Consisting of multiple component content views"
985
+ msgstr ""
986
+
936
987
  msgid "Consumed"
937
- msgstr "Consumati"
988
+ msgstr ""
938
989
 
939
990
  msgid "Container Image Manifest"
940
991
  msgstr ""
@@ -957,6 +1008,7 @@ msgstr ""
957
1008
  msgid "Container image tag"
958
1009
  msgstr ""
959
1010
 
1011
+ # translation auto-copied from project Red Hat Satellite User Guide, version 6.0, document appe-Glossary_of_Terms, author fvalen
960
1012
  msgid "Content"
961
1013
  msgstr "Contenuto"
962
1014
 
@@ -970,7 +1022,7 @@ msgid "Content Credentials"
970
1022
  msgstr ""
971
1023
 
972
1024
  msgid "Content Download URL"
973
- msgstr "URL per scaricare il contenuto"
1025
+ msgstr ""
974
1026
 
975
1027
  msgid "Content Facet for host with id %s is non-existent. Skipping applicability calculation."
976
1028
  msgstr ""
@@ -987,6 +1039,7 @@ msgstr ""
987
1039
  msgid "Content Types"
988
1040
  msgstr ""
989
1041
 
1042
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
990
1043
  msgid "Content View"
991
1044
  msgstr "Visualizzazione contenuto"
992
1045
 
@@ -1002,6 +1055,8 @@ msgstr ""
1002
1055
  msgid "Content View Details"
1003
1056
  msgstr ""
1004
1057
 
1058
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
1059
+ #, fuzzy
1005
1060
  msgid "Content View Filter id"
1006
1061
  msgstr "Panoramica visualizzazioni contenuto"
1007
1062
 
@@ -1032,6 +1087,7 @@ msgstr ""
1032
1087
  msgid "Content View id"
1033
1088
  msgstr ""
1034
1089
 
1090
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
1035
1091
  msgid "Content Views"
1036
1092
  msgstr "Visualizzazioni contenuto"
1037
1093
 
@@ -1053,12 +1109,19 @@ msgstr ""
1053
1109
  msgid "Content type"
1054
1110
  msgstr ""
1055
1111
 
1112
+ msgid "Content type %{content_type_string} does not belong to an enabled repo type."
1113
+ msgstr ""
1114
+
1115
+ msgid "Content type %{content_type} is incompatible with repositories of type %{repo_type}"
1116
+ msgstr ""
1117
+
1056
1118
  msgid "Content view"
1057
1119
  msgstr ""
1058
1120
 
1059
1121
  msgid "Content view ${name} created"
1060
1122
  msgstr ""
1061
1123
 
1124
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
1062
1125
  msgid "Content view '%{view}' is not in environment '%{env}'"
1063
1126
  msgstr "La visualizzazione del contenuto '%{view}' non è presente nell'ambiente '%{env}'"
1064
1127
 
@@ -1102,10 +1165,13 @@ msgid "Context"
1102
1165
  msgstr ""
1103
1166
 
1104
1167
  msgid "Contract"
1105
- msgstr "Contratto"
1168
+ msgstr ""
1106
1169
 
1107
1170
  msgid "Contract Number"
1108
- msgstr "Numero contratto"
1171
+ msgstr ""
1172
+
1173
+ msgid "Copy"
1174
+ msgstr ""
1109
1175
 
1110
1176
  msgid "Copy an activation key"
1111
1177
  msgstr "Copia una chiave di attivazione"
@@ -1182,6 +1248,7 @@ msgstr "Impossibile trovare l'id '%s' per la visualizzazione del contenuto dell'
1182
1248
  msgid "Couldn't find content host environment '%s'"
1183
1249
  msgstr "Impossibile trovare l'ambiente dell'host di contenuto '%s'"
1184
1250
 
1251
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
1185
1252
  msgid "Couldn't find content view '%s'"
1186
1253
  msgstr "Impossibile trovare la visualizzazione del contenuto '%s'"
1187
1254
 
@@ -1224,6 +1291,7 @@ msgstr "Impossibile trovare il soggetto della sincronizzazione"
1224
1291
  msgid "Count"
1225
1292
  msgstr ""
1226
1293
 
1294
+ # translation auto-copied from project NetworkManager, version 0.9.9.0, document NetworkManager, author fvalen
1227
1295
  msgid "Create"
1228
1296
  msgstr "Crea"
1229
1297
 
@@ -1275,6 +1343,12 @@ msgstr "Crea un ambiente in una organizzazione"
1275
1343
  msgid "Create an upload request"
1276
1344
  msgstr "Crea una richiesta di ricarica"
1277
1345
 
1346
+ msgid "Create content view"
1347
+ msgstr ""
1348
+
1349
+ msgid "Create filter"
1350
+ msgstr ""
1351
+
1278
1352
  msgid "Create organization"
1279
1353
  msgstr "Crea organizzazione"
1280
1354
 
@@ -1306,7 +1380,7 @@ msgid "Database connection"
1306
1380
  msgstr ""
1307
1381
 
1308
1382
  msgid "Date"
1309
- msgstr "Data"
1383
+ msgstr ""
1310
1384
 
1311
1385
  msgid "Date format is incorrect."
1312
1386
  msgstr "Il formato della data non è corretto."
@@ -1323,6 +1397,7 @@ msgstr ""
1323
1397
  msgid "Deb Packages"
1324
1398
  msgstr ""
1325
1399
 
1400
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
1326
1401
  msgid "Debug Certificate"
1327
1402
  msgstr "Certificato di debug"
1328
1403
 
@@ -1425,6 +1500,7 @@ msgstr ""
1425
1500
  msgid "Default user data for new Operating Systems created from synced content"
1426
1501
  msgstr ""
1427
1502
 
1503
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
1428
1504
  msgid "Delete"
1429
1505
  msgstr "Cancella"
1430
1506
 
@@ -1437,6 +1513,7 @@ msgstr ""
1437
1513
  msgid "Delete Lifecycle Environment"
1438
1514
  msgstr "Cancella ambiente ciclo di vita"
1439
1515
 
1516
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
1440
1517
  msgid "Delete Manifest"
1441
1518
  msgstr "Cancella il manifesto"
1442
1519
 
@@ -1473,6 +1550,9 @@ msgstr "Cancella richiesta di ricarica"
1473
1550
  msgid "Delete manifest from Red Hat provider"
1474
1551
  msgstr "Cancella manifesto dal provider Red Hat"
1475
1552
 
1553
+ msgid "Delete multiple filters from a content view"
1554
+ msgstr ""
1555
+
1476
1556
  msgid "Deleted consumer '%s'"
1477
1557
  msgstr "Utenza '%s' rimossa"
1478
1558
 
@@ -1483,7 +1563,7 @@ msgid "Deleting manifest in '%{subject}' failed."
1483
1563
  msgstr ""
1484
1564
 
1485
1565
  msgid "Description"
1486
- msgstr "Descrizione"
1566
+ msgstr ""
1487
1567
 
1488
1568
  msgid "Description for the content view"
1489
1569
  msgstr "Descrizione visualizzazione del contenuto"
@@ -1548,12 +1628,16 @@ msgstr "Elimina uno o più repositori"
1548
1628
  msgid "Details"
1549
1629
  msgstr "Dettagli"
1550
1630
 
1631
+ msgid "Determining settings for ${name}"
1632
+ msgstr ""
1633
+
1551
1634
  msgid "Directly setting package lists on composite content views is not allowed. Please update the components, then re-publish the composite."
1552
1635
  msgstr ""
1553
1636
 
1554
1637
  msgid "Directory containing the exported Content View Version"
1555
1638
  msgstr ""
1556
1639
 
1640
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author fvalen
1557
1641
  msgid "Disable"
1558
1642
  msgstr "Disabilita"
1559
1643
 
@@ -1576,7 +1660,7 @@ msgid "Disconnected mode"
1576
1660
  msgstr ""
1577
1661
 
1578
1662
  msgid "Discover"
1579
- msgstr "Trova"
1663
+ msgstr ""
1580
1664
 
1581
1665
  msgid "Discover Repositories"
1582
1666
  msgstr "Trova repositori"
@@ -1591,7 +1675,7 @@ msgid "Do not wait for the update action to finish. Default: true"
1591
1675
  msgstr ""
1592
1676
 
1593
1677
  msgid "Domain IDs"
1594
- msgstr "ID del dominio"
1678
+ msgstr ""
1595
1679
 
1596
1680
  msgid "Download Policy of the capsule, must be one of %s"
1597
1681
  msgstr ""
@@ -1602,12 +1686,14 @@ msgstr "Scarica un certificato di debug"
1602
1686
  msgid "Duplicate branches specified - %{branches}"
1603
1687
  msgstr ""
1604
1688
 
1689
+ # translation auto-copied from project totem, version 3.8.2, document totem
1605
1690
  msgid "Duration"
1606
1691
  msgstr "Durata"
1607
1692
 
1608
1693
  msgid "ERRATA ADVISORY"
1609
1694
  msgstr ""
1610
1695
 
1696
+ # translation auto-copied from project nm-applet, version 0.8.1, document nm-applet
1611
1697
  msgid "Edit"
1612
1698
  msgstr "Modifica"
1613
1699
 
@@ -1632,6 +1718,7 @@ msgstr ""
1632
1718
  msgid "Either set the latest content view or the content view version. Cannot set both"
1633
1719
  msgstr ""
1634
1720
 
1721
+ # translation auto-copied from project Satellite6 Foreman Discovery, version 6.1, document foreman_discovery, author fvalen
1635
1722
  msgid "Enable"
1636
1723
  msgstr "Abilita"
1637
1724
 
@@ -1648,20 +1735,21 @@ msgid "Enable/Disable auto publish of composite view"
1648
1735
  msgstr ""
1649
1736
 
1650
1737
  msgid "Enabled"
1651
- msgstr "Abilitato"
1738
+ msgstr ""
1652
1739
 
1653
1740
  msgid "Enabled Repositories"
1654
- msgstr "Repositori abilitati"
1741
+ msgstr ""
1655
1742
 
1656
1743
  msgid "Enabling Simple Content Access failed for '%{subject}'."
1657
1744
  msgstr ""
1658
1745
 
1659
1746
  msgid "End Date"
1660
- msgstr "Data di fine"
1747
+ msgstr ""
1661
1748
 
1662
1749
  msgid "Ends"
1663
- msgstr "Termina"
1750
+ msgstr ""
1664
1751
 
1752
+ # translation auto-copied from project CFSE, version sam-1.2, document app
1665
1753
  msgid "Enhancement"
1666
1754
  msgstr "Miglioramenti"
1667
1755
 
@@ -1672,7 +1760,7 @@ msgid "Environment"
1672
1760
  msgstr "Ambiente"
1673
1761
 
1674
1762
  msgid "Environment IDs"
1675
- msgstr "ID ambiente"
1763
+ msgstr ""
1676
1764
 
1677
1765
  msgid "Environment cannot be in its own promotion path"
1678
1766
  msgstr "L'ambiente non può trovarsi sul proprio percorso di avanzamento"
@@ -1681,11 +1769,12 @@ msgid "Environment identifier"
1681
1769
  msgstr ""
1682
1770
 
1683
1771
  msgid "Environments"
1684
- msgstr "Ambienti"
1772
+ msgstr ""
1685
1773
 
1686
1774
  msgid "Errata"
1687
1775
  msgstr "Errata"
1688
1776
 
1777
+ # translation auto-copied from project Satellite6 Hammer CLI Katello, version 6.1, document hammer-cli-katello
1689
1778
  msgid "Errata ID"
1690
1779
  msgstr "ID errata"
1691
1780
 
@@ -1707,6 +1796,7 @@ msgstr ""
1707
1796
  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."
1708
1797
  msgstr ""
1709
1798
 
1799
+ # translation auto-copied from project Katello, version 0.1v, document app, author fvalen
1710
1800
  msgid "Erratum"
1711
1801
  msgstr "Erratum"
1712
1802
 
@@ -1722,6 +1812,7 @@ msgstr "installazione erratum fallita"
1722
1812
  msgid "Erratum Install Timed Out"
1723
1813
  msgstr "installazione erratum scaduta"
1724
1814
 
1815
+ # translation auto-copied from project passwd, version 0.79, document passwd
1725
1816
  msgid "Error"
1726
1817
  msgstr "Errore"
1727
1818
 
@@ -1741,7 +1832,7 @@ msgid "Exceeds available quantity"
1741
1832
  msgstr ""
1742
1833
 
1743
1834
  msgid "Exclude"
1744
- msgstr "Escludi"
1835
+ msgstr ""
1745
1836
 
1746
1837
  msgid "Excluded"
1747
1838
  msgstr ""
@@ -1749,6 +1840,7 @@ msgstr ""
1749
1840
  msgid "Exit"
1750
1841
  msgstr ""
1751
1842
 
1843
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
1752
1844
  msgid "Expand All"
1753
1845
  msgstr "Espandi tutti"
1754
1846
 
@@ -1756,7 +1848,7 @@ msgid "Expire soon days"
1756
1848
  msgstr ""
1757
1849
 
1758
1850
  msgid "Export"
1759
- msgstr "Esporta"
1851
+ msgstr ""
1760
1852
 
1761
1853
  msgid "Export CSV"
1762
1854
  msgstr ""
@@ -1767,18 +1859,12 @@ msgstr ""
1767
1859
  msgid "Export Types"
1768
1860
  msgstr ""
1769
1861
 
1770
- msgid "Export a repository"
1771
- msgstr ""
1772
-
1773
1862
  msgid "Export as CSV"
1774
1863
  msgstr ""
1775
1864
 
1776
1865
  msgid "Export history identifier used for incremental export. If not provided the most recent export history will be used."
1777
1866
  msgstr ""
1778
1867
 
1779
- msgid "Export to ISO format"
1780
- msgstr ""
1781
-
1782
1868
  msgid "Exported version"
1783
1869
  msgstr ""
1784
1870
 
@@ -1844,6 +1930,9 @@ msgstr ""
1844
1930
  msgid "Filter composite versions whose publish was triggered by the specified component version"
1845
1931
  msgstr ""
1846
1932
 
1933
+ msgid "Filter created"
1934
+ msgstr ""
1935
+
1847
1936
  msgid "Filter only composite content views"
1848
1937
  msgstr ""
1849
1938
 
@@ -1868,6 +1957,9 @@ msgstr "Filtra i prodotti per sottoscrizione"
1868
1957
  msgid "Filter products by sync plan id"
1869
1958
  msgstr ""
1870
1959
 
1960
+ msgid "Filter successfully deleted"
1961
+ msgstr ""
1962
+
1871
1963
  msgid "Filter versions by environment"
1872
1964
  msgstr "Filtra versioni per ambiente"
1873
1965
 
@@ -1881,7 +1973,10 @@ msgid "Filtered index content"
1881
1973
  msgstr ""
1882
1974
 
1883
1975
  msgid "Filters"
1884
- msgstr "Filtri"
1976
+ msgstr ""
1977
+
1978
+ msgid "Filters successfully deleted"
1979
+ msgstr ""
1885
1980
 
1886
1981
  msgid "Finish action timeout"
1887
1982
  msgstr ""
@@ -1922,8 +2017,9 @@ msgid "Fully entitled"
1922
2017
  msgstr ""
1923
2018
 
1924
2019
  msgid "GPG Key URL"
1925
- msgstr "URL chiave GPG"
2020
+ msgstr ""
1926
2021
 
2022
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
1927
2023
  msgid "Generate and Download"
1928
2024
  msgstr "Genera e scarica"
1929
2025
 
@@ -1967,7 +2063,7 @@ msgid "Group %{id} already created."
1967
2063
  msgstr ""
1968
2064
 
1969
2065
  msgid "Guests of"
1970
- msgstr "Guest di"
2066
+ msgstr ""
1971
2067
 
1972
2068
  msgid "HTTP Proxies"
1973
2069
  msgstr ""
@@ -1979,7 +2075,7 @@ msgid "Has to be > 0"
1979
2075
  msgstr ""
1980
2076
 
1981
2077
  msgid "History"
1982
- msgstr "Cronologia"
2078
+ msgstr ""
1983
2079
 
1984
2080
  msgid "History will appear here when the content view is published or promoted."
1985
2081
  msgstr ""
@@ -1996,6 +2092,9 @@ msgstr ""
1996
2092
  msgid "Host '%{name}' does not belong to an organization"
1997
2093
  msgstr ""
1998
2094
 
2095
+ msgid "Host Can Re-Register Only In Build"
2096
+ msgstr ""
2097
+
1999
2098
  msgid "Host Collection name"
2000
2099
  msgstr "Nome insieme di host"
2001
2100
 
@@ -2014,6 +2113,9 @@ msgstr ""
2014
2113
  msgid "Host Profile Assume"
2015
2114
  msgstr ""
2016
2115
 
2116
+ msgid "Host Profile Can Change In Build"
2117
+ msgstr ""
2118
+
2017
2119
  msgid "Host Subscription Status"
2018
2120
  msgstr ""
2019
2121
 
@@ -2042,7 +2144,7 @@ msgid "Host errata advisory"
2042
2144
  msgstr ""
2043
2145
 
2044
2146
  msgid "Host group IDs"
2045
- msgstr "ID gruppo di host"
2147
+ msgstr ""
2046
2148
 
2047
2149
  msgid "Host has not been registered with subscription-manager"
2048
2150
  msgstr ""
@@ -2056,7 +2158,7 @@ msgstr ""
2056
2158
  msgid "Host id to list applicable packages for"
2057
2159
  msgstr ""
2058
2160
 
2059
- msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this Foreman"
2161
+ msgid "Host was not found by the subscription UUID: '%s', this can happen if the host is registered already, but not to this instance"
2060
2162
  msgstr ""
2061
2163
 
2062
2164
  msgid "Host with ID %s already exists in the host collection."
@@ -2146,9 +2248,6 @@ msgstr "ID del programma di sincronizzazione"
2146
2248
  msgid "ID: %s doesn't exist "
2147
2249
  msgstr "ID: %s non esiste"
2148
2250
 
2149
- msgid "ISO export must be enabled when specifying ISO size"
2150
- msgstr ""
2151
-
2152
2251
  msgid "Id of a deb package to find repositories that contain the deb"
2153
2252
  msgstr ""
2154
2253
 
@@ -2270,7 +2369,7 @@ msgid "Immediate"
2270
2369
  msgstr ""
2271
2370
 
2272
2371
  msgid "Import"
2273
- msgstr "Importa"
2372
+ msgstr ""
2274
2373
 
2275
2374
  msgid "Import Content View Version"
2276
2375
  msgstr ""
@@ -2288,7 +2387,7 @@ msgid "Import Only"
2288
2387
  msgstr ""
2289
2388
 
2290
2389
  msgid "Import Puppet classes"
2291
- msgstr "Importa classi Puppet"
2390
+ msgstr ""
2292
2391
 
2293
2392
  msgid "Import Types"
2294
2393
  msgstr ""
@@ -2326,11 +2425,15 @@ msgstr ""
2326
2425
  msgid "Importing manifest into '%{subject}' failed."
2327
2426
  msgstr ""
2328
2427
 
2428
+ # translation auto-copied from project evolution, version 3.8.5, document evolution-3.8
2329
2429
  msgid "In Progress"
2330
2430
  msgstr "In corso"
2331
2431
 
2432
+ msgid "In progress"
2433
+ msgstr ""
2434
+
2332
2435
  msgid "Include"
2333
- msgstr "Includi"
2436
+ msgstr ""
2334
2437
 
2335
2438
  msgid "Included"
2336
2439
  msgstr ""
@@ -2428,6 +2531,7 @@ msgstr ""
2428
2531
  msgid "Installation of package(s) requested: %{packages}"
2429
2532
  msgstr ""
2430
2533
 
2534
+ # translation auto-copied from project RHN Satellite UI, version 5.6, document java/code/src/com/redhat/rhn/frontend/strings/jsp/StringResource
2431
2535
  msgid "Installed Packages"
2432
2536
  msgstr "Pacchetti installati"
2433
2537
 
@@ -2444,7 +2548,7 @@ msgid "Instance update"
2444
2548
  msgstr ""
2445
2549
 
2446
2550
  msgid "Instance-based"
2447
- msgstr "Basato sull'istanza"
2551
+ msgstr ""
2448
2552
 
2449
2553
  msgid "Interpret specified object to return only Host Collections that can be associated with specified object. The value 'host' is supported."
2450
2554
  msgstr ""
@@ -2459,7 +2563,7 @@ msgid "Interval not set correctly"
2459
2563
  msgstr ""
2460
2564
 
2461
2565
  msgid "Invalid"
2462
- msgstr "Non valido"
2566
+ msgstr ""
2463
2567
 
2464
2568
  msgid "Invalid association of the content view id. Content View must match the content view version being saved"
2465
2569
  msgstr ""
@@ -2473,9 +2577,6 @@ msgstr "Tipo di contenuto %s non valido"
2473
2577
  msgid "Invalid content type '%{content_type}' provided. Content types can be one of %{content_types}"
2474
2578
  msgstr ""
2475
2579
 
2476
- msgid "Invalid date provided."
2477
- msgstr ""
2478
-
2479
2580
  msgid "Invalid date range. The erratum filter rule start date must come before the end date"
2480
2581
  msgstr "Intervallo data non valido. La data d'inizio per la regola del filtro dell'erratum deve essere specificata prima della data di fine"
2481
2582
 
@@ -2497,6 +2598,7 @@ msgstr "La regola del filtro specificata non è valida, 'version' non può esser
2497
2598
  msgid "Invalid parameters sent in the request for this operation. Please contact a system administrator."
2498
2599
  msgstr "Parametri non validi inviati nella richiesta per questa operazione. Contattare un amministratore di sistema."
2499
2600
 
2601
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
2500
2602
  msgid "Invalid parameters sent. You may have mistyped the address. If you continue having trouble with this, please contact an Administrator."
2501
2603
  msgstr "Inviati parametri non validi. Potrebbe esserci stato un errore di battitura dell'indirizzo. Se continui ad avere problemi contatta un Amministratore."
2502
2604
 
@@ -2561,7 +2663,7 @@ msgid "Kickstart repository was not set for host '%{host}'"
2561
2663
  msgstr ""
2562
2664
 
2563
2665
  msgid "Label"
2564
- msgstr "Etichetta"
2666
+ msgstr ""
2565
2667
 
2566
2668
  msgid "Label of the content"
2567
2669
  msgstr "Etichetta del contenuto"
@@ -2636,7 +2738,7 @@ msgid "Limit content to just that available in the host's content view version"
2636
2738
  msgstr ""
2637
2739
 
2638
2740
  msgid "Limits"
2639
- msgstr "Limiti"
2741
+ msgstr ""
2640
2742
 
2641
2743
  msgid "List :resource_id"
2642
2744
  msgstr "Elenca :resource_id"
@@ -2716,7 +2818,7 @@ msgstr ""
2716
2818
  msgid "List of Errata ids"
2717
2819
  msgstr "Elenco di id errata"
2718
2820
 
2719
- msgid "List of Errata ids to install. Will be removed in Katello 4.1."
2821
+ msgid "List of Errata ids to install. Will be removed in %s"
2720
2822
  msgstr ""
2721
2823
 
2722
2824
  msgid "List of Products for sync plan"
@@ -2725,8 +2827,8 @@ msgstr ""
2725
2827
  msgid "List of component content view version ids for composite views"
2726
2828
  msgstr "Elenco id delle versioni per la visualizzazione del contenuto per il componente per le visualizzazioni composite"
2727
2829
 
2728
- msgid "List of content (e.g. package names, package group names or errata ids)"
2729
- msgstr "Elenco del contenuto (es nomi dei pacchetti, nomi dei gruppi di pacchetti o id errata)"
2830
+ msgid "List of content (e.g. package names, package group names (Deprecated) or errata ids)"
2831
+ msgstr ""
2730
2832
 
2731
2833
  msgid "List of content (e.g. package or package group names)"
2732
2834
  msgstr "Elenco del contenuto (es nomi dei pacchetti o dei gruppi di pacchetti)"
@@ -2773,8 +2875,8 @@ msgstr ""
2773
2875
  msgid "List of hypervisor guest uuids"
2774
2876
  msgstr ""
2775
2877
 
2776
- msgid "List of package group names"
2777
- msgstr "Elenco nomi dei gruppi di pacchetti"
2878
+ msgid "List of package group names (Deprecated)"
2879
+ msgstr ""
2778
2880
 
2779
2881
  msgid "List of package names"
2780
2882
  msgstr "Elenco nomi dei pacchetti"
@@ -2858,7 +2960,7 @@ msgid "List the lifecycle environments not attached to the smart proxy"
2858
2960
  msgstr ""
2859
2961
 
2860
2962
  msgid "Loading"
2861
- msgstr "Caricamento in corso"
2963
+ msgstr ""
2862
2964
 
2863
2965
  msgid "Make copy of a content view"
2864
2966
  msgstr "Esegui una copia di una visualizzazione del contenuto"
@@ -2870,13 +2972,13 @@ msgid "Make sure all the component content views are published before publishing
2870
2972
  msgstr ""
2871
2973
 
2872
2974
  msgid "Manage Manifest"
2873
- msgstr "Gestisci il manifesto"
2975
+ msgstr ""
2874
2976
 
2875
2977
  msgid "Manifest"
2876
2978
  msgstr ""
2877
2979
 
2878
2980
  msgid "Manifest History"
2879
- msgstr "Cronologia del manifesto"
2981
+ msgstr ""
2880
2982
 
2881
2983
  msgid "Manifest deleted"
2882
2984
  msgstr ""
@@ -2932,6 +3034,7 @@ msgstr ""
2932
3034
  msgid "Medium IDs"
2933
3035
  msgstr ""
2934
3036
 
3037
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
2935
3038
  msgid "Message"
2936
3039
  msgstr "Messaggio"
2937
3040
 
@@ -2944,6 +3047,9 @@ msgstr ""
2944
3047
  msgid "Mismatched"
2945
3048
  msgstr ""
2946
3049
 
3050
+ msgid "Missing activation key!"
3051
+ msgstr ""
3052
+
2947
3053
  msgid "Missing arguments %{substitutions} for %{content_url}"
2948
3054
  msgstr ""
2949
3055
 
@@ -2960,7 +3066,7 @@ msgid "Module stream"
2960
3066
  msgstr ""
2961
3067
 
2962
3068
  msgid "Multi-entitlement"
2963
- msgstr "Entitlement-multipli"
3069
+ msgstr ""
2964
3070
 
2965
3071
  msgid "Must supply at least one of mandatory_package_names, optional_package_names, conditional_package_names, default_package_names parameters"
2966
3072
  msgstr ""
@@ -2969,7 +3075,7 @@ msgid "N/A"
2969
3075
  msgstr ""
2970
3076
 
2971
3077
  msgid "NA"
2972
- msgstr "NA"
3078
+ msgstr ""
2973
3079
 
2974
3080
  msgid "NOTE: Katello-agent is deprecated and will be removed in %s. Consider using remote execution instead."
2975
3081
  msgstr ""
@@ -3044,8 +3150,11 @@ msgstr "Nuovi pacchetti: %{count} (%{size})."
3044
3150
  msgid "New version is available: Version ${latestVersion}"
3045
3151
  msgstr ""
3046
3152
 
3153
+ msgid "Newly published"
3154
+ msgstr ""
3155
+
3047
3156
  msgid "No"
3048
- msgstr "No"
3157
+ msgstr ""
3049
3158
 
3050
3159
  msgid "No Activation Keys selected"
3051
3160
  msgstr ""
@@ -3053,6 +3162,7 @@ msgstr ""
3053
3162
  msgid "No Activation keys to select"
3054
3163
  msgstr ""
3055
3164
 
3165
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
3056
3166
  msgid "No Content View"
3057
3167
  msgstr "Nessuna visualizzazione del contenuto"
3058
3168
 
@@ -3068,6 +3178,7 @@ msgstr ""
3068
3178
  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."
3069
3179
  msgstr ""
3070
3180
 
3181
+ # translation auto-copied from project CFSE, version sam-1.2, document app
3071
3182
  msgid "No Service Level Preference"
3072
3183
  msgstr "Nessuna preferenza del livello del servizio"
3073
3184
 
@@ -3302,9 +3413,6 @@ msgstr ""
3302
3413
  msgid "On Demand"
3303
3414
  msgstr ""
3304
3415
 
3305
- msgid "On demand repositories cannot be exported."
3306
- msgstr ""
3307
-
3308
3416
  msgid "On-disk location for exported repositories"
3309
3417
  msgstr ""
3310
3418
 
@@ -3335,12 +3443,10 @@ msgstr "Per una organizzazione è permesso solo un provider di Red Hat"
3335
3443
  msgid "Only returns id and quantity fields"
3336
3444
  msgstr ""
3337
3445
 
3446
+ # translation auto-copied from project [RHEL] [SECURITY] Security Guide, version 6.4, document Tcp_Wrappers, author fvalen
3338
3447
  msgid "Operators"
3339
3448
  msgstr "Operatori"
3340
3449
 
3341
- msgid "Optional date of last export (ex: 2010-01-01T12:00:00Z)"
3342
- msgstr ""
3343
-
3344
3450
  msgid "Organization"
3345
3451
  msgstr "Organizzazione"
3346
3452
 
@@ -3374,6 +3480,7 @@ msgstr ""
3374
3480
  msgid "Organization required"
3375
3481
  msgstr "Organizzazione necessaria"
3376
3482
 
3483
+ # translation auto-copied from project control-center, version 3.8.6, document gnome-control-center-2.0
3377
3484
  msgid "Other"
3378
3485
  msgstr "Altro"
3379
3486
 
@@ -3398,9 +3505,11 @@ msgstr ""
3398
3505
  msgid "Override value. Provide a boolean value if name is 'enabled'"
3399
3506
  msgstr ""
3400
3507
 
3508
+ # translation auto-copied from project rhn-client-tools, version 6.5, document rhn-client-tools
3401
3509
  msgid "Package"
3402
3510
  msgstr "Pacchetto"
3403
3511
 
3512
+ # translation auto-copied from project Katello, version 0.1v, document app, author fvalen
3404
3513
  msgid "Package Group"
3405
3514
  msgstr "Gruppo di pacchetti"
3406
3515
 
@@ -3509,15 +3618,19 @@ msgstr "Aggiornamento pacchetto scaduto"
3509
3618
  msgid "Package Update scheduled by %s"
3510
3619
  msgstr "Aggiornamento pacchetto programmato per il %s"
3511
3620
 
3621
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
3512
3622
  msgid "Package group update canceled"
3513
3623
  msgstr "Aggiornamento gruppo di pacchetti cancellato"
3514
3624
 
3625
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
3515
3626
  msgid "Package group update complete"
3516
3627
  msgstr "Aggiornamento gruppo di pacchetti completato"
3517
3628
 
3629
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
3518
3630
  msgid "Package group update failed"
3519
3631
  msgstr "Aggiornamento gruppo di pacchetti fallito"
3520
3632
 
3633
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
3521
3634
  msgid "Package group update timed out"
3522
3635
  msgstr "Aggiornamento gruppo di pacchetti scaduto"
3523
3636
 
@@ -3549,7 +3662,7 @@ msgid "Partially entitled"
3549
3662
  msgstr ""
3550
3663
 
3551
3664
  msgid "Partition template IDs"
3552
- msgstr "ID template di partizione"
3665
+ msgstr ""
3553
3666
 
3554
3667
  msgid "Password of the upstream repository user used for authentication"
3555
3668
  msgstr ""
@@ -3563,9 +3676,11 @@ msgstr ""
3563
3676
  msgid "Path for ssl key used for pulp server auth"
3564
3677
  msgstr ""
3565
3678
 
3679
+ # translation auto-copied from project virt-manager, version 0.10.0, document virt-manager
3566
3680
  msgid "Paused"
3567
3681
  msgstr "In pausa"
3568
3682
 
3683
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
3569
3684
  msgid "Pending"
3570
3685
  msgstr "In attesa"
3571
3686
 
@@ -3590,6 +3705,7 @@ msgstr ""
3590
3705
  msgid "Permission Denied. User '%{user}' does not have permissions to access organization '%{org}'."
3591
3706
  msgstr "Permesso negato. L'utente '%{user}' non presenta alcun permesso per accedere all'organizzazione '%{org}'. "
3592
3707
 
3708
+ # translation auto-copied from project subscription-manager, version 1.10.10, document keys
3593
3709
  msgid "Physical"
3594
3710
  msgstr "Fisico"
3595
3711
 
@@ -3627,7 +3743,7 @@ msgid "Please select an organization to view subscription totals."
3627
3743
  msgstr ""
3628
3744
 
3629
3745
  msgid "Please select one from the list below and you will be redirected."
3630
- msgstr "Selezionarne uno dall'elenco di seguito riportato e verrai ridirezionato."
3746
+ msgstr ""
3631
3747
 
3632
3748
  msgid "Prior Content View Version specified in the metadata - '%{name}' does not exist. Please import the metadata for '%{name}' before importing '%{current}' "
3633
3749
  msgstr ""
@@ -3638,17 +3754,18 @@ msgstr "Processazione metadati"
3638
3754
  msgid "Processing metadata."
3639
3755
  msgstr "Processazione metadati."
3640
3756
 
3757
+ # translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author fvalen
3641
3758
  msgid "Product"
3642
3759
  msgstr "Prodotto"
3643
3760
 
3644
3761
  msgid "Product Content"
3645
- msgstr "Contenuto del prodotto"
3762
+ msgstr ""
3646
3763
 
3647
3764
  msgid "Product Create"
3648
3765
  msgstr ""
3649
3766
 
3650
3767
  msgid "Product ID"
3651
- msgstr "ID del prodotto"
3768
+ msgstr ""
3652
3769
 
3653
3770
  msgid "Product and Repositories"
3654
3771
  msgstr "Prodotto e repositori"
@@ -3710,13 +3827,13 @@ msgid "Promotion to Environment"
3710
3827
  msgstr ""
3711
3828
 
3712
3829
  msgid "Provided Products"
3713
- msgstr "Prodotti forniti"
3830
+ msgstr ""
3714
3831
 
3715
3832
  msgid "Provided pool with id %s has no upstream entitlement"
3716
3833
  msgstr ""
3717
3834
 
3718
3835
  msgid "Provisioning template IDs"
3719
- msgstr "ID template di provisioning"
3836
+ msgstr ""
3720
3837
 
3721
3838
  msgid "Proxies"
3722
3839
  msgstr ""
@@ -3724,6 +3841,7 @@ msgstr ""
3724
3841
  msgid "Public key block in DER encoding or certificate content"
3725
3842
  msgstr ""
3726
3843
 
3844
+ # translation auto-copied from project shotwell-core, version 0.14.1, document shotwell-core
3727
3845
  msgid "Publish"
3728
3846
  msgstr "Pubblica"
3729
3847
 
@@ -3733,19 +3851,28 @@ msgstr ""
3733
3851
  msgid "Publish a content view"
3734
3852
  msgstr "Pubblica una visualizzazione del contenuto"
3735
3853
 
3854
+ msgid "Publish new version - "
3855
+ msgstr ""
3856
+
3736
3857
  msgid "Published new version"
3737
3858
  msgstr "Nuova versione pubblicata"
3738
3859
 
3860
+ msgid "Publishing ${name}"
3861
+ msgstr ""
3862
+
3863
+ msgid "Publishing content view"
3864
+ msgstr ""
3865
+
3739
3866
  msgid "Pulling remote branches. Downloaded %s units."
3740
3867
  msgstr ""
3741
3868
 
3742
3869
  msgid "Pulp"
3743
- msgstr "Pulp"
3870
+ msgstr ""
3744
3871
 
3745
3872
  msgid "Pulp 3 export destination filepath"
3746
3873
  msgstr ""
3747
3874
 
3748
- msgid "Pulp Consumer %s has already been removed"
3875
+ msgid "Pulp 3 is not enabled on Smart proxy!"
3749
3876
  msgstr ""
3750
3877
 
3751
3878
  msgid "Pulp Docker registry port"
@@ -3803,7 +3930,7 @@ msgid "Pulpcore"
3803
3930
  msgstr ""
3804
3931
 
3805
3932
  msgid "Quantity"
3806
- msgstr "Quantità"
3933
+ msgstr ""
3807
3934
 
3808
3935
  msgid "Quantity must not be above ${pool.available}"
3809
3936
  msgstr ""
@@ -3835,11 +3962,12 @@ msgstr ""
3835
3962
  msgid "RPM name"
3836
3963
  msgstr ""
3837
3964
 
3965
+ # translation auto-copied from project RHN Satellite Installation Guide, version 5.6, document Importing_and_Synchronizing
3838
3966
  msgid "RPMs"
3839
3967
  msgstr "RPM"
3840
3968
 
3841
3969
  msgid "Realm IDs"
3842
- msgstr "ID realm"
3970
+ msgstr ""
3843
3971
 
3844
3972
  msgid "Reboot required"
3845
3973
  msgstr ""
@@ -3854,7 +3982,7 @@ msgid "Red Hat CDN URL"
3854
3982
  msgstr "Red Hat CDN URL"
3855
3983
 
3856
3984
  msgid "Red Hat Provider Details"
3857
- msgstr "Dettagli sul provider di Red Hat"
3985
+ msgstr ""
3858
3986
 
3859
3987
  msgid "Red Hat Repositories"
3860
3988
  msgstr "Repositori di Red Hat"
@@ -3869,7 +3997,7 @@ msgid "Red Hat repositories cannot be manipulated."
3869
3997
  msgstr "I repositori di Red Hat non possono essere alterati."
3870
3998
 
3871
3999
  msgid "Refresh"
3872
- msgstr "Aggiorna"
4000
+ msgstr ""
3873
4001
 
3874
4002
  msgid "Refresh Manifest"
3875
4003
  msgstr "Aggiorna il manifesto"
@@ -3911,7 +4039,7 @@ msgid "Reload data"
3911
4039
  msgstr "Ricarica i dati"
3912
4040
 
3913
4041
  msgid "Remote action:"
3914
- msgstr "Azione remota:"
4042
+ msgstr ""
3915
4043
 
3916
4044
  msgid "Removal of package group(s) requested: %{groups}"
3917
4045
  msgstr ""
@@ -3919,6 +4047,9 @@ msgstr ""
3919
4047
  msgid "Removal of package(s) requested: %{packages}"
3920
4048
  msgstr ""
3921
4049
 
4050
+ msgid "Remove"
4051
+ msgstr ""
4052
+
3922
4053
  msgid "Remove Content"
3923
4054
  msgstr "Rimuovi contenuto"
3924
4055
 
@@ -3943,6 +4074,9 @@ msgstr ""
3943
4074
  msgid "Remove content view version"
3944
4075
  msgstr "Rimuovi la versione della visualizzazione del contenuto"
3945
4076
 
4077
+ msgid "Remove content views"
4078
+ msgstr ""
4079
+
3946
4080
  msgid "Remove from Environment"
3947
4081
  msgstr "Rimuovi dall'ambiente"
3948
4082
 
@@ -3988,6 +4122,12 @@ msgstr ""
3988
4122
  msgid "Remove versions and/or environments from a content view and reassign systems and keys"
3989
4123
  msgstr "Rimuovi le versioni e/o gli ambienti da una visualizzazione del contenuto e riassegna sistemi e chiavi"
3990
4124
 
4125
+ msgid "Removed component from content view"
4126
+ msgstr ""
4127
+
4128
+ msgid "Removed components from content view"
4129
+ msgstr ""
4130
+
3991
4131
  msgid "Removing Package Group..."
3992
4132
  msgstr "Rimozione gruppo di pacchetti in corso..."
3993
4133
 
@@ -3995,23 +4135,22 @@ msgid "Removing Package..."
3995
4135
  msgstr "Rimozione pacchetto in corso..."
3996
4136
 
3997
4137
  msgid "Repo Type"
3998
- msgstr "Tipo di repository"
4138
+ msgstr ""
3999
4139
 
4140
+ # translation auto-copied from project Cloudforms System Engine User Guide, version 1.0, document Repositories, author fvalen
4000
4141
  msgid "Repositories"
4001
- msgstr "Repository"
4142
+ msgstr "Repositori"
4002
4143
 
4003
4144
  msgid "Repositories from published Content Views are not allowed."
4004
4145
  msgstr "Non sono permessi i repository delle Visualizzazioni del contenuto pubblicate."
4005
4146
 
4147
+ # translation auto-copied from project Red Hat Satellite User Guide, version 6.0, document appe-Glossary_of_Terms
4006
4148
  msgid "Repository"
4007
4149
  msgstr "Repository"
4008
4150
 
4009
4151
  msgid "Repository %s cannot be deleted since it has already been included in a published Content View."
4010
4152
  msgstr "Il repository %s non può essere rimosso poichè è già stato incluso nella Visualizzazione del contenuto pubblicata."
4011
4153
 
4012
- msgid "Repository %s cannot be deleted since they are Red Hat repositories."
4013
- msgstr "Impossibile rimuovere il repository %s poichè si tratta di repository di Red Hat."
4014
-
4015
4154
  msgid "Repository '%(repoName)s' has been disabled."
4016
4155
  msgstr ""
4017
4156
 
@@ -4027,9 +4166,7 @@ msgstr ""
4027
4166
  msgid "Repository cannot be disabled since it has already been promoted."
4028
4167
  msgstr "Il repositorio non può essere disabilitato poichè è stato già promosso."
4029
4168
 
4030
- msgid "Repository content type must be 'yum' to export."
4031
- msgstr ""
4032
-
4169
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
4033
4170
  msgid "Repository has already been cloned to %{cv_name} in environment %{to_env}"
4034
4171
  msgstr "Il repositorio è già stato clonato per %{cv_name} nell'ambiente %{to_env}"
4035
4172
 
@@ -4051,6 +4188,7 @@ msgstr "Repositorio non trovato"
4051
4188
  msgid "Repository set name to search on"
4052
4189
  msgstr "Nome insieme repositori da cercare"
4053
4190
 
4191
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
4054
4192
  msgid "Repository sets are not available for custom products."
4055
4193
  msgstr "Gli insiemi di repositori non sono applicabili ai prodotti personalizzati."
4056
4194
 
@@ -4060,6 +4198,9 @@ msgstr ""
4060
4198
  msgid "Republish Version Repositories"
4061
4199
  msgstr ""
4062
4200
 
4201
+ msgid "Requirements yaml is invalid!"
4202
+ msgstr ""
4203
+
4063
4204
  msgid "Requires Virt-Who"
4064
4205
  msgstr ""
4065
4206
 
@@ -4070,7 +4211,7 @@ msgid "Resolve traces for one or more hosts"
4070
4211
  msgstr ""
4071
4212
 
4072
4213
  msgid "Resource"
4073
- msgstr "Risorsa"
4214
+ msgstr ""
4074
4215
 
4075
4216
  msgid "Restart Services via Katello interface"
4076
4217
  msgstr ""
@@ -4078,6 +4219,7 @@ msgstr ""
4078
4219
  msgid "Restrict Composite Content View promotion"
4079
4220
  msgstr ""
4080
4221
 
4222
+ # translation auto-copied from project CFSE-cli, version sam-1.2, document keys, author fvalen
4081
4223
  msgid "Result"
4082
4224
  msgstr "Risultato"
4083
4225
 
@@ -4102,9 +4244,6 @@ msgstr ""
4102
4244
  msgid "Return errata that are upgradable on one or more hosts"
4103
4245
  msgstr ""
4104
4246
 
4105
- msgid "Return errata that can be added to the Content View Version via an Incremental Update. Will be removed in Katello 4.1."
4106
- msgstr ""
4107
-
4108
4247
  msgid "Return errata that can be added to the specified object. The values 'content_view_version' and 'content_view_filter are supported."
4109
4248
  msgstr ""
4110
4249
 
@@ -4145,17 +4284,18 @@ msgid "Returns content that can be both added and is currently added to the obje
4145
4284
  msgstr ""
4146
4285
 
4147
4286
  msgid "Role"
4148
- msgstr "Ruolo"
4287
+ msgstr ""
4149
4288
 
4150
4289
  msgid "Role of host"
4151
4290
  msgstr ""
4152
4291
 
4153
4292
  msgid "Roles"
4154
- msgstr "Ruoli"
4293
+ msgstr ""
4155
4294
 
4156
4295
  msgid "Run Sync Plan:"
4157
4296
  msgstr ""
4158
4297
 
4298
+ # translation auto-copied from project virt-manager, version 0.10.0, document virt-manager
4159
4299
  msgid "Running"
4160
4300
  msgstr "In esecuzione"
4161
4301
 
@@ -4172,13 +4312,13 @@ msgid "SUBSCRIPTIONS EXPIRING SOON"
4172
4312
  msgstr ""
4173
4313
 
4174
4314
  msgid "Save"
4175
- msgstr "Salva"
4315
+ msgstr ""
4176
4316
 
4177
4317
  msgid "Schedule errata for installation using katello-agent. %s"
4178
4318
  msgstr ""
4179
4319
 
4180
4320
  msgid "Search"
4181
- msgstr "Cerca"
4321
+ msgstr ""
4182
4322
 
4183
4323
  msgid "Search pattern (defaults to '*')"
4184
4324
  msgstr ""
@@ -4195,6 +4335,7 @@ msgstr ""
4195
4335
  msgid "Search string for hosts to perform an action on"
4196
4336
  msgstr ""
4197
4337
 
4338
+ # translation auto-copied from project CFSE, version sam-1.2, document app
4198
4339
  msgid "Security"
4199
4340
  msgstr "Sicurezza"
4200
4341
 
@@ -4205,23 +4346,28 @@ msgid "Security errata installable"
4205
4346
  msgstr ""
4206
4347
 
4207
4348
  msgid "Select"
4208
- msgstr "Seleziona"
4349
+ msgstr ""
4209
4350
 
4351
+ # translation auto-copied from project gnote, version 3.8.1, document gnote, author fvalen
4210
4352
  msgid "Select All"
4211
4353
  msgstr "Seleziona tutto"
4212
4354
 
4213
4355
  msgid "Select Content View"
4214
4356
  msgstr "Seleziona visualizzazione contenuto"
4215
4357
 
4358
+ # translation auto-copied from project gnote, version 3.8.1, document gnote, author fvalen
4216
4359
  msgid "Select None"
4217
4360
  msgstr "Seleziona nessuno"
4218
4361
 
4219
4362
  msgid "Select Organization"
4220
- msgstr "Seleziona organizzazione"
4363
+ msgstr ""
4221
4364
 
4222
4365
  msgid "Select Value"
4223
4366
  msgstr ""
4224
4367
 
4368
+ msgid "Select a lifecycle environment from the available promotion paths to promote new version."
4369
+ msgstr ""
4370
+
4225
4371
  msgid "Select all rows"
4226
4372
  msgstr ""
4227
4373
 
@@ -4231,6 +4377,9 @@ msgstr "Seleziona una organizzazione"
4231
4377
  msgid "Select an organization"
4232
4378
  msgstr ""
4233
4379
 
4380
+ msgid "Select available version of ${cvName} to use"
4381
+ msgstr ""
4382
+
4234
4383
  msgid "Select hosts to assign to %s"
4235
4384
  msgstr "Seleziona host da assegnare a %s"
4236
4385
 
@@ -4241,7 +4390,7 @@ msgid "Select the installation media that will be used to provision this host. C
4241
4390
  msgstr ""
4242
4391
 
4243
4392
  msgid "Service Level"
4244
- msgstr "Livello di servizio"
4393
+ msgstr ""
4245
4394
 
4246
4395
  msgid "Service Level %s"
4247
4396
  msgstr "Livello %s del servizio"
@@ -4276,6 +4425,7 @@ msgstr ""
4276
4425
  msgid "Setting 'default_location_subscribed_hosts' is not set to a valid location."
4277
4426
  msgstr ""
4278
4427
 
4428
+ # translation auto-copied from project CFSE, version sam-1.2, document app
4279
4429
  msgid "Severity"
4280
4430
  msgstr "Severità"
4281
4431
 
@@ -4354,6 +4504,9 @@ msgstr ""
4354
4504
  msgid "Simple Content Access has been enabled for '%{subject}'."
4355
4505
  msgstr ""
4356
4506
 
4507
+ msgid "Single content view consisting of repositories"
4508
+ msgstr ""
4509
+
4357
4510
  msgid "Size of file to upload"
4358
4511
  msgstr ""
4359
4512
 
@@ -4364,8 +4517,12 @@ msgid "Skipped pulp_auth check after failed pulp check"
4364
4517
  msgstr ""
4365
4518
 
4366
4519
  msgid "Smart proxy IDs"
4367
- msgstr "ID Smart proxy"
4520
+ msgstr ""
4521
+
4522
+ msgid "Smart proxy content source not found!"
4523
+ msgstr ""
4368
4524
 
4525
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
4369
4526
  msgid "Sockets: %s"
4370
4527
  msgstr "Socket: %s"
4371
4528
 
@@ -4384,6 +4541,21 @@ msgstr ""
4384
4541
  msgid "Some services are not properly started. See the About page for more information."
4385
4542
  msgstr ""
4386
4543
 
4544
+ msgid "Something went wrong while adding component! ${getResponseErrorMsgs(error.response)}"
4545
+ msgstr ""
4546
+
4547
+ msgid "Something went wrong while creating the filter! ${getResponseErrorMsgs(error.response)}"
4548
+ msgstr ""
4549
+
4550
+ msgid "Something went wrong while deleting filters! ${getResponseErrorMsgs(error.response)}"
4551
+ msgstr ""
4552
+
4553
+ msgid "Something went wrong while deleting this filter! ${getResponseErrorMsgs(error.response)}"
4554
+ msgstr ""
4555
+
4556
+ msgid "Something went wrong while removing component! ${getResponseErrorMsgs(error.response)}"
4557
+ msgstr ""
4558
+
4387
4559
  msgid "Something went wrong while retrieving the content view components! ${getResponseErrorMsgs(error.response)}"
4388
4560
  msgstr ""
4389
4561
 
@@ -4421,25 +4593,28 @@ msgid "Split the exported content into archives no greater than the specified si
4421
4593
  msgstr ""
4422
4594
 
4423
4595
  msgid "Stacking ID"
4424
- msgstr "ID dello stack"
4596
+ msgstr ""
4425
4597
 
4598
+ # translation auto-copied from project subscription-manager, version 1.10.10, document keys
4426
4599
  msgid "Start Date"
4427
4600
  msgstr "Data d'inizio"
4428
4601
 
4429
4602
  msgid "Start Date and Time can't be blank"
4430
4603
  msgstr "La data e l'ora d'inizio non possono essere lasciati vuoti"
4431
4604
 
4605
+ # translation auto-copied from project Katello, version 0.1v, document app, author fvalen
4432
4606
  msgid "Start Time"
4433
4607
  msgstr "Ora d'inizio"
4434
4608
 
4435
4609
  msgid "Starts"
4436
- msgstr "Inizia"
4610
+ msgstr ""
4437
4611
 
4612
+ # translation auto-copied from project Satellite6 Foreman, version 6.1, document foreman
4438
4613
  msgid "Status"
4439
4614
  msgstr "Stato"
4440
4615
 
4441
4616
  msgid "Storage"
4442
- msgstr "Storage"
4617
+ msgstr ""
4443
4618
 
4444
4619
  msgid "Stream"
4445
4620
  msgstr ""
@@ -4448,11 +4623,12 @@ msgid "Streams based on the host based on their status"
4448
4623
  msgstr ""
4449
4624
 
4450
4625
  msgid "Submit"
4451
- msgstr "Invia"
4626
+ msgstr ""
4452
4627
 
4453
4628
  msgid "Subnet IDs"
4454
- msgstr "ID sottoreti"
4629
+ msgstr ""
4455
4630
 
4631
+ # translation auto-copied from project Subscription Manager, version 1.8.X, document keys
4456
4632
  msgid "Subscription"
4457
4633
  msgstr "Sottoscrizione"
4458
4634
 
@@ -4460,16 +4636,16 @@ msgid "Subscription Allocation"
4460
4636
  msgstr ""
4461
4637
 
4462
4638
  msgid "Subscription Details"
4463
- msgstr "Informazioni sulla sottoscrizione"
4639
+ msgstr ""
4464
4640
 
4465
4641
  msgid "Subscription ID"
4466
4642
  msgstr "ID sottoscrizione"
4467
4643
 
4468
4644
  msgid "Subscription Info"
4469
- msgstr "Informazioni sottoscrizione"
4645
+ msgstr ""
4470
4646
 
4471
4647
  msgid "Subscription Manifest"
4472
- msgstr "Manifesto della sottoscrizione"
4648
+ msgstr ""
4473
4649
 
4474
4650
  msgid "Subscription Manifest validity check"
4475
4651
  msgstr ""
@@ -4514,7 +4690,7 @@ msgid "Subscription was not persisted - %{error_message}"
4514
4690
  msgstr ""
4515
4691
 
4516
4692
  msgid "Subscriptions"
4517
- msgstr "Sottoscrizioni"
4693
+ msgstr ""
4518
4694
 
4519
4695
  msgid "Subscriptions Expiring in 120 Days"
4520
4696
  msgstr ""
@@ -4555,15 +4731,17 @@ msgstr "Rimossi con successo %{count} host di contenuto dall'insieme %{host_col
4555
4731
  msgid "Successfully synchronized."
4556
4732
  msgstr ""
4557
4733
 
4734
+ # translation auto-copied from project Customer Portal Translations, version Portal-Case-Management, document Template, author fvalen
4558
4735
  msgid "Summary"
4559
4736
  msgstr "Sommario"
4560
4737
 
4561
4738
  msgid "Support Type"
4562
- msgstr "Tipo di supporto"
4739
+ msgstr ""
4563
4740
 
4564
4741
  msgid "Supported Content Types"
4565
4742
  msgstr ""
4566
4743
 
4744
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
4567
4745
  msgid "Sync Canceled"
4568
4746
  msgstr "Sincronizzazione cancellata"
4569
4747
 
@@ -4576,15 +4754,17 @@ msgstr ""
4576
4754
  msgid "Sync Incomplete"
4577
4755
  msgstr "Sincronizzazione non completata"
4578
4756
 
4757
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
4579
4758
  msgid "Sync Overview"
4580
4759
  msgstr "Panoramica sincronizzazione"
4581
4760
 
4582
4761
  msgid "Sync Plan"
4583
- msgstr "Programmazione di sincronizzazione"
4762
+ msgstr ""
4584
4763
 
4585
4764
  msgid "Sync Plan: "
4586
4765
  msgstr ""
4587
4766
 
4767
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
4588
4768
  msgid "Sync Plans"
4589
4769
  msgstr "Programmazione sincronizzazione"
4590
4770
 
@@ -4594,6 +4774,7 @@ msgstr ""
4594
4774
  msgid "Sync Smart Proxies after Content View promotion"
4595
4775
  msgstr ""
4596
4776
 
4777
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
4597
4778
  msgid "Sync Status"
4598
4779
  msgstr "Stato della sincronizzazione"
4599
4780
 
@@ -4612,6 +4793,7 @@ msgstr ""
4612
4793
  msgid "Sync capsule"
4613
4794
  msgstr ""
4614
4795
 
4796
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
4615
4797
  msgid "Sync complete."
4616
4798
  msgstr "Sincronizzazione completa."
4617
4799
 
@@ -4636,6 +4818,7 @@ msgstr ""
4636
4818
  msgid "Synchronize"
4637
4819
  msgstr "Sincronizza"
4638
4820
 
4821
+ # translation auto-copied from project Katello, version 0.1v, document app, author fvalen
4639
4822
  msgid "Synchronize Now"
4640
4823
  msgstr "Sincronizza ora"
4641
4824
 
@@ -4667,7 +4850,7 @@ msgid "System Status"
4667
4850
  msgstr ""
4668
4851
 
4669
4852
  msgid "Tags"
4670
- msgstr "Tag"
4853
+ msgstr ""
4671
4854
 
4672
4855
  msgid "Task"
4673
4856
  msgstr ""
@@ -4682,8 +4865,9 @@ msgid "Task detail"
4682
4865
  msgstr ""
4683
4866
 
4684
4867
  msgid "Temporary"
4685
- msgstr "Temporaneo"
4868
+ msgstr ""
4686
4869
 
4870
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
4687
4871
  msgid "The '%s' environment cannot contain a changeset!"
4688
4872
  msgstr "L'ambiente '%s' non può contenere un changeset!"
4689
4873
 
@@ -4723,12 +4907,6 @@ msgstr "Descrizione per le nuove versioni della visualizzazione del contenuto ge
4723
4907
  msgid "The email notification will include subscriptions expiring in this number of days or fewer."
4724
4908
  msgstr ""
4725
4909
 
4726
- msgid "The environment %{name} is in use by %{count} Host Group(s) including %{names}"
4727
- msgstr ""
4728
-
4729
- msgid "The environment %{name} is in use by %{count} Host(s) including %{names}"
4730
- msgstr ""
4731
-
4732
4910
  msgid "The erratum filter rule end date is in an invalid format or type."
4733
4911
  msgstr "La data di fine della regola del filtro dell'erratum non ha un formato o una tipologia valida."
4734
4912
 
@@ -4761,6 +4939,9 @@ msgstr ""
4761
4939
  msgid "The manifest imported within Organization %{subject} is no longer valid. Please import a new manifest."
4762
4940
  msgstr ""
4763
4941
 
4942
+ msgid "The maximum number of versions of each package to keep."
4943
+ msgstr ""
4944
+
4764
4945
  msgid "The number of days remaining in a subscription before you will be reminded about renewing it."
4765
4946
  msgstr ""
4766
4947
 
@@ -4779,7 +4960,7 @@ msgid ""
4779
4960
  msgstr ""
4780
4961
 
4781
4962
  msgid "The page you are attempting to access requires selecting a specific organization."
4782
- msgstr "Per accedere alla pagina desiderata selezionare una organizzazione specifica."
4963
+ msgstr ""
4783
4964
 
4784
4965
  msgid "The path %{real_path} does not seem to be a valid repository. If you think this is an error, please try refreshing your manifest."
4785
4966
  msgstr ""
@@ -4843,6 +5024,7 @@ msgstr ""
4843
5024
  msgid "There are no errata that need to be applied to registered content hosts."
4844
5025
  msgstr "Non è presente alcun errata da applicare agli host di contenuto registrati."
4845
5026
 
5027
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
4846
5028
  msgid "There are no products or repositories enabled. Try enabling via %{custom} or %{redhat}."
4847
5029
  msgstr "Non è stato abilitato alcun prodotto o repositorio. Provare ad abilitarli tramite %{custom} o %{redhat}."
4848
5030
 
@@ -4900,9 +5082,6 @@ msgstr ""
4900
5082
  msgid "This is disabled because a manifest task is in progress"
4901
5083
  msgstr ""
4902
5084
 
4903
- msgid "This is disabled because disconnected mode is enabled."
4904
- msgstr ""
4905
-
4906
5085
  msgid "This is disabled because no connection could be made to the upstream Subscription Allocation."
4907
5086
  msgstr ""
4908
5087
 
@@ -4948,6 +5127,7 @@ msgstr ""
4948
5127
  msgid "Timestamp"
4949
5128
  msgstr ""
4950
5129
 
5130
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
4951
5131
  msgid "Title"
4952
5132
  msgstr "Titolo"
4953
5133
 
@@ -4987,8 +5167,11 @@ msgstr ""
4987
5167
  msgid "Type of content: \"cert\", \"gpg_key\""
4988
5168
  msgstr ""
4989
5169
 
5170
+ msgid "URL needs to have a trailing /"
5171
+ msgstr ""
5172
+
4990
5173
  msgid "UUID"
4991
- msgstr "UUID"
5174
+ msgstr ""
4992
5175
 
4993
5176
  msgid "UUID of the consumer"
4994
5177
  msgstr ""
@@ -5014,12 +5197,6 @@ msgstr ""
5014
5197
  msgid "Unable to detect puppet path"
5015
5198
  msgstr ""
5016
5199
 
5017
- msgid "Unable to export, 'pulp_export_destination' setting is not set to a valid directory."
5018
- msgstr ""
5019
-
5020
- msgid "Unable to export. 'pulp_export_destination' setting is not a writable directory."
5021
- msgstr ""
5022
-
5023
5200
  msgid "Unable to find product '%s' in organization '%s'"
5024
5201
  msgstr ""
5025
5202
 
@@ -5066,7 +5243,7 @@ msgid "Unattach a subscription"
5066
5243
  msgstr "Rimuovi una sottoscrizione"
5067
5244
 
5068
5245
  msgid "Unentitled"
5069
- msgstr "Senza entitlement"
5246
+ msgstr ""
5070
5247
 
5071
5248
  msgid "Unfiltered params array: %s."
5072
5249
  msgstr ""
@@ -5074,6 +5251,7 @@ msgstr ""
5074
5251
  msgid "Uninstall packages remotely using katello-agent. %s"
5075
5252
  msgstr ""
5076
5253
 
5254
+ # translation auto-copied from project Satellite6 Foreman, version 6.0, document foreman, author fvalen
5077
5255
  msgid "Unknown"
5078
5256
  msgstr "Sconosciuto"
5079
5257
 
@@ -5093,7 +5271,7 @@ msgid "Unknown traces status"
5093
5271
  msgstr ""
5094
5272
 
5095
5273
  msgid "Unlimited"
5096
- msgstr "Illimitato"
5274
+ msgstr ""
5097
5275
 
5098
5276
  msgid "Unregister host %s before assigning an organization"
5099
5277
  msgstr ""
@@ -5110,6 +5288,7 @@ msgstr ""
5110
5288
  msgid "Unsubscribed hypervisor"
5111
5289
  msgstr ""
5112
5290
 
5291
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
5113
5292
  msgid "Unsupported URL protocol %s."
5114
5293
  msgstr "Protocollo URL non supportato %s."
5115
5294
 
@@ -5227,8 +5406,14 @@ msgstr "Aggiorna le informazioni sui repositori abilitati"
5227
5406
  msgid "Update the quantity of one or more subscriptions on an upstream allocation"
5228
5407
  msgstr ""
5229
5408
 
5409
+ msgid "Update version"
5410
+ msgstr ""
5411
+
5230
5412
  msgid "Updated"
5231
- msgstr "Aggiornato"
5413
+ msgstr ""
5414
+
5415
+ msgid "Updated component details"
5416
+ msgstr ""
5232
5417
 
5233
5418
  msgid "Updates"
5234
5419
  msgstr ""
@@ -5248,6 +5433,7 @@ msgstr ""
5248
5433
  msgid "Updating System Purpose for host %s"
5249
5434
  msgstr ""
5250
5435
 
5436
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
5251
5437
  msgid "Updating package group..."
5252
5438
  msgstr "Aggiornamento gruppo di pacchetti..."
5253
5439
 
@@ -5269,9 +5455,6 @@ msgstr "Carica un manifesto della sottoscrizione"
5269
5455
  msgid "Upload content into the repository"
5270
5456
  msgstr "Carica il contenuto nel repositorio"
5271
5457
 
5272
- msgid "Upload errata into"
5273
- msgstr ""
5274
-
5275
5458
  msgid "Upload into"
5276
5459
  msgstr "Carica in"
5277
5460
 
@@ -5309,7 +5492,7 @@ msgid "Used to determine download concurrency of the repository in pulp3. Use va
5309
5492
  msgstr ""
5310
5493
 
5311
5494
  msgid "User"
5312
- msgstr "Utente"
5495
+ msgstr ""
5313
5496
 
5314
5497
  msgid "User '%s' did not specify an organization ID and does not have a default organization."
5315
5498
  msgstr "L'utente '%s' non ha specificato alcun ID per l'organizzazione e non ha alcuna organizzazione predefinita."
@@ -5318,7 +5501,7 @@ msgid "User '%{user}' does not belong to Organization '%{organization}'."
5318
5501
  msgstr "L'utente '%{user}' non appartiene all'organizzazione '%{organization}'."
5319
5502
 
5320
5503
  msgid "User IDs"
5321
- msgstr "ID Utenti"
5504
+ msgstr ""
5322
5505
 
5323
5506
  msgid "User must be logged in."
5324
5507
  msgstr "L'utente deve essere registrato."
@@ -5330,7 +5513,7 @@ msgid "Username to access URL"
5330
5513
  msgstr ""
5331
5514
 
5332
5515
  msgid "Valid"
5333
- msgstr "Valido"
5516
+ msgstr ""
5334
5517
 
5335
5518
  msgid "Value must either be a boolean or 'default' for 'enabled'"
5336
5519
  msgstr ""
@@ -5345,20 +5528,28 @@ msgid "Verify checksum of repository contents"
5345
5528
  msgstr ""
5346
5529
 
5347
5530
  msgid "Version"
5348
- msgstr "Versione"
5531
+ msgstr ""
5532
+
5533
+ msgid "Version "
5534
+ msgstr ""
5535
+
5536
+ msgid "Version ${item.version}"
5537
+ msgstr ""
5349
5538
 
5350
5539
  msgid "Versions"
5351
- msgstr "Versioni"
5540
+ msgstr ""
5352
5541
 
5353
5542
  msgid "Versions will appear here when the content view is published."
5354
5543
  msgstr ""
5355
5544
 
5545
+ # translation auto-copied from project Satellite6 Katello, version Sam-1.3.0, document katello, author fvalen
5356
5546
  msgid "View %{view} has not been promoted to %{env}"
5357
5547
  msgstr "La visualizzazione %{view} non è stata avanzata su %{env}"
5358
5548
 
5359
5549
  msgid "View a report of the affected hosts"
5360
5550
  msgstr ""
5361
5551
 
5552
+ # translation auto-copied from project nm-applet, version 0.8.1, document nm-applet, author fvalen
5362
5553
  msgid "Virtual"
5363
5554
  msgstr "Virtuale"
5364
5555
 
@@ -5405,7 +5596,7 @@ msgid "Yay empty state"
5405
5596
  msgstr ""
5406
5597
 
5407
5598
  msgid "Yes"
5408
- msgstr "Si"
5599
+ msgstr ""
5409
5600
 
5410
5601
  msgid "You are currently operating in disconnected mode where access to Red Hat Subcription Management is prohibited. If you would like to change this, please update the content setting 'Disconnected mode'."
5411
5602
  msgstr ""
@@ -5617,6 +5808,7 @@ msgstr "non può contenere filtri se in visualizzazione composita"
5617
5808
  msgid "cannot contain filters whose repositories do not belong to this content view"
5618
5809
  msgstr "non può contenere i filtri dei repositori che non appartengono a questa visualizzazione del contenuto"
5619
5810
 
5811
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
5620
5812
  msgid "cannot contain more than %s characters"
5621
5813
  msgstr "non può avere più di %s caratteri"
5622
5814
 
@@ -5701,6 +5893,7 @@ msgstr ""
5701
5893
  msgid "delete a filter"
5702
5894
  msgstr ""
5703
5895
 
5896
+ # translation auto-copied from project webkitgtk3, version 2.0.3, document webkitgtk3, author fvalen
5704
5897
  msgid "description"
5705
5898
  msgstr "descrizione"
5706
5899
 
@@ -5785,6 +5978,9 @@ msgstr ""
5785
5978
  msgid "filter identifier"
5786
5979
  msgstr "identificatore filtro"
5787
5980
 
5981
+ msgid "filter identifiers"
5982
+ msgstr ""
5983
+
5788
5984
  msgid "filter only environments containing this name"
5789
5985
  msgstr "filtra solo gli ambienti con questo nome"
5790
5986
 
@@ -5878,6 +6074,9 @@ msgstr "è già assegnato a questo capsule"
5878
6074
  msgid "is invalid"
5879
6075
  msgstr "non è valido"
5880
6076
 
6077
+ msgid "is not enabled. must be one of the following: %s"
6078
+ msgstr ""
6079
+
5881
6080
  msgid "label of the environment"
5882
6081
  msgstr "etichetta dell'ambiente"
5883
6082
 
@@ -5911,9 +6110,6 @@ msgstr ""
5911
6110
  msgid "maximum number of registered content hosts"
5912
6111
  msgstr "numero massimo degli host di contenuto registrati"
5913
6112
 
5914
- msgid "maximum size of each ISO in MB"
5915
- msgstr ""
5916
-
5917
6113
  msgid "may not be less than the number of hosts associated with the host collection."
5918
6114
  msgstr ""
5919
6115
 
@@ -5938,6 +6134,7 @@ msgstr ""
5938
6134
  msgid "must be unique within one organization"
5939
6135
  msgstr "deve essere unico all'interno di una organizzazione"
5940
6136
 
6137
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
5941
6138
  msgid "must contain '%s'"
5942
6139
  msgstr "deve avere '%s'"
5943
6140
 
@@ -5953,9 +6150,11 @@ msgstr "deve avere una chiave GPG pubblica valida"
5953
6150
  msgid "must contain valid Public GPG Key"
5954
6151
  msgstr "deve avere una chiave GPG pubblica valida"
5955
6152
 
6153
+ # translation auto-copied from project Katello, version 0.1v, document app, author fvalen
5956
6154
  msgid "must not contain leading or trailing white spaces."
5957
6155
  msgstr "non deve avere spazi iniziali o finali."
5958
6156
 
6157
+ # translation auto-copied from project anaconda, version 19.31.34, document anaconda
5959
6158
  msgid "name"
5960
6159
  msgstr "nome"
5961
6160
 
@@ -5993,7 +6192,7 @@ msgid "new name to be given to the environment"
5993
6192
  msgstr "nuovo nome da conferire all'ambiente"
5994
6193
 
5995
6194
  msgid "no"
5996
- msgstr "no"
6195
+ msgstr ""
5997
6196
 
5998
6197
  msgid "no global default"
5999
6198
  msgstr ""
@@ -6001,6 +6200,7 @@ msgstr ""
6001
6200
  msgid "obtain manifest history for subscriptions"
6002
6201
  msgstr "ottieni la cronologia del manifesto per le sottoscrizioni"
6003
6202
 
6203
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
6004
6204
  msgid "of environment must be unique within one organization"
6005
6205
  msgstr "ambiente deve essere unico all'interno di una organizzazione"
6006
6206
 
@@ -6085,6 +6285,7 @@ msgstr "rimozione gruppi di pacchetti in corso..."
6085
6285
  msgid "removing package..."
6086
6286
  msgstr "Rimozione pacchetto in corso..."
6087
6287
 
6288
+ # translation auto-copied from project CFSE, version sam-1.2, document app, author fvalen
6088
6289
  msgid "removing packages..."
6089
6290
  msgstr "Rimozione pacchetti in corso..."
6090
6291
 
@@ -6185,13 +6386,13 @@ msgid "type of filter (e.g. rpm, package_group, erratum, docker, modulemd)"
6185
6386
  msgstr ""
6186
6387
 
6187
6388
  msgid "type of repo"
6188
- msgstr ""
6389
+ msgstr "tipo di repo"
6189
6390
 
6190
6391
  msgid "types of filters"
6191
6392
  msgstr ""
6192
6393
 
6193
6394
  msgid "unknown permission for %s"
6194
- msgstr "permesso sconosciuto per %s"
6395
+ msgstr ""
6195
6396
 
6196
6397
  msgid "update a filter"
6197
6398
  msgstr ""
@@ -6233,7 +6434,7 @@ msgid "with"
6233
6434
  msgstr ""
6234
6435
 
6235
6436
  msgid "yes"
6236
- msgstr "si"
6437
+ msgstr ""
6237
6438
 
6238
6439
  msgid "{0} items selected"
6239
6440
  msgstr ""