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
|
<?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_invoice_recurrence_invalid">
<field name="text">The invoice recurrence of subscription "%(subscription)s" does not generate any occurrence.</field>
</record>
<record model="ir.message" id="msg_consumption_recurrence_invalid">
<field name="text">The consumption recurrence of line "%(line)s" of subscription "%(subscription)s" does not generate any occurrence.</field>
</record>
<record model="ir.message" id="msg_consumption_modify_invoiced">
<field name="text">You cannot modify invoiced consumption "%(consumption)s".</field>
</record>
<record model="ir.message" id="msg_consumption_delete_invoiced">
<field name="text">You cannot delete invoiced consumption "%(consumption)s".</field>
</record>
<record model="ir.message" id="msg_consumption_invoice_missing_account_revenue">
<field name="text">To invoice consumptions you must define an account revenue for product "%(product)s".</field>
</record>
<record model="ir.message" id="msg_erase_party_pending_subscription">
<field name="text">You cannot erase party "%(party)s" while they have pending subscriptions with company "%(company)s".</field>
</record>
<record model="ir.message" id="msg_recurrence_rule_invalid_by">
<field name="text">Invalid "%(field)s" "%(value)s" in recurence rule "%(recurrence_rule)s" with exception "%(exception)s".</field>
</record>
</data>
</tryton>
|