details:   https://code.tryton.org/tryton/commit/975bcdbbc785
branch:    default
user:      Cédric Krier <[email protected]>
date:      Tue Feb 24 09:19:37 2026 +0100
description:
        Use label Name for the name of translation
diffstat:

 trytond/trytond/ir/translation.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r e5b340d46641 -r 975bcdbbc785 trytond/trytond/ir/translation.py
--- a/trytond/trytond/ir/translation.py Tue Feb 24 09:19:16 2026 +0100
+++ b/trytond/trytond/ir/translation.py Tue Feb 24 09:19:37 2026 +0100
@@ -70,7 +70,7 @@
         ModelSQL, ModelView):
     __name__ = "ir.translation"
 
-    name = fields.Char('Field Name', required=True)
+    name = fields.Char("Name", required=True)
     res_id = fields.Integer('Resource ID', required=True)
     lang = fields.Selection('get_language', string='Language')
     type = fields.Selection(TRANSLATION_TYPE, string='Type',

Reply via email to