Thursday, November 30, 2023
4 changes · master
Enhancements to existing features
This update standardizes the spelling of “canceled” across many Odoo screens and messages. It improves wording consistency for users without changing business processes or system behavior.
Original PR description
In this PR by making this change, Odoo will have consistent spelling in line with US English standards, creating a more unified and polished user experience for our US-based users. - Identify all occurrences of the word "Cancelled" in the Odoo codebase. - Replace each occurrence with the correct spelling, "Canceled". - Ensure that the change only affects the spelling of the word and does not alter any other part of the code. task-3387055
List views no longer show redundant tooltips for text fields because the full text value is already visible. Related automated tours and tests were updated so they no longer rely on those removed tooltips.
Original PR description
Description of the issue/feature this PR addresses: we figured out that the tooltip is useless for text fields because the entirety of the value is displayed anyway, so we just decided to remove tooltips in listview for text fields Small note about the tests/tours removal: IMO we need to remove those test code snipets. the problem is that the html element td[name='name'] does not contain information about the text inside the description while the focus is still on the record. The only way we had to know what was inside the textarea before unfocusing was through the datatooltip which doesn't exist anymore. Linked enterprise PR: https://github.com/odoo/enterprise/pull/51501 Task-3186593 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Payroll rules now include clearer result names for input-based calculations in several country payroll localizations. This helps payslip results and related payroll data display more consistently and understandably for HR teams.
Original PR description
Change adds missing result_name based on inputs in rules which calculate result based on input. It affects all the localizations which missed it. task-3506692
Updated user-facing text to use the spelling “Canceled” consistently across affected Odoo apps. This improves wording consistency and creates a more polished experience for US-based users without changing product behavior.
Original PR description
In this PR by making this change, Odoo will have consistent spelling in line with US English standards, creating a more unified and polished user experience for our US-based users. - Identify all occurrences of the word "Cancelled" in the Odoo codebase. - Replace each occurrence with the correct spelling, "Canceled". - Ensure that the change only affects the spelling of the word and does not alter any other part of the code. task-3387055