diff --git a/CHANGES.rst b/CHANGES.rst index 04245df5..d5b76865 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,7 +4,8 @@ Changelog 1.7.3 (unreleased) ------------------ -- Nothing changed yet. +- Fix fuzzy translation. + [cekk] 1.7.2 (2023-07-26) diff --git a/src/redturtle/prenotazioni/browser/prenotazione_add.py b/src/redturtle/prenotazioni/browser/prenotazione_add.py index ff75b824..75ff6fdf 100644 --- a/src/redturtle/prenotazioni/browser/prenotazione_add.py +++ b/src/redturtle/prenotazioni/browser/prenotazione_add.py @@ -93,7 +93,6 @@ def updateWidgets(self): ) required_fields_vocabulary = required_fields_factory(self.context) possibly_required_fields = [x.token for x in required_fields_vocabulary._terms] - for f in self.widgets.values(): # If you have a field required by schema, when you fill the field # and then empty it you have a red alert without submit the form. diff --git a/src/redturtle/prenotazioni/content/prenotazioni_folder_container.py b/src/redturtle/prenotazioni/content/prenotazioni_folder_container.py index 836422cf..15b4cab1 100644 --- a/src/redturtle/prenotazioni/content/prenotazioni_folder_container.py +++ b/src/redturtle/prenotazioni/content/prenotazioni_folder_container.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from plone.app.contenttypes.content import Folder from plone.app.contenttypes.interfaces import IFolder from zope.interface import implementer diff --git a/src/redturtle/prenotazioni/locales/it/LC_MESSAGES/redturtle.prenotazioni.po b/src/redturtle/prenotazioni/locales/it/LC_MESSAGES/redturtle.prenotazioni.po index f9f9cfa8..92d1f10f 100644 --- a/src/redturtle/prenotazioni/locales/it/LC_MESSAGES/redturtle.prenotazioni.po +++ b/src/redturtle/prenotazioni/locales/it/LC_MESSAGES/redturtle.prenotazioni.po @@ -624,7 +624,6 @@ msgstr "La tua prenotazione รจ stata rifiutata" #. Default: "Your booking has to be confirmed by the administrators." #: redturtle/prenotazioni/browser/prenotazione_print.py:24 -#, fuzzy msgid "confirm_booking_waiting_message" msgstr "La tua prenotazione deve essere confermata dagli amministratori" diff --git a/src/redturtle/prenotazioni/restapi/serializers/adapters/slot.py b/src/redturtle/prenotazioni/restapi/serializers/adapters/slot.py index 306f72f3..a5e3ae66 100644 --- a/src/redturtle/prenotazioni/restapi/serializers/adapters/slot.py +++ b/src/redturtle/prenotazioni/restapi/serializers/adapters/slot.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from plone.restapi.interfaces import ISerializeToJson from redturtle.prenotazioni.adapters.slot import ISlot from zope.component import adapter diff --git a/src/redturtle/prenotazioni/restapi/services/week_slots/get.py b/src/redturtle/prenotazioni/restapi/services/week_slots/get.py index 1eee2fc7..0554a5e7 100644 --- a/src/redturtle/prenotazioni/restapi/services/week_slots/get.py +++ b/src/redturtle/prenotazioni/restapi/services/week_slots/get.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from plone import api from plone.restapi.interfaces import ISerializeToJson from plone.restapi.services import Service