diff --git a/locales/en/LC_MESSAGES/volto.po b/locales/en/LC_MESSAGES/volto.po index 0c0e6dc..552dc78 100644 --- a/locales/en/LC_MESSAGES/volto.po +++ b/locales/en/LC_MESSAGES/volto.po @@ -62,7 +62,7 @@ msgstr "Warning!" #: components/Edit msgid "form_edit_warning_from" -msgstr "Enter a field of type "Sender E-mail". If it is not present, or it is present but not filled in by the user, the sender address of the e-mail will be the one configured in the right sidebar." +msgstr "Enter a field of type 'Sender E-mail'. If it is not present, or it is present but not filled in by the user, the sender address of the e-mail will be the one configured in the right sidebar." #: components/FormView msgid "form_empty_values_validation" @@ -132,6 +132,10 @@ msgstr "Textarea" msgid "form_formDataCount" msgstr "{formDataCount} item(s) stored" +#: components/FormView +msgid "form_reset" +msgstr "Clear" + #: components/Sidebar msgid "form_save_persistent_data" msgstr "Store compiled data" diff --git a/locales/it/LC_MESSAGES/volto.po b/locales/it/LC_MESSAGES/volto.po index 4d2bd93..9ad9866 100644 --- a/locales/it/LC_MESSAGES/volto.po +++ b/locales/it/LC_MESSAGES/volto.po @@ -132,6 +132,10 @@ msgstr "Area di testo" msgid "form_formDataCount" msgstr "{formDataCount} elementi salvati" +#: components/FormView +msgid "form_reset" +msgstr "Ricomincia" + #: components/Sidebar msgid "form_save_persistent_data" msgstr "Salva i dati compilati" diff --git a/locales/volto.pot b/locales/volto.pot index 2a30d77..02fcc85 100644 --- a/locales/volto.pot +++ b/locales/volto.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Plone\n" - "POT-Creation-Date: 2021-03-16T13:10:21.291Z\n" + "POT-Creation-Date: 2021-03-18T10:59:05.964Z\n" "Last-Translator: Plone i18n \n" "Language-Team: Plone i18n \n" "MIME-Version: 1.0\n" @@ -75,7 +75,7 @@ msgid "form_edit_warning" msgstr "" #: components/Edit -# defaultMessage: Enter a field of type "Sender E-mail". If it is not present, or it is present but not filled in by the user, the sender address of the e-mail will be the one configured in the right sidebar. +# defaultMessage: Enter a field of type 'Sender E-mail'. If it is not present, or it is present but not filled in by the user, the sender address of the e-mail will be the one configured in the right sidebar. msgid "form_edit_warning_from" msgstr "" @@ -164,6 +164,11 @@ msgstr "" msgid "form_formDataCount" msgstr "" +#: components/FormView +# defaultMessage: Clear +msgid "form_reset" +msgstr "" + #: components/Sidebar # defaultMessage: Store compiled data msgid "form_save_persistent_data" diff --git a/src/components/Edit.jsx b/src/components/Edit.jsx index ae2e4d1..96e82b1 100644 --- a/src/components/Edit.jsx +++ b/src/components/Edit.jsx @@ -28,7 +28,7 @@ const messages = defineMessages({ warning_from: { id: 'form_edit_warning_from', defaultMessage: - 'Enter a field of type "Sender E-mail". If it is not present, or it is present but not filled in by the user, the sender address of the e-mail will be the one configured in the right sidebar.', + "Enter a field of type 'Sender E-mail'. If it is not present, or it is present but not filled in by the user, the sender address of the e-mail will be the one configured in the right sidebar.", }, });