Skip to content

Commit

Permalink
chore: label desc
Browse files Browse the repository at this point in the history
  • Loading branch information
mamico committed Jun 27, 2024
1 parent 3ddcaba commit 9ffd93c
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 2 deletions.
5 changes: 5 additions & 0 deletions locales/de/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -1950,6 +1950,11 @@ msgstr ""
msgid "expandItems"
msgstr ""

#: components/ItaliaTheme/manage/Widgets/SearchSectionsConfigurationWidget/SearchSectionsConfigurationForm
# defaultMessage: Uncheck to omit children items
msgid "expandItems_description"
msgstr ""

#: components/ItaliaTheme/View/Commons/PageHeader/PageHeaderDates
# defaultMessage: Scadenza
msgid "expire"
Expand Down
5 changes: 5 additions & 0 deletions locales/en/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -1935,6 +1935,11 @@ msgstr "Appointments"
msgid "expandItems"
msgstr ""

#: components/ItaliaTheme/manage/Widgets/SearchSectionsConfigurationWidget/SearchSectionsConfigurationForm
# defaultMessage: Uncheck to omit children items
msgid "expandItems_description"
msgstr ""

#: components/ItaliaTheme/View/Commons/PageHeader/PageHeaderDates
# defaultMessage: Scadenza
msgid "expire"
Expand Down
5 changes: 5 additions & 0 deletions locales/es/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -1944,6 +1944,11 @@ msgstr "Cita"
msgid "expandItems"
msgstr ""

#: components/ItaliaTheme/manage/Widgets/SearchSectionsConfigurationWidget/SearchSectionsConfigurationForm
# defaultMessage: Uncheck to omit children items
msgid "expandItems_description"
msgstr ""

#: components/ItaliaTheme/View/Commons/PageHeader/PageHeaderDates
# defaultMessage: Scadenza
msgid "expire"
Expand Down
5 changes: 5 additions & 0 deletions locales/fr/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -1952,6 +1952,11 @@ msgstr "Rendez-vous"
msgid "expandItems"
msgstr ""

#: components/ItaliaTheme/manage/Widgets/SearchSectionsConfigurationWidget/SearchSectionsConfigurationForm
# defaultMessage: Uncheck to omit children items
msgid "expandItems_description"
msgstr ""

#: components/ItaliaTheme/View/Commons/PageHeader/PageHeaderDates
# defaultMessage: Scadenza
msgid "expire"
Expand Down
7 changes: 6 additions & 1 deletion locales/it/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -1933,7 +1933,12 @@ msgstr "Appuntamenti"
#: components/ItaliaTheme/manage/Widgets/SearchSectionsConfigurationWidget/SearchSectionsConfigurationForm
# defaultMessage: Expand items
msgid "expandItems"
msgstr "Espande i sotto-elementi nei filtri di ricerca (togliere la spunta per sezioni con un numero elevato di elementi)"
msgstr "Espande i sotto-elementi nei filtri di ricerca"

#: components/ItaliaTheme/manage/Widgets/SearchSectionsConfigurationWidget/SearchSectionsConfigurationForm
# defaultMessage: Uncheck to omit children items
msgid "expandItems_description"
msgstr "Togliere la spunta per sezioni con un numero elevato di elementi"

#: components/ItaliaTheme/View/Commons/PageHeader/PageHeaderDates
# defaultMessage: Scadenza
Expand Down
7 changes: 6 additions & 1 deletion locales/volto.pot
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Plone\n"
"POT-Creation-Date: 2024-06-27T17:10:09.287Z\n"
"POT-Creation-Date: 2024-06-27T17:20:04.159Z\n"
"Last-Translator: Plone i18n <[email protected]>\n"
"Language-Team: Plone i18n <[email protected]>\n"
"MIME-Version: 1.0\n"
Expand Down Expand Up @@ -1937,6 +1937,11 @@ msgstr ""
msgid "expandItems"
msgstr ""

#: components/ItaliaTheme/manage/Widgets/SearchSectionsConfigurationWidget/SearchSectionsConfigurationForm
# defaultMessage: Uncheck to omit children items
msgid "expandItems_description"
msgstr ""

#: components/ItaliaTheme/View/Commons/PageHeader/PageHeaderDates
# defaultMessage: Scadenza
msgid "expire"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ const messages = defineMessages({
id: 'expandItems',
defaultMessage: 'Expand items',
},
expandItems_description: {
id: 'expandItems_description',
defaultMessage: 'Uncheck to omit children items',
},
});

const SearchSectionsConfigurationForm = ({
Expand Down Expand Up @@ -123,6 +127,7 @@ const SearchSectionsConfigurationForm = ({
<CheckboxWidget
id={`${id}-expandItems`}
title={intl.formatMessage(messages.expandItems)}
description={intl.formatMessage(messages.expandItems_description)}
value={item.expandItems ?? true}
onChange={(id, value) => onChangeFormData('expandItems', value)}
/>
Expand Down

0 comments on commit 9ffd93c

Please sign in to comment.