mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
Fixes the display of languages other than the user language in the translation dialog. split_context checks if we provide more arguments than read has and then uses of the additional one as context. Since read takes the argument load additionally to the ones already given, we need to provide it as well to ensure the context is split.
28 lines
754 B
Python
28 lines
754 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2012 Guewen Baconnier (Camptocamp SA)
|
|
# Copyright 2016 Antonio Espinosa <antonio.espinosa@tecnativa.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
"name": "Web Translate Dialog",
|
|
"summary": "Easy-to-use pop-up to translate fields in several languages",
|
|
"version": "10.0.1.0.1",
|
|
"category": "Web",
|
|
"website": "https://odoo-community.org/",
|
|
"author": "Camptocamp, "
|
|
"Tecnativa, "
|
|
"Odoo Community Association (OCA)",
|
|
"license": "AGPL-3",
|
|
"application": False,
|
|
'installable': True,
|
|
"depends": [
|
|
"web",
|
|
],
|
|
"data": [
|
|
"view/web_translate.xml",
|
|
],
|
|
"qweb": [
|
|
"static/src/xml/base.xml",
|
|
]
|
|
}
|