Skip to content

Commit

Permalink
fix: changed translations for weekdays in recurrence widget (#569)
Browse files Browse the repository at this point in the history
* fix: changed translations for weekdays in recurrence widget

* chore: updated release.md

* fix: added en translations
  • Loading branch information
sabrina-bongiovanni authored Mar 6, 2024
1 parent ed4f201 commit 54868c5
Show file tree
Hide file tree
Showing 8 changed files with 75 additions and 1 deletion.
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

0 comments on commit 54868c5

Please sign in to comment.