Saturday, September 21, 2024
1 change · 17.0
Resolved issues and error corrections
This update adds missing Spanish language translations for the Chilean EDI website checkout module. Navigation buttons and interface text that were added in the code were not translated, resulting in untranslated text appearing to Spanish-speaking users. The translation file has been updated to match the current code and provide a complete user experience in Spanish.
Original PR description
module is missing some translations
the i18n po file hasn't been updated since v.16 and doesn't match current fields
specifically, in **modules/website.py** the following navigation buttons are added:
```
checkout_steps.insert(previous_step_index+1, ( ['l10n_cl_edi_website_sale.l10n_cl_edi_invoicing_info'], {
...
'main_button': _lt("Continue checkout"),
'back_button': _lt("Return to shipping"),
...
```
but those translations are not present in **i18n/es_CL.po**
resulting in an unreadable interface in spanish, language for which this module is built for
