@plone/volto 17.0.0-alpha.3 → 17.0.0-alpha.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (438) hide show
  1. package/.eslintrc +26 -3
  2. package/.yarn/install-state.gz +0 -0
  3. package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +541 -0
  4. package/.yarn/releases/yarn-3.6.3.cjs +874 -0
  5. package/CHANGELOG.md +716 -20
  6. package/CONTRIBUTING.md +5 -1
  7. package/README.md +20 -21
  8. package/addon-registry.js +44 -1
  9. package/create-addons-loader.js +1 -1
  10. package/create-theme-addons-loader.js +79 -0
  11. package/cypress/support/commands.js +70 -14
  12. package/cypress/support/e2e.js +1 -2
  13. package/cypress/support/volto-slate.js +4 -5
  14. package/cypress.config.js +1 -0
  15. package/docker-compose.yml +1 -1
  16. package/locales/ca/LC_MESSAGES/volto.po +422 -53
  17. package/locales/ca.json +1 -1
  18. package/locales/de/LC_MESSAGES/volto.po +442 -73
  19. package/locales/de.json +1 -1
  20. package/locales/en/LC_MESSAGES/volto.po +420 -51
  21. package/locales/en.json +1 -1
  22. package/locales/es/LC_MESSAGES/volto.po +431 -62
  23. package/locales/es.json +1 -1
  24. package/locales/eu/LC_MESSAGES/volto.po +421 -52
  25. package/locales/eu.json +1 -1
  26. package/locales/fi/LC_MESSAGES/volto.po +4985 -0
  27. package/locales/fi.json +1 -1
  28. package/locales/fr/LC_MESSAGES/volto.po +422 -53
  29. package/locales/fr.json +1 -1
  30. package/locales/it/LC_MESSAGES/volto.po +589 -220
  31. package/locales/it.json +1 -1
  32. package/locales/ja/LC_MESSAGES/volto.po +421 -52
  33. package/locales/ja.json +1 -1
  34. package/locales/nl/LC_MESSAGES/volto.po +1072 -691
  35. package/locales/nl.json +1 -1
  36. package/locales/pt/LC_MESSAGES/volto.po +422 -53
  37. package/locales/pt.json +1 -1
  38. package/locales/pt_BR/LC_MESSAGES/volto.po +429 -60
  39. package/locales/pt_BR.json +1 -1
  40. package/locales/ro/LC_MESSAGES/volto.po +422 -53
  41. package/locales/ro.json +1 -1
  42. package/locales/volto.pot +425 -52
  43. package/locales/zh_CN/LC_MESSAGES/volto.po +422 -53
  44. package/locales/zh_CN.json +1 -1
  45. package/package.json +46 -35
  46. package/packages/volto-slate/build/messages/src/blocks/Table/TableBlockEdit.json +1 -1
  47. package/packages/volto-slate/build/messages/src/blocks/Text/DefaultTextBlockEditor.json +1 -1
  48. package/packages/volto-slate/build/messages/src/blocks/Text/DetachedTextBlockEditor.json +1 -1
  49. package/packages/volto-slate/build/messages/src/blocks/Text/SlashMenu.json +1 -1
  50. package/packages/volto-slate/build/messages/src/editor/plugins/AdvancedLink/index.json +1 -1
  51. package/packages/volto-slate/build/messages/src/editor/plugins/Link/index.json +1 -1
  52. package/packages/volto-slate/build/messages/src/editor/plugins/Table/index.json +1 -1
  53. package/packages/volto-slate/build/messages/src/elementEditor/messages.json +1 -1
  54. package/packages/volto-slate/build/messages/src/widgets/HtmlSlateWidget.json +1 -1
  55. package/packages/volto-slate/build/messages/src/widgets/RichTextWidgetView.json +1 -1
  56. package/packages/volto-slate/package.json +1 -1
  57. package/packages/volto-slate/src/actions/index.js +1 -1
  58. package/packages/volto-slate/src/blocks/Table/TableBlockEdit.jsx +21 -212
  59. package/packages/volto-slate/src/blocks/Table/schema.js +122 -0
  60. package/packages/volto-slate/src/blocks/Text/DefaultTextBlockEditor.jsx +8 -3
  61. package/packages/volto-slate/src/blocks/Text/SlashMenu.jsx +4 -3
  62. package/packages/volto-slate/src/blocks/Text/TextBlockView.jsx +21 -16
  63. package/packages/volto-slate/src/blocks/Text/extensions/withDeserializers.js +3 -1
  64. package/packages/volto-slate/src/blocks/Text/index.js +10 -7
  65. package/packages/volto-slate/src/editor/config.jsx +5 -4
  66. package/packages/volto-slate/src/editor/deserialize.js +0 -1
  67. package/packages/volto-slate/src/editor/index.js +4 -4
  68. package/packages/volto-slate/src/editor/less/slate.less +28 -0
  69. package/packages/volto-slate/src/editor/plugins/Link/render.jsx +5 -6
  70. package/packages/volto-slate/src/editor/plugins/StyleMenu/StyleMenu.jsx +14 -4
  71. package/packages/volto-slate/src/editor/plugins/StyleMenu/utils.js +14 -5
  72. package/packages/volto-slate/src/editor/render.jsx +77 -8
  73. package/packages/volto-slate/src/editor/ui/SlateContextToolbar.jsx +2 -2
  74. package/packages/volto-slate/src/editor/ui/index.js +15 -15
  75. package/packages/volto-slate/src/index.js +2 -2
  76. package/packages/volto-slate/src/utils/blocks.js +7 -0
  77. package/packages/volto-slate/src/widgets/RichTextWidget.jsx +15 -8
  78. package/razzle.config.js +32 -6
  79. package/src/actions/index.js +10 -0
  80. package/src/actions/language/language.js +9 -8
  81. package/src/actions/navroot/navroot.js +16 -0
  82. package/src/actions/navroot/navroot.test.js +15 -0
  83. package/src/actions/querystringsearch/querystringsearch.js +20 -14
  84. package/src/actions/relations/rebuild.js +25 -0
  85. package/src/actions/relations/relations.js +103 -0
  86. package/src/actions/relations/relations.test.js +15 -0
  87. package/src/actions/site/site.js +16 -0
  88. package/src/actions/site/site.test.js +15 -0
  89. package/src/actions/userSession/userSession.js +17 -1
  90. package/src/components/index.js +194 -191
  91. package/src/components/manage/Actions/Actions.jsx +133 -243
  92. package/src/components/manage/Add/Add.jsx +9 -10
  93. package/src/components/manage/AnchorPlugin/index.jsx +2 -2
  94. package/src/components/manage/AnchorPlugin/utils/EditorUtils.js +3 -1
  95. package/src/components/manage/BlockChooser/BlockChooser.jsx +8 -3
  96. package/src/components/manage/BlockChooser/BlockChooser.test.jsx +5 -0
  97. package/src/components/manage/Blocks/Block/BlocksForm.jsx +19 -2
  98. package/src/components/manage/Blocks/Block/Edit.jsx +1 -1
  99. package/src/components/manage/Blocks/Block/Settings.jsx +2 -0
  100. package/src/components/manage/Blocks/Block/Settings.test.jsx +92 -0
  101. package/src/components/manage/Blocks/Block/Style.jsx +2 -2
  102. package/src/components/manage/Blocks/Container/Data.jsx +32 -0
  103. package/src/components/manage/Blocks/Container/Edit.jsx +177 -0
  104. package/src/components/manage/Blocks/Container/EditBlockWrapper.jsx +121 -0
  105. package/src/components/manage/Blocks/Container/NewBlockAddButton.jsx +84 -0
  106. package/src/components/manage/Blocks/Container/SimpleContainerToolbar.jsx +54 -0
  107. package/src/components/manage/Blocks/Grid/Edit.jsx +47 -0
  108. package/src/components/manage/Blocks/Grid/View.jsx +43 -0
  109. package/src/components/manage/Blocks/Grid/adapter.js +14 -0
  110. package/src/components/manage/Blocks/Grid/grid-1.svg +6 -0
  111. package/src/components/manage/Blocks/Grid/grid-2.svg +9 -0
  112. package/src/components/manage/Blocks/Grid/grid-3.svg +10 -0
  113. package/src/components/manage/Blocks/Grid/grid-4.svg +11 -0
  114. package/src/components/manage/Blocks/Grid/schema.js +35 -0
  115. package/src/components/manage/Blocks/Grid/templates.js +47 -0
  116. package/src/components/manage/Blocks/HTML/Edit.jsx +8 -8
  117. package/src/components/manage/Blocks/HeroImageLeft/Edit.jsx +36 -26
  118. package/src/components/manage/Blocks/Image/Edit.jsx +51 -12
  119. package/src/components/manage/Blocks/Image/Edit.test.jsx +2 -0
  120. package/src/components/manage/Blocks/Image/ImageSidebar.jsx +66 -16
  121. package/src/components/manage/Blocks/Image/View.jsx +26 -5
  122. package/src/components/manage/Blocks/Image/View.test.jsx +20 -0
  123. package/src/components/manage/Blocks/Image/schema.js +17 -10
  124. package/src/components/manage/Blocks/Image/utils.js +14 -0
  125. package/src/components/manage/Blocks/LeadImage/Edit.jsx +32 -10
  126. package/src/components/manage/Blocks/LeadImage/Edit.test.jsx +11 -1
  127. package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.jsx +28 -9
  128. package/src/components/manage/Blocks/LeadImage/LeadImageSidebar.test.jsx +8 -2
  129. package/src/components/manage/Blocks/LeadImage/View.jsx +50 -38
  130. package/src/components/manage/Blocks/LeadImage/View.test.jsx +11 -1
  131. package/src/components/manage/Blocks/Listing/DefaultTemplate.jsx +18 -3
  132. package/src/components/manage/Blocks/Listing/Edit.jsx +0 -14
  133. package/src/components/manage/Blocks/Listing/ListingBody.jsx +32 -8
  134. package/src/components/manage/Blocks/Listing/ListingBody.test.jsx +20 -0
  135. package/src/components/manage/Blocks/Listing/SummaryTemplate.jsx +1 -1
  136. package/src/components/manage/Blocks/Listing/getAsyncData.js +9 -3
  137. package/src/components/manage/Blocks/Listing/withQuerystringResults.jsx +34 -19
  138. package/src/components/manage/Blocks/Maps/Edit.jsx +135 -209
  139. package/src/components/manage/Blocks/Maps/Edit.test.jsx +1 -2
  140. package/src/components/manage/Blocks/Maps/View.test.jsx +1 -2
  141. package/src/components/manage/Blocks/Search/SearchBlockEdit.jsx +5 -4
  142. package/src/components/manage/Blocks/Search/SearchBlockView.jsx +4 -2
  143. package/src/components/manage/Blocks/Search/components/DateRangeFacet.jsx +4 -1
  144. package/src/components/manage/Blocks/Search/components/Facets.jsx +66 -7
  145. package/src/components/manage/Blocks/Search/components/FilterList.jsx +4 -6
  146. package/src/components/manage/Blocks/Search/components/SearchInput.jsx +9 -2
  147. package/src/components/manage/Blocks/Search/components/SelectFacet.jsx +2 -9
  148. package/src/components/manage/Blocks/Search/components/index.js +13 -13
  149. package/src/components/manage/Blocks/Search/hocs/index.js +2 -2
  150. package/src/components/manage/Blocks/Search/hocs/withQueryString.jsx +5 -2
  151. package/src/components/manage/Blocks/Search/hocs/withSearch.jsx +93 -46
  152. package/src/components/manage/Blocks/Search/layout/LeftColumnFacets.jsx +17 -5
  153. package/src/components/manage/Blocks/Search/layout/RightColumnFacets.jsx +17 -5
  154. package/src/components/manage/Blocks/Search/layout/TopSideFacets.jsx +21 -5
  155. package/src/components/manage/Blocks/Search/schema.js +29 -14
  156. package/src/components/manage/Blocks/Table/Cell.jsx +2 -3
  157. package/src/components/manage/Blocks/Teaser/Body.jsx +0 -1
  158. package/src/components/manage/Blocks/Teaser/DefaultBody.jsx +5 -10
  159. package/src/components/manage/Blocks/Teaser/schema.js +5 -0
  160. package/src/components/manage/Blocks/Text/Edit.jsx +2 -3
  161. package/src/components/manage/Blocks/Title/View.jsx +0 -23
  162. package/src/components/manage/Blocks/Title/View.test.jsx +16 -1
  163. package/src/components/manage/Blocks/ToC/Schema.jsx +40 -7
  164. package/src/components/manage/Blocks/ToC/View.jsx +84 -14
  165. package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.jsx +8 -3
  166. package/src/components/manage/Blocks/ToC/variations/DefaultTocRenderer.test.jsx +44 -0
  167. package/src/components/manage/Blocks/ToC/variations/HorizontalMenu.jsx +149 -10
  168. package/src/components/manage/Blocks/ToC/variations/index.js +3 -1
  169. package/src/components/manage/Contents/Contents.jsx +319 -139
  170. package/src/components/manage/Contents/ContentsItem.jsx +6 -0
  171. package/src/components/manage/Contents/ContentsPropertiesModal.jsx +90 -166
  172. package/src/components/manage/Contents/ContentsRenameModal.jsx +88 -139
  173. package/src/components/manage/Contents/ContentsRenameModal.stories.jsx +61 -0
  174. package/src/components/manage/Contents/ContentsTagsModal.jsx +83 -130
  175. package/src/components/manage/Contents/ContentsTagsModal.stories.jsx +68 -0
  176. package/src/components/manage/Contents/ContentsUploadModal.jsx +11 -7
  177. package/src/components/manage/Contents/ContentsWorkflowModal.jsx +87 -154
  178. package/src/components/manage/Controlpanels/Aliases.jsx +4 -12
  179. package/src/components/manage/Controlpanels/Controlpanels.jsx +199 -224
  180. package/src/components/manage/Controlpanels/Controlpanels.test.jsx +46 -7
  181. package/src/components/manage/Controlpanels/Groups/GroupsControlpanel.jsx +65 -38
  182. package/src/components/manage/Controlpanels/Groups/RenderGroups.jsx +2 -2
  183. package/src/components/manage/Controlpanels/Relations/BrokenRelations.jsx +91 -0
  184. package/src/components/manage/Controlpanels/Relations/Relations.jsx +114 -0
  185. package/src/components/manage/Controlpanels/Relations/RelationsListing.jsx +480 -0
  186. package/src/components/manage/Controlpanels/Relations/RelationsMatrix.jsx +531 -0
  187. package/src/components/manage/Controlpanels/Rules/AddRule.jsx +3 -10
  188. package/src/components/manage/Controlpanels/Rules/EditRule.jsx +1 -1
  189. package/src/components/manage/Controlpanels/UndoControlpanel.jsx +6 -9
  190. package/src/components/manage/Controlpanels/Users/RenderUsers.jsx +97 -7
  191. package/src/components/manage/Controlpanels/Users/UserGroupMembershipControlPanel.jsx +3 -3
  192. package/src/components/manage/Controlpanels/Users/UserGroupMembershipListing.jsx +51 -82
  193. package/src/components/manage/Controlpanels/Users/UserGroupMembershipMatrix.jsx +79 -75
  194. package/src/components/manage/Controlpanels/Users/UsersControlpanel.jsx +127 -99
  195. package/src/components/manage/Delete/Delete.jsx +96 -171
  196. package/src/components/manage/Diff/DiffField.jsx +25 -1
  197. package/src/components/manage/DragDropList/DragDropList.jsx +18 -13
  198. package/src/components/manage/Form/BlockDataForm.jsx +3 -2
  199. package/src/components/manage/Form/BlockDataForm.test.jsx +51 -17
  200. package/src/components/manage/Form/Form.jsx +7 -6
  201. package/src/components/manage/Form/InlineForm.jsx +39 -9
  202. package/src/components/manage/Form/InlineForm.test.jsx +16 -14
  203. package/src/components/manage/Form/InlineFormState.js +8 -0
  204. package/src/components/manage/History/History.jsx +11 -1
  205. package/src/components/manage/LinksToItem/LinksToItem.jsx +209 -0
  206. package/src/components/manage/LinksToItem/LinksToItem.test.jsx +100 -0
  207. package/src/components/manage/LockingToastsFactory/LockingToastsFactory.jsx +1 -2
  208. package/src/components/manage/Messages/Messages.jsx +32 -99
  209. package/src/components/manage/Messages/Messages.test.jsx +0 -1
  210. package/src/components/manage/Multilingual/CreateTranslation.jsx +2 -2
  211. package/src/components/manage/Multilingual/TranslationObject.jsx +4 -3
  212. package/src/components/manage/Preferences/ChangePassword.jsx +2 -2
  213. package/src/components/manage/Preferences/PersonalPreferences.jsx +2 -2
  214. package/src/components/manage/Sharing/Sharing.jsx +62 -22
  215. package/src/components/manage/Sidebar/AlignBlock.jsx +1 -1
  216. package/src/components/manage/Sidebar/Sidebar.jsx +139 -220
  217. package/src/components/manage/TemplateChooser/TemplateChooser.jsx +38 -0
  218. package/src/components/manage/TemplateChooser/TemplateChooser.test.jsx +34 -0
  219. package/src/components/manage/TemplateChooser/template.svg +10 -0
  220. package/src/components/manage/Toast/Toast.jsx +2 -2
  221. package/src/components/manage/Toolbar/More.jsx +17 -2
  222. package/src/components/manage/Toolbar/PersonalTools.jsx +97 -155
  223. package/src/components/manage/Toolbar/Toolbar.jsx +2 -2
  224. package/src/components/manage/Toolbar/Types.jsx +2 -2
  225. package/src/components/manage/UniversalLink/UniversalLink.jsx +6 -12
  226. package/src/components/manage/UniversalLink/UniversalLink.test.jsx +37 -0
  227. package/src/components/manage/Widgets/AlignWidget.jsx +2 -4
  228. package/src/components/manage/Widgets/ArrayWidget.jsx +3 -1
  229. package/src/components/manage/Widgets/ArrayWidget.test.jsx +45 -1
  230. package/src/components/manage/Widgets/ColorPickerWidget.jsx +6 -1
  231. package/src/components/manage/Widgets/ColorPickerWidget.test.jsx +9 -7
  232. package/src/components/manage/Widgets/DatetimeWidget.jsx +11 -13
  233. package/src/components/manage/Widgets/FileWidget.jsx +2 -1
  234. package/src/components/manage/Widgets/FormFieldWrapper.jsx +1 -1
  235. package/src/components/manage/Widgets/IdWidget.jsx +1 -2
  236. package/src/components/manage/Widgets/ObjectBrowserWidget.jsx +2 -9
  237. package/src/components/manage/Widgets/ObjectListWidget.jsx +3 -8
  238. package/src/components/manage/Widgets/RecurrenceWidget/ByDayField.jsx +2 -1
  239. package/src/components/manage/Widgets/RecurrenceWidget/MonthOfTheYearField.jsx +2 -1
  240. package/src/components/manage/Widgets/RecurrenceWidget/Occurences.jsx +2 -1
  241. package/src/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx +10 -12
  242. package/src/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthField.jsx +2 -1
  243. package/src/components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField.jsx +4 -4
  244. package/src/components/manage/Widgets/RegistryImageWidget.jsx +210 -0
  245. package/src/components/manage/Widgets/RegistryImageWidget.test.jsx +91 -0
  246. package/src/components/manage/Widgets/SchemaWidget.jsx +6 -9
  247. package/src/components/manage/Widgets/SelectUtils.js +2 -2
  248. package/src/components/manage/Widgets/SelectWidget.jsx +16 -2
  249. package/src/components/manage/Widgets/SelectWidget.test.jsx +45 -1
  250. package/src/components/manage/Widgets/WysiwygWidget.jsx +2 -9
  251. package/src/components/manage/Workflow/Workflow.jsx +75 -184
  252. package/src/components/theme/Anontools/Anontools.jsx +44 -72
  253. package/src/components/theme/Anontools/Anontools.stories.jsx +16 -6
  254. package/src/components/theme/Anontools/Anontools.test.jsx +16 -2
  255. package/src/components/theme/Breadcrumbs/Breadcrumbs.jsx +52 -99
  256. package/src/components/theme/Breadcrumbs/Breadcrumbs.stories.jsx +14 -13
  257. package/src/components/theme/Comments/Comment.stories.jsx +84 -0
  258. package/src/components/theme/Comments/CommentEditModal.jsx +63 -115
  259. package/src/components/theme/Comments/Comments.jsx +268 -380
  260. package/src/components/theme/Component/Component.jsx +1 -1
  261. package/src/components/theme/ContactForm/ContactForm.jsx +108 -192
  262. package/src/components/theme/ContactForm/ContactForm.stories.jsx +1 -1
  263. package/src/components/theme/ContactForm/ContactForm.test.jsx +2 -3
  264. package/src/components/theme/ContentMetadataTags/ContentMetadataTags.jsx +41 -3
  265. package/src/components/theme/Error/ServerError.jsx +29 -0
  266. package/src/components/theme/Footer/Footer.jsx +2 -13
  267. package/src/components/theme/Header/Header.jsx +37 -63
  268. package/src/components/theme/Header/Header.test.jsx +18 -0
  269. package/src/components/theme/Icon/Icon.jsx +2 -2
  270. package/src/components/theme/Image/Image.jsx +96 -0
  271. package/src/components/theme/Image/Image.test.jsx +125 -0
  272. package/src/components/theme/LanguageSelector/LanguageSelector.js +8 -3
  273. package/src/components/theme/Login/Login.jsx +160 -242
  274. package/src/components/theme/Logo/Logo.Multilingual.test.jsx +131 -1
  275. package/src/components/theme/Logo/Logo.jsx +35 -26
  276. package/src/components/theme/Logo/Logo.test.jsx +135 -1
  277. package/src/components/theme/Logout/Logout.jsx +36 -83
  278. package/src/components/theme/MultilingualRedirector/MultilingualRedirector.jsx +2 -2
  279. package/src/components/theme/Navigation/NavItem.jsx +4 -2
  280. package/src/components/theme/Navigation/Navigation.jsx +86 -171
  281. package/src/components/theme/NotFound/NotFound.jsx +55 -41
  282. package/src/components/theme/PasswordReset/PasswordReset.jsx +8 -6
  283. package/src/components/theme/PasswordReset/RequestPasswordReset.jsx +96 -171
  284. package/src/components/theme/PreviewImage/PreviewImage.jsx +31 -15
  285. package/src/components/theme/PreviewImage/PreviewImage.test.js +53 -13
  286. package/src/components/theme/Register/Register.jsx +2 -4
  287. package/src/components/theme/Search/SearchTags.jsx +30 -60
  288. package/src/components/theme/SearchWidget/SearchWidget.jsx +49 -97
  289. package/src/components/theme/SearchWidget/SearchWidget.test.jsx +8 -0
  290. package/src/components/theme/Sitemap/Sitemap.jsx +25 -12
  291. package/src/components/theme/Sitemap/Sitemap.test.jsx +23 -2
  292. package/src/components/theme/TsTest/TsTest.test.tsx +11 -0
  293. package/src/components/theme/TsTest/TsTest.tsx +15 -0
  294. package/src/components/theme/View/AlbumView.jsx +21 -16
  295. package/src/components/theme/View/DefaultView.jsx +1 -1
  296. package/src/components/theme/View/EventDatesInfo.jsx +2 -1
  297. package/src/components/theme/View/EventView.jsx +36 -25
  298. package/src/components/theme/View/FileView.jsx +23 -18
  299. package/src/components/theme/View/ImageView.jsx +40 -32
  300. package/src/components/theme/View/ImageView.test.jsx +4 -0
  301. package/src/components/theme/View/LinkView.jsx +53 -78
  302. package/src/components/theme/View/ListingView.jsx +36 -28
  303. package/src/components/theme/View/NewsItemView.jsx +16 -17
  304. package/src/components/theme/View/RenderBlocks.jsx +56 -21
  305. package/src/components/theme/View/RenderEmptyBlock.jsx +5 -0
  306. package/src/components/theme/View/SummaryView.jsx +49 -39
  307. package/src/components/theme/View/TabularView.jsx +59 -53
  308. package/src/components/theme/View/View.jsx +2 -0
  309. package/src/components/theme/Widgets/DateWidget.jsx +2 -1
  310. package/src/components/theme/Widgets/DatetimeWidget.jsx +2 -1
  311. package/src/components/theme/Widgets/ImageWidget.stories.jsx +1 -2
  312. package/src/components/theme/Widgets/RelationsWidget.jsx +13 -11
  313. package/src/config/Blocks.jsx +46 -0
  314. package/src/config/Components.jsx +3 -1
  315. package/src/config/ControlPanels.js +2 -1
  316. package/src/config/Loadables.jsx +1 -1
  317. package/src/config/NonContentRoutes.jsx +1 -0
  318. package/src/config/RichTextEditor/Blocks.jsx +4 -5
  319. package/src/config/RichTextEditor/FromHTML.jsx +2 -2
  320. package/src/config/RichTextEditor/Plugins.jsx +2 -3
  321. package/src/config/RichTextEditor/Styles.jsx +1 -1
  322. package/src/config/RichTextEditor/ToHTML.jsx +12 -10
  323. package/src/config/RichTextEditor/index.js +2 -3
  324. package/src/config/Views.jsx +6 -4
  325. package/src/config/Widgets.jsx +4 -0
  326. package/src/config/index.js +38 -2
  327. package/src/config/server.js +2 -0
  328. package/src/constants/ActionTypes.js +8 -0
  329. package/src/constants/Indexes.js +3 -1
  330. package/src/constants/Languages.js +8 -4
  331. package/src/express-middleware/devproxy.js +1 -1
  332. package/src/express-middleware/files.js +11 -9
  333. package/src/express-middleware/images.js +12 -5
  334. package/src/express-middleware/ok.js +16 -0
  335. package/src/express-middleware/robotstxt.js +1 -1
  336. package/src/express-middleware/sitemap.js +37 -5
  337. package/src/express-middleware/static.js +3 -3
  338. package/src/helpers/Api/Api.js +1 -1
  339. package/src/helpers/Blocks/Blocks.js +52 -6
  340. package/src/helpers/Blocks/Blocks.test.js +92 -13
  341. package/src/helpers/Extensions/index.js +2 -1
  342. package/src/helpers/Extensions/withBlockSchemaEnhancer.js +63 -61
  343. package/src/helpers/Extensions/withBlockSchemaEnhancer.test.js +145 -0
  344. package/src/helpers/FormValidation/FormValidation.js +42 -3
  345. package/src/helpers/FormValidation/FormValidation.test.js +73 -0
  346. package/src/helpers/Html/Html.jsx +5 -9
  347. package/src/helpers/Html/Html.test.jsx +5 -0
  348. package/src/helpers/Loadable/__mocks__/Loadable.js +18 -18
  349. package/src/helpers/MessageLabels/MessageLabels.js +111 -4
  350. package/src/helpers/Robots/Robots.js +24 -6
  351. package/src/helpers/ScrollToTop/ScrollToTop.jsx +5 -3
  352. package/src/helpers/Site/index.js +21 -0
  353. package/src/helpers/Sitemap/Sitemap.js +44 -2
  354. package/src/helpers/Url/Url.js +30 -4
  355. package/src/helpers/Url/Url.test.js +55 -0
  356. package/src/helpers/Utils/UseDetectClickOutside.stories.jsx +190 -0
  357. package/src/helpers/Utils/Utils.js +73 -13
  358. package/src/helpers/Utils/Utils.test.js +17 -4
  359. package/src/helpers/Utils/usePagination.js +67 -14
  360. package/src/helpers/Utils/usePagination.test.js +115 -0
  361. package/src/helpers/index.js +22 -10
  362. package/src/hooks/client/useClient.js +11 -0
  363. package/src/hooks/clipboard/useClipboard.js +26 -0
  364. package/src/hooks/index.js +2 -0
  365. package/src/icons/grid-block.svg +11 -0
  366. package/src/middleware/Api.test.js +54 -0
  367. package/src/middleware/api.js +209 -175
  368. package/src/middleware/blacklistRoutes.js +25 -22
  369. package/src/middleware/index.js +2 -2
  370. package/src/middleware/storeProtectLoadUtils.js +61 -62
  371. package/src/middleware/storeProtectLoadUtils.test.js +47 -43
  372. package/src/reducers/actions/actions.js +8 -6
  373. package/src/reducers/actions/actions.test.js +70 -0
  374. package/src/reducers/breadcrumbs/breadcrumbs.js +1 -1
  375. package/src/reducers/content/content.test.js +4 -4
  376. package/src/reducers/index.js +6 -0
  377. package/src/reducers/navigation/navigation.js +6 -6
  378. package/src/reducers/navigation/navigation.test.js +30 -0
  379. package/src/reducers/navroot/navroot.js +79 -0
  380. package/src/reducers/navroot/navroot.test.js +110 -0
  381. package/src/reducers/relations/relations.js +201 -0
  382. package/src/reducers/site/site.js +51 -0
  383. package/src/reducers/site/site.test.js +67 -0
  384. package/src/reducers/types/types.js +1 -1
  385. package/src/reducers/userSession/userSession.js +15 -1
  386. package/src/registry.js +2 -2
  387. package/src/routes.js +14 -0
  388. package/src/server.jsx +37 -23
  389. package/src/start-server.js +2 -2
  390. package/src/storybook.jsx +24 -38
  391. package/test-setup-config.js +12 -1
  392. package/theme/themes/pastanaga/collections/form.overrides +46 -0
  393. package/theme/themes/pastanaga/collections/menu.overrides +3 -2
  394. package/theme/themes/pastanaga/elements/container.overrides +5 -2
  395. package/theme/themes/pastanaga/elements/input.overrides +11 -1
  396. package/theme/themes/pastanaga/elements/label.overrides +10 -0
  397. package/theme/themes/pastanaga/elements/step.overrides +2 -1
  398. package/theme/themes/pastanaga/extras/blocks.less +25 -15
  399. package/theme/themes/pastanaga/extras/color-picker-widget.less +1 -1
  400. package/theme/themes/pastanaga/extras/contents.less +6 -1
  401. package/theme/themes/pastanaga/extras/draftjs.less +4 -4
  402. package/theme/themes/pastanaga/extras/grid.less +427 -0
  403. package/theme/themes/pastanaga/extras/login.less +3 -0
  404. package/theme/themes/pastanaga/extras/main.less +14 -7
  405. package/theme/themes/pastanaga/extras/react-dates-overrides.less +4 -2
  406. package/theme/themes/pastanaga/extras/search.less +7 -1
  407. package/theme/themes/pastanaga/extras/sidebar.less +9 -4
  408. package/theme/themes/pastanaga/extras/time-picker-overrides.less +5 -3
  409. package/theme/themes/pastanaga/extras/toc.less +29 -0
  410. package/theme/themes/pastanaga/extras/toolbar.less +6 -2
  411. package/theme/themes/pastanaga/extras/userscontrolpanel.less +104 -73
  412. package/theme/themes/pastanaga/extras/widgets.less +1 -1
  413. package/theme/themes/pastanaga/modules/rating.overrides +2 -1
  414. package/theme/themes/pastanaga-cms-ui/elements/container.overrides +2 -1
  415. package/theme/themes/pastanaga-cms-ui/extras/cms-ui.elements.container.less +6 -2
  416. package/theme/themes/pastanaga-cms-ui/extras/cms-ui.site.less +2 -2
  417. package/tsconfig.json +33 -0
  418. package/webpack-plugins/webpack-less-plugin.js +19 -0
  419. package/.changelog.draft +0 -19
  420. package/.editorconfig +0 -36
  421. package/.storybook/main.js +0 -127
  422. package/.storybook/manager.js +0 -15
  423. package/.storybook/preview.js +0 -21
  424. package/.storybook/static/previewImage.svg +0 -48
  425. package/.vale.ini +0 -10
  426. package/.yarnrc.yml +0 -5
  427. package/jsdoc.json +0 -16
  428. package/netlify.toml +0 -5
  429. package/pyvenv.cfg +0 -3
  430. package/share/man/man1/ttx.1 +0 -225
  431. package/src/components/manage/Blocks/Teaser/utils.js +0 -44
  432. package/src/components/manage/Blocks/Teaser/utils.test.jsx +0 -229
  433. package/src/components/theme/Header/Header.md +0 -27
  434. package/styles/Vocab/Base/accept.txt +0 -0
  435. package/styles/Vocab/Base/reject.txt +0 -0
  436. package/styles/Vocab/Plone/accept.txt +0 -8
  437. package/styles/Vocab/Plone/reject.txt +0 -0
  438. package/towncrier.toml +0 -33
@@ -34,12 +34,12 @@ msgstr "Azione"
34
34
  #: components/manage/Controlpanels/Rules/ConfigureRule
35
35
  # defaultMessage: Action changed
36
36
  msgid "Action changed"
37
- msgstr ""
37
+ msgstr "L'azione è stata modificata"
38
38
 
39
39
  #: components/manage/Controlpanels/Rules/ConfigureRule
40
40
  # defaultMessage: Action:
41
41
  msgid "Action: "
42
- msgstr ""
42
+ msgstr "Azione: "
43
43
 
44
44
  #: components/manage/Actions/Actions
45
45
  #: components/manage/Contents/Contents
@@ -59,12 +59,12 @@ msgstr "Attiva e disattiva"
59
59
  #: components/manage/Rules/Rules
60
60
  # defaultMessage: Active
61
61
  msgid "Active"
62
- msgstr ""
62
+ msgstr "Attiva"
63
63
 
64
64
  #: components/manage/Rules/Rules
65
65
  # defaultMessage: Active content rules in this Page
66
66
  msgid "Active content rules in this Page"
67
- msgstr ""
67
+ msgstr "Regole di contenuto attive in questa Pagina"
68
68
 
69
69
  #: components/manage/Aliases/Aliases
70
70
  #: components/manage/Controlpanels/Aliases
@@ -96,12 +96,12 @@ msgstr "Aggiungi un contenuto"
96
96
  #: components/manage/Controlpanels/Rules/AddRule
97
97
  # defaultMessage: Add Content Rule
98
98
  msgid "Add Content Rule"
99
- msgstr ""
99
+ msgstr "Aggiungi una regola di contenuto"
100
100
 
101
101
  #: components/manage/Controlpanels/Rules/AddRule
102
102
  # defaultMessage: Add Rule
103
103
  msgid "Add Rule"
104
- msgstr ""
104
+ msgstr "Aggiungi una regola"
105
105
 
106
106
  #: components/manage/Toolbar/Types
107
107
  # defaultMessage: Add Translation…
@@ -121,18 +121,23 @@ msgstr "Aggiungi una descrizione…"
121
121
  #: components/manage/Aliases/Aliases
122
122
  # defaultMessage: Add a new alternative url
123
123
  msgid "Add a new alternative url"
124
- msgstr ""
124
+ msgstr "Aggiungi un nuovo url alternativo"
125
125
 
126
126
  #: components/manage/Controlpanels/Rules/ConfigureRule
127
127
  # defaultMessage: Action added
128
128
  msgid "Add action"
129
- msgstr ""
129
+ msgstr "Aggiungi un'azione"
130
130
 
131
131
  #: components/manage/BlockChooser/BlockChooserButton
132
132
  # defaultMessage: Add block
133
133
  msgid "Add block"
134
134
  msgstr "Aggiungi blocco"
135
135
 
136
+ #: components/manage/Blocks/Container/NewBlockAddButton
137
+ # defaultMessage: Add block in position {index}
138
+ msgid "Add block in position {index}"
139
+ msgstr "Aggiungi un blocco alla posizione {index}"
140
+
136
141
  #: helpers/MessageLabels/MessageLabels
137
142
  # defaultMessage: Add block…
138
143
  msgid "Add block…"
@@ -141,12 +146,12 @@ msgstr "Aggiungi un blocco…"
141
146
  #: components/manage/Controlpanels/Rules/ConfigureRule
142
147
  # defaultMessage: Condition added
143
148
  msgid "Add condition"
144
- msgstr ""
149
+ msgstr "Aggiungi una condizione"
145
150
 
146
151
  #: components/manage/Controlpanels/Rules/Rules
147
152
  # defaultMessage: Add content rule
148
153
  msgid "Add content rule"
149
- msgstr ""
154
+ msgstr "Aggiungi una regola di contenuto"
150
155
 
151
156
  #: components/manage/Widgets/QueryWidget
152
157
  # defaultMessage: Add criteria
@@ -158,6 +163,11 @@ msgstr "Aggiungi un criterio"
158
163
  msgid "Add date"
159
164
  msgstr "Aggiungi una data"
160
165
 
166
+ #: components/manage/Blocks/Container/SimpleContainerToolbar
167
+ # defaultMessage: Add element to container
168
+ msgid "Add element to container"
169
+ msgstr "Aggiungi un elemento al container"
170
+
161
171
  #: components/manage/Widgets/SchemaWidget
162
172
  # defaultMessage: Add field
163
173
  msgid "Add field"
@@ -211,7 +221,7 @@ msgstr "Aggiungi {type}"
211
221
  #: components/manage/Controlpanels/Controlpanels
212
222
  # defaultMessage: Add-Ons
213
223
  msgid "Add-Ons"
214
- msgstr ""
224
+ msgstr "Add-On"
215
225
 
216
226
  #: components/manage/Controlpanels/Controlpanels
217
227
  # defaultMessage: Add-on Configuration
@@ -221,7 +231,7 @@ msgstr "Configurazione Add-on"
221
231
  #: components/manage/Controlpanels/AddonsControlpanel
222
232
  # defaultMessage: Add-ons
223
233
  msgid "Add-ons"
224
- msgstr ""
234
+ msgstr "Add-On"
225
235
 
226
236
  #: components/manage/Controlpanels/AddonsControlpanel
227
237
  # defaultMessage: Add-ons Settings
@@ -231,7 +241,7 @@ msgstr "Impostazioni Add-ons"
231
241
  #: components/manage/Rules/Rules
232
242
  # defaultMessage: Added
233
243
  msgid "Added"
234
- msgstr ""
244
+ msgstr "Aggiunta"
235
245
 
236
246
  #: components/manage/Widgets/RecurrenceWidget/Occurences
237
247
  # defaultMessage: Additional date
@@ -241,48 +251,58 @@ msgstr "Data aggiuntiva"
241
251
  #: components/manage/Controlpanels/AddonsControlpanel
242
252
  # defaultMessage: Addon could not be installed
243
253
  msgid "Addon could not be installed"
244
- msgstr ""
254
+ msgstr "Non è stato possibile installare l'addon"
245
255
 
246
256
  #: components/manage/Controlpanels/AddonsControlpanel
247
257
  # defaultMessage: Addon could not be uninstalled
248
258
  msgid "Addon could not be uninstalled"
249
- msgstr ""
259
+ msgstr "Non è stato possibile disinstallare l'addon"
250
260
 
251
261
  #: components/manage/Controlpanels/AddonsControlpanel
252
262
  # defaultMessage: Addon could not be upgraded
253
263
  msgid "Addon could not be upgraded"
254
- msgstr ""
264
+ msgstr "Non è stato possibile aggiornare l'addon"
255
265
 
256
266
  #: components/manage/Controlpanels/AddonsControlpanel
257
267
  # defaultMessage: Addon installed succesfuly
258
268
  msgid "Addon installed succesfuly"
259
- msgstr ""
269
+ msgstr "L'addon è stato installato correttamente"
260
270
 
261
271
  #: components/manage/Controlpanels/AddonsControlpanel
262
272
  # defaultMessage: Addon uninstalled succesfuly
263
273
  msgid "Addon uninstalled succesfuly"
264
- msgstr ""
274
+ msgstr "L'addon è stato disinstallato correttamente"
265
275
 
266
276
  #: components/manage/Controlpanels/AddonsControlpanel
267
277
  # defaultMessage: Addon upgraded succesfuly
268
278
  msgid "Addon upgraded succesfuly"
269
- msgstr ""
279
+ msgstr "L'addon è stato aggiornato correttamente"
280
+
281
+ #: components/manage/Blocks/Search/schema
282
+ # defaultMessage: Advanced facet?
283
+ msgid "Advanced facet?"
284
+ msgstr "Filtri avanzati?"
285
+
286
+ #: components/manage/Blocks/Search/schema
287
+ # defaultMessage: Advanced facets are initially hidden and displayed on demand
288
+ msgid "Advanced facets are initially hidden and displayed on demand"
289
+ msgstr "I filtri avanzati sono inizialmente nascosti e vengono visualizzati su richiesta "
270
290
 
271
291
  #: config/Views
272
292
  # defaultMessage: Album view
273
293
  msgid "Album view"
274
- msgstr ""
294
+ msgstr "Vista album"
275
295
 
276
296
  #: components/manage/Controlpanels/Aliases
277
297
  # defaultMessage: Alias
278
298
  msgid "Alias"
279
- msgstr ""
299
+ msgstr "Alias"
280
300
 
281
301
  #: components/manage/Aliases/Aliases
282
302
  #: components/manage/Controlpanels/Aliases
283
303
  # defaultMessage: Alias has been added
284
304
  msgid "Alias has been added"
285
- msgstr ""
305
+ msgstr "L'alias è stato aggiunto"
286
306
 
287
307
  #: components/manage/Blocks/Image/schema
288
308
  #: components/manage/Blocks/LeadImage/LeadImageSidebar
@@ -301,12 +321,12 @@ msgstr "Tutti"
301
321
  #: config/Views
302
322
  # defaultMessage: All content
303
323
  msgid "All content"
304
- msgstr ""
324
+ msgstr "Tutti i contenuti"
305
325
 
306
326
  #: components/manage/Controlpanels/Aliases
307
327
  # defaultMessage: All existing alternative urls for this site
308
328
  msgid "All existing alternative urls for this site"
309
- msgstr ""
329
+ msgstr "Tutti gli url alternativi per questo sito"
310
330
 
311
331
  #: components/theme/Search/Search
312
332
  # defaultMessage: Alphabetically
@@ -333,33 +353,33 @@ msgstr "Descrivi lo scopo dell'immagine."
333
353
  #: components/manage/Controlpanels/Aliases
334
354
  # defaultMessage: Alternative url path (Required)
335
355
  msgid "Alternative url path (Required)"
336
- msgstr ""
356
+ msgstr "Percorso url alternativo (Obbligatorio)"
337
357
 
338
358
  #: components/manage/Aliases/Aliases
339
359
  #: components/manage/Controlpanels/Aliases
340
360
  # defaultMessage: Alternative url path must start with a slash.
341
361
  msgid "Alternative url path must start with a slash."
342
- msgstr ""
362
+ msgstr "Il percorso url alternativo comincia con uno slash "
343
363
 
344
364
  #: components/manage/Controlpanels/Aliases
345
365
  # defaultMessage: Alternative url path → target url path (date and time of creation, manually created yes/no)
346
366
  msgid "Alternative url path → target url path (date and time of creation, manually created yes/no)"
347
- msgstr ""
367
+ msgstr "Percorso url alternativo → percorso url di destinazione (data e ora di creazione, creata manualmente sì/no)"
348
368
 
349
369
  #: components/manage/Rules/Rules
350
370
  # defaultMessage: Applied to subfolders
351
371
  msgid "Applied to subfolders"
352
- msgstr ""
372
+ msgstr "Applicato alle sottocartelle"
353
373
 
354
374
  #: components/manage/Rules/Rules
355
375
  # defaultMessage: Applies to subfolders?
356
376
  msgid "Applies to subfolders?"
357
- msgstr ""
377
+ msgstr "Applicare alle sottocartelle?"
358
378
 
359
379
  #: components/manage/Rules/Rules
360
380
  # defaultMessage: Apply to subfolders
361
381
  msgid "Apply to subfolders"
362
- msgstr ""
382
+ msgstr "Applica a sottocartelle"
363
383
 
364
384
  #: components/manage/Toolbar/More
365
385
  # defaultMessage: Apply working copy
@@ -385,7 +405,7 @@ msgstr "Crescente"
385
405
  #: components/manage/Controlpanels/Rules/ConfigureRule
386
406
  # defaultMessage: Assignments
387
407
  msgid "Assignments"
388
- msgstr ""
408
+ msgstr "Assegnazione"
389
409
 
390
410
  #: components/manage/Controlpanels/AddonsControlpanel
391
411
  # defaultMessage: Available
@@ -395,7 +415,7 @@ msgstr "Disponibile"
395
415
  #: components/manage/Rules/Rules
396
416
  # defaultMessage: Available content rules:
397
417
  msgid "Available content rules:"
398
- msgstr ""
418
+ msgstr "Regole di contenuto disponibili:"
399
419
 
400
420
  #: components/manage/Aliases/Aliases
401
421
  #: components/manage/Contents/Contents
@@ -416,6 +436,7 @@ msgstr ""
416
436
  #: components/manage/Controlpanels/UpgradeControlPanel
417
437
  #: components/manage/Diff/Diff
418
438
  #: components/manage/History/History
439
+ #: components/manage/LinksToItem/LinksToItem
419
440
  #: components/manage/Multilingual/ManageTranslations
420
441
  #: components/manage/Preferences/ChangePassword
421
442
  #: components/manage/Preferences/PersonalPreferences
@@ -455,6 +476,11 @@ msgstr "E-mail e password distinguono entrambi le maiuscole dalle minuscole, ver
455
476
  msgid "Breadcrumbs"
456
477
  msgstr "Briciole di pane"
457
478
 
479
+ #: components/manage/Controlpanels/Relations/BrokenRelations
480
+ # defaultMessage: Broken relations
481
+ msgid "Broken relations"
482
+ msgstr "Relazioni corrotte"
483
+
458
484
  #: components/manage/Blocks/HeroImageLeft/Edit
459
485
  #: components/manage/Contents/ContentsUploadModal
460
486
  #: components/manage/Sidebar/ObjectBrowserNav
@@ -472,11 +498,6 @@ msgstr "Sfoglia i contenuti, rilascia un'immagine o digita un URL"
472
498
  msgid "By default, permissions from the container of this item are inherited. If you disable this, only the explicitly defined sharing permissions will be valid. In the overview, the symbol {inherited} indicates an inherited value. Similarly, the symbol {global} indicates a global role, which is managed by the site administrator."
473
499
  msgstr "Di norma, i permessi di questo elemento vengono ereditati dal contenitore. Se disabiliti questa opzione, verranno considerati solo i permessi di condivisione definiti esplicitamente. Nel sommario, il simbolo {inherited} indica una impostazione ereditata. Analogamente, il simbolo {global} indica un ruolo globale, che è gestito dall'amministratore del sito"
474
500
 
475
- #: components/manage/Contents/Contents
476
- # defaultMessage: By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first.
477
- msgid "By deleting this item, you will break links that exist in the items listed below. If this is indeed what you want to do, we recommend that remove these references first."
478
- msgstr ""
479
-
480
501
  #: components/manage/Controlpanels/DatabaseInformation
481
502
  # defaultMessage: Cache Name
482
503
  msgid "Cache Name"
@@ -582,6 +603,7 @@ msgid "Choose Target"
582
603
  msgstr "Seleziona la destinazione"
583
604
 
584
605
  #: components/manage/Widgets/FileWidget
606
+ #: components/manage/Widgets/RegistryImageWidget
585
607
  # defaultMessage: Choose a file
586
608
  msgid "Choose a file"
587
609
  msgstr "Scegli un file"
@@ -656,32 +678,32 @@ msgstr "Confronta"
656
678
  #: components/manage/Controlpanels/Rules/ConfigureRule
657
679
  # defaultMessage: Condition changed
658
680
  msgid "Condition changed"
659
- msgstr ""
681
+ msgstr "La condizione è stata modificata"
660
682
 
661
683
  #: components/manage/Controlpanels/Rules/ConfigureRule
662
684
  # defaultMessage: Condition:
663
685
  msgid "Condition: "
664
- msgstr ""
686
+ msgstr "Condizione: "
665
687
 
666
688
  #: components/manage/Controlpanels/UpgradeControlPanel
667
689
  # defaultMessage: Configuration Versions
668
690
  msgid "Configuration Versions"
669
- msgstr ""
691
+ msgstr "Versioni di configurazione"
670
692
 
671
693
  #: components/manage/Controlpanels/Rules/EditRule
672
694
  # defaultMessage: Configure Content Rule
673
695
  msgid "Configure Content Rule"
674
- msgstr ""
696
+ msgstr "Configura la regola di contenuto"
675
697
 
676
698
  #: components/manage/Controlpanels/Rules/ConfigureRule
677
699
  # defaultMessage: Configure Content Rule: {title}
678
700
  msgid "Configure Content Rule: {title}"
679
- msgstr ""
701
+ msgstr "Configura la regola di contenuto: {title}"
680
702
 
681
703
  #: components/manage/Controlpanels/Rules/ConfigureRule
682
704
  # defaultMessage: Configure content rule
683
705
  msgid "Configure content rule"
684
- msgstr ""
706
+ msgstr "Configura la regola di contenuto"
685
707
 
686
708
  #: components/manage/Preferences/ChangePassword
687
709
  #: components/theme/PasswordReset/PasswordReset
@@ -704,6 +726,11 @@ msgstr "Form di contatto"
704
726
  msgid "Contained items"
705
727
  msgstr "Elementi contenuti"
706
728
 
729
+ #: components/manage/Blocks/Container/SimpleContainerToolbar
730
+ # defaultMessage: Container settings
731
+ msgid "Container settings"
732
+ msgstr "Impostazioni del container"
733
+
707
734
  #: components/manage/Controlpanels/Controlpanels
708
735
  # defaultMessage: Content
709
736
  msgid "Content"
@@ -712,23 +739,28 @@ msgstr "Contenuto"
712
739
  #: components/manage/Controlpanels/Rules/Rules
713
740
  # defaultMessage: Content Rule
714
741
  msgid "Content Rule"
715
- msgstr ""
742
+ msgstr "Regola di contenuto"
716
743
 
717
744
  #: components/manage/Controlpanels/Controlpanels
718
745
  #: components/manage/Controlpanels/Rules/Rules
719
746
  # defaultMessage: Content Rules
720
747
  msgid "Content Rules"
721
- msgstr ""
748
+ msgstr "Regole di contenuto"
722
749
 
723
750
  #: components/manage/Rules/Rules
724
751
  # defaultMessage: Content rules for {title}
725
752
  msgid "Content rules for {title}"
726
- msgstr ""
753
+ msgstr "Regole di contenuto per {titolo}"
727
754
 
728
755
  #: components/manage/Rules/Rules
729
756
  # defaultMessage: Content rules from parent folders
730
757
  msgid "Content rules from parent folders"
731
- msgstr ""
758
+ msgstr "Regole di contenuto da cartelle padre"
759
+
760
+ #: components/manage/LinksToItem/LinksToItem
761
+ # defaultMessage: Content that links to or references {title}
762
+ msgid "Content that links to or references {title}"
763
+ msgstr "Contenuto collegato a {title}"
732
764
 
733
765
  #: components/manage/Controlpanels/ContentTypes
734
766
  # defaultMessage: Content type created
@@ -759,7 +791,7 @@ msgid "Copy"
759
791
  msgstr "Copia"
760
792
 
761
793
  #: helpers/MessageLabels/MessageLabels
762
- # defaultMessage: undefined
794
+ # defaultMessage: Copy blocks
763
795
  msgid "Copy blocks"
764
796
  msgstr "Copia blocchi"
765
797
 
@@ -773,6 +805,11 @@ msgstr "Copyright"
773
805
  msgid "Copyright statement or other rights information on this item."
774
806
  msgstr "Informazioni sul copyright o su altri diritti dell'elemento."
775
807
 
808
+ #: helpers/MessageLabels/MessageLabels
809
+ # defaultMessage: Create or delete relations to target
810
+ msgid "Create or delete relations to target"
811
+ msgstr "Crea o elimina relazioni con la destinazione"
812
+
776
813
  #: components/manage/Toolbar/More
777
814
  # defaultMessage: Create working copy
778
815
  msgid "Create working copy"
@@ -807,7 +844,7 @@ msgstr "Criteri"
807
844
  #: components/manage/Controlpanels/UpgradeControlPanel
808
845
  # defaultMessage: Current active configuration
809
846
  msgid "Current active configuration"
810
- msgstr ""
847
+ msgstr "Configurazione attiva corrente"
811
848
 
812
849
  #: components/manage/Blocks/Search/components/FilterList
813
850
  # defaultMessage: Current filters applied
@@ -827,7 +864,7 @@ msgid "Cut"
827
864
  msgstr "Taglia"
828
865
 
829
866
  #: helpers/MessageLabels/MessageLabels
830
- # defaultMessage: undefined
867
+ # defaultMessage: Cut blocks
831
868
  msgid "Cut blocks"
832
869
  msgstr "Taglia blocchi"
833
870
 
@@ -839,7 +876,7 @@ msgstr "Giornaliera"
839
876
  #: components/manage/Controlpanels/Controlpanels
840
877
  # defaultMessage: Database
841
878
  msgid "Database"
842
- msgstr ""
879
+ msgstr "Database"
843
880
 
844
881
  #: components/manage/Controlpanels/DatabaseInformation
845
882
  # defaultMessage: Database Information
@@ -896,7 +933,7 @@ msgstr "Default"
896
933
  #: config/Views
897
934
  # defaultMessage: Default view
898
935
  msgid "Default view"
899
- msgstr ""
936
+ msgstr "Vista default"
900
937
 
901
938
  #: components/manage/Contents/Contents
902
939
  #: components/manage/Contents/ContentsItem
@@ -931,10 +968,10 @@ msgstr "Elimina utente"
931
968
  #: components/manage/Controlpanels/Rules/ConfigureRule
932
969
  # defaultMessage: Action deleted
933
970
  msgid "Delete action"
934
- msgstr ""
971
+ msgstr "Cancella azione"
935
972
 
936
973
  #: helpers/MessageLabels/MessageLabels
937
- # defaultMessage: undefined
974
+ # defaultMessage: Delete blocks
938
975
  msgid "Delete blocks"
939
976
  msgstr "Elimina blocchi"
940
977
 
@@ -946,17 +983,27 @@ msgstr "Elimina colonna"
946
983
  #: components/manage/Controlpanels/Rules/ConfigureRule
947
984
  # defaultMessage: Condition deleted
948
985
  msgid "Delete condition"
949
- msgstr ""
986
+ msgstr "Cancella condizione"
950
987
 
951
988
  #: components/manage/Blocks/Table/Edit
952
989
  # defaultMessage: Delete row
953
990
  msgid "Delete row"
954
991
  msgstr "Elimina riga"
955
992
 
993
+ #: components/manage/Contents/Contents
994
+ # defaultMessage: Delete selected items?
995
+ msgid "Delete selected items?"
996
+ msgstr ""
997
+
998
+ #: components/manage/Contents/Contents
999
+ # defaultMessage: Delete this item?
1000
+ msgid "Delete this item?"
1001
+ msgstr ""
1002
+
956
1003
  #: components/manage/Controlpanels/Rules/Rules
957
1004
  # defaultMessage: Deleted
958
1005
  msgid "Deleted"
959
- msgstr ""
1006
+ msgstr "Cancellato"
960
1007
 
961
1008
  #: components/manage/Widgets/QuerystringWidget
962
1009
  # defaultMessage: Depth
@@ -994,22 +1041,22 @@ msgstr "Differenze tra la revisione {one} e {two} di {title}"
994
1041
  #: components/manage/Rules/Rules
995
1042
  # defaultMessage: Disable
996
1043
  msgid "Disable"
997
- msgstr ""
1044
+ msgstr "Disabilita"
998
1045
 
999
1046
  #: components/manage/Rules/Rules
1000
1047
  # defaultMessage: Disable apply to subfolders
1001
1048
  msgid "Disable apply to subfolders"
1002
- msgstr ""
1049
+ msgstr "Disabilita regole di contenuto nelle sottocartelle"
1003
1050
 
1004
1051
  #: components/manage/Rules/Rules
1005
1052
  # defaultMessage: Disabled
1006
1053
  msgid "Disabled"
1007
- msgstr ""
1054
+ msgstr "Disabilitato"
1008
1055
 
1009
1056
  #: components/manage/Rules/Rules
1010
1057
  # defaultMessage: Disabled apply to subfolders
1011
1058
  msgid "Disabled apply to subfolders"
1012
- msgstr ""
1059
+ msgstr "Regole di contenuto disabilitate per le sottocartelle"
1013
1060
 
1014
1061
  #: components/theme/Footer/Footer
1015
1062
  # defaultMessage: Distributed under the {license}.
@@ -1021,11 +1068,6 @@ msgstr "Distribuito sotto {license}"
1021
1068
  msgid "Divide each row into separate cells"
1022
1069
  msgstr "Dividi ogni fila in celle separate"
1023
1070
 
1024
- #: components/manage/Contents/Contents
1025
- # defaultMessage: Do you really want to delete the following items?
1026
- msgid "Do you really want to delete the following items?"
1027
- msgstr "Vuoi veramente eliminare i seguenti elementi?"
1028
-
1029
1071
  #: components/manage/Controlpanels/Groups/GroupsControlpanel
1030
1072
  # defaultMessage: Do you really want to delete the group {groupname}?
1031
1073
  msgid "Do you really want to delete the group {groupname}?"
@@ -1055,7 +1097,7 @@ msgstr "Pagina"
1055
1097
  #: config/Views
1056
1098
  # defaultMessage: Document view
1057
1099
  msgid "Document view"
1058
- msgstr ""
1100
+ msgstr "Vista pagina"
1059
1101
 
1060
1102
  #: components/theme/EventDetails/EventDetails
1061
1103
  # defaultMessage: Download Event
@@ -1068,16 +1110,19 @@ msgid "Drag and drop files from your computer onto this area or click the “Bro
1068
1110
  msgstr "Trascina in quest'area i file dal tuo computer o clicca su “Sfoglia”."
1069
1111
 
1070
1112
  #: components/manage/Widgets/FileWidget
1113
+ #: components/manage/Widgets/RegistryImageWidget
1071
1114
  # defaultMessage: Drop file here to replace the existing file
1072
1115
  msgid "Drop file here to replace the existing file"
1073
1116
  msgstr "Rilascia un file qui per sostituire quello esistente"
1074
1117
 
1075
1118
  #: components/manage/Widgets/FileWidget
1119
+ #: components/manage/Widgets/RegistryImageWidget
1076
1120
  # defaultMessage: Drop file here to upload a new file
1077
1121
  msgid "Drop file here to upload a new file"
1078
1122
  msgstr "Rilascia un file qui per caricare un nuovo file"
1079
1123
 
1080
1124
  #: components/manage/Widgets/FileWidget
1125
+ #: components/manage/Widgets/RegistryImageWidget
1081
1126
  # defaultMessage: Drop files here ...
1082
1127
  msgid "Drop files here ..."
1083
1128
  msgstr "Rilascia file qui..."
@@ -1085,7 +1130,7 @@ msgstr "Rilascia file qui..."
1085
1130
  #: components/manage/Controlpanels/UpgradeControlPanel
1086
1131
  # defaultMessage: Dry run selected, transaction aborted.
1087
1132
  msgid "Dry run selected, transaction aborted."
1088
- msgstr ""
1133
+ msgstr "Prova a vuoto selezionata, transazione annullata"
1089
1134
 
1090
1135
  #: components/theme/Register/Register
1091
1136
  # defaultMessage: E-mail
@@ -1101,6 +1146,7 @@ msgstr "Gli indirizzi e-mail non corrispondono"
1101
1146
  #: components/manage/Controlpanels/ContentTypesActions
1102
1147
  #: components/manage/Controlpanels/ModerateComments
1103
1148
  #: components/manage/Controlpanels/Rules/EditRule
1149
+ #: components/manage/Controlpanels/Users/RenderUsers
1104
1150
  #: components/manage/Toolbar/Toolbar
1105
1151
  #: components/manage/Widgets/FormFieldWrapper
1106
1152
  #: components/manage/Widgets/ObjectBrowserWidget
@@ -1112,7 +1158,7 @@ msgstr "Modifica"
1112
1158
  #: components/manage/Controlpanels/Rules/EditRule
1113
1159
  # defaultMessage: Edit Rule
1114
1160
  msgid "Edit Rule"
1115
- msgstr ""
1161
+ msgstr "Modifica regola"
1116
1162
 
1117
1163
  #: components/theme/Comments/CommentEditModal
1118
1164
  # defaultMessage: Edit comment
@@ -1167,7 +1213,7 @@ msgstr "Lista di oggetti vuota"
1167
1213
  #: components/manage/Rules/Rules
1168
1214
  # defaultMessage: Enable
1169
1215
  msgid "Enable"
1170
- msgstr ""
1216
+ msgstr "Abilita"
1171
1217
 
1172
1218
  #: components/manage/Controlpanels/ContentTypeLayout
1173
1219
  # defaultMessage: Enable editable Blocks
@@ -1177,17 +1223,17 @@ msgstr "Abilita i blocchi editabili"
1177
1223
  #: components/manage/Rules/Rules
1178
1224
  # defaultMessage: Enabled
1179
1225
  msgid "Enabled"
1180
- msgstr ""
1226
+ msgstr "Abilitato"
1181
1227
 
1182
1228
  #: components/manage/Rules/Rules
1183
1229
  # defaultMessage: Enabled here?
1184
1230
  msgid "Enabled here?"
1185
- msgstr ""
1231
+ msgstr "Abilitato qui?"
1186
1232
 
1187
1233
  #: components/manage/Rules/Rules
1188
1234
  # defaultMessage: Enabled?
1189
1235
  msgid "Enabled?"
1190
- msgstr ""
1236
+ msgstr "Abilitato?"
1191
1237
 
1192
1238
  #: components/manage/Blocks/Search/components/DateRangeFacet
1193
1239
  #: components/manage/Contents/Contents
@@ -1223,13 +1269,13 @@ msgstr "Inserisci il codice di incorporamento della mappa"
1223
1269
  #: components/manage/Controlpanels/Aliases
1224
1270
  # defaultMessage: Enter the absolute path of the target. The path must start with '/'. Target must exist or be an existing alternative url path to the target.
1225
1271
  msgid "Enter the absolute path of the target. The path must start with '/'. Target must exist or be an existing alternative url path to the target."
1226
- msgstr ""
1272
+ msgstr "Inserisci il path assoluto per la destinazione. Il path deve iniziare con '/'. La destinazione deve già esistere o essere un url alternativo per la destinazione."
1227
1273
 
1228
1274
  #: components/manage/Aliases/Aliases
1229
1275
  #: components/manage/Controlpanels/Aliases
1230
1276
  # defaultMessage: Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring.
1231
1277
  msgid "Enter the absolute path where the alternative url should exist. The path must start with '/'. Only urls that result in a 404 not found page will result in a redirect occurring."
1232
- msgstr ""
1278
+ msgstr "Inserisci il path assoluto per cui esiste un url alternativo. Il path deve iniziare con '/'. Solo gli url che portano a una pagina '404 not found' causeranno una redirect."
1233
1279
 
1234
1280
  #: components/manage/Preferences/ChangePassword
1235
1281
  # defaultMessage: Enter your current password.
@@ -1243,15 +1289,20 @@ msgstr "Inserisci la tua email per la verifica."
1243
1289
 
1244
1290
  #: components/manage/Preferences/ChangePassword
1245
1291
  #: components/theme/PasswordReset/PasswordReset
1246
- # defaultMessage: Enter your new password. Minimum 5 characters.
1247
- msgid "Enter your new password. Minimum 5 characters."
1248
- msgstr "Inserisci la tua nuova password. Minimo 5 caratteri."
1292
+ # defaultMessage: Enter your new password. Minimum 8 characters.
1293
+ msgid "Enter your new password. Minimum 8 characters."
1294
+ msgstr "Inserisci la tua nuova password. Minimo 8 caratteri."
1249
1295
 
1250
1296
  #: components/theme/PasswordReset/PasswordReset
1251
1297
  # defaultMessage: Enter your username for verification.
1252
1298
  msgid "Enter your username for verification."
1253
1299
  msgstr "Inserisci il tuo username per la verifica."
1254
1300
 
1301
+ #: components/manage/Blocks/ToC/Schema
1302
+ # defaultMessage: Entries
1303
+ msgid "Entries"
1304
+ msgstr ""
1305
+
1255
1306
  #: components/manage/Add/Add
1256
1307
  #: components/manage/Controlpanels/AddonsControlpanel
1257
1308
  #: components/manage/Controlpanels/ContentTypeSchema
@@ -1270,22 +1321,22 @@ msgstr "Errore"
1270
1321
  #: components/manage/Controlpanels/Aliases
1271
1322
  # defaultMessage: Error
1272
1323
  msgid "ErrorHeader"
1273
- msgstr ""
1324
+ msgstr "Errore"
1274
1325
 
1275
1326
  #: components/manage/Controlpanels/Rules/Rules
1276
1327
  # defaultMessage: Event
1277
1328
  msgid "Event"
1278
- msgstr ""
1329
+ msgstr "Evento"
1279
1330
 
1280
1331
  #: config/Views
1281
1332
  # defaultMessage: Event listing
1282
1333
  msgid "Event listing"
1283
- msgstr ""
1334
+ msgstr "Elenco eventi"
1284
1335
 
1285
1336
  #: config/Views
1286
1337
  # defaultMessage: Event view
1287
1338
  msgid "Event view"
1288
- msgstr ""
1339
+ msgstr "Vista evento"
1289
1340
 
1290
1341
  #: components/manage/Contents/ContentsPropertiesModal
1291
1342
  # defaultMessage: Exclude from navigation
@@ -1305,7 +1356,7 @@ msgstr "Escluso dalla navigazione"
1305
1356
  #: components/manage/Aliases/Aliases
1306
1357
  # defaultMessage: Existing alternative urls for this item
1307
1358
  msgid "Existing alternative urls for this item"
1308
- msgstr ""
1359
+ msgstr "Url alternativi esistenti per questo elemento"
1309
1360
 
1310
1361
  #: components/manage/Sidebar/Sidebar
1311
1362
  # defaultMessage: Expand sidebar
@@ -1365,7 +1416,7 @@ msgstr "Filtri in alto"
1365
1416
  #: components/manage/Controlpanels/UndoControlpanel
1366
1417
  # defaultMessage: Failed to undo transactions
1367
1418
  msgid "Failed To Undo Transactions"
1368
- msgstr ""
1419
+ msgstr "Non è stato possibile annullare le transazioni"
1369
1420
 
1370
1421
  #: components/manage/Blocks/Search/schema
1371
1422
  # defaultMessage: Field
@@ -1385,22 +1436,27 @@ msgstr "Dimensione del file"
1385
1436
  #: config/Views
1386
1437
  # defaultMessage: File view
1387
1438
  msgid "File view"
1388
- msgstr ""
1439
+ msgstr "Vista file"
1389
1440
 
1390
1441
  #: components/manage/Contents/ContentsUploadModal
1391
1442
  # defaultMessage: Filename
1392
1443
  msgid "Filename"
1393
1444
  msgstr "Nome del file"
1394
1445
 
1446
+ #: helpers/MessageLabels/MessageLabels
1447
+ # defaultMessage: Filter
1448
+ msgid "Filter"
1449
+ msgstr "Filtra"
1450
+
1395
1451
  #: components/manage/Controlpanels/Rules/Rules
1396
1452
  # defaultMessage: Filter Rules:
1397
1453
  msgid "Filter Rules:"
1398
- msgstr ""
1454
+ msgstr "Regole di filtro:"
1399
1455
 
1400
1456
  #: components/manage/Controlpanels/Aliases
1401
1457
  # defaultMessage: Filter by prefix
1402
1458
  msgid "Filter by prefix"
1403
- msgstr ""
1459
+ msgstr "Filtra per prefisso"
1404
1460
 
1405
1461
  #: helpers/MessageLabels/MessageLabels
1406
1462
  # defaultMessage: Filter users by groups
@@ -1417,6 +1473,11 @@ msgstr "Filtra…"
1417
1473
  msgid "First"
1418
1474
  msgstr "Primo"
1419
1475
 
1476
+ #: helpers/MessageLabels/MessageLabels
1477
+ # defaultMessage: Fix relations
1478
+ msgid "Fix relations"
1479
+ msgstr "Correggi relazioni"
1480
+
1420
1481
  #: components/manage/Blocks/Table/Edit
1421
1482
  # defaultMessage: Fixed width columns
1422
1483
  msgid "Fixed width table cells"
@@ -1435,7 +1496,7 @@ msgstr "Cartella"
1435
1496
  #: config/Views
1436
1497
  # defaultMessage: Folder listing
1437
1498
  msgid "Folder listing"
1438
- msgstr ""
1499
+ msgstr "Elenco di cartelle"
1439
1500
 
1440
1501
  #: components/theme/Forbidden/Forbidden
1441
1502
  # defaultMessage: Forbidden
@@ -1489,6 +1550,11 @@ msgstr "Ruolo globale"
1489
1550
  msgid "Google Maps Embedded Block"
1490
1551
  msgstr "Blocco Google Maps incorporata"
1491
1552
 
1553
+ #: components/manage/Blocks/Grid/schema
1554
+ # defaultMessage: Grid
1555
+ msgid "Grid"
1556
+ msgstr "Griglia"
1557
+
1492
1558
  #: components/manage/Sharing/Sharing
1493
1559
  # defaultMessage: Group
1494
1560
  msgid "Group"
@@ -1527,6 +1593,7 @@ msgstr "I gruppi sono raggruppamenti di utenti, come dipartimenti e unità organ
1527
1593
  msgid "Header cell"
1528
1594
  msgstr "Cella d'intestazione"
1529
1595
 
1596
+ #: components/manage/Blocks/Grid/schema
1530
1597
  #: components/manage/Blocks/Listing/schema
1531
1598
  #: components/manage/Blocks/Search/schema
1532
1599
  # defaultMessage: Headline
@@ -1536,7 +1603,7 @@ msgstr "Intestazione"
1536
1603
  #: components/manage/Blocks/Listing/schema
1537
1604
  # defaultMessage: Headline level
1538
1605
  msgid "Headline level"
1539
- msgstr ""
1606
+ msgstr "Livello intestazione"
1540
1607
 
1541
1608
  #: components/manage/Blocks/Search/schema
1542
1609
  # defaultMessage: Hidden facets will still filter the results if proper parameters are passed in URLs
@@ -1553,6 +1620,16 @@ msgstr "Nascondi risposte"
1553
1620
  msgid "Hide facet?"
1554
1621
  msgstr "Nascondi il filtro"
1555
1622
 
1623
+ #: components/manage/Blocks/Search/components/Facets
1624
+ # defaultMessage: Hide filters
1625
+ msgid "Hide filters"
1626
+ msgstr "Nascondi i filtri"
1627
+
1628
+ #: components/manage/Blocks/ToC/Schema
1629
+ # defaultMessage: Hide title
1630
+ msgid "Hide title"
1631
+ msgstr ""
1632
+
1556
1633
  #: components/manage/History/History
1557
1634
  #: components/manage/Toolbar/More
1558
1635
  # defaultMessage: History
@@ -1585,7 +1662,7 @@ msgstr "ID"
1585
1662
  #: components/manage/Controlpanels/Rules/ConfigureRule
1586
1663
  # defaultMessage: If all of the following conditions are met:
1587
1664
  msgid "If all of the following conditions are met:"
1588
- msgstr ""
1665
+ msgstr "Se tutte le seguenti condizioni vengono rispettate:"
1589
1666
 
1590
1667
  #: components/manage/Contents/ContentsPropertiesModal
1591
1668
  # defaultMessage: If selected, this item will not appear in the navigation tree
@@ -1624,7 +1701,7 @@ msgstr "Galleria di immagini"
1624
1701
  #: components/manage/Blocks/Teaser/schema
1625
1702
  # defaultMessage: Image override
1626
1703
  msgid "Image override"
1627
- msgstr ""
1704
+ msgstr "Sovrascrizione immagine"
1628
1705
 
1629
1706
  #: components/manage/Blocks/Image/schema
1630
1707
  # defaultMessage: Image size
@@ -1634,7 +1711,7 @@ msgstr "Dimensione dell'immagine"
1634
1711
  #: config/Views
1635
1712
  # defaultMessage: Image view
1636
1713
  msgid "Image view"
1637
- msgstr ""
1714
+ msgstr "Vista immagine"
1638
1715
 
1639
1716
  #: components/manage/Widgets/RecurrenceWidget/Occurences
1640
1717
  # defaultMessage: Include this occurrence
@@ -1684,6 +1761,11 @@ msgstr "Inserisci riga sotto"
1684
1761
  msgid "Insert row before"
1685
1762
  msgstr "Inserisci riga sopra"
1686
1763
 
1764
+ #: helpers/MessageLabels/MessageLabels
1765
+ # defaultMessage: Inspect relations
1766
+ msgid "Inspect relations"
1767
+ msgstr "Ispeziona le relazioni"
1768
+
1687
1769
  #: components/manage/Controlpanels/AddonsControlpanel
1688
1770
  # defaultMessage: Install
1689
1771
  msgid "Install"
@@ -1728,6 +1810,11 @@ msgstr "anni"
1728
1810
  #: components/theme/View/RenderBlocks
1729
1811
  # defaultMessage: Invalid block - Will be removed on saving
1730
1812
  msgid "Invalid Block"
1813
+ msgstr "Blocco non valido - Salvando, verrà rimosso"
1814
+
1815
+ #: helpers/MessageLabels/MessageLabels
1816
+ # defaultMessage: It is not allowed to define both the password and to request sending the password reset message by e-mail. You need to select one of them.
1817
+ msgid "It is not allowed to define both the password and to request sending the password reset message by e-mail. You need to select one of them."
1731
1818
  msgstr ""
1732
1819
 
1733
1820
  #: components/manage/Widgets/QuerystringWidget
@@ -1777,11 +1864,6 @@ msgstr "Elementi"
1777
1864
  msgid "Items must be unique."
1778
1865
  msgstr "Gli elementi devono essere unici."
1779
1866
 
1780
- #: components/manage/Contents/Contents
1781
- # defaultMessage: Items to be deleted:
1782
- msgid "Items to be deleted:"
1783
- msgstr ""
1784
-
1785
1867
  #: components/manage/Blocks/Search/schema
1786
1868
  # defaultMessage: Label
1787
1869
  msgid "Label"
@@ -1820,7 +1902,7 @@ msgstr "Ultima modifica"
1820
1902
  #: components/manage/Controlpanels/UpgradeControlPanel
1821
1903
  # defaultMessage: Latest available configuration
1822
1904
  msgid "Latest available configuration"
1823
- msgstr ""
1905
+ msgstr "Ultima configurazione disponibile"
1824
1906
 
1825
1907
  #: components/manage/Controlpanels/AddonsControlpanel
1826
1908
  # defaultMessage: Latest version
@@ -1844,11 +1926,21 @@ msgstr "Immagine di testata"
1844
1926
  msgid "Left"
1845
1927
  msgstr "Sinistra"
1846
1928
 
1929
+ #: components/manage/Blocks/Search/components/Facets
1930
+ # defaultMessage: Less filters
1931
+ msgid "Less filters"
1932
+ msgstr "Meno filtri"
1933
+
1847
1934
  #: components/manage/Toolbar/Toolbar
1848
1935
  # defaultMessage: Link
1849
1936
  msgid "Link"
1850
1937
  msgstr "Link"
1851
1938
 
1939
+ #: helpers/MessageLabels/MessageLabels
1940
+ # defaultMessage: Anchor link copied to the clipboard
1941
+ msgid "Link copied to clipboard"
1942
+ msgstr "Link copiato negli appunti"
1943
+
1852
1944
  #: components/manage/Blocks/HeroImageLeft/schema
1853
1945
  #: components/manage/Blocks/Listing/schema
1854
1946
  # defaultMessage: Link more
@@ -1858,6 +1950,11 @@ msgstr "Link ad altro"
1858
1950
  #: config/Views
1859
1951
  # defaultMessage: Link redirect view
1860
1952
  msgid "Link redirect view"
1953
+ msgstr "Vista collegamento"
1954
+
1955
+ #: components/manage/Blocks/Image/schema
1956
+ # defaultMessage: Link settings
1957
+ msgid "Link settings"
1861
1958
  msgstr ""
1862
1959
 
1863
1960
  #: components/manage/Blocks/HeroImageLeft/schema
@@ -1879,6 +1976,17 @@ msgstr "Link a"
1879
1976
  msgid "Link translation for"
1880
1977
  msgstr "Collega traduzione per"
1881
1978
 
1979
+ #: components/manage/LinksToItem/LinksToItem
1980
+ # defaultMessage: Linking this item with hyperlink in text
1981
+ msgid "Linking this item with hyperlink in text"
1982
+ msgstr "Elementi collegati a questo contenuto con un collegamento ipertestuali nel testo"
1983
+
1984
+ #: components/manage/LinksToItem/LinksToItem
1985
+ #: components/manage/Toolbar/More
1986
+ # defaultMessage: Links and references
1987
+ msgid "Links and references"
1988
+ msgstr "Link e collegamenti"
1989
+
1882
1990
  #: components/manage/Blocks/Listing/schema
1883
1991
  # defaultMessage: Listing
1884
1992
  msgid "Listing"
@@ -1887,7 +1995,7 @@ msgstr "Elenco"
1887
1995
  #: config/Views
1888
1996
  # defaultMessage: Listing view
1889
1997
  msgid "Listing view"
1890
- msgstr ""
1998
+ msgstr "Vista standard"
1891
1999
 
1892
2000
  #: components/theme/Comments/Comments
1893
2001
  # defaultMessage: Load more...
@@ -1913,7 +2021,7 @@ msgstr "Log in"
1913
2021
  #: components/theme/Logout/Logout
1914
2022
  # defaultMessage: Logged out
1915
2023
  msgid "Logged out"
1916
- msgstr ""
2024
+ msgstr "Disconnesso"
1917
2025
 
1918
2026
  #: components/theme/Login/Login
1919
2027
  # defaultMessage: Login
@@ -1964,18 +2072,23 @@ msgstr "Gestisci le traduzioni per {title}"
1964
2072
  #: components/manage/Controlpanels/Aliases
1965
2073
  # defaultMessage: Manual
1966
2074
  msgid "Manual"
1967
- msgstr ""
2075
+ msgstr "Manuale"
1968
2076
 
1969
2077
  #: components/manage/Controlpanels/Aliases
1970
2078
  # defaultMessage: Manually or automatically added?
1971
2079
  msgid "Manually or automatically added?"
1972
- msgstr ""
2080
+ msgstr "Aggiunto manualmente o automaticamente?"
2081
+
2082
+ #: helpers/MessageLabels/MessageLabels
2083
+ # defaultMessage: Many relations found. Please search.
2084
+ msgid "Many relations found. Please search."
2085
+ msgstr "Sono state trovate molte relazioni. Effettua una ricerca."
1973
2086
 
1974
2087
  #: components/manage/Blocks/Maps/MapsSidebar
1975
2088
  #: components/manage/Blocks/Maps/schema
1976
2089
  # defaultMessage: Maps
1977
2090
  msgid "Maps"
1978
- msgstr ""
2091
+ msgstr "Maps"
1979
2092
 
1980
2093
  #: components/manage/Blocks/Maps/schema
1981
2094
  # defaultMessage: Maps URL
@@ -2000,7 +2113,7 @@ msgstr "Medio"
2000
2113
  #: helpers/MessageLabels/MessageLabels
2001
2114
  # defaultMessage: Membership updated
2002
2115
  msgid "Membership updated"
2003
- msgstr ""
2116
+ msgstr "Membri aggiornati"
2004
2117
 
2005
2118
  #: components/theme/ContactForm/ContactForm
2006
2119
  # defaultMessage: Message
@@ -2048,20 +2161,25 @@ msgstr "Mensile"
2048
2161
  msgid "More"
2049
2162
  msgstr "Altro"
2050
2163
 
2164
+ #: components/manage/Blocks/Search/components/Facets
2165
+ # defaultMessage: More filters
2166
+ msgid "More filters"
2167
+ msgstr "Più filtri"
2168
+
2051
2169
  #: components/manage/Controlpanels/UpgradeControlPanel
2052
2170
  # defaultMessage: More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide.
2053
2171
  msgid "More information about the upgrade procedure can be found in the documentation section of plone.org in the Upgrade Guide."
2054
- msgstr ""
2172
+ msgstr "È possibile trovare ulteriori informazioni sulla procedura di aggiornamento nella guida dedicata su plone.org, nella sezione Documentazione."
2055
2173
 
2056
2174
  #: config/Views
2057
2175
  # defaultMessage: Mosaic layout
2058
2176
  msgid "Mosaic layout"
2059
- msgstr ""
2177
+ msgstr "Layout a mosaico"
2060
2178
 
2061
2179
  #: components/manage/Controlpanels/Rules/ConfigureRule
2062
2180
  # defaultMessage: Move down
2063
2181
  msgid "Move down"
2064
- msgstr ""
2182
+ msgstr "Sposta sotto"
2065
2183
 
2066
2184
  #: components/manage/Contents/ContentsItem
2067
2185
  # defaultMessage: Move to bottom of folder
@@ -2076,7 +2194,7 @@ msgstr "Sposta in cima alla cartella"
2076
2194
  #: components/manage/Controlpanels/Rules/ConfigureRule
2077
2195
  # defaultMessage: Move up
2078
2196
  msgid "Move up"
2079
- msgstr ""
2197
+ msgstr "Sposta sopra"
2080
2198
 
2081
2199
  #: components/manage/Blocks/Search/schema
2082
2200
  # defaultMessage: Multiple choices?
@@ -2089,7 +2207,7 @@ msgid "My email is"
2089
2207
  msgstr "La mia email è"
2090
2208
 
2091
2209
  #: components/theme/PasswordReset/PasswordReset
2092
- # defaultMessage: My username is
2210
+ # defaultMessage: My user name is
2093
2211
  msgid "My username is"
2094
2212
  msgstr "Il mio nome utente è"
2095
2213
 
@@ -2102,7 +2220,7 @@ msgstr "Nome"
2102
2220
  #: components/manage/Widgets/AlignWidget
2103
2221
  # defaultMessage: Narrow
2104
2222
  msgid "Narrow"
2105
- msgstr ""
2223
+ msgstr "Restringi"
2106
2224
 
2107
2225
  #: error
2108
2226
  # defaultMessage: Navigate back
@@ -2128,10 +2246,9 @@ msgstr "Notizia"
2128
2246
  #: config/Views
2129
2247
  # defaultMessage: News item view
2130
2248
  msgid "News item view"
2131
- msgstr ""
2249
+ msgstr "Vista notizia"
2132
2250
 
2133
2251
  #: components/manage/Contents/ContentsItem
2134
- #: components/manage/Contents/ContentsPropertiesModal
2135
2252
  #: components/manage/Controlpanels/ContentTypes
2136
2253
  # defaultMessage: No
2137
2254
  msgid "No"
@@ -2140,17 +2257,17 @@ msgstr "No"
2140
2257
  #: components/manage/Controlpanels/UndoControlpanel
2141
2258
  # defaultMessage: No transactions found
2142
2259
  msgid "No Transactions Found"
2143
- msgstr ""
2260
+ msgstr "Nessuna transazione trovata"
2144
2261
 
2145
2262
  #: components/manage/Controlpanels/UndoControlpanel
2146
2263
  # defaultMessage: No transactions selected
2147
2264
  msgid "No Transactions Selected"
2148
- msgstr ""
2265
+ msgstr "Nessuna transazione selezionata"
2149
2266
 
2150
2267
  #: components/manage/Controlpanels/UndoControlpanel
2151
2268
  # defaultMessage: No transactions selected to do undo
2152
2269
  msgid "No Transactions Selected To Do Undo"
2153
- msgstr ""
2270
+ msgstr "Nessuna transazione da annullare selezionata"
2154
2271
 
2155
2272
  #: components/manage/Blocks/Video/VideoSidebar
2156
2273
  # defaultMessage: No Video selected
@@ -2160,7 +2277,12 @@ msgstr "Nessun video selezionato"
2160
2277
  #: components/manage/Controlpanels/VersionOverview
2161
2278
  # defaultMessage: No addons found
2162
2279
  msgid "No addons found"
2163
- msgstr "Nesssun addon trovato"
2280
+ msgstr "Nessun addon trovato"
2281
+
2282
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
2283
+ # defaultMessage: No broken relations found.
2284
+ msgid "No broken relations found."
2285
+ msgstr "Nessuna relazione corrotta trovata."
2164
2286
 
2165
2287
  #: components/theme/RequestTimeout/RequestTimeout
2166
2288
  # defaultMessage: There is no connection to the server, due to a timeout o no network connection.
@@ -2185,7 +2307,7 @@ msgstr "Nessuna immagine impostata"
2185
2307
  #: components/manage/Blocks/Listing/GalleryNoResultsComponent
2186
2308
  # defaultMessage: No images found.
2187
2309
  msgid "No images found."
2188
- msgstr ""
2310
+ msgstr "Nessuna immagine trovata."
2189
2311
 
2190
2312
  #: components/manage/Blocks/Listing/ListingBody
2191
2313
  # defaultMessage: No items found in this container.
@@ -2197,6 +2319,11 @@ msgstr "Nessun elemento trovato in questo contenitore."
2197
2319
  msgid "No items selected"
2198
2320
  msgstr "Nessun elemento selezionato"
2199
2321
 
2322
+ #: components/manage/LinksToItem/LinksToItem
2323
+ # defaultMessage: No links to this item found.
2324
+ msgid "No links to this item found."
2325
+ msgstr "Nessun link a questo elemento trovato."
2326
+
2200
2327
  #: components/manage/Blocks/Maps/MapsSidebar
2201
2328
  # defaultMessage: No map selected
2202
2329
  msgid "No map selected"
@@ -2215,6 +2342,11 @@ msgstr "Nessuna ricorrenza impostata"
2215
2342
  msgid "No options"
2216
2343
  msgstr "Nessuna opzione"
2217
2344
 
2345
+ #: helpers/MessageLabels/MessageLabels
2346
+ # defaultMessage: No relation found
2347
+ msgid "No relation found"
2348
+ msgstr "Nessuna relazione trovata"
2349
+
2218
2350
  #: components/manage/BlockChooser/BlockChooser
2219
2351
  #: components/theme/Search/Search
2220
2352
  # defaultMessage: No results found
@@ -2266,7 +2398,7 @@ msgstr "Nessuno"
2266
2398
  #: components/manage/Controlpanels/UndoControlpanel
2267
2399
  # defaultMessage: Note
2268
2400
  msgid "Note"
2269
- msgstr ""
2401
+ msgstr "Nota"
2270
2402
 
2271
2403
  #: components/manage/Controlpanels/Users/UsersControlpanel
2272
2404
  # defaultMessage: Note that roles set here apply directly to a user. The symbol{plone_svg}indicates a role inherited from membership in a group.
@@ -2296,7 +2428,7 @@ msgstr "Ok"
2296
2428
  #: components/manage/Widgets/IdWidget
2297
2429
  # defaultMessage: Only lowercase letters (a-z) without accents, numbers (0-9), and the characters "-", "_", and "." are allowed.
2298
2430
  msgid "Only lowercase letters (a-z) without accents, numbers (0-9), and the characters "-", "_", and "." are allowed."
2299
- msgstr ""
2431
+ msgstr "Solo lettere minuscole (a-z) senza accenti, numeri (0-9). I caratteri '-', "_", e "." sono consentiti."
2300
2432
 
2301
2433
  #: components/manage/Blocks/Image/schema
2302
2434
  #: components/manage/Blocks/LeadImage/LeadImageSidebar
@@ -2315,11 +2447,21 @@ msgstr "Apri menu"
2315
2447
  msgid "Open object browser"
2316
2448
  msgstr "Apri object browser"
2317
2449
 
2450
+ #: components/manage/Blocks/ToC/Schema
2451
+ # defaultMessage: Ordered
2452
+ msgid "Ordered"
2453
+ msgstr ""
2454
+
2318
2455
  #: components/manage/Blocks/LeadImage/LeadImageSidebar
2319
2456
  # defaultMessage: Origin
2320
2457
  msgid "Origin"
2321
2458
  msgstr "Origine"
2322
2459
 
2460
+ #: components/manage/LinksToItem/LinksToItem
2461
+ # defaultMessage: Overview of relations of all content items
2462
+ msgid "Overview of relations of all content items"
2463
+ msgstr "Riepilogo delle relazioni di tutti gli elementi"
2464
+
2323
2465
  #: components/manage/Toolbar/Toolbar
2324
2466
  # defaultMessage: Page
2325
2467
  msgid "Page"
@@ -2354,14 +2496,14 @@ msgid "Paste"
2354
2496
  msgstr "Incolla"
2355
2497
 
2356
2498
  #: helpers/MessageLabels/MessageLabels
2357
- # defaultMessage: undefined
2499
+ # defaultMessage: Paste blocks
2358
2500
  msgid "Paste blocks"
2359
2501
  msgstr "Incolla blocchi"
2360
2502
 
2361
2503
  #: components/manage/Controlpanels/Rules/ConfigureRule
2362
2504
  # defaultMessage: Perform the following actions:
2363
2505
  msgid "Perform the following actions:"
2364
- msgstr ""
2506
+ msgstr "Esegui le seguenti azioni:"
2365
2507
 
2366
2508
  #: components/manage/Sharing/Sharing
2367
2509
  # defaultMessage: Permissions have been updated successfully
@@ -2398,17 +2540,17 @@ msgstr "Persone responsabili della creazione del contenuto di questo elemento. I
2398
2540
  #: components/manage/Blocks/Teaser/DefaultBody
2399
2541
  # defaultMessage: Please choose an existing content as source for this element
2400
2542
  msgid "Please choose an existing content as source for this element"
2401
- msgstr ""
2543
+ msgstr "Scegliere un contenuto esistente come sorgente di questo elemento"
2402
2544
 
2403
2545
  #: components/manage/Controlpanels/Controlpanels
2404
2546
  # defaultMessage: Please continue with the upgrade.
2405
2547
  msgid "Please continue with the upgrade."
2406
- msgstr ""
2548
+ msgstr "Procedere con l'aggiornamento."
2407
2549
 
2408
2550
  #: components/manage/Controlpanels/UpgradeControlPanel
2409
2551
  # defaultMessage: Please ensure you have a backup of your site before performing the upgrade.
2410
2552
  msgid "Please ensure you have a backup of your site before performing the upgrade."
2411
- msgstr ""
2553
+ msgstr "Assicurati di avere un backup del tuo sito prima di effettuare l'aggiornamento."
2412
2554
 
2413
2555
  #: components/manage/Blocks/Video/Body
2414
2556
  # defaultMessage: Please enter a valid URL by deleting the block and adding a new video block.
@@ -2435,16 +2577,16 @@ msgstr "Cerca utenti o utilizza i filtri a lato."
2435
2577
  msgid "Please upgrade to plone.restapi >= 8.24.0."
2436
2578
  msgstr "Prego, aggiorna plone.restapi >= 8.24.0."
2437
2579
 
2580
+ #: components/manage/Controlpanels/Relations/Relations
2581
+ # defaultMessage: Please upgrade to plone.restapi >= 8.39.0.
2582
+ msgid "Please upgrade to plone.restapi >= 8.39.0."
2583
+ msgstr "Effettua l'aggiornamento a plone.restapi >= 8.39.0"
2584
+
2438
2585
  #: components/theme/Footer/Footer
2439
2586
  # defaultMessage: Plone Foundation
2440
2587
  msgid "Plone Foundation"
2441
2588
  msgstr "Plone Foundation"
2442
2589
 
2443
- #: components/theme/Logo/Logo
2444
- # defaultMessage: Plone Site
2445
- msgid "Plone Site"
2446
- msgstr "Sito Plone"
2447
-
2448
2590
  #: components/theme/Footer/Footer
2449
2591
  # defaultMessage: Plone{reg} Open Source CMS/WCM
2450
2592
  msgid "Plone{reg} Open Source CMS/WCM"
@@ -2453,18 +2595,13 @@ msgstr "Plone{reg} Open Source CMS/WCM"
2453
2595
  #: components/manage/Controlpanels/Rules/ConfigureRule
2454
2596
  # defaultMessage: Position changed
2455
2597
  msgid "Position changed"
2456
- msgstr ""
2598
+ msgstr "Posizione cambiata"
2457
2599
 
2458
2600
  #: components/manage/Widgets/SchemaWidget
2459
2601
  # defaultMessage: Possible values (Enter allowed choices one per line).
2460
2602
  msgid "Possible values"
2461
2603
  msgstr "Valori possibili"
2462
2604
 
2463
- #: components/manage/Contents/Contents
2464
- # defaultMessage: Potential link breakage
2465
- msgid "Potential link breakage"
2466
- msgstr ""
2467
-
2468
2605
  #: components/theme/Footer/Footer
2469
2606
  # defaultMessage: Powered by Plone & Python
2470
2607
  msgid "Powered by Plone & Python"
@@ -2529,6 +2666,11 @@ msgstr "Reinserisci la password. Assicurati che le password siano identiche."
2529
2666
  msgid "Read More…"
2530
2667
  msgstr "Leggi il resto…"
2531
2668
 
2669
+ #: components/manage/Controlpanels/Relations/RelationsListing
2670
+ # defaultMessage: Read only for this type of relation.
2671
+ msgid "Read only for this type of relation."
2672
+ msgstr "Solo lettura per questo tipo di relazione."
2673
+
2532
2674
  #: components/manage/Contents/Contents
2533
2675
  # defaultMessage: Rearrange items by…
2534
2676
  msgid "Rearrange items by…"
@@ -2559,6 +2701,16 @@ msgstr "Ripeti"
2559
2701
  msgid "Reduce complexity"
2560
2702
  msgstr "Riduci complessità"
2561
2703
 
2704
+ #: components/manage/LinksToItem/LinksToItem
2705
+ # defaultMessage: Referencing this item as related item
2706
+ msgid "Referencing this item as related item"
2707
+ msgstr "Elementi collegati a questo contenuto come contenuto correlato"
2708
+
2709
+ #: components/manage/LinksToItem/LinksToItem
2710
+ # defaultMessage: Referencing this item with {relationship}
2711
+ msgid "Referencing this item with {relationship}"
2712
+ msgstr "Elementi collegati a questo contenuto in {relationship}"
2713
+
2562
2714
  #: components/theme/Anontools/Anontools
2563
2715
  #: components/theme/Login/Login
2564
2716
  #: components/theme/Register/Register
@@ -2571,6 +2723,29 @@ msgstr "Registrati"
2571
2723
  msgid "Registration form"
2572
2724
  msgstr "Form di iscrizione"
2573
2725
 
2726
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
2727
+ #: helpers/MessageLabels/MessageLabels
2728
+ # defaultMessage: Relation
2729
+ msgid "Relation name"
2730
+ msgstr "Nome della relazione"
2731
+
2732
+ #: components/manage/Controlpanels/Controlpanels
2733
+ #: components/manage/Controlpanels/Relations/Relations
2734
+ #: helpers/MessageLabels/MessageLabels
2735
+ # defaultMessage: Relations
2736
+ msgid "Relations"
2737
+ msgstr "Relazioni"
2738
+
2739
+ #: components/manage/Controlpanels/Relations/RelationsListing
2740
+ # defaultMessage: Relations are editable with plone.api >= 2.0.3.
2741
+ msgid "Relations are editable with plone.api >= 2.0.3."
2742
+ msgstr "Le relazioni possono essere modificate con plone.api >= 2.0.3."
2743
+
2744
+ #: helpers/MessageLabels/MessageLabels
2745
+ # defaultMessage: Relations updated
2746
+ msgid "Relations updated"
2747
+ msgstr "Relazioni aggiornate"
2748
+
2574
2749
  #: components/theme/Search/Search
2575
2750
  # defaultMessage: Relevance
2576
2751
  msgid "Relevance"
@@ -2579,7 +2754,12 @@ msgstr "Rilevanza"
2579
2754
  #: components/manage/Aliases/Aliases
2580
2755
  # defaultMessage: Remove
2581
2756
  msgid "Remove"
2582
- msgstr ""
2757
+ msgstr "Elimina"
2758
+
2759
+ #: components/manage/Blocks/Container/EditBlockWrapper
2760
+ # defaultMessage: Remove element {index}
2761
+ msgid "Remove element {index}"
2762
+ msgstr "Elimina elemento {index}"
2583
2763
 
2584
2764
  #: components/manage/Widgets/ObjectListWidget
2585
2765
  # defaultMessage: Remove item
@@ -2594,7 +2774,7 @@ msgstr "Rimuovi"
2594
2774
  #: components/manage/Controlpanels/Aliases
2595
2775
  # defaultMessage: Remove selected
2596
2776
  msgid "Remove selected"
2597
- msgstr ""
2777
+ msgstr "Rimuovi i selezionati"
2598
2778
 
2599
2779
  #: components/manage/Widgets/VocabularyTermsWidget
2600
2780
  # defaultMessage: Remove term
@@ -2643,6 +2823,7 @@ msgid "Repeat on"
2643
2823
  msgstr "Ripeti ogni"
2644
2824
 
2645
2825
  #: components/manage/Widgets/FileWidget
2826
+ #: components/manage/Widgets/RegistryImageWidget
2646
2827
  # defaultMessage: Replace existing file
2647
2828
  msgid "Replace existing file"
2648
2829
  msgstr "Sostituisci file esistente"
@@ -2665,6 +2846,11 @@ msgstr "Obbligatorio"
2665
2846
  msgid "Required input is missing."
2666
2847
  msgstr "Un campo richiesto è mancante."
2667
2848
 
2849
+ #: components/manage/Blocks/Container/EditBlockWrapper
2850
+ # defaultMessage: Reset element {index}
2851
+ msgid "Reset element {index}"
2852
+ msgstr "Reimposta elemento {index}"
2853
+
2668
2854
  #: components/manage/Widgets/VocabularyTermsWidget
2669
2855
  # defaultMessage: Reset title
2670
2856
  msgid "Reset term title"
@@ -2673,7 +2859,7 @@ msgstr "Reimposta titolo del termine"
2673
2859
  #: components/manage/Blocks/Teaser/Data
2674
2860
  # defaultMessage: Reset the block
2675
2861
  msgid "Reset the block"
2676
- msgstr ""
2862
+ msgstr "Reimposta il blocco"
2677
2863
 
2678
2864
  #: components/manage/Widgets/QuerystringWidget
2679
2865
  # defaultMessage: Results limit
@@ -2701,6 +2887,7 @@ msgid "Revert to this revision"
2701
2887
  msgstr "Ripristina questa versione"
2702
2888
 
2703
2889
  #: components/manage/Contents/Contents
2890
+ #: components/manage/LinksToItem/LinksToItem
2704
2891
  # defaultMessage: Review state
2705
2892
  msgid "Review state"
2706
2893
  msgstr "Stato del workflow"
@@ -2736,23 +2923,23 @@ msgstr "Radice"
2736
2923
  #: components/manage/Controlpanels/Rules/AddRule
2737
2924
  # defaultMessage: Rule added
2738
2925
  msgid "Rule added"
2739
- msgstr ""
2926
+ msgstr "Regola aggiunta"
2740
2927
 
2741
2928
  #: components/manage/Controlpanels/Rules/Rules
2742
2929
  # defaultMessage: Rule enable changed
2743
2930
  msgid "Rule enable changed"
2744
- msgstr ""
2931
+ msgstr "Regola abilita modificata"
2745
2932
 
2746
2933
  #: components/manage/Rules/Rules
2747
2934
  #: components/manage/Toolbar/More
2748
2935
  # defaultMessage: Rules
2749
2936
  msgid "Rules"
2750
- msgstr ""
2937
+ msgstr "Regole"
2751
2938
 
2752
2939
  #: components/manage/Controlpanels/Rules/ConfigureRule
2753
2940
  # defaultMessage: Rules execute when a triggering event occurs. Rule actions will only be invoked if all the rule's conditions are met. You can add new actions and conditions using the buttons below.
2754
2941
  msgid "Rules execute when a triggering event occurs. Rule actions will only be invoked if all the rule's conditions are met. You can add new actions and conditions using the buttons below."
2755
- msgstr ""
2942
+ msgstr "Le regole vengono eseguite quando si verifica un evento scatenante. Le azioni verranno invocate solo se tutte le condizioni di una regola sono rispettate. Puoi aggiungere nuove azioni e condizioni utilizzando i pulsanti sottostanti."
2756
2943
 
2757
2944
  #: components/manage/Add/Add
2758
2945
  #: components/manage/Controlpanels/ContentType
@@ -2777,7 +2964,12 @@ msgstr "Salva la ricorrenza"
2777
2964
  #: helpers/MessageLabels/MessageLabels
2778
2965
  # defaultMessage: Saved
2779
2966
  msgid "Saved"
2780
- msgstr ""
2967
+ msgstr "Salvato"
2968
+
2969
+ #: components/manage/Contents/ContentsItem
2970
+ # defaultMessage: Scheduled
2971
+ msgid "Scheduled"
2972
+ msgstr "Programmato"
2781
2973
 
2782
2974
  #: components/manage/Controlpanels/ContentTypesActions
2783
2975
  # defaultMessage: Schema
@@ -2795,6 +2987,7 @@ msgstr "Aggiornamenti dello schema"
2795
2987
  #: components/manage/Blocks/Search/layout/RightColumnFacets
2796
2988
  #: components/manage/Blocks/Search/layout/TopSideFacets
2797
2989
  #: components/manage/Blocks/Search/schema
2990
+ #: components/manage/Sharing/Sharing
2798
2991
  #: components/theme/Search/Search
2799
2992
  #: components/theme/SearchWidget/SearchWidget
2800
2993
  # defaultMessage: Search
@@ -2852,6 +3045,16 @@ msgstr "Risultati della ricerca"
2852
3045
  msgid "Search results for {term}"
2853
3046
  msgstr "Risultati per {term}"
2854
3047
 
3048
+ #: helpers/MessageLabels/MessageLabels
3049
+ # defaultMessage: Search sources by title or path
3050
+ msgid "Search sources by title or path"
3051
+ msgstr "Cerca sorgenti per titolo o percorso"
3052
+
3053
+ #: helpers/MessageLabels/MessageLabels
3054
+ # defaultMessage: Search targets by title or path
3055
+ msgid "Search targets by title or path"
3056
+ msgstr "Cerca destinazioni per titolo o percorso"
3057
+
2855
3058
  #: helpers/MessageLabels/MessageLabels
2856
3059
  # defaultMessage: Search users…
2857
3060
  msgid "Search users…"
@@ -2860,7 +3063,7 @@ msgstr "Cerca utenti…"
2860
3063
  #: components/manage/Blocks/Search/components/SearchDetails
2861
3064
  # defaultMessage: Searched for: <em>{searchedtext}</em>.
2862
3065
  msgid "Searched for: <em>{searchedtext}</em>."
2863
- msgstr ""
3066
+ msgstr "Hai cercato: <em>{searchedtext}</em>"
2864
3067
 
2865
3068
  #: components/manage/Widgets/RecurrenceWidget/WeekdayOfTheMonthIndexField
2866
3069
  # defaultMessage: Second
@@ -2875,6 +3078,7 @@ msgstr "Titolo della sezione"
2875
3078
  #: components/manage/Controlpanels/Aliases
2876
3079
  #: components/manage/Rules/Rules
2877
3080
  #: components/manage/Sidebar/ObjectBrowserNav
3081
+ #: helpers/MessageLabels/MessageLabels
2878
3082
  # defaultMessage: Select
2879
3083
  msgid "Select"
2880
3084
  msgstr "Seleziona"
@@ -2889,11 +3093,21 @@ msgstr "Seleziona una data da aggiungere alla ricorrenza"
2889
3093
  msgid "Select columns to show"
2890
3094
  msgstr "Seleziona le colonne da mostrare"
2891
3095
 
3096
+ #: helpers/MessageLabels/MessageLabels
3097
+ # defaultMessage: Select relation
3098
+ msgid "Select relation"
3099
+ msgstr "Seleziona relazione"
3100
+
2892
3101
  #: components/manage/Contents/ContentsWorkflowModal
2893
3102
  # defaultMessage: Select the transition to be used for modifying the items state.
2894
3103
  msgid "Select the transition to be used for modifying the items state."
2895
3104
  msgstr "Seleziona la transizione da effettuare per cambiare lo stato del contenuto."
2896
3105
 
3106
+ #: helpers/MessageLabels/MessageLabels
3107
+ # defaultMessage: Selected
3108
+ msgid "Selected"
3109
+ msgstr "Selezionato"
3110
+
2897
3111
  #: components/manage/Widgets/RecurrenceWidget/Occurences
2898
3112
  # defaultMessage: Selected dates
2899
3113
  msgid "Selected dates"
@@ -2932,6 +3146,11 @@ msgstr "Invia"
2932
3146
  #: helpers/MessageLabels/MessageLabels
2933
3147
  # defaultMessage: Send a confirmation mail with a link to set the password.
2934
3148
  msgid "Send a confirmation mail with a link to set the password."
3149
+ msgstr "Invia una mail di conferma con un link per impostare la password."
3150
+
3151
+ #: components/theme/Error/ServerError
3152
+ # defaultMessage: Server Error
3153
+ msgid "Server Error"
2935
3154
  msgstr ""
2936
3155
 
2937
3156
  #: components/theme/PasswordReset/PasswordReset
@@ -2988,6 +3207,11 @@ msgstr "Mostra tutti"
2988
3207
  msgid "Show Replies"
2989
3208
  msgstr "Mostra risposte"
2990
3209
 
3210
+ #: components/manage/Blocks/Search/components/Facets
3211
+ # defaultMessage: Show filters
3212
+ msgid "Show filters"
3213
+ msgstr "Mostra i filtri"
3214
+
2991
3215
  #: helpers/MessageLabels/MessageLabels
2992
3216
  # defaultMessage: Show groups of users below
2993
3217
  msgid "Show groups of users below"
@@ -2998,6 +3222,16 @@ msgstr "Mostra i gruppi di utenti"
2998
3222
  msgid "Show item"
2999
3223
  msgstr "Mostra elemento"
3000
3224
 
3225
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
3226
+ # defaultMessage: Show potential sources. Not only objects that are source of some relation.
3227
+ msgid "Show potential sources. Not only objects that are source of some relation."
3228
+ msgstr "Mostra le potenziali sorgenti, non solo gli oggetti che sono sorgente di alcune relazioni."
3229
+
3230
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
3231
+ # defaultMessage: Show potential targets. Not only objects that are target of some relation.
3232
+ msgid "Show potential targets. Not only objects that are target of some relation."
3233
+ msgstr "Mostra le potenziali destinazioni, non solo gli oggetti che sono destinazione di alcune relazioni."
3234
+
3001
3235
  #: components/manage/Blocks/Search/schema
3002
3236
  # defaultMessage: Show search button?
3003
3237
  msgid "Show search button?"
@@ -3033,11 +3267,6 @@ msgstr "Riduci la toolbar"
3033
3267
  msgid "Sign in to start session"
3034
3268
  msgstr "Accedi per iniziare la sessione"
3035
3269
 
3036
- #: components/theme/Logo/Logo
3037
- # defaultMessage: Site
3038
- msgid "Site"
3039
- msgstr "Sito"
3040
-
3041
3270
  #: components/theme/NotFound/NotFound
3042
3271
  #: components/theme/Unauthorized/Unauthorized
3043
3272
  # defaultMessage: Site Administration
@@ -3065,6 +3294,21 @@ msgstr "Dimensione: {size}"
3065
3294
  msgid "Small"
3066
3295
  msgstr "Piccolo"
3067
3296
 
3297
+ #: components/manage/Contents/Contents
3298
+ # defaultMessage: Some items are also a folder.
3299
+ msgid "Some items are also a folder."
3300
+ msgstr ""
3301
+
3302
+ #: components/manage/Contents/Contents
3303
+ # defaultMessage: Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken.
3304
+ msgid "Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken."
3305
+ msgstr ""
3306
+
3307
+ #: components/manage/Controlpanels/Relations/Relations
3308
+ # defaultMessage: Some relations are broken. Please fix.
3309
+ msgid "Some relations are broken. Please fix."
3310
+ msgstr "Alcune relazioni sono corrotte."
3311
+
3068
3312
  #: error
3069
3313
  # defaultMessage: Sorry, something went wrong with your request
3070
3314
  msgid "Sorry, something went wrong with your request"
@@ -3073,7 +3317,7 @@ msgstr "Spiacente, qualcosa è andato storto"
3073
3317
  #: components/manage/Controlpanels/UndoControlpanel
3074
3318
  # defaultMessage: Sort by
3075
3319
  msgid "Sort By"
3076
- msgstr ""
3320
+ msgstr "Ordina per"
3077
3321
 
3078
3322
  #: components/theme/Search/Search
3079
3323
  # defaultMessage: Sort by:
@@ -3095,15 +3339,16 @@ msgstr "Opzioni di ordinamento"
3095
3339
  #: components/manage/Controlpanels/UndoControlpanel
3096
3340
  # defaultMessage: Sort transactions by User-Name, Path or Date
3097
3341
  msgid "Sort transactions by User-Name, Path or Date"
3098
- msgstr ""
3342
+ msgstr "Ordina transazioni per Username, Percorso o Data"
3099
3343
 
3100
3344
  #: components/manage/Controlpanels/UndoControlpanel
3101
3345
  # defaultMessage: Sorted
3102
3346
  msgid "Sorted"
3103
- msgstr ""
3347
+ msgstr "Ordinato"
3104
3348
 
3105
3349
  #: components/manage/Blocks/HTML/Edit
3106
- #: components/manage/Blocks/Image/schema
3350
+ #: components/manage/Controlpanels/Relations/BrokenRelations
3351
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
3107
3352
  # defaultMessage: Source
3108
3353
  msgid "Source"
3109
3354
  msgstr "Sorgente"
@@ -3144,6 +3389,11 @@ msgstr "Stato"
3144
3389
  #: components/manage/Controlpanels/Rules/Rules
3145
3390
  # defaultMessage: Status
3146
3391
  msgid "Status"
3392
+ msgstr "Status"
3393
+
3394
+ #: components/manage/Blocks/ToC/Schema
3395
+ # defaultMessage: Sticky
3396
+ msgid "Sticky"
3147
3397
  msgstr ""
3148
3398
 
3149
3399
  #: components/manage/Multilingual/CompareLanguages
@@ -3196,7 +3446,7 @@ msgstr "Successo"
3196
3446
  #: components/manage/Controlpanels/UndoControlpanel
3197
3447
  # defaultMessage: Successfully undone transactions
3198
3448
  msgid "Successfully Undone Transactions"
3199
- msgstr ""
3449
+ msgstr "Transazioni annullate correttamente"
3200
3450
 
3201
3451
  #: config/Blocks
3202
3452
  # defaultMessage: Summary
@@ -3206,7 +3456,7 @@ msgstr "Sommario"
3206
3456
  #: config/Views
3207
3457
  # defaultMessage: Summary view
3208
3458
  msgid "Summary view"
3209
- msgstr ""
3459
+ msgstr "Vista riassuntiva"
3210
3460
 
3211
3461
  #: components/theme/LanguageSelector/LanguageSelector
3212
3462
  # defaultMessage: Switch to
@@ -3227,7 +3477,7 @@ msgstr "Indice dei contenuti"
3227
3477
  #: config/Views
3228
3478
  # defaultMessage: Tabular view
3229
3479
  msgid "Tabular view"
3230
- msgstr ""
3480
+ msgstr "Vista tabellare"
3231
3481
 
3232
3482
  #: components/manage/Contents/Contents
3233
3483
  #: components/manage/Contents/ContentsTagsModal
@@ -3247,14 +3497,16 @@ msgstr "Categorie da rimuovere"
3247
3497
 
3248
3498
  #: components/manage/Blocks/Teaser/schema
3249
3499
  #: components/manage/Controlpanels/Aliases
3500
+ #: components/manage/Controlpanels/Relations/BrokenRelations
3501
+ #: components/manage/Controlpanels/Relations/RelationsMatrix
3250
3502
  # defaultMessage: Target
3251
3503
  msgid "Target"
3252
- msgstr ""
3504
+ msgstr "Destinazione"
3253
3505
 
3254
3506
  #: components/manage/Controlpanels/Aliases
3255
3507
  # defaultMessage: Target Path (Required)
3256
3508
  msgid "Target Path (Required)"
3257
- msgstr ""
3509
+ msgstr "Percorso di destinazione (Richiesto)"
3258
3510
 
3259
3511
  #: components/manage/Controlpanels/DatabaseInformation
3260
3512
  # defaultMessage: Target memory size per cache in bytes
@@ -3269,12 +3521,12 @@ msgstr "Numero target di oggetti in memoria per cache"
3269
3521
  #: components/manage/Controlpanels/Aliases
3270
3522
  # defaultMessage: Target url path must start with a slash.
3271
3523
  msgid "Target url path must start with a slash."
3272
- msgstr ""
3524
+ msgstr "Il percorso url di destinazione deve cominciare con uno slash."
3273
3525
 
3274
3526
  #: components/manage/Blocks/Teaser/schema
3275
3527
  # defaultMessage: Teaser
3276
3528
  msgid "Teaser"
3277
- msgstr ""
3529
+ msgstr "Teaser"
3278
3530
 
3279
3531
  #: components/manage/Widgets/SchemaWidget
3280
3532
  # defaultMessage: Text
@@ -3323,12 +3575,12 @@ msgstr "La presenza del bottone disabilita la ricerca al volo, la ricerca verrà
3323
3575
  #: components/manage/Rules/Rules
3324
3576
  # defaultMessage: The following content rules are active in this Page. Use the content rules control panel to create new rules or delete or modify existing ones.
3325
3577
  msgid "The following content rules are active in this Page. Use the content rules control panel to create new rules or delete or modify existing ones."
3326
- msgstr ""
3578
+ msgstr "Le seguenti regole di contenuto sono attive in questa pagina. "
3327
3579
 
3328
3580
  #: components/manage/Controlpanels/UpgradeControlPanel
3329
3581
  # defaultMessage: The following list shows which upgrade steps are going to be run. Upgrading sometimes performs a catalog/security update, which may take a long time on large sites. Be patient.
3330
3582
  msgid "The following list shows which upgrade steps are going to be run. Upgrading sometimes performs a catalog/security update, which may take a long time on large sites. Be patient."
3331
- msgstr ""
3583
+ msgstr "Questa lista mostra quali upgrade steps verranno eseguiti. A volte questa procedura comporta un aggiornamento di catalog/security che potrebbe richiedere tempi lunghi su siti molto grandi. Attendi."
3332
3584
 
3333
3585
  #: components/manage/Contents/Contents
3334
3586
  # defaultMessage: The item could not be deleted.
@@ -3343,7 +3595,7 @@ msgstr "L'indirizzo del collegamento è:"
3343
3595
  #: components/manage/Aliases/Aliases
3344
3596
  # defaultMessage: The provided alternative url already exists!
3345
3597
  msgid "The provided alternative url already exists!"
3346
- msgstr ""
3598
+ msgstr "L'url alternativo inserito è già stato utilizzato!"
3347
3599
 
3348
3600
  #: components/theme/Register/Register
3349
3601
  # defaultMessage: The registration process has been successful. Please check your e-mail inbox for information on how activate your account.
@@ -3354,7 +3606,7 @@ msgstr "La registrazione è avvenuta correttamente. Per favore controlla la tua
3354
3606
  #: components/manage/Controlpanels/UpgradeControlPanel
3355
3607
  # defaultMessage: The site configuration is outdated and needs to be upgraded.
3356
3608
  msgid "The site configuration is outdated and needs to be upgraded."
3357
- msgstr ""
3609
+ msgstr "La configurazione del sito è obsoleta e deve essere aggiornata."
3358
3610
 
3359
3611
  #: components/manage/Toolbar/More
3360
3612
  # defaultMessage: The working copy was discarded
@@ -3366,6 +3618,16 @@ msgstr "La copia di lavoro è stata scartata"
3366
3618
  msgid "The {plonecms} is {copyright} 2000-{current_year} by the {plonefoundation} and friends."
3367
3619
  msgstr "{plonecms} è {copyright} 2000-{current_year} della {plonefoundation} ed amici."
3368
3620
 
3621
+ #: helpers/MessageLabels/MessageLabels
3622
+ # defaultMessage: There are no groups with the searched criteria
3623
+ msgid "There are no groups with the searched criteria"
3624
+ msgstr ""
3625
+
3626
+ #: helpers/MessageLabels/MessageLabels
3627
+ # defaultMessage: There are no users with the searched criteria
3628
+ msgid "There are no users with the searched criteria"
3629
+ msgstr ""
3630
+
3369
3631
  #: components/theme/CorsError/CorsError
3370
3632
  # defaultMessage: There is a configuration problem on the backend
3371
3633
  msgid "There is a configuration problem on the backend"
@@ -3374,7 +3636,7 @@ msgstr "C'è un problema di configurazione sul backend"
3374
3636
  #: components/manage/Controlpanels/UpgradeControlPanel
3375
3637
  # defaultMessage: There was an error with the upgrade.
3376
3638
  msgid "There was an error with the upgrade."
3377
- msgstr ""
3639
+ msgstr "Si è verificato un errore durante l'aggiornamento."
3378
3640
 
3379
3641
  #: components/manage/Form/InlineForm
3380
3642
  # defaultMessage: There were some errors
@@ -3392,11 +3654,6 @@ msgstr "Si sono verificati degli errori."
3392
3654
  msgid "Third"
3393
3655
  msgstr "Terzo"
3394
3656
 
3395
- #: components/manage/Contents/Contents
3396
- # defaultMessage: This Page is referenced by the following items:
3397
- msgid "This Page is referenced by the following items:"
3398
- msgstr ""
3399
-
3400
3657
  #: components/manage/WorkingCopyToastsFactory/WorkingCopyToastsFactory
3401
3658
  # defaultMessage: This has an ongoing working copy in {title}
3402
3659
  msgid "This has an ongoing working copy in {title}"
@@ -3412,6 +3669,16 @@ msgstr "Questo è un nome riservato, e non può essere utilizzato"
3412
3669
  msgid "This is a working copy of {title}"
3413
3670
  msgstr "Questa è una copia di lavoro di {title}"
3414
3671
 
3672
+ #: components/manage/Contents/Contents
3673
+ # defaultMessage: This item is also a folder.
3674
+ msgid "This item is also a folder."
3675
+ msgstr ""
3676
+
3677
+ #: components/manage/Contents/Contents
3678
+ # defaultMessage: This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken.
3679
+ msgid "This item is referenced by other items. By deleting it {brokenReferences} {variation} will be broken."
3680
+ msgstr ""
3681
+
3415
3682
  #: components/manage/LockingToastsFactory/LockingToastsFactory
3416
3683
  # defaultMessage: This item was locked by {creator} on {date}
3417
3684
  msgid "This item was locked by {creator} on {date}"
@@ -3430,7 +3697,7 @@ msgstr "Questa pagina non esiste…"
3430
3697
  #: components/manage/Controlpanels/Rules/ConfigureRule
3431
3698
  # defaultMessage: This rule is assigned to the following locations:
3432
3699
  msgid "This rule is assigned to the following locations:"
3433
- msgstr ""
3700
+ msgstr "Questa regola è stata assegnata alle seguenti posizioni:"
3434
3701
 
3435
3702
  #: components/manage/Widgets/DatetimeWidget
3436
3703
  # defaultMessage: Time
@@ -3439,6 +3706,7 @@ msgstr "Ora"
3439
3706
 
3440
3707
  #: components/manage/Blocks/HeroImageLeft/Edit
3441
3708
  #: components/manage/Blocks/Teaser/schema
3709
+ #: components/manage/Blocks/ToC/Schema
3442
3710
  #: components/manage/Contents/Contents
3443
3711
  #: components/manage/Contents/ContentsRenameModal
3444
3712
  #: components/manage/Controlpanels/ContentTypes
@@ -3455,7 +3723,7 @@ msgstr "Titolo"
3455
3723
  #: components/manage/Controlpanels/Rules/EditRule
3456
3724
  # defaultMessage: Title field error. Value not provided or already existing.
3457
3725
  msgid "Title field error. Value not provided or already existing."
3458
- msgstr ""
3726
+ msgstr "Errore nel campo titolo. Nessun valore inserito o valore già esistente."
3459
3727
 
3460
3728
  #: components/manage/Controlpanels/DatabaseInformation
3461
3729
  # defaultMessage: Total active and non-active objects
@@ -3467,11 +3735,6 @@ msgstr "Totale degli oggetti attivi e non attivi"
3467
3735
  msgid "Total comments"
3468
3736
  msgstr "Totale dei commenti"
3469
3737
 
3470
- #: components/manage/Contents/Contents
3471
- # defaultMessage: Total items to be deleted:
3472
- msgid "Total items to be deleted:"
3473
- msgstr ""
3474
-
3475
3738
  #: components/manage/Controlpanels/DatabaseInformation
3476
3739
  # defaultMessage: Total number of objects in each cache
3477
3740
  msgid "Total number of objects in each cache"
@@ -3490,22 +3753,22 @@ msgstr "Numero totale di oggetti nel database"
3490
3753
  #: components/manage/Controlpanels/UndoControlpanel
3491
3754
  # defaultMessage: Transactions
3492
3755
  msgid "Transactions"
3493
- msgstr ""
3756
+ msgstr "Transazioni"
3494
3757
 
3495
3758
  #: components/manage/Controlpanels/UndoControlpanel
3496
3759
  # defaultMessage: #
3497
3760
  msgid "Transactions Checkbox"
3498
- msgstr ""
3761
+ msgstr "Checkbox transazioni"
3499
3762
 
3500
3763
  #: components/manage/Controlpanels/UndoControlpanel
3501
3764
  # defaultMessage: Transactions have been sorted
3502
3765
  msgid "Transactions Have Been Sorted"
3503
- msgstr ""
3766
+ msgstr "L'ordinamento è stato applicato alle transazioni"
3504
3767
 
3505
3768
  #: components/manage/Controlpanels/UndoControlpanel
3506
3769
  # defaultMessage: Transactions have been unsorted
3507
3770
  msgid "Transactions Have Been Unsorted"
3508
- msgstr ""
3771
+ msgstr "L'ordinamento è stato rimosso dalle transazioni"
3509
3772
 
3510
3773
  #: components/manage/Add/Add
3511
3774
  #: components/manage/Toolbar/Types
@@ -3527,9 +3790,10 @@ msgstr "Rimosso il collegamento delle traduzioni"
3527
3790
  #: components/manage/Controlpanels/Rules/EditRule
3528
3791
  # defaultMessage: Triggering event field error. Please select a value
3529
3792
  msgid "Triggering event field error. Please select a value"
3530
- msgstr ""
3793
+ msgstr "Errore nel campo evento. Selezionare un valore."
3531
3794
 
3532
3795
  #: components/manage/Controlpanels/ContentTypes
3796
+ #: components/manage/LinksToItem/LinksToItem
3533
3797
  #: components/manage/Widgets/SchemaWidget
3534
3798
  #: components/theme/View/TabularView
3535
3799
  # defaultMessage: Type
@@ -3554,7 +3818,7 @@ msgstr "Digita il testo…"
3554
3818
  #: components/manage/TextLineEdit/TextLineEdit
3555
3819
  # defaultMessage: Type the heading…
3556
3820
  msgid "Type the heading…"
3557
- msgstr ""
3821
+ msgstr "Inserisci il titolo..."
3558
3822
 
3559
3823
  #: components/manage/Blocks/Title/Edit
3560
3824
  # defaultMessage: Type the title…
@@ -3572,22 +3836,22 @@ msgstr "UID"
3572
3836
  #: components/manage/Toolbar/More
3573
3837
  # defaultMessage: URL Management
3574
3838
  msgid "URL Management"
3575
- msgstr ""
3839
+ msgstr "Gestione URL"
3576
3840
 
3577
3841
  #: components/manage/Aliases/Aliases
3578
3842
  # defaultMessage: URL Management for {title}
3579
3843
  msgid "URL Management for {title}"
3580
- msgstr ""
3844
+ msgstr "Gestione URL per {titolo}"
3581
3845
 
3582
3846
  #: components/manage/Rules/Rules
3583
3847
  # defaultMessage: Unassign
3584
3848
  msgid "Unassign"
3585
- msgstr ""
3849
+ msgstr "Dissocia"
3586
3850
 
3587
3851
  #: components/manage/Rules/Rules
3588
3852
  # defaultMessage: Unassigned
3589
3853
  msgid "Unassigned"
3590
- msgstr ""
3854
+ msgstr "Dissociato"
3591
3855
 
3592
3856
  #: components/manage/Toolbar/More
3593
3857
  #: components/theme/Unauthorized/Unauthorized
@@ -3605,7 +3869,7 @@ msgstr "Annulla"
3605
3869
  #: components/manage/Controlpanels/UndoControlpanel
3606
3870
  # defaultMessage: Undo Controlpanel
3607
3871
  msgid "Undo Controlpanel"
3608
- msgstr ""
3872
+ msgstr "Annulla controlpanel"
3609
3873
 
3610
3874
  #: components/manage/BlockChooser/BlockChooser
3611
3875
  # defaultMessage: Unfold
@@ -3642,13 +3906,18 @@ msgstr "Sblocca"
3642
3906
  #: components/manage/Controlpanels/UndoControlpanel
3643
3907
  # defaultMessage: Unsorted
3644
3908
  msgid "Unsorted"
3645
- msgstr ""
3909
+ msgstr "Non ordinato"
3646
3910
 
3647
3911
  #: components/manage/Controlpanels/AddonsControlpanel
3648
3912
  # defaultMessage: Update
3649
3913
  msgid "Update"
3650
3914
  msgstr "Aggiorna"
3651
3915
 
3916
+ #: helpers/MessageLabels/MessageLabels
3917
+ # defaultMessage: Update User
3918
+ msgid "Update User"
3919
+ msgstr ""
3920
+
3652
3921
  #: components/manage/Controlpanels/AddonsControlpanel
3653
3922
  # defaultMessage: Update installed addons
3654
3923
  msgid "Update installed addons"
@@ -3667,22 +3936,22 @@ msgstr "Aggiornamenti disponibili"
3667
3936
  #: components/manage/Controlpanels/UpgradeControlPanel
3668
3937
  # defaultMessage: Upgrade
3669
3938
  msgid "Upgrade"
3670
- msgstr ""
3939
+ msgstr "Aggiorna"
3671
3940
 
3672
3941
  #: components/manage/Controlpanels/UpgradeControlPanel
3673
3942
  # defaultMessage: Upgrade Plone Site
3674
3943
  msgid "Upgrade Plone Site"
3675
- msgstr ""
3944
+ msgstr "Aggiorna sito Plone"
3676
3945
 
3677
3946
  #: components/manage/Controlpanels/UpgradeControlPanel
3678
3947
  # defaultMessage: Upgrade Report
3679
3948
  msgid "Upgrade Report"
3680
- msgstr ""
3949
+ msgstr "Aggiorna report"
3681
3950
 
3682
3951
  #: components/manage/Controlpanels/UpgradeControlPanel
3683
3952
  # defaultMessage: Upgrade Steps
3684
3953
  msgid "Upgrade Steps"
3685
- msgstr ""
3954
+ msgstr "Upgrade step"
3686
3955
 
3687
3956
  #: components/manage/Contents/Contents
3688
3957
  # defaultMessage: Upload
@@ -3719,12 +3988,12 @@ msgstr "Caricamento dell'immagine"
3719
3988
  #: components/manage/Controlpanels/Rules/EditRule
3720
3989
  # defaultMessage: Use the form below to define the new content rule
3721
3990
  msgid "Use the form below to define the new content rule"
3722
- msgstr ""
3991
+ msgstr "Utilizza il modulo sottostante per definire la nuova regola di contenuto"
3723
3992
 
3724
3993
  #: components/manage/Controlpanels/Rules/Rules
3725
3994
  # defaultMessage: Use the form below to define, change or remove content rules. Rules will automatically perform actions on content when certain triggers take place. After defining rules, you may want to go to a folder to assign them, using the 'rules' item in the actions menu.
3726
3995
  msgid "Use the form below to define, change or remove content rules. Rules will automatically perform actions on content when certain triggers take place. After defining rules, you may want to go to a folder to assign them, using the 'rules' item in the actions menu."
3727
- msgstr ""
3996
+ msgstr "Utilizza il modulo sottostante per definire, cambiare o rimuovere le regole di contenuto. Le regole eseguiranno automaticamente azioni sul contenuto quando si verificano eventi scatenanti. Dopo aver definito le regole, potrebbe essere necessario entrare nelle cartelle per assegnarle, utilizzando la voce 'regole' nel menu azioni."
3728
3997
 
3729
3998
  #: components/manage/Widgets/SchemaWidget
3730
3999
  #: components/manage/Widgets/SelectWidget
@@ -3742,12 +4011,12 @@ msgstr "Utente"
3742
4011
  #: helpers/MessageLabels/MessageLabels
3743
4012
  # defaultMessage: User Group Membership
3744
4013
  msgid "User Group Membership"
3745
- msgstr ""
4014
+ msgstr "Appartenenza a Gruppi Utenti"
3746
4015
 
3747
4016
  #: helpers/MessageLabels/MessageLabels
3748
4017
  # defaultMessage: User Group Settings
3749
4018
  msgid "User Group Settings"
3750
- msgstr ""
4019
+ msgstr "Impostazioni Gruppi Utenti"
3751
4020
 
3752
4021
  #: helpers/MessageLabels/MessageLabels
3753
4022
  # defaultMessage: User created
@@ -3764,6 +4033,11 @@ msgstr "Nome utente"
3764
4033
  msgid "User roles updated"
3765
4034
  msgstr "Ruoli utente aggiornati"
3766
4035
 
4036
+ #: helpers/MessageLabels/MessageLabels
4037
+ # defaultMessage: User updated successfuly
4038
+ msgid "User updated successfuly"
4039
+ msgstr ""
4040
+
3767
4041
  #: helpers/MessageLabels/MessageLabels
3768
4042
  # defaultMessage: Username
3769
4043
  msgid "Username"
@@ -3784,7 +4058,7 @@ msgstr "Utenti e gruppi"
3784
4058
  #: components/manage/Aliases/Aliases
3785
4059
  # defaultMessage: Using this form, you can manage alternative urls for an item. This is an easy way to make an item available under two different URLs.
3786
4060
  msgid "Using this form, you can manage alternative urls for an item. This is an easy way to make an item available under two different URLs."
3787
- msgstr ""
4061
+ msgstr "Utilizzando questo modulo, è possibile gestire url alternativi per gli elementi per rendere un elemento disponibile sotto due diversi indirizzi in modo facile."
3788
4062
 
3789
4063
  #: helpers/Extensions/withBlockSchemaEnhancer
3790
4064
  # defaultMessage: Variation
@@ -3813,6 +4087,11 @@ msgstr "URL del video"
3813
4087
  msgid "View"
3814
4088
  msgstr "Visualizza"
3815
4089
 
4090
+ #: components/manage/Contents/Contents
4091
+ # defaultMessage: View broken links list
4092
+ msgid "View broken links list"
4093
+ msgstr ""
4094
+
3816
4095
  #: components/manage/History/History
3817
4096
  # defaultMessage: View changes
3818
4097
  msgid "View changes"
@@ -3851,7 +4130,7 @@ msgstr "Termini del vocabolario"
3851
4130
  #: components/manage/Controlpanels/VersionOverview
3852
4131
  # defaultMessage: You are running in 'debug mode'. This mode is intended for sites that are under development. This allows many configuration changes to be immediately visible, but will make your site run more slowly. To turn off debug mode, stop the server, set 'debug-mode=off' in your buildout.cfg, re-run bin/buildout and then restart the server process.
3853
4132
  msgid "Warning Regarding debug mode"
3854
- msgstr "Avviso relativo alla modalità di debug"
4133
+ msgstr "Sei in modalità di debug. Questa modalità è destinata ai siti in fase di sviluppo, e permette di visualizzare immediatamente molti dei cambiamenti nella configurazione, rendendo però il sito più lento. Per uscire dalla modalità debug, ferma il server, imposta l'opzione 'debug-mode=off' nel tuo buildout.cfg, esegui nuovamente bin/buildout e fai ripartire il server."
3855
4134
 
3856
4135
  #: components/theme/ConnectionRefused/ConnectionRefused
3857
4136
  # defaultMessage: We apologize for the inconvenience, but the backend of the site you are accessing is not available right now. Please, try again later.
@@ -3863,6 +4142,11 @@ msgstr "Ci scusiamo per l'inconveniente, ma il backend del sito a cui stai cerca
3863
4142
  msgid "We apologize for the inconvenience, but the page you were trying to access is not at this address. You can use the links below to help you find what you are looking for."
3864
4143
  msgstr "Ci scusiamo per l'inconveniente, la pagina cui stai provando ad accedere non esiste a questo indirizzo. Puoi usare il link qui sotto per trovare quello che stavi cercando."
3865
4144
 
4145
+ #: components/theme/Error/ServerError
4146
+ # defaultMessage: We apologize for the inconvenience, but there was an unexpected error on the server.
4147
+ msgid "We apologize for the inconvenience, but there was an unexpected error on the server."
4148
+ msgstr "Ci scusiamo per l'inconveniente. Si è verificato un errore non previsto."
4149
+
3866
4150
  #: components/theme/Forbidden/Forbidden
3867
4151
  # defaultMessage: We apologize for the inconvenience, but you don't have permissions on this resource.
3868
4152
  msgid "We apologize for the inconvenience, but you don't have permissions on this resource."
@@ -3904,19 +4188,19 @@ msgstr "Quando questa data sarà raggiunta, il contenuto non sarà più visibile
3904
4188
  #: components/manage/Controlpanels/Rules/EditRule
3905
4189
  # defaultMessage: Whether or not execution of further rules should stop after this rule is executed
3906
4190
  msgid "Whether or not execution of further rules should stop after this rule is executed"
3907
- msgstr ""
4191
+ msgstr "Determina se l'esecuzione di più regole deve essere interrotta o no dopo che questa regola viene eseguita"
3908
4192
 
3909
4193
  #: components/manage/Controlpanels/Rules/AddRule
3910
4194
  #: components/manage/Controlpanels/Rules/EditRule
3911
4195
  # defaultMessage: Whether or not other rules should be triggered by the actions launched by this rule. Activate this only if you are sure this won't create infinite loops
3912
4196
  msgid "Whether or not other rules should be triggered by the actions launched by this rule. Activate this only if you are sure this won't create infinite loops"
3913
- msgstr ""
4197
+ msgstr "Determina se l'esecuzione di altre regole deve essere attivata dalle azioni lanciate da questa regola. Attivare solo se sei sicuro che non verranno creati loop infiniti"
3914
4198
 
3915
4199
  #: components/manage/Controlpanels/Rules/AddRule
3916
4200
  #: components/manage/Controlpanels/Rules/EditRule
3917
4201
  # defaultMessage: Whether or not the rule is currently enabled
3918
4202
  msgid "Whether or not the rule is currently enabled"
3919
- msgstr ""
4203
+ msgstr "Determina se questa regola è al momento abilitata o disabilitata"
3920
4204
 
3921
4205
  #: components/manage/Controlpanels/UndoControlpanel
3922
4206
  #: components/manage/History/History
@@ -3946,7 +4230,6 @@ msgid "Yearly"
3946
4230
  msgstr "Annuale"
3947
4231
 
3948
4232
  #: components/manage/Contents/ContentsItem
3949
- #: components/manage/Contents/ContentsPropertiesModal
3950
4233
  #: components/manage/Controlpanels/ContentTypes
3951
4234
  # defaultMessage: Yes
3952
4235
  msgid "Yes"
@@ -3990,7 +4273,12 @@ msgstr "Non puoi incollare questo contenuto qui."
3990
4273
  #: components/theme/Logout/Logout
3991
4274
  # defaultMessage: You have been logged out from the site.
3992
4275
  msgid "You have been logged out from the site."
3993
- msgstr ""
4276
+ msgstr "Ti sei disconnesso dal sito."
4277
+
4278
+ #: components/manage/Controlpanels/Relations/Relations
4279
+ # defaultMessage: You have not the required permission for this control panel.
4280
+ msgid "You have not the required permission for this control panel."
4281
+ msgstr "Non hai i permessi necessari per accedere a questo pannello di controllo."
3994
4282
 
3995
4283
  #: components/theme/PasswordReset/RequestPasswordReset
3996
4284
  # defaultMessage: Your email is required for reset your password.
@@ -4010,7 +4298,7 @@ msgstr "La tua lingua preferita."
4010
4298
  #: components/manage/Controlpanels/UpgradeControlPanel
4011
4299
  # defaultMessage: Your site is up to date.
4012
4300
  msgid "Your site is up to date."
4013
- msgstr ""
4301
+ msgstr "Il tuo sito è aggiornato."
4014
4302
 
4015
4303
  #: components/theme/PasswordReset/RequestPasswordReset
4016
4304
  # defaultMessage: Your username is required for reset your password.
@@ -4020,27 +4308,27 @@ msgstr "Il tuo username è richiesto per reimpostare la tua password."
4020
4308
  #: helpers/MessageLabels/MessageLabels
4021
4309
  # defaultMessage: Enter an email address. This is necessary in case the password is lost. We respect your privacy, and will not give the address away to any third parties or expose it anywhere.
4022
4310
  msgid "addUserFormEmailDescription"
4023
- msgstr ""
4311
+ msgstr "Inserisci un indirizzo email. Questa procedura è necessaria in caso venga persa la password. Noi rispettiamo la tua privacy e non diffonderemo il tuo indirizzo a terze parti, né lo renderemo pubblico."
4024
4312
 
4025
4313
  #: helpers/MessageLabels/MessageLabels
4026
4314
  # defaultMessage: Enter full name, e.g. John Smith.
4027
4315
  msgid "addUserFormFullnameDescription"
4028
- msgstr ""
4316
+ msgstr "Inserisci il tuo nome completo, es. John Smith."
4029
4317
 
4030
4318
  #: helpers/MessageLabels/MessageLabels
4031
4319
  # defaultMessage: Enter your new password. Minimum 8 characters.
4032
4320
  msgid "addUserFormPasswordDescription"
4033
- msgstr ""
4321
+ msgstr "Inserisci la nuova password. Minimo 8 caratteri."
4034
4322
 
4035
4323
  #: helpers/MessageLabels/MessageLabels
4036
4324
  # defaultMessage: Enter a user name, usually something like "jsmith". No spaces or special characters. Usernames and passwords are case sensitive, make sure the caps lock key is not enabled. This is the name used to log in.
4037
4325
  msgid "addUserFormUsernameDescription"
4038
- msgstr ""
4326
+ msgstr "Inserisci uno username, ad esempio 'jsmith'. Non sono consentiti spazi o caratteri speciali. Username e password sono case sensitive, assicurati che il caps lock non sia abilitato. Questo sarà il nome che userai per fare il login."
4039
4327
 
4040
4328
  #: components/manage/Blocks/Search/schema
4041
4329
  # defaultMessage: Available views
4042
4330
  msgid "availableViews"
4043
- msgstr ""
4331
+ msgstr "Viste disponibili"
4044
4332
 
4045
4333
  #: components/theme/Login/Login
4046
4334
  #: components/theme/PasswordReset/RequestPasswordReset
@@ -4051,7 +4339,17 @@ msgstr "Hai dimenticato la tua password?"
4051
4339
  #: config/Blocks
4052
4340
  # defaultMessage: Checkbox
4053
4341
  msgid "checkboxFacet"
4054
- msgstr ""
4342
+ msgstr "Checkbox"
4343
+
4344
+ #: components/manage/Blocks/Grid/templates
4345
+ # defaultMessage: column
4346
+ msgid "column"
4347
+ msgstr "colonna"
4348
+
4349
+ #: components/manage/Blocks/Grid/templates
4350
+ # defaultMessage: columns
4351
+ msgid "columns"
4352
+ msgstr "colonne"
4055
4353
 
4056
4354
  #: config/Blocks
4057
4355
  # defaultMessage: Common
@@ -4063,10 +4361,15 @@ msgstr "Comuni"
4063
4361
  msgid "compare_to"
4064
4362
  msgstr "Confronta con"
4065
4363
 
4364
+ #: components/manage/Controlpanels/Relations/BrokenRelations
4365
+ # defaultMessage: {countofrelation} broken {countofrelation, plural, one {relation} other {relations}} of type {typeofrelation}
4366
+ msgid "countBrokenRelations"
4367
+ msgstr ""
4368
+
4066
4369
  #: config/Blocks
4067
4370
  # defaultMessage: Date Range
4068
4371
  msgid "daterangeFacet"
4069
- msgstr ""
4372
+ msgstr "Intervallo date"
4070
4373
 
4071
4374
  #: components/manage/Blocks/Block/EditBlockWrapper
4072
4375
  # defaultMessage: delete
@@ -4143,10 +4446,25 @@ msgstr "Quando"
4143
4446
  msgid "event_where"
4144
4447
  msgstr "Dove"
4145
4448
 
4449
+ #: helpers/MessageLabels/MessageLabels
4450
+ # defaultMessage: This website does not accept files larger than {limit}
4451
+ msgid "fileTooLarge"
4452
+ msgstr "Questo sito non accetta file più grandi di {limit}"
4453
+
4454
+ #: helpers/MessageLabels/MessageLabels
4455
+ # defaultMessage: flush intIds and rebuild relations
4456
+ msgid "flush intIds and rebuild relations"
4457
+ msgstr "elimina intIds e ricrea le relazioni"
4458
+
4459
+ #: helpers/MessageLabels/MessageLabels
4460
+ # defaultMessage: <ul><li>Regenerate intIds (tokens of relations in relation catalog)</li><li>Rebuild relations</li></ul><p>Check the log for details!</p><p><b>Warning</b>: If you have add-ons relying on intIds, you should not flush them.</p>
4461
+ msgid "flushAndRebuildRelationsHints"
4462
+ msgstr ""
4463
+
4146
4464
  #: components/manage/Blocks/Teaser/schema
4147
4465
  # defaultMessage: Head title
4148
4466
  msgid "head_title"
4149
- msgstr ""
4467
+ msgstr "Titolo"
4150
4468
 
4151
4469
  #: components/theme/PasswordReset/RequestPasswordReset
4152
4470
  # defaultMessage: Password reset confirmation sent
@@ -4168,6 +4486,16 @@ msgstr "HTML"
4168
4486
  msgid "image"
4169
4487
  msgstr "Immagine"
4170
4488
 
4489
+ #: components/manage/Blocks/Image/ImageSidebar
4490
+ # defaultMessage: Clear image
4491
+ msgid "image_block_clear"
4492
+ msgstr "Deseleziona l'immagine"
4493
+
4494
+ #: components/manage/Blocks/Image/ImageSidebar
4495
+ # defaultMessage: Image preview
4496
+ msgid "image_block_preview"
4497
+ msgstr "Anteprima dell'immagine"
4498
+
4171
4499
  #: helpers/MessageLabels/MessageLabels
4172
4500
  # defaultMessage: Input must be integer
4173
4501
  msgid "integer"
@@ -4176,7 +4504,17 @@ msgstr "intero"
4176
4504
  #: components/manage/Contents/ContentsItem
4177
4505
  # defaultMessage: Intranet
4178
4506
  msgid "intranet"
4179
- msgstr "Pubbliato internamente"
4507
+ msgstr "Pubblicato internamente"
4508
+
4509
+ #: components/manage/Contents/Contents
4510
+ # defaultMessage: item
4511
+ msgid "item"
4512
+ msgstr ""
4513
+
4514
+ #: components/manage/Contents/Contents
4515
+ # defaultMessage: items
4516
+ msgid "items"
4517
+ msgstr ""
4180
4518
 
4181
4519
  #: components/theme/PasswordReset/RequestPasswordReset
4182
4520
  # defaultMessage: My email is
@@ -4184,7 +4522,7 @@ msgid "label_my_email_is"
4184
4522
  msgstr "La mia email è"
4185
4523
 
4186
4524
  #: components/theme/PasswordReset/RequestPasswordReset
4187
- # defaultMessage: My username is
4525
+ # defaultMessage: My user name is
4188
4526
  msgid "label_my_username_is"
4189
4527
  msgstr "Il mio nome utente è"
4190
4528
 
@@ -4244,6 +4582,11 @@ msgstr "Inizio del range"
4244
4582
  msgid "mostUsed"
4245
4583
  msgstr "Più usati"
4246
4584
 
4585
+ #: components/manage/Controlpanels/Relations/RelationsListing
4586
+ # defaultMessage: Found {sources} sources and {targets} targets. Narrow down to {max}!
4587
+ msgid "narrowDownRelations"
4588
+ msgstr "Sono state trovate {sources} sorgenti e {targets} destinazioni. Riduci a {max}!"
4589
+
4247
4590
  #: components/manage/Blocks/Search/components/DateRangeFacetFilterListEntry
4248
4591
  #: components/manage/Blocks/Search/components/ToggleFacetFilterListEntry
4249
4592
  #: components/theme/Widgets/BooleanWidget
@@ -4280,7 +4623,7 @@ msgstr "altre"
4280
4623
  #: components/manage/Contents/ContentsItem
4281
4624
  # defaultMessage: Pending
4282
4625
  msgid "pending"
4283
- msgstr ""
4626
+ msgstr "In attesa"
4284
4627
 
4285
4628
  #: components/manage/Contents/ContentsItem
4286
4629
  # defaultMessage: Private
@@ -4297,6 +4640,21 @@ msgstr "Pubblicato"
4297
4640
  msgid "querystring-widget-select"
4298
4641
  msgstr "Seleziona…"
4299
4642
 
4643
+ #: helpers/MessageLabels/MessageLabels
4644
+ # defaultMessage: rebuild relations
4645
+ msgid "rebuild relations"
4646
+ msgstr "ricrea le relazioni"
4647
+
4648
+ #: components/manage/Contents/Contents
4649
+ # defaultMessage: reference
4650
+ msgid "reference"
4651
+ msgstr ""
4652
+
4653
+ #: components/manage/Contents/Contents
4654
+ # defaultMessage: references
4655
+ msgid "references"
4656
+ msgstr ""
4657
+
4300
4658
  #: components/theme/Search/Search
4301
4659
  # defaultMessage: results
4302
4660
  msgid "results found"
@@ -4470,12 +4828,12 @@ msgstr "anni"
4470
4828
  #: config/Blocks
4471
4829
  # defaultMessage: Select
4472
4830
  msgid "selectFacet"
4473
- msgstr ""
4831
+ msgstr "Seleziona"
4474
4832
 
4475
4833
  #: components/manage/Blocks/Search/components/ViewSwitcher
4476
4834
  # defaultMessage: Select view
4477
4835
  msgid "selectView"
4478
- msgstr ""
4836
+ msgstr "Seleziona la vista"
4479
4837
 
4480
4838
  #: components/theme/SkipLinks/SkipLinks
4481
4839
  # defaultMessage: Skip to footer
@@ -4497,11 +4855,21 @@ msgstr "Salta alla navigazione"
4497
4855
  msgid "sort"
4498
4856
  msgstr "ordina"
4499
4857
 
4858
+ #: helpers/MessageLabels/MessageLabels
4859
+ # defaultMessage: sources path
4860
+ msgid "sources path"
4861
+ msgstr "percorso sorgente"
4862
+
4500
4863
  #: config/Blocks
4501
4864
  # defaultMessage: Table
4502
4865
  msgid "table"
4503
4866
  msgstr "Tabella"
4504
4867
 
4868
+ #: helpers/MessageLabels/MessageLabels
4869
+ # defaultMessage: target path
4870
+ msgid "target path"
4871
+ msgstr "percorso di destinazione"
4872
+
4505
4873
  #: config/Blocks
4506
4874
  # defaultMessage: Text
4507
4875
  msgid "text"
@@ -4512,6 +4880,7 @@ msgstr "Testo"
4512
4880
  msgid "title"
4513
4881
  msgstr "Titolo"
4514
4882
 
4883
+ #: components/manage/Blocks/ToC/Schema
4515
4884
  #: config/Blocks
4516
4885
  # defaultMessage: Table of Contents
4517
4886
  msgid "toc"
@@ -4520,12 +4889,12 @@ msgstr "Indice dei contenuti"
4520
4889
  #: config/Blocks
4521
4890
  # defaultMessage: Toggle
4522
4891
  msgid "toggleFacet"
4523
- msgstr ""
4892
+ msgstr "Toggle"
4524
4893
 
4525
4894
  #: components/manage/Controlpanels/AddonsControlpanel
4526
4895
  # defaultMessage: Update from version {origin} to {destination}
4527
4896
  msgid "upgradeVersions"
4528
- msgstr ""
4897
+ msgstr "Aggiorna da versione {origin} a {destination}"
4529
4898
 
4530
4899
  #: helpers/MessageLabels/MessageLabels
4531
4900
  # defaultMessage: Input must be valid url (www.something.com or http(s)://www.something.com)
@@ -4545,7 +4914,7 @@ msgstr "Video"
4545
4914
  #: components/manage/Blocks/Search/schema
4546
4915
  # defaultMessage: Views
4547
4916
  msgid "views"
4548
- msgstr ""
4917
+ msgstr "Viste"
4549
4918
 
4550
4919
  #: components/theme/EventDetails/EventDetails
4551
4920
  # defaultMessage: Visit external website