Daily updates from Odoo
Tuesday, December 14, 2021
2 changes
Resolved issues and error corrections
This update corrects a display issue where breadcrumb navigation could appear duplicated in bundled document spreadsheets. It helps users keep a clear navigation path and avoids confusion when working with spreadsheets in Documents.
Original PR description
Following commmit odoo/odoo:f3e71d01eecfa186c5fcdc40fa6d4c2805207a76, The override on template `documents_spreadsheet.Breadcrumbs` does not work anymore since it does not keep the `t-else`attribute when replacing the original element. Co-authored-by: Pierre Rousseau <pro@odoo.com>
This change removes an obsolete translation-related setting from the mail plugin manifests. It has no expected effect on users, but keeps the configuration cleaner and aligned with how translations are actually detected.
Original PR description
*: mail_plugin, crm_mail_plugin, project_mail_plugin The code that is discovering translatable strings is defined in [translate.py]. It does lookup in all python files and in all javascript files defined under 'static/src/'. The top-level `web.assets_backend` directive in the manifest is useless and have been removed. [translate.py]: https://github.com/odoo/odoo/blob/8b468e1f7a3dfeb2bcfa83bff55c4b5adf6b2212/odoo/tools/translate.py#L1138-L1147 Companion of odoo/odoo#79977