diff --git a/stock_picking_comment_template/i18n/stock_picking_comment_template.pot b/stock_picking_comment_template/i18n/stock_picking_comment_template.pot index a3cd75d..5608a82 100644 --- a/stock_picking_comment_template/i18n/stock_picking_comment_template.pot +++ b/stock_picking_comment_template/i18n/stock_picking_comment_template.pot @@ -36,7 +36,7 @@ msgstr "" #. module: stock_picking_comment_template #: model:ir.model.fields,field_description:stock_picking_comment_template.field_res_partner__comment_template_id #: model:ir.model.fields,field_description:stock_picking_comment_template.field_res_users__comment_template_id -msgid "Conditions template" +msgid "Picking conditions template" msgstr "" #. module: stock_picking_comment_template diff --git a/stock_picking_comment_template/models/res_partner.py b/stock_picking_comment_template/models/res_partner.py index 8aafc89..eb6bc6f 100644 --- a/stock_picking_comment_template/models/res_partner.py +++ b/stock_picking_comment_template/models/res_partner.py @@ -9,5 +9,5 @@ class ResPartner(models.Model): comment_template_id = fields.Many2one( comodel_name='base.comment.template', - string='Conditions template', + string='Picking conditions template', )