Skip to content
Snippets Groups Projects
Commit c0ab3360 authored by Achraf (abz)'s avatar Achraf (abz)
Browse files

[FIX] base: Make addresses label translatable

Since this PR https://github.com/odoo/odoo/pull/71273

, addresses label were no longer translated
This PR adds the new translation

closes odoo/odoo#71939

Signed-off-by: default avatarNicolas Lempereur (nle) <nle@odoo.com>
parent c63af097
Branches
Tags
No related merge requests found
......@@ -6210,12 +6210,12 @@ msgstr ""
#: model_terms:ir.ui.view,arch_db:base.view_partner_form
msgid ""
"<span class=\"o_form_label o_td_label\" name=\"address_name\">\n"
" <b attrs=\"{'invisible': [('type', '!=', 'contact')]}\">Company Address</b>\n"
" <b attrs=\"{'invisible': [('type', '!=', 'invoice')]}\">Invoice Address</b>\n"
" <b attrs=\"{'invisible': [('type', '!=', 'delivery')]}\">Delivery Address</b>\n"
" <b attrs=\"{'invisible': [('type', '!=', 'other')]}\">Other Address</b>\n"
" <b attrs=\"{'invisible': [('type', '!=', 'private')]}\">Private Address</b>\n"
" <b attrs=\"{'invisible': [('type', '!=', False)]}\">Address</b>\n"
" <b attrs=\"{'invisible': [('company_type', '!=', 'company')]}\">Company Address</b>\n"
" <b attrs=\"{'invisible': ['|', ('type', '!=', 'invoice'), ('company_type', '=', 'company')]}\">Invoice Address</b>\n"
" <b attrs=\"{'invisible': ['|', ('type', '!=', 'delivery'), ('company_type', '=', 'company')]}\">Delivery Address</b>\n"
" <b attrs=\"{'invisible': ['|', ('type', '!=', 'other'), ('company_type', '=', 'company')]}\">Other Address</b>\n"
" <b attrs=\"{'invisible': ['|', ('type', '!=', 'private'), ('company_type', '=', 'company')]}\">Private Address</b>\n"
" <b attrs=\"{'invisible': ['|', ('type', 'not in', (False, 'contact')), ('company_type', '=', 'company')]}\">Address</b>\n"
" </span>"
msgstr ""
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment