File: message.xml

package info (click to toggle)
tryton-modules-product 7.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,124 kB
  • sloc: python: 1,776; xml: 963; makefile: 11; sh: 3
file content (34 lines) | stat: -rw-r--r-- 1,904 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0"?>
<!-- This file is part of Tryton.  The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
    <data grouped="1">
        <record model="ir.message" id="msg_uom_modify_factor">
            <field name="text">You cannot modify the factor of the unit of measure "%(uom)s".</field>
        </record>
        <record model="ir.message" id="msg_uom_modify_rate">
            <field name="text">You cannot modify the rate of the unit of measure"%(uom)s".</field>
        </record>
        <record model="ir.message" id="msg_uom_modify_category">
            <field name="text">You cannot modify the category of the unit of measure "%(uom)s".</field>
        </record>
        <record model="ir.message" id="msg_uom_decrease_digits">
            <field name="text">You cannot decrease the digits of the unit of measure "%(uom)s".</field>
        </record>
        <record model="ir.message" id="msg_uom_modify_options">
            <field name="text">If the unit of measure is still not used, you can delete it otherwise you can deactivate it and create a new one.</field>
        </record>
        <record model="ir.message" id="msg_uom_incompatible_factor_rate">
            <field name="text">Incompatible factor and rate values on unit of measure"%(uom)s".</field>
        </record>
        <record model="ir.message" id="msg_uom_no_zero_factor_rate">
            <field name="text">Rate and factor can not be both equal to zero.</field>
        </record>
        <record model="ir.message" id="msg_invalid_code">
            <field name="text">The %(type)s "%(code)s" for product "%(product)s" is not valid.</field>
        </record>
        <record model="ir.message" id="msg_product_code_unique">
            <field name="text">Code of active product must be unique.</field>
        </record>
    </data>
</tryton>