diff --git a/locales/de/LC_MESSAGES/volto.po b/locales/de/LC_MESSAGES/volto.po index a674be6..0050a7d 100644 --- a/locales/de/LC_MESSAGES/volto.po +++ b/locales/de/LC_MESSAGES/volto.po @@ -42,9 +42,9 @@ msgid "Quote" msgstr "Zitat" #: components/schema -# defaultMessage: This field expects an URL as input (optional). If an URL is provided the additional information will have a relation to this URL, this is due to accessibility norms. -msgid "This field expects an URL as input (optional). If an URL is provided the additional information will have a relation to this URL, this is due to accessibility norms." -msgstr "Dieses Feld erwartet eine URL als Eingabe (optional). Wenn eine URL angegeben wird, beziehen sich die Zusatzinformationen auf diese URL, um Barrierefreiheit zu gewährleisten." +# defaultMessage: This field is not exposed, it is only used by accessibility tools to provide a better experience. +msgid "This field is not exposed, it is only used by accessibility tools to provide a better experience." +msgstr "Dieses Fled wird nicht angezeigt, es wird nur von Barrierefreiheittools verwendet, um eine bessere Nutzererfahrung zu gewährleisten." #: components/schema # defaultMessage: Accessibility diff --git a/locales/en/LC_MESSAGES/volto.po b/locales/en/LC_MESSAGES/volto.po index 6bf7902..cca1783 100644 --- a/locales/en/LC_MESSAGES/volto.po +++ b/locales/en/LC_MESSAGES/volto.po @@ -42,8 +42,8 @@ msgid "Quote" msgstr "" #: components/schema -# defaultMessage: This field expects an URL as input (optional). If an URL is provided the additional information will have a relation to this URL, this is due to accessibility norms. -msgid "This field expects an URL as input (optional). If an URL is provided the additional information will have a relation to this URL, this is due to accessibility norms." +# defaultMessage: This field is not exposed, it is only used by accessibility tools to provide a better experience. +msgid "This field is not exposed, it is only used by accessibility tools to provide a better experience." msgstr "" #: components/schema diff --git a/locales/volto.pot b/locales/volto.pot index c88831a..5b1f94c 100644 --- a/locales/volto.pot +++ b/locales/volto.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Plone\n" -"POT-Creation-Date: 2024-02-19T14:56:25.399Z\n" +"POT-Creation-Date: 2024-02-19T15:23:26.397Z\n" "Last-Translator: Plone i18n \n" "Language-Team: Plone i18n \n" "MIME-Version: 1.0\n" @@ -44,8 +44,8 @@ msgid "Quote" msgstr "" #: components/schema -# defaultMessage: This field expects an URL as input (optional). If an URL is provided the additional information will have a relation to this URL, this is due to accessibility norms. -msgid "This field expects an URL as input (optional). If an URL is provided the additional information will have a relation to this URL, this is due to accessibility norms." +# defaultMessage: This field is not exposed, it is only used by accessibility tools to provide a better experience. +msgid "This field is not exposed, it is only used by accessibility tools to provide a better experience." msgstr "" #: components/schema diff --git a/src/components/schema.js b/src/components/schema.js index 0ca69b2..68a54ab 100644 --- a/src/components/schema.js +++ b/src/components/schema.js @@ -27,9 +27,9 @@ const messages = defineMessages({ defaultMessage: 'Cite', }, description: { - id: 'This field expects an URL as input (optional). If an URL is provided the additional information will have a relation to this URL, this is due to accessibility norms.', + id: 'This field is not exposed, it is only used by accessibility tools to provide a better experience.', defaultMessage: - 'This field expects an URL as input (optional). If an URL is provided the additional information will have a relation to this URL, this is due to accessibility norms.', + 'This field is not exposed, it is only used by accessibility tools to provide a better experience.', }, accessibility: { id: 'accessibility', @@ -83,6 +83,7 @@ export const QuoteBlockSchema = ({ intl }) => { choices: filterDefaultLanguages(), default: defaultLang, noValueOption: false, + description: intl.formatMessage(messages.description), }, image: { title: intl.formatMessage(messages.image),