-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmessage.xml
34 lines (34 loc) · 1.78 KB
/
message.xml
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 UOM "%(uom)s".</field>
</record>
<record model="ir.message" id="msg_uom_modify_rate">
<field name="text">You cannot modify the rate of UOM "%(uom)s".</field>
</record>
<record model="ir.message" id="msg_uom_modify_category">
<field name="text">You cannot modify the category of UOM "%(uom)s".</field>
</record>
<record model="ir.message" id="msg_uom_decrease_digits">
<field name="text">You cannot decrease the digits of UOM "%(uom)s".</field>
</record>
<record model="ir.message" id="msg_uom_modify_options">
<field name="text">If the UOM 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 UOM "%(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>