forked from italia/design-comuni-plone-theme
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: recurrence string and edit recurrence (#482)
* fix: recurrence string and edit recurrence * fix: en locales and release file
- Loading branch information
1 parent
ccf45b3
commit 276cbef
Showing
9 changed files
with
225 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-01-11T11:04:31.849Z\n" | ||
"POT-Creation-Date: 2024-01-11T13:44:40.490Z\n" | ||
"Last-Translator: Plone i18n <[email protected]>\n" | ||
"Language-Team: Plone i18n <[email protected]>\n" | ||
"MIME-Version: 1.0\n" | ||
|
@@ -2906,6 +2906,36 @@ msgstr "" | |
msgid "risultati_indagini_customer_satisfaction" | ||
msgstr "" | ||
|
||
#: overrideTranslations | ||
# defaultMessage: il giorno | ||
msgid "rrule_in" | ||
msgstr "" | ||
|
||
#: overrideTranslations | ||
# defaultMessage: _ | ||
msgid "rrule_nd" | ||
msgstr "" | ||
|
||
#: overrideTranslations | ||
# defaultMessage: il | ||
msgid "rrule_on the" | ||
msgstr "" | ||
|
||
#: overrideTranslations | ||
# defaultMessage: _ | ||
msgid "rrule_rd" | ||
msgstr "" | ||
|
||
#: overrideTranslations | ||
# defaultMessage: _ | ||
msgid "rrule_st" | ||
msgstr "" | ||
|
||
#: overrideTranslations | ||
# defaultMessage: _ | ||
msgid "rrule_th" | ||
msgstr "" | ||
|
||
#: components/ItaliaTheme/Blocks/RssBlock/CardWithImageRssTemplate | ||
#: components/ItaliaTheme/Blocks/RssBlock/CardWithoutImageRssTemplate | ||
# defaultMessage: No results from RSS feed. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import { defineMessages } from 'react-intl'; | ||
|
||
defineMessages({ | ||
rrule_st: { | ||
id: 'rrule_st', | ||
defaultMessage: '_', //in italiano non si traduce | ||
}, | ||
rrule_nd: { | ||
id: 'rrule_nd', | ||
defaultMessage: '_', //in italiano non si traduce | ||
}, | ||
rrule_rd: { | ||
id: 'rrule_rd', | ||
defaultMessage: '_', //in italiano non si traduce | ||
}, | ||
rrule_th: { | ||
id: 'rrule_th', | ||
defaultMessage: '_', //in italiano non si traduce | ||
}, | ||
rrule_in: { | ||
id: 'rrule_in', | ||
defaultMessage: 'il giorno', | ||
}, | ||
rrule_on_the: { | ||
id: 'rrule_on the', | ||
defaultMessage: 'il', | ||
}, | ||
}); |