Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: changed translations for weekdays in recurrence widget #569

Merged
merged 3 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@
- ...
-->

## Versione X.X.X (dd/mm/yyyy)

### Fix

- Quando si imposta una ricorrenza per giorni feriali negli Eventi, viene visualizzato il testo corretto "ogni giorno feriale"

## Versione 11.6.0 (05/03/2024)

### Migliorie
Expand Down
10 changes: 10 additions & 0 deletions locales/de/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -2985,6 +2985,16 @@ msgstr ""
msgid "rrule_th"
msgstr ""

#: overrideTranslations
# defaultMessage: giorno feriale
msgid "rrule_weekday"
msgstr ""

#: overrideTranslations
# defaultMessage: giorni feriali
msgid "rrule_weekdays"
msgstr ""

#: components/ItaliaTheme/Blocks/RssBlock/CardWithImageRssTemplate
#: components/ItaliaTheme/Blocks/RssBlock/CardWithoutImageRssTemplate
# defaultMessage: No results from RSS feed.
Expand Down
10 changes: 10 additions & 0 deletions locales/en/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -2970,6 +2970,16 @@ msgstr "st"
msgid "rrule_th"
msgstr "th"

#: overrideTranslations
# defaultMessage: giorno feriale
msgid "rrule_weekday"
msgstr "weekday"

#: overrideTranslations
# defaultMessage: giorni feriali
msgid "rrule_weekdays"
msgstr "weekdays"

#: components/ItaliaTheme/Blocks/RssBlock/CardWithImageRssTemplate
#: components/ItaliaTheme/Blocks/RssBlock/CardWithoutImageRssTemplate
# defaultMessage: No results from RSS feed.
Expand Down
10 changes: 10 additions & 0 deletions locales/es/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -2979,6 +2979,16 @@ msgstr ""
msgid "rrule_th"
msgstr ""

#: overrideTranslations
# defaultMessage: giorno feriale
msgid "rrule_weekday"
msgstr ""

#: overrideTranslations
# defaultMessage: giorni feriali
msgid "rrule_weekdays"
msgstr ""

#: components/ItaliaTheme/Blocks/RssBlock/CardWithImageRssTemplate
#: components/ItaliaTheme/Blocks/RssBlock/CardWithoutImageRssTemplate
# defaultMessage: No results from RSS feed.
Expand Down
10 changes: 10 additions & 0 deletions locales/fr/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -2987,6 +2987,16 @@ msgstr ""
msgid "rrule_th"
msgstr ""

#: overrideTranslations
# defaultMessage: giorno feriale
msgid "rrule_weekday"
msgstr ""

#: overrideTranslations
# defaultMessage: giorni feriali
msgid "rrule_weekdays"
msgstr ""

#: components/ItaliaTheme/Blocks/RssBlock/CardWithImageRssTemplate
#: components/ItaliaTheme/Blocks/RssBlock/CardWithoutImageRssTemplate
# defaultMessage: No results from RSS feed.
Expand Down
10 changes: 10 additions & 0 deletions locales/it/LC_MESSAGES/volto.po
Original file line number Diff line number Diff line change
Expand Up @@ -2970,6 +2970,16 @@ msgstr " "
msgid "rrule_th"
msgstr " "

#: overrideTranslations
# defaultMessage: giorno feriale
msgid "rrule_weekday"
msgstr "giorno feriale"

#: overrideTranslations
# defaultMessage: giorni feriali
msgid "rrule_weekdays"
msgstr "giorni feriali"

#: components/ItaliaTheme/Blocks/RssBlock/CardWithImageRssTemplate
#: components/ItaliaTheme/Blocks/RssBlock/CardWithoutImageRssTemplate
# defaultMessage: No results from RSS feed.
Expand Down
12 changes: 11 additions & 1 deletion locales/volto.pot
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Plone\n"
"POT-Creation-Date: 2024-02-29T16:36:05.160Z\n"
"POT-Creation-Date: 2024-03-06T10:48:38.114Z\n"
"Last-Translator: Plone i18n <[email protected]>\n"
"Language-Team: Plone i18n <[email protected]>\n"
"MIME-Version: 1.0\n"
Expand Down Expand Up @@ -2972,6 +2972,16 @@ msgstr ""
msgid "rrule_th"
msgstr ""

#: overrideTranslations
# defaultMessage: giorno feriale
msgid "rrule_weekday"
msgstr ""

#: overrideTranslations
# defaultMessage: giorni feriali
msgid "rrule_weekdays"
msgstr ""

#: components/ItaliaTheme/Blocks/RssBlock/CardWithImageRssTemplate
#: components/ItaliaTheme/Blocks/RssBlock/CardWithoutImageRssTemplate
# defaultMessage: No results from RSS feed.
Expand Down
8 changes: 8 additions & 0 deletions src/overrideTranslations.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ defineMessages({
id: 'rrule_on the',
defaultMessage: 'il',
},
weekdays: {
id: 'rrule_weekdays',
defaultMessage: 'giorni feriali',
},
weekday: {
id: 'rrule_weekday',
defaultMessage: 'giorno feriale',
},
reset: {
//volto-form-block
id: 'form_reset',
Expand Down
Loading