From e143f7bf5c5b2b04acccf953b0104336a72054e0 Mon Sep 17 00:00:00 2001 From: Wagner Trezub Date: Thu, 4 Jun 2026 14:52:35 +0200 Subject: [PATCH 1/7] fix(a11y): improve screen reader announcements for multi-value chips in select widgets --- .../components/manage/Widgets/ArrayWidget.jsx | 8 ++++++++ .../components/manage/Widgets/SelectStyling.jsx | 17 +++++++++++++++++ .../components/manage/Widgets/SelectWidget.jsx | 8 ++++++++ 3 files changed, 33 insertions(+) diff --git a/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx b/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx index 226575baad4..06f91361f0f 100644 --- a/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx +++ b/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx @@ -402,6 +402,14 @@ class ArrayWidget extends Component { } isClearable isMulti + ariaLiveMessages={{ + onFocus: (props) => { + if (props.context === 'input') { + return `${props['aria-label'] || 'Select'} is focused${props.isSearchable ? ', type to refine list' : ''}, press Down to open the menu.`; + } + return ''; + }, + }} /> diff --git a/packages/volto/src/components/manage/Widgets/SelectStyling.jsx b/packages/volto/src/components/manage/Widgets/SelectStyling.jsx index ba5d7a92454..ff1438e38cd 100644 --- a/packages/volto/src/components/manage/Widgets/SelectStyling.jsx +++ b/packages/volto/src/components/manage/Widgets/SelectStyling.jsx @@ -1,5 +1,6 @@ import React from 'react'; import { Popup } from 'semantic-ui-react'; +import { defineMessages, useIntl } from 'react-intl'; import { injectLazyLibs } from '@plone/volto/helpers/Loadable/Loadable'; import Icon from '@plone/volto/components/theme/Icon/Icon'; import DynamicHeightList from '@plone/volto/components/manage/ReactVirtualized/DynamicRowHeightList'; @@ -10,6 +11,16 @@ import checkSVG from '@plone/volto/icons/check.svg'; import checkBlankSVG from '@plone/volto/icons/check-blank.svg'; import clearSVG from '@plone/volto/icons/clear.svg'; +const messages = defineMessages({ + chip_instructions: { + id: 'Press Space to add items. Press Delete or Backspace to remove.', + defaultMessage: + 'Press Space to add items. Press Delete or Backspace to remove.', + }, +}); + +const CHIP_INSTRUCTIONS_ID = 'select-chip-instructions'; + export const MenuList = ({ children }) => { return {children}; }; @@ -35,6 +46,7 @@ export const SortableMultiValue = injectLazyLibs([ useSortable({ id: props.data.value, }); + const intl = useIntl(); return ( // eslint-disable-next-line jsx-a11y/no-static-element-interactions @@ -46,7 +58,12 @@ export const SortableMultiValue = injectLazyLibs([ }} {...attributes} {...listeners} + aria-label={`${props.selectProps.fieldTitle || ''}: ${props.data.label}`} + aria-describedby={CHIP_INSTRUCTIONS_ID} > + + {intl.formatMessage(messages.chip_instructions)} + { + if (props.context === 'input') { + return `${props['aria-label'] || 'Select'} is focused${props.isSearchable ? ', type to refine list' : ''}, press Down to open the menu.`; + } + return ''; + }, + }} /> ); From 703aacd848f4758d83e6ca1a4c5fca62951074cc Mon Sep 17 00:00:00 2001 From: Wagner Trezub Date: Thu, 4 Jun 2026 15:19:11 +0200 Subject: [PATCH 2/7] chore: add news fragment for PR 8316 --- packages/volto/news/8316.bugfix | 1 + 1 file changed, 1 insertion(+) create mode 100644 packages/volto/news/8316.bugfix diff --git a/packages/volto/news/8316.bugfix b/packages/volto/news/8316.bugfix new file mode 100644 index 00000000000..6b6420c4a2e --- /dev/null +++ b/packages/volto/news/8316.bugfix @@ -0,0 +1 @@ +Improve screen reader announcements for multi-value chips in `SelectWidget` and `ArrayWidget`: announce chip value and keyboard instructions on focus, and suppress misleading navigation hints. @Wagner3UB From 88589a80812bf6b34ee5122b4bca2f715cf2831c Mon Sep 17 00:00:00 2001 From: Wagner Trezub Date: Thu, 4 Jun 2026 16:42:56 +0200 Subject: [PATCH 3/7] chore: i18n --- packages/volto/locales/af/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/ar/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/bg/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/bn/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/ca/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/cs/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/cy/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/da/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/de/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/el/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/en/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/en_AU/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/en_GB/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/eo/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/es/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/et/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/eu/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/fa/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/fi/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/fr/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/fu/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/gl/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/he/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/hi/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/hr/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/hu/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/hy/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/id/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/it/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/ja/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/ka/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/kn/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/ko/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/lt/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/lv/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/mi/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/mk/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/my/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/nb_NO/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/nl/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/nn/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/pl/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/pt/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/pt_BR/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/rm/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/ro/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/ru/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/sk/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/sl/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/sm/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/sq/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/sr/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/sr@latn/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/sv/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/ta/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/te/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/th/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/to/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/tr/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/uk/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/vi/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/volto.pot | 7 ++++++- packages/volto/locales/zh_CN/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po | 5 +++++ packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po | 5 +++++ 66 files changed, 331 insertions(+), 1 deletion(-) diff --git a/packages/volto/locales/af/LC_MESSAGES/volto.po b/packages/volto/locales/af/LC_MESSAGES/volto.po index e8d16a8a44a..65254a430cb 100644 --- a/packages/volto/locales/af/LC_MESSAGES/volto.po +++ b/packages/volto/locales/af/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Druk Spasie om items by te voeg. Druk Verwyder of Rugspasie om te verwyder." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/ar/LC_MESSAGES/volto.po b/packages/volto/locales/ar/LC_MESSAGES/volto.po index 2210cf77bca..106c05e12a9 100644 --- a/packages/volto/locales/ar/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ar/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "اضغط مسافة لإضافة عناصر. اضغط حذف أو مسافة للخلف للإزالة." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/bg/LC_MESSAGES/volto.po b/packages/volto/locales/bg/LC_MESSAGES/volto.po index d8109e97abf..9b144f3bddb 100644 --- a/packages/volto/locales/bg/LC_MESSAGES/volto.po +++ b/packages/volto/locales/bg/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Натиснете Интервал за добавяне. Натиснете Изтрий или Backspace за премахване." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/bn/LC_MESSAGES/volto.po b/packages/volto/locales/bn/LC_MESSAGES/volto.po index ae232a502df..8bc45cbc583 100644 --- a/packages/volto/locales/bn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/bn/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "আইটেম যোগ করতে স্পেস চাপুন। মুছতে মুছুন বা Backspace চাপুন।" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/ca/LC_MESSAGES/volto.po b/packages/volto/locales/ca/LC_MESSAGES/volto.po index 3d29f25dda5..3c271dd3898 100644 --- a/packages/volto/locales/ca/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ca/LC_MESSAGES/volto.po @@ -2920,6 +2920,11 @@ msgstr "Preferències" msgid "Press Enter to browse files from your computer." msgstr "Prem Enter per explorar els fitxers del teu ordinador." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Premeu Espai per afegir elements. Premeu Suprimir o Retrocés per eliminar." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/cs/LC_MESSAGES/volto.po b/packages/volto/locales/cs/LC_MESSAGES/volto.po index ae1c9ce0bea..53a46a04024 100644 --- a/packages/volto/locales/cs/LC_MESSAGES/volto.po +++ b/packages/volto/locales/cs/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Stiskněte Mezerník pro přidání položek. Stiskněte Odstranit nebo Backspace pro odebrání." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/cy/LC_MESSAGES/volto.po b/packages/volto/locales/cy/LC_MESSAGES/volto.po index 53eb046027c..3c2e0cd8f80 100644 --- a/packages/volto/locales/cy/LC_MESSAGES/volto.po +++ b/packages/volto/locales/cy/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Gwasgwch Gofod i ychwanegu eitemau. Gwasgwch Dileu neu Backspace i dynnu." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/da/LC_MESSAGES/volto.po b/packages/volto/locales/da/LC_MESSAGES/volto.po index 44e8f0f9eb8..2d4ef84c804 100644 --- a/packages/volto/locales/da/LC_MESSAGES/volto.po +++ b/packages/volto/locales/da/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Tryk Mellemrum for at tilføje elementer. Tryk Slet eller Backspace for at fjerne." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/de/LC_MESSAGES/volto.po b/packages/volto/locales/de/LC_MESSAGES/volto.po index 1d2a3f88c58..a1c5ce39487 100644 --- a/packages/volto/locales/de/LC_MESSAGES/volto.po +++ b/packages/volto/locales/de/LC_MESSAGES/volto.po @@ -2920,6 +2920,11 @@ msgstr "Einstellungen" msgid "Press Enter to browse files from your computer." msgstr "Drücken Sie die Eingabetaste, um Dateien auf Ihrem Computer zu durchsuche" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Leertaste drücken, um Einträge hinzuzufügen. Entfernen oder Rücktaste drücken, um Einträge zu löschen." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/el/LC_MESSAGES/volto.po b/packages/volto/locales/el/LC_MESSAGES/volto.po index b7734828af5..addf6259dca 100644 --- a/packages/volto/locales/el/LC_MESSAGES/volto.po +++ b/packages/volto/locales/el/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Πατήστε Διάστημα για προσθήκη. Πατήστε Διαγραφή ή Backspace για αφαίρεση." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/en/LC_MESSAGES/volto.po b/packages/volto/locales/en/LC_MESSAGES/volto.po index 1167088fe9d..05102898864 100644 --- a/packages/volto/locales/en/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en/LC_MESSAGES/volto.po @@ -2918,6 +2918,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Press Space to add items. Press Delete or Backspace to remove." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/en_AU/LC_MESSAGES/volto.po b/packages/volto/locales/en_AU/LC_MESSAGES/volto.po index ebdb8ac74f4..65e91b4158f 100644 --- a/packages/volto/locales/en_AU/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en_AU/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Press Space to add items. Press Delete or Backspace to remove." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/en_GB/LC_MESSAGES/volto.po b/packages/volto/locales/en_GB/LC_MESSAGES/volto.po index c51ce584ec2..febf5c2a04a 100644 --- a/packages/volto/locales/en_GB/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en_GB/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Press Space to add items. Press Delete or Backspace to remove." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/eo/LC_MESSAGES/volto.po b/packages/volto/locales/eo/LC_MESSAGES/volto.po index c4842ae382c..fa3ba4f757a 100644 --- a/packages/volto/locales/eo/LC_MESSAGES/volto.po +++ b/packages/volto/locales/eo/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Premu Spacon por aldoni erojn. Premu Forigi aŭ Retropaŝon por forigi." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/es/LC_MESSAGES/volto.po b/packages/volto/locales/es/LC_MESSAGES/volto.po index 0804dbb12f0..ca4d226b763 100644 --- a/packages/volto/locales/es/LC_MESSAGES/volto.po +++ b/packages/volto/locales/es/LC_MESSAGES/volto.po @@ -2920,6 +2920,11 @@ msgstr "Preferencias" msgid "Press Enter to browse files from your computer." msgstr "Presiona Enter para seleccionar archivos de tu ordenador." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Pulse Espacio para añadir elementos. Pulse Suprimir o Retroceso para eliminar." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/et/LC_MESSAGES/volto.po b/packages/volto/locales/et/LC_MESSAGES/volto.po index 33e9b38d5b4..f931808dbf3 100644 --- a/packages/volto/locales/et/LC_MESSAGES/volto.po +++ b/packages/volto/locales/et/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Vajutage Tühik üksuste lisamiseks. Vajutage Kustuta või Backspace eemaldamiseks." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/eu/LC_MESSAGES/volto.po b/packages/volto/locales/eu/LC_MESSAGES/volto.po index bf61ca92603..cc92b248201 100644 --- a/packages/volto/locales/eu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/eu/LC_MESSAGES/volto.po @@ -2920,6 +2920,11 @@ msgstr "Hobespenak" msgid "Press Enter to browse files from your computer." msgstr "Sakatu Enter zure ordenagailuko fitxategiak aukeratzeko." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Sakatu Zuriunea elementuak gehitzeko. Sakatu Ezabatu edo Atzera ezabatzeko." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/fa/LC_MESSAGES/volto.po b/packages/volto/locales/fa/LC_MESSAGES/volto.po index 066dff67b21..a17d67cfcdb 100644 --- a/packages/volto/locales/fa/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fa/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "برای افزودن موارد فاصله را فشار دهید. برای حذف، حذف یا Backspace را فشار دهید." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/fi/LC_MESSAGES/volto.po b/packages/volto/locales/fi/LC_MESSAGES/volto.po index a40269f45bd..5fd27751425 100644 --- a/packages/volto/locales/fi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fi/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "Asetukset" msgid "Press Enter to browse files from your computer." msgstr "Paina Enter-näppäintä selataksesi tiedostoja tietokoneeltasi." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Paina Välilyönti lisätäksesi kohteita. Paina Poista tai Askelpalautin poistaaksesi." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/fr/LC_MESSAGES/volto.po b/packages/volto/locales/fr/LC_MESSAGES/volto.po index 935c4760f5f..e7dc6e5cd54 100644 --- a/packages/volto/locales/fr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fr/LC_MESSAGES/volto.po @@ -2920,6 +2920,11 @@ msgstr "Préférences" msgid "Press Enter to browse files from your computer." msgstr "Appuyez sur Entrée pour parcourir les fichiers sur votre ordinateur." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Appuyez sur Espace pour ajouter des éléments. Appuyez sur Supprimer ou Retour arrière pour retirer." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/fu/LC_MESSAGES/volto.po b/packages/volto/locales/fu/LC_MESSAGES/volto.po index 9db016b9b44..6a4e827dee1 100644 --- a/packages/volto/locales/fu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fu/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Press Space to add items. Press Delete or Backspace to remove." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/gl/LC_MESSAGES/volto.po b/packages/volto/locales/gl/LC_MESSAGES/volto.po index 39651c4c5bf..e40e26aa56e 100644 --- a/packages/volto/locales/gl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/gl/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "Preferencias" msgid "Press Enter to browse files from your computer." msgstr "Prema Intro para explorar os ficheiros do seu ordenador." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Prema Espazo para engadir elementos. Prema Eliminar ou Retroceso para eliminar." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/he/LC_MESSAGES/volto.po b/packages/volto/locales/he/LC_MESSAGES/volto.po index c50a7f12511..ec24f62c4d9 100644 --- a/packages/volto/locales/he/LC_MESSAGES/volto.po +++ b/packages/volto/locales/he/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "לחץ רווח להוספת פריטים. לחץ מחק או Backspace להסרה." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/hi/LC_MESSAGES/volto.po b/packages/volto/locales/hi/LC_MESSAGES/volto.po index 95fd9631f1d..bdcbe2e3fe5 100644 --- a/packages/volto/locales/hi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hi/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "पसंद" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "आइटम जोड़ने के लिए स्पेस दबाएं। हटाने के लिए हटाएं या Backspace दबाएं।" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/hr/LC_MESSAGES/volto.po b/packages/volto/locales/hr/LC_MESSAGES/volto.po index a2536bc1241..9939ae8687b 100644 --- a/packages/volto/locales/hr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hr/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Pritisnite Razmaknica za dodavanje stavki. Pritisnite Izbriši ili Backspace za uklanjanje." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/hu/LC_MESSAGES/volto.po b/packages/volto/locales/hu/LC_MESSAGES/volto.po index 6b49d9d9e79..b509789d498 100644 --- a/packages/volto/locales/hu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hu/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Nyomja meg a Szóköz billentyűt elemek hozzáadásához. Nyomja meg a Törlés vagy Backspace billentyűt az eltávolításhoz." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/hy/LC_MESSAGES/volto.po b/packages/volto/locales/hy/LC_MESSAGES/volto.po index 0b8a08865ee..73dee483db6 100644 --- a/packages/volto/locales/hy/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hy/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Սեղմեք Բացատ՝ տարրեր ավելացնելու համար։ Սեղմեք Ջնջել կամ Backspace՝ հեռացնելու համար։" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/id/LC_MESSAGES/volto.po b/packages/volto/locales/id/LC_MESSAGES/volto.po index 61c451852a8..da7db355c50 100644 --- a/packages/volto/locales/id/LC_MESSAGES/volto.po +++ b/packages/volto/locales/id/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Tekan Spasi untuk menambahkan item. Tekan Hapus atau Backspace untuk menghapus." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/it/LC_MESSAGES/volto.po b/packages/volto/locales/it/LC_MESSAGES/volto.po index 4120e5da98c..0b64d75879e 100644 --- a/packages/volto/locales/it/LC_MESSAGES/volto.po +++ b/packages/volto/locales/it/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "Preferenze" msgid "Press Enter to browse files from your computer." msgstr "Premi Invio per scegliere i file dal tuo computer." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Premi Spazio per aggiungere elementi. Premi Cancella o Backspace per rimuovere." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/ja/LC_MESSAGES/volto.po b/packages/volto/locales/ja/LC_MESSAGES/volto.po index 2313a58d389..3cb4aaad300 100644 --- a/packages/volto/locales/ja/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ja/LC_MESSAGES/volto.po @@ -2920,6 +2920,11 @@ msgstr "個別設定" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "スペースキーで項目を追加します。削除キーまたはBackspaceキーで削除します。" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/ka/LC_MESSAGES/volto.po b/packages/volto/locales/ka/LC_MESSAGES/volto.po index 58361f99e22..d7b85a6277d 100644 --- a/packages/volto/locales/ka/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ka/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "დააჭირეთ სფეისს ელემენტების დასამატებლად. დააჭირეთ წაშლას ან Backspace-ს წასაშლელად." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/kn/LC_MESSAGES/volto.po b/packages/volto/locales/kn/LC_MESSAGES/volto.po index ccc9360af33..b96e8c82ec6 100644 --- a/packages/volto/locales/kn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/kn/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "ಐಟಂಗಳನ್ನು ಸೇರಿಸಲು ಸ್ಪೇಸ್ ಒತ್ತಿರಿ. ತೆಗೆದುಹಾಕಲು ಅಳಿಸು ಅಥವಾ Backspace ಒತ್ತಿರಿ." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/ko/LC_MESSAGES/volto.po b/packages/volto/locales/ko/LC_MESSAGES/volto.po index f010a5d2a3c..2be683cfa09 100644 --- a/packages/volto/locales/ko/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ko/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "항목을 추가하려면 스페이스를 누르세요. 제거하려면 삭제 또는 Backspace를 누르세요." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/lt/LC_MESSAGES/volto.po b/packages/volto/locales/lt/LC_MESSAGES/volto.po index 9d4b9f9edc5..0058a181db9 100644 --- a/packages/volto/locales/lt/LC_MESSAGES/volto.po +++ b/packages/volto/locales/lt/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Paspauskite Tarpas, kad pridėtumėte elementų. Paspauskite Ištrinti arba Backspace, kad pašalintumėte." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/lv/LC_MESSAGES/volto.po b/packages/volto/locales/lv/LC_MESSAGES/volto.po index abb4c6b98b3..90adfb70691 100644 --- a/packages/volto/locales/lv/LC_MESSAGES/volto.po +++ b/packages/volto/locales/lv/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Nospiediet Atstarpe, lai pievienotu vienumu. Nospiediet Dzēst vai Backspace, lai noņemtu." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/mi/LC_MESSAGES/volto.po b/packages/volto/locales/mi/LC_MESSAGES/volto.po index 71ace75402a..4816d8b2a0a 100644 --- a/packages/volto/locales/mi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/mi/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Pēhia te Āputa hei tāpiri taonga. Pēhia te Muku, te Backspace rānei hei tango." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/mk/LC_MESSAGES/volto.po b/packages/volto/locales/mk/LC_MESSAGES/volto.po index 3a30e89d3d8..a80fedad83e 100644 --- a/packages/volto/locales/mk/LC_MESSAGES/volto.po +++ b/packages/volto/locales/mk/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Притиснете Интервал за додавање ставки. Притиснете Избриши или Backspace за отстранување." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/my/LC_MESSAGES/volto.po b/packages/volto/locales/my/LC_MESSAGES/volto.po index 8da03d5e9e6..9a3c2ab83b4 100644 --- a/packages/volto/locales/my/LC_MESSAGES/volto.po +++ b/packages/volto/locales/my/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "အရာများထည့်ရန် Space နှိပ်ပါ။ ဖျက်ရန် ဖျက် သို့မဟုတ် Backspace နှိပ်ပါ။" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po b/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po index ce0f9f73205..49c794e3038 100644 --- a/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Trykk Mellomrom for å legge til elementer. Trykk Slett eller Tilbaketast for å fjerne." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/nl/LC_MESSAGES/volto.po b/packages/volto/locales/nl/LC_MESSAGES/volto.po index 53c612183ac..5b664a3e440 100644 --- a/packages/volto/locales/nl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nl/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "Voorkeuren" msgid "Press Enter to browse files from your computer." msgstr "Druk Enter om door de bestanden op jouw computer te browsen." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Druk op Spatie om items toe te voegen. Druk op Verwijder of Backspace om te verwijderen." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/nn/LC_MESSAGES/volto.po b/packages/volto/locales/nn/LC_MESSAGES/volto.po index 4f979a678d6..5fdc23a7a6e 100644 --- a/packages/volto/locales/nn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nn/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Trykk Mellomrom for å leggje til element. Trykk Slett eller Backspace for å fjerne." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/pl/LC_MESSAGES/volto.po b/packages/volto/locales/pl/LC_MESSAGES/volto.po index 35d6dff66c1..eb074cdf222 100644 --- a/packages/volto/locales/pl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pl/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Naciśnij Spacja, aby dodać elementy. Naciśnij Usuń lub Backspace, aby usunąć." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/pt/LC_MESSAGES/volto.po b/packages/volto/locales/pt/LC_MESSAGES/volto.po index 176813ce3e2..723510f0710 100644 --- a/packages/volto/locales/pt/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pt/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "Preferências" msgid "Press Enter to browse files from your computer." msgstr "Prima Enter para procurar ficheiros no seu computador." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Prima Espaço para adicionar itens. Prima Eliminar ou Backspace para remover." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po b/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po index 3742655f5db..d203504d291 100644 --- a/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "Preferências" msgid "Press Enter to browse files from your computer." msgstr "Pressione Enter para procurar arquivos no seu computador." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Pressione Espaço para adicionar itens. Pressione Excluir ou Backspace para remover." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/rm/LC_MESSAGES/volto.po b/packages/volto/locales/rm/LC_MESSAGES/volto.po index 56ea8035abf..90aaf05385a 100644 --- a/packages/volto/locales/rm/LC_MESSAGES/volto.po +++ b/packages/volto/locales/rm/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Premair Spazi per agiuntar elements. Premair Stritgar u Backspace per allontanar." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/ro/LC_MESSAGES/volto.po b/packages/volto/locales/ro/LC_MESSAGES/volto.po index ee10f5e4ec2..c0a3f97f65f 100644 --- a/packages/volto/locales/ro/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ro/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "Preferințe" msgid "Press Enter to browse files from your computer." msgstr "Apasă Enter pentru a răsfoi fișierele de pe calculatorul tău." +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Apăsați Spațiu pentru a adăuga elemente. Apăsați Șterge sau Backspace pentru a elimina." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/ru/LC_MESSAGES/volto.po b/packages/volto/locales/ru/LC_MESSAGES/volto.po index fbb7fc9849a..6bc596ca931 100644 --- a/packages/volto/locales/ru/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ru/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "Настройки" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Нажмите Пробел для добавления элементов. Нажмите Удалить или Backspace для удаления." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/sk/LC_MESSAGES/volto.po b/packages/volto/locales/sk/LC_MESSAGES/volto.po index 103bfa6d6f4..2badf385c7d 100644 --- a/packages/volto/locales/sk/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sk/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Stlačením Medzera pridáte položky. Stlačením Odstrániť alebo Backspace ich odstránite." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/sl/LC_MESSAGES/volto.po b/packages/volto/locales/sl/LC_MESSAGES/volto.po index 0233332ead8..f698d09b86a 100644 --- a/packages/volto/locales/sl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sl/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Pritisnite Preslednica za dodajanje elementov. Pritisnite Izbriši ali Backspace za odstranitev." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/sm/LC_MESSAGES/volto.po b/packages/volto/locales/sm/LC_MESSAGES/volto.po index 3c8b9a0572b..280a7a938b3 100644 --- a/packages/volto/locales/sm/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sm/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Tui le Space e faaopoopo ai mea. Tui le Tape pe Backspace e aveese ai." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/sq/LC_MESSAGES/volto.po b/packages/volto/locales/sq/LC_MESSAGES/volto.po index 0922cbe1f26..b9a1ac4c519 100644 --- a/packages/volto/locales/sq/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sq/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Shtypni Hapësirë për të shtuar artikuj. Shtypni Fshi ose Backspace për të hequr." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/sr/LC_MESSAGES/volto.po b/packages/volto/locales/sr/LC_MESSAGES/volto.po index 671a3136d25..3afde4b5844 100644 --- a/packages/volto/locales/sr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sr/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Pritisnite Razmak za dodavanje stavki. Pritisnite Izbriši ili Backspace za uklanjanje." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po b/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po index 9fe5f012f9c..d75add4e17f 100644 --- a/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Притисните Размак за додавање ставки. Притисните Избриши или Backspace за уклањање." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po b/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po index 8ff3e1f6671..c24510455d9 100644 --- a/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Pritisnite Razmak za dodavanje stavki. Pritisnite Izbriši ili Backspace za uklanjanje." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/sv/LC_MESSAGES/volto.po b/packages/volto/locales/sv/LC_MESSAGES/volto.po index 53aef75a20e..1efcac311de 100644 --- a/packages/volto/locales/sv/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sv/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Tryck Mellanslag för att lägga till objekt. Tryck Ta bort eller Backsteg för att ta bort." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/ta/LC_MESSAGES/volto.po b/packages/volto/locales/ta/LC_MESSAGES/volto.po index 4728843a51e..d69bb121c43 100644 --- a/packages/volto/locales/ta/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ta/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "விருப்பத்தேர்வுகள்" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "உருப்படிகளை சேர்க்க இடைவெளி அழுத்தவும். நீக்க நீக்கு அல்லது Backspace அழுத்தவும்." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/te/LC_MESSAGES/volto.po b/packages/volto/locales/te/LC_MESSAGES/volto.po index 62f59a4fa07..3d5f163cbb9 100644 --- a/packages/volto/locales/te/LC_MESSAGES/volto.po +++ b/packages/volto/locales/te/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "అంశాలు జోడించడానికి స్పేస్ నొక్కండి. తీసివేయడానికి తొలగించు లేదా Backspace నొక్కండి." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/th/LC_MESSAGES/volto.po b/packages/volto/locales/th/LC_MESSAGES/volto.po index 3fff9c18b9f..0b34960211b 100644 --- a/packages/volto/locales/th/LC_MESSAGES/volto.po +++ b/packages/volto/locales/th/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "กด เว้นวรรค เพื่อเพิ่มรายการ กด ลบ หรือ Backspace เพื่อลบ" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/to/LC_MESSAGES/volto.po b/packages/volto/locales/to/LC_MESSAGES/volto.po index cfaee7cc13c..3a787f3dc84 100644 --- a/packages/volto/locales/to/LC_MESSAGES/volto.po +++ b/packages/volto/locales/to/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Hoko ha Space ke fakaʻaongaʻi ha ngaahi meʻa. Hoko ha Fakaʻauha pe Backspace ke toʻo." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/tr/LC_MESSAGES/volto.po b/packages/volto/locales/tr/LC_MESSAGES/volto.po index 4da2cf1f908..8d90f4159be 100644 --- a/packages/volto/locales/tr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/tr/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Öğe eklemek için Boşluk tuşuna basın. Kaldırmak için Sil veya Geri Al tuşuna basın." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/uk/LC_MESSAGES/volto.po b/packages/volto/locales/uk/LC_MESSAGES/volto.po index c9ceb1466ba..57b6570f92a 100644 --- a/packages/volto/locales/uk/LC_MESSAGES/volto.po +++ b/packages/volto/locales/uk/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Натисніть Пробіл, щоб додати елементи. Натисніть Видалити або Backspace, щоб видалити." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/vi/LC_MESSAGES/volto.po b/packages/volto/locales/vi/LC_MESSAGES/volto.po index c1edb1cef57..76e8c357707 100644 --- a/packages/volto/locales/vi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/vi/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "Nhấn Dấu cách để thêm mục. Nhấn Xóa hoặc Xóa lùi để xóa." + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/volto.pot b/packages/volto/locales/volto.pot index 833e7499e45..cc4d5ca5dd2 100644 --- a/packages/volto/locales/volto.pot +++ b/packages/volto/locales/volto.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Plone\n" -"POT-Creation-Date: 2026-05-07T07:25:19.397Z\n" +"POT-Creation-Date: 2026-06-04T13:47:29.062Z\n" "Last-Translator: Plone i18n \n" "Language-Team: Plone i18n \n" "Content-Type: text/plain; charset=utf-8\n" @@ -2915,6 +2915,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po b/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po index cdd3fd6ade6..a0dc6251107 100644 --- a/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po @@ -2920,6 +2920,11 @@ msgstr "偏好" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "按空格键添加项目。按删除键或退格键删除。" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po b/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po index f4d885d6536..118fec65066 100644 --- a/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "按空白鍵新增項目。按刪除鍵或退格鍵移除。" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" diff --git a/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po b/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po index f50f18023bf..5d572dc76ac 100644 --- a/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po @@ -2919,6 +2919,11 @@ msgstr "" msgid "Press Enter to browse files from your computer." msgstr "" +#. Default: "Press Space to add items. Press Delete or Backspace to remove." +#: components/manage/Widgets/SelectStyling +msgid "Press Space to add items. Press Delete or Backspace to remove." +msgstr "按空白鍵新增項目。按刪除鍵或退格鍵移除。" + #. Default: "Prettify your code" #: components/manage/Blocks/HTML/Edit msgid "Prettify your code" From 6267dd7530b3898bc55818083d250c8cd0e4fc23 Mon Sep 17 00:00:00 2001 From: Wagner Trezub Date: Thu, 4 Jun 2026 16:43:01 +0200 Subject: [PATCH 4/7] chore: update snapshots --- .../manage/Widgets/__snapshots__/ArrayWidget.test.jsx.snap | 2 +- .../manage/Widgets/__snapshots__/SelectWidget.test.jsx.snap | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/volto/src/components/manage/Widgets/__snapshots__/ArrayWidget.test.jsx.snap b/packages/volto/src/components/manage/Widgets/__snapshots__/ArrayWidget.test.jsx.snap index 36c0d472983..a867dd18251 100644 --- a/packages/volto/src/components/manage/Widgets/__snapshots__/ArrayWidget.test.jsx.snap +++ b/packages/volto/src/components/manage/Widgets/__snapshots__/ArrayWidget.test.jsx.snap @@ -44,7 +44,7 @@ exports[`No 'No value' option when default value is 0 1`] = ` - option 0 focused, 1 of 2. 2 results available. Use Up and Down to choose options, press Enter to select the currently focused option, press Escape to exit the menu, press Tab to select the option and exit the menu. + 2 results available. Use Up and Down to choose options, press Enter to select the currently focused option, press Escape to exit the menu, press Tab to select the option and exit the menu.
- option 0 focused, 1 of 2. 2 results available. Use Up and Down to choose options, press Enter to select the currently focused option, press Escape to exit the menu, press Tab to select the option and exit the menu. + 2 results available. Use Up and Down to choose options, press Enter to select the currently focused option, press Escape to exit the menu, press Tab to select the option and exit the menu.
Date: Fri, 5 Jun 2026 12:08:57 +0200 Subject: [PATCH 5/7] fix(a11y): make ariaLiveMessages translatable and use APG key name convention --- .../volto/locales/af/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/ar/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/bg/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/bn/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/ca/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/cs/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/cy/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/da/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/de/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/el/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/en/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/en_AU/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/en_GB/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/eo/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/es/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/et/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/eu/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/fa/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/fi/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/fr/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/fu/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/gl/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/he/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/hi/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/hr/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/hu/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/hy/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/id/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/it/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/ja/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/ka/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/kn/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/ko/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/lt/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/lv/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/mi/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/mk/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/my/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/nb_NO/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/nl/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/nn/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/pl/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/pt/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/pt_BR/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/rm/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/ro/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/ru/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/sk/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/sl/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/sm/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/sq/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/sr/LC_MESSAGES/volto.po | 18 +++++++++++ .../locales/sr@cyrl/LC_MESSAGES/volto.po | 18 +++++++++++ .../locales/sr@latn/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/sv/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/ta/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/te/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/th/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/to/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/tr/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/uk/LC_MESSAGES/volto.po | 18 +++++++++++ .../volto/locales/vi/LC_MESSAGES/volto.po | 18 +++++++++++ packages/volto/locales/volto.pot | 20 +++++++++++- .../volto/locales/zh_CN/LC_MESSAGES/volto.po | 18 +++++++++++ .../locales/zh_Hant/LC_MESSAGES/volto.po | 18 +++++++++++ .../locales/zh_Hant_HK/LC_MESSAGES/volto.po | 18 +++++++++++ .../components/manage/Widgets/ArrayWidget.jsx | 31 ++++++++++++++++++- .../manage/Widgets/SelectWidget.jsx | 26 +++++++++++++++- 68 files changed, 1244 insertions(+), 3 deletions(-) diff --git a/packages/volto/locales/af/LC_MESSAGES/volto.po b/packages/volto/locales/af/LC_MESSAGES/volto.po index 65254a430cb..c46c3e23663 100644 --- a/packages/volto/locales/af/LC_MESSAGES/volto.po +++ b/packages/volto/locales/af/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Druk Pyl-af om die kieslys oop te maak." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} is gefokus." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Tik om die lys te verfyn." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/ar/LC_MESSAGES/volto.po b/packages/volto/locales/ar/LC_MESSAGES/volto.po index 106c05e12a9..dbf643690b7 100644 --- a/packages/volto/locales/ar/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ar/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "اضغط السهم لأسفل لفتح القائمة." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} في التركيز." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "اكتب لتضييق القائمة." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/bg/LC_MESSAGES/volto.po b/packages/volto/locales/bg/LC_MESSAGES/volto.po index 9b144f3bddb..08135503846 100644 --- a/packages/volto/locales/bg/LC_MESSAGES/volto.po +++ b/packages/volto/locales/bg/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Натиснете стрелката надолу, за да отворите менюто." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} е фокусирано." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Въведете текст за филтриране." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/bn/LC_MESSAGES/volto.po b/packages/volto/locales/bn/LC_MESSAGES/volto.po index 8bc45cbc583..58f4454e577 100644 --- a/packages/volto/locales/bn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/bn/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "মেনু খুলতে নিচের তীর চাপুন।" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} ফোকাসে আছে।" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "তালিকা সংকুচিত করতে টাইপ করুন।" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/ca/LC_MESSAGES/volto.po b/packages/volto/locales/ca/LC_MESSAGES/volto.po index 3c271dd3898..8d66d088df8 100644 --- a/packages/volto/locales/ca/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ca/LC_MESSAGES/volto.po @@ -5117,6 +5117,12 @@ msgstr "Pendent" msgid "pickAnImage" msgstr "Tria una imatge existent" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Premeu Fletxa avall per obrir el menú." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5347,6 +5353,12 @@ msgstr "Selecciona" msgid "selectView" msgstr "Selecciona vista" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} té el focus." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5428,6 +5440,12 @@ msgstr "Taula de continguts" msgid "toggleFacet" msgstr "Commutador" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Escriviu per filtrar la llista." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/cs/LC_MESSAGES/volto.po b/packages/volto/locales/cs/LC_MESSAGES/volto.po index 53a46a04024..470e3b174e3 100644 --- a/packages/volto/locales/cs/LC_MESSAGES/volto.po +++ b/packages/volto/locales/cs/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Stiskněte šipku dolů pro otevření nabídky." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} má focus." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Pište pro upřesnění seznamu." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/cy/LC_MESSAGES/volto.po b/packages/volto/locales/cy/LC_MESSAGES/volto.po index 3c2e0cd8f80..637f35fe0a7 100644 --- a/packages/volto/locales/cy/LC_MESSAGES/volto.po +++ b/packages/volto/locales/cy/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Gwasgwch Saeth i Lawr i agor y ddewislen." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "Mae {label} wedi'i ffocysu." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Teipiwch i fireinio'r rhestr." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/da/LC_MESSAGES/volto.po b/packages/volto/locales/da/LC_MESSAGES/volto.po index 2d4ef84c804..339e5884b77 100644 --- a/packages/volto/locales/da/LC_MESSAGES/volto.po +++ b/packages/volto/locales/da/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Tryk på Pil ned for at åbne menuen." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} er i fokus." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Skriv for at filtrere listen." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/de/LC_MESSAGES/volto.po b/packages/volto/locales/de/LC_MESSAGES/volto.po index a1c5ce39487..ad7360b1dfe 100644 --- a/packages/volto/locales/de/LC_MESSAGES/volto.po +++ b/packages/volto/locales/de/LC_MESSAGES/volto.po @@ -5117,6 +5117,12 @@ msgstr "Ausstehend" msgid "pickAnImage" msgstr "Wählen Sie ein vorhandenes Bild" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Drücken Sie Pfeil nach unten, um das Menü zu öffnen." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5347,6 +5353,12 @@ msgstr "Auswählen" msgid "selectView" msgstr "Ansicht wählen" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} ist ausgewählt." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5428,6 +5440,12 @@ msgstr "Inhaltsverzeichnis" msgid "toggleFacet" msgstr "Toggle" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Tippen Sie, um die Liste einzugrenzen." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/el/LC_MESSAGES/volto.po b/packages/volto/locales/el/LC_MESSAGES/volto.po index addf6259dca..c943255490b 100644 --- a/packages/volto/locales/el/LC_MESSAGES/volto.po +++ b/packages/volto/locales/el/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Πατήστε Κάτω βέλος για να ανοίξετε το μενού." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "Το {label} έχει εστίαση." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Πληκτρολογήστε για φιλτράρισμα." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/en/LC_MESSAGES/volto.po b/packages/volto/locales/en/LC_MESSAGES/volto.po index 05102898864..7b0890c191c 100644 --- a/packages/volto/locales/en/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en/LC_MESSAGES/volto.po @@ -5115,6 +5115,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Press Down Arrow to open the menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5345,6 +5351,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} is focused." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5426,6 +5438,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Type to refine list." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/en_AU/LC_MESSAGES/volto.po b/packages/volto/locales/en_AU/LC_MESSAGES/volto.po index 65e91b4158f..bb2c7aafa18 100644 --- a/packages/volto/locales/en_AU/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en_AU/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Press Down Arrow to open the menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} is focused." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Type to refine list." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/en_GB/LC_MESSAGES/volto.po b/packages/volto/locales/en_GB/LC_MESSAGES/volto.po index febf5c2a04a..778a2a2add9 100644 --- a/packages/volto/locales/en_GB/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en_GB/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Press Down Arrow to open the menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} is focused." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Type to refine list." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/eo/LC_MESSAGES/volto.po b/packages/volto/locales/eo/LC_MESSAGES/volto.po index fa3ba4f757a..2c7045abf4b 100644 --- a/packages/volto/locales/eo/LC_MESSAGES/volto.po +++ b/packages/volto/locales/eo/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Premu Sago-malsupren por malfermi la menuon." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} estas fokusita." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Tajpu por filtri la liston." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/es/LC_MESSAGES/volto.po b/packages/volto/locales/es/LC_MESSAGES/volto.po index ca4d226b763..c59e96c7f75 100644 --- a/packages/volto/locales/es/LC_MESSAGES/volto.po +++ b/packages/volto/locales/es/LC_MESSAGES/volto.po @@ -5117,6 +5117,12 @@ msgstr "Pendiente" msgid "pickAnImage" msgstr "Elija una imagen existente" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Pulse Flecha abajo para abrir el menú." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5347,6 +5353,12 @@ msgstr "Menú de selección" msgid "selectView" msgstr "Seleccione Vista" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} está enfocado." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5428,6 +5440,12 @@ msgstr "Tabla de contenidos" msgid "toggleFacet" msgstr "Activar/Desactivar" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Escriba para filtrar la lista." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/et/LC_MESSAGES/volto.po b/packages/volto/locales/et/LC_MESSAGES/volto.po index f931808dbf3..f614f6ade07 100644 --- a/packages/volto/locales/et/LC_MESSAGES/volto.po +++ b/packages/volto/locales/et/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Allanool-klahv avab menüü." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} on fookuses." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Loendi filtreerimiseks kirjutage." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/eu/LC_MESSAGES/volto.po b/packages/volto/locales/eu/LC_MESSAGES/volto.po index cc92b248201..732667bdd1b 100644 --- a/packages/volto/locales/eu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/eu/LC_MESSAGES/volto.po @@ -5117,6 +5117,12 @@ msgstr "Zain" msgid "pickAnImage" msgstr "Aukeratu existitzen den irudi bat" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Sakatu Behera gezia menua irekitzeko." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5347,6 +5353,12 @@ msgstr "Aukeraketa laukia" msgid "selectView" msgstr "Aukeratu bista" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} fokusatuta dago." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5428,6 +5440,12 @@ msgstr "Edukien taula" msgid "toggleFacet" msgstr "Aktibatu/Desaktibatu" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Idatzi zerrenda iragazteko." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/fa/LC_MESSAGES/volto.po b/packages/volto/locales/fa/LC_MESSAGES/volto.po index a17d67cfcdb..79e8a7e5cde 100644 --- a/packages/volto/locales/fa/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fa/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "برای باز کردن منو فلش پایین را فشار دهید." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} در فوکوس است." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "برای فیلتر کردن فهرست تایپ کنید." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/fi/LC_MESSAGES/volto.po b/packages/volto/locales/fi/LC_MESSAGES/volto.po index 5fd27751425..636232417a4 100644 --- a/packages/volto/locales/fi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fi/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "odottaa" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Avaa valikko painamalla Alas-nuolta." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "Valitse" msgid "selectView" msgstr "Valitse näkymä" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} on valittuna." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "sisällys" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Kirjoita suodattaaksesi listaa." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/fr/LC_MESSAGES/volto.po b/packages/volto/locales/fr/LC_MESSAGES/volto.po index e7dc6e5cd54..af4ddd1b616 100644 --- a/packages/volto/locales/fr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fr/LC_MESSAGES/volto.po @@ -5117,6 +5117,12 @@ msgstr "En attente" msgid "pickAnImage" msgstr "Choisissez une image existante" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Appuyez sur Flèche bas pour ouvrir le menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5347,6 +5353,12 @@ msgstr "List de sélection" msgid "selectView" msgstr "Sélectionner une vue" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} est sélectionné." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5428,6 +5440,12 @@ msgstr "toc" msgid "toggleFacet" msgstr "Activer/désactiver" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Tapez pour affiner la liste." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/fu/LC_MESSAGES/volto.po b/packages/volto/locales/fu/LC_MESSAGES/volto.po index 6a4e827dee1..ba426416f6f 100644 --- a/packages/volto/locales/fu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fu/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Press Down Arrow to open the menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} is focused." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Type to refine list." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/gl/LC_MESSAGES/volto.po b/packages/volto/locales/gl/LC_MESSAGES/volto.po index e40e26aa56e..778b369d34f 100644 --- a/packages/volto/locales/gl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/gl/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "Pendente" msgid "pickAnImage" msgstr "Escolla unha imaxe existente" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Prema Frecha abaixo para abrir o menú." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "Seleccionar" msgid "selectView" msgstr "Selecciona vista" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} está enfocado." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "Táboa de Contido" msgid "toggleFacet" msgstr "Alternar" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Escriba para filtrar a lista." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/he/LC_MESSAGES/volto.po b/packages/volto/locales/he/LC_MESSAGES/volto.po index ec24f62c4d9..411d17ba8db 100644 --- a/packages/volto/locales/he/LC_MESSAGES/volto.po +++ b/packages/volto/locales/he/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "לחץ חץ למטה לפתיחת התפריט." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} במוקד." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "הקלד לסינון הרשימה." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/hi/LC_MESSAGES/volto.po b/packages/volto/locales/hi/LC_MESSAGES/volto.po index bdcbe2e3fe5..75059f274d4 100644 --- a/packages/volto/locales/hi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hi/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "अपूर्ण" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "मेनू खोलने के लिए नीचे तीर दबाएं।" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "चयन करें" msgid "selectView" msgstr "दृश्य चुनें" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} फोकस में है।" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "कंटेंट की तालिका" msgid "toggleFacet" msgstr "टॉगल" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "सूची को फ़िल्टर करने के लिए टाइप करें।" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/hr/LC_MESSAGES/volto.po b/packages/volto/locales/hr/LC_MESSAGES/volto.po index 9939ae8687b..9def72c1f24 100644 --- a/packages/volto/locales/hr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hr/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Pritisnite strelicu prema dolje za otvaranje izbornika." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} je u fokusu." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Upišite za filtriranje popisa." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/hu/LC_MESSAGES/volto.po b/packages/volto/locales/hu/LC_MESSAGES/volto.po index b509789d498..2661a497d40 100644 --- a/packages/volto/locales/hu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hu/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Nyomja meg a Le nyilat a menü megnyitásához." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "A(z) {label} fókuszban van." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Írjon a lista szűréséhez." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/hy/LC_MESSAGES/volto.po b/packages/volto/locales/hy/LC_MESSAGES/volto.po index 73dee483db6..d3374f9f92f 100644 --- a/packages/volto/locales/hy/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hy/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Ցանկը բացելու համար սեղմեք Ներքև սլաք։" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label}-ը ֆոկուսում է։" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Մուտքագրեք ցանկը ֆիլտրելու համար։" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/id/LC_MESSAGES/volto.po b/packages/volto/locales/id/LC_MESSAGES/volto.po index da7db355c50..95f37ac824a 100644 --- a/packages/volto/locales/id/LC_MESSAGES/volto.po +++ b/packages/volto/locales/id/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Tekan Panah Bawah untuk membuka menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} sedang difokuskan." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Ketik untuk menyaring daftar." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/it/LC_MESSAGES/volto.po b/packages/volto/locales/it/LC_MESSAGES/volto.po index 0b64d75879e..c538382a405 100644 --- a/packages/volto/locales/it/LC_MESSAGES/volto.po +++ b/packages/volto/locales/it/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "In attesa" msgid "pickAnImage" msgstr "Seleziona un'immagine esistente" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Premi Freccia giù per aprire il menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "Seleziona" msgid "selectView" msgstr "Seleziona la vista" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} è selezionato." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "Indice dei contenuti" msgid "toggleFacet" msgstr "Toggle" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Digita per filtrare la lista." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/ja/LC_MESSAGES/volto.po b/packages/volto/locales/ja/LC_MESSAGES/volto.po index 3cb4aaad300..fd36fc7eff7 100644 --- a/packages/volto/locales/ja/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ja/LC_MESSAGES/volto.po @@ -5117,6 +5117,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "メニューを開くには下矢印キーを押してください。" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5347,6 +5353,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} がフォーカスされています。" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5428,6 +5440,12 @@ msgstr "目次" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "リストを絞り込むために入力してください。" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/ka/LC_MESSAGES/volto.po b/packages/volto/locales/ka/LC_MESSAGES/volto.po index d7b85a6277d..f77fc1d8575 100644 --- a/packages/volto/locales/ka/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ka/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "მენიუს გასახსნელად დააჭირეთ ქვემოთ ისარს." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} ფოკუსშია." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "სიის გასაფილტრად აკრიფეთ." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/kn/LC_MESSAGES/volto.po b/packages/volto/locales/kn/LC_MESSAGES/volto.po index b96e8c82ec6..4a348f64a4a 100644 --- a/packages/volto/locales/kn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/kn/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "ಮೆನು ತೆರೆಯಲು ಕೆಳ ಬಾಣ ಒತ್ತಿರಿ." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} ಫೋಕಸ್‌ನಲ್ಲಿದೆ." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "ಪಟ್ಟಿಯನ್ನು ಫಿಲ್ಟರ್ ಮಾಡಲು ಟೈಪ್ ಮಾಡಿ." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/ko/LC_MESSAGES/volto.po b/packages/volto/locales/ko/LC_MESSAGES/volto.po index 2be683cfa09..30d9a3bf26b 100644 --- a/packages/volto/locales/ko/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ko/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "메뉴를 열려면 아래쪽 화살표를 누르세요." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label}이(가) 포커스되었습니다." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "목록을 필터링하려면 입력하세요." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/lt/LC_MESSAGES/volto.po b/packages/volto/locales/lt/LC_MESSAGES/volto.po index 0058a181db9..e6fa36f0776 100644 --- a/packages/volto/locales/lt/LC_MESSAGES/volto.po +++ b/packages/volto/locales/lt/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Spauskite žemyn rodyklę, kad atidarytumėte meniu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} yra sufokusuotas." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Rašykite, kad filtruotumėte sąrašą." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/lv/LC_MESSAGES/volto.po b/packages/volto/locales/lv/LC_MESSAGES/volto.po index 90adfb70691..a0dcd6bbd7c 100644 --- a/packages/volto/locales/lv/LC_MESSAGES/volto.po +++ b/packages/volto/locales/lv/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Nospiediet lejupvērsto bultiņu, lai atvērtu izvēlni." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} ir fokusēts." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Rakstiet, lai filtrētu sarakstu." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/mi/LC_MESSAGES/volto.po b/packages/volto/locales/mi/LC_MESSAGES/volto.po index 4816d8b2a0a..fb90c706cdd 100644 --- a/packages/volto/locales/mi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/mi/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Pēhia te Pere Raro hei tuwhera i te tahua." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "Kei te arotahi {label}." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Patohia he kupu hei tōpūtanga i te rārangi." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/mk/LC_MESSAGES/volto.po b/packages/volto/locales/mk/LC_MESSAGES/volto.po index a80fedad83e..2e7dde54193 100644 --- a/packages/volto/locales/mk/LC_MESSAGES/volto.po +++ b/packages/volto/locales/mk/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Притиснете стрелка надолу за отворање на менито." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} е фокусирано." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Внесете текст за филтрирање." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/my/LC_MESSAGES/volto.po b/packages/volto/locales/my/LC_MESSAGES/volto.po index 9a3c2ab83b4..3b61f45378a 100644 --- a/packages/volto/locales/my/LC_MESSAGES/volto.po +++ b/packages/volto/locales/my/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "မီနူးဖွင့်ရန် အောက်မြှားကို နှိပ်ပါ။" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} ကို ဖောကပ်ထားသည်။" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "စာရင်းကို စစ်ထုတ်ရန် ရိုက်ထည့်ပါ။" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po b/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po index 49c794e3038..a90a4c2566d 100644 --- a/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Trykk Pil ned for å åpne menyen." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} er i fokus." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Skriv for å filtrere listen." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/nl/LC_MESSAGES/volto.po b/packages/volto/locales/nl/LC_MESSAGES/volto.po index 5b664a3e440..fe1964e1b1b 100644 --- a/packages/volto/locales/nl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nl/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "Wachten" msgid "pickAnImage" msgstr "Kies een bestaande afbeelding" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Druk op Pijl omlaag om het menu te openen." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "Selecteer" msgid "selectView" msgstr "Selecteer weergave" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} heeft de focus." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "Inhoudstafel" msgid "toggleFacet" msgstr "Schakelen" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Typ om de lijst te verfijnen." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/nn/LC_MESSAGES/volto.po b/packages/volto/locales/nn/LC_MESSAGES/volto.po index 5fdc23a7a6e..3c88977a671 100644 --- a/packages/volto/locales/nn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nn/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Trykk Pil ned for å opne menyen." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} er i fokus." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Skriv for å filtrere lista." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/pl/LC_MESSAGES/volto.po b/packages/volto/locales/pl/LC_MESSAGES/volto.po index eb074cdf222..d7d962d304d 100644 --- a/packages/volto/locales/pl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pl/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Naciśnij strzałkę w dół, aby otworzyć menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} jest zaznaczone." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Wpisz, aby zawęzić listę." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/pt/LC_MESSAGES/volto.po b/packages/volto/locales/pt/LC_MESSAGES/volto.po index 723510f0710..65a8bfbc51b 100644 --- a/packages/volto/locales/pt/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pt/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "Pendente" msgid "pickAnImage" msgstr "Selecione uma imagem existente" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Prima Seta para baixo para abrir o menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "Seleção" msgid "selectView" msgstr "Escolha a visão" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} está em foco." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "Alternar" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Escreva para filtrar a lista." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po b/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po index d203504d291..707ac755fd4 100644 --- a/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "Pendente" msgid "pickAnImage" msgstr "Selecione uma imagem existente" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Pressione Seta para baixo para abrir o menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "Seleção" msgid "selectView" msgstr "Escolha a visão" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} está em foco." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "Tabela de conteúdos" msgid "toggleFacet" msgstr "Alternar" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Digite para filtrar a lista." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/rm/LC_MESSAGES/volto.po b/packages/volto/locales/rm/LC_MESSAGES/volto.po index 90aaf05385a..de30d96f301 100644 --- a/packages/volto/locales/rm/LC_MESSAGES/volto.po +++ b/packages/volto/locales/rm/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Premair Flètga avon per avrir il menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} è enfocà." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Scriva per filtrar la glista." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/ro/LC_MESSAGES/volto.po b/packages/volto/locales/ro/LC_MESSAGES/volto.po index c0a3f97f65f..be4d7047182 100644 --- a/packages/volto/locales/ro/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ro/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "în așteptare" msgid "pickAnImage" msgstr "Alegeți o imagine existentă" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Apăsați Săgeată jos pentru a deschide meniul." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "Alege" msgid "selectView" msgstr "Alege vizualizare" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} este focalizat." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "Cuprins" msgid "toggleFacet" msgstr "Alternează" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Tastați pentru a filtra lista." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/ru/LC_MESSAGES/volto.po b/packages/volto/locales/ru/LC_MESSAGES/volto.po index 6bc596ca931..1a16760d84b 100644 --- a/packages/volto/locales/ru/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ru/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "Ожидание" msgid "pickAnImage" msgstr "Выберите существующее изображение" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Нажмите стрелку вниз, чтобы открыть меню." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "Выбрать" msgid "selectView" msgstr "Выбрать вид" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} в фокусе." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "Оглавление" msgid "toggleFacet" msgstr "Переключатель" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Введите текст для фильтрации." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/sk/LC_MESSAGES/volto.po b/packages/volto/locales/sk/LC_MESSAGES/volto.po index 2badf385c7d..653b26a716b 100644 --- a/packages/volto/locales/sk/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sk/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Stlačte šípku nadol pre otvorenie ponuky." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} má fokus." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Píšte pre upresňovanie zoznamu." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/sl/LC_MESSAGES/volto.po b/packages/volto/locales/sl/LC_MESSAGES/volto.po index f698d09b86a..9c1a1aad2d0 100644 --- a/packages/volto/locales/sl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sl/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Pritisnite puščico navzdol za odprtje menija." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} je v fokusu." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Vnesite za filtriranje seznama." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/sm/LC_MESSAGES/volto.po b/packages/volto/locales/sm/LC_MESSAGES/volto.po index 280a7a938b3..937fedfd471 100644 --- a/packages/volto/locales/sm/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sm/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Tui le Fekau i Lalo e tatala ai le lisi." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} ua taulaʻi." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Tā atu e faʻavasega ai le lisi." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/sq/LC_MESSAGES/volto.po b/packages/volto/locales/sq/LC_MESSAGES/volto.po index b9a1ac4c519..5eb0f34a93d 100644 --- a/packages/volto/locales/sq/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sq/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Shtypni Shigjetën poshtë për të hapur menunë." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} është i fokusuar." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Shkruani për të filtruar listën." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/sr/LC_MESSAGES/volto.po b/packages/volto/locales/sr/LC_MESSAGES/volto.po index 3afde4b5844..b46be54ad0c 100644 --- a/packages/volto/locales/sr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sr/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Pritisnite strelicu nadole za otvaranje menija." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} je u fokusu." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Unesite tekst za filtriranje." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po b/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po index d75add4e17f..c1e8723277a 100644 --- a/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Притисните стрелицу надоле за отварање менија." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} је у фокусу." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Унесите текст за филтрирање." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po b/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po index c24510455d9..f915ed5f68a 100644 --- a/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Pritisnite strelicu nadole za otvaranje menija." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} je u fokusu." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Unesite tekst za filtriranje." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/sv/LC_MESSAGES/volto.po b/packages/volto/locales/sv/LC_MESSAGES/volto.po index 1efcac311de..9d345dee4da 100644 --- a/packages/volto/locales/sv/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sv/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Tryck på Pil ned för att öppna menyn." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} är i fokus." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Skriv för att filtrera listan." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/ta/LC_MESSAGES/volto.po b/packages/volto/locales/ta/LC_MESSAGES/volto.po index d69bb121c43..74d4265ed63 100644 --- a/packages/volto/locales/ta/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ta/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "நிலுவையில் உள்ளது" msgid "pickAnImage" msgstr "பிகானிமேச்" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "மெனுவை திறக்க கீழ் அம்புக்குறியை அழுத்தவும்." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "SelectFacet" msgid "selectView" msgstr "SelectView" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} கவனத்தில் உள்ளது." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "TOC" msgid "toggleFacet" msgstr "TOGGLEFACET" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "பட்டியலை வடிகட்ட தட்டச்சு செய்யுங்கள்." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/te/LC_MESSAGES/volto.po b/packages/volto/locales/te/LC_MESSAGES/volto.po index 3d5f163cbb9..0cb3dbb9a9e 100644 --- a/packages/volto/locales/te/LC_MESSAGES/volto.po +++ b/packages/volto/locales/te/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "మెనూను తెరవడానికి క్రింది బాణం నొక్కండి." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} ఫోకస్‌లో ఉంది." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "జాబితాను ఫిల్టర్ చేయడానికి టైప్ చేయండి." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/th/LC_MESSAGES/volto.po b/packages/volto/locales/th/LC_MESSAGES/volto.po index 0b34960211b..f6b41dea7a7 100644 --- a/packages/volto/locales/th/LC_MESSAGES/volto.po +++ b/packages/volto/locales/th/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "กดลูกศรลงเพื่อเปิดเมนู" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} อยู่ในโฟกัส" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "พิมพ์เพื่อกรองรายการ" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/to/LC_MESSAGES/volto.po b/packages/volto/locales/to/LC_MESSAGES/volto.po index 3a787f3dc84..e78a34222d0 100644 --- a/packages/volto/locales/to/LC_MESSAGES/volto.po +++ b/packages/volto/locales/to/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Hoko ha Ngahau hifo ke toʻo e lisi." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} ʻoku taumuʻa." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Tohi ke fakaʻofoʻofa'i e lisi." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/tr/LC_MESSAGES/volto.po b/packages/volto/locales/tr/LC_MESSAGES/volto.po index 8d90f4159be..4c7b9db5b6d 100644 --- a/packages/volto/locales/tr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/tr/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Menüyü açmak için Aşağı okuna basın." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} odakta." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Listeyi daraltmak için yazın." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/uk/LC_MESSAGES/volto.po b/packages/volto/locales/uk/LC_MESSAGES/volto.po index 57b6570f92a..d842d40b01f 100644 --- a/packages/volto/locales/uk/LC_MESSAGES/volto.po +++ b/packages/volto/locales/uk/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Натисніть стрілку вниз, щоб відкрити меню." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} у фокусі." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Введіть текст для фільтрування." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/vi/LC_MESSAGES/volto.po b/packages/volto/locales/vi/LC_MESSAGES/volto.po index 76e8c357707..c5d23c52945 100644 --- a/packages/volto/locales/vi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/vi/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "Nhấn Mũi tên xuống để mở menu." + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} đang được chọn." + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "Gõ để lọc danh sách." + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/volto.pot b/packages/volto/locales/volto.pot index cc4d5ca5dd2..c715ffd1c16 100644 --- a/packages/volto/locales/volto.pot +++ b/packages/volto/locales/volto.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Plone\n" -"POT-Creation-Date: 2026-06-04T13:47:29.062Z\n" +"POT-Creation-Date: 2026-06-05T10:06:44.342Z\n" "Last-Translator: Plone i18n \n" "Language-Team: Plone i18n \n" "Content-Type: text/plain; charset=utf-8\n" @@ -5112,6 +5112,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5342,6 +5348,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5423,6 +5435,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po b/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po index a0dc6251107..4a0c9a7fb5b 100644 --- a/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po @@ -5117,6 +5117,12 @@ msgstr "待审核" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "按向下箭头键打开菜单。" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5347,6 +5353,12 @@ msgstr "" msgid "selectView" msgstr "选择视图" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} 已获得焦点。" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5428,6 +5440,12 @@ msgstr "目录" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "输入以筛选列表。" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po b/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po index 118fec65066..c58f9351cad 100644 --- a/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "按向下箭頭鍵開啟選單。" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} 已取得焦點。" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "輸入以篩選清單。" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po b/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po index 5d572dc76ac..d598b4b9307 100644 --- a/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po @@ -5116,6 +5116,12 @@ msgstr "" msgid "pickAnImage" msgstr "" +#. Default: "Press Down Arrow to open the menu." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "press_down_to_open" +msgstr "按向下箭頭鍵開啟選單。" + #. Default: "Private" #: components/manage/Contents/ContentsItem msgid "private" @@ -5346,6 +5352,12 @@ msgstr "" msgid "selectView" msgstr "" +#. Default: "{label} is focused." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "select_is_focused" +msgstr "{label} 已取得焦點。" + #. Default: "Maximum size of the file in bytes" #: components/manage/Widgets/SchemaWidget msgid "size" @@ -5427,6 +5439,12 @@ msgstr "" msgid "toggleFacet" msgstr "" +#. Default: "Type to refine list." +#: components/manage/Widgets/ArrayWidget +#: components/manage/Widgets/SelectWidget +msgid "type_to_refine" +msgstr "輸入以篩選清單。" + #. Default: "Update from version {origin} to {destination}" #: components/manage/Controlpanels/AddonsControlpanel msgid "upgradeVersions" diff --git a/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx b/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx index 06f91361f0f..0a242bf436b 100644 --- a/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx +++ b/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx @@ -47,6 +47,18 @@ const messages = defineMessages({ id: 'No options', defaultMessage: 'No options', }, + select_is_focused: { + id: 'select_is_focused', + defaultMessage: '{label} is focused.', + }, + type_to_refine: { + id: 'type_to_refine', + defaultMessage: 'Type to refine list.', + }, + press_down_to_open: { + id: 'press_down_to_open', + defaultMessage: 'Press Down Arrow to open the menu.', + }, }); function arrayMove(array, from, to) { @@ -405,7 +417,24 @@ class ArrayWidget extends Component { ariaLiveMessages={{ onFocus: (props) => { if (props.context === 'input') { - return `${props['aria-label'] || 'Select'} is focused${props.isSearchable ? ', type to refine list' : ''}, press Down to open the menu.`; + return [ + this.props.intl.formatMessage( + messages.select_is_focused, + { + label: + props['aria-label'] || + this.props.intl.formatMessage(messages.select), + }, + ), + props.isSearchable + ? this.props.intl.formatMessage(messages.type_to_refine) + : '', + this.props.intl.formatMessage( + messages.press_down_to_open, + ), + ] + .filter(Boolean) + .join(' '); } return ''; }, diff --git a/packages/volto/src/components/manage/Widgets/SelectWidget.jsx b/packages/volto/src/components/manage/Widgets/SelectWidget.jsx index 3bcefb811c3..9927c5c875f 100644 --- a/packages/volto/src/components/manage/Widgets/SelectWidget.jsx +++ b/packages/volto/src/components/manage/Widgets/SelectWidget.jsx @@ -79,6 +79,18 @@ const messages = defineMessages({ id: 'No options', defaultMessage: 'No options', }, + select_is_focused: { + id: 'select_is_focused', + defaultMessage: '{label} is focused.', + }, + type_to_refine: { + id: 'type_to_refine', + defaultMessage: 'Type to refine list.', + }, + press_down_to_open: { + id: 'press_down_to_open', + defaultMessage: 'Press Down Arrow to open the menu.', + }, }); /** @@ -308,7 +320,19 @@ class SelectWidget extends Component { ariaLiveMessages={{ onFocus: (props) => { if (props.context === 'input') { - return `${props['aria-label'] || 'Select'} is focused${props.isSearchable ? ', type to refine list' : ''}, press Down to open the menu.`; + return [ + intl.formatMessage(messages.select_is_focused, { + label: + props['aria-label'] || + intl.formatMessage(messages.select), + }), + props.isSearchable + ? intl.formatMessage(messages.type_to_refine) + : '', + intl.formatMessage(messages.press_down_to_open), + ] + .filter(Boolean) + .join(' '); } return ''; }, From 74e60b8929d871e257dc530980b11ea22c4790a0 Mon Sep 17 00:00:00 2001 From: Wagner Trezub Date: Fri, 12 Jun 2026 10:18:53 +0200 Subject: [PATCH 6/7] chore: resolve merge conflicts in .po locale files --- packages/volto/locales/af/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/ar/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/bg/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/bn/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/ca/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/cs/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/cy/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/da/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/de/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/el/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/en/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/en_AU/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/en_GB/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/eo/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/es/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/et/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/eu/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/fa/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/fi/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/fr/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/fu/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/gl/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/he/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/hi/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/hr/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/hu/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/hy/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/id/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/it/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/ja/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/ka/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/kn/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/ko/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/lt/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/lv/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/mi/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/mk/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/my/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/nb_NO/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/nl/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/nn/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/pl/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/pt/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/pt_BR/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/rm/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/ro/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/ru/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/sk/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/sl/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/sm/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/sq/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/sr/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/sr@latn/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/sv/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/ta/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/te/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/th/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/to/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/tr/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/uk/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/vi/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/volto.pot | 7 +------ packages/volto/locales/zh_CN/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po | 5 ----- packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po | 5 ----- 66 files changed, 1 insertion(+), 331 deletions(-) diff --git a/packages/volto/locales/af/LC_MESSAGES/volto.po b/packages/volto/locales/af/LC_MESSAGES/volto.po index 43557f17224..6373ec5f990 100644 --- a/packages/volto/locales/af/LC_MESSAGES/volto.po +++ b/packages/volto/locales/af/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/ar/LC_MESSAGES/volto.po b/packages/volto/locales/ar/LC_MESSAGES/volto.po index 6a3865aae21..27e1c14a5c0 100644 --- a/packages/volto/locales/ar/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ar/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/bg/LC_MESSAGES/volto.po b/packages/volto/locales/bg/LC_MESSAGES/volto.po index b1e260f8a3f..f6a5da0aea0 100644 --- a/packages/volto/locales/bg/LC_MESSAGES/volto.po +++ b/packages/volto/locales/bg/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/bn/LC_MESSAGES/volto.po b/packages/volto/locales/bn/LC_MESSAGES/volto.po index a0411cff95f..9e80c80af26 100644 --- a/packages/volto/locales/bn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/bn/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/ca/LC_MESSAGES/volto.po b/packages/volto/locales/ca/LC_MESSAGES/volto.po index e999dd7577f..029be2e4653 100644 --- a/packages/volto/locales/ca/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ca/LC_MESSAGES/volto.po @@ -2929,11 +2929,6 @@ msgstr "Desenvolupat amb Plone i Python" msgid "Preferences" msgstr "Preferències" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Prem Enter per explorar els fitxers del teu ordinador." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/cs/LC_MESSAGES/volto.po b/packages/volto/locales/cs/LC_MESSAGES/volto.po index 3dd77f8e737..7432c54fb38 100644 --- a/packages/volto/locales/cs/LC_MESSAGES/volto.po +++ b/packages/volto/locales/cs/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/cy/LC_MESSAGES/volto.po b/packages/volto/locales/cy/LC_MESSAGES/volto.po index c7b28df6be0..769d857449c 100644 --- a/packages/volto/locales/cy/LC_MESSAGES/volto.po +++ b/packages/volto/locales/cy/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/da/LC_MESSAGES/volto.po b/packages/volto/locales/da/LC_MESSAGES/volto.po index 80f77f6ad25..f590bc8f7a3 100644 --- a/packages/volto/locales/da/LC_MESSAGES/volto.po +++ b/packages/volto/locales/da/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/de/LC_MESSAGES/volto.po b/packages/volto/locales/de/LC_MESSAGES/volto.po index 79e1b79b70d..8a3d91272d6 100644 --- a/packages/volto/locales/de/LC_MESSAGES/volto.po +++ b/packages/volto/locales/de/LC_MESSAGES/volto.po @@ -2929,11 +2929,6 @@ msgstr "Powered by Plone & Python" msgid "Preferences" msgstr "Einstellungen" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Drücken Sie die Eingabetaste, um Dateien auf Ihrem Computer zu durchsuche" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/el/LC_MESSAGES/volto.po b/packages/volto/locales/el/LC_MESSAGES/volto.po index 4dc13f02f6e..da55022e2d3 100644 --- a/packages/volto/locales/el/LC_MESSAGES/volto.po +++ b/packages/volto/locales/el/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/en/LC_MESSAGES/volto.po b/packages/volto/locales/en/LC_MESSAGES/volto.po index 318d82d462c..5ec570cd40f 100644 --- a/packages/volto/locales/en/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en/LC_MESSAGES/volto.po @@ -2927,11 +2927,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/en_AU/LC_MESSAGES/volto.po b/packages/volto/locales/en_AU/LC_MESSAGES/volto.po index 162fb8c9c8e..1b22a2586cd 100644 --- a/packages/volto/locales/en_AU/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en_AU/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/en_GB/LC_MESSAGES/volto.po b/packages/volto/locales/en_GB/LC_MESSAGES/volto.po index a265c5f517d..b4d2df02f8d 100644 --- a/packages/volto/locales/en_GB/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en_GB/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/eo/LC_MESSAGES/volto.po b/packages/volto/locales/eo/LC_MESSAGES/volto.po index 4716c5812bf..9049cd195cd 100644 --- a/packages/volto/locales/eo/LC_MESSAGES/volto.po +++ b/packages/volto/locales/eo/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/es/LC_MESSAGES/volto.po b/packages/volto/locales/es/LC_MESSAGES/volto.po index 9be20b65cf1..4c09e64227a 100644 --- a/packages/volto/locales/es/LC_MESSAGES/volto.po +++ b/packages/volto/locales/es/LC_MESSAGES/volto.po @@ -2929,11 +2929,6 @@ msgstr "Hecho con Plone & Python" msgid "Preferences" msgstr "Preferencias" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Presiona Enter para seleccionar archivos de tu ordenador." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/et/LC_MESSAGES/volto.po b/packages/volto/locales/et/LC_MESSAGES/volto.po index e61a9e1a373..f3bc7286f73 100644 --- a/packages/volto/locales/et/LC_MESSAGES/volto.po +++ b/packages/volto/locales/et/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/eu/LC_MESSAGES/volto.po b/packages/volto/locales/eu/LC_MESSAGES/volto.po index af6e7b62a78..cbe2e73e8fe 100644 --- a/packages/volto/locales/eu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/eu/LC_MESSAGES/volto.po @@ -2929,11 +2929,6 @@ msgstr "Plone eta Pythonekin eginda" msgid "Preferences" msgstr "Hobespenak" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Sakatu Enter zure ordenagailuko fitxategiak aukeratzeko." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/fa/LC_MESSAGES/volto.po b/packages/volto/locales/fa/LC_MESSAGES/volto.po index 4d3b68e03ef..70233d5f7e0 100644 --- a/packages/volto/locales/fa/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fa/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/fi/LC_MESSAGES/volto.po b/packages/volto/locales/fi/LC_MESSAGES/volto.po index 213f23f2df7..9c43b66b1db 100644 --- a/packages/volto/locales/fi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fi/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "Voimanlähteenä Plone & Python" msgid "Preferences" msgstr "Asetukset" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Paina Enter-näppäintä selataksesi tiedostoja tietokoneeltasi." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/fr/LC_MESSAGES/volto.po b/packages/volto/locales/fr/LC_MESSAGES/volto.po index 51801bc2a55..7376d2991b0 100644 --- a/packages/volto/locales/fr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fr/LC_MESSAGES/volto.po @@ -2929,11 +2929,6 @@ msgstr "Alimenté par Plone & Python" msgid "Preferences" msgstr "Préférences" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Appuyez sur Entrée pour parcourir les fichiers sur votre ordinateur." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/fu/LC_MESSAGES/volto.po b/packages/volto/locales/fu/LC_MESSAGES/volto.po index 4d3c976989d..608c2a9db4c 100644 --- a/packages/volto/locales/fu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fu/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/gl/LC_MESSAGES/volto.po b/packages/volto/locales/gl/LC_MESSAGES/volto.po index 74328d9c2e4..e6f4e81bce1 100644 --- a/packages/volto/locales/gl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/gl/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "Powered by Plone & Python" msgid "Preferences" msgstr "Preferencias" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Prema Intro para explorar os ficheiros do seu ordenador." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/he/LC_MESSAGES/volto.po b/packages/volto/locales/he/LC_MESSAGES/volto.po index c44b9ff6e86..62373f410bf 100644 --- a/packages/volto/locales/he/LC_MESSAGES/volto.po +++ b/packages/volto/locales/he/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/hi/LC_MESSAGES/volto.po b/packages/volto/locales/hi/LC_MESSAGES/volto.po index 601f7610902..7977a1cfd9b 100644 --- a/packages/volto/locales/hi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hi/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "प्लोन और पायथन द्वारा संचा msgid "Preferences" msgstr "पसंद" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/hr/LC_MESSAGES/volto.po b/packages/volto/locales/hr/LC_MESSAGES/volto.po index 2299f3f83b0..1d7213a6407 100644 --- a/packages/volto/locales/hr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hr/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/hu/LC_MESSAGES/volto.po b/packages/volto/locales/hu/LC_MESSAGES/volto.po index 3a5f395e01d..a7ac0511a37 100644 --- a/packages/volto/locales/hu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hu/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/hy/LC_MESSAGES/volto.po b/packages/volto/locales/hy/LC_MESSAGES/volto.po index d018c48c271..1374ad3a9ac 100644 --- a/packages/volto/locales/hy/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hy/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/id/LC_MESSAGES/volto.po b/packages/volto/locales/id/LC_MESSAGES/volto.po index 10ddec3d302..cc4fe6d130d 100644 --- a/packages/volto/locales/id/LC_MESSAGES/volto.po +++ b/packages/volto/locales/id/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/it/LC_MESSAGES/volto.po b/packages/volto/locales/it/LC_MESSAGES/volto.po index 06f6e07c000..ea2e7898128 100644 --- a/packages/volto/locales/it/LC_MESSAGES/volto.po +++ b/packages/volto/locales/it/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "Realizzato con Plone & Python" msgid "Preferences" msgstr "Preferenze" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Premi Invio per scegliere i file dal tuo computer." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/ja/LC_MESSAGES/volto.po b/packages/volto/locales/ja/LC_MESSAGES/volto.po index 692693aa063..0eb306cf97b 100644 --- a/packages/volto/locales/ja/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ja/LC_MESSAGES/volto.po @@ -2929,11 +2929,6 @@ msgstr "Powered by Plone & Python" msgid "Preferences" msgstr "個別設定" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/ka/LC_MESSAGES/volto.po b/packages/volto/locales/ka/LC_MESSAGES/volto.po index 06c3a34ad19..2dbbaae06b9 100644 --- a/packages/volto/locales/ka/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ka/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/kn/LC_MESSAGES/volto.po b/packages/volto/locales/kn/LC_MESSAGES/volto.po index 2e8fd8cbb9e..c98142c61c7 100644 --- a/packages/volto/locales/kn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/kn/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/ko/LC_MESSAGES/volto.po b/packages/volto/locales/ko/LC_MESSAGES/volto.po index be5dda8d44a..85e343763b3 100644 --- a/packages/volto/locales/ko/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ko/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/lt/LC_MESSAGES/volto.po b/packages/volto/locales/lt/LC_MESSAGES/volto.po index 011956014b0..2ecd7f0a5ea 100644 --- a/packages/volto/locales/lt/LC_MESSAGES/volto.po +++ b/packages/volto/locales/lt/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/lv/LC_MESSAGES/volto.po b/packages/volto/locales/lv/LC_MESSAGES/volto.po index f5856217fc6..5cf35a230ae 100644 --- a/packages/volto/locales/lv/LC_MESSAGES/volto.po +++ b/packages/volto/locales/lv/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/mi/LC_MESSAGES/volto.po b/packages/volto/locales/mi/LC_MESSAGES/volto.po index 34ff271535f..663517dd905 100644 --- a/packages/volto/locales/mi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/mi/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/mk/LC_MESSAGES/volto.po b/packages/volto/locales/mk/LC_MESSAGES/volto.po index 7d5d949200a..a82b1889121 100644 --- a/packages/volto/locales/mk/LC_MESSAGES/volto.po +++ b/packages/volto/locales/mk/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/my/LC_MESSAGES/volto.po b/packages/volto/locales/my/LC_MESSAGES/volto.po index c1652cdaae6..fcce7bffb3f 100644 --- a/packages/volto/locales/my/LC_MESSAGES/volto.po +++ b/packages/volto/locales/my/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po b/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po index 701da4fcd82..d1f70cc525d 100644 --- a/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nb_NO/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/nl/LC_MESSAGES/volto.po b/packages/volto/locales/nl/LC_MESSAGES/volto.po index 94c11b4e75c..66079d0834f 100644 --- a/packages/volto/locales/nl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nl/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "Powered by Plone & Python" msgid "Preferences" msgstr "Voorkeuren" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Druk Enter om door de bestanden op jouw computer te browsen." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/nn/LC_MESSAGES/volto.po b/packages/volto/locales/nn/LC_MESSAGES/volto.po index 868047de61a..a26655a1386 100644 --- a/packages/volto/locales/nn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nn/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/pl/LC_MESSAGES/volto.po b/packages/volto/locales/pl/LC_MESSAGES/volto.po index ed0200e8028..ac89b110de5 100644 --- a/packages/volto/locales/pl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pl/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/pt/LC_MESSAGES/volto.po b/packages/volto/locales/pt/LC_MESSAGES/volto.po index f4d1dddb283..b8d2ec3f6d8 100644 --- a/packages/volto/locales/pt/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pt/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "Criado com Plone e Python" msgid "Preferences" msgstr "Preferências" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Prima Enter para procurar ficheiros no seu computador." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po b/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po index 7cfc4e05a6a..50a3401f5f9 100644 --- a/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "Criado com Plone e Python" msgid "Preferences" msgstr "Preferências" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Pressione Enter para procurar arquivos no seu computador." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/rm/LC_MESSAGES/volto.po b/packages/volto/locales/rm/LC_MESSAGES/volto.po index 3642fcfa82d..c84af66558d 100644 --- a/packages/volto/locales/rm/LC_MESSAGES/volto.po +++ b/packages/volto/locales/rm/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/ro/LC_MESSAGES/volto.po b/packages/volto/locales/ro/LC_MESSAGES/volto.po index 694a0c575f9..cb7027259d9 100644 --- a/packages/volto/locales/ro/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ro/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "Powered by Plone & Python" msgid "Preferences" msgstr "Preferințe" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "Apasă Enter pentru a răsfoi fișierele de pe calculatorul tău." - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/ru/LC_MESSAGES/volto.po b/packages/volto/locales/ru/LC_MESSAGES/volto.po index f25b132e6ff..c1f2f6a4e9c 100644 --- a/packages/volto/locales/ru/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ru/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "Работает на Plone и Python" msgid "Preferences" msgstr "Настройки" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/sk/LC_MESSAGES/volto.po b/packages/volto/locales/sk/LC_MESSAGES/volto.po index 2546c427e72..00ec1731957 100644 --- a/packages/volto/locales/sk/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sk/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/sl/LC_MESSAGES/volto.po b/packages/volto/locales/sl/LC_MESSAGES/volto.po index a94b201d54e..28da90eb54f 100644 --- a/packages/volto/locales/sl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sl/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/sm/LC_MESSAGES/volto.po b/packages/volto/locales/sm/LC_MESSAGES/volto.po index eabc5ae7426..766aede3fef 100644 --- a/packages/volto/locales/sm/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sm/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/sq/LC_MESSAGES/volto.po b/packages/volto/locales/sq/LC_MESSAGES/volto.po index 2d52ad32142..fceb951f445 100644 --- a/packages/volto/locales/sq/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sq/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/sr/LC_MESSAGES/volto.po b/packages/volto/locales/sr/LC_MESSAGES/volto.po index d28cdfc88d0..87b85d54cac 100644 --- a/packages/volto/locales/sr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sr/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po b/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po index f12aaf2e34e..3eecc1b6b0c 100644 --- a/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sr@cyrl/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po b/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po index 9f1192a068e..22a209420bf 100644 --- a/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sr@latn/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/sv/LC_MESSAGES/volto.po b/packages/volto/locales/sv/LC_MESSAGES/volto.po index 63d6df7af85..4be884834b3 100644 --- a/packages/volto/locales/sv/LC_MESSAGES/volto.po +++ b/packages/volto/locales/sv/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/ta/LC_MESSAGES/volto.po b/packages/volto/locales/ta/LC_MESSAGES/volto.po index 3194d59ff6c..496a464b6b6 100644 --- a/packages/volto/locales/ta/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ta/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "ப்ளோன் & பைதான் மூலம் இயக்க msgid "Preferences" msgstr "விருப்பத்தேர்வுகள்" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/te/LC_MESSAGES/volto.po b/packages/volto/locales/te/LC_MESSAGES/volto.po index 3faad0d68f4..4eaa2ef5857 100644 --- a/packages/volto/locales/te/LC_MESSAGES/volto.po +++ b/packages/volto/locales/te/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/th/LC_MESSAGES/volto.po b/packages/volto/locales/th/LC_MESSAGES/volto.po index 358d5b672ec..ef6d70e99f5 100644 --- a/packages/volto/locales/th/LC_MESSAGES/volto.po +++ b/packages/volto/locales/th/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/to/LC_MESSAGES/volto.po b/packages/volto/locales/to/LC_MESSAGES/volto.po index 1dd7017a89e..0cf199a8928 100644 --- a/packages/volto/locales/to/LC_MESSAGES/volto.po +++ b/packages/volto/locales/to/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/tr/LC_MESSAGES/volto.po b/packages/volto/locales/tr/LC_MESSAGES/volto.po index 5c16d601278..92b6759cb39 100644 --- a/packages/volto/locales/tr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/tr/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/uk/LC_MESSAGES/volto.po b/packages/volto/locales/uk/LC_MESSAGES/volto.po index 0c757e4b98c..287bf7a316c 100644 --- a/packages/volto/locales/uk/LC_MESSAGES/volto.po +++ b/packages/volto/locales/uk/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/vi/LC_MESSAGES/volto.po b/packages/volto/locales/vi/LC_MESSAGES/volto.po index 50a53d40b19..a58de64d94d 100644 --- a/packages/volto/locales/vi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/vi/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/volto.pot b/packages/volto/locales/volto.pot index f09d6d9dc79..2e13ad4aa86 100644 --- a/packages/volto/locales/volto.pot +++ b/packages/volto/locales/volto.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Plone\n" -"POT-Creation-Date: 2026-06-05T10:06:44.342Z\n" +"POT-Creation-Date: 2026-06-12T08:17:41.867Z\n" "Last-Translator: Plone i18n \n" "Language-Team: Plone i18n \n" "Content-Type: text/plain; charset=utf-8\n" @@ -2924,11 +2924,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po b/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po index 1ec682a42bc..e11ad335c8b 100644 --- a/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po @@ -2929,11 +2929,6 @@ msgstr "" msgid "Preferences" msgstr "偏好" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po b/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po index e4433dc6a0d..6f4e1a6d0cf 100644 --- a/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_Hant/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." diff --git a/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po b/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po index 1ffaf119fcc..55402acb4bd 100644 --- a/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_Hant_HK/LC_MESSAGES/volto.po @@ -2928,11 +2928,6 @@ msgstr "" msgid "Preferences" msgstr "" -#. Default: "Press Enter to browse files from your computer." -#: components/manage/Widgets/FileWidget -msgid "Press Enter to browse files from your computer." -msgstr "" - #. Default: "Press Space to add items. Press Delete or Backspace to remove." #: components/manage/Widgets/SelectStyling msgid "Press Space to add items. Press Delete or Backspace to remove." From 37e1818b571351a94cf008e4233af6434f7aff24 Mon Sep 17 00:00:00 2001 From: Wagner Trezub Date: Tue, 14 Jul 2026 17:14:38 +0200 Subject: [PATCH 7/7] fix(a11y): use unique id and visually-hidden for select chip instructions --- .../src/components/manage/Widgets/SelectStyling.jsx | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/packages/volto/src/components/manage/Widgets/SelectStyling.jsx b/packages/volto/src/components/manage/Widgets/SelectStyling.jsx index e9665977828..857985c2cfa 100644 --- a/packages/volto/src/components/manage/Widgets/SelectStyling.jsx +++ b/packages/volto/src/components/manage/Widgets/SelectStyling.jsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useId } from 'react'; import { defineMessages, useIntl } from 'react-intl'; import { Popup } from 'semantic-ui-react'; import { injectLazyLibs } from '@plone/volto/helpers/Loadable/Loadable'; @@ -23,8 +23,6 @@ const messages = defineMessages({ }, }); -const CHIP_INSTRUCTIONS_ID = 'select-chip-instructions'; - export const MenuList = ({ children }) => { return {children}; }; @@ -51,6 +49,9 @@ export const SortableMultiValue = injectLazyLibs([ id: props.data.value, }); const intl = useIntl(); + // useId guarantees a unique id per chip instance, so the id is never + // duplicated when several widgets (or several chips) are on the same page. + const chipInstructionsId = useId(); return ( // eslint-disable-next-line jsx-a11y/no-static-element-interactions @@ -63,9 +64,11 @@ export const SortableMultiValue = injectLazyLibs([ {...attributes} {...listeners} aria-label={`${props.selectProps.fieldTitle || ''}: ${props.data.label}`} - aria-describedby={CHIP_INSTRUCTIONS_ID} + aria-describedby={chipInstructionsId} > - + {/* visually-hidden keeps the text available to screen readers; + display:none would remove it from the accessibility tree */} + {intl.formatMessage(messages.chip_instructions)}