cashbook/message.xml

131 lines
7.9 KiB
XML
Raw Normal View History

2022-08-05 10:02:04 +00:00
<?xml version="1.0"?>
<!-- This file is part of the cashbook-module from m-ds for Tryton.
The COPYRIGHT file at the top level of this repository contains the
full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.message" id="msg_type_short_unique">
<field name="text">The Abbreviation must be unique.</field>
</record>
<record model="ir.message" id="msg_name_cashbook">
<field name="text">Cashbook</field>
</record>
<record model="ir.message" id="msg_name_reconciliation">
<field name="text">Reconciliation</field>
</record>
2022-08-08 12:31:42 +00:00
<record model="ir.message" id="msg_line_wrong_state_value">
<field name="text">Invalid value of the field 'Status', allowed: edit, check, done.</field>
</record>
<record model="ir.message" id="msg_book_wrong_state_value">
<field name="text">Invalid value of the field 'Status', allowed: open, closed, archive.</field>
</record>
<record model="ir.message" id="msg_book_deny_delete">
<field name="text">The cashbook '%(bookname)s' cannot be deleted because it contains %(booklines)s lines and is not in the status 'Archive'.</field>
2022-08-08 12:31:42 +00:00
</record>
<record model="ir.message" id="msg_book_deny_write">
<field name="text">The cashbook '%(bookname)s' is '%(state_txt)s' and cannot be changed.</field>
2022-08-08 12:31:42 +00:00
</record>
<record model="ir.message" id="msg_line_deny_delete1">
<field name="text">The cashbook line '%(linetxt)s' cannot be deleted because the Cashbook '%(bookname)s' is in state '%(bookstate)s'.</field>
</record>
<record model="ir.message" id="msg_line_deny_delete2">
<field name="text">The cashbook line '%(linetxt)s' cannot be deleted, its in state '%(linestate)s'.</field>
</record>
<record model="ir.message" id="msg_line_deny_write">
<field name="text">The cashbook line '%(recname)s' is '%(state_txt)s' and cannot be changed.</field>
</record>
<record model="ir.message" id="msg_line_deny_stateedit_with_recon">
<field name="text">The status cannot be changed to 'Edit' while the line '%(recname)s' is associated with a reconciliation.</field>
</record>
<record model="ir.message" id="msg_recon_deny_delete1">
<field name="text">The reconciliation '%(recontxt)s' cannot be deleted because the Cashbook '%(bookname)s' is in state '%(bookstate)s'.</field>
</record>
<record model="ir.message" id="msg_recon_deny_delete2">
<field name="text">The reconciliation '%(recontxt)s' cannot be deleted, its in state '%(reconstate)s'.</field>
</record>
2022-08-09 13:08:41 +00:00
<record model="ir.message" id="msg_setting_already_exists">
<field name="text">Settings for this user alredy exists.</field>
</record>
<record model="ir.message" id="msg_category_name_unique">
<field name="text">The category name already exists at this level.</field>
</record>
<record model="ir.message" id="msg_category_type_not_like_parent">
<field name="text">The type of the current category '%(catname)s' must be equal to the type of the parent category '%(parentname)s'.</field>
</record>
<record model="ir.message" id="msg_line_deny_recon_by_state">
<field name="text">For reconciliation, the line '%(recname)s' must be in the status 'Check' or 'Done'.</field>
</record>
<record model="ir.message" id="mds_recon_deny_line_not_check">
<field name="text">For the reconciliation '%(reconame)s' of the cashbook '%(bookname)s', all lines in the date range from '%(datefrom)s' to '%(dateto)s' must be in the 'Check' state.</field>
</record>
<record model="ir.message" id="msg_line_deny_write_by_reconciliation">
<field name="text">The line '%(recname)s' cannot be changed because the reconciliation '%(reconame)s'is 'Done'.</field>
</record>
<record model="ir.message" id="msg_recon_err_overlap">
<field name="text">The date range overlaps with another reconciliation.</field>
</record>
<record model="ir.message" id="msg_line_err_write_to_reconciled">
<field name="text">For the date '%(datetxt)s' there is already a completed reconciliation. Use a different date.</field>
</record>
<record model="ir.message" id="msg_recon_lines_no_linked">
<field name="text">In the date range from %(date_from)s to %(date_to)s, there are still cashbook lines that do not belong to any reconciliation.</field>
</record>
<record model="ir.message" id="msg_recon_date_from_to_mismatch">
<field name="text">The start date '%(datefrom)s' of the current reconciliation '%(recname)s' must correspond to the end date '%(dateto)s' of the predecessor.</field>
</record>
<record model="ir.message" id="msg_recon_predecessor_not_done">
<field name="text">The predecessor '%(recname_p)s' must be in the 'Done' state before you can check the current reconciliation '%(recname_c)s'.</field>
</record>
2022-08-24 15:12:32 +00:00
<record model="ir.message" id="msg_line_bookingtype_spin">
<field name="text">Rev/Sp</field>
</record>
<record model="ir.message" id="msg_line_bookingtype_spout">
<field name="text">Exp/Sp</field>
</record>
<record model="ir.message" id="msg_line_bookingtype_in">
<field name="text">Rev</field>
</record>
<record model="ir.message" id="msg_line_bookingtype_out">
<field name="text">Exp</field>
</record>
<record model="ir.message" id="msg_line_bookingtype_mvin">
<field name="text">from</field>
</record>
<record model="ir.message" id="msg_line_bookingtype_mvout">
<field name="text">to</field>
</record>
<record model="ir.message" id="msg_line_denywf_by_reference">
<field name="text">The current line is managed by the cashbook line '%(recname)s', cashbook: '%(cbook)s'.</field>
</record>
<record model="ir.message" id="msg_rep_reconciliation_fname">
<field name="text">%(recname)s Reconciliation from %(date_from)s to %(date_to)s</field>
</record>
<record model="ir.message" id="msg_line_date_before_book">
<field name="text">The date of the cashbook line '%(recname)s' cannot be earlier than the start date '%(datebook)s' of the cashbook.</field>
</record>
2022-08-25 13:55:24 +00:00
<record model="ir.message" id="msg_line_split_invalid_category">
<field name="text">The category of the split booking line '%(splitrecname)s' does not match the posting type '%(booktype)s' of the line '%(recname)s'.</field>
</record>
<record model="ir.message" id="msg_line_invalid_category">
<field name="text">The category of the booking line '%(recname)s' does not match the posting type '%(booktype)s'.</field>
</record>
<record model="ir.message" id="msg_book_btype_with_lines">
<field name="text">The type cannot be deleted on the cash book '%(cbname)s' because it still contains %(numlines)s lines.</field>
</record>
2022-10-06 11:28:42 +00:00
<record model="ir.message" id="msg_book_no_type_noopen">
<field name="text">The cash book '%(bookname)s' has no type and therefore cannot be opened.</field>
</record>
2022-12-21 18:12:39 +00:00
<record model="ir.message" id="msg_btype_general">
<field name="text">General</field>
</record>
<record model="ir.message" id="msg_value_exists_in_store">
<field name="text">The value already exists for the record.</field>
</record>
<record model="ir.message" id="msg_nosearch_with_date">
<field name="text">Search with 'date' no allowed for field '%(fname)s' on model '%(model)s'.</field>
</record>
2022-08-05 10:02:04 +00:00
</data>
</tryton>