3
0
Fork 0
web_techsystech/web_translate_dialog/models/res_lang.py

15 lines
363 B
Python

# Copyright 2019 Camptocamp SA
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl)
from odoo import fields, models
class ResLang(models.Model):
_inherit = "res.lang"
tr_sequence = fields.Integer(
string="Translation sequence",
help="Defines the order of language to appear in translation dialog",
default=10,
)